diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index 48858b8dd..9f3e23a99 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -60,7 +60,7 @@ jobs: - name: "Download and unzip ck3-tiger" run: | - Invoke-WebRequest -Uri "https://github.com/amtep/tiger/releases/download/v1.12.0/ck3-tiger-windows-v1.12.0.zip" -OutFile "ck3-tiger.zip" + Invoke-WebRequest -Uri "https://github.com/amtep/tiger/releases/download/v1.14.0/ck3-tiger-windows-v1.14.0.zip" -OutFile "ck3-tiger.zip" Expand-Archive -Path "ck3-tiger.zip" -DestinationPath "ck3-tiger" Remove-Item -Path "ck3-tiger.zip" diff --git a/ImperatorToCK3.UnitTests/CK3/Characters/CharacterCollectionTests.cs b/ImperatorToCK3.UnitTests/CK3/Characters/CharacterCollectionTests.cs index 0f285dfb2..1038a1971 100644 --- a/ImperatorToCK3.UnitTests/CK3/Characters/CharacterCollectionTests.cs +++ b/ImperatorToCK3.UnitTests/CK3/Characters/CharacterCollectionTests.cs @@ -30,6 +30,10 @@ using Xunit; using System; using System.IO; +using System.Globalization; +using System.Reflection; +using System.Text.RegularExpressions; +using ImperatorRulerTerm = ImperatorToCK3.Imperator.Countries.RulerTerm; namespace ImperatorToCK3.UnitTests.CK3.Characters; @@ -415,4 +419,75 @@ public void ImperatorCharacterNamesCanBeOverriddenByConfigurable() { // Clean up. File.Delete(overridesFilePath); } + + [Fact] + public void ChineseDynasticCycleVariablesAreCorrectlyCalculatedForChineseEmpireCountryRulers() { + Date ck3BookmarkDate = new(810, 1, 1); + Date irEndDate = new(780, 1, 1); + + var characters = new CharacterCollection(); + var holder = new Character("imperator_han_emperor", "Han Emperor", new Date(760, 1, 1), characters) { + FromImperator = true + }; + characters.Add(holder); + + var landedTitles = new Title.LandedTitles(); + var celestialEmpire = landedTitles.Add("e_chinese_empire"); + celestialEmpire.SetHolder(holder, ck3BookmarkDate); + + var imperatorCountry = new Country(1) { Tag = "HAN" }; + SetPrivateProperty(imperatorCountry, nameof(Country.Government), "chinese_empire"); + imperatorCountry.TotalPowerBase = 60f; + imperatorCountry.NonLoyalPowerBase = 15f; + + var precedingNonChineseStartDate = new Date(700, 3, 1); + var earliestChineseStartDate = new Date(720, 6, 1); + var laterChineseStartDate = new Date(760, 2, 1); + + imperatorCountry.RulerTerms.Add(CreateRulerTerm(precedingNonChineseStartDate, "tribal")); + imperatorCountry.RulerTerms.Add(CreateRulerTerm(earliestChineseStartDate, "chinese_empire")); + imperatorCountry.RulerTerms.Add(CreateRulerTerm(laterChineseStartDate, "chinese_empire")); + + imperatorCountry.CK3Title = celestialEmpire; + SetPrivateProperty(celestialEmpire, nameof(Title.ImperatorCountry), imperatorCountry); + + characters.CalculateChineseDynasticCycleVariables(landedTitles, irEndDate, ck3BookmarkDate); + + var effectsField = holder.History.Fields["effects"]; + var effectEntry = Assert.Single(effectsField.DateToEntriesDict); + Assert.Equal(ck3BookmarkDate, effectEntry.Key); + var effectString = Assert.IsType(Assert.Single(effectEntry.Value).Value).ToString(); + + var expectedYearsWithGovernment = ck3BookmarkDate.DiffInYears(earliestChineseStartDate) + (earliestChineseStartDate.DiffInYears(precedingNonChineseStartDate) / 2); + var expectedUnrest = imperatorCountry.NonLoyalPowerBase / imperatorCountry.TotalPowerBase; + var effectLines = effectString.Split(new[] { "\r\n", "\n" }, StringSplitOptions.RemoveEmptyEntries | StringSplitOptions.TrimEntries); + var yearsLine = Assert.Single(effectLines, line => line.Contains("years_with_government", StringComparison.Ordinal)); + var yearsValue = ExtractVariableValue(yearsLine); + Assert.Equal(expectedYearsWithGovernment, yearsValue, precision: 5); + var unrestLine = Assert.Single(effectLines, line => line.Contains("imperator_unrest", StringComparison.Ordinal)); + var unrestValue = ExtractVariableValue(unrestLine); + Assert.Equal(expectedUnrest, unrestValue, precision: 5); + } + + private static void SetPrivateProperty(object target, string propertyName, object? value) { + var targetType = target.GetType(); + var property = targetType.GetProperty(propertyName, BindingFlags.Instance | BindingFlags.Public | BindingFlags.NonPublic); + Assert.NotNull(property); + var setter = property!.GetSetMethod(nonPublic: true); + Assert.NotNull(setter); + setter!.Invoke(target, new[] { value }); + } + + private static ImperatorRulerTerm CreateRulerTerm(Date startDate, string governmentId) { + var term = new ImperatorRulerTerm(); + SetPrivateProperty(term, nameof(ImperatorRulerTerm.StartDate), startDate); + SetPrivateProperty(term, nameof(ImperatorRulerTerm.Government), governmentId); + return term; + } + + private static double ExtractVariableValue(string line) { + var match = Regex.Match(line, "value\\s*=\\s*(?[-+]?[0-9]*\\.?[0-9]+)"); + Assert.True(match.Success, $"Could not parse value from line '{line}'."); + return double.Parse(match.Groups["value"].Value, CultureInfo.InvariantCulture); + } } \ No newline at end of file diff --git a/ImperatorToCK3.UnitTests/CK3/Characters/DNAFactoryTests.cs b/ImperatorToCK3.UnitTests/CK3/Characters/DNAFactoryTests.cs new file mode 100644 index 000000000..5a95a44ad --- /dev/null +++ b/ImperatorToCK3.UnitTests/CK3/Characters/DNAFactoryTests.cs @@ -0,0 +1,431 @@ +using commonItems; +using ImageMagick; +using ImperatorToCK3.CK3.Characters; +using ImperatorToCK3.CommonUtils.Genes; +using ImperatorCharacter = ImperatorToCK3.Imperator.Characters.Character; +using ImperatorToCK3.Imperator.Characters; +using System; +using System.Collections.Concurrent; +using System.Collections.Generic; +using System.Reflection; +using Xunit.Sdk; +using Xunit; + +namespace ImperatorToCK3.UnitTests.CK3.Characters; + +public sealed class DNAFactoryTests { + private static void SetNonPublicField(object obj, string fieldName, object value) { + var field = obj.GetType().GetField(fieldName, BindingFlags.Instance | BindingFlags.NonPublic); + if (field is null) { + throw new XunitException($"Could not find field {fieldName} on {obj.GetType().FullName}."); + } + field.SetValue(obj, value); + } + + private static ImperatorCharacter CreateAdultMale(ulong id = 1, params string[] traits) { + var character = new ImperatorCharacter(id) { + Female = false, + Traits = new List(traits) + }; + SetNonPublicField(character, "k__BackingField", (uint)30); + return character; + } + + private static PortraitData CreatePortraitDataWithEyeAccessoryGeneTemplate(string geneTemplateName) { + // PortraitData requires a DNA string, but ConvertEyeAccessories only needs AccessoryGenesDict. + // Use a minimal valid DNA payload (12 bytes) and then populate AccessoryGenesDict directly. + var dummyDna = Convert.ToBase64String(new byte[12]); + var portraitData = new PortraitData(dummyDna, new GenesDB()) { + AccessoryGenesDict = {["eye_accessory"] = new() { + GeneTemplate = geneTemplateName, + ObjectName = "dummy", + GeneTemplateRecessive = geneTemplateName, + ObjectNameRecessive = "dummy", + } + }}; + return portraitData; + } + + private static GenesDB CreateCk3GenesDbForEyeAccessories() { + var db = new GenesDB(); + // CK3 accessory gene used for blind eyes (key: eye_accessory, template: blind_eyes) + db.AccessoryGenes.AddOrReplace(new AccessoryGene( + "eye_accessory", + new BufferedReader( + " = {\n" + + " blind_eyes = {\n" + + " index = 0\n" + + " male = { 1 = blind_obj_a 1 = blind_obj_b }\n" + + " }\n" + + " }\n" + ) + )); + + // CK3 special accessory gene used for eye patch and blindfold (key: special_headgear_spectacles) + db.SpecialAccessoryGenes.AddOrReplace(new AccessoryGene( + "special_headgear_spectacles", + new BufferedReader( + " = {\n" + + " eye_patch = {\n" + + " index = 0\n" + + " male = { 1 = patch_a 1 = patch_b }\n" + + " }\n" + + " blindfold = {\n" + + " index = 1\n" + + " male = { 1 = blindfold_a 1 = blindfold_b }\n" + + " }\n" + + " }\n" + ) + )); + + return db; + } + + private static T InvokePrivateStatic(string methodName, params object[] args) { + var method = typeof(DNAFactory).GetMethod(methodName, BindingFlags.NonPublic | BindingFlags.Static); + if (method is null) { + throw new MissingMethodException(typeof(DNAFactory).FullName, methodName); + } + + return (T)method.Invoke(null, args)!; + } + + private static void InvokePrivateStaticVoid(string methodName, params object[] args) { + var method = typeof(DNAFactory).GetMethod(methodName, BindingFlags.NonPublic | BindingFlags.Static); + if (method is null) { + throw new MissingMethodException(typeof(DNAFactory).FullName, methodName); + } + + method.Invoke(null, args); + } + + private static MagickImage CreatePaletteImage(int width, int height, IReadOnlyDictionary<(int x, int y), ushort[]> rgbByPixel) { + var image = new MagickImage(MagickColors.Black, (uint)width, (uint)height); + var pixels = image.GetPixels(); + + foreach (var kvp in rgbByPixel) { + pixels.SetPixel(kvp.Key.x, kvp.Key.y, kvp.Value); + } + + return image; + } + + private static IMagickColor ColorAt(IPixelCollection pixels, int x, int y) { + return pixels.GetPixel(x, y).ToColor() ?? throw new InvalidOperationException("Pixel.ToColor() returned null."); + } + + [Fact] + public void BuildColorConversionCache_PopulatesCoordinatesForEachPixelColor() { + // Arrange + using var image = CreatePaletteImage( + width: 2, + height: 2, + rgbByPixel: new Dictionary<(int x, int y), ushort[]> { + [(0, 0)] = [65535, 0, 0], // red + [(1, 0)] = [0, 65535, 0], // green + [(0, 1)] = [0, 0, 65535], // blue + [(1, 1)] = [65535, 65535, 0], // yellow + } + ); + var pixels = image.GetPixels(); + + var dict = new ConcurrentDictionary, DNA.PaletteCoordinates>(); + + var red = ColorAt(pixels, 0, 0); + var green = ColorAt(pixels, 1, 0); + var blue = ColorAt(pixels, 0, 1); + var yellow = ColorAt(pixels, 1, 1); + + // Act + InvokePrivateStaticVoid("BuildColorConversionCache", pixels, dict); + + // Assert + Assert.Equal(4, dict.Count); + + Assert.True(dict.TryGetValue(red, out var redCoords)); + Assert.Equal((ushort)0, redCoords.X); + Assert.Equal((ushort)0, redCoords.Y); + + Assert.True(dict.TryGetValue(green, out var greenCoords)); + Assert.Equal((ushort)1, greenCoords.X); + Assert.Equal((ushort)0, greenCoords.Y); + + Assert.True(dict.TryGetValue(blue, out var blueCoords)); + Assert.Equal((ushort)0, blueCoords.X); + Assert.Equal((ushort)1, blueCoords.Y); + + Assert.True(dict.TryGetValue(yellow, out var yellowCoords)); + Assert.Equal((ushort)1, yellowCoords.X); + Assert.Equal((ushort)1, yellowCoords.Y); + } + + [Fact] + public void GetCoordinatesOfClosestCK3Color_WhenExactMatch_ReturnsExistingCoordinatesWithoutAddingKey() { + // Arrange + var dict = new ConcurrentDictionary, DNA.PaletteCoordinates>(); + var color = new MagickColor("#ff0000"); + var expected = new DNA.PaletteCoordinates { X = 10, Y = 20 }; + dict[color] = expected; + var beforeCount = dict.Count; + + // Act + var actual = InvokePrivateStatic("GetCoordinatesOfClosestCK3Color", color, dict); + + // Assert + Assert.Equal(expected.X, actual.X); + Assert.Equal(expected.Y, actual.Y); + Assert.Equal(beforeCount, dict.Count); + } + + [Fact] + public void GetCoordinatesOfClosestCK3Color_WhenMissing_AddsQueryColorToCacheMappedToClosest() { + // Arrange + var dict = new ConcurrentDictionary, DNA.PaletteCoordinates>(); + + var black = new MagickColor("#000000"); + var white = new MagickColor("#ffffff"); + + var blackCoords = new DNA.PaletteCoordinates { X = 1, Y = 1 }; + var whiteCoords = new DNA.PaletteCoordinates { X = 2, Y = 2 }; + + dict[black] = blackCoords; + dict[white] = whiteCoords; + + // Near-white (not exactly white) + var nearWhite = new MagickColor("#fffffe"); + + // Act + var actual = InvokePrivateStatic("GetCoordinatesOfClosestCK3Color", nearWhite, dict); + + // Assert: should map to white + Assert.Equal(whiteCoords.X, actual.X); + Assert.Equal(whiteCoords.Y, actual.Y); + + Assert.True(dict.TryGetValue(nearWhite, out var cached)); + Assert.Equal(whiteCoords.X, cached.X); + Assert.Equal(whiteCoords.Y, cached.Y); + } + + [Fact] + public void GetCoordinatesOfClosestCK3Color_UsesEuclideanDistance_SelectsNearest() { + // Arrange + var dict = new ConcurrentDictionary, DNA.PaletteCoordinates>(); + + var red = new MagickColor("#ff0000"); + var green = new MagickColor("#00ff00"); + + var redCoords = new DNA.PaletteCoordinates { X = 3, Y = 4 }; + var greenCoords = new DNA.PaletteCoordinates { X = 9, Y = 9 }; + + dict[red] = redCoords; + dict[green] = greenCoords; + + // Closer to red than green + var nearRed = new MagickColor("#f10000"); + + // Act + var actual = InvokePrivateStatic("GetCoordinatesOfClosestCK3Color", nearRed, dict); + + // Assert + Assert.Equal(redCoords.X, actual.X); + Assert.Equal(redCoords.Y, actual.Y); + } + + [Fact] + public void GetPaletteCoordinates_MapsIRPalettePixelColorToClosestCK3Coordinates() { + // Arrange + using var irImage = CreatePaletteImage( + width: 4, + height: 4, + rgbByPixel: new Dictionary<(int x, int y), ushort[]> { + [(2, 3)] = [1000, 2000, 3000], + } + ); + var irPixels = irImage.GetPixels(); + var irColor = ColorAt(irPixels, 2, 3); + + var ck3Dict = new ConcurrentDictionary, DNA.PaletteCoordinates>(); + var expected = new DNA.PaletteCoordinates { X = 123, Y = 456 }; + ck3Dict[irColor] = expected; + + var irCoords = new PaletteCoordinates { X = 2, Y = 3 }; + + // Act + var actual = InvokePrivateStatic("GetPaletteCoordinates", irCoords, irPixels, ck3Dict); + + // Assert + Assert.Equal(expected.X, actual.X); + Assert.Equal(expected.Y, actual.Y); + } + + [Theory] + [InlineData("eyepatch_1")] + [InlineData("eyepatch_2")] + public void ConvertEyeAccessories_EyePatchTemplates_AddSpecialHeadgearSpectacles(string irGeneTemplateName) { + var character = CreateAdultMale(); + var portraitData = CreatePortraitDataWithEyeAccessoryGeneTemplate(irGeneTemplateName); + var ck3GenesDb = CreateCk3GenesDbForEyeAccessories(); + var eyeColorCache = new ConcurrentDictionary, DNA.PaletteCoordinates>(); + + var colorDna = new Dictionary { + ["eye_color"] = new DNAColorGeneValue { X = 1, Y = 2, XRecessive = 3, YRecessive = 4 } + }; + var accessoryDna = new Dictionary(); + + InvokePrivateStaticVoid( + "ConvertEyeAccessories", + character, + portraitData, + colorDna, + accessoryDna, + ck3GenesDb, + eyeColorCache + ); + + Assert.True(accessoryDna.TryGetValue("special_headgear_spectacles", out var v)); + Assert.Equal("eye_patch", v.TemplateName); + Assert.Equal("patch_b", v.ObjectName); + } + + [Fact] + public void ConvertEyeAccessories_BlindfoldTemplate_AddsSpecialHeadgearSpectaclesBlindfold() { + var character = CreateAdultMale(); + var portraitData = CreatePortraitDataWithEyeAccessoryGeneTemplate("blindfold_1"); + var ck3GenesDb = CreateCk3GenesDbForEyeAccessories(); + var eyeColorCache = new ConcurrentDictionary, DNA.PaletteCoordinates>(); + + var colorDna = new Dictionary { + ["eye_color"] = new DNAColorGeneValue { X = 1, Y = 2, XRecessive = 3, YRecessive = 4 } + }; + var accessoryDna = new Dictionary(); + + InvokePrivateStaticVoid( + "ConvertEyeAccessories", + character, + portraitData, + colorDna, + accessoryDna, + ck3GenesDb, + eyeColorCache + ); + + Assert.True(accessoryDna.TryGetValue("special_headgear_spectacles", out var v)); + Assert.Equal("blindfold", v.TemplateName); + Assert.Equal("blindfold_b", v.ObjectName); + } + + [Fact] + public void ConvertEyeAccessories_BlindEyesTemplate_AddsEyeAccessoryBlindEyes() { + var character = CreateAdultMale(); + var portraitData = CreatePortraitDataWithEyeAccessoryGeneTemplate("blind_eyes"); + var ck3GenesDb = CreateCk3GenesDbForEyeAccessories(); + var eyeColorCache = new ConcurrentDictionary, DNA.PaletteCoordinates>(); + + var colorDna = new Dictionary { + ["eye_color"] = new DNAColorGeneValue { X = 1, Y = 2, XRecessive = 3, YRecessive = 4 } + }; + var accessoryDna = new Dictionary(); + + InvokePrivateStaticVoid( + "ConvertEyeAccessories", + character, + portraitData, + colorDna, + accessoryDna, + ck3GenesDb, + eyeColorCache + ); + + Assert.True(accessoryDna.TryGetValue("eye_accessory", out var v)); + Assert.Equal("blind_eyes", v.TemplateName); + Assert.Equal("blind_obj_b", v.ObjectName); + } + + [Fact] + public void ConvertEyeAccessories_RedEyesTemplate_OverridesEyeColorToRed() { + var character = CreateAdultMale(); + var portraitData = CreatePortraitDataWithEyeAccessoryGeneTemplate("red_eyes"); + var ck3GenesDb = CreateCk3GenesDbForEyeAccessories(); + var eyeColorCache = new ConcurrentDictionary, DNA.PaletteCoordinates> { + [new MagickColor("#ff0000")] = new() { X = 100, Y = 200 }, + }; + + var original = new DNAColorGeneValue { X = 1, Y = 2, XRecessive = 3, YRecessive = 4 }; + var colorDna = new Dictionary { + ["eye_color"] = original + }; + var accessoryDna = new Dictionary(); + + InvokePrivateStaticVoid( + "ConvertEyeAccessories", + character, + portraitData, + colorDna, + accessoryDna, + ck3GenesDb, + eyeColorCache + ); + + Assert.True(colorDna.TryGetValue("eye_color", out var updated)); + Assert.Equal((byte)50, updated.X); + Assert.Equal((byte)100, updated.Y); + Assert.Equal(original.XRecessive, updated.XRecessive); + Assert.Equal(original.YRecessive, updated.YRecessive); + } + + [Fact] + public void ConvertEyeAccessories_BlindTrait_AddsBlindEyesAndBlindfold() { + var character = CreateAdultMale(1, "blind"); + var portraitData = CreatePortraitDataWithEyeAccessoryGeneTemplate("normal_eyes"); + var ck3GenesDb = CreateCk3GenesDbForEyeAccessories(); + var eyeColorCache = new ConcurrentDictionary, DNA.PaletteCoordinates>(); + + var colorDna = new Dictionary { + ["eye_color"] = new() { X = 1, Y = 2, XRecessive = 3, YRecessive = 4 } + }; + var accessoryDna = new Dictionary(); + + InvokePrivateStaticVoid( + "ConvertEyeAccessories", + character, + portraitData, + colorDna, + accessoryDna, + ck3GenesDb, + eyeColorCache + ); + + Assert.True(accessoryDna.TryGetValue("eye_accessory", out var eyes)); + Assert.Equal("blind_eyes", eyes.TemplateName); + + Assert.True(accessoryDna.TryGetValue("special_headgear_spectacles", out var blindfold)); + Assert.Equal("blindfold", blindfold.TemplateName); + } + + [Fact] + public void ConvertEyeAccessories_OneEyedTrait_AddsEyePatch() { + var character = CreateAdultMale(1, "one_eyed"); + var portraitData = CreatePortraitDataWithEyeAccessoryGeneTemplate("normal_eyes"); + var ck3GenesDb = CreateCk3GenesDbForEyeAccessories(); + var eyeColorCache = new ConcurrentDictionary, DNA.PaletteCoordinates>(); + + var colorDna = new Dictionary { + ["eye_color"] = new DNAColorGeneValue { X = 1, Y = 2, XRecessive = 3, YRecessive = 4 } + }; + var accessoryDna = new Dictionary(); + + InvokePrivateStaticVoid( + "ConvertEyeAccessories", + character, + portraitData, + colorDna, + accessoryDna, + ck3GenesDb, + eyeColorCache + ); + + Assert.True(accessoryDna.TryGetValue("special_headgear_spectacles", out var v)); + Assert.Equal("eye_patch", v.TemplateName); + Assert.Equal("patch_b", v.ObjectName); + } +} diff --git a/ImperatorToCK3.UnitTests/CK3/Titles/TitleRankUtilsTests.cs b/ImperatorToCK3.UnitTests/CK3/Titles/TitleRankUtilsTests.cs index 424a6adc4..2746d5b14 100644 --- a/ImperatorToCK3.UnitTests/CK3/Titles/TitleRankUtilsTests.cs +++ b/ImperatorToCK3.UnitTests/CK3/Titles/TitleRankUtilsTests.cs @@ -6,6 +6,7 @@ namespace ImperatorToCK3.UnitTests.CK3.Titles; public class TitleRankUtilsTests { [Theory] + [InlineData('h', TitleRank.hegemony)] [InlineData('e', TitleRank.empire)] [InlineData('k', TitleRank.kingdom)] [InlineData('d', TitleRank.duchy)] diff --git a/ImperatorToCK3.UnitTests/Mappers/Region/CK3RegionTests.cs b/ImperatorToCK3.UnitTests/Mappers/Region/CK3RegionTests.cs index f13ae2dbb..598698391 100644 --- a/ImperatorToCK3.UnitTests/Mappers/Region/CK3RegionTests.cs +++ b/ImperatorToCK3.UnitTests/Mappers/Region/CK3RegionTests.cs @@ -2,6 +2,7 @@ using commonItems.Colors; using ImperatorToCK3.CK3.Titles; using ImperatorToCK3.Mappers.Region; +using System.Linq; using Xunit; namespace ImperatorToCK3.UnitTests.Mappers.Region; @@ -9,12 +10,43 @@ namespace ImperatorToCK3.UnitTests.Mappers.Region; public class CK3RegionTests { private static readonly ColorFactory colorFactory = new(); [Fact] - public void BlankRegionLoadsWithNoRegionsAndNoDuchies() { + public void BlankRegionLoadsWithNoRegionsNoDuchiesAndNoProvinces() { var reader = new BufferedReader(string.Empty); var region = CK3Region.Parse("region1", reader); Assert.Empty(region.Regions); Assert.Empty(region.Duchies); + Assert.Empty(region.Provinces); + } + + [Fact] + public void KingdomCanBeLoaded() { + var reader = new BufferedReader("kingdoms = { k_kingdom }"); + var region = CK3Region.Parse("region1", reader); + Assert.Empty(region.Duchies); // not linked yet + + var titles = new Title.LandedTitles(); + var titlesReader = new BufferedReader( + """ + { + k_kingdom = { + d_duchy = { c_county = { b_barony = { province = 42 } } } + d_duchy2 = { c_county2 = { b_barony2 = { province = 43 } } + } + } + """); + titles.LoadTitles(titlesReader, colorFactory); + + region.LinkRegions( + regions: new(), + kingdoms: titles.Where(t => t.Rank == TitleRank.kingdom).ToDictionary(t => t.Id, t => t), + duchies: titles.Where(t => t.Rank == TitleRank.duchy).ToDictionary(t => t.Id, t => t), + counties: titles.Where(t => t.Rank == TitleRank.county).ToDictionary(t => t.Id, t => t) + ); + Assert.Collection(region.Duchies, + item => Assert.Equal("d_duchy", item.Key), + item => Assert.Equal("d_duchy2", item.Key) + ); } [Fact] @@ -42,6 +74,36 @@ public void RegionCanBeLoaded() { ); } + [Fact] + public void MultipleKingdomsCanBeLoaded() { + var reader = new BufferedReader("kingdoms = { k_rome k_greece k_egypt }"); + var region = CK3Region.Parse("region1", reader); + Assert.Empty(region.Duchies); // not linked yet + + var titles = new Title.LandedTitles(); + var titlesReader = new BufferedReader( + """ + { + k_rome = { d_duchy_rome = { c_county_rome = { b_barony_rome = { province = 41 } } } } + k_greece = { d_duchy_greece = { c_county_greece = { b_barony_greece = { province = 42 } } } } + k_egypt = { d_duchy_egypt = { c_county_egypt = { b_barony_egypt = { province = 43 } } } } + } + """); + titles.LoadTitles(titlesReader, colorFactory); + + region.LinkRegions( + regions: new(), + kingdoms: titles.Where(t => t.Rank == TitleRank.kingdom).ToDictionary(t => t.Id, t => t), + duchies: titles.Where(t => t.Rank == TitleRank.duchy).ToDictionary(t => t.Id, t => t), + counties: titles.Where(t => t.Rank == TitleRank.county).ToDictionary(t => t.Id, t => t) + ); + Assert.Collection(region.Duchies, + item => Assert.Equal("d_duchy_rome", item.Key), + item => Assert.Equal("d_duchy_greece", item.Key), + item => Assert.Equal("d_duchy_egypt", item.Key) + ); + } + [Fact] public void MultipleDuchiesCanBeLoaded() { var reader = new BufferedReader("duchies = { d_ivrea d_athens d_oppo }"); diff --git a/ImperatorToCK3.UnitTests/Mappers/TagTitle/TagTitleMapperTests.cs b/ImperatorToCK3.UnitTests/Mappers/TagTitle/TagTitleMapperTests.cs index 1b14057e3..89f3fc413 100644 --- a/ImperatorToCK3.UnitTests/Mappers/TagTitle/TagTitleMapperTests.cs +++ b/ImperatorToCK3.UnitTests/Mappers/TagTitle/TagTitleMapperTests.cs @@ -358,10 +358,17 @@ public void GetCK3TitleRankReturnsCorrectRank() { tag11.RegisterProvince(new(i)); } Assert.Equal('d', mapper.GetTitleForTag(tag11, "Test Dukedom", maxTitleRank: TitleRank.empire, ck3LocDB)![0]); + + var tag12 = Country.Parse(new BufferedReader("tag=TEST_TAG12"), 12); + for (ulong i = 1; i < 800; ++i) { + // makes the country a great power, with enough territories to convert to a hegemony + tag12.RegisterProvince(new(i)); + } + Assert.Equal('h', mapper.GetTitleForTag(tag12, "Test Hegemony", maxTitleRank: TitleRank.hegemony, ck3LocDB)![0]); } [Fact] - public void GetTitleForTagPreventsLocKeyHaskConflict() { + public void GetTitleForTagPreventsLocKeyHashConflict() { // k_IRTOCK3_ATV_adj and building_nishapur_mines_02 have a conflicting Murmur3A hash. var ck3LocDB = new TestCK3LocDB(); ck3LocDB.AddLocForLanguage("building_nishapur_mines_02", "english", "Nishapur Mines"); diff --git a/ImperatorToCK3.UnitTests/Outputter/CoatOfArmsOutputterTests.cs b/ImperatorToCK3.UnitTests/Outputter/CoatOfArmsOutputterTests.cs index 9845ff7bc..b78951089 100644 --- a/ImperatorToCK3.UnitTests/Outputter/CoatOfArmsOutputterTests.cs +++ b/ImperatorToCK3.UnitTests/Outputter/CoatOfArmsOutputterTests.cs @@ -79,13 +79,18 @@ public async Task CoaIsOutputtedForCountryWithFlagSet() { await CoatOfArmsOutputter.OutputCoas(outputModPath, titles, new List(), new CoaMapper()); - await using var file = File.OpenRead(outputPath); - var reader = new StreamReader(file); + var actualText = TextTestUtils.NormalizeNewlines(await File.ReadAllTextAsync(outputPath)); + var expectedText = TextTestUtils.NormalizeNewlines( + """ + d_IRTOCK3_ADI={ + pattern="pattern_solid.tga" + color1=red color2=green color3=blue + } + + """ + ); - Assert.Equal("d_IRTOCK3_ADI={", await reader.ReadLineAsync()); - Assert.Equal("\tpattern=\"pattern_solid.tga\"", await reader.ReadLineAsync()); - Assert.Equal("\tcolor1=red color2=green color3=blue", await reader.ReadLineAsync()); - Assert.Equal("}", await reader.ReadLineAsync()); + Assert.Equal(expectedText, actualText); } [Fact] @@ -126,9 +131,7 @@ public async Task CoaIsNotOutputtedForCountryWithoutFlagSet() { await CoatOfArmsOutputter.OutputCoas(outputModPath, titles, new List(), new CoaMapper()); - await using var file = File.OpenRead(outputPath); - var reader = new StreamReader(file); - - Assert.True(reader.EndOfStream); + var actualText = await File.ReadAllTextAsync(outputPath); + Assert.True(string.IsNullOrWhiteSpace(actualText)); } } \ No newline at end of file diff --git a/ImperatorToCK3.UnitTests/Outputter/DynastiesOutputterTests.cs b/ImperatorToCK3.UnitTests/Outputter/DynastiesOutputterTests.cs index cbb1b03b6..db365f70e 100644 --- a/ImperatorToCK3.UnitTests/Outputter/DynastiesOutputterTests.cs +++ b/ImperatorToCK3.UnitTests/Outputter/DynastiesOutputterTests.cs @@ -62,18 +62,20 @@ public async Task DynastiesAreOutputted() { SystemUtils.TryCreateFolder(CommonFunctions.GetPath(outputPath)); await DynastiesOutputter.OutputDynasties(outputModPath, dynasties); - await using var file = File.OpenRead(outputPath); - var reader = new StreamReader(file); + var actualText = TextTestUtils.NormalizeNewlines(await File.ReadAllTextAsync(outputPath)); + var expectedText = TextTestUtils.NormalizeNewlines( + """ + dynn_irtock3_1={ + name = dynn_irtock3_1 + } + dynn_irtock3_2={ + name = dynn_irtock3_2 + culture = roman + } + + """ + ); - Assert.Equal("dynn_irtock3_1={", await reader.ReadLineAsync()); - Assert.Equal("\tname = dynn_irtock3_1", await reader.ReadLineAsync()); - Assert.Equal("}", await reader.ReadLineAsync()); - - Assert.Equal("dynn_irtock3_2={", await reader.ReadLineAsync()); - Assert.Equal("\tname = dynn_irtock3_2", await reader.ReadLineAsync()); - Assert.Equal("\tculture = roman", await reader.ReadLineAsync()); - Assert.Equal("}", await reader.ReadLineAsync()); - Assert.True(string.IsNullOrWhiteSpace(await reader.ReadLineAsync())); - Assert.True(reader.EndOfStream); + Assert.Equal(expectedText, actualText); } } \ No newline at end of file diff --git a/ImperatorToCK3.UnitTests/Outputter/SuccessionTriggersOutputterTests.cs b/ImperatorToCK3.UnitTests/Outputter/SuccessionTriggersOutputterTests.cs index eb738d01d..29e40db50 100644 --- a/ImperatorToCK3.UnitTests/Outputter/SuccessionTriggersOutputterTests.cs +++ b/ImperatorToCK3.UnitTests/Outputter/SuccessionTriggersOutputterTests.cs @@ -1,6 +1,7 @@ using commonItems; using ImperatorToCK3.CK3.Titles; using ImperatorToCK3.Outputter; +using ImperatorToCK3.UnitTests.TestHelpers; using System.Collections.Generic; using System.IO; using System.Threading.Tasks; @@ -36,18 +37,23 @@ public async Task PrimogenitureAndSeniorityTriggersAreOutputted() { await SuccessionTriggersOutputter.OutputSuccessionTriggers(outputModPath, titles, date); - await using var file = File.OpenRead(outputFilePath); - var reader = new StreamReader(file); - Assert.Equal("historical_succession_access_single_heir_succession_law_trigger={", await reader.ReadLineAsync()); - Assert.Equal("\tOR={", await reader.ReadLineAsync()); - Assert.Equal("\t\thas_title=title:k_kingdom1", await reader.ReadLineAsync()); - Assert.Equal("\t}", await reader.ReadLineAsync()); - Assert.Equal("}", await reader.ReadLineAsync()); - Assert.Equal("historical_succession_access_single_heir_dynasty_house_trigger={", await reader.ReadLineAsync()); - Assert.Equal("\tOR={", await reader.ReadLineAsync()); - Assert.Equal("\t\thas_title=title:k_kingdom2", await reader.ReadLineAsync()); - Assert.Equal("\t}", await reader.ReadLineAsync()); - Assert.Equal("}", await reader.ReadLineAsync()); - Assert.True(reader.EndOfStream); + var actualText = TextTestUtils.NormalizeNewlines(await File.ReadAllTextAsync(outputFilePath)); + var expectedText = TextTestUtils.NormalizeNewlines( + """ + historical_succession_access_single_heir_succession_law_trigger={ + OR={ + has_title=title:k_kingdom1 + } + } + historical_succession_access_single_heir_dynasty_house_trigger={ + OR={ + has_title=title:k_kingdom2 + } + } + + """ + ); + + Assert.Equal(expectedText, actualText); } } \ No newline at end of file diff --git a/ImperatorToCK3.UnitTests/Outputter/TitlesOutputterTests.cs b/ImperatorToCK3.UnitTests/Outputter/TitlesOutputterTests.cs index 29187002c..4612dccaf 100644 --- a/ImperatorToCK3.UnitTests/Outputter/TitlesOutputterTests.cs +++ b/ImperatorToCK3.UnitTests/Outputter/TitlesOutputterTests.cs @@ -1,6 +1,7 @@ using commonItems; using ImperatorToCK3.CK3.Titles; using ImperatorToCK3.Outputter; +using ImperatorToCK3.UnitTests.TestHelpers; using System.IO; using System.Threading.Tasks; using Xunit; @@ -39,50 +40,43 @@ public async Task TitlesAreOutputted() { await TitlesOutputter.OutputTitles(outputModPath, titles); Assert.True(File.Exists(kingdomHistoryPath)); - await using var kingdomHistoryFile = File.OpenRead(kingdomHistoryPath); - var reader = new StreamReader(kingdomHistoryFile); - Assert.Equal("k_kingdom={", await reader.ReadLineAsync()); - Assert.Equal("\t20.1.1 = { liege = 0 }", await reader.ReadLineAsync()); - Assert.Equal("}", await reader.ReadLineAsync()); - Assert.True(reader.EndOfStream); + var kingdomHistoryText = await File.ReadAllTextAsync(kingdomHistoryPath); + Assert.Equal("k_kingdom={\n\t20.1.1 = { liege = 0 }\n}\n", TextTestUtils.NormalizeNewlines(kingdomHistoryText)); Assert.True(File.Exists(otherTitlesHistoryPath)); - await using var otherTitlesHistoryFile = File.OpenRead(otherTitlesHistoryPath); - reader = new StreamReader(otherTitlesHistoryFile); - Assert.Equal("k_special_title={", await reader.ReadLineAsync()); - Assert.Equal("\t20.1.1 = { holder = bob_42 }", await reader.ReadLineAsync()); - Assert.Equal("}", await reader.ReadLineAsync()); - Assert.True(reader.EndOfStream); + var otherTitlesHistoryText = await File.ReadAllTextAsync(otherTitlesHistoryPath); + Assert.Equal("k_special_title={\n\t20.1.1 = { holder = bob_42 }\n}\n", TextTestUtils.NormalizeNewlines(otherTitlesHistoryText)); Assert.True(File.Exists(landedTitlesPath)); - await using var landedTitlesFile = File.OpenRead(landedTitlesPath); - reader = new StreamReader(landedTitlesFile); - Assert.Equal("k_kingdom = {", await reader.ReadLineAsync()); - Assert.Equal("\td_duchy = {", await reader.ReadLineAsync()); - Assert.Equal("\t\tc_county = {", await reader.ReadLineAsync()); - Assert.Equal("\t\t\tb_barony = {", await reader.ReadLineAsync()); - Assert.Equal("\t\t\t\tlandless = no", await reader.ReadLineAsync()); - Assert.Equal("\t\t\t\tdefinite_form = no", await reader.ReadLineAsync()); - Assert.Equal("\t\t\t\truler_uses_title_name = no", await reader.ReadLineAsync()); - Assert.Equal("\t\t\t}", await reader.ReadLineAsync()); - Assert.Equal("\t\t\tlandless = no", await reader.ReadLineAsync()); - Assert.Equal("\t\t\tdefinite_form = no", await reader.ReadLineAsync()); - Assert.Equal("\t\t\truler_uses_title_name = no", await reader.ReadLineAsync()); - Assert.Equal("\t\t}", await reader.ReadLineAsync()); - Assert.Equal("\t\tlandless = no", await reader.ReadLineAsync()); - Assert.Equal("\t\tdefinite_form = no", await reader.ReadLineAsync()); - Assert.Equal("\t\truler_uses_title_name = no", await reader.ReadLineAsync()); - Assert.Equal("\t}", await reader.ReadLineAsync()); - Assert.Equal("\tlandless = no", await reader.ReadLineAsync()); - Assert.Equal("\tdefinite_form = no", await reader.ReadLineAsync()); - Assert.Equal("\truler_uses_title_name = no", await reader.ReadLineAsync()); - Assert.Equal("}", await reader.ReadLineAsync()); - Assert.Equal("k_special_title = {", await reader.ReadLineAsync()); - Assert.Equal("\tlandless = no", await reader.ReadLineAsync()); - Assert.Equal("\tdefinite_form = no", await reader.ReadLineAsync()); - Assert.Equal("\truler_uses_title_name = no", await reader.ReadLineAsync()); - Assert.Equal("}", await reader.ReadLineAsync()); - Assert.True(reader.EndOfStream); + var landedTitlesText = await File.ReadAllTextAsync(landedTitlesPath); + var expectedLandedTitles = TextTestUtils.NormalizeNewlines(""" + k_kingdom = { + d_duchy = { + c_county = { + b_barony = { + landless = no + definite_form = no + ruler_uses_title_name = no + } + landless = no + definite_form = no + ruler_uses_title_name = no + } + landless = no + definite_form = no + ruler_uses_title_name = no + } + landless = no + definite_form = no + ruler_uses_title_name = no + } + k_special_title = { + landless = no + definite_form = no + ruler_uses_title_name = no + } + """); + Assert.Equal(expectedLandedTitles, TextTestUtils.NormalizeNewlines(landedTitlesText)); } [Fact] @@ -100,10 +94,11 @@ public async Task VariablesAreOutputted() { await TitlesOutputter.OutputTitles(outputModPath, titles); Assert.True(File.Exists(landedTitlesPath)); - await using var landedTitlesFile = File.OpenRead(landedTitlesPath); - var reader = new StreamReader(landedTitlesFile); - Assert.Equal("@default_ai_priority=20", await reader.ReadLineAsync()); - Assert.Equal("@default_ai_aggressiveness=40", await reader.ReadLineAsync()); - Assert.True(reader.EndOfStream); + var landedTitlesText = await File.ReadAllTextAsync(landedTitlesPath); + var expectedVariables = TextTestUtils.NormalizeNewlines(""" + @default_ai_priority=20 + @default_ai_aggressiveness=40 + """); + Assert.Equal(expectedVariables, TextTestUtils.NormalizeNewlines(landedTitlesText).TrimEnd()); } } \ No newline at end of file diff --git a/ImperatorToCK3.UnitTests/TestFiles/configurables/country_rank_map.txt b/ImperatorToCK3.UnitTests/TestFiles/configurables/country_rank_map.txt index 896985cb1..a32eacfac 100644 --- a/ImperatorToCK3.UnitTests/TestFiles/configurables/country_rank_map.txt +++ b/ImperatorToCK3.UnitTests/TestFiles/configurables/country_rank_map.txt @@ -1,10 +1,11 @@ -# Some words specific to empires, kingdoms and duchies override the mappings based on rank. +# Some words specific to hegemonies, empires, kingdoms and duchies found in country names can override the rank-based mappings. +hegemony_keywords = { } empire_keywords = { "empire" "imperium" } kingdom_keywords = { "kingdom" "regnum" } duchy_keywords = { "duchy" "principality" "dukedom" "ducatus" } # Every Imperator country rank should be mapped to CK3 title rank. -# d - duchy, k - kingdom, e - empire +# d - duchy, k - kingdom, e - empire, h - hegemony # Mapping to county and barony level is not supported. # A mapping can contain optional required_territories field. @@ -18,4 +19,5 @@ link = { ir=local_power ck3=k } link = { ir=regional_power ck3=k } link = { ir=major_power required_territories=300 ck3=e } link = { ir=major_power ck3=k } +link = { ir=great_power required_territories=700 ck3=h } link = { ir=great_power ck3=e } diff --git a/ImperatorToCK3.UnitTests/TestHelpers/TextTestUtils.cs b/ImperatorToCK3.UnitTests/TestHelpers/TextTestUtils.cs new file mode 100644 index 000000000..e744b3124 --- /dev/null +++ b/ImperatorToCK3.UnitTests/TestHelpers/TextTestUtils.cs @@ -0,0 +1,8 @@ +namespace ImperatorToCK3.UnitTests.TestHelpers; + +internal static class TextTestUtils { + /// + /// Normalizes newlines to LF so text assertions behave the same on Windows and *nix. + /// + public static string NormalizeNewlines(string text) => text.Replace("\r\n", "\n").Replace("\r", "\n"); +} diff --git a/ImperatorToCK3.sln.DotSettings b/ImperatorToCK3.sln.DotSettings index eb84ea975..9277e5e3a 100644 --- a/ImperatorToCK3.sln.DotSettings +++ b/ImperatorToCK3.sln.DotSettings @@ -63,6 +63,7 @@ True True True + True True True True diff --git a/ImperatorToCK3/CK3/Characters/Character.cs b/ImperatorToCK3/CK3/Characters/Character.cs index acf4fe854..37d8f4af8 100644 --- a/ImperatorToCK3/CK3/Characters/Character.cs +++ b/ImperatorToCK3/CK3/Characters/Character.cs @@ -827,15 +827,16 @@ CK3LocDB ck3LocDB sb.AppendLine($"\t\t\torigin=province:{ck3Location}"); } + string unitScopeId = $"ir_unit_{unit.Id}"; if (ck3Leader is not null) { // Will have no effect if army is not actually spawned (see spawn_army explanation on CK3 wiki). - sb.AppendLine($"\t\t\tsave_temporary_scope_as={unit.Id}"); + sb.AppendLine($"\t\t\tsave_temporary_scope_as={unitScopeId}"); } sb.AppendLine("\t\t}"); if (ck3Leader is not null) { - sb.AppendLine($"\t\tif={{ limit={{ exists=scope:{unit.Id} }} scope:{unit.Id}={{ set_commander=character:{ck3Leader.Id} }} }}"); + sb.AppendLine($"\t\tscope:{unitScopeId} ?= {{ assign_commander=character:{ck3Leader.Id} }}"); } } diff --git a/ImperatorToCK3/CK3/Characters/CharacterCollection.cs b/ImperatorToCK3/CK3/Characters/CharacterCollection.cs index 7eef4b5b6..e228eab16 100644 --- a/ImperatorToCK3/CK3/Characters/CharacterCollection.cs +++ b/ImperatorToCK3/CK3/Characters/CharacterCollection.cs @@ -22,6 +22,7 @@ using System.Collections.Concurrent; using System.Collections.Frozen; using System.Collections.Generic; +using System.Globalization; using System.IO; using System.Linq; using System.Text.RegularExpressions; @@ -879,4 +880,50 @@ public void RemoveInvalidDynastiesFromHistory(DynastyCollection dynasties) { }); } } + + internal void CalculateChineseDynasticCycleVariables(Title.LandedTitles titles, Date irEndDate, Date ck3BookmarkDate) { + var celestialGovTitles = titles + .Where(t => t.ImperatorCountry is not null && + string.Equals(t.ImperatorCountry.Government, "chinese_empire", StringComparison.Ordinal) && + t.GetDeFactoLiege(ck3BookmarkDate) is null); + foreach (var title in celestialGovTitles) { + // Get current holder (can be Imperator character or a generated successor). + var holderId = title.GetHolderId(ck3BookmarkDate); + if (holderId.Equals("0", StringComparison.Ordinal) || !TryGetValue(holderId, out var holder)) { + continue; + } + + // Calculate "years_with_government" value (estimated years the country had chinese_empire government). + double yearsWithChineseGov = 0; + Date dateOfFirstChineseGovTerm = irEndDate; + foreach (var term in Enumerable.Reverse(title.ImperatorCountry!.RulerTerms)) { + if (string.Equals(term.Government, "chinese_empire", StringComparison.Ordinal)) { + dateOfFirstChineseGovTerm = term.StartDate; + } else { + // Calculate additional years as half of the years between the + // start of the last non-Chinese gov term and the first Chinese gob term. + yearsWithChineseGov += dateOfFirstChineseGovTerm.DiffInYears(term.StartDate) / 2; + break; + } + } + yearsWithChineseGov += ck3BookmarkDate.DiffInYears(dateOfFirstChineseGovTerm); + + // Calculate "imperator_unrest" based on values from the save. + double unrest; + if (title.ImperatorCountry.TotalPowerBase > 0) { + unrest = title.ImperatorCountry.NonLoyalPowerBase / title.ImperatorCountry.TotalPowerBase; + } else { + unrest = 0; + } + + // Add the variables to character's history. + string effectStr = $$""" + { + set_variable = { name = years_with_government value = {{yearsWithChineseGov.ToString("0.#####", CultureInfo.InvariantCulture)}} } + set_variable = { name = imperator_unrest value = {{unrest.ToString("0.#####", CultureInfo.InvariantCulture)}} } + } + """; + holder.History.AddFieldValue(ck3BookmarkDate, "effects", "effect", new StringOfItem(effectStr)); + } + } } \ No newline at end of file diff --git a/ImperatorToCK3/CK3/Characters/DNAFactory.cs b/ImperatorToCK3/CK3/Characters/DNAFactory.cs index 6b2c39ae8..f1f4cbabe 100644 --- a/ImperatorToCK3/CK3/Characters/DNAFactory.cs +++ b/ImperatorToCK3/CK3/Characters/DNAFactory.cs @@ -154,84 +154,8 @@ internal DNA GenerateDNA(Imperator.Characters.Character irCharacter, PortraitDat } else { Logger.Warn("clothes not found in CK3 special accessory genes!"); } - - // Convert eye accessories. - const string blindfoldGeneId = "special_headgear_spectacles"; - const string blindfoldTemplateId = "blindfold"; - var irEyeAccessoryGeneTemplateName = irPortraitData.AccessoryGenesDict["eye_accessory"].GeneTemplate; - switch (irEyeAccessoryGeneTemplateName) { - case "normal_eyes": - break; - case "eyepatch_1": - case "eyepatch_2": // TODO: check if this is correctly added to portrait modifiers if needed - var eyePatchTemplate = ck3GenesDB.SpecialAccessoryGenes["special_headgear_spectacles"] - .GeneTemplates["eye_patch"]; - if (eyePatchTemplate.AgeSexWeightBlocks.TryGetValue(irCharacter.AgeSex, out WeightBlock? eyePatchWeightBlock)) { - var eyePatchObjectName = eyePatchWeightBlock.GetMatchingObject(1) ?? eyePatchWeightBlock.ObjectNames.Last(); - accessoryDNAValues["special_headgear_spectacles"] = new(eyePatchTemplate.Id, eyePatchObjectName, eyePatchWeightBlock); - } - - break; - case "blindfold_1": // TODO: check if this is correctly added to portrait modifiers if needed - if (!ck3GenesDB.SpecialAccessoryGenes.TryGetValue(blindfoldGeneId, out var blindfoldGene)) { - Logger.Warn($"{blindfoldGeneId} not found in CK3 special accessory genes!"); - break; - } - if (!blindfoldGene.GeneTemplates.TryGetValue(blindfoldTemplateId, out var blindfoldTemplate)) { - Logger.Warn($"{blindfoldTemplateId} not found in CK3 special accessory genes!"); - break; - } - - if (blindfoldTemplate.AgeSexWeightBlocks.TryGetValue(irCharacter.AgeSex, out WeightBlock? blindfoldWeightBlock)) { - var blindfoldObjectName = blindfoldWeightBlock.GetMatchingObject(1) ?? blindfoldWeightBlock.ObjectNames.Last(); - accessoryDNAValues[blindfoldGeneId] = new(blindfoldTemplate.Id, blindfoldObjectName, blindfoldWeightBlock); - } - - break; - case "blind_eyes": // TODO: check if this is correctly added to portrait modifiers if needed - var blindEyesTemplate = ck3GenesDB.AccessoryGenes["eye_accessory"] - .GeneTemplates["blind_eyes"]; - if (blindEyesTemplate.AgeSexWeightBlocks.TryGetValue(irCharacter.AgeSex, out WeightBlock? blindEyesWeightBlock)) { - var blindEyesObjectName = blindEyesWeightBlock.GetMatchingObject(1) ?? blindEyesWeightBlock.ObjectNames.Last(); - accessoryDNAValues["eye_accessory"] = new(blindEyesTemplate.Id, blindEyesObjectName, blindEyesWeightBlock); - } - break; - case "red_eyes": // TODO: check if this is correctly converted - var magickRed = new MagickColor("#ff0000"); - var redEyeCoordinates = GetCoordinatesOfClosestCK3Color(magickRed, ck3EyeColorToPaletteCoordinatesDict); - colorDNAValues["eye_color"] = colorDNAValues["eye_color"] with { - X = (byte)(redEyeCoordinates.X/2), - Y = (byte)(redEyeCoordinates.Y/2) - }; - break; - default: - Logger.Warn($"Unhandled eye accessory gene template name: {irEyeAccessoryGeneTemplateName}"); - break; - } - if (irCharacter.Traits.Contains("blind")) { - var blindEyesTemplate = ck3GenesDB.AccessoryGenes["eye_accessory"].GeneTemplates["blind_eyes"]; - if (blindEyesTemplate.AgeSexWeightBlocks.TryGetValue(irCharacter.AgeSex, out WeightBlock? blindEyesWeighBlock)) { - var blindEyesObjectName = blindEyesWeighBlock.GetMatchingObject(1) ?? blindEyesWeighBlock.ObjectNames.Last(); - accessoryDNAValues["eye_accessory"] = new(blindEyesTemplate.Id, blindEyesObjectName, blindEyesWeighBlock); // TODO: check if this is correctly added to portrait modifiers if needed - } - - if (!ck3GenesDB.SpecialAccessoryGenes.TryGetValue(blindfoldGeneId, out var blindfoldGene)) { - Logger.Warn($"{blindfoldGeneId} not found in CK3 special accessory genes!"); - } else if (!blindfoldGene.GeneTemplates.TryGetValue(blindfoldTemplateId, out var blindfoldTemplate)) { - Logger.Warn($"{blindfoldTemplateId} not found in CK3 special accessory genes!"); - } else if (blindfoldTemplate.AgeSexWeightBlocks.TryGetValue(irCharacter.AgeSex, out WeightBlock? blindfoldWeighBlock)) { - var blindfoldObjectName = blindfoldWeighBlock.GetMatchingObject(1) ?? blindfoldWeighBlock.ObjectNames.Last(); - accessoryDNAValues[blindfoldGeneId] = new(blindfoldTemplate.Id, blindfoldObjectName, blindfoldWeighBlock); // TODO: check if this is correctly added to portrait modifiers if needed - } - } else if (irCharacter.Traits.Contains("one_eyed")) { - var eyePatchTemplate = ck3GenesDB.SpecialAccessoryGenes["special_headgear_spectacles"] - .GeneTemplates["eye_patch"]; - if (eyePatchTemplate.AgeSexWeightBlocks.TryGetValue(irCharacter.AgeSex, out WeightBlock? eyePatchWeighBlock)) { - var eyePatchObjectName = eyePatchWeighBlock.GetMatchingObject(1) ?? eyePatchWeighBlock.ObjectNames.Last(); - accessoryDNAValues["special_headgear_spectacles"] = new(eyePatchTemplate.Id, eyePatchObjectName, eyePatchWeighBlock); // TODO: check if this is correctly added to portrait modifiers if needed - } - } + ConvertEyeAccessories(irCharacter, irPortraitData, colorDNAValues, accessoryDNAValues, ck3GenesDB, ck3EyeColorToPaletteCoordinatesDict); var irMorphGenesWithDirectEquivalents = new[] { "gene_head_height", "gene_head_width", "gene_head_profile", @@ -330,17 +254,17 @@ internal DNA GenerateDNA(Imperator.Characters.Character irCharacter, PortraitDat } private void ConvertBaldness(Imperator.Characters.Character irCharacter, Dictionary morphDNAValues, Dictionary accessoryDNAValues) { - if (irCharacter.IsBald) { // TODO: CHECK IF BALD CHARACTERS STILL CORRECTLY APPEAR BALD IN CK3 + if (irCharacter.IsBald) { morphDNAValues["gene_baldness"] = new DNAGeneValue { TemplateName = "male_pattern_baldness", IntSliderValue = 127, TemplateRecessiveName = "male_pattern_baldness", IntSliderValueRecessive = 127 }; - + if (ck3GenesDB.SpecialAccessoryGenes.TryGetValue("hairstyles", out var hairstylesGene)) { DNAAccessoryGeneValue? hairstylesGeneValue = null; - + // If m_hair_fp4_indian_01_full_bald (which is close to I:R baldness) exists, use it. const string indianBaldnessObjectName = "m_hair_fp4_indian_01_full_bald"; if (hairstylesGene.GeneTemplates.TryGetValue("fp4_bald_hairstyles", out var ck3GeneTemplate)) { @@ -348,7 +272,7 @@ private void ConvertBaldness(Imperator.Characters.Character irCharacter, Diction hairstylesGeneValue = new DNAAccessoryGeneValue(ck3GeneTemplate.Id, indianBaldnessObjectName, weightBlock); } } - + // Otherwise, just use the no_hairstyles template. const string baldnessObjectName = "bald"; if (hairstylesGeneValue is null && hairstylesGene.GeneTemplates.TryGetValue("no_hairstyles", out var noHairStylesTemplate)) { @@ -356,12 +280,12 @@ private void ConvertBaldness(Imperator.Characters.Character irCharacter, Diction hairstylesGeneValue = new DNAAccessoryGeneValue(noHairStylesTemplate.Id, baldnessObjectName, weightBlock); } } - + if (hairstylesGeneValue.HasValue) { accessoryDNAValues["hairstyles"] = hairstylesGeneValue.Value; } } - + morphDNAValues["gene_balding_hair_effect"] = new DNAGeneValue { TemplateName = "baldness_stage_2", IntSliderValue = 255, @@ -520,6 +444,92 @@ private static DNA.PaletteCoordinates GetCoordinatesOfClosestCK3Color( return closestColorCoordinates; } + private static void ConvertEyeAccessories( + Imperator.Characters.Character irCharacter, + PortraitData irPortraitData, + Dictionary colorDNAValues, + Dictionary accessoryDNAValues, + GenesDB ck3GenesDB, + ConcurrentDictionary, DNA.PaletteCoordinates> ck3EyeColorToPaletteCoordinatesDict + ) { + const string blindfoldGeneId = "special_headgear_spectacles"; + const string blindfoldTemplateId = "blindfold"; + var irEyeAccessoryGeneTemplateName = irPortraitData.AccessoryGenesDict["eye_accessory"].GeneTemplate; + switch (irEyeAccessoryGeneTemplateName) { + case "normal_eyes": + break; + case "eyepatch_1": + case "eyepatch_2": + var eyePatchTemplate = ck3GenesDB.SpecialAccessoryGenes["special_headgear_spectacles"] + .GeneTemplates["eye_patch"]; + if (eyePatchTemplate.AgeSexWeightBlocks.TryGetValue(irCharacter.AgeSex, out WeightBlock? eyePatchWeightBlock)) { + var eyePatchObjectName = eyePatchWeightBlock.GetMatchingObject(1) ?? eyePatchWeightBlock.ObjectNames.Last(); + accessoryDNAValues["special_headgear_spectacles"] = new(eyePatchTemplate.Id, eyePatchObjectName, eyePatchWeightBlock); + } + + break; + case "blindfold_1": + if (!ck3GenesDB.SpecialAccessoryGenes.TryGetValue(blindfoldGeneId, out var blindfoldGene)) { + Logger.Warn($"{blindfoldGeneId} not found in CK3 special accessory genes!"); + break; + } + if (!blindfoldGene.GeneTemplates.TryGetValue(blindfoldTemplateId, out var blindfoldTemplate)) { + Logger.Warn($"{blindfoldTemplateId} not found in CK3 special accessory genes!"); + break; + } + + if (blindfoldTemplate.AgeSexWeightBlocks.TryGetValue(irCharacter.AgeSex, out WeightBlock? blindfoldWeightBlock)) { + var blindfoldObjectName = blindfoldWeightBlock.GetMatchingObject(1) ?? blindfoldWeightBlock.ObjectNames.Last(); + accessoryDNAValues[blindfoldGeneId] = new(blindfoldTemplate.Id, blindfoldObjectName, blindfoldWeightBlock); + } + + break; + case "blind_eyes": + var blindEyesTemplateFromGeneTemplate = ck3GenesDB.AccessoryGenes["eye_accessory"] + .GeneTemplates["blind_eyes"]; + if (blindEyesTemplateFromGeneTemplate.AgeSexWeightBlocks.TryGetValue(irCharacter.AgeSex, out WeightBlock? blindEyesWeightBlock)) { + var blindEyesObjectName = blindEyesWeightBlock.GetMatchingObject(1) ?? blindEyesWeightBlock.ObjectNames.Last(); + accessoryDNAValues["eye_accessory"] = new(blindEyesTemplateFromGeneTemplate.Id, blindEyesObjectName, blindEyesWeightBlock); + } + + break; + case "red_eyes": + var magickRed = new MagickColor("#ff0000"); + var redEyeCoordinates = GetCoordinatesOfClosestCK3Color(magickRed, ck3EyeColorToPaletteCoordinatesDict); + colorDNAValues["eye_color"] = colorDNAValues["eye_color"] with { + X = (byte)(redEyeCoordinates.X/2), + Y = (byte)(redEyeCoordinates.Y/2) + }; + break; + default: + Logger.Warn($"Unhandled eye accessory gene template name: {irEyeAccessoryGeneTemplateName}"); + break; + } + if (irCharacter.Traits.Contains("blind")) { + var blindEyesTemplateFromTrait = ck3GenesDB.AccessoryGenes["eye_accessory"].GeneTemplates["blind_eyes"]; + if (blindEyesTemplateFromTrait.AgeSexWeightBlocks.TryGetValue(irCharacter.AgeSex, out WeightBlock? blindEyesWeighBlock)) { + var blindEyesObjectName = blindEyesWeighBlock.GetMatchingObject(1) ?? blindEyesWeighBlock.ObjectNames.Last(); + accessoryDNAValues["eye_accessory"] = new(blindEyesTemplateFromTrait.Id, blindEyesObjectName, blindEyesWeighBlock); + } + + if (!ck3GenesDB.SpecialAccessoryGenes.TryGetValue(blindfoldGeneId, out var blindfoldGene)) { + Logger.Warn($"{blindfoldGeneId} not found in CK3 special accessory genes!"); + } else if (!blindfoldGene.GeneTemplates.TryGetValue(blindfoldTemplateId, out var blindfoldTemplate)) { + Logger.Warn($"{blindfoldTemplateId} not found in CK3 special accessory genes!"); + } else if (blindfoldTemplate.AgeSexWeightBlocks.TryGetValue(irCharacter.AgeSex, out WeightBlock? blindfoldWeighBlock)) { + var blindfoldObjectName = blindfoldWeighBlock.GetMatchingObject(1) ?? blindfoldWeighBlock.ObjectNames.Last(); + accessoryDNAValues[blindfoldGeneId] = new(blindfoldTemplate.Id, blindfoldObjectName, blindfoldWeighBlock); + } + } else if (irCharacter.Traits.Contains("one_eyed")) { + var eyePatchTemplateFromTrait = ck3GenesDB.SpecialAccessoryGenes["special_headgear_spectacles"] + .GeneTemplates["eye_patch"]; + if (eyePatchTemplateFromTrait.AgeSexWeightBlocks.TryGetValue(irCharacter.AgeSex, out WeightBlock? eyePatchWeighBlock)) { + var eyePatchObjectName = eyePatchWeighBlock.GetMatchingObject(1) ?? eyePatchWeighBlock.ObjectNames.Last(); + accessoryDNAValues["special_headgear_spectacles"] = new(eyePatchTemplateFromTrait.Id, eyePatchObjectName, eyePatchWeighBlock); + } + } + } + private DNAGeneValue GetAgeGeneValue(Imperator.Characters.Character irCharacter) { // Age is not stored in I:R character DNA. const string ck3AgeGeneName = "gene_age"; diff --git a/ImperatorToCK3/CK3/Provinces/ProvinceHistory.cs b/ImperatorToCK3/CK3/Provinces/ProvinceHistory.cs index aa41ecad3..7d669bdff 100644 --- a/ImperatorToCK3/CK3/Provinces/ProvinceHistory.cs +++ b/ImperatorToCK3/CK3/Provinces/ProvinceHistory.cs @@ -1,5 +1,4 @@ using commonItems; -using commonItems.Collections; using ImperatorToCK3.CK3.Cultures; using ImperatorToCK3.CommonUtils; using System.Collections.Generic; @@ -86,12 +85,13 @@ public void SetBuildings(IEnumerable buildings, Date? date) { private static readonly HistoryFactory historyFactory = new HistoryFactory.HistoryFactoryBuilder() .WithSimpleField("culture", "culture", null) - .WithSimpleField("faith", new OrderedSet {"faith", "religion"}, null) + .WithSimpleField("faith", ["faith", "religion"], null) .WithSimpleField("holding", "holding", "none") .WithSimpleField("buildings", "buildings", new List()) .WithSimpleField("special_building_slot", "special_building_slot", null) .WithSimpleField("special_building", "special_building", null) .WithSimpleField("duchy_capital_building", "duchy_capital_building", null) .WithSimpleField("terrain", "terrain", null) + .WithLiteralField("effects", "effect") .Build(); } \ No newline at end of file diff --git a/ImperatorToCK3/CK3/Regexes.cs b/ImperatorToCK3/CK3/Regexes.cs index 1a1d508ba..6bc979d05 100644 --- a/ImperatorToCK3/CK3/Regexes.cs +++ b/ImperatorToCK3/CK3/Regexes.cs @@ -5,6 +5,6 @@ namespace ImperatorToCK3.CK3; public static partial class Regexes { public static Regex TitleId => TitleIdRegex(); - [GeneratedRegex(@"^(e|k|d|c|b)_[A-Za-z0-9_\-\']+$")] + [GeneratedRegex(@"^(h|e|k|d|c|b)_[A-Za-z0-9_\-\']+$")] private static partial Regex TitleIdRegex(); } \ No newline at end of file diff --git a/ImperatorToCK3/CK3/Religions/ReligionCollection.cs b/ImperatorToCK3/CK3/Religions/ReligionCollection.cs index 3e3b5faf6..9c12586a9 100644 --- a/ImperatorToCK3/CK3/Religions/ReligionCollection.cs +++ b/ImperatorToCK3/CK3/Religions/ReligionCollection.cs @@ -109,6 +109,22 @@ public void LoadConverterFaiths(string converterFaithsPath, ColorFactory colorFa } } } + + // Validation: every faith should have a theism doctrine. + string? theismFallback = DoctrineCategories.TryGetValue("doctrine_theism", out var theismCategory) + ? theismCategory.DoctrineIds.FirstOrDefault(d => d == "doctrine_polytheist") + : null; + foreach (var converterFaith in loadedConverterFaiths) { + var theismDoctrine = converterFaith.GetDoctrineIdsForDoctrineCategoryId("doctrine_theism"); + if (theismDoctrine.Count == 0) { + if (theismFallback is not null) { + Logger.Warn($"Faith {converterFaith.Id} has no theism doctrine! Setting {theismFallback}"); + converterFaith.DoctrineIds.Add(theismFallback); + } else { + Logger.Warn($"Faith {converterFaith.Id} has no theism doctrine!"); + } + } + } } public void RemoveChristianAndIslamicSyncretismFromAllFaiths() { diff --git a/ImperatorToCK3/CK3/Titles/LandedTitles.cs b/ImperatorToCK3/CK3/Titles/LandedTitles.cs index 248c6ca09..4bcec0534 100644 --- a/ImperatorToCK3/CK3/Titles/LandedTitles.cs +++ b/ImperatorToCK3/CK3/Titles/LandedTitles.cs @@ -1,4 +1,4 @@ -using commonItems; +using commonItems; using commonItems.Collections; using commonItems.Colors; using commonItems.Localization; @@ -86,6 +86,10 @@ private void CleanUpCountriesHavingCapitalEntries() { continue; } + if (county.NobleFamily == true) { + continue; + } + Logger.Debug($"Removing capital entry from county {county.Id}."); county.CapitalCountyId = null; } @@ -439,7 +443,7 @@ public void CleanUpHistory(CharacterCollection characters, Date ck3BookmarkDate) // Remove liege entries of the same rank as the title they're in. // For example, TFE had more or less this: d_kordofan = { liege = d_kordofan } - var validRankChars = new HashSet { 'e', 'k', 'd', 'c', 'b'}; + var validRankChars = new HashSet { 'h', 'e', 'k', 'd', 'c', 'b'}; Parallel.ForEach(this, title => { if (!title.History.Fields.TryGetValue("liege", out var liegeField)) { return; @@ -814,7 +818,6 @@ public void ImportImperatorHoldings(ProvinceCollection ck3Provinces, Imperator.C .ToArray(); var nonCapitalBaronies = eligibleBaronies.Except(countyCapitalBaronies).OrderBy(b => b.Id).ToArray(); - // In CK3, a county holder shouldn't own baronies in counties that are not their own. // This dictionary tracks what counties are held by what characters. @@ -996,11 +999,16 @@ private void SetDeJureKingdoms(CK3LocDB ck3LocDB, Date ck3BookmarkDate) { var duchiesWithDeJureVassals = duchies.Where(d => d.DeJureVassals.Count > 0).ToFrozenSet(); foreach (var duchy in duchiesWithDeJureVassals) { + // Don't change the de jure inside h_china, to avoid messing with the Dynastic Cycle and shit. + if (string.Equals(duchy.DeJureLiege?.DeJureLiege?.DeJureLiege?.Id, "h_china", StringComparison.Ordinal)) { + continue; + } + // If capital county belongs to an empire and contains the empire's capital, // create a kingdom from the duchy and make the empire a de jure liege of the kingdom. var capitalEmpireRealm = duchy.CapitalCounty?.GetRealmOfRank(TitleRank.empire, ck3BookmarkDate); var duchyCounties = duchy.GetDeJureVassalsAndBelow("c").Values; - if (capitalEmpireRealm is not null && duchyCounties.Any(c => c.Id == capitalEmpireRealm.CapitalCountyId)) { + if (capitalEmpireRealm is not null && duchyCounties.Any(c => c.Id.Equals(capitalEmpireRealm.CapitalCountyId, StringComparison.Ordinal))) { var kingdom = Add("k_IRTOCK3_kingdom_from_" + duchy.Id); kingdom.Color1 = duchy.Color1; kingdom.CapitalCounty = duchy.CapitalCounty; @@ -1066,8 +1074,15 @@ private void SetDeJureEmpires(CultureCollection ck3Cultures, CharacterCollection Logger.Info("Setting de jure empires..."); var deJureKingdoms = GetDeJureKingdoms(); + // TODO: exclude hegemonies from this process? + // Try to assign kingdoms to existing empires. foreach (var kingdom in deJureKingdoms) { + // Don't change the de jure inside h_china, to avoid messing with the Dynastic Cycle and shit. + if (string.Equals(kingdom.DeJureLiege?.DeJureLiege?.Id, "h_china", StringComparison.Ordinal)) { + continue; + } + var empireShares = new Dictionary(); var kingdomProvincesCount = 0; foreach (var county in kingdom.GetDeJureVassalsAndBelow("c").Values) { @@ -1128,7 +1143,7 @@ private void CreateEmpiresBasedOnDominantHeritages( CharacterCollection ck3Characters, HashSet removableEmpireIds, Dictionary> kingdomToDominantHeritagesDict, - Dictionary heritageToEmpireDict, + Dictionary heritageToEmpireDict, CK3LocDB ck3LocDB, Date ck3BookmarkDate ) { @@ -1163,12 +1178,16 @@ Date ck3BookmarkDate var dominantHeritage = dominantHeritages[0]; if (heritageToEmpireDict.TryGetValue(dominantHeritage.Id, out var empire)) { + if (empire is null) { + // The heritage is not supposed to have an empire. + continue; + } kingdom.DeJureLiege = empire; } else { // Create new de jure empire based on heritage. var heritageEmpire = CreateEmpireForHeritage(dominantHeritage, ck3Cultures, ck3LocDB); removableEmpireIds.Add(heritageEmpire.Id); - + kingdom.DeJureLiege = heritageEmpire; heritageToEmpireDict[dominantHeritage.Id] = heritageEmpire; } @@ -1201,14 +1220,22 @@ private static void FindKingdomsAdjacentToKingdom( } } - private Dictionary GetHeritageIdToExistingTitleDict() { - var heritageToEmpireDict = new Dictionary(); + private Dictionary GetHeritageIdToExistingTitleDict() { + var heritageToEmpireDict = new Dictionary(); var reader = new BufferedReader(File.ReadAllText("configurables/heritage_empires_map.txt")); foreach (var (heritageId, empireId) in reader.GetAssignments()) { if (heritageToEmpireDict.ContainsKey(heritageId)) { continue; } + + if (empireId == "none") { + // This means the heritage shouldn't have an empire created for it. + heritageToEmpireDict[heritageId] = null; + Logger.Debug($"Mapped heritage {heritageId} to no empire."); + continue; + } + if (!TryGetValue(empireId, out var empire)) { continue; } @@ -1446,10 +1473,7 @@ IReadOnlySet removableEmpireIds return dictToReturn; } - - private static bool AreTitlesAdjacent(FrozenSet title1ProvinceIds, FrozenSet title2ProvinceIds, MapData mapData) { - return mapData.AreProvinceGroupsAdjacent(title1ProvinceIds, title2ProvinceIds); - } + private static bool AreTitlesAdjacentByLand(FrozenSet title1ProvinceIds, FrozenSet title2ProvinceIds, MapData mapData) { return mapData.AreProvinceGroupsAdjacentByLand(title1ProvinceIds, title2ProvinceIds); } @@ -1457,6 +1481,10 @@ private static bool AreTitlesAdjacentByWaterBody(FrozenSet title1Province return mapData.AreProvinceGroupsConnectedByWaterBody(title1ProvinceIds, title2ProvinceIds); } + private void SetDeJureHegemonies(Date ck3BookmarkDate) { + // TODO: De jure hegemonies are not implemented yet. + } + private void SetEmpireCapitals(Date ck3BookmarkDate) { // Make sure every empire's capital is within the empire's de jure land. Logger.Info("Setting empire capitals..."); @@ -1491,6 +1519,7 @@ private void SetEmpireCapitals(Date ck3BookmarkDate) { public void SetDeJureKingdomsAndEmpires(Date ck3BookmarkDate, CultureCollection ck3Cultures, CharacterCollection ck3Characters, MapData ck3MapData, CK3LocDB ck3LocDB) { SetDeJureKingdoms(ck3LocDB, ck3BookmarkDate); SetDeJureEmpires(ck3Cultures, ck3Characters, ck3MapData, ck3LocDB, ck3BookmarkDate); + SetDeJureHegemonies(ck3BookmarkDate); } private HashSet GetCountyHolderIds(Date date) { diff --git a/ImperatorToCK3/CK3/Titles/Title.cs b/ImperatorToCK3/CK3/Titles/Title.cs index 371f9c84a..ab2138e98 100644 --- a/ImperatorToCK3/CK3/Titles/Title.cs +++ b/ImperatorToCK3/CK3/Titles/Title.cs @@ -482,7 +482,7 @@ CK3LocDB ck3LocDB var overlord = imperatorCountries[dependency.OverlordId]; titleId = tagTitleMapper.GetTitleForSubject(irCountry, validatedEnglishName ?? string.Empty, overlord, ck3LocDB); } else if (validatedEnglishName is not null) { - titleId = tagTitleMapper.GetTitleForTag(irCountry, validatedEnglishName, maxTitleRank: TitleRank.empire, ck3LocDB); + titleId = tagTitleMapper.GetTitleForTag(irCountry, validatedEnglishName, maxTitleRank: TitleRank.hegemony, ck3LocDB); } else { titleId = tagTitleMapper.GetTitleForTag(irCountry, ck3LocDB); } @@ -1004,7 +1004,7 @@ public void SetDeFactoLiege(Title? newLiege, Date date) { private readonly TitleCollection deJureVassals = []; [SerializeOnlyValue] public IReadOnlyTitleCollection DeJureVassals => deJureVassals; // DIRECT de jure vassals public Dictionary GetDeJureVassalsAndBelow() { - return GetDeJureVassalsAndBelow("bcdke"); + return GetDeJureVassalsAndBelow("bcdkeh"); } public Dictionary GetDeJureVassalsAndBelow(string rankFilter) { var rankFilterAsArray = rankFilter.ToCharArray(); @@ -1031,7 +1031,7 @@ public Dictionary GetDeFactoVassals(Date date) { // DIRECT de fac .ToDictionary(t => t.Id, t => t); } public Dictionary GetDeFactoVassalsAndBelow(Date date) { - return GetDeFactoVassalsAndBelow(date, "bcdke"); + return GetDeFactoVassalsAndBelow(date, "bcdkeh"); } public Dictionary GetDeFactoVassalsAndBelow(Date date, string rankFilter) { var rankFilterAsArray = rankFilter.ToCharArray(); @@ -1079,6 +1079,15 @@ public Dictionary GetDeFactoVassalsAndBelow(Date date, string ran [SerializedName("male_names")] public List? MaleNames { get; private set; } // [SerializedName("cultural_names")] public Dictionary? CulturalNames { get; private set; } + [SerializedName("allow_domicile")] public bool? AllowDomicile { get; set; } + [SerializedName("enable_regnal_numbers")] public bool? EnableRegnalNumbers { get; set; } + [SerializedName("figurehead")] public bool? Figurehead { get; set; } + [SerializedName("holding_regnal_male_names")] public StringOfItem? HoldingRegnalMaleNames { get; private set; } + [SerializedName("holding_regnal_female_names")] public StringOfItem? HoldingRegnalFemaleNames { get; private set; } + [SerializedName("posthumous_regnal_male_names")] public StringOfItem? PosthumousRegnalMaleNames { get; private set; } + [SerializedName("posthumous_regnal_female_names")] public StringOfItem? PosthumousRegnalFemaleNames { get; private set; } + [SerializedName("personal_relation_entry")] public StringOfItem? PersonalRelationEntry { get; private set; } + [SerializedName("personal_relation_vassal")] public StringOfItem? PersonalRelationVassal { get; private set; } public int? GetOwnOrInheritedDevelopmentLevel(Date date) { // Latest date (<= date) takes precedence. @@ -1189,6 +1198,15 @@ private void RegisterKeys(Parser parser, ColorFactory colorFactory) { parser.RegisterKeyword("can_use_nomadic_naming", reader => CanUseNomadicNaming = reader.GetBool()); parser.RegisterKeyword("male_names", reader => MaleNames = reader.GetStrings()); parser.RegisterKeyword("cultural_names", reader => CulturalNames = reader.GetAssignmentsAsDict()); + parser.RegisterKeyword("allow_domicile", reader => AllowDomicile = reader.GetBool()); + parser.RegisterKeyword("enable_regnal_numbers", reader => EnableRegnalNumbers = reader.GetBool()); + parser.RegisterKeyword("figurehead", reader => Figurehead = reader.GetBool()); + parser.RegisterKeyword("holding_regnal_male_names", reader => HoldingRegnalMaleNames = reader.GetStringOfItem()); + parser.RegisterKeyword("holding_regnal_female_names", reader => HoldingRegnalFemaleNames = reader.GetStringOfItem()); + parser.RegisterKeyword("posthumous_regnal_male_names", reader => PosthumousRegnalMaleNames = reader.GetStringOfItem()); + parser.RegisterKeyword("posthumous_regnal_female_names", reader => PosthumousRegnalFemaleNames = reader.GetStringOfItem()); + parser.RegisterKeyword("personal_relation_entry", reader => PersonalRelationEntry = reader.GetStringOfItem()); + parser.RegisterKeyword("personal_relation_vassal", reader => PersonalRelationVassal = reader.GetStringOfItem()); parser.RegisterRegex(CommonRegexes.Catchall, (reader, token) => { IgnoredTokens.Add(token); @@ -1354,6 +1372,7 @@ public static TitleRank GetRankForId(string titleId) { 'd' => TitleRank.duchy, 'k' => TitleRank.kingdom, 'e' => TitleRank.empire, + 'h' => TitleRank.hegemony, _ => throw new FormatException($"Title {titleId}: unknown rank!") }; } diff --git a/ImperatorToCK3/CK3/Titles/TitleRank.cs b/ImperatorToCK3/CK3/Titles/TitleRank.cs index 89c21decf..ebc138504 100644 --- a/ImperatorToCK3/CK3/Titles/TitleRank.cs +++ b/ImperatorToCK3/CK3/Titles/TitleRank.cs @@ -1,3 +1,3 @@ namespace ImperatorToCK3.CK3.Titles; -public enum TitleRank { barony, county, duchy, kingdom, empire } \ No newline at end of file +public enum TitleRank { barony, county, duchy, kingdom, empire, hegemony } \ No newline at end of file diff --git a/ImperatorToCK3/CK3/Titles/TitleRankUtils.cs b/ImperatorToCK3/CK3/Titles/TitleRankUtils.cs index 6839ae623..fee59d185 100644 --- a/ImperatorToCK3/CK3/Titles/TitleRankUtils.cs +++ b/ImperatorToCK3/CK3/Titles/TitleRankUtils.cs @@ -5,11 +5,12 @@ namespace ImperatorToCK3.CK3.Titles; public static class TitleRankUtils { public static TitleRank CharToTitleRank(char rankChar) { return rankChar switch { - 'e' => TitleRank.empire, - 'k' => TitleRank.kingdom, - 'd' => TitleRank.duchy, - 'c' => TitleRank.county, 'b' => TitleRank.barony, + 'c' => TitleRank.county, + 'd' => TitleRank.duchy, + 'k' => TitleRank.kingdom, + 'e' => TitleRank.empire, + 'h' => TitleRank.hegemony, _ => throw new ArgumentOutOfRangeException(nameof(rankChar), $"Unknown title rank character: {rankChar}") }; } diff --git a/ImperatorToCK3/CK3/World.cs b/ImperatorToCK3/CK3/World.cs index ac8c9d881..525cfb81e 100644 --- a/ImperatorToCK3/CK3/World.cs +++ b/ImperatorToCK3/CK3/World.cs @@ -63,6 +63,9 @@ internal sealed class World { public List Wars { get; } = []; public LegendSeedCollection LegendSeeds { get; } = []; public DiplomacyDB Diplomacy { get; } = new(); + + public CK3RegionMapper CK3RegionMapper { get; } + internal CoaMapper CK3CoaMapper { get; private set; } = null!; private readonly List enabledDlcFlags = []; @@ -164,7 +167,7 @@ public World(Imperator.World impWorld, Configuration config, Thread? irCoaExtrac ); // Load regions. - ck3RegionMapper = new CK3RegionMapper(ModFS, LandedTitles); + CK3RegionMapper = new CK3RegionMapper(ModFS, LandedTitles); imperatorRegionMapper = impWorld.ImperatorRegionMapper; CultureMapper cultureMapper = null!; @@ -196,7 +199,7 @@ public World(Imperator.World impWorld, Configuration config, Thread? irCoaExtrac Logger.Info("Loaded replaceable holy sites."); }, - () => cultureMapper = new CultureMapper(imperatorRegionMapper, ck3RegionMapper, Cultures), + () => cultureMapper = new CultureMapper(imperatorRegionMapper, CK3RegionMapper, Cultures), () => traitMapper = new("configurables/trait_map.txt", ModFS), @@ -212,7 +215,7 @@ public World(Imperator.World impWorld, Configuration config, Thread? irCoaExtrac } ); - var religionMapper = new ReligionMapper(Religions, imperatorRegionMapper, ck3RegionMapper); + var religionMapper = new ReligionMapper(Religions, imperatorRegionMapper, CK3RegionMapper); Parallel.Invoke( () => Cultures.ImportTechnology(impWorld.Countries, cultureMapper, provinceMapper, impWorld.InventionsDB, impWorld.LocDB, ck3ModFlags), @@ -363,6 +366,10 @@ public World(Imperator.World impWorld, Configuration config, Thread? irCoaExtrac Characters.DistributeCountriesGold(LandedTitles, config); Characters.ImportLegions(LandedTitles, impWorld.Units, impWorld.Characters, impWorld.Countries, CorrectedDate, unitTypeMapper, MenAtArmsTypes, provinceMapper, LocDB, config); + // For titles linked to I:R countries with chinese_empire government, ensure the character variables + // needed for Dynastic Cycle script are calculated and stores as character variables. + Characters.CalculateChineseDynasticCycleVariables(LandedTitles, impWorld.EndDate, config.CK3BookmarkDate); + // After the purging of unneeded characters, we should clean up the title history. LandedTitles.CleanUpHistory(Characters, config.CK3BookmarkDate); @@ -496,10 +503,14 @@ private void LoadCorrectProvinceMappingsFile(Imperator.World irWorld, Configurat mappingsToUse = "terra_indomita_to_rajas_of_asia"; } else if (irHasTI && ck3HasAEP) { mappingsToUse = "terra_indomita_to_aep"; + } else if (irHasTI) { + mappingsToUse = "terra_indomita_to_vanilla_ck3"; + } else if (irWorld is {InvictusDetected: true, Invictus1_7Detected: true}) { + mappingsToUse = "invictus_1_7_to_vanilla_ck3"; } else if (irWorld.InvictusDetected) { - mappingsToUse = "imperator_invictus"; + mappingsToUse = "invictus_to_vanilla_ck3"; } else { - mappingsToUse = "imperator_vanilla"; + mappingsToUse = "vanilla_ir_to_vanilla_ck3"; Logger.Warn("Support for non-Invictus Imperator saves is deprecated."); } @@ -541,6 +552,9 @@ private void OverwriteCountiesHistory(CountryCollection irCountries, List countyLevelGovernorshipsSet = countyLevelGovernorships.ToFrozenSet(); foreach (var county in LandedTitles.Counties) { + if (county.NobleFamily == true) { + continue; + } if (county.CapitalBaronyProvinceId is null) { Logger.Warn($"County {county} has no capital barony province!"); continue; @@ -794,7 +808,7 @@ private void HandleIcelandAndFaroeIslands(Imperator.World irWorld, Configuration // If all the Gaels are pagan but at least one province in Ireland or Scotland is Christian, // give the handled titles to a generated ruler of the same culture as that Christian province. var potentialSourceProvinces = Provinces.Where(p => - ck3RegionMapper.ProvinceIsInRegion(p.Id, "custom_ireland") || ck3RegionMapper.ProvinceIsInRegion(p.Id, "custom_scotland")); + CK3RegionMapper.ProvinceIsInRegion(p.Id, "custom_ireland") || CK3RegionMapper.ProvinceIsInRegion(p.Id, "custom_scotland")); foreach (var potentialSourceProvince in potentialSourceProvinces) { var faithId = potentialSourceProvince.GetFaithId(bookmarkDate); if (faithId is null || !christianFaiths.ContainsKey(faithId)) { @@ -913,7 +927,7 @@ private void RemoveIslam(Configuration config) { foreach (var (regionId, faithId) in regionToNewFaithMap) { var regionProvinces = muslimProvinces - .Where(p => ck3RegionMapper.ProvinceIsInRegion(p.Id, regionId)); + .Where(p => CK3RegionMapper.ProvinceIsInRegion(p.Id, regionId)); foreach (var province in regionProvinces) { province.SetFaithIdAndOverrideExistingEntries(faithId); muslimProvinces.Remove(province); @@ -1002,6 +1016,10 @@ private void GenerateFillerHoldersForUnownedLands(CultureCollection cultures, Co var date = config.CK3BookmarkDate; List unheldCounties = []; foreach (var county in LandedTitles.Counties) { + if (county.NobleFamily == true) { + continue; + } + var holderId = county.GetHolderId(date); if (holderId == "0") { unheldCounties.Add(county); @@ -1181,6 +1199,7 @@ private void DetermineCK3Dlcs(Configuration config) { {"dlc019.dlc", "crowns_of_the_world"}, {"dlc020.dlc", "khans_of_the_steppe"}, {"dlc021.dlc", "coronations"}, + {"dlc022.dlc", "all_under_heaven"}, }; var dlcFiles = Directory.GetFiles(dlcFolderPath, "*.dlc", SearchOption.AllDirectories); @@ -1205,7 +1224,6 @@ private void DetermineCK3Dlcs(Configuration config) { rankMappingsPath: "configurables/country_rank_map.txt" ); private readonly UnitTypeMapper unitTypeMapper = new("configurables/unit_types_map.txt"); - private readonly CK3RegionMapper ck3RegionMapper; private readonly ImperatorRegionMapper imperatorRegionMapper; private readonly WarMapper warMapper = new("configurables/wargoal_mappings.txt"); } diff --git a/ImperatorToCK3/CommonUtils/Genes/WeightBlock.cs b/ImperatorToCK3/CommonUtils/Genes/WeightBlock.cs index b90984348..573466c5d 100644 --- a/ImperatorToCK3/CommonUtils/Genes/WeightBlock.cs +++ b/ImperatorToCK3/CommonUtils/Genes/WeightBlock.cs @@ -19,9 +19,17 @@ public WeightBlock(BufferedReader reader) { } private void RegisterKeys(Parser parser) { parser.RegisterRegex(CommonRegexes.Integer, (reader, absoluteWeightStr) => { - var newObjectName = reader.GetString(); + var objectIdStrOfItem = reader.GetStringOfItem(); + string objectId; + if (objectIdStrOfItem.IsArrayOrObject()) { + // For example: "2 = { m_clothes_sec_ccp4_khanty_com_01 m_clothes_sec_ccp4_khanty_com_01_hood }" + // In such cases, just pick the first entry as the object ID. + objectId = new BufferedReader(objectIdStrOfItem.ToString()).GetStrings()[0]; + } else { + objectId = objectIdStrOfItem.ToString(); + } if (uint.TryParse(absoluteWeightStr, out var weight)) { - AddObject(newObjectName, weight); + AddObject(objectId, weight); } else { Logger.Error($"Could not parse absolute weight: {absoluteWeightStr}"); } diff --git a/ImperatorToCK3/CommonUtils/Map/MapData.cs b/ImperatorToCK3/CommonUtils/Map/MapData.cs index 8205c4585..420ee306f 100644 --- a/ImperatorToCK3/CommonUtils/Map/MapData.cs +++ b/ImperatorToCK3/CommonUtils/Map/MapData.cs @@ -120,49 +120,78 @@ private void ParseDefaultMap(ModFilesystem modFS) { private void GroupStaticWaterProvinces() { Logger.Debug("Grouping static water provinces into water bodies..."); - var staticWaterProvinces = ProvinceDefinitions + // We want connected components of the static-water-only adjacency graph. + // Use the lowest province ID in each component as the water body ID. + var staticWaterProvinceIds = ProvinceDefinitions .Where(p => p.IsStaticWater) .Select(p => p.Id) - .ToFrozenSet(); + .ToArray(); + if (staticWaterProvinceIds.Length == 0) { + return; + } - var provinceGroups = new List<HashSet<ulong>>(); - foreach (var provinceId in staticWaterProvinces) { - var added = false; - List<HashSet<ulong>> connectedGroups = []; + var idToIndex = new Dictionary<ulong, int>(staticWaterProvinceIds.Length); + for (int i = 0; i < staticWaterProvinceIds.Length; ++i) { + idToIndex[staticWaterProvinceIds[i]] = i; + } - foreach (var group in provinceGroups) { - if (group.Any(p => NeighborsDict.TryGetValue(p, out var neighborIds) && neighborIds.Contains(provinceId))) { - group.Add(provinceId); - connectedGroups.Add(group); + var parent = new int[staticWaterProvinceIds.Length]; + var size = new int[staticWaterProvinceIds.Length]; + for (int i = 0; i < parent.Length; ++i) { + parent[i] = i; + size[i] = 1; + } - added = true; - } + int Find(int x) { + while (parent[x] != x) { + parent[x] = parent[parent[x]]; + x = parent[x]; } + return x; + } - // If the province belongs to multiple groups, merge them. - if (connectedGroups.Count > 1) { - var mergedGroup = new HashSet<ulong>(); - foreach (var group in connectedGroups) { - mergedGroup.UnionWith(group); - provinceGroups.Remove(group); - } - mergedGroup.Add(provinceId); - provinceGroups.Add(mergedGroup); + void Union(int a, int b) { + a = Find(a); + b = Find(b); + if (a == b) { + return; + } + if (size[a] < size[b]) { + (a, b) = (b, a); } + parent[b] = a; + size[a] += size[b]; + } - if (!added) { - provinceGroups.Add([provinceId]); + // Union static water provinces connected by neighbor relations. + for (int i = 0; i < staticWaterProvinceIds.Length; ++i) { + var provinceId = staticWaterProvinceIds[i]; + if (!NeighborsDict.TryGetValue(provinceId, out var neighbors)) { + continue; + } + foreach (var neighborId in neighbors) { + if (idToIndex.TryGetValue(neighborId, out int neighborIndex)) { + Union(i, neighborIndex); + } } } - // Create a dictionary for quick lookup of water body by province. - // Use the lowest province ID in each group as the water body ID. - foreach (var group in provinceGroups) { - var waterBodyId = group.Min(); - foreach (var provinceId in group) { - waterBodiesDict[provinceId] = waterBodyId; + // Determine the minimum province ID for each component root. + var minIdByRoot = new ulong[staticWaterProvinceIds.Length]; + Array.Fill(minIdByRoot, ulong.MaxValue); + for (int i = 0; i < staticWaterProvinceIds.Length; ++i) { + int root = Find(i); + var provId = staticWaterProvinceIds[i]; + if (provId < minIdByRoot[root]) { + minIdByRoot[root] = provId; } } + + waterBodiesDict.Clear(); + for (int i = 0; i < staticWaterProvinceIds.Length; ++i) { + int root = Find(i); + waterBodiesDict[staticWaterProvinceIds[i]] = minIdByRoot[root]; + } } private string? GetProvincesMapPath(ModFilesystem modFS) { diff --git a/ImperatorToCK3/Data_Files/blankMod/output/common/coat_of_arms/coat_of_arms/99_attributed_arms.txt b/ImperatorToCK3/Data_Files/blankMod/output/common/coat_of_arms/coat_of_arms/99_attributed_arms.txt index bccacfc32..725b7c801 100644 --- a/ImperatorToCK3/Data_Files/blankMod/output/common/coat_of_arms/coat_of_arms/99_attributed_arms.txt +++ b/ImperatorToCK3/Data_Files/blankMod/output/common/coat_of_arms/coat_of_arms/99_attributed_arms.txt @@ -196,7 +196,7 @@ purple_coa = { color2 = "purple" } -e_western_roman_empire = { +h_western_roman_empire = { pattern = "pattern_solid.tga" color1 = "roman_red" color2 = "roman_gold" diff --git a/ImperatorToCK3/Data_Files/blankMod/output/common/landed_titles/irtock3_titles.txt b/ImperatorToCK3/Data_Files/blankMod/output/common/landed_titles/irtock3_titles.txt index 7eb8122f1..65f82a1e3 100644 --- a/ImperatorToCK3/Data_Files/blankMod/output/common/landed_titles/irtock3_titles.txt +++ b/ImperatorToCK3/Data_Files/blankMod/output/common/landed_titles/irtock3_titles.txt @@ -12,7 +12,7 @@ capital = c_arrajan # IRToCK3: adjusted for vanilla CK3 map } -e_western_roman_empire = { +h_western_roman_empire = { color = hsv { 0 0.91 0.55 } capital = c_roma # Rome diff --git a/ImperatorToCK3/Data_Files/blankMod/output/common/scripted_effects/irtock3_scripted_effects.txt b/ImperatorToCK3/Data_Files/blankMod/output/common/scripted_effects/irtock3_scripted_effects.txt index 7e11fa943..65739329f 100644 --- a/ImperatorToCK3/Data_Files/blankMod/output/common/scripted_effects/irtock3_scripted_effects.txt +++ b/ImperatorToCK3/Data_Files/blankMod/output/common/scripted_effects/irtock3_scripted_effects.txt @@ -74,10 +74,10 @@ irtock3_confederation_setup_effect = { ordered_in_list = { limit = { CL_uses_leagues = yes - NOT = { this = scope:actor } + this != scope:actor } alternative_limit = { # Incase somehow this was chosen and no one is actually capable of using leagues, need to make sure someone is chosen - NOT = { this = scope:actor } + this != scope:actor } list = irtock3_confederation_members order_by = max_military_strength @@ -106,10 +106,10 @@ irtock3_confederation_setup_effect = { ordered_in_list = { limit = { CL_uses_confederations = yes - NOT = { this = scope:actor } + this != scope:actor } alternative_limit = { # Incase somehow this was chosen an no one is actually capable of using confederations, need to make sure someone is chosen - NOT = { this = scope:actor } + this != scope:actor } list = irtock3_confederation_members order_by = max_military_strength @@ -193,7 +193,7 @@ irtock3_confederation_setup_effect = { # Get second member, for the 'recipient' scope ordered_in_list = { limit = { - NOT = { this = scope:actor } + this != scope:actor } list = irtock3_confederation_members order_by = max_military_strength diff --git a/ImperatorToCK3/Data_Files/blankMod/output/gfx/interface/icons/faith/baiyue_faith.dds b/ImperatorToCK3/Data_Files/blankMod/output/gfx/interface/icons/faith/baiyue_faith.dds new file mode 100644 index 000000000..bee49d75c Binary files /dev/null and b/ImperatorToCK3/Data_Files/blankMod/output/gfx/interface/icons/faith/baiyue_faith.dds differ diff --git a/ImperatorToCK3/Data_Files/blankMod/output/gfx/interface/icons/faith/mohism.dds b/ImperatorToCK3/Data_Files/blankMod/output/gfx/interface/icons/faith/mohism.dds new file mode 100644 index 000000000..ed5ad8aef Binary files /dev/null and b/ImperatorToCK3/Data_Files/blankMod/output/gfx/interface/icons/faith/mohism.dds differ diff --git a/ImperatorToCK3/Data_Files/blankMod/output/gfx/interface/icons/faith/permission.txt b/ImperatorToCK3/Data_Files/blankMod/output/gfx/interface/icons/faith/permission.txt index 3b22ef8a5..b156b3920 100644 --- a/ImperatorToCK3/Data_Files/blankMod/output/gfx/interface/icons/faith/permission.txt +++ b/ImperatorToCK3/Data_Files/blankMod/output/gfx/interface/icons/faith/permission.txt @@ -11,6 +11,13 @@ For Nhialacism icons: Ask B7E7, the author of Africa Plus mod for CK3. +For Shenic icon: +https://www.flaticon.com/free-icons/chinese-dragon by cube29 + +For Baiyue icon: +https://www.flaticon.com/free-icons/chinese-dragon by Iconic Artisan + + For every other icon: Use these wherever you want, just credit me as the contributor whenever you upload something containing these. diff --git a/ImperatorToCK3/Data_Files/blankMod/output/gfx/interface/icons/faith/shenic.dds b/ImperatorToCK3/Data_Files/blankMod/output/gfx/interface/icons/faith/shenic.dds new file mode 100644 index 000000000..c0f496f3d Binary files /dev/null and b/ImperatorToCK3/Data_Files/blankMod/output/gfx/interface/icons/faith/shenic.dds differ diff --git a/ImperatorToCK3/Data_Files/blankMod/output/localization/english/CONVERTER_dejure_titles_static_l_english.yml b/ImperatorToCK3/Data_Files/blankMod/output/localization/english/CONVERTER_dejure_titles_static_l_english.yml index 55d7ae62d..293287810 100644 --- a/ImperatorToCK3/Data_Files/blankMod/output/localization/english/CONVERTER_dejure_titles_static_l_english.yml +++ b/ImperatorToCK3/Data_Files/blankMod/output/localization/english/CONVERTER_dejure_titles_static_l_english.yml @@ -10,9 +10,9 @@ k_betique: "Baetica" k_contestania: "Contestania" k_tarragonaise: "Tarragonaise" - e_western_roman_empire_article: "the " - e_western_roman_empire: "Western Roman Empire" - e_western_roman_empire_adj: "Western Roman" + h_western_roman_empire_article: "the " + h_western_roman_empire: "Western Roman Empire" + h_western_roman_empire_adj: "Western Roman" k_north_italy: "North Italy" k_central_italy: "Central Italy" k_magna_graecia: "Greater Greece" diff --git a/ImperatorToCK3/Data_Files/blankMod/output/localization/french/CONVERTER_dejure_titles_static_l_french.yml b/ImperatorToCK3/Data_Files/blankMod/output/localization/french/CONVERTER_dejure_titles_static_l_french.yml index b700db25d..bb3fce853 100644 --- a/ImperatorToCK3/Data_Files/blankMod/output/localization/french/CONVERTER_dejure_titles_static_l_french.yml +++ b/ImperatorToCK3/Data_Files/blankMod/output/localization/french/CONVERTER_dejure_titles_static_l_french.yml @@ -10,7 +10,7 @@ k_betique: "Bétique" k_contestania: "Contestanie" k_tarragonaise: "Tarragonaise" - e_western_roman_empire: "Empire Romain d'Occident" + h_western_roman_empire: "Empire Romain d'Occident" k_north_italy: "Italie du Nord" k_central_italy: "Italie Centrale" k_magna_graecia: "Grande Grèce" diff --git a/ImperatorToCK3/Data_Files/blankMod/output/localization/german/CONVERTER_dejure_titles_static_l_german.yml b/ImperatorToCK3/Data_Files/blankMod/output/localization/german/CONVERTER_dejure_titles_static_l_german.yml index 43f8449d2..7a9b2234d 100644 --- a/ImperatorToCK3/Data_Files/blankMod/output/localization/german/CONVERTER_dejure_titles_static_l_german.yml +++ b/ImperatorToCK3/Data_Files/blankMod/output/localization/german/CONVERTER_dejure_titles_static_l_german.yml @@ -10,7 +10,7 @@ k_betique: "Betisch" k_contestania: "Contestanien" k_tarragonaise: "Tarragoneser" - e_western_roman_empire: "Weströmisches Reich" + h_western_roman_empire: "Weströmisches Reich" k_north_italy: "Norditalien" k_central_italy: "Mittelitalien" k_magna_graecia: "Groß Griechenland" diff --git a/ImperatorToCK3/Data_Files/blankMod/output/localization/korean/CONVERTER_dejure_titles_static_l_korean.yml b/ImperatorToCK3/Data_Files/blankMod/output/localization/korean/CONVERTER_dejure_titles_static_l_korean.yml index 680003b1d..a51fffc25 100644 --- a/ImperatorToCK3/Data_Files/blankMod/output/localization/korean/CONVERTER_dejure_titles_static_l_korean.yml +++ b/ImperatorToCK3/Data_Files/blankMod/output/localization/korean/CONVERTER_dejure_titles_static_l_korean.yml @@ -10,7 +10,7 @@ k_betique: "베틱" k_contestania: "콘테스타니아" k_tarragonaise: "타라고네즈" - e_western_roman_empire: "서로마 제국" + h_western_roman_empire: "서로마 제국" k_north_italy: "북부 이탈리아" k_central_italy: "중부 이탈리아" k_magna_graecia: "대그리스" diff --git a/ImperatorToCK3/Data_Files/blankMod/output/localization/replace/english/zzz_IRToCK3_vanilla_override_l_english.yml b/ImperatorToCK3/Data_Files/blankMod/output/localization/replace/english/zzz_IRToCK3_vanilla_override_l_english.yml index c30b97f3d..29b662f97 100644 --- a/ImperatorToCK3/Data_Files/blankMod/output/localization/replace/english/zzz_IRToCK3_vanilla_override_l_english.yml +++ b/ImperatorToCK3/Data_Files/blankMod/output/localization/replace/english/zzz_IRToCK3_vanilla_override_l_english.yml @@ -99,4 +99,8 @@ # "Albanian" heritage now used for more than just Albanians heritage_albanian: "Illyrian" heritage_albanian_name: "Illyrian" - heritage_albanian_collective_noun: "Illyrians" \ No newline at end of file + heritage_albanian_collective_noun: "Illyrians" + + converter_custom_hindustan_region: "Hindustan Core" + hindustan_control_3_kingdoms: "Hold at least 3 [kingdoms|E] with 80% of its land in [GetGeographicalRegion('world_india_rajastan').GetName]" + hindustan_control_rajastan: "Control at least 80% of [GetGeographicalRegion('world_india_rajastan').GetName]" \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/blankMod/output/localization/russian/CONVERTER_dejure_titles_static_l_russian.yml b/ImperatorToCK3/Data_Files/blankMod/output/localization/russian/CONVERTER_dejure_titles_static_l_russian.yml index 9cc8f05f7..51334828b 100644 --- a/ImperatorToCK3/Data_Files/blankMod/output/localization/russian/CONVERTER_dejure_titles_static_l_russian.yml +++ b/ImperatorToCK3/Data_Files/blankMod/output/localization/russian/CONVERTER_dejure_titles_static_l_russian.yml @@ -10,7 +10,7 @@ k_betique: "Бетик" k_contestania: "Контестания" k_tarragonaise: "Таррагонез" - e_western_roman_empire: "Западная Римская империя" + h_western_roman_empire: "Западная Римская империя" k_north_italy: "Северная Италия" k_central_italy: "Центральная Италия" k_magna_graecia: "Великая Греция" diff --git a/ImperatorToCK3/Data_Files/blankMod/output/localization/simp_chinese/CONVERTER_dejure_titles_static_l_simp_chinese.yml b/ImperatorToCK3/Data_Files/blankMod/output/localization/simp_chinese/CONVERTER_dejure_titles_static_l_simp_chinese.yml index aa071246d..4555bf8df 100644 --- a/ImperatorToCK3/Data_Files/blankMod/output/localization/simp_chinese/CONVERTER_dejure_titles_static_l_simp_chinese.yml +++ b/ImperatorToCK3/Data_Files/blankMod/output/localization/simp_chinese/CONVERTER_dejure_titles_static_l_simp_chinese.yml @@ -10,7 +10,7 @@ k_betique: "贝蒂奇" k_contestania: "大赛尼亚" k_tarragonaise: "龙蒿" - e_western_roman_empire: "西罗马帝国" + h_western_roman_empire: "西罗马帝国" k_north_italy: "意大利北部" k_central_italy: "意大利中部" k_magna_graecia: "大希腊" diff --git a/ImperatorToCK3/Data_Files/blankMod/output/localization/spanish/CONVERTER_dejure_titles_static_l_spanish.yml b/ImperatorToCK3/Data_Files/blankMod/output/localization/spanish/CONVERTER_dejure_titles_static_l_spanish.yml index c359ba807..2c6c5c4a9 100644 --- a/ImperatorToCK3/Data_Files/blankMod/output/localization/spanish/CONVERTER_dejure_titles_static_l_spanish.yml +++ b/ImperatorToCK3/Data_Files/blankMod/output/localization/spanish/CONVERTER_dejure_titles_static_l_spanish.yml @@ -10,7 +10,7 @@ k_betique: "Bética" k_contestania: "Contestanía" k_tarragonaise: "Tarragonesa" - e_western_roman_empire: "Imperio Romano Occidental" + h_western_roman_empire: "Imperio Romano Occidental" k_north_italy: "Norte de Italia" k_central_italy: "Italia central" k_magna_graecia: "Gran Grecia" diff --git a/ImperatorToCK3/Data_Files/blankMod/output/map_data/geographical_regions/zzz_IRToCK3_regions.txt.liquid b/ImperatorToCK3/Data_Files/blankMod/output/map_data/geographical_regions/zzz_IRToCK3_regions.txt.liquid index 30a34e3b2..8eb4dc750 100644 --- a/ImperatorToCK3/Data_Files/blankMod/output/map_data/geographical_regions/zzz_IRToCK3_regions.txt.liquid +++ b/ImperatorToCK3/Data_Files/blankMod/output/map_data/geographical_regions/zzz_IRToCK3_regions.txt.liquid @@ -1,4 +1,7 @@ -{% if tfe %} +############################### +### Regions based on used mods +############################### +{% if tfe %} {% elsif roa %} # For limiting the RoA stateless government assignment to regions out of scope of Terra-Indomita @@ -17,4 +20,41 @@ converter_roa_out_of_scope_region = { } {% elsif wtwsms %} -{% endif %} \ No newline at end of file +{% endif %} + +############################### +### Regions to have always have +############################### +# This is mainly to better split up e_byzantium for the split_byzantine_empire_effect scripted effect +converter_custom_macedonia_region = { + regions = { + ghw_region_greece ghw_region_thessalonika + } + duchies = { + d_krete + + # Bulgaria + d_vidin d_turnovo d_dobrudja d_bulgaria d_philippopolis + } +} + +# This is mainly to better split up e_byzantium for the split_byzantine_empire_effect scripted effect +converter_custom_anatolia_region = { + regions = { + ghw_region_anatolia + } + duchies = { + d_cyprus d_aegean_islands + } +} + +# The form Hindustan decision depends on titles that might not exist. This region is made to account for that. +converter_custom_hindustan_region = { + duchies = { + # Punjab + d_lahore d_multan d_gandhara + + # Delhi + d_kuru d_vodamayutja d_haritanaka d_mathura + } +} \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/configurables/converter_cultures.txt b/ImperatorToCK3/Data_Files/configurables/converter_cultures.txt index ed61fc547..feb773b6b 100644 --- a/ImperatorToCK3/Data_Files/configurables/converter_cultures.txt +++ b/ImperatorToCK3/Data_Files/configurables/converter_cultures.txt @@ -30,6 +30,9 @@ gelonian = { name_list = name_list_scythian #might consider adding in ancient greek well) martial_custom = martial_custom_male_only + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_artisans @@ -95,6 +98,7 @@ qin = { name_list = name_list_han martial_custom = martial_custom_male_only + house_coa_frame = house_china traditions = { tradition_artisans @@ -158,8 +162,8 @@ qin = { clothing_gfx = { mongol_clothing_gfx } unit_gfx = { mongol_unit_gfx } } - } + } neo_minoan = { # Other names can be neo_mycanaean or posiedian. This culture should only be be able to trigger in the converter if the holder of the culture has a kingdom or empire tier title. Otherwise, cretan should take place over it @@ -190,6 +194,9 @@ neo_minoan = { # Other names can be neo_mycanaean or posiedian. This culture sho ethos = ethos_bureaucratic head_determination = head_determination_domain + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } name_list = name_list_ancient_greek martial_custom = martial_custom_male_only @@ -223,7 +230,6 @@ neo_minoan = { # Other names can be neo_mycanaean or posiedian. This culture sho unit_gfx = { eastern_unit_gfx } } - cretan = { INVALIDATED_BY = { vanilla = { cretan } # In vanilla the cretan culture is a divergence from Greek, done through a decision @@ -248,6 +254,9 @@ cretan = { } ethos = ethos_bellicose head_determination = head_determination_domain + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } name_list = name_list_ancient_greek martial_custom = martial_custom_male_only @@ -294,6 +303,9 @@ minoan = { # The ancient Minoan culture from the Bronze Age name_list = name_list_ancient_greek martial_custom = martial_custom_male_only + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_city_keepers @@ -333,6 +345,9 @@ cycladic = { # The ancient Pre-Greek culture of the Cyclades from the Bronze Age language = language_cycladic #Ancient Pre-Greek language, unknown classification ethos = ethos_spiritual head_determination = head_determination_domain + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } name_list = name_list_ancient_greek martial_custom = martial_custom_male_only @@ -379,6 +394,9 @@ pelasgian = { # The ancient pre-Greek people of mainland Greece from the Bronze name_list = name_list_ancient_greek martial_custom = martial_custom_male_only + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_city_keepers @@ -414,6 +432,7 @@ khasi = { language = language_palaungic martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_18 name_list = name_list_palaungic @@ -475,6 +494,9 @@ nuragic = { ethos = ethos_communal # Tribal society martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_22 + house_coa_mask_offset = { 0.0 0.11 } + house_coa_mask_scale = { 0.85 0.85 } traditions = { tradition_seafaring tradition_agrarian @@ -512,6 +534,9 @@ luwian = { # https://en.wikipedia.org/wiki/Luwians martial_custom = martial_custom_male_only ethos = ethos_communal # Tribal society head_determination = head_determination_domain + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_quarrelsome tradition_hill_dwellers @@ -557,6 +582,9 @@ cilician = { # https://en.wikipedia.org/wiki/History_of_Cilicia martial_custom = martial_custom_male_only ethos = ethos_bellicose # seems fitting for pirates head_determination = head_determination_domain + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_practiced_pirates # Cilician pirates tradition_merciful_blindings # represents Greek influence on Cilicia @@ -602,6 +630,9 @@ lydian = { martial_custom = martial_custom_male_only ethos = ethos_courtly # Kingdom of Lydia head_determination = head_determination_domain + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_metal_craftsmanship # First use of coinage tradition_strength_in_numbers # Large armies fielded against Cyrus the Great @@ -647,6 +678,9 @@ hittite = { martial_custom = martial_custom_male_only ethos = ethos_bureaucratic # Earliest constitutional monarchy head_determination = head_determination_domain + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_legalistic # Hittite laws tradition_hereditary_hierarchy # Prosperity under competent kings, downfall of Hittite kingdoms under poor kings @@ -690,6 +724,9 @@ kizzuwatnan = { # Ancient Bronze Age people of Cilicia, hybrids between Hurrians martial_custom = martial_custom_male_only ethos = ethos_communal # Tribal society head_determination = head_determination_domain + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_astute_diplomats tradition_ancient_miners @@ -737,6 +774,9 @@ trojan = { # Override of vanilla culture language = language_luwian martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_philosopher_culture tradition_legalistic @@ -769,6 +809,9 @@ phrygian = { martial_custom = martial_custom_male_only ethos = ethos_bellicose # Involved in multiple wars before, during and after the existence of the Phrygian Kingdom in 7th Century BC head_determination = head_determination_domain + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_sorcerous_metallurgy # Legendary King Midas tradition_astute_diplomats # Recorded to be allied with various powers @@ -805,6 +848,9 @@ nabatean = { # https://en.wikipedia.org/wiki/Nabataeans language = language_arabic martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_13 + house_coa_mask_offset = { 0.0 -0.03 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_caravaneers # https://books.openedition.org/momeditions/8587 tradition_dryland_dwellers @@ -839,6 +885,9 @@ adnanite = { # https://en.wikipedia.org/wiki/Adnanites language = language_arabic martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_13 + house_coa_mask_offset = { 0.0 -0.03 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_caravaneers tradition_desert_nomads @@ -871,6 +920,9 @@ qahtanite = { # https://en.wikipedia.org/wiki/Qahtanite language = language_arabic martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_13 + house_coa_mask_offset = { 0.0 -0.03 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_mountaineers @@ -909,6 +961,9 @@ egyptian = { # override of vanilla culture language = language_arabic martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_10 + house_coa_mask_offset = { 0.0 -0.06 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_philosopher_culture tradition_agrarian @@ -940,6 +995,9 @@ dalmatian = { language = language_illyrian martial_custom = martial_custom_equal head_determination = head_determination_domain + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_hit_and_run tradition_swords_for_hire @@ -959,6 +1017,7 @@ dalmatian = { clothing_gfx = { byzantine_clothing_gfx } unit_gfx = { eastern_unit_gfx } } + messapic = { INVALIDATED_BY = { tfe = { messapic } @@ -974,6 +1033,9 @@ messapic = { ethos = ethos_stoic head_determination = head_determination_domain + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } coa_gfx = { byzantine_group_coa_gfx } building_gfx = { mediterranean_building_gfx } @@ -1007,6 +1069,9 @@ ancient_egyptian = { # fallback in case some mod removes vanilla ancient_egypti ethos = ethos_spiritual head_determination = head_determination_domain + house_coa_frame = house_frame_10 + house_coa_mask_offset = { 0.0 -0.06 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_warriors_of_the_dry @@ -1043,6 +1108,9 @@ per_sheklesh = { # Egyptian Italy from BA to I:R ethos = ethos_spiritual head_determination = head_determination_domain + house_coa_frame = house_frame_10 + house_coa_mask_offset = { 0.0 -0.06 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_warriors_of_the_dry @@ -1079,6 +1147,9 @@ niwt_ipt = { # Egyptian Carthage from BA to I:R ethos = ethos_spiritual head_determination = head_determination_domain + house_coa_frame = house_frame_10 + house_coa_mask_offset = { 0.0 -0.06 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_seafaring @@ -1116,6 +1187,9 @@ numidian = { } martial_custom = martial_custom_male_only head_determination = head_determination_herd # All vanilla CK3 berber cultures use herd for culture head (except the guanches, but that is likely since they are separated, on an island), so I just went along with that + house_coa_frame = house_frame_06 + house_coa_mask_offset = { 0.0 0.0 } + house_coa_mask_scale = { 0.85 0.85 } ethos = ethos_stoic @@ -1147,6 +1221,9 @@ brythonic = { ethos=ethos_stoic #https://penelope.uchicago.edu/~grout/encyclopaedia_romana/britannia/miscellanea/geography.html language=language_brythonic head_determination = head_determination_domain + house_coa_frame = house_frame_24 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_concubines tradition_hill_dwellers @@ -1184,6 +1261,7 @@ arakanese = { # https://en.wikipedia.org/wiki/Rakhine_people language = language_burmese martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_18 name_list = name_list_burmese @@ -1227,6 +1305,9 @@ hellenic_greek = { # Now used to represent non-Romanized Greeks } language = language_greek martial_custom = martial_custom_male_only + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { # From ChatGPT and my own research, non-Romanized Greeks fit better under a diplomatic/warfare-focused culture, instead of a political/intrigue-based one like base game Greek -tanner918 tradition_warrior_culture tradition_legalistic @@ -1269,6 +1350,9 @@ greek = { # Overwriting the vanilla greek definition to make it better represent } language = language_greek martial_custom = martial_custom_male_only + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } dlc_tradition = { trait = tradition_ep3_imperial_tagmata @@ -1334,6 +1418,9 @@ macedonian = { } } martial_custom = martial_custom_male_only + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_philosopher_culture tradition_legalistic @@ -1377,6 +1464,9 @@ hellenistic = { name_list = name_list_ancient_greek name_list = name_list_persian martial_custom = martial_custom_male_only + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_swords_for_hire @@ -1429,6 +1519,9 @@ indogreek = { name_list = name_list_indo_greek martial_custom = martial_custom_male_only + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } coa_gfx = { indo_aryan_group_coa_gfx } building_gfx = { mediterranean_building_gfx } @@ -1468,6 +1561,9 @@ italiote = { clothing_gfx = { byzantine_clothing_gfx } building_gfx = { mediterranean_building_gfx } unit_gfx = { eastern_unit_gfx } + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } color = rgb { 103 145 255 } name_list = name_list_ancient_greek @@ -1513,6 +1609,9 @@ syro_hellenic = { clothing_gfx = { byzantine_clothing_gfx } building_gfx = { mediterranean_building_gfx } unit_gfx = { eastern_unit_gfx } + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } color = rgb { 136 145 213 } name_list = name_list_ancient_greek @@ -1548,6 +1647,9 @@ pemis = { ethos = ethos_courtly head_determination = head_determination_domain + house_coa_frame = house_frame_25 + house_coa_mask_offset = { 0.0 0.025 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_druzhina @@ -1579,6 +1681,9 @@ aramaic = { language = language_aramaic martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_15 + house_coa_mask_offset = { 0.0 -0.03 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_warriors_of_the_dry # Aramaic culture is mainly located at where all the Syrian desert is. @@ -1615,6 +1720,9 @@ babylonian = { language = language_babylonian martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_15 + house_coa_mask_offset = { 0.0 -0.03 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { # Babylonian culture should have City Keepers tradition as Babylonians built cities as beautiful works of art. (The use of brick led to the early development of the pilaster and column, and of frescoes and enameled tiles. The walls were brilliantly coloured, and sometimes plated with zinc or gold, as well as with tiles. Painted terracotta cones for torches were also embedded in the plaster. (from the Babylonia Wikipedia page)) tradition_city_keepers @@ -1655,6 +1763,9 @@ sumerian = { language = language_sumerian martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_15 + house_coa_mask_offset = { 0.0 -0.03 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_parochialism tradition_eye_for_an_eye @@ -1686,6 +1797,9 @@ eblaite = { #Ancient Bronze Age people of modern-day Syria, either East Semetic language = language_eblaite martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_15 + house_coa_mask_offset = { 0.0 -0.03 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { #Same as Babylonian tradition_city_keepers tradition_medicinal_plants @@ -1724,6 +1838,9 @@ bazramani = { language = language_latin martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_15 + house_coa_mask_offset = { 0.0 -0.03 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_warriors_of_the_dry tradition_hereditary_hierarchy @@ -1759,6 +1876,9 @@ judajca = { language = language_latin martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_15 + house_coa_mask_offset = { 0.0 -0.03 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_warriors_of_the_dry tradition_hereditary_hierarchy @@ -1789,6 +1909,9 @@ vandilian = { # https://en.wikipedia.org/wiki/East_Germanic_peoples heritage = heritage_east_germanic language = language_gothic head_determination = head_determination_domain + house_coa_frame = house_frame_25 + house_coa_mask_offset = { 0.0 0.025 } + house_coa_mask_scale = { 0.95 0.95 } name_list = name_list_gothic ethnicities = { 25 = caucasian_blond @@ -1818,6 +1941,9 @@ gothic = { # https://en.wikipedia.org/wiki/Goths heritage = heritage_east_germanic language = language_gothic head_determination = head_determination_domain + house_coa_frame = house_frame_25 + house_coa_mask_offset = { 0.0 0.025 } + house_coa_mask_scale = { 0.95 0.95 } name_list = name_list_gothic ethnicities = { 25 = caucasian_blond @@ -1856,6 +1982,9 @@ visigothic = { # override of vanilla culture language = language_gothic martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_25 + house_coa_mask_offset = { 0.0 0.025 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_equal_inheritance tradition_hit_and_run @@ -1888,6 +2017,9 @@ ostrogothic = { # https://en.wikipedia.org/wiki/Ostrogoths language = language_gothic name_list = name_list_gothic head_determination = head_determination_domain + house_coa_frame = house_frame_25 + house_coa_mask_offset = { 0.0 0.025 } + house_coa_mask_scale = { 0.95 0.95 } ethnicities = { 25 = caucasian_blond 15 = caucasian_ginger @@ -1916,6 +2048,9 @@ gepid = { # https://en.wikipedia.org/wiki/Gepids heritage = heritage_east_germanic language = language_gothic head_determination = head_determination_domain + house_coa_frame = house_frame_25 + house_coa_mask_offset = { 0.0 0.025 } + house_coa_mask_scale = { 0.95 0.95 } name_list = name_list_gothic ethnicities = { 25 = caucasian_blond @@ -1945,6 +2080,9 @@ vandal = { # https://en.wikipedia.org/wiki/Vandals heritage = heritage_east_germanic language = language_gothic head_determination = head_determination_domain + house_coa_frame = house_frame_25 + house_coa_mask_offset = { 0.0 0.025 } + house_coa_mask_scale = { 0.95 0.95 } color = hsv { 0.05 0.7 0.3 } name_list = name_list_gothic @@ -1980,6 +2118,9 @@ urslavic = { language = language_east_slavic martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_druzhina tradition_forest_folk @@ -2012,6 +2153,9 @@ celtic_pannonian = { language = language_gaulish martial_custom = martial_custom_equal head_determination = head_determination_domain + house_coa_frame = house_frame_24 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_hit_and_run tradition_adaptive_skirmishing @@ -2033,6 +2177,7 @@ celtic_pannonian = { clothing_gfx = { northern_clothing_gfx } unit_gfx = { western_unit_gfx } } + celtiberian = { INVALIDATED_BY = { tfe = { celtiberian } @@ -2045,6 +2190,9 @@ celtiberian = { language = language_gaulish martial_custom = martial_custom_equal head_determination = head_determination_domain + house_coa_frame = house_frame_24 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_hit_and_run tradition_adaptive_skirmishing @@ -2066,6 +2214,7 @@ celtiberian = { clothing_gfx = { northern_clothing_gfx } unit_gfx = { western_unit_gfx } } + belgae = { INVALIDATED_BY = { tfe = { belgae } @@ -2080,6 +2229,9 @@ belgae = { language = language_gaulish martial_custom = martial_custom_equal head_determination = head_determination_domain + house_coa_frame = house_frame_24 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_hit_and_run tradition_adaptive_skirmishing @@ -2101,6 +2253,7 @@ belgae = { clothing_gfx = { northern_clothing_gfx } unit_gfx = { western_unit_gfx } } + gallic = { INVALIDATED_BY = { tfe = { gallic gaul } @@ -2113,6 +2266,9 @@ gallic = { language = language_gaulish martial_custom = martial_custom_equal head_determination = head_determination_domain + house_coa_frame = house_frame_24 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_hit_and_run tradition_adaptive_skirmishing @@ -2134,6 +2290,7 @@ gallic = { clothing_gfx = { northern_clothing_gfx } unit_gfx = { western_unit_gfx } } + lusoiberian = { # https://en.wikipedia.org/wiki/Lusitanians INVALIDATED_BY = { tfe = { lusoiberian } @@ -2148,6 +2305,9 @@ lusoiberian = { # https://en.wikipedia.org/wiki/Lusitanians language = language_gaulish martial_custom = martial_custom_equal head_determination = head_determination_domain + house_coa_frame = house_frame_24 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } ethos = ethos_stoic traditions = { @@ -2169,6 +2329,7 @@ lusoiberian = { # https://en.wikipedia.org/wiki/Lusitanians clothing_gfx = { northern_clothing_gfx } unit_gfx = { western_unit_gfx } } + galatian = { INVALIDATED_BY = { tfe = { galatian } @@ -2184,6 +2345,9 @@ galatian = { language = language_gaulish martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_24 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } ethos = ethos_bellicose @@ -2223,6 +2387,7 @@ neo_mitanni = { # IRToCK3: a culture for Invictus revival meme Neo-Mitanni cultu language = language_vrachada martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_17 traditions = { tradition_poetry tradition_seafaring @@ -2258,6 +2423,9 @@ bactrian = { ethos = ethos_stoic head_determination = head_determination_domain + house_coa_frame = house_frame_12 + house_coa_mask_offset = { 0.0 -0.04 } + house_coa_mask_scale = { 0.95 0.95 } coa_gfx = { iranian_group_coa_gfx } building_gfx = { mena_building_gfx } @@ -2328,6 +2496,9 @@ scythian = { # "Unlike the other Scythic peoples such as the Sarmatians, where women were allowed to go hunting, ride horses, learn archery and fight with spears just like the men, the society of the Scythians proper was patriarchal and Scythian women possessed little freedom." (from the Scythians wikipedia page) martial_custom = martial_custom_male_only head_determination = head_determination_herd + house_coa_frame = house_frame_12 + house_coa_mask_offset = { 0.0 -0.04 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_horse_breeder @@ -2365,6 +2536,9 @@ sarmatian = { # "Unlike the other Scythic peoples such as the Sarmatians, where women were allowed to go hunting, ride horses, learn archery and fight with spears just like the men, the society of the Scythians proper was patriarchal and Scythian women possessed little freedom." (from the Scythians Wikipedia page) martial_custom = martial_custom_equal head_determination = head_determination_herd + house_coa_frame = house_frame_12 + house_coa_mask_offset = { 0.0 -0.04 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_horse_breeder @@ -2391,6 +2565,9 @@ parthian = { ethos = ethos_courtly head_determination = head_determination_domain # The Imperator culture mapped to this culture seems to represent the Parthians after they became more settled + house_coa_frame = house_frame_12 + house_coa_mask_offset = { 0.0 -0.04 } + house_coa_mask_scale = { 0.95 0.95 } heritage = heritage_iranian language = language_iranian @@ -2434,6 +2611,9 @@ elamite = { # https://en.wikipedia.org/wiki/Elam language = language_elamite martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_12 + house_coa_mask_offset = { 0.0 -0.04 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { # https://study.com/academy/lesson/elamite-empire-art-culture.html # The location of Elam was also very rich agriculturally. This not only provided adequate nutrition and security to the Elamites, but a steady source of good for packaging and selling to other nations and people who traveled through and traded with the Elamites. @@ -2469,6 +2649,9 @@ alan = { # override of vanilla culture language = language_scythian martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_12 + house_coa_mask_offset = { 0.0 -0.04 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_devoted_horsemanship # tradition_horse_lords still defined in base game files, but it has been replaced by this tradition, for the most part tradition_mountaineers @@ -2506,6 +2689,9 @@ hebrew = { # https://en.wikipedia.org/wiki/Hebrews ethos = ethos_stoic head_determination = head_determination_domain + house_coa_frame = house_frame_23 + house_coa_mask_offset = { 0.0 0.03 } + house_coa_mask_scale = { 0.9 0.9 } coa_gfx = { israelite_group_coa_gfx } building_gfx = { mena_building_gfx } @@ -2540,6 +2726,9 @@ shuadit = { # https://en.wikipedia.org/wiki/Shuadit ethos = ethos_egalitarian head_determination = head_determination_domain + house_coa_frame = house_frame_23 + house_coa_mask_offset = { 0.0 0.03 } + house_coa_mask_scale = { 0.9 0.9 } coa_gfx = { israelite_group_coa_gfx } building_gfx = { mena_building_gfx } @@ -2574,6 +2763,9 @@ zarphatic = { # https://en.wikipedia.org/wiki/Zarphatic_language ethos = ethos_egalitarian head_determination = head_determination_domain + house_coa_frame = house_frame_23 + house_coa_mask_offset = { 0.0 0.03 } + house_coa_mask_scale = { 0.9 0.9 } coa_gfx = { israelite_group_coa_gfx } building_gfx = { mena_building_gfx } @@ -2607,6 +2799,9 @@ oscan = { # This culture is now meant to represent the ancient Umbrii peoples, b } language = language_oscan martial_custom = martial_custom_male_only + house_coa_frame = house_frame_22 + house_coa_mask_offset = { 0.0 0.11 } + house_coa_mask_scale = { 0.85 0.85 } name_list = name_list_oscan @@ -2633,6 +2828,7 @@ oscan = { # This culture is now meant to represent the ancient Umbrii peoples, b tradition_hill_dwellers # They were centered around a very hilly/mountainous area } } + samnite = { INVALIDATED_BY = { tfe = { samnite } @@ -2648,6 +2844,9 @@ samnite = { } language = language_samnite martial_custom = martial_custom_equal + house_coa_frame = house_frame_22 + house_coa_mask_offset = { 0.0 0.11 } + house_coa_mask_scale = { 0.85 0.85 } name_list = name_list_roman @@ -2675,6 +2874,7 @@ samnite = { tradition_only_the_strong } } + venetic = { # https://en.wikipedia.org/wiki/Adriatic_Veneti INVALIDATED_BY = { tfe = { venetic } @@ -2690,6 +2890,9 @@ venetic = { # https://en.wikipedia.org/wiki/Adriatic_Veneti } language = language_venetic martial_custom = martial_custom_male_only + house_coa_frame = house_frame_22 + house_coa_mask_offset = { 0.0 0.11 } + house_coa_mask_scale = { 0.85 0.85 } name_list = name_list_venetic @@ -2722,6 +2925,7 @@ venetic = { # https://en.wikipedia.org/wiki/Adriatic_Veneti tradition_sacred_groves } } + ligustic = { INVALIDATED_BY = { tfe = { ligustic } @@ -2737,6 +2941,9 @@ ligustic = { } language = language_ligustic martial_custom = martial_custom_male_only + house_coa_frame = house_frame_22 + house_coa_mask_offset = { 0.0 0.11 } + house_coa_mask_scale = { 0.85 0.85 } name_list = name_list_roman @@ -2764,6 +2971,7 @@ ligustic = { tradition_only_the_strong } } + sardonian = { INVALIDATED_BY = { tfe = { sardonian } @@ -2779,6 +2987,9 @@ sardonian = { } language = language_sardonian martial_custom = martial_custom_male_only + house_coa_frame = house_frame_22 + house_coa_mask_offset = { 0.0 0.11 } + house_coa_mask_scale = { 0.85 0.85 } name_list = name_list_sardinian @@ -2806,6 +3017,7 @@ sardonian = { tradition_only_the_strong } } + siculian = { INVALIDATED_BY = { tfe = { siculian } @@ -2821,6 +3033,9 @@ siculian = { } language = language_siculian martial_custom = martial_custom_male_only + house_coa_frame = house_frame_22 + house_coa_mask_offset = { 0.0 0.11 } + house_coa_mask_scale = { 0.85 0.85 } name_list = name_list_sicilian @@ -2863,6 +3078,9 @@ roman = { language = language_latin martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_22 + house_coa_mask_offset = { 0.0 0.11 } + house_coa_mask_scale = { 0.85 0.85 } traditions = { tradition_poetry } @@ -2918,6 +3136,7 @@ hunnic = { # Should now replace base game Hunnic heritage = heritage_hunnic language = language_hunnic head_determination = head_determination_herd + house_coa_frame = house_frame_14 name_list = name_list_hunnic @@ -2962,6 +3181,7 @@ varangian = { language = language_norse martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_05 traditions = { tradition_things } @@ -2982,6 +3202,7 @@ varangian = { 5 = caucasian_northern_dark_hair } } + mikligardrish = { INVALIDATED_BY = { tfe = { mikligardrish } @@ -2994,6 +3215,7 @@ mikligardrish = { created = 20.1.1 martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_05 traditions = { tradition_things } @@ -3033,6 +3255,7 @@ palaungic = { # from AsiaExtended mod https://steamcommunity.com/sharedfiles/fi language = language_palaungic martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_18 name_list = name_list_palaungic @@ -3067,6 +3290,9 @@ carthaginian = { language = language_punic martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_15 + house_coa_mask_offset = { 0.0 -0.03 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_warriors_by_merit tradition_seafaring @@ -3085,6 +3311,7 @@ carthaginian = { clothing_gfx = { dde_abbasid_clothing_gfx mena_clothing_gfx } unit_gfx = { mena_unit_gfx } } + phoenician = { INVALIDATED_BY = { tfe = { phoenician } @@ -3097,6 +3324,9 @@ phoenician = { language = language_punic martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_15 + house_coa_mask_offset = { 0.0 -0.03 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_seafaring tradition_xenophilic @@ -3115,6 +3345,7 @@ phoenician = { clothing_gfx = { dde_abbasid_clothing_gfx mena_clothing_gfx } unit_gfx = { mena_unit_gfx } } + alasiyan = { #Ancient pre-Cypriot people of Cyprus INVALIDATED_BY = { tfe = { alasiyan } @@ -3127,6 +3358,9 @@ alasiyan = { #Ancient pre-Cypriot people of Cyprus language = language_alasiyan martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_15 + house_coa_mask_offset = { 0.0 -0.03 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_ancient_miners tradition_xenophilic @@ -3145,6 +3379,7 @@ alasiyan = { #Ancient pre-Cypriot people of Cyprus clothing_gfx = { dde_abbasid_clothing_gfx mena_clothing_gfx } unit_gfx = { mena_unit_gfx } } + ugaritic = { INVALIDATED_BY = { tfe = { ugaritic } @@ -3157,6 +3392,9 @@ ugaritic = { language = language_ugaritic martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_15 + house_coa_mask_offset = { 0.0 -0.03 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_maritime_mercantilism tradition_xenophilic @@ -3192,6 +3430,9 @@ breathanach = { language = language_breathanach martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_24 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_horse_breeder } @@ -3219,6 +3460,7 @@ breathanach = { ethos = ethos_stoic } + transadrianic = { INVALIDATED_BY = { tfe = { transadrianic } @@ -3233,6 +3475,9 @@ transadrianic = { language = language_breathanach martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_24 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_horse_breeder } @@ -3260,6 +3505,7 @@ transadrianic = { ethos = ethos_stoic } + brythenig = { INVALIDATED_BY = { tfe = { brythenig } @@ -3274,6 +3520,9 @@ brythenig = { language = language_breathanach martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_24 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_horse_breeder } @@ -3316,6 +3565,9 @@ laessin = { language = language_laessin martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_25 + house_coa_mask_offset = { 0.0 0.025 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_martial_admiration } @@ -3343,6 +3595,7 @@ laessin = { ethos = ethos_stoic } + wenedyk = { INVALIDATED_BY = { tfe = { wenedyk } @@ -3357,6 +3610,9 @@ wenedyk = { language = language_laessin martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_25 + house_coa_mask_offset = { 0.0 0.025 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_martial_admiration } @@ -3398,6 +3654,9 @@ shan = { # https://en.wikipedia.org/wiki/Shan_people language = language_tai martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_26 + house_coa_mask_offset = { 0.0 0.0 } + house_coa_mask_scale = { 0.85 0.85 } name_list = name_list_shan @@ -3432,6 +3691,9 @@ thracian = { language = language_thracian martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_stand_and_fight tradition_adaptive_skirmishing @@ -3450,6 +3712,7 @@ thracian = { ethos = ethos_stoic } + dacian = { INVALIDATED_BY = { tfe = { dacian } @@ -3463,6 +3726,9 @@ dacian = { language = language_dacian martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_stand_and_fight tradition_adaptive_skirmishing @@ -3481,6 +3747,7 @@ dacian = { ethos = ethos_stoic } + getian = { INVALIDATED_BY = { tfe = { getian } @@ -3495,6 +3762,9 @@ getian = { language = language_thracian martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_stand_and_fight tradition_adaptive_skirmishing @@ -3526,6 +3796,9 @@ etruscan = { language = language_etruscan martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_22 + house_coa_mask_offset = { 0.0 0.11 } + house_coa_mask_scale = { 0.85 0.85 } traditions = { tradition_warriors_by_merit tradition_city_keepers @@ -3551,6 +3824,7 @@ etruscan = { ethos = ethos_courtly } + rhaetian = { INVALIDATED_BY = { tfe = { rhaetian } @@ -3564,6 +3838,9 @@ rhaetian = { language = language_etruscan martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_22 + house_coa_mask_offset = { 0.0 0.11 } + house_coa_mask_scale = { 0.85 0.85 } traditions = { tradition_warriors_by_merit tradition_mountain_homes @@ -3589,6 +3866,7 @@ rhaetian = { ethos = ethos_stoic } + lemnian = { INVALIDATED_BY = { tfe = { lemnian } @@ -3603,6 +3881,9 @@ lemnian = { language = language_etruscan martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_22 + house_coa_mask_offset = { 0.0 0.11 } + house_coa_mask_scale = { 0.85 0.85 } traditions = { tradition_warriors_by_merit tradition_maritime_mercantilism @@ -3642,6 +3923,9 @@ angle = { # https://en.wikipedia.org/wiki/Angles language = language_anglic martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_24 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_things tradition_seafaring @@ -3679,6 +3963,9 @@ iweric = { language = language_anglic martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_24 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_things @@ -3716,6 +4003,9 @@ suebi = { # override of vanilla culture language = language_central_germanic martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_24 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_stand_and_fight tradition_agrarian @@ -3745,6 +4035,9 @@ chong = { # integrated from Rajas of Asia language = language_chong martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_26 + house_coa_mask_offset = { 0.0 0.0 } + house_coa_mask_scale = { 0.85 0.85 } name_list = name_list_khmer @@ -3774,6 +4067,9 @@ hurrian_culture = { language = language_hurrian martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_15 + house_coa_mask_offset = { 0.0 -0.03 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_storytellers tradition_metal_craftsmanship @@ -3810,6 +4106,9 @@ gutian = { #Ancient barbarians of unknown origin who conquered Mesopotamia after language = language_gutian martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_15 + house_coa_mask_offset = { 0.0 -0.03 } + house_coa_mask_scale = { 0.95 0.95 } traditions = { tradition_quarrelsome tradition_hill_dwellers @@ -3840,6 +4139,9 @@ hatti = { #Pre-Hittite people of central Anatolia language = language_hatti martial_custom = martial_custom_male_only head_determination = head_determination_domain + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_artisans tradition_storytellers @@ -3913,6 +4215,9 @@ anatolian = { martial_custom = martial_custom_male_only ethos = ethos_bellicose # Were known warriors/mercenaries head_determination = head_determination_domain + house_coa_frame = house_frame_02 + house_coa_mask_offset = { 0.0 0.055 } + house_coa_mask_scale = { 0.9 0.9 } traditions = { tradition_hill_dwellers # Many lived in Hill Forts tradition_highland_warriors # Lived in hills, known to be mercenaries/warriors @@ -3948,4 +4253,358 @@ anatolian = { # dde_abbasid_clothing_gfx } unit_gfx = { eastern_unit_gfx } +} + +old_bashu = { + INVALIDATED_BY = { + tfe = { old_bashu } + wtwsms = { old_bashu } + roa = { old_bashu } + vanilla = { old_bashu } + } + + color = { 107 153 126 } + + ethos = ethos_communal + heritage = heritage_loloish # ROA uses Loloish, and from what I've been able to find online potential descendents of them seem to speak languages related to Loloish, so this might be a good match for now until something else is determined so they are lumped together with the actual Chinese cultures + language = language_bashu + martial_custom = martial_custom_male_only + head_determination = head_determination_domain + house_coa_frame = house_frame_04 + + traditions = { + tradition_culinary_art + tradition_metal_craftsmanship + tradition_music_theory + tradition_swords_for_hire + } + + name_list = name_list_han # For now + + MOD_DEPENDENT = { + IF aep = { + ethnicities = { + 10 = east_asian_chinese_north + } + } + ELSE_IF roa = { + ethnicities = { + 2 = east_asian_han_1 + 2 = east_asian_han_2 + 2 = east_asian_han_3 + 2 = east_asian_han_4 + } + } + ELSE = { + ethnicities = { + 10 = asian_han_chinese + } + } + } + + MOD_DEPENDENT = { + IF aep = { + coa_gfx = { chinese_group_coa_gfx } + building_gfx = { chinese_building_gfx } + clothing_gfx = { chinese_clothing_gfx } + unit_gfx = { japanese_unit_gfx } + } + ELSE_IF tfe = { + coa_gfx = { chinese_group_coa_gfx } + building_gfx = { chinese_building_gfx indian_building_gfx } + clothing_gfx = { mongol_clothing_gfx } + unit_gfx = { mongol_unit_gfx } + } + ELSE_IF roa = { + coa_gfx = { chinese_group_coa_gfx } + building_gfx = { chinese_building_gfx } + clothing_gfx = { han_clothing_gfx chinese_clothing_gfx } + unit_gfx = { mongol_unit_gfx } + } + ELSE = { + coa_gfx = { chinese_group_coa_gfx } + building_gfx = { chinese_building_gfx } + clothing_gfx = { chinese_clothing_gfx } + unit_gfx = { chinese_unit_gfx } + } + } +} + +# Base game has them as Tai, but it seems that's not the best match, so setting them to Lolo to match Bashu, since they are theoretically related +tujia = { + INVALIDATED_BY = { + tfe = { tujia } + wtwsms = { tujia } + roa = { tujia } + } + + color = { 141 186 119 } + + ethos = ethos_bellicose + heritage = heritage_loloish + language = language_tujian + martial_custom = martial_custom_male_only + head_determination = head_determination_domain + + traditions = { + tradition_warrior_monks + tradition_loyal_soldiers + tradition_storytellers + tradition_highland_warriors + } + + name_list = name_list_tai + + coa_gfx = { chinese_group_coa_gfx } + building_gfx = { indian_building_gfx } + clothing_gfx = { southeast_asian_clothing_gfx } + unit_gfx = { mongol_unit_gfx } + house_coa_frame = house_frame_04 + + ethnicities = { + 10 = asian_han_chinese + } +} + +# Base game has them as Chinese, but it seems that's not the best match, so setting them to Lolo to match Bashu, since they are theoretically related +bai = { + INVALIDATED_BY = { + tfe = { bai } + wtwsms = { bai } + roa = { bai } + } + + color = { 0.9 0.4 0.1 } + + name_order_convention = dynasty_always_first + ethos = ethos_courtly + heritage = heritage_loloish + language = language_bai + martial_custom = martial_custom_male_only + head_determination = head_determination_domain + + traditions = { + tradition_hill_dwellers + tradition_xenophilic + tradition_ruling_caste + } + + dlc_tradition = { + trait = tradition_tgp_hydraulic_builders + requires_dlc_flag = all_under_heaven + } + + name_list = name_list_han + + coa_gfx = { chinese_group_coa_gfx } + building_gfx = { chinese_building_gfx } + clothing_gfx = { chinese_clothing_gfx } + unit_gfx = { chinese_unit_gfx } + house_coa_frame = house_china + + ethnicities = { + 10 = asian_han_chinese + } +} + +baiyue = { + INVALIDATED_BY = { + tfe = { baiyue } + wtwsms = { baiyue } + roa = { baiyue } + vanilla = { baiyue } + } + + color = { 13 59 128 } + + heritage = heritage_baiyue + language = language_baiyue + + ethos = ethos_communal + head_determination = head_determination_domain + martial_custom = martial_custom_equal + + traditions = { + tradition_maritime_mercantilism + tradition_fishermen + tradition_metal_craftsmanship + } + + dlc_tradition = { + trait = tradition_tgp_rice_cultivators + requires_dlc_flag = all_under_heaven + fallback = tradition_agrarian + } + + # Adding both Vietic and Chinese names to represent the somewhat mixed influence, but + name_list = name_list_vietnamese + name_list = name_list_han + + MOD_DEPENDENT = { + IF aep = { + ethnicities = { + 10 = east_asian_chinese_north + } + } + ELSE_IF roa = { + ethnicities = { + 2 = east_asian_han_1 + 2 = east_asian_han_2 + 2 = east_asian_han_3 + 2 = east_asian_han_4 + } + } + ELSE = { + ethnicities = { + 10 = asian_han_chinese + } + } + } + + MOD_DEPENDENT = { + IF aep = { + coa_gfx = { chinese_group_coa_gfx } + building_gfx = { chinese_building_gfx } + clothing_gfx = { chinese_clothing_gfx } + unit_gfx = { japanese_unit_gfx } + } + ELSE_IF tfe = { + coa_gfx = { chinese_group_coa_gfx } + building_gfx = { chinese_building_gfx indian_building_gfx } + clothing_gfx = { mongol_clothing_gfx } + unit_gfx = { mongol_unit_gfx } + } + ELSE_IF roa = { + coa_gfx = { chinese_group_coa_gfx } + building_gfx = { chinese_building_gfx } + clothing_gfx = { han_clothing_gfx chinese_clothing_gfx } + unit_gfx = { mongol_unit_gfx } + } + ELSE = { + coa_gfx = { chinese_group_coa_gfx } + building_gfx = { chinese_building_gfx } + clothing_gfx = { chinese_clothing_gfx } + unit_gfx = { chinese_unit_gfx } + } + } +} + +dongyi = { + INVALIDATED_BY = { + tfe = { dongyi } + wtwsms = { dongyi } + roa = { dongyi } + vanilla = { dongyi } + } + + color = { 193 230 46 } + + heritage = heritage_dongyi + language = language_dongyi + ethos = ethos_egalitarian + head_determination = head_determination_domain + + name_list = name_list_han # For now + martial_custom = martial_custom_equal + + traditions = { + tradition_maritime_mercantilism + tradition_adaptive_skirmishing + tradition_seafaring + } + + dlc_tradition = { + trait = tradition_sinophilic + requires_dlc_flag = all_under_heaven + } + + MOD_DEPENDENT = { + IF aep = { + ethnicities = { + 10 = east_asian_chinese_north + } + } + ELSE_IF roa = { + ethnicities = { + 2 = east_asian_han_1 + 2 = east_asian_han_2 + 2 = east_asian_han_3 + 2 = east_asian_han_4 + } + } + ELSE = { + ethnicities = { + 10 = asian_han_chinese + } + } + } + + MOD_DEPENDENT = { + IF aep = { + coa_gfx = { chinese_group_coa_gfx } + building_gfx = { chinese_building_gfx } + clothing_gfx = { chinese_clothing_gfx } + unit_gfx = { japanese_unit_gfx } + } + ELSE_IF tfe = { + coa_gfx = { chinese_group_coa_gfx } + building_gfx = { chinese_building_gfx indian_building_gfx } + clothing_gfx = { mongol_clothing_gfx } + unit_gfx = { mongol_unit_gfx } + } + ELSE_IF roa = { + coa_gfx = { chinese_group_coa_gfx } + building_gfx = { chinese_building_gfx } + clothing_gfx = { han_clothing_gfx chinese_clothing_gfx } + unit_gfx = { mongol_unit_gfx } + } + ELSE = { + coa_gfx = { chinese_group_coa_gfx } + building_gfx = { chinese_building_gfx } + clothing_gfx = { chinese_clothing_gfx } + unit_gfx = { chinese_unit_gfx } + } + } +} + +# Base game has them as Chinese, but Lolo would be a better fit +yi = { + INVALIDATED_BY = { + aep = { wuman } # Localized as Nuosu in game, another name for the Yi + tfe = { yi } + wtwsms = { yi } + roa = { yi } + } + + color = { 0.9 0.9 0.9 } + + name_order_convention = dynasty_always_first + ethos = ethos_stoic + heritage = heritage_loloish + language = language_yi + martial_custom = martial_custom_male_only + head_determination = head_determination_domain + + traditions = { + tradition_hill_dwellers + tradition_highland_warriors + } + + dlc_tradition = { + trait = tradition_fp2_malleable_subjects + requires_dlc_flag = the_fate_of_iberia + fallback = tradition_xenophilic + } + + name_list = name_list_han + + coa_gfx = { chinese_group_coa_gfx } + building_gfx = { chinese_building_gfx } + clothing_gfx = { chinese_clothing_gfx } + unit_gfx = { chinese_unit_gfx } + house_coa_frame = house_china + + ethnicities = { + 10 = asian_han_chinese + } } \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/configurables/converter_faiths.txt b/ImperatorToCK3/Data_Files/configurables/converter_faiths.txt index cdc79878b..46c6ca112 100644 --- a/ImperatorToCK3/Data_Files/configurables/converter_faiths.txt +++ b/ImperatorToCK3/Data_Files/configurables/converter_faiths.txt @@ -214,6 +214,7 @@ scythian_religion = { pagan_roots = yes #Main Group + doctrine = doctrine_polytheist doctrine = doctrine_no_head doctrine = doctrine_gender_male_dominated doctrine = doctrine_pluralism_pluralistic @@ -453,6 +454,7 @@ arabic_religion = { pagan_roots = yes #Main Group + doctrine = doctrine_polytheist doctrine = doctrine_no_head doctrine = doctrine_gender_male_dominated doctrine = doctrine_pluralism_pluralistic @@ -694,6 +696,7 @@ burmic_religion = { # Folk religions of Burmese peoples pagan_roots = yes #Main Group + doctrine = doctrine_polytheist doctrine = doctrine_no_head doctrine = doctrine_gender_equal doctrine = doctrine_pluralism_pluralistic @@ -1687,6 +1690,7 @@ dinka_religion = { pagan_roots = yes #Main Group + doctrine = doctrine_polytheist doctrine = doctrine_no_head doctrine = doctrine_gender_male_dominated doctrine = doctrine_pluralism_righteous @@ -1927,6 +1931,7 @@ anatolian_religion = { pagan_roots = yes #Main Group + doctrine = doctrine_polytheist doctrine = doctrine_no_head doctrine = doctrine_gender_male_dominated doctrine = doctrine_pluralism_pluralistic @@ -2168,6 +2173,7 @@ armenian_religion = { pagan_roots = yes #Main Group + doctrine = doctrine_polytheist doctrine = doctrine_no_head doctrine = doctrine_gender_male_dominated doctrine = doctrine_pluralism_pluralistic @@ -2415,6 +2421,7 @@ canaanite_religion = { } #Main Group + doctrine = doctrine_polytheist doctrine = doctrine_no_head doctrine = doctrine_gender_male_dominated doctrine = doctrine_pluralism_pluralistic @@ -2655,6 +2662,7 @@ caucasian_religion = { pagan_roots = yes #Main Group + doctrine = doctrine_polytheist doctrine = doctrine_no_head doctrine = doctrine_gender_male_dominated doctrine = doctrine_pluralism_pluralistic @@ -2901,6 +2909,7 @@ celtic_religion = { } #Main Group + doctrine = doctrine_polytheist doctrine = doctrine_no_head doctrine = doctrine_gender_male_dominated doctrine = doctrine_pluralism_pluralistic @@ -3836,6 +3845,7 @@ iberic_religion = { pagan_roots = yes #Main Group + doctrine = doctrine_polytheist doctrine = doctrine_no_head doctrine = doctrine_gender_male_dominated doctrine = doctrine_pluralism_pluralistic @@ -4072,6 +4082,8 @@ ajivika_religion = { # credits to Izn from Invictus team for listing the doctrin family = rf_eastern graphical_faith = dharmic_gfx doctrine = eastern_hostility_doctrine + + doctrine = doctrine_polytheist # Pilgrimage doctrine = doctrine_pilgrimage_encouraged @@ -4411,6 +4423,7 @@ mesopotamian_religion = { pagan_roots = yes #Main Group + doctrine = doctrine_polytheist doctrine = doctrine_no_head doctrine = doctrine_gender_male_dominated doctrine = doctrine_pluralism_pluralistic @@ -4651,6 +4664,7 @@ paleo_balkan_religion = { pagan_roots = yes #Main Group + doctrine = doctrine_polytheist doctrine = doctrine_no_head doctrine = doctrine_gender_male_dominated doctrine = doctrine_pluralism_pluralistic @@ -5010,6 +5024,7 @@ hurrian_religion_group = { doctrine = pagan_hostility_doctrine #Main Group + doctrine = doctrine_polytheist doctrine = doctrine_no_head doctrine = doctrine_gender_male_dominated doctrine = doctrine_pluralism_pluralistic @@ -5245,6 +5260,7 @@ hattian_religion = { # From Bronze Age Reborn mod doctrine = pagan_hostility_doctrine #Main Group + doctrine = doctrine_polytheist doctrine = doctrine_no_head # IRToCK3: changed from doctrine_spiritual_head because that way we don't need a HoF landed title doctrine = doctrine_gender_male_dominated doctrine = doctrine_pluralism_pluralistic @@ -5515,6 +5531,7 @@ elamite_religion = { # from Bronze Age Reborn mod doctrine = pagan_hostility_doctrine #Main Group + doctrine = doctrine_polytheist doctrine = doctrine_spiritual_head doctrine = doctrine_gender_male_dominated doctrine = doctrine_pluralism_pluralistic @@ -5767,3 +5784,535 @@ elamite_religion = { # from Bronze Age Reborn mod } } } + +chinese_religion = { + family = rf_sinitic + doctrine = eastern_hostility_doctrine + graphical_faith = dharmic_gfx + + #Main Group + doctrine = doctrine_polytheist + doctrine = doctrine_no_head + doctrine = doctrine_gender_male_dominated + doctrine = doctrine_pluralism_pluralistic + doctrine = doctrine_theocracy_temporal + + #Marriage + doctrine = doctrine_concubines + doctrine = doctrine_divorce_allowed + doctrine = doctrine_bastardry_none + doctrine = doctrine_consanguinity_cousins + + #Crimes + doctrine = doctrine_homosexuality_accepted + doctrine = doctrine_adultery_men_shunned + doctrine = doctrine_adultery_women_shunned + doctrine = doctrine_kinslaying_any_dynasty_member_crime + doctrine = doctrine_deviancy_shunned + doctrine = doctrine_witchcraft_accepted + + #Clerical Functions + doctrine = doctrine_clerical_function_alms_and_pacification + doctrine = doctrine_clerical_gender_male_only + doctrine = doctrine_clerical_marriage_allowed + doctrine = doctrine_clerical_succession_temporal_appointment + + #Special Doctrine for Eastern Syncretism + doctrine = special_doctrine_is_eastern_faith + doctrine = special_doctrine_immaterial_harmony + + #Allow pilgrimages + doctrine = doctrine_pilgrimage_local_rites + + #Funeral tradition + doctrine = doctrine_funeral_stoic + + #Coronation tradition + doctrine = doctrine_no_anointment + + traits = { + virtues = { + compassionate + content + humble + } + sins = { + sadistic + ambitious + arrogant + } + } + + custom_faith_icons = { + custom_faith_1 custom_faith_2 custom_faith_3 custom_faith_4 custom_faith_5 custom_faith_6 custom_faith_7 custom_faith_8 custom_faith_9 custom_faith_10 dualism_custom_1 zoroastrian_custom_1 zoroastrian_custom_2 buddhism_custom_1 buddhism_custom_2 buddhism_custom_3 buddhism_custom_4 taoism_custom_1 yazidi_custom_1 sunni_custom_2 sunni_custom_3 sunni_custom_4 muhakkima_1 muhakkima_2 muhakkima_4 muhakkima_5 muhakkima_6 judaism_custom_1 custom_faith_fp1_fenrir custom_faith_fp1_irminsul custom_faith_fp1_jormungandr custom_faith_fp1_odins_ravens custom_faith_fp1_runestone_moon custom_faith_fp1_thors_hammer custom_faith_fp1_valknut custom_faith_fp1_yggdrasil custom_faith_boromian_circles custom_faith_lotus custom_faith_aum_tibetan custom_faith_pentagram custom_faith_pentagram_inverted custom_faith_burning_bush custom_faith_allah custom_faith_gankyil custom_faith_eye_of_providence custom_faith_dove custom_faith_ichthys custom_faith_lamb custom_faith_black_sheep custom_faith_ankh custom_faith_chi_rho custom_faith_hamsa custom_faith_cool_s custom_faith_magatama custom_faith_soto custom_faith_benzhuism + } + + # For now just using Taoism localization + localization = { + HighGodName = taoism_high_god_name + HighGodName2 = taoism_high_god_name_2 + HighGodNamePossessive = taoism_high_god_name_possessive + HighGodNameSheHe = CHARACTER_SHEHE_IT + HighGodHerselfHimself = CHARACTER_ITSELF + HighGodHerHis = CHARACTER_HERHIS_ITS + HighGodNameAlternate = taoism_high_god_name_alternate + HighGodNameAlternatePossessive = taoism_high_god_name_alternate_possessive + + #Creator + CreatorName = taoism_creator_god_name + CreatorNamePossessive = taoism_creator_god_name_possessive + CreatorSheHe = CHARACTER_SHEHE_HE + CreatorHerHis = CHARACTER_HERHIS_HIS + CreatorHerHim = CHARACTER_HERHIM_HIM + + #HealthGod + HealthGodName = taoism_health_god_name + HealthGodNamePossessive = taoism_health_god_name_possessive + HealthGodSheHe = CHARACTER_SHEHE_HE + HealthGodHerHis = CHARACTER_HERHIS_HIS + HealthGodHerHim = CHARACTER_HERHIM_HIM + + #FertilityGod + FertilityGodName = taoism_fertility_god_name + FertilityGodNamePossessive = taoism_fertility_god_name_possessive + FertilityGodSheHe = CHARACTER_SHEHE_HE + FertilityGodHerHis = CHARACTER_HERHIS_HIS + FertilityGodHerHim = CHARACTER_HERHIM_HIM + + #WealthGod + WealthGodName = taoism_wealth_god_name + WealthGodNamePossessive = taoism_wealth_god_name_possessive + WealthGodSheHe = CHARACTER_SHEHE_HE + WealthGodHerHis = CHARACTER_HERHIS_HIS + WealthGodHerHim = CHARACTER_HERHIM_HIM + + #HouseholdGod + HouseholdGodName = taoism_household_god_name + HouseholdGodNamePossessive = taoism_household_god_name_possessive + HouseholdGodSheHe = CHARACTER_SHEHE_HE + HouseholdGodHerHis = CHARACTER_HERHIS_HIS + HouseholdGodHerHim = CHARACTER_HERHIM_HIM + + #FateGod + FateGodName = taoism_fate_god_name + FateGodNamePossessive = taoism_fate_god_name_possessive + FateGodSheHe = CHARACTER_SHEHE_IT + FateGodHerHis = CHARACTER_HERHIS_ITS + FateGodHerHim = CHARACTER_HERHIM_IT + + #KnowledgeGod + KnowledgeGodName = taoism_knowledge_god_name + KnowledgeGodNamePossessive = taoism_knowledge_god_name_possessive + KnowledgeGodSheHe = CHARACTER_SHEHE_HE + KnowledgeGodHerHis = CHARACTER_HERHIS_HIS + KnowledgeGodHerHim = CHARACTER_HERHIM_HIM + + #WarGod + WarGodName = taoism_war_god_name + WarGodNamePossessive = taoism_war_god_name_possessive + WarGodSheHe = CHARACTER_SHEHE_HE + WarGodHerHis = CHARACTER_HERHIS_HIS + WarGodHerHim = CHARACTER_HERHIM_HIM + + #TricksterGod + TricksterGodName = taoism_trickster_god_name + TricksterGodNamePossessive = taoism_trickster_god_name_possessive + TricksterGodSheHe = CHARACTER_SHEHE_SHE + TricksterGodHerHis = CHARACTER_HERHIS_HER + TricksterGodHerHim = CHARACTER_HERHIM_HER + + #NightGod + NightGodName = taoism_night_god_name + NightGodNamePossessive = taoism_night_god_name_possessive + NightGodSheHe = CHARACTER_SHEHE_SHE + NightGodHerHis = CHARACTER_HERHIS_HER + NightGodHerHim = CHARACTER_HERHIM_HER + + #WaterGod + WaterGodName = taoism_water_god_name + WaterGodNamePossessive = taoism_water_god_name_possessive + WaterGodSheHe = CHARACTER_SHEHE_HE + WaterGodHerHis = CHARACTER_HERHIS_HIS + WaterGodHerHim = CHARACTER_HERHIM_HIM + + PantheonTerm = religion_the_gods + PantheonTerm2 = religion_the_gods_2 + PantheonTerm3 = religion_the_gods_3 + PantheonTermHasHave = pantheon_term_have + GoodGodNames = { + taoism_good_god_name_three_pure_ones + taoism_wealth_god_name + taoism_health_god_name + taoism_knowledge_god_name + taoism_war_god_name + taoism_night_god_name + taoism_water_god_name + } + DevilName = taoism_devil_name + DevilNamePossessive = taoism_devil_name_possessive + DevilSheHe = CHARACTER_SHEHE_IT + DevilHerHis = CHARACTER_HERHIS_ITS + DevilHerselfHimself = CHARACTER_ITSELF + EvilGodNames = { taoism_devil_name } + HouseOfWorship = taoism_house_of_worship + HouseOfWorship2 = taoism_house_of_worship_2 + HouseOfWorship3 = taoism_house_of_worship_3 + HouseOfWorshipPlural = taoism_house_of_worship_plural + ReligiousSymbol = taoism_religious_symbol + ReligiousSymbol2 = taoism_religious_symbol_2 + ReligiousSymbol3 = taoism_religious_symbol_3 + ReligiousText = taoism_religious_text + ReligiousText2 = taoism_religious_text_2 + ReligiousText3 = taoism_religious_text_3 + ReligiousHeadName = taoism_religious_head_title + ReligiousHeadTitleName = taoism_religious_head_title_name + DevoteeMale = taoism_devotee_male + DevoteeMalePlural = taoism_devotee_male_plural + DevoteeFemale = taoism_devotee_female + DevoteeFemalePlural = taoism_devotee_female_plural + DevoteeNeuter = taoism_devotee_neuter + DevoteeNeuterPlural = taoism_devotee_neuter_plural + PriestMale = taoism_priest_male + PriestMalePlural = taoism_priest_male_plural + PriestFemale = taoism_priest_female + PriestFemalePlural = taoism_priest_female_plural + PriestNeuter = taoism_priest_neuter + PriestNeuterPlural = taoism_priest_neuter_plural + AltPriestTermPlural = taoism_alternate_priest_term_plural + BishopMale = taoism_priest_male + BishopMalePlural = taoism_priest_male_plural + BishopFemale = taoism_priest_female + BishopFemalePlural = taoism_priest_female_plural + BishopNeuter = taoism_priest_neuter + BishopNeuterPlural = taoism_priest_neuter_plural + + DivineRealm = taoism_divine_realm + DivineRealm2 = taoism_divine_realm_2 + DivineRealm3 = taoism_divine_realm_3 + PositiveAfterLife = taoism_positive_afterlife + PositiveAfterLife2 = taoism_positive_afterlife_2 + PositiveAfterLife3 = taoism_positive_afterlife_3 + NegativeAfterLife = taoism_negative_afterlife + NegativeAfterLife2 = taoism_negative_afterlife_2 + NegativeAfterLife3 = taoism_negative_afterlife_3 + DeathDeityName = paganism_death_deity_name + DeathDeityNamePossessive = paganism_death_deity_name_possessive + DeathDeitySheHe = CHARACTER_SHEHE_IT + DeathDeityHerHis = CHARACTER_HERSHIS_ITS + DeathDeityHerHim = CHARACTER_HERHIM_IT + WitchGodName = witchgodname_taoism_daode_tianzun + WitchGodNamePossessive = witchgodname_taoism_daode_tianzun_possessive + WitchGodHerHis = CHARACTER_HERHIS_HER + WitchGodSheHe = CHARACTER_SHEHE_SHE + WitchGodHerHim = CHARACTER_HERHIM_HER + WitchGodMistressMaster = mistress + WitchGodMotherFather = mother + + GHWName = ghw_purification + GHWNamePlural = ghw_purifications + } + + faiths = { + shenic = { + INVALIDATED_BY = { shendao shenic } + + color = { 255 163 26} + icon = shenic + reformed_icon = shenic + + holy_site = chang_an + holy_site = mount_tai + holy_site = mount_wudang + holy_site = qufu + holy_site = bianliang + + doctrine = unreformed_faith_doctrine + + #Clerical Functions + doctrine = doctrine_clerical_function_taxation + + doctrine = tenet_ancestor_worship + doctrine = tenet_inner_journey + doctrine_selection_pair = { + requires_dlc_flag = all_under_heaven + doctrine = tenet_harmonious_society + fallback_doctrine = tenet_adaptive + } + } + } +} + +confucianism_religion = { + # Religion's attributes not needed, confucianism_religion exists in vanilla CK3. + + faiths = { + mohism = { + INVALIDATED_BY = { mohism } + + color = { 207 141 171 } + icon = mohism + reformed_icon = mohism + + holy_site = bianliang + holy_site = qufu + holy_site = luoyang + holy_site = mount_longhu + holy_site = chang_an + + doctrine = tenet_pacifism + doctrine = tenet_vows_of_poverty + doctrine = tenet_communal_possessions + } + } +} + +baiyue_religion = { + family = rf_sinitic + doctrine = pagan_hostility_doctrine + graphical_faith = dharmic_gfx + + #Main Group + doctrine = doctrine_polytheist + doctrine = doctrine_no_head + doctrine = doctrine_gender_male_dominated + doctrine = doctrine_pluralism_pluralistic + doctrine = doctrine_theocracy_temporal + + #Marriage + doctrine = doctrine_concubines + doctrine = doctrine_divorce_allowed + doctrine = doctrine_bastardry_none + doctrine = doctrine_consanguinity_cousins + + #Crimes + doctrine = doctrine_homosexuality_accepted + doctrine = doctrine_adultery_men_shunned + doctrine = doctrine_adultery_women_shunned + doctrine = doctrine_kinslaying_any_dynasty_member_crime + doctrine = doctrine_deviancy_shunned + doctrine = doctrine_witchcraft_accepted + + #Clerical Functions + doctrine = doctrine_clerical_function_alms_and_pacification + doctrine = doctrine_clerical_gender_male_only + doctrine = doctrine_clerical_marriage_allowed + doctrine = doctrine_clerical_succession_temporal_appointment + + #Special Doctrine for Eastern Syncretism + doctrine = special_doctrine_is_eastern_faith + doctrine = special_doctrine_immaterial_harmony + + #Allow pilgrimages + doctrine = doctrine_pilgrimage_local_rites + + #Funeral tradition + doctrine = doctrine_funeral_stoic + + #Coronation tradition + doctrine = doctrine_no_anointment + + traits = { + virtues = { + compassionate + content + humble + } + sins = { + sadistic + ambitious + arrogant + } + } + + custom_faith_icons = { + custom_faith_1 custom_faith_2 custom_faith_3 custom_faith_4 custom_faith_5 custom_faith_6 custom_faith_7 custom_faith_8 custom_faith_9 custom_faith_10 dualism_custom_1 zoroastrian_custom_1 zoroastrian_custom_2 buddhism_custom_1 buddhism_custom_2 buddhism_custom_3 buddhism_custom_4 taoism_custom_1 yazidi_custom_1 sunni_custom_2 sunni_custom_3 sunni_custom_4 muhakkima_1 muhakkima_2 muhakkima_4 muhakkima_5 muhakkima_6 judaism_custom_1 custom_faith_fp1_fenrir custom_faith_fp1_irminsul custom_faith_fp1_jormungandr custom_faith_fp1_odins_ravens custom_faith_fp1_runestone_moon custom_faith_fp1_thors_hammer custom_faith_fp1_valknut custom_faith_fp1_yggdrasil custom_faith_boromian_circles custom_faith_lotus custom_faith_aum_tibetan custom_faith_pentagram custom_faith_pentagram_inverted custom_faith_burning_bush custom_faith_allah custom_faith_gankyil custom_faith_eye_of_providence custom_faith_dove custom_faith_ichthys custom_faith_lamb custom_faith_black_sheep custom_faith_ankh custom_faith_chi_rho custom_faith_hamsa custom_faith_cool_s custom_faith_magatama custom_faith_soto custom_faith_benzhuism + } + + # For now just using Taoism localization + localization = { + HighGodName = taoism_high_god_name + HighGodName2 = taoism_high_god_name_2 + HighGodNamePossessive = taoism_high_god_name_possessive + HighGodNameSheHe = CHARACTER_SHEHE_IT + HighGodHerselfHimself = CHARACTER_ITSELF + HighGodHerHis = CHARACTER_HERHIS_ITS + HighGodNameAlternate = taoism_high_god_name_alternate + HighGodNameAlternatePossessive = taoism_high_god_name_alternate_possessive + + #Creator + CreatorName = taoism_creator_god_name + CreatorNamePossessive = taoism_creator_god_name_possessive + CreatorSheHe = CHARACTER_SHEHE_HE + CreatorHerHis = CHARACTER_HERHIS_HIS + CreatorHerHim = CHARACTER_HERHIM_HIM + + #HealthGod + HealthGodName = taoism_health_god_name + HealthGodNamePossessive = taoism_health_god_name_possessive + HealthGodSheHe = CHARACTER_SHEHE_HE + HealthGodHerHis = CHARACTER_HERHIS_HIS + HealthGodHerHim = CHARACTER_HERHIM_HIM + + #FertilityGod + FertilityGodName = taoism_fertility_god_name + FertilityGodNamePossessive = taoism_fertility_god_name_possessive + FertilityGodSheHe = CHARACTER_SHEHE_HE + FertilityGodHerHis = CHARACTER_HERHIS_HIS + FertilityGodHerHim = CHARACTER_HERHIM_HIM + + #WealthGod + WealthGodName = taoism_wealth_god_name + WealthGodNamePossessive = taoism_wealth_god_name_possessive + WealthGodSheHe = CHARACTER_SHEHE_HE + WealthGodHerHis = CHARACTER_HERHIS_HIS + WealthGodHerHim = CHARACTER_HERHIM_HIM + + #HouseholdGod + HouseholdGodName = taoism_household_god_name + HouseholdGodNamePossessive = taoism_household_god_name_possessive + HouseholdGodSheHe = CHARACTER_SHEHE_HE + HouseholdGodHerHis = CHARACTER_HERHIS_HIS + HouseholdGodHerHim = CHARACTER_HERHIM_HIM + + #FateGod + FateGodName = taoism_fate_god_name + FateGodNamePossessive = taoism_fate_god_name_possessive + FateGodSheHe = CHARACTER_SHEHE_IT + FateGodHerHis = CHARACTER_HERHIS_ITS + FateGodHerHim = CHARACTER_HERHIM_IT + + #KnowledgeGod + KnowledgeGodName = taoism_knowledge_god_name + KnowledgeGodNamePossessive = taoism_knowledge_god_name_possessive + KnowledgeGodSheHe = CHARACTER_SHEHE_HE + KnowledgeGodHerHis = CHARACTER_HERHIS_HIS + KnowledgeGodHerHim = CHARACTER_HERHIM_HIM + + #WarGod + WarGodName = taoism_war_god_name + WarGodNamePossessive = taoism_war_god_name_possessive + WarGodSheHe = CHARACTER_SHEHE_HE + WarGodHerHis = CHARACTER_HERHIS_HIS + WarGodHerHim = CHARACTER_HERHIM_HIM + + #TricksterGod + TricksterGodName = taoism_trickster_god_name + TricksterGodNamePossessive = taoism_trickster_god_name_possessive + TricksterGodSheHe = CHARACTER_SHEHE_SHE + TricksterGodHerHis = CHARACTER_HERHIS_HER + TricksterGodHerHim = CHARACTER_HERHIM_HER + + #NightGod + NightGodName = taoism_night_god_name + NightGodNamePossessive = taoism_night_god_name_possessive + NightGodSheHe = CHARACTER_SHEHE_SHE + NightGodHerHis = CHARACTER_HERHIS_HER + NightGodHerHim = CHARACTER_HERHIM_HER + + #WaterGod + WaterGodName = taoism_water_god_name + WaterGodNamePossessive = taoism_water_god_name_possessive + WaterGodSheHe = CHARACTER_SHEHE_HE + WaterGodHerHis = CHARACTER_HERHIS_HIS + WaterGodHerHim = CHARACTER_HERHIM_HIM + + PantheonTerm = religion_the_gods + PantheonTerm2 = religion_the_gods_2 + PantheonTerm3 = religion_the_gods_3 + PantheonTermHasHave = pantheon_term_have + GoodGodNames = { + taoism_good_god_name_three_pure_ones + taoism_wealth_god_name + taoism_health_god_name + taoism_knowledge_god_name + taoism_war_god_name + taoism_night_god_name + taoism_water_god_name + } + DevilName = taoism_devil_name + DevilNamePossessive = taoism_devil_name_possessive + DevilSheHe = CHARACTER_SHEHE_IT + DevilHerHis = CHARACTER_HERHIS_ITS + DevilHerselfHimself = CHARACTER_ITSELF + EvilGodNames = { taoism_devil_name } + HouseOfWorship = taoism_house_of_worship + HouseOfWorship2 = taoism_house_of_worship_2 + HouseOfWorship3 = taoism_house_of_worship_3 + HouseOfWorshipPlural = taoism_house_of_worship_plural + ReligiousSymbol = taoism_religious_symbol + ReligiousSymbol2 = taoism_religious_symbol_2 + ReligiousSymbol3 = taoism_religious_symbol_3 + ReligiousText = taoism_religious_text + ReligiousText2 = taoism_religious_text_2 + ReligiousText3 = taoism_religious_text_3 + ReligiousHeadName = taoism_religious_head_title + ReligiousHeadTitleName = taoism_religious_head_title_name + DevoteeMale = taoism_devotee_male + DevoteeMalePlural = taoism_devotee_male_plural + DevoteeFemale = taoism_devotee_female + DevoteeFemalePlural = taoism_devotee_female_plural + DevoteeNeuter = taoism_devotee_neuter + DevoteeNeuterPlural = taoism_devotee_neuter_plural + PriestMale = taoism_priest_male + PriestMalePlural = taoism_priest_male_plural + PriestFemale = taoism_priest_female + PriestFemalePlural = taoism_priest_female_plural + PriestNeuter = taoism_priest_neuter + PriestNeuterPlural = taoism_priest_neuter_plural + AltPriestTermPlural = taoism_alternate_priest_term_plural + BishopMale = taoism_priest_male + BishopMalePlural = taoism_priest_male_plural + BishopFemale = taoism_priest_female + BishopFemalePlural = taoism_priest_female_plural + BishopNeuter = taoism_priest_neuter + BishopNeuterPlural = taoism_priest_neuter_plural + + DivineRealm = taoism_divine_realm + DivineRealm2 = taoism_divine_realm_2 + DivineRealm3 = taoism_divine_realm_3 + PositiveAfterLife = taoism_positive_afterlife + PositiveAfterLife2 = taoism_positive_afterlife_2 + PositiveAfterLife3 = taoism_positive_afterlife_3 + NegativeAfterLife = taoism_negative_afterlife + NegativeAfterLife2 = taoism_negative_afterlife_2 + NegativeAfterLife3 = taoism_negative_afterlife_3 + DeathDeityName = paganism_death_deity_name + DeathDeityNamePossessive = paganism_death_deity_name_possessive + DeathDeitySheHe = CHARACTER_SHEHE_IT + DeathDeityHerHis = CHARACTER_HERSHIS_ITS + DeathDeityHerHim = CHARACTER_HERHIM_IT + WitchGodName = witchgodname_taoism_daode_tianzun + WitchGodNamePossessive = witchgodname_taoism_daode_tianzun_possessive + WitchGodHerHis = CHARACTER_HERHIS_HER + WitchGodSheHe = CHARACTER_SHEHE_SHE + WitchGodHerHim = CHARACTER_HERHIM_HER + WitchGodMistressMaster = mistress + WitchGodMotherFather = mother + + GHWName = ghw_purification + GHWNamePlural = ghw_purifications + } + + faiths = { + baiyue_faith = { + INVALIDATED_BY = { baiyue_faith } + + color = { 13 59 127 } + icon = baiyue_faith + reformed_icon = baiyue_faith + + # Hard to tell what would actually be good sites, so just chose an assortment of existing Holy Sites around south China + holy_site = quanzhou + holy_site = yangtze + holy_site = daozhou + holy_site = nanning + holy_site = hangzhou + + doctrine = unreformed_faith_doctrine + + doctrine = tenet_ancestor_worship + doctrine = tenet_adorcism + doctrine = tenet_sanctity_of_nature + } + } +} \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/configurables/country_rank_map.txt b/ImperatorToCK3/Data_Files/configurables/country_rank_map.txt index f53049a93..5146212ef 100644 --- a/ImperatorToCK3/Data_Files/configurables/country_rank_map.txt +++ b/ImperatorToCK3/Data_Files/configurables/country_rank_map.txt @@ -1,10 +1,11 @@ -# Some words specific to empires, kingdoms and duchies override the mappings based on rank. +# Some words specific to hegemonies, empires, kingdoms and duchies found in country names can override the rank-based mappings. +hegemony_keywords = { } empire_keywords = { "empire" "imperium" } kingdom_keywords = { "kingdom" "regnum" } duchy_keywords = { "duchy" "principality" "dukedom" "ducatus" } # Every Imperator country rank should be mapped to CK3 title rank. -# d - duchy, k - kingdom, e - empire +# d - duchy, k - kingdom, e - empire, h - hegemony # Mapping to county and barony level is not supported. # A mapping can contain an optional required_territories field. diff --git a/ImperatorToCK3/Data_Files/configurables/cultural_pillars/IRToCK3_heritage.txt b/ImperatorToCK3/Data_Files/configurables/cultural_pillars/IRToCK3_heritage.txt index 6bed7a8d7..aa3d996bb 100644 --- a/ImperatorToCK3/Data_Files/configurables/cultural_pillars/IRToCK3_heritage.txt +++ b/ImperatorToCK3/Data_Files/configurables/cultural_pillars/IRToCK3_heritage.txt @@ -683,3 +683,54 @@ heritage_occitan = { } } } + +heritage_loloish = { # Will worry about CCU parameters once relevant mods are updated + REPLACED_BY = { + tfe = { heritage_loloish } + wtwsms = { heritage_loloish } + roa = { heritage_loloish } + vanilla = { heritage_loloish } + } + + type = heritage + is_shown = { + heritage_is_shown_trigger = { + HERITAGE = heritage_loloish + } + } + audio_parameter = sea +} + +heritage_baiyue = { # Will worry about CCU parameters once relevant mods are updated + REPLACED_BY = { + tfe = { heritage_baiyue } + wtwsms = { heritage_baiyue } + roa = { heritage_baiyue } + vanilla = { heritage_baiyue } + } + + type = heritage + is_shown = { + heritage_is_shown_trigger = { + HERITAGE = heritage_baiyue + } + } + audio_parameter = sea +} + +heritage_dongyi = { # Will worry about CCU parameters once relevant mods are updated + REPLACED_BY = { + tfe = { heritage_dongyi } + wtwsms = { heritage_dongyi } + roa = { heritage_dongyi } + vanilla = { heritage_dongyi } + } + + type = heritage + is_shown = { + heritage_is_shown_trigger = { + HERITAGE = heritage_dongyi + } + } + audio_parameter = sea +} \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/configurables/cultural_pillars/IRToCK3_language.txt b/ImperatorToCK3/Data_Files/configurables/cultural_pillars/IRToCK3_language.txt index 9746bf7d3..d7d152091 100644 --- a/ImperatorToCK3/Data_Files/configurables/cultural_pillars/IRToCK3_language.txt +++ b/ImperatorToCK3/Data_Files/configurables/cultural_pillars/IRToCK3_language.txt @@ -2978,3 +2978,153 @@ language_kordofanian = { color = { 96 55 48 } } + +language_bashu = { # Will worry about CCU parameters once relevant mods are updated + REPLACED_BY = { + tfe = { language_bashu } + wtwsms = { language_bashu } + roa = { language_bashu } + vanilla = { language_bashu } + } + + type = language + is_shown = { + language_is_shown_trigger = { + LANGUAGE = language_bashu + } + } + ai_will_do = { + value = 10 + if = { + limit = { has_cultural_pillar = language_bashu } + multiply = 10 + } + } + + color = { 107 153 126 } +} + +language_tujian = { # Will worry about CCU parameters once relevant mods are updated + REPLACED_BY = { + tfe = { language_tujian } + wtwsms = { language_tujian } + roa = { language_tujian } + vanilla = { language_tujian } + } + + type = language + is_shown = { + language_is_shown_trigger = { + LANGUAGE = language_tujian + } + } + ai_will_do = { + value = 10 + if = { + limit = { has_cultural_pillar = language_tujian } + multiply = 10 + } + } + + color = { 141 186 119 } +} + +language_bai = { # Will worry about CCU parameters once relevant mods are updated + REPLACED_BY = { + tfe = { language_bai } + wtwsms = { language_bai } + roa = { language_bai } + vanilla = { language_bai } + } + + type = language + is_shown = { + language_is_shown_trigger = { + LANGUAGE = language_bai + } + } + ai_will_do = { + value = 10 + if = { + limit = { has_cultural_pillar = language_bai } + multiply = 10 + } + } + + color = { 0.9 0.4 0.1 } +} + +language_baiyue = { # Will worry about CCU parameters once relevant mods are updated + REPLACED_BY = { + tfe = { language_baiyue } + wtwsms = { language_baiyue } + roa = { language_baiyue } + vanilla = { language_baiyue } + } + + type = language + is_shown = { + language_is_shown_trigger = { + LANGUAGE = language_baiyue + } + } + ai_will_do = { + value = 10 + if = { + limit = { has_cultural_pillar = language_baiyue } + multiply = 10 + } + } + + color = { 13 59 128 } +} + +language_dongyi = { # Will worry about CCU parameters once relevant mods are updated + REPLACED_BY = { + tfe = { language_dongyi } + wtwsms = { language_dongyi } + roa = { language_dongyi } + vanilla = { language_dongyi } + } + + type = language + is_shown = { + language_is_shown_trigger = { + LANGUAGE = language_dongyi + } + } + ai_will_do = { + value = 10 + if = { + limit = { has_cultural_pillar = language_dongyi } + multiply = 10 + } + } + + color = { 193 230 46 } +} + +language_yi = { # Will worry about CCU parameters once relevant mods are updated + REPLACED_BY = { + tfe = { language_yi } + wtwsms = { language_yi } + roa = { language_yi } + vanilla = { language_yi } + } + + type = language + is_shown = { + language_is_shown_trigger = { + LANGUAGE = language_yi + } + } + ai_will_do = { + value = 10 + if = { + limit = { has_cultural_pillar = language_yi } + multiply = 10 + } + } + + color = { 0.9 0.9 0.9 } +} \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/configurables/culture_map.txt b/ImperatorToCK3/Data_Files/configurables/culture_map.txt index 5fbfc2fd6..3a1b183cc 100644 --- a/ImperatorToCK3/Data_Files/configurables/culture_map.txt +++ b/ImperatorToCK3/Data_Files/configurables/culture_map.txt @@ -96,16 +96,6 @@ ## India Imperator Regions @india_regions = "irRegion = gandhara_region irRegion = maru_region irRegion = madhyadesa_region irRegion = pracya_region irRegion = avanti_region irRegion = vindhyaprstha_region irRegion = aparanta_region irRegion = karnata_region irRegion = dravida_region" -# Imperator has Formosa all under one culture, but CK3 has every county be its own culture. For some variety, but also to make the cultures a little consolidated, I will split up the cultures across Formosa into 3 different cultures, then another one as fallback in case the culture ends up somewhere else ~~tanner918 -## North Formosa Imperator -@north_formosa = "irProvince = 10825 irProvince = 10826 irProvince = 10835 irProvince = 10836" - -## Middle Formosa Imperator -@middle_formosa = "irProvince = 10827 irProvince = 10828 irProvince = 10829 irProvince = 10837 irProvince = 10838 irProvince = 10834" - -## South Formosa Imperator -@south_formosa = "irProvince = 10839 irProvince = 10830 irProvince = 10833 irProvince = 10832 irProvince = 10831" - ## Europe Imperator Regions @europe_regions = "@culture_splitting_region_K @culture_splitting_region_H @culture_splitting_region_J @culture_splitting_region_R @culture_splitting_region_Q @culture_splitting_region_S @culture_splitting_region_P @culture_splitting_region_I @culture_splitting_region_G @culture_splitting_region_D @culture_splitting_region_C @culture_splitting_region_B @culture_splitting_region_A @culture_splitting_region_E @culture_splitting_region_F @culture_splitting_region_T @culture_splitting_region_U @culture_splitting_region_X @culture_splitting_region_V @culture_splitting_region_W @culture_splitting_region_Y" @@ -192,9 +182,7 @@ link = { ck3 = hindustani ir = kosala ir = kuru } link = { ck3=sinhala ir=dhivehi } ## Bactrian -link = { ck3 = pecheneg ir = pecheneg } # https://steamcommunity.com/sharedfiles/filedetails/?id=3098496649 link = { ck3 = bactrian ir = bactrian } -link = { ck3 = pecheneg ir = wusun } link = { ck3 = sogdian ir = sogdian ir = tayuan } link = { ck3 = saka @@ -202,6 +190,7 @@ link = { ir = shule # Invictus mod ir = massagetaean + ir = wusun } link = { ck3 = tocharian ir = tocharian ir = phryni ir = yuezhi } link = { ck3 = tajik ir = tajik } # https://steamcommunity.com/sharedfiles/filedetails/?id=3098496649 @@ -210,10 +199,6 @@ link = { ck3 = tajik ir = margian } link = { ck3=indo_greek ir=greco_indian } # Give priority to Rajas of Asia version of culture, but keep converter version as backup link = { ck3=indogreek ir=greco_indian } -## Turkic -link = { ck3 = turkish ir = oghuz } # https://steamcommunity.com/sharedfiles/filedetails/?id=3098496649 -link = { ck3 = karluk ir = karluk } # https://steamcommunity.com/sharedfiles/filedetails/?id=3098496649 - ## Baltic & Balto-Finnic @ir_baltic_cultures = "ir=aestian ir=baltics_tribs" # baltics_tribs comes from https://steamcommunity.com/sharedfiles/filedetails/?id=3098496649 # TFE @@ -687,8 +672,6 @@ link = { ck3 = basque ir = cantabrian ir = ilergetian ir = autrigonian ir = vasc link = { ck3 = nuragic ir = nuragic ir = corsian ir = talaiotic } ## Scythian -link = { ck3 = cuman ir = cuman } # https://steamcommunity.com/sharedfiles/filedetails/?id=3098496649 -link = { ck3 = kimek ir = kimek } # https://steamcommunity.com/sharedfiles/filedetails/?id=3098496649 # TFE link = { ck3 = roxolan ir = sarmatian historicalTag=ROX } link = { ck3 = yazige ir = sarmatian historicalTag=IAZ } # https://en.wikipedia.org/wiki/Iazyges#:~:text=The%20Iazyges%27%20name,sacrifices.%5B22%5D @@ -789,7 +772,6 @@ link = { ck3 = shuadit ir = hebrew @culture_splitting_region_F } link = { ck3 = zarphatic ir = hebrew @culture_splitting_region_E } link = { ck3 = ashkenazi ir = hebrew @culture_splitting_region_D @culture_splitting_region_G @culture_splitting_region_H } link = { ck3 = sephardi ir = hebrew irRegion = baetica_region irRegion = contestania_region irRegion = tarraconensis_region @culture_splitting_region_Y irRegion = gallaecia_region } -#link = { ck3 = khazar ir = hebrew @culture_splitting_region_L } # Commented out for know since Khazar isn't really a Hebrew/Israelite culture, they just adopted Judaism, and I included a possible mapping for khazar below with proto-turkic cultures ~~tanner918 link = { ck3 = hebrew ir = hebrew } link = { ck3 = nabatean ir = nabatean } link = { ck3 = alasiyan ir = alasiyan } @@ -799,17 +781,11 @@ link = { ck3 = ugaritic ir = ugaritic } # TFE link = { ck3 = pyu ir = pyu } # Vanilla CK3 -link = { ck3=mon ir=mon } -link = { ck3=burmese ir=pyu } -link = { ck3=arakanese ir=rhakine } -link = { ck3=palaung ir=pubu } # Rajas culture, giving it priority over converter's version -link = { ck3=palaungic ir=pubu } -link = { ck3=shan ir=shan } -link = { - ck3 = khasi - ir = jaintia # Pnar, https://en.wikipedia.org/wiki/Pnar_people -} - +link = { ck3 = kachin ir = pyu ir = piaoyue irRegion = pubu_area } # Approximately where they are located +link = { ck3 = burmese ir = pyu ir = piaoyue } +# Karen Mappings (The region where Karen would appear in CK3 is Impassable Terrain in Imperator, so these need to be made to help make sure that Karen is likely to appear) +link = { ck3 = karen ir = shan irProvince = 9843 } +link = { ck3 = karen ir = mon irProvince = 9841 irProvince = 9842 } ## Finnic @ir_finnic_cultures = "ir=mordvin ir=androphagian ir=volgaic ir=fennic" @@ -879,210 +855,385 @@ link = { } # Terra Indomita to Rajas of Asia -link = { ck3 = tagalog ir = tagalog } -link = { ck3 = bisaya ir = bisaya } -link = { ck3 = goguryeo ir = goguryeo } -link = { ck3 = yamato ir = wa } -link = { ck3 = ainu ir = ainu } -link = { ck3 = emishi ir = emishi } -link = { ck3 = nivkh ir = nivkh } -link = { ck3 = bahnar ir = bahnar } # Stieng and Mnong are two cultures that are the same as Bahnar in game, just with different names. For now will just map to Bahnar, but might be worth splitting if it makes sense later on -link = { ck3 = andaman ir = andaman } -link = { ck3 = munda ir = munda } link = { ck3 = mari ir = mari } -link = { ck3=old_viet ir=lacviet } # The Lac Viet were an ancient Vietnamese people who lived in the Red River Delta. -link = { ck3=ryukyu ir=duuchuu } # Duuchuu was a historical province in Japan. -link = { ck3=ryukyu ir=yaeyama } # The Yaeyama Islands are a group of islands that are part of Japan. -link = { ck3=hayato ir=kumaso } # The Kumaso were an indigenous people who lived in southern Japan. (Not mapping to Yamato for diversity and to better match culture split in EU4/EU5) -link = { ck3=oshu ir=aduma } # The Aduma were an indigenous people who lived in southern Japan. (Not mapping to Yamato for diversity and to better match culture split in EU4/EU5) -link = { ck3=kyushu ir=nansei } # The Nansei Islands are a group of islands that are part of Japan.(Not mapping to Yamato for diversity and to better match culture split in EU4/EU5) -link = { ck3 = emishi ir = jomon_yayoi } # This is a special culture available to the native emishi tags from missions that allows them to switch to this special culture to be closer to the Yayoi culture group. Since this is technically Emishi (Jomon) trying to be closer to the Yayoi culture group, realistically might make more sense to have a custom culture thats a hybrid of emishi and yamato. -link = { ck3=emishi ir=sunazawa } # Sunazawa was a historical province in Japan. -link = { ck3=emishi ir=dewa } # Dewa was a historical province in Japan. -link = { ck3=emishi ir=mitinooku } # Mitinooku was a historical province in Japan. -link = { ck3 = batak ir = minangkabau historicalTag = A21 } # This tag represents a group of people described under the "Batak" grouping -link = { ck3 = mentawai ir = minangkabau irProvince = 11043 } -link = { ck3 = nias ir = minangkabau irProvince = 11044 } # Added these different mappings for more variety, could be changed if desired -link = { ck3 = gayo ir = minangkabau irRegion = aceh_area } -link = { ck3=malay ir=minangkabau } # https://en.wikipedia.org/wiki/Minangkabau_people -link = { ck3=goguryeo ir=woju } # The Woju were a Korean people who lived in the Liaodong Peninsula. -link = { ck3=goguryeo ir=lelang } # Lelang was a historical Korean kingdom that existed in the Liaodong Peninsula. -link = { ck3=goguryeo ir=dongwei } # Dongwei was a historical Korean kingdom that existed in the Liaodong Peninsula. -link = { ck3=goguryeo ir=yilyu } # Yilyu was a historical Korean kingdom that existed in the Liaodong Peninsula. -link = { ck3=goguryeo ir=joseon } # Joseon was a historical Korean kingdom that existed from the 14th to the 19th centuries. -link = { ck3=goguryeo ir=fuyu } # Fuyu was a historical Korean kingdom that existed in the Liaodong Peninsula. -link = { ck3 = jeju ir = byeonhan ir = jinhan ir = mahan irProvince = 9285 } # Right now just map to Jeju Island province. Would it be better to map to the Imperator Damna (DMN) tag? -link = { ck3=samhan ir=jinhan } # Jinhan was a historical Korean confederacy that existed in the Korean Peninsula. -link = { ck3=samhan ir=mahan } # Mahan was a historical Korean confederacy that existed in the Korean Peninsula. -link = { ck3=samhan ir=byeonhan } # Byeonhan was a historical Korean confederacy that existed in the Korean Peninsula. -link = { ck3=ainu ir=jeulmeun } # Jeulmeun is a revivalist culture, and belongs to the same culture group as the Ainu in Terra Indomita. -link = { ck3=chong ir=pear } # In RoA, the chong culture is localized as Samre, which is the same ethnic group as the Pear people. -link = { ck3 = kinh ir = chu ir = duhu ir = huaxia ir = ji ir = jin ir = qilu ir = qin ir = xu ir = yaan ir = yan ir = zhongyuan ir = guzhu ir = huaiyi ir = laiyi ir = lingzhi irRegion = hong_area irRegion = jiaozhi_area irRegion = jiuzhen_area } # In CK3, Kinh is represented as a hybrid of Lac Viet and Han. This is probably the best way to realistically represent this culture appearing naturally outside of listing every single possible chinese tag as a condition for lacviet to convert to kinh if its inside their realm -link = { ck3=han ir=huaxia } # Huaxia was a historical term used to refer to the Chinese people. # https://en.wikipedia.org/wiki/Huaxia -link = { ck3=sichuan ir=ba } # https://en.wikipedia.org/wiki/Ba_(state): "an ancient state in eastern Sichuan, China" -link = { ck3=sichuan ir=bo } # https://en.wikipedia.org/wiki/Bo_people_(China): "The Bo people were native to southeastern Sichuan." link = { ck3=georgian ir=bekhyrian } # the region of Bekhyria (https://upload.wikimedia.org/wikipedia/commons/4/4d/Georgian_States_Colchis_and_Iberia_%28600-150BC%29-en.svg) is inhabited by the Colchians in TI, the Bekhyrian culture doesn't have any pops. link = { ck3=nubian ir=syrbotian } # https://en.wikipedia.org/wiki/Syrbotae link = { ck3=armenian ir=phasiane } # Armenia was also known as Greater Armenia, which included the region of Phasiane. link = { ck3=armenian ir=sophene } # Sophene was a historical region in Upper Mesopotamia, which is now part of Armenia. link = { ck3=armenian ir=van } # The Kingdom of Van was a historical Armenian state located in the region of Lake Van. link = { ck3=armenian ir=brygian } # The Brygians were an ancient Anatolian people who inhabited the region of Phrygia, which is now part of Armenia. -link = { ck3=aceh ir=linyi irRegion = aceh_area } # CK3 has Aceh as hybrid of Cham and Gayo, figured this make the most sense to have it appear naturally ~~tanner918 -link = { ck3=cham ir=linyi } -link = { ck3 = kavalan ir = yizhou @north_formosa } -link = { ck3 = bunun ir = yizhou @middle_formosa } -link = { ck3 = paiwan ir = yizhou @south_formosa } -link = { ck3 = siraya ir = yizhou } # CK3 has each county in Formosa be a different culture. Setting that up might be annoying, and probably wouldn't make sense since it is likely to be owned by one tag. This setup splits yizhou into three cultures on the island, and then another as a fallback for anywhere else. This can obviously be changed if desired -link = { ck3=malay ir=chaiya } # Chaiya was a historical kingdom in Southeast Asia that is now part of Thailand. -link = { ck3=malay ir=malayan } # The Malayan people are a group of ethnic Malays who live in the Malay Peninsula. -link = { ck3=idaya ir=igorot } # The Igorot people are a group of indigenous peoples who live in the mountainous regions of the Philippines. -link = { ck3=palawan ir=tagbanwa } # The Tagbanwa people are an indigenous group who live in the Palawan Islands of the Philippines. link = { ck3=bactrian ir=bactra } # Bactria was a historical region in Central Asia that is now part of Afghanistan and Tajikistan. (In game has Bactrian as its name) -link = { ck3=han ir=yan } # Yan was a historical state in China that existed during the Spring and Autumn period. # TODO: try to map this manually -link = { ck3=han ir=jin } # Jin was a historical state in China that existed during the Spring and Autumn and Warring States periods. # TODO: try to map this manually -link = { ck3=qin ir=qin } -link = { ck3=han ir=chu } # Chu was a historical state in China that existed during the Spring and Autumn and Warring States periods. # TODO: try to map this manually -link = { ck3=han ir=zhongyuan } # Zhongyuan was a historical region in China that is now part of Henan Province. # TODO: try to map this manually -link = { ck3=han ir=qilu } # Qilu was a historical region in China that is now part of Shandong Province. # TODO: try to map this manually -link = { ck3=han ir=yaan } # Yaan was a historical region in China that is now part of Sichuan Province. # TODO: try to map this manually -link = { ck3=han ir=ji } # Ji was a historical state in China that existed during the Spring and Autumn and Warring States periods. # TODO: try to map this manually -link = { ck3=han ir=xu } # Xu was a historical state in China that existed during the Spring and Autumn and Warring States periods. # TODO: try to map this manually -link = { ck3=han ir=duhu } # Duhu was a historical region in China that is now part of Gansu Province. # TODO: try to map this manually -link = { ck3=shatuo ir=xiongnu_chinese } # The Sino-Xiongnu were a group of Xiongnu people who had assimilated into Chinese culture. (This seems similar to the Shatou culture in CK3, which is a hybrid of Ueban and Han, so will map to that for now ~~tanner918) -link = { ck3=yao ir=yangyu } # Yangyu was a historical region in China that is now part of Guangdong Province. -link = { ck3 = sheren ir = sanmiao irRegion = yang_region irRegion = jiao_region } # She seems to be closely related to Hmong/Miao -link = { ck3 = hmong ir = sanmiao } -link = { ck3=nivkh ir=susuya } # Susuya is in the Nivkh culture group -link = { ck3 = khmu ir = minpu } # It is called Khmu in Imperator -link = { ck3=khmer ir=phnom } # The Phnom were an ancient people who lived in southern China. -link = { ck3=kuy ir=ban } # Culture is called Katu in Imperator, and Kuy is a Katuic culture. There are other Katuic cultures that could potentially be mapped to, but they are all clumped together, so Determining exactly what their mapping conditions should be might be difficult to prevent having only one or two provinces convert -link = { ck3=tai ir=xiangkhoang } # Xiangkhoang was a historical kingdom in Laos. From what I can tell, they were related closer to Tai peoples ~~tanner918 -link = { ck3=nicobar ir=holchu } # The Nicobarese refer to themselves as Holchu link = { ck3=saka ir=buku } # Buku is in the Saka culture group, so for now will group to Saka until a better mapping can be determined -link = { ck3 = caijia ir = dian } # Mapping for now until a better culture can be determine -link = { ck3 = wuman ir = yelang } # AEP Culture, adding first to make sure AEP cultures map properly; The Yi/Nuosu peoples are considered possible descendants of the Yelang kingdom -link = { ck3 = yi ir = yelang } # Used for RoA; The Yi/Nuosu peoples are considered possible descendants of the Yelang kingdom -link = { ck3 = bai ir = jiuliao } -link = { ck3 = lisu ir = ailao } -link = { ck3 = be ir = lier ck3Province = 12458 ck3Province = 12449 ck3Province = 12436 ck3Province = 12419 } -link = { ck3 = hlai ir = lier } -link = { ck3 = nong ir = gui } # nong called Zhuang in CK3. They are both Tai cultures in the same region, and looking it up, Zhuang peoples are said to be descendants of the Xiou (according to a chinese travel site), and the Nam Cuong tag in Imperator refers to them as the Xiou while having Gui as primary culture link = { ck3=pyu ir=piaoyue } # The Pyu were an ancient people who lived in Myanmar. -link = { ck3 = evenk ir = haoshi ir = huifa ir = sushen irRegion = amur_area irRegion = sahaliyan_area irRegion = mobei_region irRegion = scytho_siberian_region irRegion = hyperborea_region } # To represent that they are a Tungusic culture closer to Siberia -link = { ck3 = nanai ir = sushen irRegion = modong_region } # Probably not a 1:1 realistic match, but it should help with some diversity -link = { ck3 = udege ir = haoshi irRegion = modong_region } # Probably not a 1:1 realistic match, but it should help with some diversity -link = { ck3 = jurchen ir = haoshi ir = huifa ir = sushen } # Jurchens expanded the most out of that region, so it will be the fallback link = { ck3=levantine ir=philistine } # The Philistines were an ancient people who lived in the southern Levant. link = { ck3 = tocharian ir = loulan } # Initially mapped to uyghur, but according to ChatGPT, the loulan wouldn't be considered ancestors since the uyghurs are of turkic origin -link = { ck3=han ir=huaiyi } # Was in the Yi culture group in Terra-Indomita, not chinese culture group. But there is no Rajas of Asia culture to actually represent this and they likely got assimilated by the han -link = { ck3=han ir=laiyi } # Was in the Yi culture group in Terra-Indomita, not chinese culture group. But there is no Rajas of Asia culture to actually represent this and they likely got assimilated by the han -link = { ck3=han ir=guzhu } # Was in the Yi culture group in Terra-Indomita, not chinese culture group. But there is no Rajas of Asia culture to actually represent this and they likely got assimilated by the han -link = { ck3=han ir=lingzhi } # Was in the Yi culture group in Terra-Indomita, not chinese culture group. But there is no Rajas of Asia culture to actually represent this and they likely got assimilated by the han -link = { ck3 = wu ir = wuyue } # Rajas of Asia has this culture diverge from Han in 1050, but it seems to represent the same regional/cultural differences that the Terra-Indomita culture represents -link = { ck3 = yue ir = ouyue } # Rajas of Asia has this culture diverge from Han in 1050, but it seems to represent the same regional/cultural differences that the Terra-Indomita culture represents -link = { ck3 = min ir = minyue } # Rajas of Asia has this culture diverge from Han in 1050, but it seems to represent the same regional/cultural differences that the Terra-Indomita culture represents -link = { ck3 = yue ir = yangyue } # Rajas of Asia has this culture diverge from Han in 1050, but it seems to represent the same regional/cultural differences that the Terra-Indomita culture represents -link = { ck3 = min ir = fulou } # Rajas of Asia has this culture diverge from Han in 1050, but it seems to represent the same regional/cultural differences that the Terra-Indomita culture represents -link = { ck3 = yue ir = nanyue } # Rajas of Asia has this culture diverge from Han in 1050, but it seems to represent the same regional/cultural differences that the Terra-Indomita culture represents link = { ck3=sami ir=sapmi } # Sapmi is the traditional homeland of the Sami people. link = { ck3=mogyer ir=gorokhov } # The Gorokhovs were a Hungarian tribe that lived in the Carpathian Mountains. link = { ck3 = solqumyt ir = itkul } # Not sure what sort of cultures would best map, I figured given its location and Uralic culture group, maybe Samoyedic cultures, might change if a better choice is determined link = { ck3 = kott ir = bolsherechye } # Not sure what sort of cultures would best map, I figured given its location and Uralic culture group, maybe Samoyedic cultures, might change if a better choice is determined link = { ck3=urslavic ir=slavian } # Both represent early Slavic cultures -link = { ck3=sichuan ir=shu } # Shu is an ancient state in the Sichuan region link = { ck3=georgian ir=sasperires } # Sasperires were an ancient tribe in the region of modern Georgia link = { ck3=udmurt ir=argippaei } # Argippaei were described by Herodotus as living north of Scythia, possibly related to Sarmatians or Alans (But the converter already has quite a few cultures mapped to those, and doing research/asking chatgpt doesn't give a single answer as they may not have been an atual culture, just a mis-identified one. So for now, will map it to something different for more variety. ChatGPT recommneded cultures like Komi, but since another culture is mapped to that, for now I will just map it to Udmurt ~~tanner918) link = { ck3=samoyed ir=arimphaei } # Arimphaei were described as living in the far north, possibly related to Finno-Ugric peoples link = { ck3=kurykan ir=jiankun } # Both cultures seem to have same/similar language and culture group/background -link = { ck3=samoyed ir=sargat ck3Region = d_ustyug ck3Region = d_vologda ck3Region = d_chudia ck3Region = d_biarmia ck3Region = d_nizhny_novgorod ck3Region = d_vepsia ck3Region = d_pinega } # This mapping is here since the russian impassable wasteland at the top of the map appears to be Sargat, and it covers the region of Bjarmaland. So I am including this mapping to make sure that Bjarmian gets setup there. ~~tanner918 -link = { ck3=nenets ir=sargat ck3Region = d_cherdyn ck3Region = d_mezen ck3Region = d_pyras ck3Region = d_vychegda ck3Region = d_vym ck3Region = d_pechora ck3Region = d_nenetsia ck3Region = d_ortina ck3Region = d_izhma } # This mapping is here since the russian impassable wasteland at the top of the map covers the Nenets' region, so I am including this mapping to make sure that they get setup there. ~~tanner918 link = { ck3=khanty ir=sargat } # Wikipedia says they could have been a mix of Ugrian and Siberian peoples, and some early Iranian/Indo-Iranian peoples. Since it is in the Uralic culture group, mapping to Khanty for now link = { ck3 = tocharian ir = jushi } # ChatGPT and Wikipedia state they most likely spoke a Sakan or Tocharian language, and that they eventually got pushed out by incoming invading Turkic peoples. So for now, will map to Tocharian ~~tanner918 link = { ck3 = komi ir = permic } -# Qiangic Mappings -@qiangic_cultures = "ir = di_qiang ir = gyalrong ir = juyan ir = kunming ir = nuomuhong ir = qiang ir = qiongdu ir = ruoqiang ir = shajing ir = shanma ir = yiqu ir = zuo" -link = { ck3 = achang @qiangic_cultures irRegion = burma_region } # This CK3 culture is Qiangic, but speaks Burmese, so just going to map any Qiangic culture in Burma to it ~~tanner918 -link = { ck3 = nakhi ir = kunming ir = zuo ir = qiongdu } # Not sure if best mapping, areas more or less match up ~~tanner918 + + + +# Terra Indomita to Asia Expansion Project +link = { ck3 = komi ir = permic } # komi is localized as Permian in CK3 +link = { ck3 = qay ir = qifu } +link = { ck3=komi ir=argippaei } +link = { ck3=khanty ir=jiankun ir = itkul ir = bolsherechye } # AEP doesn't add many relevant cultures for this, so this might change if a better option is decided + + +################### +## All Under Heaven +################### +## Pu Culture Group +#- Andaman +#- Bahnar +#- Katu (ban) +#- Holchu +#- Jaintia +#- Lacviet +#- Khmu (minpu) +#- Mon +#- Munda +#- Pear +#- Khmer (phnom) +#- Palaung (pubu) +#- Rhakine +#- Xiangkhoang +link = { ck3 = andamanese ir = andaman } # AEP +link = { ck3 = andaman ir = andaman } # ROA +link = { ck3 = nicobarese ir = holchu } # AEP +link = { ck3 = nicobar ir = holchu } # ROA +link = { ck3 = nakkavaram ir = andaman ir = holchu } # Base Game uses this to represent peoples living across Andaman, Nicobar, Nias, and Mentawai +link = { ck3 = old_viet ir = lacviet } # ROA +link = { ck3 = muong ir = lacviet } # AEP; The Muong can arguably be considered the Unsinicized Vietic peoples, and this is the best culture AEP has to represent that +link = { ck3 = viet ir = lacviet } # Base Game +link = { ck3 = munda ir = munda } # ROA/AEP +link = { ck3 = khasi ir = jaintia ir = munda } # Base Game +link = { ck3 = arakanese ir = rhakine } +link = { ck3 = mon ir = mon } +link = { ck3 = khmu ir = xiangkhoang ir = minpu } +link = { ck3 = chong ir = pear } # chong localized as Samre, another name for the Pear peoples +link = { ck3 = bahnar ir = bahnar } # ROA +link = { ck3 = bahnaric ir = bahnar } # AEP +link = { ck3 = kuy ir = ban } # AEP/ROA +link = { ck3 = khmer ir = phnom ir = bahnar ir = ban } # Base Game +link = { ck3 = palaung ir = pubu } # ROA +link = { ck3 = palaungic ir = pubu } # AEP/Base Game + + +## Austronesian Culture Group [Terra-Indomita] +#- Bisaya +#- Chaiya +#- Igorot +#- Linyi +#- Malayan +#- Minangkabau +#- Tagalog +#- Tagbanwa +#- Yizhou +# Formosan Mappings (AEP/ROA really split them up) +link = { ck3 = amis ir = yizhou irProvince = 10834 irProvince = 10838 irProvince = 10837 } # AEP/ROA/Base Game +link = { ck3 = atayal ir = yizhou irProvince = 10835 irProvince = 10836 } # AEP/ROA +link = { ck3 = bunun ir = yizhou irProvince = 9377 } # AEP/ROA +link = { ck3 = kavalan ir = yizhou irProvince = 10825 irProvince = 10826 } # ROA +link = { ck3 = kulun ir = yizhou irProvince = 10825 irProvince = 10826 } # AEP +link = { ck3 = paiwan ir = yizhou irProvince = 10833 irProvince = 10832 } # ROA +link = { ck3 = paiwanese ir = yizhou irProvince = 10833 irProvince = 10832 } # AEP +link = { ck3 = pepo ir = yizhou irProvince = 10827 irProvince = 10828 irProvince = 10829 } # ROA +link = { ck3 = babuza ir = yizhou irProvince = 10827 irProvince = 10828 irProvince = 10829 } # AEP +link = { ck3 = siraya ir = yizhou irProvince = 10839 irProvince = 10830 irProvince = 10831 } # AEP/ROA +link = { ck3 = amis ir = yizhou } # Base Game/ROA/AEP Fallback +# Filipino Mappings (AEP/ROA split it up a bit, but will determine how to better split up when mods update) +link = { ck3 = idaya ir = igorot } # ROA +link = { ck3 = ilokano ir = igorot } # AEP +link = { ck3 = iloko ir = igorot } # Base Game +link = { ck3 = tagalog ir = tagalog } +link = { ck3 = palawan ir = tagbanwa } # AEP/ROA +link = { ck3 = bisaya ir = bisaya } # AEP/ROA +link = { ck3 = bisayan ir = bisaya ir = tagbanwa } # Base Game +# Rest of Mappings +link = { ck3 = aceh ir = linyi irRegion = aceh_area } # AEP/ROA; Aceh speak a Chamic language +link = { ck3 = acehnese ir = linyi irRegion = aceh_area } # Base Game; Aceh speak a Chamic language +link = { ck3 = champ ir = linyi } # AEP +link = { ck3 = cham ir = linyi } # Base Game/ROA +link = { ck3 = aceh ir = minangkabau historicalTag = A23 } # AEP/ROA; Lamuri was early Aceh kingdom, and they use Minangkabau in Terra-Indomita +link = { ck3 = acehnese ir = minangkabau historicalTag = A23 } # Base Game; Lamuri was early Aceh kingdom, and they use Minangkabau in Terra-Indomita +link = { ck3 = batak ir = minangkabau historicalTag = A21 } # ROA/AEP; This tag represents a group of people described under the "Batak" grouping +link = { ck3 = batak ir = minangkabau irProvince = 11046 irProvince = 11051 } # ROA/AEP; These provinces represent areas where Batak peoples lived +link = { ck3 = mentawai ir = minangkabau irProvince = 11043 } # ROA/AEP +link = { ck3 = nias ir = minangkabau irProvince = 11044 } # ROA/AEP +link = { ck3 = nakkavaram ir = minangkabau irProvince = 11043 irProvince = 11044 } # Base Game uses this to represent peoples living across Andaman, Nicobar, Nias, and Mentawai +link = { ck3 = gayo ir = minangkabau irRegion = aceh_area } # ROA/AEP +link = { ck3 = aslian ir = minangkabau ir = chaiya ir = malayan irProvince = 11032 irProvince = 11033 irProvince = 11034 irProvince = 11035 irProvince = 11036 irProvince = 11037 irProvince = 11038 } # AEP/ROA; As a way of making sure this culture appears +link = { ck3 = senoi ir = minangkabau ir = chaiya ir = malayan irProvince = 11032 irProvince = 11033 irProvince = 11034 irProvince = 11035 irProvince = 11036 irProvince = 11037 irProvince = 11038 } # Base Game; As a way of making sure this culture appears +link = { ck3 = malay ir = minangkabau ir = chaiya ir = malayan } # Fallback + + +## Tai Culture Group [Terra-Indomita] +#- Ailao +#- Dian +#- Gui +#- Jiuliao +#- Lier +#- Shan +#- Yelang +link = { ck3 = pu ir = gui } # pu called Zhuang in AEP +link = { ck3 = nong ir = gui } # nong called Zhuang in ROA +link = { ck3 = bouxcuengh ir = gui } # Base Game; Zhuang are also called Bouxcuengh +link = { ck3 = beish ir = lier irProvince = 9212 irProvince = 9213 irProvince = 9169 } # AEP +link = { ck3 = be ir = lier irProvince = 9212 irProvince = 9213 irProvince = 9169 } # ROA +link = { ck3 = liliao ir = lier } # liliao called Hlai in AEP +link = { ck3 = hlai ir = lier } # Base Game/ROA +link = { ck3 = shan ir = shan } +link = { ck3 = hani ir = yelang ir = jiuliao irRegion = hong_area irRegion = yongchang_area } # AEP; Region choices mainly for a bit of variety, matching approximately where they are located +link = { ck3 = wuman ir = yelang ir = jiuliao } # wuman is called Nuosu in AEP, another name for the Yi. Need this before other mappings to Yi to make sure things get properly mapped since AEP actually uses yi for Miao, so we don't want this being mapped +link = { ck3 = lisu ir = yelang ir = jiuliao irRegion = liang_region } # ROA; They live around the south of liang_region, but mapped to entire region for a little more diversity +link = { ck3 = yi ir = yelang ir = jiuliao } # Base Game/ROA +link = { ck3 = tay ir = ailao ir = dian irRegion = jiao_region } # AEP +link = { ck3 = kam_sui ir = ailao ir = dian irRegion = jing_region } # AEP +link = { ck3 = tai ir = ailao ir = dian } + + +## Bashu Culture Group [Terra-Indomita] +#- Ba +#- Bo +#- Shu +link = { ck3 = tujia ir = ba irRegion = jing_region } # The Tujia can supposedly trace themselves to the Ba Kingdom +link = { ck3 = old_bashu ir = ba ir = shu } +link = { ck3 = caijia ir = bo irRegion = zangke_area } # ROA; Caijia related to Bai, chose region that roughly corresponds to where they are +link = { ck3 = bai ir = bo } # The Bai peoples supposedly can trace themselves back to the Bo + + +## Miao Culture Group [Terra-Indomita] +#- Miao (sanmiao) +#- Yangyu +link = { ck3 = yao ir = yangyu } # Maybe not best mapping, but should be good enough for now +link = { ck3 = sheren ir = sanmiao irRegion = yang_region irRegion = jiao_region } # ROA/AEP +link = { ck3 = hmong ir = sanmiao } # Base Game/ROA +link = { ck3 = yi ir = sanmiao } # AEP uses this to represent Miao peoples, so set it last to make sure it doesn't interfere with converting to ROA/Base Game + + +## Yue Culture Group [Terra-Indomita] +#- Fulou +#- Minyue +#- Nanyue +#- Ouyue +#- Wuyue +#- Yangyue +link = { ck3 = baiyue ir = fulou ir = minyue ir = nanyue ir = ouyue ir = wuyue ir = yangyue } + + +## Yi Culture Group [Terra-Indomita] +#- Guzhu +#- Huaiyi +#- Laiyi +#- Lingzhi +link = { ck3 = dongyi ir = guzhu ir = huaiyi ir = laiyi ir = lingzhi } + + +## Chinese Culture Group [Terra-Indomita] +#- Chu +#- Duhu (Doesn't seem to actually be used in Terra-Indomita, not sure exactly what this is supposed to represent) +#- Huaxia (Doesn't seem to actually be used in Terra-Indomita, but is likely just supposed to represent a unified Chinese culture) +#- Ji +#- Jin +#- Qilu +#- Qin +#- Sino-Xiongnu (xiongnu_chinese) +#- Xu +#- Yaan +#- Yan +#- Zhongyuan +@chinese_cultures = "ir=chu ir=duhu ir=huaxia ir=ji ir=jin ir=qilu ir=qin ir=xu ir=yaan ir=yan ir=zhongyuan" +# Regional Chinese Cultures +# Notes for future mappings: +# - In AEP, Sichuan is ba_shu +# - ROA has some regional cultures, like wu, yue, min +# link = { ck3 = qin ir = qin } # Commenting out for now until we figure out regional Chinese cultures since it's a little weird to have just Qin as a separate culture +link = { ck3 = kinh @chinese_cultures irRegion = hong_area irRegion = jiaozhi_area irRegion = jiuzhen_area } # ROA/AEP; The Kinh could be considered the Sinicized Vietic peoples, but because mappings don't allow the primary culture of a country as a condition, this is probably the best mapping for now +# Chinese Fallbacks +link = { ck3 = han @chinese_cultures } +link = { ck3 = shatuo ir = xiongnu_chinese } # The Sino-Xiongnu were a group of Xiongnu people who had assimilated into Chinese culture. (This seems similar to the Shatou culture in CK3, which is a hybrid of Ueban and Han, so will map to that for now ~~tanner918) + + +## Rong Culture Group [Terra-Indomita] +#- Di Qiang (di_qiang) +#- Gyalrong +#- Juyan +#- Kunming +#- Nuomuhong +#- Qiang +#- Qiongdu +#- Ruoqiang +#- Shajing +#- Shanma +#- Yiqu +#- Zuo +@qiangic_cultures = "ir=di_qiang ir=gyalrong ir=juyan ir=kunming ir=nuomuhong ir=qiang ir=qiongdu ir=ruoqiang ir=shajing ir=shanma ir=yiqu ir=zuo" +link = { ck3 = achang @qiangic_cultures irRegion = burma_region } # ROA Culture; This CK3 culture is Qiangic, but speaks Burmese, so just going to map any Qiangic culture in Burma to it ~~tanner918 +link = { ck3 = nakhi ir = kunming ir = zuo ir = qiongdu } # ROA Culture; Not sure if best mapping, areas more or less match up ~~tanner918 link = { ck3 = tangut ir = juyan ir = nuomuhong ir = shajing ir = shanma ir = yiqu } # Not sure if best mapping, areas more or less match up ~~tanner918 -link = { ck3 = qiang ir = qiang ir = gyalrong ir = di_qiang ir = ruoqiang } # Not sure if best mapping, areas more or less match up ~~tanner918 - -# Mongolic Mappings (Mapping for Mongolic/Turkic cultures kind of hard to get realistic matches since quite a few cultures in the region are said to be ancestors of mongolic or turkic cultures, both, or it is uncertain. So I just grouped some of the cultures together into different groups and will map them based off location. These mappings might need to be redone if better mappings are decided ~~tanner918) -# Xiongnu getting mapped in both Mongolic and Turkic cultures is to represent that they are supposedly ancestors to both culture groups -@mongolic_cultures = "ir = shanrong ir = loufan ir = linhu ir = baidi ir = chidi ir = chanlan" -link = { ck3 = qay @mongolic_cultures ir = xiongnu irRegion = raole_area irRegion = aimag_area irRegion = terigun_area } -link = { ck3 = onggirad @mongolic_cultures ir = xiongnu irRegion = modong_area irRegion = ulaanzuukh_area irRegion = gonglu_area } -link = { ck3 = tuyuhun @mongolic_cultures ir = xiongnu ir = donghu ir = xianbei irRegion = liang_region irRegion = tibet_region irRegion = xiyu_region } -link = { ck3 = khitan ir = donghu ir = xianbei irRegion = you_region irRegion = raole_area irRegion = wuhuan_area } -link = { ck3 = sibe ir = donghu ir = xianbei irRegion = modong_region } -link = { ck3 = uriankhai @mongolic_cultures ir = xianbei irProvince = 9773 irProvince = 9775 irProvince = 9385 } # These provinces are some of the wasteland provinces in northern manchuria, and some of them seem to have been assigned Mongolic cultures, but they are mapped to areas out of scope of Terra-Indomita in northern manchuria. I am mapping to Uriankhai since it is a Mongolic culture from around that area, should prevent that region from just having Mongol there, split off from the rest of the Mongol provinces. ~~tanner918 -link = { ck3 = mongol @mongolic_cultures ir = xianbei } -link = { ck3 = mongol ir = xiongnu irRegion = modong_region } -link = { ck3 = khitan ir = wuhuan ir = donghu } - -link = { ck3 = tula ir = qifu irRegion = scytho_siberian_region irRegion = hujie_area irRegion = altai_area } -link = { ck3 = khori ir = qifu irRegion = mobei_region } -link = { ck3 = barqut ir = qifu } # Not too sure what would be best for this, all I can find is that they are related to mongolic cultures, and that these cultures might fit, but figured adding this to the already large list of mongol cultures above might blob cultures a bit too much ~~tanner918 - - -# Turkic Mappings (I really split this up since there were quite a few Turkic cultures in Rajas of Asia. If it seems like having this split up so much is a bad idea, some could easily be removed ~~tanner918) -@proto_turks = "ir = dingling ir = xiongnu ir = korgantas ir = arzhan ir = hujie ir = issedonian" -link = { ck3 = kirghiz @proto_turks irRegion = gryphia_area irRegion = jiankun_area } -link = { ck3 = shor @proto_turks irRegion = ob_area } -link = { ck3 = cik @proto_turks irRegion = ulangom_area } -link = { ck3 = az @proto_turks irRegion = altai_area } -link = { ck3 = todzh @proto_turks irRegion = dingling_area irRegion = khuvsgul_area } -link = { ck3 = dukha @proto_turks irRegion = guyan_area irRegion = transbaikal_area irRegion = bayanundar_area } -link = { ck3 = uigur @proto_turks irRegion = xiyu_region } -link = { ck3 = bolghar @proto_turks irRegion = hyperborea_region } -link = { ck3 = bashkir @proto_turks irRegion = ulytau_area irRegion = kostanay_area irRegion = magyarok_area irRegion = ingala_area irRegion = itkul_area } +link = { ck3 = qiang ir = qiang ir = gyalrong ir = di_qiang ir = ruoqiang ir = kunming ir = zuo ir = qiongdu } # Not sure if best mapping, areas more or less match up ~~tanner918 + + +## Di Culture Group [Terra-Indomita] +#- Arzhan +#- Baidi +#- Chanlan +#- Chidi +#- Dingling +#- Hujie +#- Huna +#- Hunnic +#- Issedonian +#- Korgantes +#- Linhu +#- Loufan +#- Shanrong +#- Xiongnu +# + +## Hu Culture Group [Terra-Indomita] +#- Donghu +#- Qifu +#- Wuhuan +#- Xianbei + +## While the Hu culture group likely represents just proto-Mongols, the Di culture group represents a mix of proto-Mongols and proto-Turks, so these culture groups will be mapped together, especially since it is difficult to say one Imperator culture is definitely a direct ancestor of one CK3 culture. Their mappings will, for the most part, just be mapping based off where they appear in CK3. ~~tanner918 + +# Mongolic Mappings +@mongolic_cultures = "ir=shanrong ir=loufan ir=linhu ir=baidi ir=chidi ir=chanlan ir=donghu ir=qifu ir=wuhuan ir=xianbei ir=xiongnu" +link = { ck3 = qay @mongolic_cultures irRegion = raole_area irRegion = aimag_area irRegion = terigun_area } # AEP/ROA +link = { ck3 = khitan @mongolic_cultures irRegion = you_region irRegion = jin_region irRegion = raole_area irRegion = wuhuan_area } +link = { ck3 = onggirad @mongolic_cultures irRegion = modong_area irRegion = ulaanzuukh_area irRegion = gonglu_area } # ROA +link = { ck3 = mongol @mongolic_cultures irRegion = terigun_area irRegion = aimag_area irRegion = gonglu_area irRegion = ulaanzuukh_area irRegion = transbaikal_area irRegion = bayanundar_area irRegion = guyan_area } +link = { ck3 = sibe @mongolic_cultures irRegion = daxianbeishan_east_area } # ROA +link = { ck3 = shiwei @mongolic_cultures irRegion = modong_region } +link = { ck3 = buryat @mongolic_cultures irRegion = dingling_area irRegion = jiankun_area } +link = { ck3 = tuyuhun @mongolic_cultures irRegion = liang_region irRegion = tibet_region irRegion = xiyu_region } +link = { ck3 = oirat @mongolic_cultures irRegion = khuvsgul_area irRegion = ulangom_area irRegion = altai_area } +link = { ck3 = kerait @mongolic_cultures irRegion = fuyangju_area } +link = { ck3 = naiman @mongolic_cultures irRegion = gobi_altai_area irRegion = xihai_area irRegion = hujie_area } +link = { ck3 = mongol @mongolic_cultures } + +# Turkic Mappings +@proto_turks = "ir=dingling ir=korgantas ir=arzhan ir=hujie ir=issedonian" +link = { ck3 = az @proto_turks irRegion = altai_area } # ROA +link = { ck3 = todzh @proto_turks irRegion = dingling_area irRegion = khuvsgul_area } # ROA +link = { ck3 = dukha @proto_turks irRegion = guyan_area irRegion = transbaikal_area irRegion = bayanundar_area } # ROA +link = { ck3 = kirghiz @proto_turks irRegion = gryphia_area irRegion = jiankun_area irRegion = altai_area irRegion = dingling_area irRegion = khuvsgul_area irRegion = guyan_area irRegion = transbaikal_area irRegion = bayanundar_area } +link = { ck3 = bashkir @proto_turks irRegion = kostanay_area irRegion = magyarok_area irRegion = ingala_area irRegion = itkul_area } +link = { ck3 = shor @proto_turks irRegion = ob_area } # ROA +link = { ck3 = laktan @proto_turks irRegion = ob_area } +link = { ck3 = uriankhai @proto_turks irRegion = ulangom_area irRegion = gobi_altai_area irRegion = xihai_area} +link = { ck3 = cik @proto_turks irRegion = ulangom_area irRegion = gobi_altai_area irRegion = xihai_area } # ROA +link = { ck3 = cuman @proto_turks irRegion = aktobe_area irRegion = iurcia_area irRegion = aspisi_area irRegion = ulytau_area irRegion = detpakdala_area } +link = { ck3 = kipchak @proto_turks irRegion = busu_area irRegion = koshkarkol_area } +link = { ck3 = kimek @proto_turks irRegion = akmola_area irRegion = korgantas_area } +link = { ck3 = karluk @proto_turks irRegion = ili_area irRegion = chu_area irRegion = kapchagay_area irRegion = issyk_area } +link = { ck3 = turkish @proto_turks irRegion = sakia_region } link = { ck3 = khazar @proto_turks irRegion = taurica_region irRegion = sarmatia_asiatica_region irRegion = scythia_region } +link = { ck3 = bolghar @proto_turks irRegion = hyperborea_region } +link = { ck3 = pecheneg @proto_turks irRegion = central_asian_steppes_region } +link = { ck3 = uigur @proto_turks irRegion = xiyu_region } # ROA +link = { ck3 = uyghur @proto_turks irRegion = xiyu_region } # ROA link = { ck3 = avar @proto_turks @europe_regions } -link = { ck3 = kurykan @proto_turks irProvince = 5975 } # This corresponds to the Eurasian Northland wasteland province next to Lake Baikal. It seems to have one of these cultures assigned to it, and given the area it covers, I think Kurykan would be the best choice given that it is a Turkic speaking Sayan-Altaic culture. I mainly included this to prevent Oghuz from appearing in the huge out of scope region above Lake Baikal. ~~tanner918 link = { ck3 = turkish @proto_turks } - - -# Terra Indomita to Asia Expansion Project +# Extra Mappings from https://steamcommunity.com/sharedfiles/filedetails/?id=3098496649 +link = { ck3 = cuman ir = cuman } +link = { ck3 = kimek ir = kimek } +link = { ck3 = turkish ir = oghuz } +link = { ck3 = karluk ir = karluk } +link = { ck3 = pecheneg ir = pecheneg } + + +## Huimo Culture Group [Terra-Indomita] +#- Dongwei +#- Fuyu +#- Goguryeo +#- Joseon +#- Lelang +#- Woju +#- Yilyu +link = { ck3 = goguryeo ir = dongwei ir = fuyu ir = goguryeo ir = joseon ir = lelang ir = woju ir = yilyu } + + +## Samhan Culture Group [Terra-Indomita] +#- Byeonhan +#- Jinhan +#- Mahan +link = { ck3 = jeju ir = byeonhan ir = jinhan ir = mahan irProvince = 9285 } # RoA +link = { ck3 = tamna ir = byeonhan ir = jinhan ir = mahan irProvince = 9285 } # AEP +link = { ck3 = samhan ir = byeonhan ir = jinhan ir = mahan } # RoA +link = { ck3 = saro ir = jinhan ir = byeonhan } # AEP +link = { ck3 = silla ir = jinhan ir = byeonhan } # Base Game +link = { ck3 = baekje ir = mahan } # Base Game/AEP + + +## Tungusic Culture Group [Terra-Indomita] +#- Haoshi +#- Huifa +#- Sushen +# Tungusic Mappings +link = { ck3 = mohe ir = haoshi ir = huifa ir = sushen } # Base Game; Wanted to make sure it was before the mods since Jurchen, which diverges from Mohe, will likely eventually be handled through something like an event allowing them to appear +link = { ck3 = evenk ir = haoshi ir = huifa ir = sushen irRegion = amur_area irRegion = sahaliyan_area } # RoA/AEP; To represent that they are a Tungusic culture closer to Siberia +link = { ck3 = udege ir = haoshi } # RoA/AEP; Probably not a perfect match, but should do for now +link = { ck3 = jurchen ir = huifa } # RoA/AEP; Probably not a perfect match, but should do for now +link = { ck3 = nanai ir = sushen } # RoA; Probably not a perfect match, but should do for now +link = { ck3 = mohese ir = sushen } # AEP; Probably not a perfect match, but should do for now + + +## Nivkh Culture Group [Terra-Indomita] +#- Nivkh +#- Susuya +# Nivkh Fallbacks +link = { ck3 = gilyak ir = nivkh ir = susuya } # AEP +link = { ck3 = nivkh ir = nivkh ir = susuya } # RoA/Base Game + + +## Jomon (Emishi) Culture Group [Terra-Indomita] +#- Ezo (ainu) +#- Dewa +#- Duuchuu +#- Emishi +#- Jeulmeun (Special culture from Jomon tag completing a mission about controlling part of Korea; Should a custom culture be created to represent this, or a creation_name that is setup at game start?) +#- Sirakawa (mitinooku) +#- Sunazawa +#- Yaeyama (Special culture from Ryukyuan tag completing a mission about controlling around Formosa; Should a custom culture be created to represent this, or a creation_name that is setup at game start?) +# AEP Mappings link = { ck3 = yaeyama ir = yaeyama } link = { ck3 = yaeyama ir = duuchuu irProvince = 9739 } # Yaeyama island. link = { ck3 = amami ir = duuchuu irProvince = 9734 } # Amami island. -link = { ck3 = okinawa ir = duuchuu irProvince = 9737 } # Okinawa island. link = { ck3 = miyako ir = duuchuu irProvince = 9738 } # Miyako island. +link = { ck3 = okinawa ir = duuchuu irProvince = 9737 } # Okinawa island. link = { ck3 = okinawa ir = duuchuu } # Chose Okinawa culture as the fallback mapping for Duuchuu because it's the biggest island in the Ryukyu archipelago. -link = { ck3 = andamanese ir = andaman } -link = { ck3 = bahnaric ir = bahnar } -link = { ck3 = kinh ir = lacviet } -link = { ck3 = nicobarese ir = holchu } -link = { ck3 = burmese ir = piaoyue } -link = { ck3 = saro ir = jinhan ir = byeonhan } # https://en.wikipedia.org/wiki/Three_Kingdoms_of_Korea#Silla -link = { ck3 = baekje ir = mahan } # https://en.wikipedia.org/wiki/Three_Kingdoms_of_Korea#Baekje -link = { ck3 = ba_shu ir = ba ir = shu } # https://en.wikipedia.org/wiki/Ba%E2%80%93Shu_culture -link = { ck3 = gilyak ir = nivkh ir = susuya } # https://en.wikipedia.org/wiki/Nivkh_people -link = { ck3 = komi ir = permic } # komi is localized as Permian in CK3 -link = { ck3 = mohese ir = haoshi } # Haoshi/Yuexi were one of the Mohe tribes according to https://en.wikipedia.org/wiki/Mohe_people -link = { - # https://en.wikipedia.org/wiki/Xiangkhouang: - # "Xiangkhouang is home to five different ethnic groups: the Tai Dam, Tai Daeng, Phuan, Khmu, and Hmong." - # "Part of the Mon-Khmer branch of the Austro-Asiatic linguistic family, the Khmu are one of the largest ethnic groups in Laos. They settled in the area several thousand years ago." - ck3 = khmu - ir = xiangkhoang -} -link = { - # https://zh.wikipedia.org/wiki/%E5%83%B0%E4%BA%BA: "明代僰人即今日白族之先民。從族姓上來看,明代僰人的段、楊、高、尹諸姓,都是現在白族中的大姓。" - ck3 = bai - ir = bo -} -link = { ck3 = qiang ir = kunming ir = zuo ir = qiongdu } -link = { ck3 = hani ir = dian } # Mapping for now until a better culture can be determine -link = { ck3=yamato ir=nansei ir=aduma ir=kumaso } # Fallback for AEP since it doesn't have same culture split as RoA -link = { ck3 = qay ir = qifu } -link = { ck3 = yi ir = sanmiao } # AEP uses this to represent Miao peoples -link = { ck3=ilokano ir=igorot } # The Igorot people are a group of indigenous peoples who live in the mountainous regions of the Philippines. -link = { ck3=champ ir=linyi } -link = { ck3 = tai ir = ailao } -link = { ck3 = beish ir = lier ck3Province = 12458 ck3Province = 12449 ck3Province = 12436 ck3Province = 12419 } -link = { ck3 = liliao ir = lier } -link = { ck3 = pu ir = gui } # pu called Zhuang in CK3. They are both Tai cultures in the same region, and looking it up, Zhuang peoples are said to be descendants of the Xiou (according to a chinese travel site), and the Nam Cuong tag in Imperator refers to them as the Xiou while having Gui as primary culture -link = { ck3=komi ir=argippaei } -link = { ck3=khanty ir=jiankun ir = itkul ir = bolsherechye } # AEP doesn't add many relevant cultures for this, so this might change if a better option is decided +# Jomon/Emishi Fallbacks +link = { ck3 = ainu ir = ainu } +link = { ck3 = emishi ir = emishi ir = jeulmeun ir = sunazawa ir = dewa ir = mitinooku } +link = { ck3 = ryukyu ir = duuchuu ir = yaeyama } # RoA +link = { ck3 = ryukyuan ir = duuchuu ir = yaeyama } # Base Game + + +## Yayoi (Japanese) Culture Group [Terra-Indomita] +#- Aduma +#- Jomon (jomon_yayoi; Special culture dealing with a Jomon culture "Yayoifying", becoming closer to the Yayoi (Japanese); Should a custom culture be created to represent this?) +#- Kumaso +#- Nansei (Special culture dealing with Kumaso tag controlling or around Ryukyu, or vice versa; Should a custom culture be created to represent this?) +#- Wa +# Yayoi/Japanese Fallbacks +link = { ck3 = yamato ir = aduma ir = kumaso ir = nansei ir = wa ir = jomon_yayoi } # RoA/AEP +link = { ck3 = japanese ir = aduma ir = kumaso ir = nansei ir = wa ir = jomon_yayoi } # Base Game +# RoA Mappings +# These won't get used by default since even RoA just uses Yamato, but left them here in case you want more variety in the Japanese mappings since RoA includes them. Just put these mappings before the Fallback mappings above to use them. +link = { ck3 = hayato ir = kumaso } # RoA +link = { ck3 = oshu ir = aduma } # RoA +link = { ck3 = kyushu ir = nansei } # RoA diff --git a/ImperatorToCK3/Data_Files/configurables/heritage_empires_map.txt b/ImperatorToCK3/Data_Files/configurables/heritage_empires_map.txt index b96e9bf5c..a0f07a329 100644 --- a/ImperatorToCK3/Data_Files/configurables/heritage_empires_map.txt +++ b/ImperatorToCK3/Data_Files/configurables/heritage_empires_map.txt @@ -35,6 +35,11 @@ heritage_west_slavic = e_west_slavia heritage_west_slavic = e_slavia heritage_east_slavic = e_slavia heritage_south_slavic = e_slavia +heritage_buyeo = e_goryeo +heritage_korean = e_goryeo +heritage_japonic = e_japan +heritage_albanian = e_illyria +heritage_anatolian = e_anatolia # Terra-Indomita to Rajas of Asia heritage_korean = e_haedong @@ -45,4 +50,7 @@ heritage_filipino = e_panyupayana heritage_micronesian = e_micronesia # Out of scope, but should make sure that the Micronesian islands use correct empire title ~~tanner918 heritage_burmese = e_burma heritage_sayan_altaic = e_sayan -heritage_tatar = e_mongolia # Rajas of Asia moves quite a few Mongolic cultures to this new heritage, including Mongol itself, so I think this makes sense ~~tanner918 \ No newline at end of file +heritage_tatar = e_mongolia # Rajas of Asia moves quite a few Mongolic cultures to this new heritage, including Mongol itself, so I think this makes sense ~~tanner918 + +# Terra-Indomita to vanilla CK3 +heritage_chinese = none # China is a hegemony level title (h_china), so we can't use it. Setting to none will prevent a new empire from being created. \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_cultural_heritages_l_english.yml b/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_cultural_heritages_l_english.yml index be9aefdac..302f34dcf 100644 --- a/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_cultural_heritages_l_english.yml +++ b/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_cultural_heritages_l_english.yml @@ -36,4 +36,10 @@ heritage_mon_khmer_name: "Mon-Khmer" heritage_mon_khmer_collective_noun: "Mon-Khmers" heritage_italic_name: "Italic" - heritage_italic_collective_noun: "Italians" \ No newline at end of file + heritage_italic_collective_noun: "Italians" + heritage_loloish_name: "Lolo" + heritage_loloish_collective_noun: "Lolos" + heritage_baiyue_name: "Baiyue" + heritage_baiyue_collective_noun: "Baiyue" + heritage_dongyi_name: "Dongyi" + heritage_dongyi_collective_noun: "Dongyi" diff --git a/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_cultures_l_english.yml b/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_cultures_l_english.yml index de97a106e..dd50ae051 100644 --- a/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_cultures_l_english.yml +++ b/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_cultures_l_english.yml @@ -1,4 +1,4 @@ -# ImperatorToCK3: Last updated CK3 patch 1.12.5 +# ImperatorToCK3: Last updated CK3 patch 1.18.0.2 # potentially useful resource: https://en.wiktionary.org/wiki/Category:English_prefixes l_english: numidian: "Numidian" @@ -446,3 +446,15 @@ l_english: kizzuwatnan: "Kizzuwatnan" kizzuwatnan_collective_noun: "Kizzuwatnans" kizzuwatnan_prefix: "Kizzuwatno" + + old_bashu: "Bashu" + old_bashu_collective_noun: "Bashu" + old_bashu_prefix: "Basho" + + baiyue: "Baiyue" + baiyue_collective_noun: "Baiyue" + baiyue_prefix: "Baiyo" + + dongyi: "Dongyi" + dongyi_collective_noun: "Dongyi" + dongyi_prefix: "Dongyo" \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_decisions_l_english.yml b/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_decisions_l_english.yml index 4d1d50655..180a72f76 100644 --- a/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_decisions_l_english.yml +++ b/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_decisions_l_english.yml @@ -4,4 +4,4 @@ thrace_has_no_holder: "[GetTitleByKey('d_thrace').GetName] has no [holder|E]" top_liege_of_thrace_holder: "You are the [top_liege|E] of [GetTitleByKey('d_thrace').GetName]" owns_constantinople_tt: "You own the [GetTitleByKey('c_byzantion').GetName]" - irtock3_only_roman_emperor: "Hold both [GetTitleByKey('e_byzantium').GetNameNoTier] and [GetTitleByKey('e_western_roman_empire').GetNameNoTier], or hold one with no one holding the other." \ No newline at end of file + irtock3_only_roman_emperor: "Hold both [GetTitleByKey('h_eastern_roman_empire').GetNameNoTier] and [GetTitleByKey('h_western_roman_empire').GetNameNoTier], or hold one with no one holding the other." \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_languages_l_english.yml b/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_languages_l_english.yml index 32bae4008..1f8196c5a 100644 --- a/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_languages_l_english.yml +++ b/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_languages_l_english.yml @@ -38,4 +38,10 @@ language_minoan_name: "$minoan$" language_cycladic_name: "$cycladic$" language_pelasgian_name: "$pelasgian$" - language_illyrian_name: "$dalmatian$" \ No newline at end of file + language_illyrian_name: "$dalmatian$" + language_bashu_name: "$old_bashu$" + language_tujian_name: "Tujian" + language_bai_name: "$bai$" + language_baiyue_name: "$baiyue$" + language_dongyi_name: "$dongyi$" + language_yi_name: "$yi$" diff --git a/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_religions_l_english.yml b/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_religions_l_english.yml index e1b172a58..1d9aa9510 100644 --- a/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_religions_l_english.yml +++ b/ImperatorToCK3/Data_Files/configurables/localization/base/english/CONVERTER_religions_l_english.yml @@ -497,4 +497,55 @@ illyrian_pagan_water_god_name: "Bindus" illyrian_pagan_water_god_name_possessive: "Bindus'" illyrian_pagan_devil_name: "Velnias" - illyrian_pagan_devil_name_poessessive: "Velnias'" \ No newline at end of file + illyrian_pagan_devil_name_poessessive: "Velnias'" + + #--------------------------------------------------- + # CHINESE + #--------------------------------------------------- + chinese_religion: "Shenic" + chinese_religion_adj: "Shenic" + chinese_religion_adherent: "Shenist" + chinese_religion_adherent_plural: "Shenists" + chinese_religion_desc: "The Shenic faith embodies the worship of gods, spirits, and ancestors that guide the living. Through ritual, incense, and reverence for Heaven and Earth, followers maintain harmony with the divine forces that shape all things." + + shenic: "Shenic" + shenic_adj: "Shenic" + shenic_desc: "$chinese_religion_desc$" + shenic_adherent: "Shenist" + shenic_adherent_plural: "Shenists" + shenic_old: "Old Shenic" + shenic_old_adj: "Old Shenic" + shenic_old_adherent: "Old Shenist" + shenic_old_adherent_plural: "Old Shenists" + + #--------------------------------------------------- + # MOHISM + #--------------------------------------------------- + mohism: "Mohism" + mohism_adj: "Mohist" + mohism_desc: "Mohism focuses on the teachings of Mozi. Of these, the most prominent is that of altruism, and universal concern and caring for everyone, whether they be family or a stranger." + mohism_adherent: "Mohist" + mohism_adherent_plural: "Mohists" + mohism_old: "Old Mohism" + mohism_old_adj: "Old Mohist" + mohism_old_adherent: "Old Mohist" + mohism_old_adherent_plural: "Old Mohists" + + #--------------------------------------------------- + # BAIYUE + #--------------------------------------------------- + baiyue_religion: "Baiyue" + baiyue_religion_adj: "Baiyue" + baiyue_religion_adherent: "Baiyue" + baiyue_religion_adherent_plural: "Baiyue" + baiyue_religion_desc: "The Baiyue worship the spirits of nature and their ancestors, calling upon mountain, river, and sky to bless their harvests and guide their kin." + + baiyue_faith: "Baiyue" + baiyue_faith_adj: "Baiyue" + baiyue_faith_desc: "$baiyue_religion_desc$" + baiyue_faith_adherent: "Baiyue" + baiyue_faith_adherent_plural: "Baiyue" + baiyue_faith_old: "Old Baiyue" + baiyue_faith_old_adj: "Old Baiyue" + baiyue_faith_old_adherent: "Old Baiyue" + baiyue_faith_old_adherent_plural: "Old Baiyue" \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/configurables/province_mappings/invictus_1_7_to_vanilla_ck3.txt b/ImperatorToCK3/Data_Files/configurables/province_mappings/invictus_1_7_to_vanilla_ck3.txt new file mode 100644 index 000000000..f24cde774 --- /dev/null +++ b/ImperatorToCK3/Data_Files/configurables/province_mappings/invictus_1_7_to_vanilla_ck3.txt @@ -0,0 +1,5802 @@ +invictus_1_7_to_vanilla_ck3 = { + triangulation_pair = { srcX = 5683 srcY = 418 dstX = 4784 dstY = 1941 } + triangulation_pair = { srcX = 5141 srcY = 535 dstX = 4410 dstY = 1849 } + triangulation_pair = { srcX = 1873 srcY = 1404 dstX = 1814 dstY = 1835 } + triangulation_pair = { srcX = 1926 srcY = 1396 dstX = 1862 dstY = 1828 } + triangulation_pair = { srcX = 1860 srcY = 1238 dstX = 1807 dstY = 1687 } + triangulation_pair = { srcX = 1741 srcY = 1288 dstX = 1696 dstY = 1726 } + triangulation_pair = { srcX = 2376 srcY = 1630 dstX = 2246 dstY = 2055 } + triangulation_pair = { srcX = 2404 srcY = 1800 dstX = 2258 dstY = 2198 } + triangulation_pair = { srcX = 2178 srcY = 1691 dstX = 2074 dstY = 2092 } + triangulation_pair = { srcX = 2157 srcY = 1510 dstX = 2062 dstY = 1939 } + triangulation_pair = { srcX = 2057 srcY = 1483 dstX = 1974 dstY = 1911 } + triangulation_pair = { srcX = 2078 srcY = 1566 dstX = 1992 dstY = 1982 } + triangulation_pair = { srcX = 2008 srcY = 1605 dstX = 1929 dstY = 2014 } + triangulation_pair = { srcX = 1931 srcY = 1624 dstX = 1863 dstY = 2028 } + triangulation_pair = { srcX = 1893 srcY = 1560 dstX = 1831 dstY = 1972 } + triangulation_pair = { srcX = 1994 srcY = 1464 dstX = 1921 dstY = 1890 } + triangulation_pair = { srcX = 1923 srcY = 1454 dstX = 1858 dstY = 1878 } + triangulation_pair = { srcX = 1971 srcY = 1416 dstX = 1901 dstY = 1846 } + triangulation_pair = { srcX = 1937 srcY = 1397 dstX = 1873 dstY = 1829 } + triangulation_pair = { srcX = 3333 srcY = 3394 dstX = 2723 dstY = 3223 } + triangulation_pair = { srcX = 3169 srcY = 2582 dstX = 2741 dstY = 2818 } + triangulation_pair = { srcX = 3094 srcY = 2500 dstX = 2700 dstY = 2760 } + triangulation_pair = { srcX = 3466 srcY = 3184 dstX = 2829 dstY = 3129 } + triangulation_pair = { srcX = 3692 srcY = 3625 dstX = 2902 dstY = 3367 } + triangulation_pair = { srcX = 3938 srcY = 2059 dstX = 3314 dstY = 2536 } + triangulation_pair = { srcX = 3854 srcY = 2016 dstX = 3271 dstY = 2498 } + triangulation_pair = { srcX = 3485 srcY = 2089 dstX = 3021 dstY = 2510 } + triangulation_pair = { srcX = 3293 srcY = 2136 dstX = 2891 dstY = 2525 } + triangulation_pair = { srcX = 3454 srcY = 2301 dstX = 2972 dstY = 2654 } + triangulation_pair = { srcX = 3775 srcY = 2942 dstX = 3053 dstY = 3031 } + triangulation_pair = { srcX = 4027 srcY = 3190 dstX = 3153 dstY = 3183 } + triangulation_pair = { srcX = 4430 srcY = 3498 dstX = 3319 dstY = 3399 } + triangulation_pair = { srcX = 4309 srcY = 3635 dstX = 3234 dstY = 3451 } + triangulation_pair = { srcX = 4622 srcY = 2389 dstX = 3629 dstY = 2838 } + triangulation_pair = { srcX = 4778 srcY = 2480 dstX = 3692 dstY = 2920 } + triangulation_pair = { srcX = 4906 srcY = 2561 dstX = 3743 dstY = 2991 } + triangulation_pair = { srcX = 5079 srcY = 2490 dstX = 3856 dstY = 2985 } + triangulation_pair = { srcX = 5188 srcY = 2227 dstX = 3982 dstY = 2864 } + triangulation_pair = { srcX = 5588 srcY = 2401 dstX = 4158 dstY = 3052 } + triangulation_pair = { srcX = 5604 srcY = 2630 dstX = 4108 dstY = 3180 } + triangulation_pair = { srcX = 5544 srcY = 2930 dstX = 4006 dstY = 3328 } + triangulation_pair = { srcX = 5021 srcY = 3520 dstX = 3611 dstY = 3526 } + triangulation_pair = { srcX = 4800 srcY = 3728 dstX = 3465 dstY = 3586 } + triangulation_pair = { srcX = 7087 srcY = 2225 dstX = 5009 dstY = 3366 } + triangulation_pair = { srcX = 7048 srcY = 2012 dstX = 5039 dstY = 3225 } + triangulation_pair = { srcX = 7361 srcY = 2529 dstX = 5066 dstY = 3626 } + triangulation_pair = { srcX = 5965 srcY = 1629 dstX = 4570 dstY = 2722 } + triangulation_pair = { srcX = 3763 srcY = 1754 dstX = 3260 dstY = 2309 } + triangulation_pair = { srcX = 3592 srcY = 1734 dstX = 3150 dstY = 2270 } + triangulation_pair = { srcX = 3566 srcY = 1759 dstX = 3131 dstY = 2283 } + triangulation_pair = { srcX = 3518 srcY = 1711 dstX = 3105 dstY = 2241 } + triangulation_pair = { srcX = 3454 srcY = 1832 dstX = 3043 dstY = 2321 } + triangulation_pair = { srcX = 3414 srcY = 1860 dstX = 3015 dstY = 2336 } + triangulation_pair = { srcX = 3548 srcY = 1925 dstX = 3094 dstY = 2401 } + triangulation_pair = { srcX = 3725 srcY = 1872 dstX = 3217 dstY = 2385 } + triangulation_pair = { srcX = 3734 srcY = 1991 dstX = 3201 dstY = 2467 } + triangulation_pair = { srcX = 3857 srcY = 1805 dstX = 3311 dstY = 2360 } + triangulation_pair = { srcX = 3909 srcY = 1851 dstX = 3336 dstY = 2401 } + triangulation_pair = { srcX = 4079 srcY = 2053 dstX = 3397 dstY = 2554 } + triangulation_pair = { srcX = 4038 srcY = 1994 dstX = 3384 dstY = 2508 } + triangulation_pair = { srcX = 4361 srcY = 2155 dstX = 3538 dstY = 2665 } + triangulation_pair = { srcX = 4220 srcY = 2055 dstX = 3478 dstY = 2577 } + triangulation_pair = { srcX = 4482 srcY = 1987 dstX = 3641 dstY = 2580 } + triangulation_pair = { srcX = 4427 srcY = 2003 dstX = 3607 dstY = 2580 } + triangulation_pair = { srcX = 4428 srcY = 2056 dstX = 3597 dstY = 2611 } + triangulation_pair = { srcX = 4393 srcY = 2086 dstX = 3569 dstY = 2623 } + triangulation_pair = { srcX = 4438 srcY = 2281 dstX = 3554 dstY = 2745 } + triangulation_pair = { srcX = 4541 srcY = 2168 dstX = 3632 dstY = 2700 } + triangulation_pair = { srcX = 4717 srcY = 2091 dstX = 3753 dstY = 2689 } + triangulation_pair = { srcX = 4778 srcY = 2079 dstX = 3788 dstY = 2693 } + triangulation_pair = { srcX = 4761 srcY = 2152 dstX = 3762 dstY = 2733 } + triangulation_pair = { srcX = 4657 srcY = 2201 dstX = 3690 dstY = 2740 } + triangulation_pair = { srcX = 4741 srcY = 2264 dstX = 3723 dstY = 2792 } + triangulation_pair = { srcX = 4813 srcY = 2233 dstX = 3770 dstY = 2790 } + triangulation_pair = { srcX = 4992 srcY = 2307 dstX = 3851 dstY = 2867 } + triangulation_pair = { srcX = 4944 srcY = 2305 dstX = 3829 dstY = 2856 } + triangulation_pair = { srcX = 5103 srcY = 2211 dstX = 3937 dstY = 2838 } + triangulation_pair = { srcX = 5158 srcY = 2174 dstX = 3979 dstY = 2830 } + triangulation_pair = { srcX = 5127 srcY = 1969 dstX = 4011 dstY = 2710 } + triangulation_pair = { srcX = 5230 srcY = 1886 dstX = 4089 dstY = 2688 } + triangulation_pair = { srcX = 5446 srcY = 2004 dstX = 4179 dstY = 2804 } + triangulation_pair = { srcX = 5325 srcY = 2172 dstX = 4070 dstY = 2867 } + triangulation_pair = { srcX = 5353 srcY = 2218 dstX = 4075 dstY = 2899 } + triangulation_pair = { srcX = 5656 srcY = 2097 dstX = 4272 dstY = 2904 } + triangulation_pair = { srcX = 5593 srcY = 2132 dstX = 4227 dstY = 2908 } + triangulation_pair = { srcX = 5535 srcY = 2056 dstX = 4215 dstY = 2852 } + triangulation_pair = { srcX = 5493 srcY = 2168 dstX = 4163 dstY = 2902 } + triangulation_pair = { srcX = 5524 srcY = 2156 dstX = 4183 dstY = 2903 } + triangulation_pair = { srcX = 5804 srcY = 2001 dstX = 4378 dstY = 2888 } + triangulation_pair = { srcX = 5962 srcY = 1938 dstX = 4483 dstY = 2893 } + triangulation_pair = { srcX = 6139 srcY = 1950 dstX = 4577 dstY = 2946 } + triangulation_pair = { srcX = 6347 srcY = 1819 dstX = 4728 dstY = 2932 } + triangulation_pair = { srcX = 6268 srcY = 1828 dstX = 4684 dstY = 2918 } + triangulation_pair = { srcX = 6250 srcY = 1878 dstX = 4661 dstY = 2938 } + triangulation_pair = { srcX = 6295 srcY = 1918 dstX = 4671 dstY = 2970 } + triangulation_pair = { srcX = 6393 srcY = 1837 dstX = 4748 dstY = 2953 } + triangulation_pair = { srcX = 7598 srcY = 2525 dstX = 5191 dstY = 3695 } + triangulation_pair = { srcX = 7644 srcY = 2423 dstX = 5252 dstY = 3661 } + triangulation_pair = { srcX = 7544 srcY = 2329 dstX = 5233 dstY = 3578 } + triangulation_pair = { srcX = 7440 srcY = 2385 dstX = 5149 dstY = 3555 } + triangulation_pair = { srcX = 6936 srcY = 2148 dstX = 4956 dstY = 3276 } + triangulation_pair = { srcX = 7062 srcY = 2110 dstX = 5029 dstY = 3295 } + triangulation_pair = { srcX = 7118 srcY = 2036 dstX = 5088 dstY = 3275 } + triangulation_pair = { srcX = 7207 srcY = 2023 dstX = 5138 dstY = 3295 } + triangulation_pair = { srcX = 7256 srcY = 1902 dstX = 5215 dstY = 3243 } + triangulation_pair = { srcX = 7284 srcY = 1859 dstX = 5233 dstY = 3234 } + triangulation_pair = { srcX = 7458 srcY = 251 dstX = 5882 dstY = 2489 } + triangulation_pair = { srcX = 7706 srcY = 405 dstX = 5953 dstY = 2629 } + triangulation_pair = { srcX = 7571 srcY = 267 dstX = 5927 dstY = 2530 } + triangulation_pair = { srcX = 7856 srcY = 472 dstX = 6003 dstY = 2712 } + triangulation_pair = { srcX = 7754 srcY = 566 dstX = 5911 dstY = 2727 } + triangulation_pair = { srcX = 7794 srcY = 658 dstX = 5892 dstY = 2786 } + triangulation_pair = { srcX = 7560 srcY = 851 dstX = 5700 dstY = 2807 } + triangulation_pair = { srcX = 7672 srcY = 852 dstX = 5754 dstY = 2848 } + triangulation_pair = { srcX = 7400 srcY = 764 dstX = 5642 dstY = 2712 } + triangulation_pair = { srcX = 6533 srcY = 1902 dstX = 4807 dstY = 3023 } + triangulation_pair = { srcX = 6563 srcY = 1936 dstX = 4816 dstY = 3051 } + triangulation_pair = { srcX = 6477 srcY = 1864 dstX = 4796 dstY = 2987 } + triangulation_pair = { srcX = 6561 srcY = 1410 dstX = 4965 dstY = 2776 } + triangulation_pair = { srcX = 6569 srcY = 1379 dstX = 4982 dstY = 2754 } + triangulation_pair = { srcX = 6780 srcY = 1222 dstX = 5146 dstY = 2737 } + triangulation_pair = { srcX = 6694 srcY = 1233 dstX = 5085 dstY = 2702 } + triangulation_pair = { srcX = 6938 srcY = 1307 dstX = 5218 dstY = 2832 } + triangulation_pair = { srcX = 7077 srcY = 996 dstX = 5378 dstY = 2717 } + triangulation_pair = { srcX = 7512 srcY = 1299 dstX = 5520 dstY = 3021 } + triangulation_pair = { srcX = 7479 srcY = 1139 dstX = 5560 dstY = 2923 } + triangulation_pair = { srcX = 7507 srcY = 1214 dstX = 5548 dstY = 2969 } + triangulation_pair = { srcX = 7102 srcY = 980 dstX = 5397 dstY = 2716 } + triangulation_pair = { srcX = 6932 srcY = 882 dstX = 5346 dstY = 2611 } + triangulation_pair = { srcX = 7139 srcY = 801 dstX = 5500 dstY = 2623 } + triangulation_pair = { srcX = 7268 srcY = 868 dstX = 5549 dstY = 2733 } + triangulation_pair = { srcX = 7352 srcY = 906 dstX = 5571 dstY = 2763 } + triangulation_pair = { srcX = 7086 srcY = 1894 dstX = 5117 dstY = 3193 } + triangulation_pair = { srcX = 6791 srcY = 1926 dstX = 4951 dstY = 3110 } + triangulation_pair = { srcX = 7016 srcY = 1850 dstX = 5094 dstY = 3138 } + triangulation_pair = { srcX = 6980 srcY = 1483 dstX = 5178 dstY = 2931 } + triangulation_pair = { srcX = 6976 srcY = 1442 dstX = 5189 dstY = 2916 } + triangulation_pair = { srcX = 7164 srcY = 1392 dstX = 5303 dstY = 2948 } + triangulation_pair = { srcX = 6968 srcY = 1797 dstX = 5093 dstY = 3105 } + triangulation_pair = { srcX = 6935 srcY = 1513 dstX = 5147 dstY = 2939 } + triangulation_pair = { srcX = 7111 srcY = 1694 dstX = 5186 dstY = 3081 } + triangulation_pair = { srcX = 7420 srcY = 1722 dstX = 5352 dstY = 3213 } + triangulation_pair = { srcX = 2908 srcY = 1692 dstX = 2667 dstY = 2150 } + triangulation_pair = { srcX = 2794 srcY = 1746 dstX = 2577 dstY = 2182 } + triangulation_pair = { srcX = 2738 srcY = 1734 dstX = 2535 dstY = 2166 } + triangulation_pair = { srcX = 2620 srcY = 1742 dstX = 2445 dstY = 2168 } + triangulation_pair = { srcX = 2565 srcY = 1989 dstX = 2382 dstY = 2360 } + triangulation_pair = { srcX = 2451 srcY = 1917 dstX = 2296 dstY = 2297 } + triangulation_pair = { srcX = 2548 srcY = 1932 dstX = 2374 dstY = 2315 } + triangulation_pair = { srcX = 2488 srcY = 1806 dstX = 2335 dstY = 2207 } + triangulation_pair = { srcX = 2478 srcY = 1764 dstX = 2326 dstY = 2172 } + triangulation_pair = { srcX = 2540 srcY = 1771 dstX = 2379 dstY = 2181 } + triangulation_pair = { srcX = 2677 srcY = 1304 dstX = 2509 dstY = 1813 } + triangulation_pair = { srcX = 2672 srcY = 1376 dstX = 2503 dstY = 1870 } + triangulation_pair = { srcX = 2610 srcY = 1445 dstX = 2447 dstY = 1916 } + triangulation_pair = { srcX = 2492 srcY = 1497 dstX = 2350 dstY = 1948 } + triangulation_pair = { srcX = 2427 srcY = 1500 dstX = 2302 dstY = 1946 } + triangulation_pair = { srcX = 2651 srcY = 1313 dstX = 2487 dstY = 1816 } + triangulation_pair = { srcX = 2474 srcY = 1172 dstX = 2387 dstY = 1713 } + triangulation_pair = { srcX = 2585 srcY = 1226 dstX = 2436 dstY = 1741 } + triangulation_pair = { srcX = 2385 srcY = 1203 dstX = 2269 dstY = 1696 } + triangulation_pair = { srcX = 2173 srcY = 1219 dstX = 2083 dstY = 1690 } + triangulation_pair = { srcX = 2162 srcY = 1268 dstX = 2074 dstY = 1734 } + triangulation_pair = { srcX = 2070 srcY = 1306 dstX = 1992 dstY = 1761 } + triangulation_pair = { srcX = 1962 srcY = 1322 dstX = 1896 dstY = 1766 } + triangulation_pair = { srcX = 1978 srcY = 1286 dstX = 1921 dstY = 1733 } + triangulation_pair = { srcX = 1738 srcY = 1133 dstX = 1695 dstY = 1584 } + triangulation_pair = { srcX = 1713 srcY = 1162 dstX = 1667 dstY = 1613 } + triangulation_pair = { srcX = 1644 srcY = 1145 dstX = 1609 dstY = 1593 } + triangulation_pair = { srcX = 1642 srcY = 1106 dstX = 1599 dstY = 1554 } + triangulation_pair = { srcX = 1585 srcY = 1124 dstX = 1551 dstY = 1568 } + triangulation_pair = { srcX = 1574 srcY = 1265 dstX = 1541 dstY = 1702 } + triangulation_pair = { srcX = 1606 srcY = 1304 dstX = 1571 dstY = 1737 } + triangulation_pair = { srcX = 1587 srcY = 1381 dstX = 1554 dstY = 1806 } + triangulation_pair = { srcX = 1594 srcY = 1446 dstX = 1559 dstY = 1863 } + triangulation_pair = { srcX = 1531 srcY = 1441 dstX = 1506 dstY = 1858 } + triangulation_pair = { srcX = 1483 srcY = 1439 dstX = 1462 dstY = 1852 } + triangulation_pair = { srcX = 1457 srcY = 1451 dstX = 1437 dstY = 1862 } + triangulation_pair = { srcX = 1344 srcY = 1326 dstX = 1328 dstY = 1747 } + triangulation_pair = { srcX = 1330 srcY = 1289 dstX = 1315 dstY = 1715 } + triangulation_pair = { srcX = 1337 srcY = 1232 dstX = 1319 dstY = 1655 } + triangulation_pair = { srcX = 1234 srcY = 1275 dstX = 1222 dstY = 1698 } + triangulation_pair = { srcX = 1262 srcY = 1394 dstX = 1255 dstY = 1802 } + triangulation_pair = { srcX = 1302 srcY = 1563 dstX = 1306 dstY = 1955 } + triangulation_pair = { srcX = 1266 srcY = 1561 dstX = 1274 dstY = 1950 } + triangulation_pair = { srcX = 1309 srcY = 1625 dstX = 1318 dstY = 2009 } + triangulation_pair = { srcX = 1113 srcY = 1594 dstX = 1137 dstY = 1981 } + triangulation_pair = { srcX = 1157 srcY = 1572 dstX = 1174 dstY = 1955 } + triangulation_pair = { srcX = 1197 srcY = 1591 dstX = 1214 dstY = 1977 } + triangulation_pair = { srcX = 866 srcY = 1978 dstX = 975 dstY = 2299 } + triangulation_pair = { srcX = 676 srcY = 2138 dstX = 842 dstY = 2428 } + triangulation_pair = { srcX = 790 srcY = 2068 dstX = 927 dstY = 2371 } + triangulation_pair = { srcX = 447 srcY = 2178 dstX = 666 dstY = 2468 } + triangulation_pair = { srcX = 382 srcY = 2088 dstX = 595 dstY = 2405 } + triangulation_pair = { srcX = 715 srcY = 1696 dstX = 805 dstY = 2073 } + triangulation_pair = { srcX = 740 srcY = 1775 dstX = 840 dstY = 2136 } + triangulation_pair = { srcX = 576 srcY = 1919 dstX = 726 dstY = 2261 } + triangulation_pair = { srcX = 513 srcY = 1874 dstX = 668 dstY = 2234 } + triangulation_pair = { srcX = 477 srcY = 1678 dstX = 606 dstY = 2078 } + triangulation_pair = { srcX = 651 srcY = 1527 dstX = 727 dstY = 1938 } + triangulation_pair = { srcX = 646 srcY = 1588 dstX = 732 dstY = 1988 } + triangulation_pair = { srcX = 825 srcY = 1474 dstX = 872 dstY = 1866 } + triangulation_pair = { srcX = 870 srcY = 1424 dstX = 904 dstY = 1826 } + triangulation_pair = { srcX = 919 srcY = 1485 dstX = 954 dstY = 1885 } + triangulation_pair = { srcX = 1064 srcY = 1468 dstX = 1077 dstY = 1869 } + triangulation_pair = { srcX = 960 srcY = 1512 dstX = 993 dstY = 1909 } + triangulation_pair = { srcX = 982 srcY = 1564 dstX = 1017 dstY = 1957 } + triangulation_pair = { srcX = 1099 srcY = 1677 dstX = 1134 dstY = 2049 } + triangulation_pair = { srcX = 923 srcY = 1808 dstX = 1003 dstY = 2159 } + triangulation_pair = { srcX = 1076 srcY = 1886 dstX = 1142 dstY = 2224 } + triangulation_pair = { srcX = 1150 srcY = 1906 dstX = 1204 dstY = 2241 } + triangulation_pair = { srcX = 959 srcY = 1992 dstX = 1055 dstY = 2309 } + triangulation_pair = { srcX = 3171 srcY = 1597 dstX = 2878 dstY = 2108 } + triangulation_pair = { srcX = 3143 srcY = 1786 dstX = 2826 dstY = 2253 } + triangulation_pair = { srcX = 3179 srcY = 1859 dstX = 2854 dstY = 2300 } + triangulation_pair = { srcX = 2942 srcY = 1949 dstX = 2664 dstY = 2358 } + triangulation_pair = { srcX = 2954 srcY = 1964 dstX = 2672 dstY = 2374 } + triangulation_pair = { srcX = 3005 srcY = 2086 dstX = 2696 dstY = 2474 } + triangulation_pair = { srcX = 3025 srcY = 2023 dstX = 2720 dstY = 2428 } + triangulation_pair = { srcX = 3396 srcY = 2006 dstX = 2983 dstY = 2446 } + triangulation_pair = { srcX = 3306 srcY = 1966 dstX = 2925 dstY = 2407 } + triangulation_pair = { srcX = 3311 srcY = 2064 dstX = 2915 dstY = 2475 } + triangulation_pair = { srcX = 3258 srcY = 2021 dstX = 2884 dstY = 2444 } + triangulation_pair = { srcX = 3226 srcY = 2188 dstX = 2838 dstY = 2560 } + triangulation_pair = { srcX = 2914 srcY = 2559 dstX = 2568 dstY = 2785 } + triangulation_pair = { srcX = 3170 srcY = 2666 dstX = 2723 dstY = 2852 } + triangulation_pair = { srcX = 3392 srcY = 2923 dstX = 2824 dstY = 2995 } + triangulation_pair = { srcX = 3465 srcY = 2784 dstX = 2894 dstY = 2928 } + triangulation_pair = { srcX = 3687 srcY = 3050 dstX = 2985 dstY = 3082 } + triangulation_pair = { srcX = 3892 srcY = 3286 dstX = 3062 dstY = 3217 } + triangulation_pair = { srcX = 3996 srcY = 3137 dstX = 3144 dstY = 3152 } + triangulation_pair = { srcX = 5398 srcY = 991 dstX = 4428 dstY = 2199 } + triangulation_pair = { srcX = 4756 srcY = 875 dstX = 4070 dstY = 1950 } + triangulation_pair = { srcX = 5041 srcY = 987 dstX = 4209 dstY = 2098 } + triangulation_pair = { srcX = 4858 srcY = 900 dstX = 4120 dstY = 1990 } + triangulation_pair = { srcX = 7239 srcY = 1623 dstX = 5279 dstY = 3096 } + triangulation_pair = { srcX = 7188 srcY = 1717 dstX = 5223 dstY = 3131 } + triangulation_pair = { srcX = 7153 srcY = 1729 dstX = 5207 dstY = 3125 } + triangulation_pair = { srcX = 7418 srcY = 1806 dstX = 5326 dstY = 3257 } + triangulation_pair = { srcX = 7414 srcY = 2008 dstX = 5264 dstY = 3364 } + triangulation_pair = { srcX = 7548 srcY = 2236 dstX = 5264 dstY = 3528 } + triangulation_pair = { srcX = 7530 srcY = 2159 dstX = 5278 dstY = 3483 } + triangulation_pair = { srcX = 4067 srcY = 734 dstX = 3634 dstY = 1642 } + triangulation_pair = { srcX = 3938 srcY = 526 dstX = 3584 dstY = 1460 } + triangulation_pair = { srcX = 3879 srcY = 406 dstX = 3559 dstY = 1359 } + triangulation_pair = { srcX = 4021 srcY = 687 dstX = 3614 dstY = 1601 } + triangulation_pair = { srcX = 4245 srcY = 181 dstX = 3880 dstY = 1316 } + triangulation_pair = { srcX = 4246 srcY = 239 dstX = 3866 dstY = 1355 } + triangulation_pair = { srcX = 4072 srcY = 260 dstX = 3728 dstY = 1315 } + triangulation_pair = { srcX = 4203 srcY = 46 dstX = 3878 dstY = 1213 } + triangulation_pair = { srcX = 4234 srcY = 103 dstX = 3890 dstY = 1260 } + triangulation_pair = { srcX = 3606 srcY = 228 dstX = 3254 dstY = 1151 } + triangulation_pair = { srcX = 3440 srcY = 88 dstX = 3070 dstY = 983 } + triangulation_pair = { srcX = 3518 srcY = 86 dstX = 3144 dstY = 1003 } + triangulation_pair = { srcX = 3582 srcY = 86 dstX = 3218 dstY = 1033 } + triangulation_pair = { srcX = 3314 srcY = 137 dstX = 2951 dstY = 984 } + triangulation_pair = { srcX = 3236 srcY = 65 dstX = 2881 dstY = 906 } + triangulation_pair = { srcX = 3064 srcY = 101 dstX = 2742 dstY = 894 } + triangulation_pair = { srcX = 2956 srcY = 160 dstX = 2660 dstY = 919 } + triangulation_pair = { srcX = 2912 srcY = 233 dstX = 2627 dstY = 972 } + triangulation_pair = { srcX = 2828 srcY = 260 dstX = 2564 dstY = 980 } + triangulation_pair = { srcX = 2773 srcY = 288 dstX = 2524 dstY = 992 } + triangulation_pair = { srcX = 2691 srcY = 79 dstX = 2460 dstY = 831 } + triangulation_pair = { srcX = 2657 srcY = 120 dstX = 2436 dstY = 852 } + triangulation_pair = { srcX = 2559 srcY = 11 dstX = 2364 dstY = 760 } + triangulation_pair = { srcX = 2285 srcY = 92 dstX = 2174 dstY = 783 } + triangulation_pair = { srcX = 2121 srcY = 178 dstX = 2063 dstY = 817 } + triangulation_pair = { srcX = 2173 srcY = 163 dstX = 2109 dstY = 814 } + triangulation_pair = { srcX = 2133 srcY = 270 dstX = 2076 dstY = 885 } + triangulation_pair = { srcX = 2258 srcY = 216 dstX = 2180 dstY = 868 } + triangulation_pair = { srcX = 2248 srcY = 330 dstX = 2163 dstY = 954 } + triangulation_pair = { srcX = 2471 srcY = 406 dstX = 2322 dstY = 1045 } + triangulation_pair = { srcX = 2344 srcY = 356 dstX = 2229 dstY = 986 } + triangulation_pair = { srcX = 2442 srcY = 368 dstX = 2299 dstY = 1013 } + triangulation_pair = { srcX = 2556 srcY = 724 dstX = 2383 dstY = 1315 } + triangulation_pair = { srcX = 2874 srcY = 518 dstX = 2608 dstY = 1199 } + triangulation_pair = { srcX = 2872 srcY = 602 dstX = 2609 dstY = 1269 } + triangulation_pair = { srcX = 2849 srcY = 676 dstX = 2596 dstY = 1321 } + triangulation_pair = { srcX = 2720 srcY = 831 dstX = 2503 dstY = 1424 } + triangulation_pair = { srcX = 2651 srcY = 616 dstX = 2451 dstY = 1241 } + triangulation_pair = { srcX = 2705 srcY = 782 dstX = 2492 dstY = 1380 } + triangulation_pair = { srcX = 2632 srcY = 490 dstX = 2434 dstY = 1138 } + triangulation_pair = { srcX = 2782 srcY = 424 dstX = 2537 dstY = 1104 } + triangulation_pair = { srcX = 2570 srcY = 454 dstX = 2391 dstY = 1098 } + triangulation_pair = { srcX = 2703 srcY = 256 dstX = 2475 dstY = 957 } + triangulation_pair = { srcX = 2592 srcY = 361 dstX = 2402 dstY = 1027 } + triangulation_pair = { srcX = 2683 srcY = 339 dstX = 2467 dstY = 1024 } + triangulation_pair = { srcX = 2608 srcY = 391 dstX = 2415 dstY = 1052 } + triangulation_pair = { srcX = 2595 srcY = 282 dstX = 2401 dstY = 962 } + triangulation_pair = { srcX = 2598 srcY = 142 dstX = 2398 dstY = 860 } + triangulation_pair = { srcX = 2615 srcY = 166 dstX = 2410 dstY = 878 } + triangulation_pair = { srcX = 3747 srcY = 28 dstX = 3501 dstY = 1052 } + triangulation_pair = { srcX = 3626 srcY = 129 dstX = 3262 dstY = 1080 } + triangulation_pair = { srcX = 3732 srcY = 279 dstX = 3380 dstY = 1240 } + triangulation_pair = { srcX = 3654 srcY = 317 dstX = 3307 dstY = 1240 } + triangulation_pair = { srcX = 3634 srcY = 424 dstX = 3297 dstY = 1315 } + triangulation_pair = { srcX = 3484 srcY = 721 dstX = 3164 dstY = 1503 } + triangulation_pair = { srcX = 3590 srcY = 662 dstX = 3263 dstY = 1490 } + triangulation_pair = { srcX = 3571 srcY = 503 dstX = 3240 dstY = 1355 } + triangulation_pair = { srcX = 3594 srcY = 554 dstX = 3265 dstY = 1404 } + triangulation_pair = { srcX = 3574 srcY = 774 dstX = 3255 dstY = 1560 } + triangulation_pair = { srcX = 3187 srcY = 488 dstX = 2871 dstY = 1225 } + triangulation_pair = { srcX = 3180 srcY = 634 dstX = 2870 dstY = 1354 } + triangulation_pair = { srcX = 3410 srcY = 708 dstX = 3090 dstY = 1466 } + triangulation_pair = { srcX = 3420 srcY = 732 dstX = 3101 dstY = 1492 } + triangulation_pair = { srcX = 3235 srcY = 662 dstX = 2922 dstY = 1387 } + triangulation_pair = { srcX = 3363 srcY = 754 dstX = 3046 dstY = 1494 } + triangulation_pair = { srcX = 3526 srcY = 732 dstX = 3204 dstY = 1523 } + triangulation_pair = { srcX = 3312 srcY = 992 dstX = 3039 dstY = 1657 } + triangulation_pair = { srcX = 3238 srcY = 1062 dstX = 2956 dstY = 1698 } + triangulation_pair = { srcX = 3251 srcY = 1179 dstX = 2962 dstY = 1795 } + triangulation_pair = { srcX = 3022 srcY = 1313 dstX = 2780 dstY = 1862 } + triangulation_pair = { srcX = 3204 srcY = 1192 dstX = 2925 dstY = 1793 } + triangulation_pair = { srcX = 2703 srcY = 1152 dstX = 2529 dstY = 1688 } + triangulation_pair = { srcX = 2816 srcY = 1180 dstX = 2621 dstY = 1727 } + triangulation_pair = { srcX = 2882 srcY = 1194 dstX = 2674 dstY = 1746 } + triangulation_pair = { srcX = 2742 srcY = 1470 dstX = 2555 dstY = 1953 } + triangulation_pair = { srcX = 2711 srcY = 1551 dstX = 2528 dstY = 2015 } + triangulation_pair = { srcX = 2819 srcY = 1665 dstX = 2602 dstY = 2119 } + triangulation_pair = { srcX = 2968 srcY = 1628 dstX = 2720 dstY = 2106 } + triangulation_pair = { srcX = 2924 srcY = 1653 dstX = 2682 dstY = 2121 } + triangulation_pair = { srcX = 3381 srcY = 1539 dstX = 3035 dstY = 2094 } + triangulation_pair = { srcX = 3312 srcY = 1537 dstX = 2990 dstY = 2082 } + triangulation_pair = { srcX = 3255 srcY = 1518 dstX = 2950 dstY = 2061 } + triangulation_pair = { srcX = 3197 srcY = 1505 dstX = 2908 dstY = 2040 } + triangulation_pair = { srcX = 5906 srcY = 788 dstX = 4792 dstY = 2227 } + triangulation_pair = { srcX = 6295 srcY = 780 dstX = 5018 dstY = 2346 } + triangulation_pair = { srcX = 6507 srcY = 749 dstX = 5153 dstY = 2401 } + triangulation_pair = { srcX = 6073 srcY = 62 dstX = 5149 dstY = 1869 } + triangulation_pair = { srcX = 6740 srcY = 1664 dstX = 4989 dstY = 2960 } + triangulation_pair = { srcX = 6531 srcY = 1644 dstX = 4881 dstY = 2887 } + triangulation_pair = { srcX = 6282 srcY = 1746 dstX = 4711 dstY = 2878 } + triangulation_pair = { srcX = 6316 srcY = 1827 dstX = 4711 dstY = 2929 } + triangulation_pair = { srcX = 6001 srcY = 1440 dstX = 4644 dstY = 2627 } + triangulation_pair = { srcX = 6022 srcY = 1411 dstX = 4665 dstY = 2613 } + triangulation_pair = { srcX = 6006 srcY = 1272 dstX = 4696 dstY = 2538 } + triangulation_pair = { srcX = 5970 srcY = 1065 dstX = 4739 dstY = 2404 } + triangulation_pair = { srcX = 5995 srcY = 1204 dstX = 4711 dstY = 2489 } + triangulation_pair = { srcX = 6172 srcY = 994 dstX = 4870 dstY = 2431 } + triangulation_pair = { srcX = 6177 srcY = 1100 dstX = 4846 dstY = 2483 } + triangulation_pair = { srcX = 6030 srcY = 85 dstX = 5116 dstY = 1868 } + triangulation_pair = { srcX = 5666 srcY = 626 dstX = 4702 dstY = 2058 } + triangulation_pair = { srcX = 5534 srcY = 910 dstX = 4532 dstY = 2190 } + triangulation_pair = { srcX = 5535 srcY = 821 dstX = 4560 dstY = 2137 } + triangulation_pair = { srcX = 5618 srcY = 766 dstX = 4627 dstY = 2127 } + triangulation_pair = { srcX = 5679 srcY = 853 dstX = 4635 dstY = 2197 } + triangulation_pair = { srcX = 5467 srcY = 967 dstX = 4478 dstY = 2203 } + triangulation_pair = { srcX = 5633 srcY = 1136 dstX = 4523 dstY = 2351 } + triangulation_pair = { srcX = 5608 srcY = 1306 dstX = 4458 dstY = 2445 } + triangulation_pair = { srcX = 5556 srcY = 1230 dstX = 4449 dstY = 2386 } + triangulation_pair = { srcX = 5430 srcY = 1290 dstX = 4357 dstY = 2389 } + triangulation_pair = { srcX = 5500 srcY = 1378 dstX = 4374 dstY = 2460 } + triangulation_pair = { srcX = 5552 srcY = 1497 dstX = 4373 dstY = 2543 } + triangulation_pair = { srcX = 5489 srcY = 1531 dstX = 4328 dstY = 2546 } + triangulation_pair = { srcX = 4733 srcY = 1285 dstX = 3947 dstY = 2208 } + triangulation_pair = { srcX = 4622 srcY = 1348 dstX = 3865 dstY = 2215 } + triangulation_pair = { srcX = 4563 srcY = 1442 dstX = 3806 dstY = 2260 } + triangulation_pair = { srcX = 4580 srcY = 1468 dstX = 3813 dstY = 2281 } + triangulation_pair = { srcX = 5281 srcY = 1641 dstX = 4181 dstY = 2566 } + triangulation_pair = { srcX = 5210 srcY = 1683 dstX = 4129 dstY = 2570 } + triangulation_pair = { srcX = 5334 srcY = 1435 dstX = 4263 dstY = 2452 } + triangulation_pair = { srcX = 5268 srcY = 1481 dstX = 4212 dstY = 2463 } + triangulation_pair = { srcX = 4908 srcY = 1904 dstX = 3905 dstY = 2624 } + triangulation_pair = { srcX = 4037 srcY = 1503 dstX = 3474 dstY = 2184 } + triangulation_pair = { srcX = 3903 srcY = 1515 dstX = 3389 dstY = 2172 } + triangulation_pair = { srcX = 3715 srcY = 1384 dstX = 3283 dstY = 2042 } + triangulation_pair = { srcX = 3858 srcY = 1363 dstX = 3376 dstY = 2053 } + triangulation_pair = { srcX = 840 srcY = 391 dstX = 808 dstY = 917 } + triangulation_pair = { srcX = 749 srcY = 439 dstX = 714 dstY = 961 } + triangulation_pair = { srcX = 763 srcY = 560 dstX = 736 dstY = 1062 } + triangulation_pair = { srcX = 827 srcY = 631 dstX = 807 dstY = 1120 } + triangulation_pair = { srcX = 764 srcY = 658 dstX = 745 dstY = 1151 } + triangulation_pair = { srcX = 656 srcY = 601 dstX = 634 dstY = 1108 } + triangulation_pair = { srcX = 675 srcY = 773 dstX = 662 dstY = 1260 } + triangulation_pair = { srcX = 817 srcY = 917 dstX = 809 dstY = 1379 } + triangulation_pair = { srcX = 654 srcY = 943 dstX = 654 dstY = 1411 } + triangulation_pair = { srcX = 634 srcY = 1075 dstX = 651 dstY = 1535 } + triangulation_pair = { srcX = 742 srcY = 1180 dstX = 762 dstY = 1624 } + triangulation_pair = { srcX = 836 srcY = 1339 dstX = 867 dstY = 1758 } + triangulation_pair = { srcX = 1300 srcY = 827 dstX = 1291 dstY = 1295 } + triangulation_pair = { srcX = 1386 srcY = 976 dstX = 1369 dstY = 1424 } + triangulation_pair = { srcX = 1512 srcY = 1004 dstX = 1486 dstY = 1455 } + triangulation_pair = { srcX = 1430 srcY = 1008 dstX = 1409 dstY = 1456 } + triangulation_pair = { srcX = 1579 srcY = 1017 dstX = 1549 dstY = 1468 } + triangulation_pair = { srcX = 4225 srcY = 1724 dstX = 3544 dstY = 2372 } + triangulation_pair = { srcX = 4239 srcY = 1893 dstX = 3522 dstY = 2478 } + triangulation_pair = { srcX = 4338 srcY = 2012 dstX = 3556 dstY = 2568 } + triangulation_pair = { srcX = 4374 srcY = 1992 dstX = 3581 dstY = 2563 } + triangulation_pair = { srcX = 4371 srcY = 1946 dstX = 3587 dstY = 2533 } + triangulation_pair = { srcX = 4358 srcY = 1828 dstX = 3604 dstY = 2457 } + triangulation_pair = { srcX = 4373 srcY = 1776 dstX = 3625 dstY = 2429 } + triangulation_pair = { srcX = 4425 srcY = 1576 dstX = 3696 dstY = 2311 } + triangulation_pair = { srcX = 4474 srcY = 1845 dstX = 3669 dstY = 2490 } + triangulation_pair = { srcX = 4588 srcY = 1906 dstX = 3721 dstY = 2556 } + triangulation_pair = { srcX = 4389 srcY = 1902 dstX = 3606 dstY = 2509 } + triangulation_pair = { srcX = 4298 srcY = 1864 dstX = 3564 dstY = 2467 } + triangulation_pair = { srcX = 4111 srcY = 1739 dstX = 3477 dstY = 2356 } + triangulation_pair = { srcX = 3940 srcY = 1912 dstX = 3341 dstY = 2442 } + triangulation_pair = { srcX = 4023 srcY = 1821 dstX = 3408 dstY = 2396 } + triangulation_pair = { srcX = 6059 srcY = 974 dstX = 4819 dstY = 2377 } + triangulation_pair = { srcX = 6102 srcY = 916 dstX = 4862 dstY = 2359 } + triangulation_pair = { srcX = 5858 srcY = 1092 dstX = 4668 dstY = 2389 } + triangulation_pair = { srcX = 5866 srcY = 1036 dstX = 4693 dstY = 2356 } + triangulation_pair = { srcX = 5862 srcY = 931 dstX = 4718 dstY = 2296 } + triangulation_pair = { srcX = 1830 srcY = 1401 dstX = 1774 dstY = 1829 } + triangulation_pair = { srcX = 1812 srcY = 1433 dstX = 1760 dstY = 1857 } + triangulation_pair = { srcX = 1762 srcY = 33 dstX = 1765 dstY = 667 } + triangulation_pair = { srcX = 1567 srcY = 54 dstX = 1608 dstY = 669 } + triangulation_pair = { srcX = 1281 srcY = 112 dstX = 1357 dstY = 698 } + triangulation_pair = { srcX = 1270 srcY = 24 dstX = 1356 dstY = 628 } + triangulation_pair = { srcX = 1361 srcY = 81 dstX = 1432 dstY = 680 } + triangulation_pair = { srcX = 1326 srcY = 162 dstX = 1393 dstY = 739 } + triangulation_pair = { srcX = 1372 srcY = 297 dstX = 1414 dstY = 848 } + triangulation_pair = { srcX = 1572 srcY = 222 dstX = 1598 dstY = 799 } + triangulation_pair = { srcX = 1681 srcY = 231 dstX = 1686 dstY = 811 } + triangulation_pair = { srcX = 1687 srcY = 174 dstX = 1704 dstY = 768 } + triangulation_pair = { srcX = 1766 srcY = 222 dstX = 1756 dstY = 812 } + triangulation_pair = { srcX = 1732 srcY = 311 dstX = 1724 dstY = 878 } + triangulation_pair = { srcX = 1553 srcY = 319 dstX = 1567 dstY = 872 } + triangulation_pair = { srcX = 1498 srcY = 391 dstX = 1511 dstY = 929 } + triangulation_pair = { srcX = 1424 srcY = 435 dstX = 1447 dstY = 966 } + triangulation_pair = { srcX = 1422 srcY = 510 dstX = 1439 dstY = 1022 } + triangulation_pair = { srcX = 1462 srcY = 814 dstX = 1450 dstY = 1284 } + triangulation_pair = { srcX = 1442 srcY = 722 dstX = 1443 dstY = 1209 } + triangulation_pair = { srcX = 1528 srcY = 932 dstX = 1502 dstY = 1390 } + triangulation_pair = { srcX = 1509 srcY = 881 dstX = 1489 dstY = 1345 } + triangulation_pair = { srcX = 1628 srcY = 901 dstX = 1596 dstY = 1368 } + triangulation_pair = { srcX = 1635 srcY = 835 dstX = 1604 dstY = 1308 } + triangulation_pair = { srcX = 1789 srcY = 973 dstX = 1746 dstY = 1442 } + triangulation_pair = { srcX = 1230 srcY = 1064 dstX = 1210 dstY = 1506 } + triangulation_pair = { srcX = 1173 srcY = 904 dstX = 1161 dstY = 1362 } + triangulation_pair = { srcX = 1155 srcY = 1001 dstX = 1140 dstY = 1448 } + triangulation_pair = { srcX = 1114 srcY = 1042 dstX = 1098 dstY = 1486 } + triangulation_pair = { srcX = 1065 srcY = 1077 dstX = 1054 dstY = 1520 } + triangulation_pair = { srcX = 1109 srcY = 1138 dstX = 1098 dstY = 1572 } + triangulation_pair = { srcX = 1898 srcY = 884 dstX = 1851 dstY = 1373 } + triangulation_pair = { srcX = 1996 srcY = 1022 dstX = 1933 dstY = 1502 } + triangulation_pair = { srcX = 1727 srcY = 1030 dstX = 1680 dstY = 1488 } + triangulation_pair = { srcX = 1788 srcY = 1014 dstX = 1745 dstY = 1480 } + triangulation_pair = { srcX = 1882 srcY = 1024 dstX = 1832 dstY = 1497 } + triangulation_pair = { srcX = 1791 srcY = 1124 dstX = 1743 dstY = 1581 } + triangulation_pair = { srcX = 1846 srcY = 1095 dstX = 1796 dstY = 1558 } + triangulation_pair = { srcX = 1947 srcY = 1112 dstX = 1887 dstY = 1579 } + triangulation_pair = { srcX = 1923 srcY = 1094 dstX = 1868 dstY = 1561 } + triangulation_pair = { srcX = 1951 srcY = 1155 dstX = 1890 dstY = 1617 } + triangulation_pair = { srcX = 2016 srcY = 1174 dstX = 1945 dstY = 1638 } + triangulation_pair = { srcX = 2025 srcY = 1186 dstX = 1952 dstY = 1651 } + triangulation_pair = { srcX = 2080 srcY = 1177 dstX = 2009 dstY = 1648 } + triangulation_pair = { srcX = 2203 srcY = 1152 dstX = 2109 dstY = 1635 } + triangulation_pair = { srcX = 2209 srcY = 1244 dstX = 2117 dstY = 1716 } + triangulation_pair = { srcX = 2166 srcY = 1307 dstX = 2079 dstY = 1768 } + triangulation_pair = { srcX = 2199 srcY = 1432 dstX = 2101 dstY = 1879 } + triangulation_pair = { srcX = 2128 srcY = 1433 dstX = 2039 dstY = 1872 } + triangulation_pair = { srcX = 2114 srcY = 1575 dstX = 2021 dstY = 1992 } + triangulation_pair = { srcX = 2048 srcY = 1640 dstX = 1962 dstY = 2045 } + triangulation_pair = { srcX = 2178 srcY = 1824 dstX = 2064 dstY = 2195 } + triangulation_pair = { srcX = 2007 srcY = 1853 dstX = 1924 dstY = 2221 } + triangulation_pair = { srcX = 2116 srcY = 1895 dstX = 2013 dstY = 2260 } + triangulation_pair = { srcX = 2278 srcY = 1986 dstX = 2142 dstY = 2343 } + triangulation_pair = { srcX = 2349 srcY = 2066 dstX = 2199 dstY = 2410 } + triangulation_pair = { srcX = 2409 srcY = 2123 dstX = 2244 dstY = 2458 } + triangulation_pair = { srcX = 2491 srcY = 2154 dstX = 2310 dstY = 2488 } + triangulation_pair = { srcX = 2716 srcY = 1762 dstX = 2519 dstY = 2190 } + triangulation_pair = { srcX = 2634 srcY = 1826 dstX = 2449 dstY = 2232 } + triangulation_pair = { srcX = 2711 srcY = 1897 dstX = 2504 dstY = 2295 } + triangulation_pair = { srcX = 2717 srcY = 1924 dstX = 2503 dstY = 2324 } + triangulation_pair = { srcX = 2624 srcY = 1939 dstX = 2430 dstY = 2324 } + triangulation_pair = { srcX = 2773 srcY = 2023 dstX = 2536 dstY = 2402 } + triangulation_pair = { srcX = 2753 srcY = 2093 dstX = 2515 dstY = 2458 } + triangulation_pair = { srcX = 2846 srcY = 2096 dstX = 2582 dstY = 2466 } + triangulation_pair = { srcX = 2732 srcY = 2010 dstX = 2506 dstY = 2388 } + triangulation_pair = { srcX = 2671 srcY = 2031 dstX = 2459 dstY = 2400 } + triangulation_pair = { srcX = 2719 srcY = 2222 dstX = 2477 dstY = 2551 } + triangulation_pair = { srcX = 2529 srcY = 2224 dstX = 2335 dstY = 2539 } + triangulation_pair = { srcX = 2580 srcY = 2290 dstX = 2367 dstY = 2590 } + triangulation_pair = { srcX = 2461 srcY = 2474 dstX = 2255 dstY = 2717 } + triangulation_pair = { srcX = 2541 srcY = 2511 dstX = 2315 dstY = 2748 } + triangulation_pair = { srcX = 1647 srcY = 2500 dstX = 1653 dstY = 2716 } + triangulation_pair = { srcX = 1642 srcY = 2368 dstX = 1643 dstY = 2619 } + triangulation_pair = { srcX = 1876 srcY = 2260 dstX = 1816 dstY = 2549 } + triangulation_pair = { srcX = 1938 srcY = 2044 dstX = 1863 dstY = 2376 } + triangulation_pair = { srcX = 1910 srcY = 2188 dstX = 1844 dstY = 2493 } + triangulation_pair = { srcX = 1686 srcY = 2079 dstX = 1663 dstY = 2400 } + triangulation_pair = { srcX = 1518 srcY = 1811 dstX = 1511 dstY = 2179 } + triangulation_pair = { srcX = 1448 srcY = 2000 dstX = 1465 dstY = 2335 } + triangulation_pair = { srcX = 1443 srcY = 1689 dstX = 1439 dstY = 2069 } + triangulation_pair = { srcX = 1486 srcY = 1779 dstX = 1482 dstY = 2149 } + triangulation_pair = { srcX = 1567 srcY = 1658 dstX = 1547 dstY = 2046 } + triangulation_pair = { srcX = 1555 srcY = 1571 dstX = 1532 dstY = 1967 } + triangulation_pair = { srcX = 1684 srcY = 1438 dstX = 1644 dstY = 1857 } + triangulation_pair = { srcX = 1785 srcY = 1469 dstX = 1735 dstY = 1888 } + triangulation_pair = { srcX = 1755 srcY = 750 dstX = 1720 dstY = 1244 } + triangulation_pair = { srcX = 2152 srcY = 952 dstX = 2074 dstY = 1452 } + triangulation_pair = { srcX = 2252 srcY = 993 dstX = 2156 dstY = 1500 } + triangulation_pair = { srcX = 2210 srcY = 905 dstX = 2124 dstY = 1416 } + triangulation_pair = { srcX = 2181 srcY = 679 dstX = 2107 dstY = 1218 } + triangulation_pair = { srcX = 2242 srcY = 678 dstX = 2160 dstY = 1226 } + triangulation_pair = { srcX = 2145 srcY = 748 dstX = 2075 dstY = 1273 } + triangulation_pair = { srcX = 2171 srcY = 636 dstX = 2100 dstY = 1180 } + triangulation_pair = { srcX = 2177 srcY = 559 dstX = 2107 dstY = 1121 } + triangulation_pair = { srcX = 1977 srcY = 712 dstX = 1926 dstY = 1227 } + triangulation_pair = { srcX = 3038 srcY = 985 dstX = 2781 dstY = 1611 } + triangulation_pair = { srcX = 2977 srcY = 1118 dstX = 2740 dstY = 1702 } + triangulation_pair = { srcX = 2784 srcY = 869 dstX = 2554 dstY = 1466 } + triangulation_pair = { srcX = 3080 srcY = 835 dstX = 2824 dstY = 1487 } + triangulation_pair = { srcX = 3468 srcY = 1115 dstX = 3138 dstY = 1782 } + triangulation_pair = { srcX = 3402 srcY = 1150 dstX = 3086 dstY = 1798 } + triangulation_pair = { srcX = 3652 srcY = 1210 dstX = 3266 dstY = 1890 } + triangulation_pair = { srcX = 3834 srcY = 1297 dstX = 3378 dstY = 2003 } + triangulation_pair = { srcX = 3965 srcY = 1359 dstX = 3452 dstY = 2072 } + triangulation_pair = { srcX = 3654 srcY = 1452 dstX = 3232 dstY = 2074 } + triangulation_pair = { srcX = 3620 srcY = 1418 dstX = 3213 dstY = 2044 } + triangulation_pair = { srcX = 3608 srcY = 1375 dstX = 3210 dstY = 2005 } + triangulation_pair = { srcX = 3558 srcY = 1329 dstX = 3183 dstY = 1964 } + triangulation_pair = { srcX = 3760 srcY = 1666 dstX = 3273 dstY = 2249 } + triangulation_pair = { srcX = 3833 srcY = 1597 dstX = 3328 dstY = 2214 } + triangulation_pair = { srcX = 3965 srcY = 1629 dstX = 3406 dstY = 2256 } + triangulation_pair = { srcX = 4039 srcY = 1686 dstX = 3438 dstY = 2303 } + triangulation_pair = { srcX = 4158 srcY = 1614 dstX = 3527 dstY = 2282 } + triangulation_pair = { srcX = 4287 srcY = 1630 dstX = 3604 dstY = 2317 } + triangulation_pair = { srcX = 4301 srcY = 1558 dstX = 3624 dstY = 2271 } + triangulation_pair = { srcX = 4194 srcY = 1414 dstX = 3588 dstY = 2154 } + triangulation_pair = { srcX = 4234 srcY = 1305 dstX = 3635 dstY = 2088 } + triangulation_pair = { srcX = 3844 srcY = 1031 dstX = 3427 dstY = 1802 } + triangulation_pair = { srcX = 3884 srcY = 1105 dstX = 3443 dstY = 1862 } + triangulation_pair = { srcX = 3874 srcY = 1074 dstX = 3440 dstY = 1837 } + triangulation_pair = { srcX = 4090 srcY = 950 dstX = 3609 dstY = 1804 } + triangulation_pair = { srcX = 4522 srcY = 740 dstX = 3941 dstY = 1780 } + triangulation_pair = { srcX = 4218 srcY = 827 dstX = 3723 dstY = 1749 } + triangulation_pair = { srcX = 4245 srcY = 1060 dstX = 3690 dstY = 1924 } + triangulation_pair = { srcX = 4171 srcY = 1058 dstX = 3640 dstY = 1902 } + triangulation_pair = { srcX = 4842 srcY = 1880 dstX = 3874 dstY = 2598 } + triangulation_pair = { srcX = 4648 srcY = 1884 dstX = 3759 dstY = 2556 } + triangulation_pair = { srcX = 4685 srcY = 1935 dstX = 3769 dstY = 2593 } + triangulation_pair = { srcX = 4688 srcY = 2005 dstX = 3753 dstY = 2631 } + triangulation_pair = { srcX = 4551 srcY = 2045 dstX = 3670 dstY = 2627 } + triangulation_pair = { srcX = 4578 srcY = 1993 dstX = 3696 dstY = 2604 } + triangulation_pair = { srcX = 4569 srcY = 2074 dstX = 3674 dstY = 2650 } + triangulation_pair = { srcX = 4537 srcY = 2120 dstX = 3641 dstY = 2671 } + triangulation_pair = { srcX = 4447 srcY = 2216 dstX = 3573 dstY = 2712 } + triangulation_pair = { srcX = 4326 srcY = 1134 dstX = 3725 dstY = 1993 } + triangulation_pair = { srcX = 4404 srcY = 1179 dstX = 3765 dstY = 2041 } + triangulation_pair = { srcX = 4462 srcY = 1272 dstX = 3785 dstY = 2123 } + triangulation_pair = { srcX = 4592 srcY = 1184 dstX = 3892 dstY = 2100 } + triangulation_pair = { srcX = 4578 srcY = 997 dstX = 3916 dstY = 1971 } + triangulation_pair = { srcX = 4630 srcY = 1119 dstX = 3930 dstY = 2068 } + triangulation_pair = { srcX = 4606 srcY = 967 dstX = 3942 dstY = 1959 } + triangulation_pair = { srcX = 4687 srcY = 664 dstX = 4070 dstY = 1780 } + triangulation_pair = { srcX = 4636 srcY = 761 dstX = 4010 dstY = 1829 } + triangulation_pair = { srcX = 4608 srcY = 778 dstX = 3988 dstY = 1832 } + triangulation_pair = { srcX = 4530 srcY = 617 dstX = 3977 dstY = 1699 } + triangulation_pair = { srcX = 4556 srcY = 503 dstX = 4024 dstY = 1628 } + triangulation_pair = { srcX = 4624 srcY = 462 dstX = 4081 dstY = 1624 } + triangulation_pair = { srcX = 5020 srcY = 506 dstX = 4339 dstY = 1788 } + triangulation_pair = { srcX = 4848 srcY = 500 dstX = 4226 dstY = 1725 } + triangulation_pair = { srcX = 4626 srcY = 554 dstX = 4058 dstY = 1681 } + triangulation_pair = { srcX = 4800 srcY = 478 dstX = 4200 dstY = 1694 } + triangulation_pair = { srcX = 5238 srcY = 663 dstX = 4428 dstY = 1957 } + triangulation_pair = { srcX = 5434 srcY = 575 dstX = 4579 dstY = 1960 } + triangulation_pair = { srcX = 5493 srcY = 429 dstX = 4661 dstY = 1892 } + triangulation_pair = { srcX = 5607 srcY = 350 dstX = 4759 dstY = 1878 } + triangulation_pair = { srcX = 5310 srcY = 78 dstX = 4711 dstY = 1584 } + triangulation_pair = { srcX = 5377 srcY = 158 dstX = 4724 dstY = 1663 } + triangulation_pair = { srcX = 7236 srcY = 466 dstX = 5672 dstY = 2504 } + triangulation_pair = { srcX = 5052 srcY = 496 dstX = 4363 dstY = 1795 } + triangulation_pair = { srcX = 5312 srcY = 146 dstX = 4676 dstY = 1624 } + triangulation_pair = { srcX = 7340 srcY = 330 dstX = 5786 dstY = 2482 } + triangulation_pair = { srcX = 7215 srcY = 520 dstX = 5641 dstY = 2528 } + triangulation_pair = { srcX = 6845 srcY = 528 dstX = 5430 dstY = 2399 } + triangulation_pair = { srcX = 6724 srcY = 655 dstX = 5309 dstY = 2430 } + triangulation_pair = { srcX = 6620 srcY = 706 dstX = 5231 dstY = 2419 } + triangulation_pair = { srcX = 7406 srcY = 175 dstX = 5889 dstY = 2436 } + triangulation_pair = { srcX = 7524 srcY = 449 dstX = 5844 dstY = 2594 } + triangulation_pair = { srcX = 7845 srcY = 328 dstX = 6056 dstY = 2636 } + triangulation_pair = { srcX = 7978 srcY = 651 dstX = 5987 dstY = 2844 } + triangulation_pair = { srcX = 8031 srcY = 596 dstX = 6038 dstY = 2832 } + triangulation_pair = { srcX = 8165 srcY = 905 dstX = 5985 dstY = 3031 } + triangulation_pair = { srcX = 8127 srcY = 897 dstX = 5965 dstY = 3008 } + triangulation_pair = { srcX = 7962 srcY = 720 dstX = 5955 dstY = 2865 } + triangulation_pair = { srcX = 7855 srcY = 739 dstX = 5889 dstY = 2849 } + triangulation_pair = { srcX = 7841 srcY = 654 dstX = 5918 dstY = 2801 } + triangulation_pair = { srcX = 7954 srcY = 919 dstX = 5873 dstY = 2971 } + triangulation_pair = { srcX = 7968 srcY = 772 dstX = 5934 dstY = 2899 } + triangulation_pair = { srcX = 8138 srcY = 980 dstX = 5938 dstY = 3060 } + triangulation_pair = { srcX = 8100 srcY = 960 dstX = 5927 dstY = 3037 } + triangulation_pair = { srcX = 8045 srcY = 970 dstX = 5898 dstY = 3023 } + triangulation_pair = { srcX = 7826 srcY = 2375 dstX = 5369 dstY = 3699 } + triangulation_pair = { srcX = 7658 srcY = 2393 dstX = 5272 dstY = 3651 } + triangulation_pair = { srcX = 7588 srcY = 2609 dstX = 5156 dstY = 3734 } + triangulation_pair = { srcX = 7471 srcY = 2607 dstX = 5095 dstY = 3695 } + triangulation_pair = { srcX = 4661 srcY = 3790 dstX = 3386 dstY = 3589 } + triangulation_pair = { srcX = 4454 srcY = 4014 dstX = 3245 dstY = 3665 } + triangulation_pair = { srcX = 4508 srcY = 3936 dstX = 3281 dstY = 3636 } + triangulation_pair = { srcX = 4635 srcY = 3899 dstX = 3354 dstY = 3639 } + triangulation_pair = { srcX = 5390 srcY = 3961 dstX = 3704 dstY = 3802 } + triangulation_pair = { srcX = 5416 srcY = 3786 dstX = 3754 dstY = 3726 } + triangulation_pair = { srcX = 5602 srcY = 3392 dstX = 3932 dstY = 3583 } + triangulation_pair = { srcX = 5364 srcY = 3579 dstX = 3771 dstY = 3620 } + triangulation_pair = { srcX = 5426 srcY = 3691 dstX = 3780 dstY = 3687 } + triangulation_pair = { srcX = 4125 srcY = 4023 dstX = 3086 dstY = 3615 } + triangulation_pair = { srcX = 3606 srcY = 3918 dstX = 2822 dstY = 3506 } + triangulation_pair = { srcX = 3640 srcY = 3744 dstX = 2861 dstY = 3421 } + triangulation_pair = { srcX = 3698 srcY = 4042 dstX = 2858 dstY = 3582 } + triangulation_pair = { srcX = 3936 srcY = 3798 dstX = 3013 dstY = 3480 } + triangulation_pair = { srcX = 3842 srcY = 3709 dstX = 2976 dstY = 3428 } + triangulation_pair = { srcX = 3808 srcY = 3682 dstX = 2960 dstY = 3409 } + triangulation_pair = { srcX = 3751 srcY = 3640 dstX = 2934 dstY = 3381 } + triangulation_pair = { srcX = 3988 srcY = 3954 dstX = 3025 dstY = 3573 } + triangulation_pair = { srcX = 3997 srcY = 3927 dstX = 3037 dstY = 3554 } + triangulation_pair = { srcX = 4144 srcY = 4064 dstX = 3092 dstY = 3643 } + triangulation_pair = { srcX = 3855 srcY = 4073 dstX = 2936 dstY = 3613 } + triangulation_pair = { srcX = 3822 srcY = 4020 dstX = 2925 dstY = 3582 } + triangulation_pair = { srcX = 3673 srcY = 4006 dstX = 2846 dstY = 3558 } + triangulation_pair = { srcX = 3613 srcY = 3815 dstX = 2836 dstY = 3463 } + triangulation_pair = { srcX = 3242 srcY = 4065 dstX = 2608 dstY = 3550 } + triangulation_pair = { srcX = 1943 srcY = 2569 dstX = 1871 dstY = 2770 } + triangulation_pair = { srcX = 619 srcY = 2272 dstX = 821 dstY = 2531 } + triangulation_pair = { srcX = 789 srcY = 2226 dstX = 949 dstY = 2495 } + triangulation_pair = { srcX = 1048 srcY = 2166 dstX = 1154 dstY = 2448 } + triangulation_pair = { srcX = 1194 srcY = 2179 dstX = 1275 dstY = 2466 } + triangulation_pair = { srcX = 1342 srcY = 2158 dstX = 1392 dstY = 2454 } + triangulation_pair = { srcX = 3270 srcY = 3926 dstX = 2636 dstY = 3492 } + triangulation_pair = { srcX = 3276 srcY = 3847 dstX = 2648 dstY = 3441 } + triangulation_pair = { srcX = 3384 srcY = 3735 dstX = 2707 dstY = 3393 } + triangulation_pair = { srcX = 3592 srcY = 3482 dstX = 2868 dstY = 3287 } + triangulation_pair = { srcX = 3430 srcY = 3655 dstX = 2749 dstY = 3357 } + triangulation_pair = { srcX = 3475 srcY = 2757 dstX = 2905 dstY = 2914 } + triangulation_pair = { srcX = 106 srcY = 2420 dstX = 465 dstY = 2655 } + triangulation_pair = { srcX = 28 srcY = 2575 dstX = 442 dstY = 2763 } + triangulation_pair = { srcX = 345 srcY = 2675 dstX = 687 dstY = 2832 } + triangulation_pair = { srcX = 185 srcY = 2367 dstX = 503 dstY = 2615 } + triangulation_pair = { srcX = 207 srcY = 2034 dstX = 458 dstY = 2386 } + triangulation_pair = { srcX = 201 srcY = 1872 dstX = 429 dstY = 2260 } + triangulation_pair = { srcX = 298 srcY = 1608 dstX = 454 dstY = 2046 } + triangulation_pair = { srcX = 291 srcY = 1516 dstX = 432 dstY = 1978 } + triangulation_pair = { srcX = 394 srcY = 1457 dstX = 502 dstY = 1913 } + triangulation_pair = { srcX = 406 srcY = 745 dstX = 415 dstY = 1257 } + triangulation_pair = { srcX = 462 srcY = 528 dstX = 441 dstY = 1069 } + triangulation_pair = { srcX = 541 srcY = 494 dstX = 514 dstY = 1028 } + triangulation_pair = { srcX = 625 srcY = 448 dstX = 589 dstY = 980 } + triangulation_pair = { srcX = 769 srcY = 215 dstX = 718 dstY = 767 } + triangulation_pair = { srcX = 871 srcY = 282 dstX = 835 dstY = 814 } + triangulation_pair = { srcX = 883 srcY = 194 dstX = 845 dstY = 737 } + triangulation_pair = { srcX = 903 srcY = 134 dstX = 863 dstY = 684 } + triangulation_pair = { srcX = 948 srcY = 71 dstX = 912 dstY = 631 } + triangulation_pair = { srcX = 1011 srcY = 15 dstX = 990 dstY = 583 } + triangulation_pair = { srcX = 984 srcY = 100 dstX = 955 dstY = 653 } + triangulation_pair = { srcX = 1673 srcY = 531 dstX = 1659 dstY = 1051 } + triangulation_pair = { srcX = 1778 srcY = 531 dstX = 1748 dstY = 1059 } + triangulation_pair = { srcX = 1764 srcY = 654 dstX = 1732 dstY = 1160 } + triangulation_pair = { srcX = 2058 srcY = 541 dstX = 2006 dstY = 1090 } + triangulation_pair = { srcX = 2125 srcY = 504 dstX = 2062 dstY = 1070 } + triangulation_pair = { srcX = 1978 srcY = 563 dstX = 1933 dstY = 1102 } + triangulation_pair = { srcX = 1859 srcY = 446 dstX = 1830 dstY = 996 } + triangulation_pair = { srcX = 1868 srcY = 240 dstX = 1846 dstY = 834 } + triangulation_pair = { srcX = 1987 srcY = 245 dstX = 1948 dstY = 851 } + triangulation_pair = { srcX = 1902 srcY = 47 dstX = 1881 dstY = 693 } + triangulation_pair = { srcX = 1979 srcY = 73 dstX = 1943 dstY = 720 } + triangulation_pair = { srcX = 2406 srcY = 132 dstX = 2261 dstY = 831 } + triangulation_pair = { srcX = 2445 srcY = 225 dstX = 2293 dstY = 900 } + triangulation_pair = { srcX = 2514 srcY = 25 dstX = 2337 dstY = 763 } + triangulation_pair = { srcX = 2412 srcY = 84 dstX = 2262 dstY = 800 } + link = { autogenerated = yes imp = 8795 ck3 = 9567 } # Burma Mountains -> Naga Hills + link = { autogenerated = yes imp = 5959 ck3 = 9135 ck3 = 9188 } # Bhutanese Impassable -> Dromo, Kamba + link = { autogenerated = yes imp = 7291 ck3 = 9104 ck3 = 9108 } # Upper Terrai -> Jagatipur, Dang + link = { autogenerated = yes imp = 7294 ck3 = 9093 ck3 = 9094 ck3 = 9098 } # Impassable -> Almora, Bhimtal, Baitadi + link = { autogenerated = yes imp = 5955 ck3 = 9091 ck3 = 9097 } # Nepalese Impassable -> Kartikeyapura, Askot + link = { autogenerated = yes imp = 5954 ck3 = 9048 ck3 = 9049 } # Nepalese Impassable -> Poo, Kalpa + link = { autogenerated = yes imp = 5110 ck3 = 894 } # Carpathia -> SOUTH CARPATHIANS + link = { autogenerated = yes imp = 7851 ck3 = 8688 ck3 = 8689 } # SEAZONE IMPASSABLE WASTELAND -> Bay of Bengal, Bay of Bengal + link = { autogenerated = yes imp = 5323 imp = 5322 ck3 = 8557 } # Caucasus Mons Volcano, IP 323 -> CAUCASUS MOUNTAINS + link = { autogenerated = yes imp = 5965 ck3 = 8555 } # China Impassable -> HIMALAYA + link = { autogenerated = yes imp = 5960 ck3 = 8551 ck3 = 8552 ck3 = 9161 } # Arunachal Impassable -> HIMALAYA, HIMALAYA, Mechuka + link = { autogenerated = yes imp = 7293 ck3 = 8548 ck3 = 8549 ck3 = 9133 } # Impassable -> HIMALAYA, HIMALAYA, Chungthang + link = { autogenerated = yes imp = 7292 ck3 = 8547 } # Impassable -> HIMALAYA + link = { autogenerated = yes imp = 5957 ck3 = 8546 } # Nepalese Impassable -> HIMALAYA + link = { autogenerated = yes imp = 5956 ck3 = 8545 ck3 = 9085 } # Nepalese Impassable -> HIMALAYA, Dolpo + link = { autogenerated = yes imp = 5557 ck3 = 8544 } # Khyunglung -> HIMALAYA + link = { autogenerated = yes imp = 5335 ck3 = 8449 } # IP 336 -> SEMIEN_MOUNTAINS + link = { autogenerated = yes imp = 5355 imp = 8733 ck3 = 8443 } # Koha, Logiya -> DANAKIL_DESERT + link = { autogenerated = yes imp = 5337 ck3 = 8442 } # Puntic Highlands -> DANAKIL_HILLS + link = { autogenerated = yes imp = 5942 ck3 = 8325 ck3 = 8327 ck3 = 8346 ck3 = 8392 ck3 = 8393 ck3 = 8441 ck3 = 8448 ck3 = 8513 } # Somalian Impassable -> EAST_AMHARA, GIDIM, MIDDLE_AWASH, SITTI, ADAL, OGADEN_DESERT, WOLLO_HIGHLANDS, MUDUG-NORTH + link = { autogenerated = yes imp = 5384 ck3 = 831 ck3 = 853 } # IP 385 -> Tripura, Unakoti + link = { autogenerated = yes imp = 8796 ck3 = 822 ck3 = 826 ck3 = 827 ck3 = 854 ck3 = 9566 ck3 = 9625 } # Burma Mountains -> Maibong, Manipur, Khoupum, Tlawng, Arakan Mountains, Chin + link = { autogenerated = yes imp = 9143 ck3 = 807 } # Aures Mountains -> Tell Atlas Mountains 8 + link = { autogenerated = yes imp = 5153 ck3 = 803 } # IMPASSIBLE TERRAIN 153 -> Tell Atlas Mountains 4 + link = { autogenerated = yes imp = 5152 ck3 = 802 } # IMPASSIBLE TERRAIN 152 -> Tell Atlas Mountains 3 + link = { autogenerated = yes imp = 3138 ck3 = 801 } # BessemiumSeptentrionalis -> Tell Atlas Mountains 2 + link = { autogenerated = yes imp = 9142 ck3 = 797 ck3 = 799 } # Sahara Impassable -> Atlas Mountains 8, Atlas Mountains 10 + link = { autogenerated = yes imp = 5279 ck3 = 7964 } # IMPASSIBLE TERRAIN 279 -> Muji + link = { autogenerated = yes imp = 5985 ck3 = 795 } # Inner Mauritania -> Atlas Mountains 6 + link = { autogenerated = yes imp = 5382 ck3 = 7949 } # IP 383 -> Kaghan + link = { autogenerated = yes imp = 7295 ck3 = 7946 } # Impassable -> Campa2 + link = { autogenerated = yes imp = 5317 imp = 5318 imp = 6055 ck3 = 7943 } # IP 318, IP 319, Dandakaranya -> Eastern Ghats (W) + link = { autogenerated = yes imp = 5315 ck3 = 7942 } # Baglana -> Western Ghats (NN) + link = { autogenerated = yes imp = 6300 imp = 5984 ck3 = 794 } # Talzemt, High Atlas -> Atlas Mountains 5 + link = { autogenerated = yes imp = 5308 ck3 = 7937 } # North Nilgiri -> Palakkad Pass + link = { autogenerated = yes imp = 5304 imp = 5305 imp = 5306 ck3 = 7936 } # IP 305, South Nilgiri, IP 307 -> Southwestern Ghats + link = { autogenerated = yes imp = 6482 imp = 5950 imp = 8397 ck3 = 793 } # More Middle Atlas, Gaetuli Impassable, Guigou -> Atlas Mountains 4 + link = { autogenerated = yes imp = 6493 ck3 = 790 ck3 = 791 } # Riff -> Atlas Mountains 1, Atlas Mountains 2 + link = { autogenerated = yes imp = 5009 ck3 = 788 } # IMPASSIBLE TERRAIN 009 -> Central Apennine Mountains 2 + link = { autogenerated = yes imp = 104 imp = 5012 imp = 5013 imp = 5014 imp = 5015 ck3 = 787 } # Amiternum, IMPASSIBLE TERRAIN 012, IMPASSIBLE TERRAIN 013, IMPASSIBLE TERRAIN 014, IMPASSIBLE TERRAIN 015 -> Central Apennine Mountains 1 + link = { autogenerated = yes imp = 5134 imp = 5135 ck3 = 784 } # IMPASSIBLE TERRAIN 134, IMPASSIBLE TERRAIN 135 -> German Mountains 11 + link = { autogenerated = yes imp = 5136 ck3 = 783 } # Abnoba Mons -> German Mountains 10 + link = { autogenerated = yes imp = 5137 ck3 = 782 } # IMPASSIBLE TERRAIN 137 -> German Mountains 9 + link = { autogenerated = yes imp = 5138 ck3 = 781 } # IMPASSIBLE TERRAIN 138 -> German Mountains 8 + link = { autogenerated = yes imp = 5139 ck3 = 780 } # IMPASSIBLE TERRAIN 139 -> German Mountains 7 + link = { autogenerated = yes imp = 5316 ck3 = 7796 } # IP 317 -> Eastern Ghats (E) + link = { autogenerated = yes imp = 5141 ck3 = 774 } # Germanic Upland -> German Mountains 1 + link = { autogenerated = yes imp = 5142 ck3 = 767 } # IMPASSIBLE TERRAIN 142 -> Czech Mountains 5 + link = { autogenerated = yes imp = 5143 ck3 = 766 } # IMPASSIBLE TERRAIN 143 -> Czech Mountains 4 + link = { autogenerated = yes imp = 5145 ck3 = 765 } # Bohaemeian Forest -> Czech Mountains 3 + link = { autogenerated = yes imp = 5177 ck3 = 734 } # IMPASSIBLE TERRAIN 177 -> SOUTHEASTERN TAURUS + link = { autogenerated = yes imp = 5113 ck3 = 733 } # IMPASSIBLE TERRAIN 113 -> CARPATHIANS + link = { autogenerated = yes imp = 9005 imp = 9119 ck3 = 7212 } # Val, Impassable -> Chimmkent mountains + link = { autogenerated = yes imp = 5999 imp = 4871 ck3 = 718 } # Carpathian Impassable, Bekum -> HUNGARIAN-MORAVIAN MOUNTAINS + link = { autogenerated = yes imp = 5298 ck3 = 717 } # Carpathia -> HUNGARIAN-MORAVIAN MOUNTAINS + link = { autogenerated = yes imp = 8758 ck3 = 7162 } # Talgar -> Kaskelen + link = { autogenerated = yes imp = 5966 ck3 = 7155 ck3 = 7156 ck3 = 7157 ck3 = 7159 ck3 = 7160 ck3 = 7211 ck3 = 7213 ck3 = 7214 ck3 = 7283 ck3 = 7308 ck3 = 7310 ck3 = 7313 ck3 = 7315 ck3 = 7316 } # Steppe Impassable -> Shyganak, Mirnyy, Aksuyek, Akzhar, Tamgaly, Betpak-Dala, Saryesik-Atyrau Desert, Southern Balkash wasteland, Kara Sor, Bos-Tau, Betpa, Asaybay, Baykara, Targyl + link = { autogenerated = yes imp = 7281 ck3 = 7134 } # Wasteland -> Akkum + link = { autogenerated = yes imp = 7280 ck3 = 7125 ck3 = 7210 } # Wasteland -> Uzgend, Kyzylkum + link = { autogenerated = yes imp = 8183 ck3 = 6594 ck3 = 6595 } # Desert -> HAMADAT_HAMRA, JEBEL_NAFUSA + link = { autogenerated = yes imp = 9141 imp = 5285 imp = 8357 imp = 8358 imp = 8359 imp = 8361 imp = 8362 imp = 8363 ck3 = 6593 } # Sahara Impassable, IMPASSIBLE TERRAIN 285, Guir, Bechar, Lahmar, Abadla, Taghit, Goumi -> ERG_TOUATI + link = { autogenerated = yes imp = 5187 imp = 5186 ck3 = 659 } # IMPASSIBLE TERRAIN 187, IMPASSIBLE TERRAIN 186 -> IBERIAN IMPASSABLE TERRAIN 8 + link = { autogenerated = yes imp = 9138 ck3 = 6460 } # Sahara Impassable -> GHAT + link = { autogenerated = yes imp = 5990 ck3 = 6446 ck3 = 6447 ck3 = 6607 ck3 = 6667 ck3 = 6669 } # Garamantian Sahara -> ZALHA, ZAWILA, JUFRA, FEZZAN_ROUTE, TRAGHAN + link = { autogenerated = yes imp = 5943 ck3 = 6434 ck3 = 6435 ck3 = 8310 ck3 = 8315 ck3 = 8316 ck3 = 8317 ck3 = 8318 ck3 = 8319 ck3 = 8324 ck3 = 8439 } # Sudanese Impassable -> AL-RUSAYRISI, FAZUGHLI-EAST, SANA, DINDER, BAD, KIBRAN, BASHILA, GISHE, AMHARA, METEKEL_DESERT + link = { autogenerated = yes imp = 5333 imp = 5334 imp = 5341 imp = 5342 imp = 5508 imp = 5515 imp = 5516 imp = 5517 imp = 5518 imp = 5520 ck3 = 6425 } # Desert of Aswan, Desert of Luxor, Desert of Kharga, IP 343, Kysis, Sykaminia, Perusekh, Precariton, Hameka, Cataphri -> WAHAT-DESERT-SOUTH + link = { autogenerated = yes imp = 5974 imp = 5975 imp = 7589 imp = 8622 imp = 8624 imp = 8629 ck3 = 6418 } # Sudan Impassable, Sudan Impassable, Abliata, Kawahilah, Qigi, Qadarif -> BUTANA + link = { autogenerated = yes imp = 8115 imp = 8064 imp = 8066 ck3 = 6417 } # Northern Bayuda Desert, Fura, Halfa -> BAYUDA_EAST + link = { autogenerated = yes imp = 5944 ck3 = 6416 ck3 = 6426 ck3 = 6427 ck3 = 6432 ck3 = 6883 ck3 = 6884 } # Nubian Impassable -> BAYUDA_WEST, DAR_HAMID, JEBEL_ABU_NEGILA, RENK, EL-OBEID, EAST_KORDOFAN + link = { autogenerated = yes imp = 5945 ck3 = 6415 ck3 = 6424 ck3 = 6428 } # Nubian Impassable -> WADI_EL-MILK, WESTERN_NUB_DESERT, BIR_EL-KAI + link = { autogenerated = yes imp = 5354 ck3 = 6413 ck3 = 6414 ck3 = 6419 ck3 = 6423 ck3 = 6440 } # IP 355 -> KHAWR_BARAKA, DJARIN, BUTANA_NORTH, JEBEL_BEJA, DHERBE + link = { autogenerated = yes imp = 5331 ck3 = 6341 ck3 = 6422 } # IP 332 -> TUMBUS, NUBIAN_DESERT_WEST + link = { autogenerated = yes imp = 6498 imp = 5340 imp = 5542 imp = 5543 imp = 5544 imp = 5545 imp = 5552 imp = 5994 imp = 5995 ck3 = 6328 } # More Libyan Desert, IP 341, Murta, Magrab, Gerum, Thumat, Klimax, Desert of Philoteris, Oasis Parva -> WESTERN_DESERT + link = { autogenerated = yes imp = 6497 imp = 5338 imp = 5502 imp = 5522 ck3 = 6327 } # More Egyptian Desert, Farafra, Gebara, Debiri -> WAHAT-DESERT + link = { autogenerated = yes imp = 6048 ck3 = 6319 } # Hejaz -> JIBAL-AL-HIJAZI + link = { autogenerated = yes imp = 5937 imp = 5301 imp = 5302 imp = 5936 imp = 8888 imp = 8894 ck3 = 6318 } # Arabian Impassable, Omani Desert, IP 303, Arabian Impassable, Arabian Desert, Arabian Desert -> RUB-AL-KHALI + link = { autogenerated = yes imp = 8893 ck3 = 6303 } # Arabian Desert -> THAMUD + link = { autogenerated = yes imp = 5938 ck3 = 6302 } # Arabian Impassable -> AL-AHQAF + link = { autogenerated = yes imp = 5300 ck3 = 6299 } # Arabia Felix -> MAIN + link = { autogenerated = yes imp = 5883 ck3 = 625 ck3 = 7082 ck3 = 7084 ck3 = 7209 } # Fors -> Bailjar, Busaga, Sai-Kule, Ustyurt Plateau + link = { autogenerated = yes imp = 6046 ck3 = 6213 } # Arabian Desert -> BATN_NAKHL + link = { autogenerated = yes imp = 8889 ck3 = 6205 } # Arabian Desert -> TUZ + link = { autogenerated = yes imp = 5935 ck3 = 6179 ck3 = 6202 } # Arabian Impassable -> QASR_AT-TUBA, AN-NAFUD + link = { autogenerated = yes imp = 8882 ck3 = 6173 } # Arabian Desert -> NUFUD-AS-SIRR + link = { autogenerated = yes imp = 5940 ck3 = 6164 ck3 = 6165 ck3 = 6167 ck3 = 6168 ck3 = 6169 ck3 = 6170 ck3 = 6175 ck3 = 6320 } # Arabian Impassable -> HAFAR, AL-MAWIYA, AD-DAHNA DESERT, ATH-THALABIYA, ZUBALA, LINA, BITAN, AL-HAJRA + link = { autogenerated = yes imp = 5158 imp = 5156 imp = 5157 imp = 699 ck3 = 6123 } # IMPASSIBLE TERRAIN 158, IMPASSIBLE TERRAIN 156, Sinai, Eboda -> SINAI DESERT + link = { autogenerated = yes imp = 5351 imp = 5350 imp = 5946 imp = 6499 imp = 8121 imp = 8122 imp = 8123 imp = 8124 imp = 8153 ck3 = 6115 } # IP 352, IP 351, West Nile Impassable, More Libyan Desert, Tubat, Jaghbub, Tarfawi, Qabr, Hait -> LIBYAN DESERT + link = { autogenerated = yes imp = 5293 imp = 5292 imp = 5294 imp = 565 ck3 = 6114 } # Troikon Oros, IMPASSIBLE TERRAIN 292, Desert of Klysma, Ghuzza -> EASTERN DESERT + link = { autogenerated = yes imp = 5339 ck3 = 6059 ck3 = 6116 } # IP 340 -> TIRSA, WADI_NATRUN + link = { autogenerated = yes imp = 6044 ck3 = 5990 ck3 = 5996 ck3 = 6124 } # Syrian Desert -> AIN AT-TAMR, KHAFFAN, SYRIAN DESERT + link = { autogenerated = yes imp = 7646 ck3 = 5982 ck3 = 5986 ck3 = 5987 } # Syrian Desert -> ZAIZA, AZ-ZARQA, AL-AZRAQ + link = { autogenerated = yes imp = 6045 ck3 = 5977 ck3 = 5988 } # Nabatean Desert -> ADRUH, AL-JILAT + link = { autogenerated = yes imp = 5934 ck3 = 5951 ck3 = 5952 } # Agraeia -> JUWAIR, MARJ-RAHIT + link = { autogenerated = yes imp = 5181 ck3 = 5909 } # IMPASSIBLE TERRAIN 181 -> AS-SUWAYDIYA + link = { autogenerated = yes imp = 5210 ck3 = 5797 } # Bamni Volcano -> Dvin range + link = { autogenerated = yes imp = 5208 ck3 = 5796 } # Aragats Volcano -> Mount Aragats + link = { autogenerated = yes imp = 1543 imp = 1545 ck3 = 5755 } # Avarayr, Barun Qal'eh -> Marakan + link = { autogenerated = yes imp = 5174 ck3 = 5691 } # IMPASSIBLE TERRAIN 174 -> Koralla + link = { autogenerated = yes imp = 5170 ck3 = 5688 } # Argaeus Mons Volcano -> Mount Argaeus + link = { autogenerated = yes imp = 5169 ck3 = 5687 } # IMPASSIBLE TERRAIN 169 -> Mount Demirkazik + link = { autogenerated = yes imp = 5167 imp = 5166 ck3 = 5686 } # IMPASSIBLE TERRAIN 167, IMPASSIBLE TERRAIN 166 -> Eastern Taurus Mountains + link = { autogenerated = yes imp = 5164 ck3 = 5685 } # IMPASSIBLE TERRAIN 164 -> Western Taurus Mountains + link = { autogenerated = yes imp = 5176 ck3 = 5611 } # IMPASSIBLE TERRAIN 176 -> Arabissus + link = { autogenerated = yes imp = 5327 imp = 5324 imp = 5325 imp = 5326 ck3 = 5515 } # IP 328, Iberia Mons Volcano, IP 326, IP 327 -> Caucasus Mountains + link = { autogenerated = yes imp = 5893 imp = 5890 imp = 5892 imp = 5894 imp = 5895 imp = 5896 imp = 5897 imp = 5898 imp = 5901 imp = 5917 imp = 5922 imp = 5933 imp = 6204 imp = 6208 ck3 = 5514 } # Creasch, Mykon, Sechem, Kyta, Vynikka, Sarden, Yrbent, Shachel, Porach, Yonnav, Kumetta, Vylda, Urghalat, Khochy -> Caucasus Wasteland + link = { autogenerated = yes imp = 8948 imp = 6231 imp = 8945 imp = 8949 imp = 8950 imp = 8952 imp = 8953 imp = 8954 imp = 8955 imp = 8957 imp = 8958 imp = 9090 ck3 = 5513 } # Kazanka, Ashina, Ardembey, Dymar, Sasyktau, Burli, Nausha, Sapak, Sapargali, Kokkamys, Sasan, Tabiti -> Ryn Desert + link = { autogenerated = yes imp = 7640 ck3 = 5377 ck3 = 5392 ck3 = 5508 ck3 = 5509 } # Caspica -> Balachev, Alchanka, Peschanka, Atkarsk + link = { autogenerated = yes imp = 5970 ck3 = 5232 ck3 = 5354 ck3 = 5374 ck3 = 5375 ck3 = 5389 ck3 = 5498 } # Pontic Steppe Impassable -> Yelets, Szava, Teluchezeva, Lejlotka, Kolychev, Repnoye + link = { autogenerated = yes imp = 5981 ck3 = 5143 ck3 = 5145 ck3 = 5150 ck3 = 5151 ck3 = 5152 ck3 = 5153 ck3 = 5155 ck3 = 5158 ck3 = 5161 ck3 = 5162 ck3 = 5163 ck3 = 5164 ck3 = 5165 ck3 = 5166 ck3 = 5167 ck3 = 5168 ck3 = 5169 ck3 = 5170 ck3 = 5171 ck3 = 5172 ck3 = 5173 ck3 = 5174 ck3 = 5175 ck3 = 5176 ck3 = 5212 ck3 = 5213 ck3 = 5214 ck3 = 5216 ck3 = 5217 ck3 = 5218 ck3 = 5222 ck3 = 5223 ck3 = 5226 ck3 = 5227 ck3 = 5228 ck3 = 5229 ck3 = 5230 ck3 = 5231 ck3 = 5233 ck3 = 5234 ck3 = 5235 ck3 = 5236 ck3 = 5237 ck3 = 5238 ck3 = 5239 ck3 = 5240 ck3 = 5241 ck3 = 5242 ck3 = 5243 ck3 = 5244 ck3 = 5245 ck3 = 5246 ck3 = 5247 ck3 = 5248 ck3 = 5249 ck3 = 5250 ck3 = 5251 ck3 = 5253 ck3 = 5254 ck3 = 5255 ck3 = 5256 ck3 = 5350 ck3 = 5351 ck3 = 5352 ck3 = 5353 ck3 = 5355 ck3 = 5356 ck3 = 5357 ck3 = 5358 ck3 = 5359 ck3 = 5360 ck3 = 5361 ck3 = 5362 ck3 = 5363 ck3 = 5364 ck3 = 5365 ck3 = 5366 ck3 = 5367 ck3 = 5368 ck3 = 5369 ck3 = 5370 ck3 = 5383 ck3 = 5384 ck3 = 5385 ck3 = 5386 ck3 = 5387 ck3 = 5388 ck3 = 5390 ck3 = 5391 ck3 = 5393 ck3 = 5394 ck3 = 5396 ck3 = 5397 ck3 = 5398 ck3 = 5399 ck3 = 5400 ck3 = 5402 ck3 = 5403 ck3 = 5405 ck3 = 5406 ck3 = 5407 ck3 = 5408 ck3 = 5409 ck3 = 5411 ck3 = 5412 ck3 = 5413 ck3 = 5414 ck3 = 5415 ck3 = 5416 ck3 = 5417 ck3 = 5418 ck3 = 5419 ck3 = 5420 ck3 = 5421 ck3 = 5422 ck3 = 5423 ck3 = 5424 ck3 = 5425 ck3 = 5426 ck3 = 5427 ck3 = 5470 ck3 = 5471 ck3 = 5472 ck3 = 5503 ck3 = 5504 ck3 = 5505 ck3 = 5506 ck3 = 5507 ck3 = 5512 ck3 = 569 ck3 = 570 ck3 = 571 ck3 = 572 ck3 = 573 ck3 = 574 ck3 = 575 ck3 = 577 ck3 = 578 ck3 = 579 ck3 = 580 ck3 = 581 ck3 = 582 ck3 = 5825 ck3 = 5827 ck3 = 5828 ck3 = 583 ck3 = 584 ck3 = 585 ck3 = 587 ck3 = 588 ck3 = 589 ck3 = 590 ck3 = 591 ck3 = 592 ck3 = 609 ck3 = 610 ck3 = 611 ck3 = 613 ck3 = 614 ck3 = 616 ck3 = 972 } # Russian Impassable -> Rusa, Loknya, Sebezh, Nevel, Novorzhev, Tikhvin, Borovichi, Ves Yogonska, Luki, Kholm, Seltsa u Nishi, Torzhok, Klichen, Valday, Vyshny Volochyok, Bezichi, Zhelezny Ustyug, Toropets, Andreapol, Ozerski, Tver, Volok Lamsky, Kashin, Mologa, Kozelsk, Vorotynsk, Belev, Mtensk, Odoyev, Suvorov, Velizh, Dukhovshchina, Lotoshino, Zubstov, Pereyaslavl Ryazanski, Rostislavl, Klepiki, Tula, Gorodets-Meshchyorsky, Vyksa, Pavlovo, Volochok, Sudogda, Yegoryevsk, Suzdal, Yuryev, Ivanovo, Gavrilovskoye, Klin, Naro-Fominsk, Serpukhov, Kineshma, Plyos, Shuya, Sol Vilikaya, Manturovo, Kostroma, Vaskina Polyana, Svolensk, Pikalyovo, Makariev, Voronezh, Lipetsk, Usman, Tambov, Plavitza, Matya, Kozlov, Oranienburg, Lachyk-Uba, Morchansk, Chatzk, Rakcha, Urmary, Tzyvil, Alatyr, Penza, Insara, Chechkeiev, Hanbalik, Uza, Saran, Serdosk, Kachma, Vorona, Kirsanov, Durovka, Petrovsk, Treliaka, Volzhsk, Arda, Mari-Turek, Kashan, Arsk, Mamadych, Otarka, Voloz, Elabuga, Cukataw, Suvar, Tukhchi, Yar Calli, Agidel, Banja, Karabolam, Aqsubay, Elmet, Buzuluk, Pokhnishne, Neftegorsk, Belebey, Menzelinsk, Siun, Achaly, Jalmat, Pascherty, Bugulma, Almetyvesk, Bugurslan, Bol Uran, Cykma, Semenov, Luch, Kamelik, Jambalar, Yalachi, Maza, Maloi Irghiz, Vepsian Wasteland, Vyazma, Dmitrov, Uglich, Yaroslavl, Pereyaslavl Zalessky, Rostov, Moskva, Pronsk, Kolomna, Saransk, Ryazan, Murom, Vladimir, Sheksna, Danilov, Vyatskoye, Starodub-on-the-klyazma, Nizhny Novgorod, Gorodets, Mozhaysk, Yoshkar-Ola, Urzen, Cheboksary, Simbirsk, Saratov, Samar, Bolghar, Kazan, Bilyar, Ashli, Pecheneg, VEPSIAN WASTELAND + link = { autogenerated = yes imp = 7641 ck3 = 5129 ck3 = 5135 ck3 = 5221 } # Alania -> Polotsk, Haradok, Gnezdovo + link = { autogenerated = yes imp = 5297 ck3 = 4898 ck3 = 716 } # Carpathia -> HUNGARIAN-MORAVIAN MOUNTAINS, HUNGARIAN-MORAVIAN MOUNTAINS + link = { autogenerated = yes imp = 5226 ck3 = 4879 } # Syrian Desert -> ARABAN + link = { autogenerated = yes imp = 5227 ck3 = 4848 ck3 = 4849 } # IMPASSIBLE TERRAIN 227 -> SINJAR, AL-HAYYAL + link = { autogenerated = yes imp = 5225 ck3 = 4817 } # IMPASSIBLE TERRAIN 225 -> JUZA + link = { autogenerated = yes imp = 5223 ck3 = 4776 } # IMPASSIBLE TERRAIN 223 -> BAMARDANI + link = { autogenerated = yes imp = 5320 ck3 = 4742 ck3 = 6325 } # Eastern Gaetulia -> GHAZWAN, ATLAS-AS-SAHRI + link = { autogenerated = yes imp = 5321 ck3 = 4662 ck3 = 4751 ck3 = 6592 } # Western Gaetulia -> HISN LAWATA, MECHERIA, ERG_ATLASI + link = { autogenerated = yes imp = 5951 ck3 = 4609 ck3 = 4610 ck3 = 4611 ck3 = 4613 ck3 = 4614 ck3 = 4615 ck3 = 4616 ck3 = 4618 ck3 = 6323 ck3 = 6324 ck3 = 6587 } # Mauri Impassable -> ARIGH, TUGGURT, TAGHYART, SADRATA, KARIMA, WARGLA, GHARDAIA, TILGHEMT, ERG-SHARQI, ERG-MZABI, ERG_IGUIDI + link = { autogenerated = yes imp = 3222 ck3 = 4570 ck3 = 4612 ck3 = 4617 ck3 = 4759 ck3 = 6322 ck3 = 6326 ck3 = 6452 ck3 = 6453 ck3 = 6454 ck3 = 6461 ck3 = 6462 ck3 = 6463 ck3 = 6464 ck3 = 6467 ck3 = 6468 ck3 = 6469 ck3 = 6495 ck3 = 6496 ck3 = 6497 ck3 = 6498 ck3 = 6499 ck3 = 6589 ck3 = 6590 ck3 = 6591 ck3 = 6596 ck3 = 6597 ck3 = 6598 ck3 = 6604 ck3 = 6605 ck3 = 6662 ck3 = 6666 ck3 = 6668 ck3 = 6885 ck3 = 6886 ck3 = 6887 ck3 = 6888 ck3 = 6889 ck3 = 6896 ck3 = 6904 ck3 = 730 } # (Unknown) -> GHADAMES, TABALBALA, AL-QULAYA, TAOUZ, TEDMAIT, ERG-GHARBI, DJADO, TUMMO, SAKADAME, AL-FEWET, AL-BARKAT, DJANET, EFERI, ADRAR_TIMMI, BOUDA, WADI_DAOURA, FAYA, AIN_GALAKKA, TIBESTI-SOUTH, TIBESTI-CENTRAL, BARDAI, TANZEROUFT, TIDIKELT, HAMADAT_TINGHERT, IDEHAN_MURZUQ, SAHARAT_HAGGAR, SAHARAT_AIR, TIBESTI-DESERT, BODELE-DESERT, EAST_AHAGGAR, TIBESTI_ROUTE, DJADO_ROUTE, MALHA, KERKER, UMM_KEDADA, TAGABO, TEIGA, UPPER_MILK, DARFUR_DESERT, Eastern Sahara + link = { autogenerated = yes imp = 3316 ck3 = 4518 } # Sindhian Mountains -> KOHLU + link = { autogenerated = yes imp = 5260 ck3 = 4470 ck3 = 4471 ck3 = 4472 ck3 = 4473 } # IMPASSIBLE TERRAIN 260 -> JALK, BANNAJBUR, MASHKI, RODKHAN + link = { autogenerated = yes imp = 7283 ck3 = 4468 ck3 = 4469 } # Impassable -> SAINDAK, CHAGAI + link = { autogenerated = yes imp = 5368 ck3 = 4465 } # IP 369 -> RUDBAR + link = { autogenerated = yes imp = 5249 ck3 = 4292 } # Pactyan Desert -> Karkuya + link = { autogenerated = yes imp = 7282 ck3 = 4287 } # Impassable -> Dizak Makrani + link = { autogenerated = yes imp = 6062 ck3 = 4273 ck3 = 4284 } # Parecania -> Fahraj, Rasak + link = { autogenerated = yes imp = 5258 ck3 = 4203 ck3 = 4209 } # IMPASSIBLE TERRAIN 258 -> Abiz, Khawaf + link = { autogenerated = yes imp = 5243 ck3 = 4122 } # IMPASSIBLE TERRAIN 243 -> Lurijan + link = { autogenerated = yes imp = 5241 ck3 = 4113 ck3 = 4259 } # IMPASSIBLE TERRAIN 241 -> Juy-e-Sard, Dizful + link = { autogenerated = yes imp = 5242 ck3 = 4112 ck3 = 4123 ck3 = 4124 } # IMPASSIBLE TERRAIN 242 -> Asbid-Dasht, Aruj, Samshiborid + link = { autogenerated = yes imp = 5255 ck3 = 4083 ck3 = 4276 } # IMPASSIBLE TERRAIN 255 -> Bamm, Kurk + link = { autogenerated = yes imp = 7288 ck3 = 3998 } # Impassable -> Bikramkhol + link = { autogenerated = yes imp = 7285 ck3 = 3970 } # Impassable -> Thar Desert 2 + link = { autogenerated = yes imp = 5299 ck3 = 3950 ck3 = 3951 ck3 = 5035 ck3 = 719 ck3 = 732 } # IMPASSIBLE TERRAIN 299 -> BALKAN IMPASSABLE TERRAIN 7, EASTERN EUROPE IMPASSABLE TERRAIN 1, Vatra Dornei, CARPATHIANS, CARPATHIANS + link = { autogenerated = yes imp = 5115 ck3 = 3949 } # IMPASSIBLE TERRAIN 115 -> BALKAN IMPASSABLE TERRAIN 6 + link = { autogenerated = yes imp = 5079 ck3 = 3585 } # Dalmatian Mountains -> Breznica + link = { autogenerated = yes imp = 5090 ck3 = 3564 } # IMPASSIBLE TERRAIN 090 -> Olovo + link = { autogenerated = yes imp = 7296 ck3 = 3433 } # Impassable -> Kahlur + link = { autogenerated = yes imp = 7286 ck3 = 3390 } # Impassable -> Thar Desert 1 + link = { autogenerated = yes imp = 6057 ck3 = 3386 } # Marudesa -> Kiratakupa + link = { autogenerated = yes imp = 5033 ck3 = 3314 } # IMPASSIBLE TERRAIN 033 -> ALPS 8 + link = { autogenerated = yes imp = 5120 imp = 5030 imp = 5116 ck3 = 3311 } # IMPASSIBLE TERRAIN 120, Alpes Carnicae, Alpes Iuliae -> ALPS 5 + link = { autogenerated = yes imp = 5121 imp = 3618 imp = 3656 imp = 3657 imp = 5029 imp = 5040 imp = 5124 ck3 = 3310 } # IMPASSIBLE TERRAIN 121, Summus Lacus, Alpis Superior, Alpis Inferior, Alpes Rhaeticae, IMPASSIBLE TERRAIN 040, IMPASSIBLE TERRAIN 124 -> ALPS 4 + link = { autogenerated = yes imp = 5028 imp = 3612 imp = 3613 imp = 3615 imp = 5027 imp = 5042 imp = 5123 ck3 = 3309 } # Alpes Lepontinae, Eudracinum, Octodurus, Mons Alpinus, IMPASSIBLE TERRAIN 027, IMPASSIBLE TERRAIN 042, IMPASSIBLE TERRAIN 123 -> ALPS 3 + link = { autogenerated = yes imp = 5026 ck3 = 3308 } # Alpes Graiae -> ALPS 2 + link = { autogenerated = yes imp = 5132 ck3 = 3306 } # IMPASSIBLE TERRAIN 132 -> IBERIAN IMPASSIBLE TERRAIN 7 + link = { autogenerated = yes imp = 5133 imp = 5051 imp = 5052 ck3 = 3305 } # IMPASSIBLE TERRAIN 133, IMPASSIBLE TERRAIN 051, IMPASSIBLE TERRAIN 052 -> IBERIAN IMPASSIBLE TERRAIN 6 + link = { autogenerated = yes imp = 9288 ck3 = 3304 } # Iberian Impassable -> IBERIAN IMPASSIBLE TERRAIN 5 + link = { autogenerated = yes imp = 5182 ck3 = 3303 } # IMPASSIBLE TERRAIN 182 -> IBERIAN IMPASSIBLE TERRAIN 4 + link = { autogenerated = yes imp = 9290 imp = 9291 ck3 = 3302 } # Iberian Impassable, Iberian Impassable -> IBERIAN IMPASSIBLE TERRAIN 3 + link = { autogenerated = yes imp = 5188 ck3 = 3300 } # IMPASSIBLE TERRAIN 188 -> IBERIAN IMPASSIBLE TERRAIN 1 + link = { autogenerated = yes imp = 5067 ck3 = 3299 } # IMPASSIBLE TERRAIN 067 -> BALKAN IMPASSABLE TERRAIN 5 + link = { autogenerated = yes imp = 5074 ck3 = 3298 } # IMPASSIBLE TERRAIN 074 -> BALKAN IMPASSABLE TERRAIN 4 + link = { autogenerated = yes imp = 5106 ck3 = 3297 } # IMPASSIBLE TERRAIN 106 -> BALKAN IMPASSABLE TERRAIN 3 + link = { autogenerated = yes imp = 5084 ck3 = 3296 } # IMPASSIBLE TERRAIN 084 -> BALKAN IMPASSABLE TERRAIN 2 + link = { autogenerated = yes imp = 5111 imp = 5112 ck3 = 3295 } # IMPASSIBLE TERRAIN 111, IMPASSIBLE TERRAIN 112 -> BALKAN IMPASSABLE TERRAIN 1 + link = { autogenerated = yes imp = 5987 ck3 = 3294 ck3 = 4646 ck3 = 4647 } # Maurian Plateau -> Tell Atlas Mountains 9, ASHIR-BANYA, ASHIR-YASHIR + link = { autogenerated = yes imp = 5266 imp = 5267 imp = 5392 imp = 5393 imp = 5394 imp = 5395 imp = 5396 imp = 6796 imp = 6798 ck3 = 3292 } # IMPASSIBLE TERRAIN 266, IMPASSIBLE TERRAIN 267, Kurah, Artessia, Khiva, Dharakh, Ghore, Qanga, Shahsenem -> PERSIAN IMPASSABLE TERRAIN 4 + link = { autogenerated = yes imp = 5259 ck3 = 3290 } # IMPASSIBLE TERRAIN 259 -> PERSIAN IMPASSABLE TERRAIN 2 + link = { autogenerated = yes imp = 5237 ck3 = 3289 } # Qumis Highland -> PERSIAN IMPASSABLE TERRAIN 1 + link = { autogenerated = yes imp = 5019 imp = 5129 ck3 = 3259 } # IMPASSIBLE TERRAIN 019, IMPASSIBLE TERRAIN 129 -> Northern Apennine Mountains 2 + link = { autogenerated = yes imp = 5023 imp = 5131 ck3 = 3256 } # Alpes Cottiae, Alpes Maritimae -> ALPS 1 + link = { autogenerated = yes imp = 5385 ck3 = 3179 ck3 = 3255 ck3 = 9016 ck3 = 9045 ck3 = 9046 ck3 = 9047 } # IP 386 -> KUNLUNSHAN, KUNLUNSHAN, Darcha, Tabo, Dhankar, Kardang + link = { autogenerated = yes imp = 5961 ck3 = 3150 ck3 = 3612 ck3 = 4059 ck3 = 4281 ck3 = 4282 ck3 = 5913 ck3 = 5997 ck3 = 7787 ck3 = 7941 ck3 = 8526 ck3 = 8527 ck3 = 8528 ck3 = 9031 ck3 = 9032 ck3 = 9033 ck3 = 9034 ck3 = 9035 ck3 = 9036 ck3 = 9041 ck3 = 9042 ck3 = 9043 ck3 = 9062 ck3 = 9063 ck3 = 9064 ck3 = 9065 ck3 = 9212 ck3 = 9213 ck3 = 9215 ck3 = 9216 ck3 = 9218 ck3 = 9219 ck3 = 9220 ck3 = 9221 ck3 = 9252 ck3 = 9253 ck3 = 9254 ck3 = 9258 ck3 = 9259 ck3 = 9260 ck3 = 9261 ck3 = 9262 ck3 = 9263 ck3 = 9264 ck3 = 9280 ck3 = 9355 ck3 = 9356 ck3 = 9357 ck3 = 9358 ck3 = 9360 ck3 = 9361 ck3 = 9363 ck3 = 9364 ck3 = 9365 ck3 = 9366 ck3 = 9367 ck3 = 9389 ck3 = 9390 ck3 = 9391 ck3 = 9609 ck3 = 9611 ck3 = 9612 ck3 = 971 } # Tibetan Plateau Impassable -> KUNLUNSHAN, KUNLUNSHAN, KUNLUNSHAN, KUNLUNSHAN, KUNLUNSHAN, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, Nischu, Sumna, Thaldat, Sumnal, Sumdo, Chungtash, Memar, Bangdag, Bairab, Dongco, Gomoco, Chagboco, Burogco, Xainza, Shyungme, Nyima, Aso, Ngoqu, Garkung, Margai, Yurba, Xenkyer, Pukpa, Balla, Qangma, Parling, Xibde, Cozhelhoma, Garco, Dorsoidong, Cozhedangma, Yiong, Amdo, Gangnyi, Sibnak_Chenchungo, Marrong, Yenshipin, Quemoco, Sewa, Ulenulaco, Dokecoring, Dokecoring_Qangco, Yuyico, Ayakkum, Aqqikkol, Kytkol, Bugaiwilik, Mahas, Domoko, TIBET IMPASSABLE + link = { autogenerated = yes imp = 5037 ck3 = 3129 ck3 = 3135 } # IMPASSIBLE TERRAIN 037 -> IRDNING, HALLSTATT + link = { autogenerated = yes imp = 5126 ck3 = 3128 } # IMPASSIBLE TERRAIN 126 -> KAMMERSBERG + link = { autogenerated = yes imp = 5375 ck3 = 3123 } # IP 376 -> KUNLUNSHAN + link = { autogenerated = yes imp = 5127 ck3 = 3120 } # IMPASSIBLE TERRAIN 127 -> OBERWART + link = { autogenerated = yes imp = 5962 ck3 = 3104 ck3 = 9615 } # Karakoram -> KUNLUNSHAN, Kehan + link = { autogenerated = yes imp = 5036 ck3 = 3092 ck3 = 3121 ck3 = 3122 ck3 = 3257 } # IMPASSIBLE TERRAIN 036 -> PITTEN, MURZZUSCHLAG, MARIAZELL, German Mountains 13 + link = { autogenerated = yes imp = 7297 ck3 = 3026 ck3 = 4519 } # Impassable -> PERSIAN IMPASSABLE, MEKHTAR + link = { autogenerated = yes imp = 5345 ck3 = 3022 ck3 = 4510 ck3 = 4517 } # IP 346 -> PERSIAN IMPASSABLE, ASFANJAY, LORALAI + link = { autogenerated = yes imp = 5346 ck3 = 3011 ck3 = 4521 ck3 = 4522 } # IP 347 -> PERSIAN IMPASSABLE, Urgun, Shakin + link = { autogenerated = yes imp = 5344 ck3 = 3002 } # IP 345 -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5275 ck3 = 2996 } # IMPASSIBLE TERRAIN 275 -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5125 ck3 = 2954 ck3 = 3312 } # IMPASSIBLE TERRAIN 125 -> BOZEN, ALPS 6 + link = { autogenerated = yes imp = 5038 ck3 = 2951 ck3 = 2985 ck3 = 3313 } # Alpes Noricae -> MATREI, LAUKENTAL, ALPS 7 + link = { autogenerated = yes imp = 5261 ck3 = 2929 ck3 = 2930 ck3 = 2944 ck3 = 2974 ck3 = 4206 ck3 = 4227 ck3 = 4228 } # IMPASSIBLE TERRAIN 261 -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, Khin, Ghur, Darmashan + link = { autogenerated = yes imp = 5262 ck3 = 2908 ck3 = 4229 } # IMPASSIBLE TERRAIN 262 -> PERSIAN IMPASSABLE, Bashin + link = { autogenerated = yes imp = 5268 ck3 = 2884 } # IMPASSIBLE TERRAIN 268 -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5274 ck3 = 2881 } # Bactrian Highland -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5273 ck3 = 2754 } # IMPASSIBLE TERRAIN 273 -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5963 ck3 = 2718 ck3 = 2734 ck3 = 2740 ck3 = 3037 ck3 = 3071 ck3 = 4358 ck3 = 4515 ck3 = 7952 ck3 = 7953 ck3 = 7954 ck3 = 7955 } # Badakshan Impassable -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, KUNLUNSHAN, KUNLUNSHAN, Sanglich, CHITRAL, Shandur, Golaghmuli, Yasin, Naltar + link = { autogenerated = yes imp = 5278 ck3 = 2667 ck3 = 2668 ck3 = 3291 ck3 = 4366 ck3 = 4367 } # IMPASSIBLE TERRAIN 278 -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE TERRAIN 3, Upper Karran, Lower Karran + link = { autogenerated = yes imp = 5270 imp = 5271 imp = 5272 imp = 5276 imp = 5277 imp = 6722 ck3 = 2601 } # Sogdian Mountains, IMPASSIBLE TERRAIN 271, IMPASSIBLE TERRAIN 272, IMPASSIBLE TERRAIN 276, Ferghanan Mountains, Imarash -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5281 imp = 5280 ck3 = 2580 } # IMPASSIBLE TERRAIN 281, Talas Highland -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5381 ck3 = 250 } # Thule -> RAABOIGDE + link = { autogenerated = yes imp = 5967 ck3 = 2486 ck3 = 7163 ck3 = 7168 } # More Steppe Impassable -> TIANSHAN, Kopathal, Qayaliq + link = { autogenerated = yes imp = 5130 ck3 = 2484 } # IMPASSIBLE TERRAIN 130 -> Northern Apennine Mountains 1 + link = { autogenerated = yes imp = 5122 ck3 = 2478 } # IMPASSIBLE TERRAIN 122 -> BELLINZONA + link = { autogenerated = yes imp = 5041 ck3 = 2461 } # IMPASSIBLE TERRAIN 041 -> SCHWYZ + link = { autogenerated = yes imp = 5952 ck3 = 236 ck3 = 240 ck3 = 324 ck3 = 345 ck3 = 346 ck3 = 348 ck3 = 349 ck3 = 350 ck3 = 351 ck3 = 352 ck3 = 353 ck3 = 354 ck3 = 355 ck3 = 356 ck3 = 8728 ck3 = 8729 ck3 = 8732 ck3 = 8739 } # Swedish Impassable -> HEDMARK, SUTHRI EYSTRIDALI, FRISKDAL, HENAMORUM, VAESTRAAROS, SKYNZEKKEBERGE, FERNABO, FALENE, MOR, MOLUNGR, NORRBARKE, GAVLE, OKLABO, ODMARDEN, Leksand, Lima, Josse, Farnebo + link = { autogenerated = yes imp = 5953 ck3 = 233 ck3 = 235 ck3 = 238 ck3 = 247 ck3 = 255 ck3 = 257 ck3 = 258 ck3 = 259 ck3 = 260 ck3 = 261 ck3 = 262 ck3 = 264 ck3 = 299 ck3 = 3260 ck3 = 7 } # Norwegian Impassable -> RINGARIKI, VALDRES, SUTHRI GUDBRANDSDALI, NUMEDAL, HARDANGER, MITHRHORDALAND, NORTHRIHORDALAND, VOSS, SOGNFYLKI, BREMANGER, STOLSHEIMEN, DALE, NORWEGIAN IMPASSABLE 9, NORWEGIAN MOUNTAINS, SCALLOWAY + link = { autogenerated = yes imp = 5047 ck3 = 2224 ck3 = 2291 ck3 = 2292 } # Arverni Highland -> SAINT-FLOUR, LANGEAC, MURAT + link = { autogenerated = yes imp = 5046 ck3 = 2063 ck3 = 2296 } # IMPASSIBLE TERRAIN 046 -> VIVIERS, VELAY + link = { autogenerated = yes imp = 5024 ck3 = 2027 } # IMPASSIBLE TERRAIN 024 -> EMBRUN + link = { autogenerated = yes imp = 5184 ck3 = 2004 } # Mons Orospeda -> REOLID + link = { autogenerated = yes imp = 5053 ck3 = 1870 } # IMPASSIBLE TERRAIN 053 -> VIELHA + link = { autogenerated = yes imp = 5976 ck3 = 175 ck3 = 176 ck3 = 177 ck3 = 178 ck3 = 179 ck3 = 180 ck3 = 216 ck3 = 217 } # Finland Impassable -> PORVOO, ESPOO, RASEBORG, RIKALA, TURKU, RAUMA, SUND, JOMALA + link = { autogenerated = yes imp = 5283 ck3 = 1697 ck3 = 1723 ck3 = 1735 ck3 = 1743 ck3 = 1744 ck3 = 1745 } # Caledonian Highland -> MENEITH, MAR, CALLANDER, DUNKELD, ABERFELDY, CRIEFF + link = { autogenerated = yes imp = 5882 ck3 = 1489 ck3 = 7077 ck3 = 7080 } # Multen -> Ustyurt Plateau, Fort Novoaleksandrovkiy, Karasye + link = { autogenerated = yes imp = 7284 ck3 = 1485 ck3 = 4463 ck3 = 4464 } # Impassable -> PERSIAN IMPASSABLE TERRAIN, KISH-RUDBAR, MOFD AFDZALKHAN + link = { autogenerated = yes imp = 5256 ck3 = 1471 } # IMPASSIBLE TERRAIN 256 -> PERSIAN IMPASSABLE TERRAIN + link = { autogenerated = yes imp = 5253 imp = 5251 ck3 = 1437 } # IMPASSIBLE TERRAIN 254, IMPASSIBLE TERRAIN 251 -> PERSIAN IMPASSABLE TERRAIN + link = { autogenerated = yes imp = 5231 ck3 = 1436 } # IMPASSIBLE TERRAIN 231 -> AZERBAIJAN MOUNTAINS + link = { autogenerated = yes imp = 5969 ck3 = 1430 ck3 = 1433 ck3 = 5428 ck3 = 5429 ck3 = 5430 ck3 = 5431 ck3 = 5432 ck3 = 5433 ck3 = 5478 ck3 = 5479 ck3 = 5480 ck3 = 5481 ck3 = 5482 ck3 = 5483 ck3 = 5484 ck3 = 5485 ck3 = 5486 ck3 = 5499 ck3 = 5500 ck3 = 5501 ck3 = 5502 ck3 = 5517 ck3 = 615 ck3 = 7220 ck3 = 7239 ck3 = 7245 ck3 = 7246 ck3 = 7247 ck3 = 7248 ck3 = 7249 ck3 = 7250 ck3 = 7251 ck3 = 7252 ck3 = 7265 ck3 = 7269 ck3 = 7270 ck3 = 7271 ck3 = 7272 ck3 = 7273 ck3 = 7275 ck3 = 7276 ck3 = 7352 ck3 = 7353 ck3 = 8710 ck3 = 896 ck3 = 897 } # European Steppe Impassable -> Zhitikara, Terekti, Sakmarskoi Gorodok, Sterlitamak, Teterpush, Salavat, Kumertau, Prechistenskaya, Inzer, Prigorod Tabynsk, Bielaya, Yanokul, Kaginskoi, Sakmara, Yuldybayevo, Verkouralsk, Yumanova, Orskaya, Chalap Kerman, Orenburg, Ilekskoi Gorodok, Southern Urals, Ufa, Chubar_KAZ, Kos Uba, Jity Kul, Suvunduk, Atamansku, Kbumak, Dantenkul, Jarli Butak, Jitikul, Kosh Kurbay, Sor Kuduk, Tuzdyn, Jilanjik, Tamdins, Ulytau, Ajutasty, Kaptadyr, Jaman Arganaty, Western Kazakh Steppe, Central Kazakh Steppe, Western Kazakh Steppe, Aqtobe, Iletsk + link = { autogenerated = yes imp = 5230 ck3 = 1429 ck3 = 4766 ck3 = 4768 } # IMPASSIBLE TERRAIN 230 -> AZERBAIJAN MOUNTAINS, BARZA, DARBAND QARABULI + link = { autogenerated = yes imp = 5224 ck3 = 1428 } # Kelishin -> AZERBAIJAN MOUNTAINS + link = { autogenerated = yes imp = 5222 ck3 = 1417 } # IMPASSIBLE TERRAIN 222 -> AZERBAIJAN MOUNTAINS + link = { autogenerated = yes imp = 768 ck3 = 1379 } # Libanus Mons -> SYRIAN IMPASSABLE + link = { autogenerated = yes imp = 5228 imp = 5229 ck3 = 1373 } # IMPASSIBLE TERRAIN 228, IMPASSIBLE TERRAIN 229 -> SYRIAN DESERT + link = { autogenerated = yes imp = 5358 ck3 = 1350 ck3 = 3478 } # IP 359 -> Reni, Ladnu + link = { autogenerated = yes imp = 5379 imp = 5376 imp = 5604 imp = 5668 imp = 6742 imp = 6745 imp = 6756 imp = 8765 ck3 = 1347 } # IP 380, IP 377, Gondogoro Pass, Taklamakan, Pishan, Keriya, Khata, Cadota -> TAKLAMAKAN DESERT + link = { autogenerated = yes imp = 5295 ck3 = 1344 } # Syrian Desert -> SYRIAN DESERT + link = { autogenerated = yes imp = 8883 ck3 = 1335 } # Arabian Desert -> AD-DAHNA DESERT + link = { autogenerated = yes imp = 5336 ck3 = 1334 ck3 = 8333 ck3 = 8334 ck3 = 8335 } # IP 337 -> DANAKIL_HILLS, RAGALI, AMARTA, AFERA + link = { autogenerated = yes imp = 5939 ck3 = 1330 ck3 = 6206 ck3 = 6214 ck3 = 6215 ck3 = 6228 ck3 = 6229 ck3 = 6230 ck3 = 6231 ck3 = 6232 ck3 = 6233 ck3 = 6247 ck3 = 6256 ck3 = 6257 ck3 = 6263 ck3 = 6265 ck3 = 6266 ck3 = 6267 } # Arabian Impassable -> JIBAL-AL-HIJAZI, HAJIR, RABADHA, MADIN-AN-NAQIRA, MARRAN, AD-DATHINA, SUBAY, RANYA, WADI_GHAMID, TURABA, SARBA, NUFUD-AD-DIHI, NUFUD-AS-SURRAH, RAMA, DARIYA, JADILA, FALJA + link = { autogenerated = yes imp = 5290 ck3 = 1326 } # Qal'eh -> JIBAL-AL-HIJAZI + link = { autogenerated = yes imp = 5155 ck3 = 1322 } # IMPASSIBLE TERRAIN 155 -> SINAI DESERT + link = { autogenerated = yes imp = 5288 ck3 = 1320 } # IMPASSIBLE TERRAIN 288 -> SINAI DESERT + link = { autogenerated = yes imp = 5356 ck3 = 1304 ck3 = 3387 ck3 = 3389 } # IP 357 -> Ludrava, Jaisalmer, Juna_Barmer + link = { autogenerated = yes imp = 5369 ck3 = 1296 } # IP 370 -> Dimapur + link = { autogenerated = yes imp = 5282 ck3 = 12925 ck3 = 2539 ck3 = 7149 ck3 = 7150 ck3 = 7151 } # IMPASSIBLE TERRAIN 282 -> TIANSHAN, TIANSHAN, Tinimseyit, Bagish, Cherik + link = { autogenerated = yes imp = 5378 ck3 = 12923 ck3 = 12924 } # Tarim -> TAKLAMAKAN DESERT, TAKLAMAKAN DESERT + link = { autogenerated = yes imp = 5380 ck3 = 12922 } # IP 381 -> kabulistan_mountains + link = { autogenerated = yes imp = 5347 ck3 = 12899 ck3 = 3031 } # IP 348 -> persia_mountains, PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5247 ck3 = 12898 } # Utian Plain -> zagros_mountains + link = { autogenerated = yes imp = 5246 ck3 = 12897 ck3 = 4093 ck3 = 4094 } # IMPASSIBLE TERRAIN 246 -> zagros_mountains, Lar, Kariyan + link = { autogenerated = yes imp = 5245 ck3 = 12895 } # IMPASSIBLE TERRAIN 245 -> zagros_mountains + link = { autogenerated = yes imp = 5257 ck3 = 12894 ck3 = 4068 ck3 = 4071 } # IMPASSIBLE TERRAIN 257 -> persia_mountains, Tun, Raqe + link = { autogenerated = yes imp = 5264 ck3 = 12891 } # IMPASSIBLE TERRAIN 264 -> alborz_mountains + link = { autogenerated = yes imp = 5386 ck3 = 12890 } # IP 387 -> alborz_mountains + link = { autogenerated = yes imp = 5265 ck3 = 12889 ck3 = 4032 ck3 = 4034 } # IMPASSIBLE TERRAIN 265 -> alborz_mountains, Kerend, Khodzhakala + link = { autogenerated = yes imp = 5236 ck3 = 12887 } # IMPASSIBLE TERRAIN 236 -> alborz_mountains + link = { autogenerated = yes imp = 5239 ck3 = 12885 } # IMPASSIBLE TERRAIN 239 -> alborz_mountains + link = { autogenerated = yes imp = 5238 ck3 = 12884 ck3 = 4005 ck3 = 4006 } # IMPASSIBLE TERRAIN 238 -> alborz_mountains, Ruyan, Alamut + link = { autogenerated = yes imp = 5220 ck3 = 12882 ck3 = 12883 } # IMPASSIBLE TERRAIN 220 -> alborz_mountains, alborz_mountains + link = { autogenerated = yes imp = 8118 ck3 = 1280 } # Upper Egyptian Desert -> EASTERN DESERT + link = { autogenerated = yes imp = 5357 ck3 = 1176 ck3 = 1349 ck3 = 1354 ck3 = 3476 } # IP 358 -> Medantaka, Vikramapura, Nagauda, Kolayat + link = { autogenerated = yes imp = 5352 ck3 = 1107 ck3 = 1108 } # Troglodytica -> EASTERN DESERT, EASTERN DESERT + link = { autogenerated = yes imp = 5964 ck3 = 10965 ck3 = 9589 ck3 = 9591 } # Burma Impassable -> Taunggyi, Myede, Hinthada + link = { autogenerated = yes imp = 5353 ck3 = 1089 } # Pendactylos Mons -> WOLLO_HIGHLANDS + link = { autogenerated = yes imp = 8550 ck3 = 1068 ck3 = 6389 ck3 = 6420 } # Meroe Desert -> NUBIAN_DESERT_SOUTH, SHUNQAYR, NUBIAN_DESERT_SOUTH + link = { autogenerated = yes imp = 5332 ck3 = 1050 ck3 = 6372 ck3 = 6374 ck3 = 6375 ck3 = 6384 ck3 = 6421 } # IP 333 -> JEBEL_BEJA, WADI_ODIB, NAQIS-NORTH, KHAWR_NUBT, NAQIS-SOUTH, NUBIAN_DESERT_EAST + link = { autogenerated = yes imp = 8716 ck3 = 1049 } # Somali Desert -> OGADEN_DESERT + link = { autogenerated = yes imp = 5101 ck3 = 1044 } # IMPASSIBLE TERRAIN 101 -> BALKAN MOUNTAINS + link = { autogenerated = yes imp = 5104 ck3 = 1043 ck3 = 3616 } # IMPASSIBLE TERRAIN 104 -> BALKAN MOUNTAINS, Kavurskoto Kale + link = { autogenerated = yes imp = 5076 ck3 = 1040 ck3 = 3646 } # Upper Macedonia -> BALKAN MOUNTAINS, Kicevo + link = { autogenerated = yes imp = 5077 ck3 = 1039 } # IMPASSIBLE TERRAIN 077 -> BALKAN MOUNTAINS + link = { autogenerated = yes imp = 5207 ck3 = 1013 ck3 = 5761 } # IMPASSIBLE TERRAIN 207 -> Lori, Bolnisi + link = { autogenerated = yes imp = 7643 ck3 = 101 ck3 = 108 } # Fennia -> LEMISELE, RIGA + link = { autogenerated = yes imp = 5020 ck3 = 1005 ck3 = 1006 ck3 = 633 ck3 = 634 ck3 = 646 ck3 = 8616 ck3 = 943 ck3 = 958 ck3 = 986 ck3 = 990 } # IMPASSIBLE SEA -> Gulf of Bothnia, Gulf of Finland, Gulf of Bothnia, Archipelago Sea, Gulf of Finland, Sea of Shetland, Näsijärvi, Ladoga, Coast of Norway, North Sea + link = { autogenerated = yes imp = 5973 ck3 = 100 ck3 = 102 ck3 = 103 ck3 = 109 ck3 = 134 ck3 = 135 ck3 = 136 ck3 = 138 ck3 = 139 ck3 = 140 ck3 = 141 ck3 = 142 ck3 = 143 ck3 = 144 ck3 = 145 ck3 = 146 ck3 = 147 ck3 = 148 ck3 = 167 ck3 = 168 ck3 = 169 ck3 = 170 ck3 = 173 ck3 = 5130 ck3 = 5137 ck3 = 5138 ck3 = 5139 ck3 = 5140 ck3 = 5141 ck3 = 5142 ck3 = 5144 ck3 = 5146 ck3 = 5147 ck3 = 5148 ck3 = 5149 ck3 = 5154 ck3 = 5177 ck3 = 88 ck3 = 89 ck3 = 90 ck3 = 91 ck3 = 92 ck3 = 93 ck3 = 94 ck3 = 95 ck3 = 96 ck3 = 97 ck3 = 98 ck3 = 99 } # Northern Baltic Coast Impassable -> VILJANDI, VALMIERA, KOKENOIS, VENDEN, LENNEWARDEN, JEKABPILS, JERSIKA, REZEKNE, CESVAINE, GULBENE, ALUKSNE, RAUNA, VASTSELIINA, VALGA, TARTU, POLTSAMAA, ALISTEGUNDE, SALACGRIVA, YAMA, KOPORYE, NYEN, NOTEBORG, KOIVISTO, Drysa, Novgorod, Ladoga, Lyuban, Soltsy, Luga, Pushkin, Dedovichi, Pskov, Izborsk, Ostrov, Gdov, Kirishi, Porkhov, ARENSBURG, SONEBURG, MUHU, DAGO, HAPSAL, LEAL, REVAL, HARJUMAA, JARVA, WESENBURG, NARVA, PARNU + link = { autogenerated = yes imp = 8781 ck3 = 9658 } # Mawlaik -> Thaungdut + link = { autogenerated = yes imp = 6748 ck3 = 9604 ck3 = 9605 } # Ronglu -> Andir, Niya + link = { autogenerated = yes imp = 5624 ck3 = 9186 ck3 = 9190 } # Nyentse -> Shelkar, Sagya + link = { autogenerated = yes imp = 5614 ck3 = 9058 } # Ormogang -> Gegyai + link = { autogenerated = yes imp = 7543 imp = 7542 ck3 = 8337 } # Kebranitia, Rhammanitai -> SOUTH_DANAKIL + link = { autogenerated = yes imp = 8783 ck3 = 811 } # Aung Myay -> Carguya + link = { autogenerated = yes imp = 6773 ck3 = 7966 } # Gulka -> Ulugqat + link = { autogenerated = yes imp = 6770 ck3 = 7965 ck3 = 2716 } # Toquzbolaq -> Badakhshan_TARIM, PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5599 imp = 5597 ck3 = 7950 } # Teclas, Kargah -> Chilas + link = { autogenerated = yes imp = 6751 ck3 = 7948 } # Varana Gandhara -> Allai + link = { autogenerated = yes imp = 8744 ck3 = 6439 ck3 = 1051 } # Afabet -> MARYA, JEBEL_BEJA + link = { autogenerated = yes imp = 8093 imp = 8120 ck3 = 6354 } # Hidiglib, Kerman Desert -> KOROSKO-ROAD + link = { autogenerated = yes imp = 4716 imp = 4717 ck3 = 6192 } # Tiamat, Gaiapolis -> TAYMA + link = { autogenerated = yes imp = 7555 ck3 = 6180 } # Arabia Deserta -> SIRHAN + link = { autogenerated = yes imp = 8821 ck3 = 6174 } # Zulfi -> AS-SUMAINA + link = { autogenerated = yes imp = 8816 imp = 5941 ck3 = 6172 } # Baqaa, Arabian Impassable -> HAIL + link = { autogenerated = yes imp = 5510 ck3 = 6085 } # Mothis -> MUT + link = { autogenerated = yes imp = 7557 imp = 7556 ck3 = 5989 } # Arabia Deserta, Arabia Deserta -> QURAQIR + link = { autogenerated = yes imp = 1750 ck3 = 5748 } # Klukhor Pass -> Seti + link = { autogenerated = yes imp = 1888 imp = 5168 ck3 = 5626 } # Podandus, IMPASSIBLE TERRAIN 168 -> Faustinopolis + link = { autogenerated = yes imp = 271 imp = 7923 ck3 = 5536 } # Attea, Synaios Mountains -> Hadrianeia + link = { autogenerated = yes imp = 9100 imp = 9098 imp = 5971 ck3 = 5348 } # Saioi, Datah, Even More Steppes Impassable -> Chelykla + link = { autogenerated = yes imp = 4262 imp = 5109 ck3 = 4976 } # Ad Pannonios, IMPASSIBLE TERRAIN 109 -> Mehadia + link = { autogenerated = yes imp = 3081 ck3 = 4677 ck3 = 4696 } # Visum Montis -> TAZA, SUBU + link = { autogenerated = yes imp = 8393 ck3 = 4673 } # Magoura -> TAFRAOUA-SEBDOU + link = { autogenerated = yes imp = 6615 ck3 = 4505 } # Gauzaka -> SHARAN + link = { autogenerated = yes imp = 6572 ck3 = 4497 } # Cotrica -> PUL + link = { autogenerated = yes imp = 9242 imp = 9244 ck3 = 4460 } # Kukcha, Desert -> KURDAR + link = { autogenerated = yes imp = 6766 ck3 = 4362 } # Yamchun -> Wakhan + link = { autogenerated = yes imp = 6767 ck3 = 4361 } # Urang -> Dar-i-Tubbat + link = { autogenerated = yes imp = 6626 ck3 = 4357 } # Kham -> Munjan + link = { autogenerated = yes imp = 950 ck3 = 4258 } # Sostrate -> Bazoh + link = { autogenerated = yes imp = 3402 ck3 = 4095 ck3 = 4171 ck3 = 12896 } # Darabgird -> Jahrum, Darabjerd, zagros_mountains + link = { autogenerated = yes imp = 4927 ck3 = 3894 ck3 = 3918 ck3 = 720 } # Mittarium -> Alsoverecke, Okormezo, CARPATHIANS + link = { autogenerated = yes imp = 3668 ck3 = 3127 } # Teurnia -> FELDKIRCHEN + link = { autogenerated = yes imp = 4047 imp = 5035 ck3 = 3108 } # Luena, IMPASSIBLE TERRAIN 035 -> WOLFSBERG + link = { autogenerated = yes imp = 3663 imp = 3665 ck3 = 2955 } # Sublavione, Vipitenum -> BRIXEN + link = { autogenerated = yes imp = 3614 ck3 = 2047 ck3 = 2048 ck3 = 3107 } # Brenodunum -> THUN, LUCERNE, ENGELBERG + link = { autogenerated = yes imp = 6743 ck3 = 1440 } # Shiyan -> Khotan + link = { autogenerated = yes imp = 7066 imp = 6869 ck3 = 1260 } # Nasikya, Govardhana -> Nasikya + link = { autogenerated = yes imp = 7100 imp = 6054 ck3 = 1229 } # Mahdnada, Kalingana -> Khinjali + link = { autogenerated = yes imp = 8790 imp = 8793 ck3 = 10984 } # Danai, Burma Mountains -> Danai + link = { autogenerated = yes imp = 991 ck3 = 5721 } # Arest -> Berkri + link = { autogenerated = yes imp = 990 imp = 5199 ck3 = 5719 } # Arsissa, IMPASSIBLE TERRAIN 199 -> Arjesh + link = { autogenerated = yes imp = 982 imp = 5232 ck3 = 4782 } # Yazdigird, Zagros -> KEREND-KERMANSHAH + link = { autogenerated = yes imp = 968 ck3 = 6001 } # Eridu -> AS-SALMAN + link = { autogenerated = yes imp = 955 ck3 = 4806 } # Kar Tukulti Ninurta -> JABALTA + link = { autogenerated = yes imp = 953 ck3 = 4886 ck3 = 4887 } # Bijan -> AL-HADITHA-FURAT, ANA + link = { autogenerated = yes imp = 951 imp = 952 ck3 = 4309 } # Elymais, Tisiyan -> Idhaj + link = { autogenerated = yes imp = 949 ck3 = 4257 } # Bendosaboron -> Gondishapur + link = { autogenerated = yes imp = 9260 imp = 9262 imp = 9263 imp = 9264 imp = 9266 imp = 6058 ck3 = 1178 } # Marot, Patan Minara, Inayati, Chishtian, Anupgarh, Abhiria Secunda -> Karur + link = { autogenerated = yes imp = 9259 imp = 9261 ck3 = 3409 } # Yazman, Kanganwala -> Derawar + link = { autogenerated = yes imp = 9258 ck3 = 3417 } # Nuktani -> Dera_Ghazi_Khan + link = { autogenerated = yes imp = 9256 imp = 7289 ck3 = 911 } # Rajgangpur, Impassable -> Ratu + link = { autogenerated = yes imp = 9255 imp = 9276 imp = 5365 ck3 = 1248 } # Rourkela, Baragaon, IP 366 -> Chutia + link = { autogenerated = yes imp = 9254 ck3 = 3997 ck3 = 3988 } # Deogarh -> Rajgangpur, Deogarh + link = { autogenerated = yes imp = 9253 ck3 = 3986 ck3 = 3984 } # Lahunipara -> Malayagiri, Bahalda + link = { autogenerated = yes imp = 9166 ck3 = 3228 } # $PROV7864$ -> Loire River + link = { autogenerated = yes imp = 9113 imp = 9099 ck3 = 602 } # Uluki, Skula -> Tasqala + link = { autogenerated = yes imp = 9112 ck3 = 5319 } # Uase -> Yaitsk + link = { autogenerated = yes imp = 9097 imp = 9101 ck3 = 5314 } # Partu, Baivar -> Verchina Uzen + link = { autogenerated = yes imp = 9096 ck3 = 608 } # Darga -> Ukek + link = { autogenerated = yes imp = 9078 imp = 9083 ck3 = 5410 } # Cigra, Vaski -> Tersa + link = { autogenerated = yes imp = 9068 ck3 = 5378 } # Aerdyn -> Khoper + link = { autogenerated = yes imp = 9062 ck3 = 5376 } # Peus -> Trotskhoper + link = { autogenerated = yes imp = 9061 ck3 = 5382 } # Tab -> Manina + link = { autogenerated = yes imp = 9058 ck3 = 5373 ck3 = 5372 } # Wetusas -> Pavlovsk, Babrov + link = { autogenerated = yes imp = 9053 ck3 = 5209 ck3 = 5211 } # Ranka -> Karachev, Oryol + link = { autogenerated = yes imp = 905 imp = 906 imp = 907 ck3 = 4885 } # Bechchouphrein, Anatho, Haradu -> HADITHAT-ANA + link = { autogenerated = yes imp = 9049 imp = 9054 ck3 = 5215 } # Medja, Inzu -> Novosil + link = { autogenerated = yes imp = 9018 ck3 = 7142 ck3 = 7145 } # Lanyar -> Shelji, Ashpara + link = { autogenerated = yes imp = 891 imp = 956 ck3 = 4835 } # Birtha, Ajri -> TAKRIT + link = { autogenerated = yes imp = 8891 imp = 8892 ck3 = 6218 } # Hegrieah, Badhan -> AS-SAWARIQIYA + link = { autogenerated = yes imp = 8890 ck3 = 6216 ck3 = 6217 } # Mahd al Thahab -> AS-SALILA, MADINAT_SULAYM + link = { autogenerated = yes imp = 8878 ck3 = 6259 } # Nakhlah -> JIBALA + link = { autogenerated = yes imp = 8876 imp = 8877 ck3 = 6258 } # Tibrak, Labkhah -> JIBAL-AL-URD + link = { autogenerated = yes imp = 8875 imp = 8885 ck3 = 6251 } # Muzahmiya, Arabian Desert -> AL-KHADARIM + link = { autogenerated = yes imp = 8874 ck3 = 6234 } # Gaabah -> TABALA-HIJAZ + link = { autogenerated = yes imp = 8850 imp = 8884 ck3 = 6163 } # Yabrin, Arabian Desert -> YABRIN + link = { autogenerated = yes imp = 8847 imp = 6049 ck3 = 6153 } # Tawdihiyah, Arabia Deserta Ulterior -> AL-MUSHAQQAR + link = { autogenerated = yes imp = 8845 imp = 8844 ck3 = 6203 } # Dharghat, Qamra -> FADAK + link = { autogenerated = yes imp = 8842 imp = 8843 imp = 8887 ck3 = 6244 } # Tathleeth, Subaykhah, Arabian Desert -> WADI_TATHLITH + link = { autogenerated = yes imp = 8840 imp = 8837 ck3 = 6245 } # Qirah, Kahl -> DAM + link = { autogenerated = yes imp = 8834 imp = 8835 imp = 8836 ck3 = 6246 } # Ijliya, Sulayyil, Dawasir -> AQIQ_TAMRA + link = { autogenerated = yes imp = 8833 ck3 = 6249 } # Janobi -> QASR-AL-ADI + link = { autogenerated = yes imp = 8831 imp = 8886 ck3 = 6248 } # Layla, Arabian Desert -> AL-HADDAR + link = { autogenerated = yes imp = 8829 imp = 8830 imp = 8832 ck3 = 6250 } # Hulwah, Wusayilah, Aflaj -> FALAJ + link = { autogenerated = yes imp = 8826 imp = 8827 imp = 8828 ck3 = 6253 } # Dila, Khadramah, Khafs Daghra -> YAMAMA + link = { autogenerated = yes imp = 8822 imp = 8823 ck3 = 6255 } # Jalajil, Huraymila -> UBAD + link = { autogenerated = yes imp = 8817 ck3 = 6171 ck3 = 6204 } # Shari -> AL-KHUZAIMIYA, FAYD + link = { autogenerated = yes imp = 8799 imp = 8800 imp = 8801 imp = 8802 ck3 = 8685 } # Indian Ocean, Indian Ocean, Indian Ocean, Indian Ocean -> Bay of Bengal + link = { autogenerated = yes imp = 8788 ck3 = 9563 ck3 = 9562 } # Salin -> Salin, Minbu + link = { autogenerated = yes imp = 8785 ck3 = 10982 ck3 = 9644 } # Piao -> Monyin, Katha + link = { autogenerated = yes imp = 8777 imp = 8797 ck3 = 9555 } # Nyaunggan, Burma Mountains -> Powundaung + link = { autogenerated = yes imp = 8755 ck3 = 7154 } # Bosteri -> Balasaghun + link = { autogenerated = yes imp = 8735 imp = 8736 imp = 8734 ck3 = 8326 } # Weki, Weama, Mille -> HAYQ + link = { autogenerated = yes imp = 8732 ck3 = 8344 ck3 = 8345 } # Gehar -> AWSSA, AWASH + link = { autogenerated = yes imp = 8728 imp = 8729 ck3 = 6445 } # Kura, Samtarru -> WAD_ABU_NAHL + link = { autogenerated = yes imp = 8725 ck3 = 6429 } # Santah -> KOSTI + link = { autogenerated = yes imp = 8712 imp = 8713 imp = 8714 ck3 = 8505 } # Bililicweyn, Garowe, Laanle -> UPPER_NUGAAL + link = { autogenerated = yes imp = 8705 imp = 8706 imp = 8709 imp = 8710 imp = 8711 ck3 = 8506 } # Dalmoxor, Qarxis, Moqor Yar, Mulug, Afdugweyne -> LOWER_NUGAAL + link = { autogenerated = yes imp = 8703 imp = 8717 ck3 = 8507 } # Raas Xoor, Somali Desert -> DHUUDO + link = { autogenerated = yes imp = 8700 imp = 8715 imp = 8702 imp = 8718 ck3 = 8504 } # Bohol, Sool, Jidbaaley, Somali Desert -> LOWER_TOGDHEER + link = { autogenerated = yes imp = 8695 imp = 8697 imp = 8699 imp = 8701 imp = 8698 ck3 = 8503 } # Aelal, Danano, Gar Adag, Afweyn, Qoridheere -> TOGDHEER + link = { autogenerated = yes imp = 8688 imp = 8690 ck3 = 8508 } # Iskushuban, Hodmane -> JACEYL_BID + link = { autogenerated = yes imp = 8687 imp = 8689 ck3 = 8428 } # Mindigale, Kob Dehad -> QUMBUCUL + link = { autogenerated = yes imp = 8685 ck3 = 8427 } # Hadaaftimo -> HAYLAN + link = { autogenerated = yes imp = 8671 imp = 9135 ck3 = 8402 } # Gebiilay, Somali Impassable -> AW_BARRE + link = { autogenerated = yes imp = 8666 imp = 8740 ck3 = 6442 } # Tokolay, Hambok -> TO_LUS + link = { autogenerated = yes imp = 8664 imp = 8741 imp = 8678 ck3 = 8290 } # Tucul, Durna, Ethiopian Mountain -> SOUTH_SERAYE + link = { autogenerated = yes imp = 8663 ck3 = 6438 } # Akordat -> QATAA + link = { autogenerated = yes imp = 8613 imp = 8614 imp = 8641 ck3 = 6386 } # Mahaneit, Qoqay, Kalakoy -> BAQLIN-WEST + link = { autogenerated = yes imp = 8612 ck3 = 6385 } # Talguharai -> BAQLIN-NORTH + link = { autogenerated = yes imp = 8611 ck3 = 6387 } # Tohamiyam -> BAQLIN-EAST + link = { autogenerated = yes imp = 8608 ck3 = 6383 } # Tabot -> UPPER_AMUR + link = { autogenerated = yes imp = 8541 ck3 = 5134 ck3 = 5127 } # Sarro -> Vitebsk, Orsha + link = { autogenerated = yes imp = 853 ck3 = 4877 } # Ichnae -> BAJARWAN + link = { autogenerated = yes imp = 8517 ck3 = 107 } # Daugava -> MITAU + link = { autogenerated = yes imp = 8497 ck3 = 158 } # Utinoye -> VILKAVISKIS + link = { autogenerated = yes imp = 8490 imp = 8492 imp = 8529 ck3 = 5118 } # Bialystok, Grodno, Naliboki -> Baranovichi + link = { autogenerated = yes imp = 842 imp = 992 imp = 5193 ck3 = 4858 } # Tigranocerta, Balaleisa, IMPASSIBLE TERRAIN 193 -> ARZAN + link = { autogenerated = yes imp = 8395 ck3 = 4697 ck3 = 4699 } # Agourai -> SEFROU, MEKNES + link = { autogenerated = yes imp = 8360 imp = 8365 imp = 8391 ck3 = 4749 } # Figuig, Bourzeg, Keri Kera -> FIGUIG + link = { autogenerated = yes imp = 8389 imp = 8372 ck3 = 4750 } # Sfissifa, Sefra -> AIN SEFRA + link = { autogenerated = yes imp = 8374 imp = 8366 ck3 = 4619 } # Messaad, Laghouat -> AL-AGHWAT + link = { autogenerated = yes imp = 8367 ck3 = 4661 } # Aflou -> ASKEDAL + link = { autogenerated = yes imp = 8347 ck3 = 4680 } # Jebha -> GHUMIRA + link = { autogenerated = yes imp = 8331 imp = 8332 imp = 8333 imp = 8334 ck3 = 4737 } # Sijilmasa, Merzouga, Ouzina, Tisserdmine -> SIJILMASA + link = { autogenerated = yes imp = 8330 imp = 5949 ck3 = 4738 } # Jorf, Musulami Impassable -> TAFILALT + link = { autogenerated = yes imp = 8322 imp = 8323 imp = 6495 ck3 = 4670 } # Zaio, Laatamna, Even More Riff -> NADRUMA + link = { autogenerated = yes imp = 8315 ck3 = 4676 ck3 = 4745 } # Tindite -> DEBDOU, MISSOUR + link = { autogenerated = yes imp = 8313 imp = 8314 ck3 = 4743 } # Missour, Orjane -> TIKOUTAMINE + link = { autogenerated = yes imp = 8310 imp = 8311 imp = 8312 imp = 8309 ck3 = 4744 } # Boumia, Izdeg, Ksabi, Tounfit -> EL-KSABI + link = { autogenerated = yes imp = 8307 imp = 8308 ck3 = 4711 } # Aghbala, Zarhour -> AFZA + link = { autogenerated = yes imp = 8301 imp = 8302 imp = 8325 imp = 8326 imp = 8327 imp = 8328 ck3 = 4736 } # Skoura, Toundoute, Atlas Pass, Ifri, Tinghir, Goulmima -> TUDGHA + link = { autogenerated = yes imp = 8298 ck3 = 4741 ck3 = 4732 ck3 = 798 } # Tazenakht -> AQQA, SIRWAN, Atlas Mountains 9 + link = { autogenerated = yes imp = 8297 imp = 8299 imp = 8300 ck3 = 4733 } # Isli, Mountain Pass, Iguernane -> TASAGDAH + link = { autogenerated = yes imp = 8296 ck3 = 4756 ck3 = 4735 ck3 = 4740 } # Zaouia -> TIDRI, TAZAGOURT, AL-TALHA + link = { autogenerated = yes imp = 8291 imp = 8294 imp = 8295 ck3 = 4755 } # Agdz, Tamezmoute, Zagora -> TAGMADART + link = { autogenerated = yes imp = 828 imp = 908 ck3 = 4884 } # Terqa, Hindanu -> SUKAYR AL-ABBAS + link = { autogenerated = yes imp = 8266 imp = 8303 imp = 8304 imp = 8305 ck3 = 4725 } # Berhil, Aoulouze, Taliouine, Larbaa Magnoun -> IGILLIZ + link = { autogenerated = yes imp = 8265 ck3 = 4724 } # Taroudant -> TARUDANT + link = { autogenerated = yes imp = 826 ck3 = 4882 ck3 = 4883 } # Appadana -> QARQISIYA, MAKISIN + link = { autogenerated = yes imp = 8258 imp = 8264 ck3 = 4723 } # Gadir, Teima -> AGADIR + link = { autogenerated = yes imp = 825 ck3 = 4881 } # Magdalu -> ASH-SHAMSANIYA + link = { autogenerated = yes imp = 8238 imp = 8244 imp = 8245 imp = 8246 imp = 8247 imp = 5948 imp = 8135 ck3 = 4572 } # Tillibari, Recheb, Mahalla, Tisavar, Tibubuci, Desert, Desert -> BIR AMIR + link = { autogenerated = yes imp = 8231 imp = 8236 imp = 8232 imp = 5988 ck3 = 6321 } # Sinawen, Zar, Derg, Sahara -> SINAWIN + link = { autogenerated = yes imp = 8230 imp = 8235 imp = 5989 ck3 = 4560 } # Tabuinati, Praesidium, Desert -> NALUT + link = { autogenerated = yes imp = 8229 ck3 = 4559 ck3 = 4567 } # Giosc -> DJADO, FURSATA + link = { autogenerated = yes imp = 8196 imp = 8197 imp = 8198 imp = 8203 imp = 8204 imp = 8205 imp = 8206 imp = 8211 imp = 8222 imp = 8224 imp = 8210 imp = 8167 imp = 8176 imp = 8186 imp = 8188 ck3 = 4564 } # Gholaia, Zayden, Auxiqua, Faschia, Ghirza, Scedeua, Duraybikah, Shawi, Khnafes, Lebr, Schiueref, Zamzam Desert, Desert, Desert, Desert -> TININAI + link = { autogenerated = yes imp = 8182 ck3 = 6448 ck3 = 6451 } # Tmessa -> SABHA, MURZUK + link = { autogenerated = yes imp = 8172 imp = 9140 ck3 = 6602 } # Daydaban, Sahara Impassable -> ERG_GHATI + link = { autogenerated = yes imp = 8180 ck3 = 4571 } # Harakat -> DARADJ + link = { autogenerated = yes imp = 8175 imp = 8174 imp = 8185 ck3 = 6661 } # Dujal, Murzuq, Garamantic Desert -> GHAT_ROUTE + link = { autogenerated = yes imp = 8171 imp = 8162 imp = 8163 imp = 9136 ck3 = 6449 } # Gadduwah, Sabha, Chlef, Sahara Impassable -> GERMA + link = { autogenerated = yes imp = 8166 imp = 8168 imp = 8169 imp = 8178 imp = 8179 imp = 8184 imp = 8164 imp = 5992 imp = 9139 ck3 = 6601 } # Lecksair, Garama, Zinchekra, Sharraba, Baghira, Tisit, Gelah, Desert, Sahara Impassable -> WADI_IRAWAN + link = { autogenerated = yes imp = 8142 imp = 8143 imp = 8195 imp = 8138 imp = 8140 imp = 8144 imp = 8148 imp = 8165 ck3 = 4563 } # Waddan, Hun, Jashalam, Meduin, Jufrah, Socna, Eastern Black Mountains, Western Psyllic Desert -> WADDAN + link = { autogenerated = yes imp = 8141 imp = 8146 imp = 8147 ck3 = 6459 } # Fuqaha, Tamshin, Mughattah -> TAMZAWA + link = { autogenerated = yes imp = 8132 imp = 8133 imp = 8134 imp = 8136 imp = 8151 imp = 8137 imp = 8150 imp = 8240 imp = 9137 ck3 = 4553 } # Jabbanah, Maradah, Jafr, Talhah, Harawa, Tagrifet, Psyllic Desert, Sand Sea, Sahara Impassable -> TAJRIFT + link = { autogenerated = yes imp = 8129 ck3 = 6108 } # Bu Athla -> JAKHARRAD + link = { autogenerated = yes imp = 8128 imp = 8130 imp = 8131 ck3 = 6106 } # Augila, Sahabi, Kalanshah -> AWJILA + link = { autogenerated = yes imp = 8114 ck3 = 6402 } # Sabbalo -> JEBEL_MOYA + link = { autogenerated = yes imp = 8109 imp = 8113 ck3 = 6401 } # Rabak, Surayj -> SAQADI + link = { autogenerated = yes imp = 8092 ck3 = 6352 } # Duweb -> ABU-HAMMAD + link = { autogenerated = yes imp = 8091 ck3 = 6370 } # Biyar -> AL-HAJAR_NUBIA + link = { autogenerated = yes imp = 8078 imp = 8089 imp = 8117 ck3 = 6111 } # Tuyur, Berenike Pancrysia, Troglodytic Desert -> DERAHIB + link = { autogenerated = yes imp = 8074 ck3 = 6120 } # Shabbabah -> SOUTH_JBL_QUZLUM + link = { autogenerated = yes imp = 8070 imp = 8067 imp = 8069 imp = 8116 ck3 = 6350 } # Barkol, Kalas, Khafur, Southern Bayuda Desert -> AL-GHAZALI + link = { autogenerated = yes imp = 8024 imp = 8025 ck3 = 3787 } # Boloustana Pass, Petra Pass -> Servia + link = { autogenerated = yes imp = 8007 ck3 = 4862 ck3 = 4864 } # Halouras -> HISN DI-L-QARNAIN, QULB + link = { autogenerated = yes imp = 7845 imp = 5190 ck3 = 5710 } # Ani, IMPASSIBLE TERRAIN 190 -> Camacha + link = { autogenerated = yes imp = 7810 ck3 = 126 } # Turuntia Australis -> MEDENIKEN + link = { autogenerated = yes imp = 780 imp = 785 ck3 = 5911 } # Carne, Tell Soukas -> JABALA + link = { autogenerated = yes imp = 778 imp = 783 ck3 = 5914 } # Raphaneia, Bargylus Mons -> Masyaf + link = { autogenerated = yes imp = 7739 ck3 = 1705 ck3 = 8777 } # Lugii -> DORNOCH, Tain + link = { autogenerated = yes imp = 767 imp = 769 imp = 771 ck3 = 5918 } # Botrys, Tripolis, Arca -> TRIPOLIS + link = { autogenerated = yes imp = 7660 imp = 7287 ck3 = 1303 } # Abad Sauvira, Impassable -> Ranikot + link = { autogenerated = yes imp = 763 imp = 764 imp = 762 imp = 5997 ck3 = 5926 } # Heliopolis, Chamon, Conna, Antilibanus Mons -> BAALBAK + link = { autogenerated = yes imp = 7586 ck3 = 6348 } # Kuru -> KAREIMA + link = { autogenerated = yes imp = 7567 ck3 = 5995 ck3 = 5994 } # Arabia Deserta -> AL-UDHAIB, AL-QADISIYA + link = { autogenerated = yes imp = 7566 ck3 = 5998 } # Arabia Deserta -> AL-QARA + link = { autogenerated = yes imp = 7564 ck3 = 5999 } # Arabia Deserta -> AS-SUBIA + link = { autogenerated = yes imp = 7565 ck3 = 6000 } # Arabia Deserta -> WAQISA + link = { autogenerated = yes imp = 7546 ck3 = 8338 } # Beilul -> NORTH_AFAR + link = { autogenerated = yes imp = 7541 ck3 = 8391 } # Handoga -> ABBE + link = { autogenerated = yes imp = 7535 ck3 = 8401 ck3 = 8403 } # Maphoris -> AMUD, GOGESA + link = { autogenerated = yes imp = 7532 imp = 8681 imp = 8691 ck3 = 8430 } # Mosylon, Qandala, Aromata Desert -> BOSASO + link = { autogenerated = yes imp = 7527 imp = 8682 imp = 8694 imp = 8720 ck3 = 8424 } # Khoor Shoora, Shalcaw, Berberia Desert, Somali Desert -> MAKHIR + link = { autogenerated = yes imp = 7522 imp = 7534 imp = 8667 ck3 = 8404 } # Malao, Amaitaia, Isis -> BERBERA + link = { autogenerated = yes imp = 7519 ck3 = 8339 } # Abasenia -> AFAR + link = { autogenerated = yes imp = 7513 imp = 8658 ck3 = 8288 } # Matara, Mezber -> MATARA + link = { autogenerated = yes imp = 7476 ck3 = 885 } # Bhadohi -> Bhadohi + link = { autogenerated = yes imp = 7463 imp = 5360 ck3 = 3965 } # Dudahi, IP 361 -> Dhamoni + link = { autogenerated = yes imp = 7457 imp = 5359 ck3 = 918 } # Handia, Vindhya -> Hoshangabad + link = { autogenerated = yes imp = 7402 ck3 = 7944 ck3 = 9088 } # Kalesar -> Sadhaura, Uttarkashi + link = { autogenerated = yes imp = 7386 ck3 = 9089 ck3 = 9090 } # Badari -> Srinagar, Devalgarh + link = { autogenerated = yes imp = 7385 ck3 = 9087 } # Devaprayaga -> Dehradun + link = { autogenerated = yes imp = 7353 imp = 8792 ck3 = 808 } # Bengmara, Burma Mountains -> Tinsukia + link = { autogenerated = yes imp = 7352 ck3 = 810 ck3 = 821 } # Turupa -> Charaideo, Herombial + link = { autogenerated = yes imp = 7349 ck3 = 813 } # Gramera -> Numaligarh + link = { autogenerated = yes imp = 734 ck3 = 5955 } # Bostra -> BUSRA + link = { autogenerated = yes imp = 7333 imp = 6050 ck3 = 1245 } # Srihatta, Meghalaya -> Srihatta + link = { autogenerated = yes imp = 7320 imp = 5364 ck3 = 907 } # Bandhavgarh, IP 365 -> Beohari + link = { autogenerated = yes imp = 7256 ck3 = 7115 } # Zantak -> Koskul + link = { autogenerated = yes imp = 7252 imp = 7255 imp = 7279 ck3 = 900 } # Lek, Palisha, Masht -> Yangikent + link = { autogenerated = yes imp = 7246 imp = 7247 ck3 = 901 } # Yangikent, Altinasar -> Jend + link = { autogenerated = yes imp = 7241 imp = 7242 ck3 = 4245 } # Artamis, Lebap -> Sayat + link = { autogenerated = yes imp = 7231 ck3 = 4246 } # Burguchi -> Niyaz + link = { autogenerated = yes imp = 7223 ck3 = 4213 } # Badghis -> Bama'in + link = { autogenerated = yes imp = 716 imp = 718 ck3 = 5984 } # Esbous, Rabbat Ammon -> AMMAN + link = { autogenerated = yes imp = 7139 ck3 = 9659 } # Kanker -> Kanker + link = { autogenerated = yes imp = 7137 imp = 5319 ck3 = 1228 } # Surada, IP 320 -> Swetakapura + link = { autogenerated = yes imp = 7136 ck3 = 9653 } # Bhawanipatna -> Asurgarh + link = { autogenerated = yes imp = 7118 ck3 = 7903 } # Rukmammapeta -> Golkonda + link = { autogenerated = yes imp = 7099 imp = 7133 ck3 = 7908 } # Goddvara, Kotilingala -> Palampet + link = { autogenerated = yes imp = 7087 ck3 = 7874 } # Goulla -> Koppam + link = { autogenerated = yes imp = 7077 ck3 = 7930 } # Cikamburika -> Bhandara + link = { autogenerated = yes imp = 7017 ck3 = 7849 } # Ganga -> Seringapatam + link = { autogenerated = yes imp = 6941 imp = 6943 ck3 = 1116 } # Selour, Kathan -> Tenkasi + link = { autogenerated = yes imp = 6850 imp = 6852 imp = 7220 imp = 4357 imp = 6059 ck3 = 3398 } # Sura, Samarabriva, Saraswata, Umarkot, Abhiria -> Amarkot + link = { autogenerated = yes imp = 6843 ck3 = 3488 } # Abuyya -> Jalor + link = { autogenerated = yes imp = 6768 ck3 = 4355 ck3 = 4356 } # Kokcha -> Badakhshan, Jerm + link = { autogenerated = yes imp = 6760 ck3 = 7957 } # Tashqurgan -> Tashkurgan + link = { autogenerated = yes imp = 6757 ck3 = 7963 } # Shachi -> Akto + link = { autogenerated = yes imp = 6747 ck3 = 9610 ck3 = 9606 } # Wumi -> Laodamogou, Keriya + link = { autogenerated = yes imp = 6724 ck3 = 4237 } # Teyen -> Shawashkan + link = { autogenerated = yes imp = 6692 ck3 = 4350 } # Khulm -> Talekan + link = { autogenerated = yes imp = 6684 ck3 = 4238 ck3 = 4236 } # Haroba -> Merv, Kharad + link = { autogenerated = yes imp = 6671 imp = 5263 ck3 = 4008 } # Antentia, Sogdian Steppe -> Dandanqan + link = { autogenerated = yes imp = 6668 imp = 6683 imp = 5269 ck3 = 4239 } # Alexandria Margiana, Erbend, IMPASSIBLE TERRAIN 269 -> Kushmaihan + link = { autogenerated = yes imp = 6660 ck3 = 4043 } # Bandiyan -> Khabushan + link = { autogenerated = yes imp = 6658 imp = 5437 ck3 = 4042 } # Gathar, Pylai Parthias -> Nasa + link = { autogenerated = yes imp = 6642 imp = 6628 ck3 = 4232 } # Paropamisia, Nysa Paropamisadarum -> Ribat-e-Karyan + link = { autogenerated = yes imp = 6636 imp = 6631 ck3 = 4231 } # Tambyziana, Daroideia -> Dih-e-Khalaf + link = { autogenerated = yes imp = 6585 ck3 = 4279 } # Taftan -> Ladhir + link = { autogenerated = yes imp = 6582 imp = 5248 ck3 = 4263 } # Tarucano, Karmanian Mountains -> Manujan + link = { autogenerated = yes imp = 6578 imp = 6583 ck3 = 4267 } # Parsicia, Cabulia -> South Jaz Murian + link = { autogenerated = yes imp = 6575 imp = 6576 imp = 6577 ck3 = 4275 } # Basma, Abis, Parira -> North Jaz Murian + link = { autogenerated = yes imp = 6569 ck3 = 4290 ck3 = 4291 } # Gari -> Qarnin, Khawaj + link = { autogenerated = yes imp = 6564 ck3 = 4207 } # Chaurina -> Pushang + link = { autogenerated = yes imp = 6562 imp = 6604 ck3 = 4296 } # Aris, Masina -> Doroh + link = { autogenerated = yes imp = 6560 ck3 = 4278 } # Zranka -> Qantarat Kirman + link = { autogenerated = yes imp = 6541 ck3 = 4486 } # Alexandropolis -> RIBAT-I-KISH + link = { autogenerated = yes imp = 6522 imp = 6523 imp = 6061 ck3 = 4285 } # Mosarna, Bagisara, Gedrosia -> Kiz + link = { autogenerated = yes imp = 6520 imp = 6521 imp = 6063 ck3 = 4286 } # Mephas, Barna, Parecaniana -> Jiwani + link = { autogenerated = yes imp = 6513 imp = 6530 ck3 = 4272 } # Pura, Paesi -> Bampur + link = { autogenerated = yes imp = 6511 ck3 = 4097 } # Naserge -> Muralzijan + link = { autogenerated = yes imp = 6508 imp = 5447 ck3 = 4051 } # Pyctis, IMPASSABLE -> Nain + link = { autogenerated = yes imp = 6504 ck3 = 4056 } # Parhe -> Khazana + link = { autogenerated = yes imp = 6503 imp = 3475 ck3 = 4061 } # Pagros, Chadormalu -> Biyadaq + link = { autogenerated = yes imp = 6502 imp = 5436 imp = 5252 ck3 = 4060 } # Khur, Great Kavir, Lut -> Mihrijan + link = { autogenerated = yes imp = 6500 imp = 5250 ck3 = 4058 } # Ange, IMPASSIBLE TERRAIN 250 -> Wandah + link = { autogenerated = yes imp = 6487 imp = 6483 imp = 6488 ck3 = 4706 } # Mdakra, More Middle Atlas, Middle Atlas -> MRIRA + link = { autogenerated = yes imp = 6241 ck3 = 5052 } # Masticat -> Rivne + link = { autogenerated = yes imp = 624 imp = 8099 imp = 5330 ck3 = 6346 } # Mambil, Meragh, IP 331 -> GRNETTI + link = { autogenerated = yes imp = 6234 ck3 = 546 } # Myanik -> Terebovl + link = { autogenerated = yes imp = 621 imp = 623 ck3 = 6360 } # Tergendum, Dumuna -> DIFFAR + link = { autogenerated = yes imp = 617 imp = 620 ck3 = 6344 } # Breues, Arcas -> OLD-DONGOLA + link = { autogenerated = yes imp = 612 imp = 613 ck3 = 6342 } # Direla, Patigga -> KEMNA + link = { autogenerated = yes imp = 608 imp = 7582 imp = 7583 ck3 = 6340 } # Paroa, Soleb, Kedurma -> DELGO + link = { autogenerated = yes imp = 604 ck3 = 6337 } # Semna Nubia -> SEMNA + link = { autogenerated = yes imp = 6036 ck3 = 322 ck3 = 8731 } # Rania -> TISSELSKOG, Nordmark + link = { autogenerated = yes imp = 601 ck3 = 6334 } # Serra -> QASR_IBRIM + link = { autogenerated = yes imp = 600 imp = 603 imp = 5521 ck3 = 6336 } # Pachora, Boon, Boron -> FARAS + link = { autogenerated = yes imp = 597 ck3 = 6332 } # Tene -> KOROSKO + link = { autogenerated = yes imp = 595 ck3 = 6329 ck3 = 6330 } # Kortia -> QURTA, IKHMINDI + link = { autogenerated = yes imp = 590 ck3 = 6119 } # Novum Hydreuma -> CENTRAL_JBL_QUZLUM + link = { autogenerated = yes imp = 5837 imp = 5839 ck3 = 999 } # Oceanus Sarmaticus, Oceanus Sarmaticus -> The Sound + link = { autogenerated = yes imp = 5806 imp = 5828 ck3 = 694 } # Mare Septentrionale, Mare Septentrionale -> North Sea + link = { autogenerated = yes imp = 5799 imp = 5811 imp = 5812 imp = 5813 imp = 5821 imp = 5822 ck3 = 989 } # Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale -> North Sea + link = { autogenerated = yes imp = 5783 ck3 = 685 } # Mare Germanicum -> Coast of Zeeland + link = { autogenerated = yes imp = 5774 ck3 = 995 } # Mare Septentrionale -> East English Coast + link = { autogenerated = yes imp = 5694 imp = 5704 ck3 = 726 } # Mare Britannicum, Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 567 imp = 570 imp = 571 imp = 573 ck3 = 6078 } # Apollinopolis Mikra, Memnonia, Terkythis, Pathyris -> ARMANT + link = { autogenerated = yes imp = 561 ck3 = 6075 } # Polybiane -> FAW + link = { autogenerated = yes imp = 5609 ck3 = 9066 } # Tarok -> Coqen + link = { autogenerated = yes imp = 5608 ck3 = 9204 ck3 = 9217 } # Dangra -> Kunglung, Ladoi + link = { autogenerated = yes imp = 5607 ck3 = 9205 ck3 = 9214 ck3 = 9222 } # Kyungchen Dzong -> Goingyibug, Sinya, Gyagog + link = { autogenerated = yes imp = 5603 ck3 = 9614 ck3 = 9613 } # Gondogoro Pass -> Guma, Yuetgan + link = { autogenerated = yes imp = 5602 ck3 = 9012 } # Gondogoro Pass -> Dipsang + link = { autogenerated = yes imp = 5601 ck3 = 1438 ck3 = 9616 } # Kusta -> Yarkand, Karghalik + link = { autogenerated = yes imp = 5600 imp = 4490 ck3 = 7951 } # Parsni, Baziria -> Kalam_TARIM + link = { autogenerated = yes imp = 5595 ck3 = 7956 } # Hunza -> Baltit + link = { autogenerated = yes imp = 5568 ck3 = 9006 ck3 = 9007 } # Mune -> Demchok, Hanle + link = { autogenerated = yes imp = 5560 ck3 = 9004 ck3 = 9015 } # Sindhu -> Khalatse, Lingshet + link = { autogenerated = yes imp = 5495 imp = 8925 ck3 = 7075 } # Gyranchi, Turush -> Sam + link = { autogenerated = yes imp = 549 imp = 550 ck3 = 6067 } # Hermopolis Magna, Thynis -> AL-USHMUNAIN + link = { autogenerated = yes imp = 5466 imp = 5470 ck3 = 7083 } # Shakthara, Vyenim -> Porsu-Burun + link = { autogenerated = yes imp = 5449 ck3 = 3968 } # Maru Desert -> Sakarai + link = { autogenerated = yes imp = 5446 ck3 = 4070 } # Lut Desert -> Khur + link = { autogenerated = yes imp = 542 imp = 543 ck3 = 6065 } # Ankyronpolis, Neiloupolis -> ATFIH + link = { autogenerated = yes imp = 5413 ck3 = 6149 } # Liwa -> AL-JIWA + link = { autogenerated = yes imp = 5406 ck3 = 6154 } # Urayarah -> AL-HASA + link = { autogenerated = yes imp = 5402 imp = 5403 imp = 8880 ck3 = 6166 } # Kabrit, Niqirah, Shayyit -> AS-SAMMAN + link = { autogenerated = yes imp = 5400 imp = 5401 ck3 = 6162 } # Mahzul, Hamatiyat -> AR-RUQAII + link = { autogenerated = yes imp = 539 imp = 540 ck3 = 6060 } # Krokodilopolis, Dionysias -> AL-FAYYUM + link = { autogenerated = yes imp = 537 imp = 538 ck3 = 6066 } # Panarachthis, Aphroditopolis -> HULWAN-CAIRO + link = { autogenerated = yes imp = 533 ck3 = 6048 } # Chemmis -> BURULLUS + link = { autogenerated = yes imp = 514 ck3 = 6056 } # Nikiou -> ABU_GHALIB + link = { autogenerated = yes imp = 51 ck3 = 8752 ck3 = 2630 } # Laus -> Belvedere, CASTROVILLARI + link = { autogenerated = yes imp = 502 imp = 505 ck3 = 6039 } # Heroopolis, Klysma -> QUZLUM + link = { autogenerated = yes imp = 501 imp = 507 ck3 = 6042 } # Heliopolis, Leonton Polis -> CAIRO + link = { autogenerated = yes imp = 500 imp = 512 imp = 536 ck3 = 6057 } # Memphis, Letopolis, Babylon -> GIZA + link = { autogenerated = yes imp = 4998 ck3 = 4317 } # Shirga -> Uram + link = { autogenerated = yes imp = 4992 ck3 = 4316 } # Portae -> Firrim + link = { autogenerated = yes imp = 4991 ck3 = 4318 ck3 = 4315 ck3 = 12886 } # Rhagai -> Dumbawand, Larijan, alborz_mountains + link = { autogenerated = yes imp = 4988 imp = 5221 ck3 = 4325 } # Aganzana, IMPASSIBLE TERRAIN 221 -> Zanjan + link = { autogenerated = yes imp = 498 ck3 = 3674 ck3 = 3652 } # Scaptopara -> Rila, Scaptopara + link = { autogenerated = yes imp = 4976 imp = 4979 ck3 = 4114 } # Paraetecene, Sidices -> Abta'a + link = { autogenerated = yes imp = 4970 ck3 = 4787 ck3 = 4785 } # Zaranis -> SIRAVAN, ARIVAJAN + link = { autogenerated = yes imp = 4968 imp = 5233 ck3 = 4262 } # Thebarga, Kossioia -> Alishtar + link = { autogenerated = yes imp = 4967 imp = 4971 ck3 = 4260 } # Sabandan, Sabatika -> Andamish + link = { autogenerated = yes imp = 4964 imp = 5240 ck3 = 4115 } # Malaver, IMPASSIBLE TERRAIN 240 -> Karaj Abu Dulaf + link = { autogenerated = yes imp = 4951 ck3 = 4119 } # Pasargadai -> Mayin + link = { autogenerated = yes imp = 4949 ck3 = 4120 } # Kaupirrish -> Abraj + link = { autogenerated = yes imp = 4942 ck3 = 5062 } # Acrium -> Spas + link = { autogenerated = yes imp = 4935 ck3 = 545 ck3 = 5031 ck3 = 5032 } # Montanium -> Suceava, Piatra Neamnt, Targu Neamnt + link = { autogenerated = yes imp = 486 ck3 = 3637 } # Viamata -> Kopsis + link = { autogenerated = yes imp = 4816 ck3 = 4994 } # Napuca -> Costesti + link = { autogenerated = yes imp = 4797 ck3 = 4178 } # Shirajish -> Kubanjan + link = { autogenerated = yes imp = 4785 imp = 4950 imp = 4953 ck3 = 4304 } # Millonia, Persides, Croatis -> Khubadan + link = { autogenerated = yes imp = 4711 imp = 8855 imp = 8856 imp = 8858 imp = 5296 ck3 = 6304 } # Mhrta, Tena, Marakhai, Alsowm, Mahria -> BARHUT + link = { autogenerated = yes imp = 4709 imp = 7568 imp = 7569 ck3 = 6317 } # Sidh, Shuwaymiyyah, Watif -> HASIK + link = { autogenerated = yes imp = 4676 imp = 4677 ck3 = 6296 } # Shabwa, Harai -> SHABWA + link = { autogenerated = yes imp = 4672 imp = 4674 ck3 = 6300 } # Labaeta, Karna -> WABAR + link = { autogenerated = yes imp = 4670 imp = 4671 imp = 4673 ck3 = 6243 } # Phoda, Anagrana, Cardava -> NAJRAN + link = { autogenerated = yes imp = 4666 ck3 = 6298 } # Mariaba -> BARAQISH + link = { autogenerated = yes imp = 466 ck3 = 3705 } # Oichalia Aitolias -> Agrafa + link = { autogenerated = yes imp = 4631 ck3 = 6226 } # Thebai Arabikai -> USFAN + link = { autogenerated = yes imp = 4624 ck3 = 6212 } # Aloure -> AL-MADINA + link = { autogenerated = yes imp = 4623 imp = 5289 ck3 = 6211 } # Iathrippa, IMPASSIBLE TERRAIN 289 -> AS-SAYAA + link = { autogenerated = yes imp = 4617 imp = 4618 ck3 = 6208 } # Mochoura, Thumna -> DHUL-MARWA + link = { autogenerated = yes imp = 4613 ck3 = 6187 } # Aybara -> MADYAN + link = { autogenerated = yes imp = 459 ck3 = 3701 } # Leukas -> Vonitsa + link = { autogenerated = yes imp = 458 imp = 7801 ck3 = 3698 } # Chaleion, Corax Mons -> Lidoriki + link = { autogenerated = yes imp = 4568 imp = 7616 ck3 = 5298 } # Palaia Achaia, Tmakrat -> Ulmi + link = { autogenerated = yes imp = 4523 ck3 = 5012 } # Kremniskoi -> Chilia + link = { autogenerated = yes imp = 4487 ck3 = 3342 ck3 = 1130 } # Nadvala -> Naddula, Mandavyapura + link = { autogenerated = yes imp = 4477 ck3 = 917 } # Tripura -> Barman + link = { autogenerated = yes imp = 4386 ck3 = 3407 } # Jadamapura -> Dajal + link = { autogenerated = yes imp = 4383 imp = 4384 imp = 5374 ck3 = 3415 } # Abortai, Kekayai, IP 375 -> Mankera + link = { autogenerated = yes imp = 4375 ck3 = 1374 } # Mesai -> Rojhan + link = { autogenerated = yes imp = 4374 ck3 = 1336 ck3 = 3391 } # Mousikanoi -> Vijnot, Bhatiya + link = { autogenerated = yes imp = 4368 ck3 = 4487 } # Avanta -> QANDABIL + link = { autogenerated = yes imp = 4366 imp = 6060 ck3 = 1372 } # Kokondai, Siwi -> Badah + link = { autogenerated = yes imp = 4365 ck3 = 1371 } # Nereai -> Larkana + link = { autogenerated = yes imp = 4361 ck3 = 3405 } # Megaroi -> Khudabad + link = { autogenerated = yes imp = 4355 ck3 = 3404 } # Sindhumana -> Sharusan + link = { autogenerated = yes imp = 4353 imp = 4360 ck3 = 1333 } # Brahmanaka, Sarophages -> Siwistan + link = { autogenerated = yes imp = 4352 ck3 = 1175 } # Roruka -> Aror + link = { autogenerated = yes imp = 4341 imp = 4345 imp = 5348 ck3 = 1190 } # Akhnur, Jhelum, Carmanian Highland -> Gurjaratra + link = { autogenerated = yes imp = 4334 imp = 4338 imp = 4343 ck3 = 3445 } # Harvan, Anantanaga, Budia -> Amaresvara + link = { autogenerated = yes imp = 4332 imp = 4333 imp = 4339 ck3 = 1161 } # Puranadisthana, Huskapura, Nandi -> Srinagara + link = { autogenerated = yes imp = 4318 imp = 6612 ck3 = 4523 } # Apritas, Kophen -> Khost + link = { autogenerated = yes imp = 4316 ck3 = 3435 } # Boukephalia -> Jhelum + link = { autogenerated = yes imp = 4310 imp = 5103 ck3 = 3618 } # Gelbous, Upper Thrace -> Zherkovo + link = { autogenerated = yes imp = 4301 ck3 = 4514 ck3 = 4516 } # Nagarahara -> KUNAR, NAGARAHARA + link = { autogenerated = yes imp = 4287 imp = 4280 imp = 4281 ck3 = 3937 } # Decidava, Arutela, Caput Stenarum -> Nagyszeben + link = { autogenerated = yes imp = 4268 ck3 = 4987 } # Acidava -> Dragasani + link = { autogenerated = yes imp = 4247 imp = 4251 ck3 = 3690 } # Erite, Parthenopolis -> Provadiya + link = { autogenerated = yes imp = 4244 imp = 5107 ck3 = 3684 } # Tylis, IMPASSIBLE TERRAIN 107 -> Gabrovo + link = { autogenerated = yes imp = 4222 imp = 5094 imp = 5095 ck3 = 3662 } # Turres, IMPASSIBLE TERRAIN 094, IMPASSIBLE TERRAIN 095 -> Pirot + link = { autogenerated = yes imp = 421 ck3 = 472 } # Phoinike -> Epeiros + link = { autogenerated = yes imp = 4132 ck3 = 3827 } # Volgum -> Kolon + link = { autogenerated = yes imp = 4119 ck3 = 3599 ck3 = 3587 } # Celegerorum -> Koznik, Gradac + link = { autogenerated = yes imp = 4113 ck3 = 3659 ck3 = 3593 } # Vindenis -> Novo Brdo, Podujevo + link = { autogenerated = yes imp = 4111 ck3 = 3600 } # Hammeum -> Prokuplje + link = { autogenerated = yes imp = 4109 ck3 = 3654 ck3 = 3658 } # Anausaro -> Bosilegrad, Vranje + link = { autogenerated = yes imp = 4105 ck3 = 3582 ck3 = 3559 ck3 = 3583 } # Pecina -> Gorazde, Obalj, Hotca + link = { autogenerated = yes imp = 4094 ck3 = 3722 ck3 = 3723 } # Gabuleum -> Kukes, Peshkopi + link = { autogenerated = yes imp = 4092 ck3 = 3579 } # Ad Picarias -> Danj + link = { autogenerated = yes imp = 4089 ck3 = 469 } # Meteon -> Zeta + link = { autogenerated = yes imp = 4071 imp = 4075 imp = 5089 ck3 = 3506 } # Leusaba, Castra, IMPASSIBLE TERRAIN 089 -> Kotor Varos + link = { autogenerated = yes imp = 4069 imp = 5083 ck3 = 3501 } # Ad Matricem, IMPASSIBLE TERRAIN 083 -> Hlivno + link = { autogenerated = yes imp = 4028 imp = 5032 ck3 = 3097 } # Neviodunum, IMPASSIBLE TERRAIN 032 -> DOBOVEC + link = { autogenerated = yes imp = 4023 ck3 = 2523 ck3 = 3095 } # Tarsatica -> RIJEKA, RIBNICA + link = { autogenerated = yes imp = 400 ck3 = 3785 ck3 = 3795 } # Elimia -> Kalyvia, Grevena + link = { autogenerated = yes imp = 397 ck3 = 3651 } # Stobi -> Prosek + link = { autogenerated = yes imp = 396 imp = 5069 ck3 = 3796 } # Pelinna, IMPASSIBLE TERRAIN 069 -> Stagoi + link = { autogenerated = yes imp = 3902 ck3 = 2816 } # Avioniana -> GREIFSWALD + link = { autogenerated = yes imp = 3838 ck3 = 2793 } # Angrivaria -> BREMEN + link = { autogenerated = yes imp = 3782 ck3 = 2446 } # Amsivaria Bructeriorum -> TECKLENBURG + link = { autogenerated = yes imp = 3723 ck3 = 2695 } # Bingium -> BOPPARD + link = { autogenerated = yes imp = 371 ck3 = 3780 } # Euporia -> Mavrouda + link = { autogenerated = yes imp = 3670 ck3 = 2978 ck3 = 2977 } # Anisus -> HALLEIN, BERCHTESGADEN + link = { autogenerated = yes imp = 3667 ck3 = 3137 } # Aguntum -> OBERVELLACH + link = { autogenerated = yes imp = 3666 ck3 = 2953 ck3 = 2948 ck3 = 2976 } # Mastiacum -> KUFSTEIN, TOLZ, KITZBUHEL + link = { autogenerated = yes imp = 3664 ck3 = 2952 ck3 = 3134 } # Sebatum -> BRUNECK, LIENZ + link = { autogenerated = yes imp = 3661 ck3 = 2495 ck3 = 8761 } # Tridentium -> VAL CAMONICA, Tirano + link = { autogenerated = yes imp = 3660 imp = 5119 ck3 = 2499 } # Salurnis, IMPASSIBLE TERRAIN 119 -> TRENTO + link = { autogenerated = yes imp = 3658 imp = 3659 ck3 = 2498 } # Statio Maiensis, Vadena -> BOLZANO + link = { autogenerated = yes imp = 3655 ck3 = 2950 ck3 = 2790 } # Tiralia -> INNSBRUCK, HOHENSCHWANGAU + link = { autogenerated = yes imp = 3646 ck3 = 3133 } # Tergolape -> WELS + link = { autogenerated = yes imp = 3617 ck3 = 2055 } # Clavenna -> CHUR + link = { autogenerated = yes imp = 3609 imp = 3620 ck3 = 2039 } # Ad Publicanos, Obilonna -> AOSTA + link = { autogenerated = yes imp = 3608 ck3 = 8719 ck3 = 2031 } # Mantala -> Faucigny, MOUTIERS + link = { autogenerated = yes imp = 3592 ck3 = 2529 } # Forum Alieni -> CONA + link = { autogenerated = yes imp = 3579 ck3 = 8762 ck3 = 2493 } # Bergomum -> Chiari, BERGAMO + link = { autogenerated = yes imp = 3576 imp = 5021 ck3 = 2490 } # Florentiola, IMPASSIBLE TERRAIN 021 -> FLORENTIOLA + link = { autogenerated = yes imp = 3574 ck3 = 2488 ck3 = 2487 } # Clastidium -> PIACENZA, VOGHERA + link = { autogenerated = yes imp = 3563 ck3 = 2042 } # Forum Vibii -> PINEROLO + link = { autogenerated = yes imp = 3560 imp = 3610 imp = 3611 ck3 = 2040 } # Bodincomagos, Darantasia, Salassia -> IVREA + link = { autogenerated = yes imp = 3543 imp = 5022 ck3 = 2020 } # Antipolis, Alpes Maritimae -> GRASSE + link = { autogenerated = yes imp = 3534 imp = 3537 imp = 5025 ck3 = 2029 } # Scingomagus, Maurienna, IMPASSIBLE TERRAIN 025 -> SAINT-MICHEL-DE-MAURIENNE + link = { autogenerated = yes imp = 3532 imp = 3536 ck3 = 8718 } # Catorissium, Eburodunum -> Briancon + link = { autogenerated = yes imp = 3510 imp = 3511 imp = 5054 ck3 = 2649 } # Saone, Alouka, IMPASSIBLE TERRAIN 054 -> CALVI + link = { autogenerated = yes imp = 3509 ck3 = 2650 } # Pauka -> AJACCIO + link = { autogenerated = yes imp = 3499 ck3 = 2664 } # Nure -> PORTO TORRES + link = { autogenerated = yes imp = 3473 ck3 = 4075 } # Ravar -> Rawar + link = { autogenerated = yes imp = 3471 imp = 3472 ck3 = 4072 } # Nayband, Denband -> Naband + link = { autogenerated = yes imp = 3464 imp = 6542 ck3 = 4015 } # Taua, Aktene -> Zawa + link = { autogenerated = yes imp = 3461 imp = 6602 ck3 = 4067 } # Eshgabad, Choana -> Bejestan + link = { autogenerated = yes imp = 3456 ck3 = 4024 } # Tiras -> Biyar + link = { autogenerated = yes imp = 3455 ck3 = 4025 } # Deshrae -> Bistum + link = { autogenerated = yes imp = 3443 imp = 6509 ck3 = 4047 } # Siacus, Badroud -> Qashan + link = { autogenerated = yes imp = 3439 ck3 = 4027 } # Komish -> Gerdkuh + link = { autogenerated = yes imp = 3422 imp = 5244 ck3 = 4096 } # Nepista, IMPASSIBLE TERRAIN 244 -> Shahr-e-Babak + link = { autogenerated = yes imp = 3420 ck3 = 4099 } # Kalmand -> Qaryat al-Asad + link = { autogenerated = yes imp = 3411 ck3 = 4091 } # Farsir -> Ruyan Jirufti + link = { autogenerated = yes imp = 3407 ck3 = 4173 } # Shiragan -> Nariz + link = { autogenerated = yes imp = 3403 imp = 3404 ck3 = 4175 } # Batthinia, Tashk -> Abade-Darabjerd + link = { autogenerated = yes imp = 3391 imp = 4983 ck3 = 4110 } # Anarus, Ushke -> Aba-Qomi + link = { autogenerated = yes imp = 3389 ck3 = 4001 } # Shiram -> Daylam + link = { autogenerated = yes imp = 3376 imp = 3377 imp = 3378 ck3 = 6096 } # Selenis, Apis, Paraetonium -> KANAIS_AL-HADID + link = { autogenerated = yes imp = 3359 imp = 3362 imp = 3364 imp = 3367 ck3 = 6100 } # Balagrae, Agabis, Marandis, Petras Mikros -> WADI_MAKHIL + link = { autogenerated = yes imp = 3356 ck3 = 3641 ck3 = 3714 } # Beoue -> Goritsa, Skrapar + link = { autogenerated = yes imp = 3351 imp = 5993 ck3 = 6102 } # Chairekla, Cyrenaica -> WADI MASUS + link = { autogenerated = yes imp = 3338 imp = 3339 imp = 3340 imp = 3341 ck3 = 4550 } # Arae Philaenorum, Automalax, Mendrion, Astrochonda -> AL-AGHAILA + link = { autogenerated = yes imp = 3330 imp = 3332 imp = 3333 imp = 3334 imp = 3335 imp = 3336 imp = 3337 imp = 8199 imp = 8200 imp = 8201 imp = 8202 ck3 = 4552 } # Auxiu, Dysopon, Euphranta, Iscina, Aulazon, Ad Palmam, Digdida Selorum, Manfuchia, Nagdiyah, Qarinah, Majdubiyah -> SURT + link = { autogenerated = yes imp = 3328 imp = 8634 imp = 8635 imp = 8636 imp = 8637 imp = 8638 imp = 8738 ck3 = 6412 } # Thana, Gamal, Matamir, Kassala, Hagiz, Gash, Haykota -> KASSALA + link = { autogenerated = yes imp = 3321 imp = 632 ck3 = 6356 } # Rocat, Abale -> ATBARA + link = { autogenerated = yes imp = 3310 ck3 = 6366 } # Ameta -> WAD_HAMID + link = { autogenerated = yes imp = 3309 ck3 = 2226 } # Canniaco -> RODEZ + link = { autogenerated = yes imp = 3306 imp = 3324 imp = 8223 imp = 5947 ck3 = 4556 } # Leptis Magna, Kinyps, Bularkan, Sahara Impassable -> LABDA + link = { autogenerated = yes imp = 3301 imp = 3302 ck3 = 4568 } # Sabratha, Zanazia -> SABRATHA + link = { autogenerated = yes imp = 3297 imp = 3298 imp = 3299 imp = 3300 ck3 = 4561 } # Putea Pallene, Zouchis, Pisida, Locri -> ZUWARA + link = { autogenerated = yes imp = 3295 imp = 3296 imp = 8250 ck3 = 4565 } # Gergis, Zitha, Naffatiyah -> JARJIS + link = { autogenerated = yes imp = 3273 imp = 7855 ck3 = 4595 } # Aquae Casae, Africa Impassable -> RAQQADA + link = { autogenerated = yes imp = 3169 imp = 3187 imp = 3176 imp = 5366 ck3 = 4622 } # Badias, Midili, Aurasius Inferior, Western Musalamia -> BADIS + link = { autogenerated = yes imp = 3154 ck3 = 4754 } # Gemellae -> WAGHLANAT + link = { autogenerated = yes imp = 3128 imp = 3129 imp = 3130 imp = 3131 imp = 3117 ck3 = 4762 } # Phruraesius Mons, Thanaramusa Castra, Rapidum, Auzia, Sufasar -> SERSOU + link = { autogenerated = yes imp = 3119 imp = 3136 imp = 3137 imp = 5154 ck3 = 4648 } # Lambdia, Ausum, Bessemium, IMPASSIBLE TERRAIN 154 -> MEDEA + link = { autogenerated = yes imp = 3110 imp = 3112 imp = 3114 imp = 3115 ck3 = 4654 } # Tingitanum, Castra Germanorum, Oppidum Definum, Zucchabar -> MILIYANA + link = { autogenerated = yes imp = 3105 imp = 3127 imp = 5151 ck3 = 4658 } # Columnata, Cinnaba Mons, Atlas -> AL-'UBBAD + link = { autogenerated = yes imp = 3104 ck3 = 4659 } # Cenavicum -> TAHART + link = { autogenerated = yes imp = 3103 ck3 = 4660 } # Breucorum -> QALA'A IBN SALAMA + link = { autogenerated = yes imp = 3098 ck3 = 4657 } # Aquae Sirenses -> AL-GABAL + link = { autogenerated = yes imp = 3094 imp = 3096 imp = 3097 imp = 3099 ck3 = 4663 } # Caputtasaccora, Tasaccora, Lucu, Ala Miliaria -> MUASKAR + link = { autogenerated = yes imp = 3085 imp = 8346 ck3 = 4681 } # Tamuda, Kach Kouch -> TITTAWAN + link = { autogenerated = yes imp = 3084 ck3 = 4672 } # Syrorum -> TLEMCEN + link = { autogenerated = yes imp = 3075 ck3 = 4688 } # Viposcianae -> WARGHA + link = { autogenerated = yes imp = 3070 ck3 = 4690 } # Banasa -> WATIT + link = { autogenerated = yes imp = 3050 ck3 = 2395 } # Mosomagus -> VERDUN + link = { autogenerated = yes imp = 3033 ck3 = 2137 } # Briga -> ABBEVILLE + link = { autogenerated = yes imp = 2986 imp = 7852 ck3 = 8690 } # Sinus Gangeticus, SEAZONE IMPASSABLE WASTELAND -> Bay of Bengal + link = { autogenerated = yes imp = 292 imp = 293 imp = 295 imp = 7752 ck3 = 5545 } # Sardis, Myloukome, Hypaipa, Tmolus Mons -> Sardes + link = { autogenerated = yes imp = 2615 imp = 2622 imp = 6418 imp = 6436 ck3 = 8666 } # Sinus Thermaeus, Mare Aegaeum, Sinus Thermaeus, Mare Aegaeum -> Aegean Sea + link = { autogenerated = yes imp = 2587 ck3 = 946 } # Mare Lycium -> Gulf of Antalya + link = { autogenerated = yes imp = 2497 ck3 = 2387 } # Nasium -> VAUCOULEURS + link = { autogenerated = yes imp = 2486 ck3 = 2363 } # Lucia -> PROVINS + link = { autogenerated = yes imp = 2465 ck3 = 2328 } # Breviodurum -> VERNEUIL + link = { autogenerated = yes imp = 2443 ck3 = 2179 } # Rotomagus -> ROUEN + link = { autogenerated = yes imp = 2333 ck3 = 2251 } # Canaviacum -> RUFFEC + link = { autogenerated = yes imp = 2306 imp = 2309 ck3 = 3258 } # Figlinae, Batiana -> Annonay + link = { autogenerated = yes imp = 2300 ck3 = 2298 } # Aquae Segetae -> MONTBRISON + link = { autogenerated = yes imp = 2286 ck3 = 2225 ck3 = 2290 ck3 = 2300 } # Vellavorum -> LE PUY, MERCAEUR, AMBERT + link = { autogenerated = yes imp = 2264 ck3 = 3721 } # Parthos -> Hiskampis + link = { autogenerated = yes imp = 2263 imp = 5050 ck3 = 2215 } # Albiga, IMPASSIBLE TERRAIN 050 -> ALBI + link = { autogenerated = yes imp = 2261 ck3 = 2220 ck3 = 2219 } # Luteva -> NAVACELLES, LODEVE + link = { autogenerated = yes imp = 2160 ck3 = 2158 } # Leonitia -> LEON + link = { autogenerated = yes imp = 2067 ck3 = 1619 } # Danum -> NEWARK + link = { autogenerated = yes imp = 200 ck3 = 5586 } # Kimiata -> Kandara + link = { autogenerated = yes imp = 199 imp = 7920 ck3 = 5585 } # Kandara, Kandara Mountains -> Castamon + link = { autogenerated = yes imp = 1979 ck3 = 736 } # Baka -> Lykandos + link = { autogenerated = yes imp = 1975 ck3 = 759 } # Barata -> Ikonion + link = { autogenerated = yes imp = 1956 imp = 1957 imp = 1984 imp = 1985 imp = 5159 ck3 = 5650 } # Tabai, Kidrama, Thera Karias, Idyma, IMPASSIBLE TERRAIN 159 -> Aphrodisias + link = { autogenerated = yes imp = 1919 imp = 7962 ck3 = 5637 } # Isaura, Ano Kotradis -> Adrasos + link = { autogenerated = yes imp = 1901 imp = 1904 imp = 1917 imp = 5165 ck3 = 5638 } # Anemourion, Selinous Kilikias, Lakaine, IMPASSIBLE TERRAIN 165 -> Anemurium + link = { autogenerated = yes imp = 1798 imp = 1801 ck3 = 705 } # Kerasous, Matouasko -> Cerasus + link = { autogenerated = yes imp = 1782 imp = 1842 imp = 7980 ck3 = 5701 } # Dasteira, Zara, Pedachthoe Mountains -> Nicopolis_ARM + link = { autogenerated = yes imp = 1778 imp = 1779 imp = 8004 ck3 = 5702 } # Chorsabia, Olotoedariza, Analibna Mountains -> Kheranion + link = { autogenerated = yes imp = 1771 imp = 8005 ck3 = 5704 } # Analibna, Pisingara Mountains -> Kamisa + link = { autogenerated = yes imp = 1768 imp = 8001 ck3 = 5703 } # Til, Chorasbia Mountains -> Satala + link = { autogenerated = yes imp = 1759 imp = 5196 ck3 = 5709 } # Sper, IMPASSIBLE TERRAIN 196 -> Speri + link = { autogenerated = yes imp = 1754 imp = 1756 imp = 5200 ck3 = 5740 } # Artahan, Artanuji, IMPASSIBLE TERRAIN 200 -> Arthanuji + link = { autogenerated = yes imp = 1751 imp = 5197 ck3 = 680 } # Barantea, IMPASSIBLE TERRAIN 197 -> Oltisi + link = { autogenerated = yes imp = 1747 ck3 = 5713 ck3 = 5737 } # Gymnias -> Mardali, Tortomi + link = { autogenerated = yes imp = 1745 ck3 = 600 } # Masaitike -> Nicopsia + link = { autogenerated = yes imp = 1731 imp = 1732 imp = 5175 ck3 = 5692 } # Ophis, Hyssos, IMPASSIBLE TERRAIN 175 -> Rhizus + link = { autogenerated = yes imp = 1729 imp = 1730 imp = 1757 imp = 5192 ck3 = 5696 } # Athenai Pontikai, Rhizaion, Kaballa, IMPASSIBLE TERRAIN 192 -> Archabis + link = { autogenerated = yes imp = 1726 imp = 1727 imp = 1728 imp = 1758 ck3 = 5697 } # Apsaros, Kissa, Morthoula, Pharangion -> Petra + link = { autogenerated = yes imp = 1715 ck3 = 5750 } # Archaiopolis -> Tsageri + link = { autogenerated = yes imp = 1709 ck3 = 6037 } # Naqb Jedid -> TIH + link = { autogenerated = yes imp = 1698 imp = 1744 imp = 1764 imp = 5194 ck3 = 704 } # Sinara, Karana, Bizana, IMPASSIBLE TERRAIN 194 -> Theodosiopolis + link = { autogenerated = yes imp = 1691 imp = 1694 ck3 = 5742 } # Dedoplis, Surium -> Tskhinvali + link = { autogenerated = yes imp = 1688 ck3 = 6030 } # Nuweiba -> FIRAUN + link = { autogenerated = yes imp = 1683 imp = 1689 imp = 1692 ck3 = 5743 } # Aghaiani, Urbnisi, Tskhinvali -> Uplistsikhe + link = { autogenerated = yes imp = 1681 imp = 1673 ck3 = 5763 } # Aragvispiri, Iberian Gates -> Nektesi + link = { autogenerated = yes imp = 1680 imp = 1687 ck3 = 5764 } # Zalissa, Jhinvali -> Mtskheta + link = { autogenerated = yes imp = 1677 ck3 = 5758 } # Algeti -> Dmanisi + link = { autogenerated = yes imp = 1657 ck3 = 676 } # Telavi -> Telavi + link = { autogenerated = yes imp = 1648 ck3 = 5790 } # Ghizil-Agaj -> Paytakaran + link = { autogenerated = yes imp = 1646 imp = 5209 ck3 = 5781 } # Gardman, IMPASSIBLE TERRAIN 209 -> Shamkur + link = { autogenerated = yes imp = 1629 imp = 5216 ck3 = 4542 } # Shorbulaq, IMPASSIBLE TERRAIN 216 -> UNAR + link = { autogenerated = yes imp = 1625 imp = 1626 imp = 5217 ck3 = 4544 } # Kuh-i Bolagh, Mishkinshahr, Cadusian Highland -> SARAT + link = { autogenerated = yes imp = 1620 imp = 1621 imp = 5218 ck3 = 4540 } # Aharawan, Arvandj, IMPASSIBLE TERRAIN 218 -> AHAR + link = { autogenerated = yes imp = 1599 ck3 = 4781 } # Denabaran -> KERMANSHAH + link = { autogenerated = yes imp = 1592 imp = 1663 imp = 1666 ck3 = 5782 } # Akunk, Vaykunik, Koght -> Gardman + link = { autogenerated = yes imp = 1590 imp = 1606 ck3 = 5727 } # Dzhrarat, Berdatekh -> Kumayri + link = { autogenerated = yes imp = 1574 imp = 1578 ck3 = 4773 } # Pylai Kelishinias, Orontes -> KHUFTIYAN + link = { autogenerated = yes imp = 1570 imp = 1576 imp = 1577 imp = 1579 imp = 1580 ck3 = 5726 } # Armaouira, Kainepolis Syracene, Motene, Ashnak, Katnakhpyur -> Bagaran + link = { autogenerated = yes imp = 1567 ck3 = 5732 } # Bagauna -> Patnos + link = { autogenerated = yes imp = 1564 imp = 1566 imp = 5198 ck3 = 5731 } # Kolchion, Didima, IMPASSIBLE TERRAIN 198 -> Valashkert + link = { autogenerated = yes imp = 1563 imp = 5195 ck3 = 5714 } # Acachia, IMPASSIBLE TERRAIN 195 -> Khinisi + link = { autogenerated = yes imp = 1554 imp = 1558 ck3 = 4763 } # Ziwiye, Karaftu -> ANDARAB + link = { autogenerated = yes imp = 1525 imp = 1624 ck3 = 4539 } # Gurqal'eh, Chaharla -> UJAN + link = { autogenerated = yes imp = 1520 imp = 1521 imp = 1522 imp = 1523 imp = 5219 ck3 = 4545 } # Bonab Qal'eh, Akra-rudh, Godjer, Phraaspa, IMPASSIBLE TERRAIN 219 -> MARAGHA + link = { autogenerated = yes imp = 140 imp = 5128 ck3 = 2553 } # Faesulae, IMPASSIBLE TERRAIN 128 -> CASENTINO + link = { autogenerated = yes imp = 1287 imp = 1396 ck3 = 1976 } # Salaria, Vergilia -> QUESADA + link = { autogenerated = yes imp = 1252 imp = 5185 ck3 = 1973 } # Ilounon, IMPASSIBLE TERRAIN 185 -> HUESCAR + link = { autogenerated = yes imp = 1236 imp = 8390 ck3 = 1941 } # Arcus, Iberia Impassable -> SEGORBE + link = { autogenerated = yes imp = 1229 imp = 1232 imp = 8392 ck3 = 1945 } # Confluenta Celtiberia, Bellia Inferioris, Iberia Impassable -> ALTO TAJO + link = { autogenerated = yes imp = 1145 ck3 = 1819 } # Gemestarum -> MONFORTE DE LEMOS + link = { autogenerated = yes imp = 5789 imp = 5790 imp = 5791 imp = 5794 ck3 = 996 } # Mare Germanicum, Mare Germanicum, Mare Germanicum, Mare Germanicum -> Dogger Bank + link = { autogenerated = yes imp = 5772 ck3 = 994 } # Mare Septentrionale -> Firth of Forth + link = { autogenerated = yes imp = 5768 imp = 5769 imp = 5770 imp = 6309 ck3 = 993 } # Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, LAKE -> Moray Firth + link = { autogenerated = yes imp = 5765 imp = 5766 imp = 6308 ck3 = 992 } # Oceanus Atlanticus, Oceanus Atlanticus, LAKE -> The Minch + link = { autogenerated = yes imp = 5692 imp = 5690 imp = 5695 imp = 5702 imp = 5746 ck3 = 991 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Mare Verginium, Oceanus Atlanticus -> Celtic Sea + link = { autogenerated = yes imp = 5818 imp = 5798 imp = 5803 imp = 5804 imp = 5805 imp = 5807 imp = 5810 imp = 5814 imp = 5816 imp = 5817 imp = 5825 imp = 5826 ck3 = 988 } # Mare Septentrionale, Mare Germanicum, Mare Germanicum, Mare Germanicum, Mare Septentrionale, Mare Germanicum, Mare Germanicum, Mare Germanicum, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale -> North Sea + link = { autogenerated = yes imp = 6413 ck3 = 983 } # Asphaltites -> Dead Sea + link = { autogenerated = yes imp = 4591 imp = 2780 imp = 4593 imp = 4598 imp = 4599 imp = 4725 ck3 = 981 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Gulf of Cadiz + link = { autogenerated = yes imp = 4731 imp = 4727 imp = 4732 imp = 4734 ck3 = 980 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Coast of Portugal + link = { autogenerated = yes imp = 6414 ck3 = 979 } # Gennesar -> Tiveriade Lake + link = { autogenerated = yes imp = 5701 imp = 5686 imp = 5687 imp = 5696 imp = 6313 ck3 = 977 } # Mare Verginium, Mare Verginium, Mare Verginium, Mare Verginium, LAKE -> Bretagne Coast + link = { autogenerated = yes imp = 5742 imp = 5741 imp = 5755 ck3 = 975 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Donegal Bay + link = { autogenerated = yes imp = 4743 imp = 4742 imp = 4952 imp = 4954 imp = 6316 ck3 = 974 } # Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, LAKE -> Bay of Biscay + link = { autogenerated = yes imp = 5781 imp = 5784 ck3 = 973 } # Mare Germanicum, Mare Germanicum -> Wadden Sea + link = { autogenerated = yes imp = 4738 imp = 4733 imp = 4736 imp = 4739 imp = 4745 ck3 = 970 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Mare Cantabrum -> Cape Finisterre + link = { autogenerated = yes imp = 2750 imp = 2749 imp = 2751 imp = 2753 ck3 = 969 } # Palus Maeotica, Palus Maeotica, Palus Maeotica, Palus Maeotica -> Sea of Azov + link = { autogenerated = yes imp = 5720 imp = 5719 imp = 5724 ck3 = 968 } # Mare Verginium, Mare Verginium, Mare Verginium -> Saint George's Channel + link = { autogenerated = yes imp = 5699 imp = 5712 ck3 = 967 } # Mare Britannicum, Mare Verginium -> English Channel + link = { autogenerated = yes imp = 5705 imp = 5706 ck3 = 966 } # Mare Britannicum, Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 4462 imp = 7367 ck3 = 9656 } # Modgagiri, Bhagdatpuram -> Burhi_Gandak + link = { autogenerated = yes imp = 7322 imp = 7383 imp = 7481 ck3 = 9655 } # Purnia, Kishan, Supaul -> Jalalghar + link = { autogenerated = yes imp = 7480 ck3 = 9654 } # Saharsa -> Bangaon + link = { autogenerated = yes imp = 7138 ck3 = 9652 } # Rayagada -> Rayagada + link = { autogenerated = yes imp = 7172 ck3 = 9651 } # Salipetake -> Gopalpur + link = { autogenerated = yes imp = 5710 ck3 = 965 } # Fretum Gallicum -> Strait of Dover + link = { autogenerated = yes imp = 7080 ck3 = 9649 } # Dantapura -> Srikakulam + link = { autogenerated = yes imp = 7081 ck3 = 9648 ck3 = 1224 } # Kalinganagara -> Kalinganagara, Mandasa + link = { autogenerated = yes imp = 8805 ck3 = 9647 ck3 = 9622 ck3 = 9623 ck3 = 9624 } # Thanbauk -> Hanlan, Maukkadaw, Mingiu, Kale + link = { autogenerated = yes imp = 8779 imp = 8794 ck3 = 9646 } # Dalhi, Burma Mountains -> Myedu + link = { autogenerated = yes imp = 8780 ck3 = 9643 ck3 = 9645 } # Tagaung -> Takon, Htigyaing + link = { autogenerated = yes imp = 8789 ck3 = 9641 } # Pai -> Singu + link = { autogenerated = yes imp = 8776 ck3 = 9639 } # Hnaw Kan -> Myinmu + link = { autogenerated = yes imp = 6351 ck3 = 963 } # LAKE -> Vanern + link = { autogenerated = yes imp = 6349 ck3 = 962 } # LAKE -> Vattern + link = { autogenerated = yes imp = 6741 ck3 = 9608 ck3 = 9607 } # Yutian -> Dondan_Oilik, Lafak + link = { autogenerated = yes imp = 6750 ck3 = 9603 } # Iuwo -> Endere + link = { autogenerated = yes imp = 6752 imp = 8764 ck3 = 9602 } # Endere, Xiaowan -> Saca + link = { autogenerated = yes imp = 6347 ck3 = 959 } # LAKE -> Malaren + link = { autogenerated = yes imp = 8771 ck3 = 9588 ck3 = 9634 } # Sri Ksetra -> Sriksetra, Taungdwingyi + link = { autogenerated = yes imp = 8769 ck3 = 9586 ck3 = 9587 } # Arakan -> Ramree, An + link = { autogenerated = yes imp = 8786 ck3 = 9585 ck3 = 9592 } # Mayo -> Sandoway, Myanaung + link = { autogenerated = yes imp = 8787 ck3 = 9583 ck3 = 9579 } # Mrauk U -> Thabeik_Taung, Mahamuni + link = { autogenerated = yes imp = 8766 ck3 = 9581 ck3 = 9582 ck3 = 9584 } # Dulahazara -> Ramu, Dianga, Matamuhuri + link = { autogenerated = yes imp = 8768 ck3 = 9577 ck3 = 9578 ck3 = 9564 } # Waithali -> Launggyet, Mrauk_U, Ngape + link = { autogenerated = yes imp = 8767 ck3 = 9576 ck3 = 9580 } # Dayawadi -> Vaisali, Akyab + link = { autogenerated = yes imp = 8772 ck3 = 9574 ck3 = 9575 ck3 = 9572 } # Beikthano -> Peikthanomyo, Magwe, Shwemyo + link = { autogenerated = yes imp = 8778 ck3 = 9568 ck3 = 9569 } # Halin -> Sagaing, Halin + link = { autogenerated = yes imp = 8770 ck3 = 9565 ck3 = 9590 } # Taledan -> Shwesettaw, Thayetmyo + link = { autogenerated = yes imp = 8811 ck3 = 9560 ck3 = 9570 ck3 = 9559 } # Wundwin -> Maingmaw, Yawnghwe, Kyaukse + link = { autogenerated = yes imp = 8806 ck3 = 9558 ck3 = 9561 ck3 = 9640 } # Myitnge -> Taungbyon, Mekkhaya, Madaya + link = { autogenerated = yes imp = 8804 ck3 = 9554 ck3 = 9553 } # Wagan -> Myitche, Tantkyitaung + link = { autogenerated = yes imp = 8775 ck3 = 9552 ck3 = 9556 ck3 = 9557 } # Taungthaman -> Nyaung_U, Ava, Pinya + link = { autogenerated = yes imp = 8773 ck3 = 9551 ck3 = 9571 ck3 = 9573 } # Binnaka -> Popa, Yamethin, Binnaka + link = { autogenerated = yes imp = 8774 ck3 = 9550 } # Ywa Htin Kon -> Pagan + link = { autogenerated = yes imp = 2730 ck3 = 954 } # Fretum Gaditanum -> Strait of Gibraltar + link = { autogenerated = yes imp = 4614 imp = 4590 imp = 6506 ck3 = 953 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Coast of Morocco + link = { autogenerated = yes imp = 4588 imp = 2993 imp = 2994 imp = 2997 imp = 4572 imp = 4573 imp = 4574 imp = 4575 imp = 4576 imp = 4577 imp = 4584 ck3 = 952 } # Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum -> Caspian Sea + link = { autogenerated = yes imp = 2733 imp = 2755 imp = 2757 imp = 2758 imp = 2762 imp = 2763 ck3 = 951 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea + link = { autogenerated = yes imp = 2732 imp = 2767 imp = 2769 ck3 = 950 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea + link = { autogenerated = yes imp = 2779 imp = 2740 imp = 2741 imp = 6390 imp = 6391 imp = 9191 ck3 = 949 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, LAKE, LAKE, Hypanis -> Black Sea + link = { autogenerated = yes imp = 2737 imp = 2736 imp = 2738 imp = 2771 ck3 = 948 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Gulf of Varna + link = { autogenerated = yes imp = 2623 imp = 2618 ck3 = 947 } # Propontis, Hellespontus -> Sea of Marmara + link = { autogenerated = yes imp = 2680 imp = 2584 imp = 2585 imp = 2586 imp = 8028 imp = 8051 ck3 = 945 } # Mare Cilicium, Mare Phoenicium, Mare Cilicium, Mare Cilicium, Pyramus, Cydnus -> Gulf of Alexandretta + link = { autogenerated = yes imp = 6444 ck3 = 944 } # Mare Aralense -> Aral Sea + link = { autogenerated = yes imp = 2609 imp = 2605 imp = 2614 imp = 2620 imp = 6437 imp = 7906 imp = 7907 ck3 = 942 } # Mare Aegaeum, Fretum Carysteum, Fretum Artemisium, Mare Aegaeum, Mare Aegaeum, Pagasaeus Sinus, Sinus Malianus -> Aegean Sea + link = { autogenerated = yes imp = 2679 imp = 2677 ck3 = 941 } # Mare Phoenicium, Mare Phoenicium -> Coast of Cyprus + link = { autogenerated = yes imp = 2669 imp = 2580 imp = 2581 imp = 2582 ck3 = 940 } # Mare Phoenicium, Mare Phoenicium, Mare Phoenicium, Mare Phoenicium -> Coast of Jerusalem + link = { autogenerated = yes imp = 2667 imp = 2578 ck3 = 939 } # Mare Aegyptium, Delta Nili -> Nile Delta + link = { autogenerated = yes imp = 2662 imp = 2576 ck3 = 938 } # Mare Aegyptium, Mare Aegyptium -> Libyan Sea + link = { autogenerated = yes imp = 2663 imp = 2597 imp = 2601 imp = 2660 ck3 = 937 } # Mare Aegyptium, Mare Aegyptium, Mare Aegyptium, Mare Aegyptium -> Sea of Crete + link = { autogenerated = yes imp = 2594 imp = 2590 imp = 2592 imp = 2593 ck3 = 936 } # Mare Icarium, Mare Icarium, Mare Carpathium, Mare Icarium -> Aegean Sea + link = { autogenerated = yes imp = 8540 imp = 8542 ck3 = 934 } # Lunichno, Lepiel -> Lukoml + link = { autogenerated = yes imp = 9132 imp = 9129 ck3 = 933 } # Asras, Sirdis -> Roslavl + link = { autogenerated = yes imp = 7170 imp = 7173 ck3 = 932 } # Magaris Kalinga, Caritra -> Ratnagiri + link = { autogenerated = yes imp = 9249 ck3 = 931 } # Dhenka -> Athgarh + link = { autogenerated = yes imp = 5661 ck3 = 9292 ck3 = 9293 } # Rabten -> Xamqu, Biru + link = { autogenerated = yes imp = 5646 ck3 = 9275 ck3 = 9276 } # Tsosong -> Nyingchi, Lunang + link = { autogenerated = yes imp = 5657 ck3 = 9274 } # Gong -> Pagsum + link = { autogenerated = yes imp = 5660 ck3 = 9273 ck3 = 8553 } # Supiyi -> Gongbo, HIMALAYA + link = { autogenerated = yes imp = 5656 ck3 = 9272 } # Nyang -> Nyang + link = { autogenerated = yes imp = 5643 ck3 = 9271 } # Buchu -> Burqug + link = { autogenerated = yes imp = 5662 ck3 = 9270 ck3 = 9288 ck3 = 8554 } # Tufan -> Lhari, Jaggang, HIMALAYA + link = { autogenerated = yes imp = 9245 ck3 = 927 } # Sisupalgarh -> Bhubaneswar + link = { autogenerated = yes imp = 5663 ck3 = 9268 ck3 = 9269 } # Naksho -> Codoi, Lingti + link = { autogenerated = yes imp = 5659 ck3 = 9267 } # Fugo -> Paga + link = { autogenerated = yes imp = 5647 ck3 = 9265 } # Drena -> Gedang + link = { autogenerated = yes imp = 7455 ck3 = 926 } # Amrakuta -> Soubhagyapura + link = { autogenerated = yes imp = 5664 ck3 = 9257 ck3 = 9255 ck3 = 9256 ck3 = 9354 } # Ronglung -> Taksar, Nagqu, Lhomar, Nyainrong + link = { autogenerated = yes imp = 4471 imp = 4468 ck3 = 925 } # Tigowa, Nachna-Kuthara -> Bahoriband + link = { autogenerated = yes imp = 5640 ck3 = 9246 ck3 = 9247 ck3 = 9250 } # Nyenchen -> Doilungdeqen, Nyemo, Yangpachen + link = { autogenerated = yes imp = 5641 ck3 = 9245 } # Yokang -> Quxu + link = { autogenerated = yes imp = 5619 ck3 = 9242 ck3 = 9244 ck3 = 9248 ck3 = 9249 } # Tanglha -> Lhunzhub, Reting, Damquka, Nyinhzhong + link = { autogenerated = yes imp = 5620 ck3 = 9241 ck3 = 9243 } # Katsel -> Drigung, Ngarnang + link = { autogenerated = yes imp = 5658 ck3 = 9240 ck3 = 9266 } # Lum -> Kunggar, Mila + link = { autogenerated = yes imp = 5618 ck3 = 9237 ck3 = 9238 } # Lhasa -> Lhasa, Potala + link = { autogenerated = yes imp = 5649 ck3 = 9235 } # Tsangpo -> Nang + link = { autogenerated = yes imp = 5655 ck3 = 9234 ck3 = 9236 ck3 = 9239 } # Shingnak -> Daklha_Gampo, Sangri, Gyama + link = { autogenerated = yes imp = 5648 ck3 = 9231 ck3 = 9233 } # Tandruk -> Qusum, Gyaca + link = { autogenerated = yes imp = 5442 ck3 = 923 ck3 = 924 } # Tummana -> Amarkantak, Moti_Mahal + link = { autogenerated = yes imp = 5636 ck3 = 9229 } # Chongye -> Yumbu_Lakhang + link = { autogenerated = yes imp = 5621 ck3 = 9228 ck3 = 9230 } # Samye -> Samye, Zetang + link = { autogenerated = yes imp = 5622 ck3 = 9227 ck3 = 9232 } # Qoide -> Tradruk, Gonggar + link = { autogenerated = yes imp = 5632 ck3 = 9224 ck3 = 9225 ck3 = 8550 } # Khoting -> Lhozhag, Comai, HIMALAYA + link = { autogenerated = yes imp = 5637 ck3 = 9223 ck3 = 9226 } # Chimpyu -> Nagarze, Taktse + link = { autogenerated = yes imp = 7068 ck3 = 922 } # Bhurhikara -> Pali + link = { autogenerated = yes imp = 7169 ck3 = 921 } # Pali -> Savarinarayana + link = { autogenerated = yes imp = 5630 ck3 = 9209 ck3 = 9210 } # Zhongzhong -> Namling, Tobgyai + link = { autogenerated = yes imp = 5626 ck3 = 9207 ck3 = 9211 } # Tsangdram -> Tongmoin, Qingtu + link = { autogenerated = yes imp = 5623 ck3 = 9206 ck3 = 9208 } # Trompagan -> Quog, Leba + link = { autogenerated = yes imp = 5610 ck3 = 9203 } # Kyangpu -> Rusar + link = { autogenerated = yes imp = 5613 ck3 = 9202 } # Nambo -> Qulho + link = { autogenerated = yes imp = 5605 ck3 = 9201 } # Tago -> Caze + link = { autogenerated = yes imp = 5589 imp = 5958 ck3 = 9200 } # Bhoma, Himalayan Highland -> Sangsang + link = { autogenerated = yes imp = 7318 imp = 7423 ck3 = 920 } # Pandhurna, Melghat -> Gawilgarh + link = { autogenerated = yes imp = 5639 ck3 = 9196 ck3 = 9251 } # Durbye -> Rinbung, Qewa + link = { autogenerated = yes imp = 5635 ck3 = 9195 ck3 = 9192 } # Lhodrak -> Kangmar, Kamru + link = { autogenerated = yes imp = 5625 ck3 = 9194 ck3 = 9191 } # Nesar -> Xigaze, Se + link = { autogenerated = yes imp = 5638 ck3 = 9193 ck3 = 9197 ck3 = 9198 } # Kyungho -> Banam, Gyangze, Nyamo + link = { autogenerated = yes imp = 7422 imp = 7313 ck3 = 919 } # Betul, Kalumukha -> Handia + link = { autogenerated = yes imp = 5627 ck3 = 9189 ck3 = 9199 } # Dyuni -> Lhaze, Kagar + link = { autogenerated = yes imp = 5629 ck3 = 9187 ck3 = 9185 } # Koryi -> Dinggye, Tingri + link = { autogenerated = yes imp = 5586 ck3 = 9181 ck3 = 9180 ck3 = 9183 ck3 = 9184 } # Mangyul Takmo Dzong -> Gyirong, Kungtang, Tsongdu, Mainpu + link = { autogenerated = yes imp = 5633 ck3 = 9179 ck3 = 9154 } # Tsoho -> Kurtoed, Tawang + link = { autogenerated = yes imp = 5650 ck3 = 9172 } # Dodong -> Medog + link = { autogenerated = yes imp = 5644 ck3 = 9171 } # Kongpo -> Bokthang + link = { autogenerated = yes imp = 5651 ck3 = 9170 } # Shyri -> Mainling + link = { autogenerated = yes imp = 5645 ck3 = 9169 } # Lishan -> Wolong + link = { autogenerated = yes imp = 5654 ck3 = 9163 ck3 = 9162 } # Kongyul -> Yingkiong, Tuting + link = { autogenerated = yes imp = 7355 ck3 = 9160 ck3 = 9159 } # Donga -> Along, Daporijo + link = { autogenerated = yes imp = 5653 ck3 = 9152 ck3 = 9153 } # Soso -> Lhunze, Yumai + link = { autogenerated = yes imp = 5642 ck3 = 9150 ck3 = 9151 } # Ritang -> Cona, Nariyong + link = { autogenerated = yes imp = 7454 ck3 = 915 ck3 = 916 ck3 = 914 } # Mandla -> Banjar, Bohani, Mandla + link = { autogenerated = yes imp = 7347 ck3 = 9148 ck3 = 9149 } # Bhallaka -> Pemagatsel, Kurmaed + link = { autogenerated = yes imp = 5634 ck3 = 9145 ck3 = 9146 ck3 = 9147 } # Mon Shampo -> Bumthang, Lhuentse, Mongar + link = { autogenerated = yes imp = 7653 ck3 = 9144 } # Manasa Kamata -> Zhemgang + link = { autogenerated = yes imp = 7346 ck3 = 9142 ck3 = 9139 } # Bhargava -> Sarpang, Daga + link = { autogenerated = yes imp = 5631 ck3 = 9140 ck3 = 9141 ck3 = 9138 ck3 = 9143 } # Mon Bumtang -> Punakha, Gasa, Thimpu, Trongsa + link = { autogenerated = yes imp = 5628 ck3 = 9136 ck3 = 9121 ck3 = 9129 } # Paro Kerchu -> Yangwarok, Bhojpur, Daramdin + link = { autogenerated = yes imp = 7487 ck3 = 9132 ck3 = 9119 } # Bijalpura -> Dhulikhel, Okhaldhunga + link = { autogenerated = yes imp = 7364 imp = 7392 ck3 = 913 } # Manbhum, Vajra -> Kashipur + link = { autogenerated = yes imp = 7656 ck3 = 9125 ck3 = 9127 ck3 = 9128 } # Damak -> Ilam, Panchthar, Darjeeling + link = { autogenerated = yes imp = 4464 ck3 = 9124 ck3 = 9126 } # Devaprastha -> Gograha, Dhankuta + link = { autogenerated = yes imp = 4460 ck3 = 9120 ck3 = 9122 } # Sugauna -> Khotang, Rajbiraj + link = { autogenerated = yes imp = 9268 imp = 9269 ck3 = 912 } # Shikharji, Chatra -> Shikarji + link = { autogenerated = yes imp = 7486 ck3 = 9118 } # Mithila -> Janakpur + link = { autogenerated = yes imp = 4459 ck3 = 9117 ck3 = 9130 ck3 = 9131 ck3 = 9114 } # Selanpura -> Bhaktapur, Kirtipur, Lalitpur, Dolakha + link = { autogenerated = yes imp = 5587 ck3 = 9116 ck3 = 9113 } # Chomolangma -> Kathmandu, Gorkha + link = { autogenerated = yes imp = 7384 ck3 = 9115 ck3 = 9123 ck3 = 9112 } # Rampurwa -> Hetauda, Bharatpur, Tanahun + link = { autogenerated = yes imp = 5584 imp = 7290 ck3 = 9110 } # Tshongdu, Impassable -> Gulmi + link = { autogenerated = yes imp = 5572 ck3 = 9103 ck3 = 9095 ck3 = 9099 ck3 = 9102 } # Upper Terai -> Dullu, Doti, Bajura, Jumla + link = { autogenerated = yes imp = 5574 ck3 = 9100 ck3 = 9101 } # Pumaring -> Simikot, Sinja + link = { autogenerated = yes imp = 5573 ck3 = 9096 ck3 = 9107 } # Terai -> Godawari, Gulariya + link = { autogenerated = yes imp = 7405 imp = 7377 ck3 = 9092 } # Pilibhit, Savatthi -> Champawat + link = { autogenerated = yes imp = 9273 ck3 = 909 } # Parsodih -> Palamau + link = { autogenerated = yes imp = 5576 imp = 5577 ck3 = 9086 } # Kailash, Nguot -> Monicer + link = { autogenerated = yes imp = 5611 ck3 = 9084 } # Gyulo -> Gyesarco + link = { autogenerated = yes imp = 5590 imp = 5606 ck3 = 9083 } # Tsanghla, Yartsang -> Kyakyaru + link = { autogenerated = yes imp = 5588 ck3 = 9082 ck3 = 9182 } # Lhayul -> Lhagcang, Chagne + link = { autogenerated = yes imp = 9272 ck3 = 908 ck3 = 906 } # Daltonganj -> Betla, Ambikapur + link = { autogenerated = yes imp = 5585 ck3 = 9079 ck3 = 9080 ck3 = 9105 ck3 = 9106 ck3 = 9111 } # Pakpa -> Manthang, Muktinath, Gautamkot, Rukum, Kaski + link = { autogenerated = yes imp = 5583 ck3 = 9078 ck3 = 9081 } # Serip Drukmo Dzong -> Yagra, Changgo + link = { autogenerated = yes imp = 5580 ck3 = 9077 } # Mapam -> Penchi + link = { autogenerated = yes imp = 5578 ck3 = 9076 } # Khakyor -> Baryang + link = { autogenerated = yes imp = 5579 ck3 = 9075 } # Tsina -> Labrang + link = { autogenerated = yes imp = 5612 ck3 = 9074 } # Supima -> Lunggar + link = { autogenerated = yes imp = 5617 ck3 = 9073 ck3 = 9061 } # Chunak -> Barma, Gerze + link = { autogenerated = yes imp = 5616 ck3 = 9072 } # Jangteng -> Ringtor + link = { autogenerated = yes imp = 5581 ck3 = 9071 } # Yumtso -> Argogco + link = { autogenerated = yes imp = 5575 ck3 = 9069 ck3 = 9068 } # Gyangri -> Hor, Teglakar + link = { autogenerated = yes imp = 5615 ck3 = 9059 ck3 = 9070 ck3 = 9060 } # Barma -> Xungba, Cuonaco, Chaka + link = { autogenerated = yes imp = 5582 ck3 = 9057 } # Sangya -> Zoco + link = { autogenerated = yes imp = 5570 ck3 = 9054 ck3 = 9056 } # Khayu -> Busin, Gar + link = { autogenerated = yes imp = 5571 ck3 = 9053 ck3 = 9055 ck3 = 9067 } # Nghulmo Khar -> Tholing, Kyunglung, Simbiling + link = { autogenerated = yes imp = 5569 ck3 = 9051 ck3 = 9052 ck3 = 9044 ck3 = 9050 } # Tsaparang -> Trashigang, Tsaparang, Nako, Kamru + link = { autogenerated = yes imp = 4432 ck3 = 905 } # Sajahati -> Kantit + link = { autogenerated = yes imp = 4457 ck3 = 904 ck3 = 9109 } # Lumbini -> Amorha, Lumbini + link = { autogenerated = yes imp = 5562 ck3 = 9038 ck3 = 9039 ck3 = 3293 } # Rutok -> Risum, Rebang, KUNLUNSHAN + link = { autogenerated = yes imp = 5563 ck3 = 9037 ck3 = 9040 } # Rabzhi Senge Dzong -> Rutog, Changmar + link = { autogenerated = yes imp = 7245 ck3 = 903 } # Chinaz -> Afrasiyab + link = { autogenerated = yes imp = 5591 imp = 5566 ck3 = 9029 } # Leh, Lashang -> Haldi + link = { autogenerated = yes imp = 5593 ck3 = 9024 } # Darada -> Astore + link = { autogenerated = yes imp = 5598 ck3 = 9023 ck3 = 9025 } # Mulbek -> Gultari, Minimarg + link = { autogenerated = yes imp = 5559 ck3 = 9022 } # Tachok Dzong -> Tolti + link = { autogenerated = yes imp = 5592 ck3 = 9020 ck3 = 9021 ck3 = 9026 ck3 = 9027 } # Skardo -> Skardu, Roundu, Shigar, Askole + link = { autogenerated = yes imp = 5558 ck3 = 9018 ck3 = 9019 ck3 = 9013 } # Achuk -> Purig, Dras, Padum + link = { autogenerated = yes imp = 5565 ck3 = 9009 ck3 = 9011 ck3 = 9010 ck3 = 9028 } # Aparing -> Diskit, Turtuk, Panamik, Khaplu + link = { autogenerated = yes imp = 5567 ck3 = 9008 ck3 = 9030 } # Tiret -> Chusul, Khurnak + link = { autogenerated = yes imp = 5564 ck3 = 9003 ck3 = 9014 ck3 = 9017 } # Echen Khar -> Shey, Zangla, Karzok + link = { autogenerated = yes imp = 5561 ck3 = 9002 ck3 = 9005 } # Ladakh -> Leh, Tangtse + link = { autogenerated = yes imp = 2175 ck3 = 9 } # Venicnia Australis -> DONEGAL + link = { autogenerated = yes imp = 7370 ck3 = 883 } # Garzapur -> Gadhipuri + link = { autogenerated = yes imp = 7478 ck3 = 882 ck3 = 884 } # Rivilganj -> Chapra, Haldi2 + link = { autogenerated = yes imp = 7477 ck3 = 881 } # Saran -> Pava + link = { autogenerated = yes imp = 1058 imp = 1056 ck3 = 8801 } # Orgia, Setelsis -> Seu d'Urgell + link = { autogenerated = yes imp = 4448 ck3 = 880 } # Vaishali -> Kesaria + link = { autogenerated = yes imp = 1060 ck3 = 8797 ck3 = 8798 } # Ioulia Libika -> Llivia, Prades in Rossello + link = { autogenerated = yes imp = 1057 ck3 = 8796 } # Lesos -> Agramunt + link = { autogenerated = yes imp = 1066 ck3 = 8795 } # Mendiculeia -> Monzon + link = { autogenerated = yes imp = 1075 ck3 = 8794 } # Fibularia -> Biescas + link = { autogenerated = yes imp = 1080 ck3 = 8793 } # Segia -> Uncastillo + link = { autogenerated = yes imp = 4443 ck3 = 879 } # Nadikagama -> Hajipur + link = { autogenerated = yes imp = 2083 ck3 = 8780 } # Luguvalium -> Wigton + link = { autogenerated = yes imp = 7360 ck3 = 878 } # Sita -> Darbhanga + link = { autogenerated = yes imp = 2119 ck3 = 8776 ck3 = 8778 } # Carnonacae -> Glenelg, Applecross + link = { autogenerated = yes imp = 7479 ck3 = 877 } # Samastipur -> Sugauna + link = { autogenerated = yes imp = 3602 ck3 = 8766 } # Iulia Concordia -> Portogruaro + link = { autogenerated = yes imp = 3561 ck3 = 8764 } # Eporedia -> Santhia + link = { autogenerated = yes imp = 124 ck3 = 8760 } # Cortona -> Asciano + link = { autogenerated = yes imp = 4441 ck3 = 876 } # Asthagora -> Arrah + link = { autogenerated = yes imp = 34 imp = 28 ck3 = 8759 } # Iuvanum, Corfinium -> Agnone + link = { autogenerated = yes imp = 50 ck3 = 8758 } # Urium -> Vieste + link = { autogenerated = yes imp = 33 imp = 44 ck3 = 8757 } # Corneliani, Tuticum -> Ariano + link = { autogenerated = yes imp = 40 imp = 8 ck3 = 8756 } # Nola, Saticula -> Aversa + link = { autogenerated = yes imp = 62 ck3 = 8755 } # Menturia -> Lecce + link = { autogenerated = yes imp = 12 imp = 59 ck3 = 8754 } # Velia, Consilinum -> Policastro + link = { autogenerated = yes imp = 75 ck3 = 8751 } # Hipponium -> Tropea + link = { autogenerated = yes imp = 2182 imp = 2163 ck3 = 8750 } # Velaboria, Velaboria Australis -> Kilmallock + link = { autogenerated = yes imp = 4465 imp = 7473 ck3 = 875 } # Bhabua, Sasaram -> Jaund + link = { autogenerated = yes imp = 2197 ck3 = 8748 } # Autenia Borealis -> Killala + link = { autogenerated = yes imp = 2169 ck3 = 8746 } # Autenia Australis -> Tuam + link = { autogenerated = yes imp = 2201 ck3 = 8745 } # Nagnatia Australis -> Cruachu + link = { autogenerated = yes imp = 2194 ck3 = 8744 } # Caucia Occidentalis -> Adragh + link = { autogenerated = yes imp = 2170 imp = 2205 ck3 = 8742 } # Voluntia Australis, Voluntia Occidentalis -> Clogher + link = { autogenerated = yes imp = 7748 ck3 = 8740 } # Sinus Corinthius -> Gulf of Lepanto + link = { autogenerated = yes imp = 9270 ck3 = 874 } # Barakar -> Kukkutapada + link = { autogenerated = yes imp = 6443 ck3 = 8738 } # Sarygamysh -> Sarygamysh Lake + link = { autogenerated = yes imp = 1465 imp = 1466 ck3 = 8735 } # Palma, Guium -> Palma + link = { autogenerated = yes imp = 3529 ck3 = 8720 } # Rigomagus -> Barcelonnette + link = { autogenerated = yes imp = 2310 imp = 2308 ck3 = 8717 } # Cerebelliaca, Valentia -> Monteil + link = { autogenerated = yes imp = 4446 ck3 = 871 ck3 = 872 } # Campa -> Campa, Vikramasila + link = { autogenerated = yes imp = 4440 ck3 = 869 } # Pataliputra -> Maner + link = { autogenerated = yes imp = 2976 imp = 2975 imp = 2979 imp = 6457 imp = 6458 imp = 8798 ck3 = 8684 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, LAKE, LAKE, Indian Ocean -> Bay of Bengal + link = { autogenerated = yes imp = 2895 imp = 2899 imp = 2900 imp = 2901 ck3 = 8683 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Laccadive Sea + link = { autogenerated = yes imp = 2926 imp = 2860 imp = 2861 imp = 2862 ck3 = 8682 } # Mare Erythraeum, Gulf of Minnagara, Mare Erythraeum, Mare Erythraeum -> Arabian Sea + link = { autogenerated = yes imp = 2857 imp = 2854 ck3 = 8681 } # Mare Erythraeum, Rann of Kutch -> Arabian Sea + link = { autogenerated = yes imp = 2845 imp = 2842 imp = 2844 imp = 2847 ck3 = 8680 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea + link = { autogenerated = yes imp = 4445 ck3 = 868 } # Rajagagriha -> Rajagrha + link = { autogenerated = yes imp = 2811 imp = 2810 ck3 = 8679 } # Sinus Persicus, Sinus Persicus -> Persian Gulf + link = { autogenerated = yes imp = 2822 imp = 2812 imp = 2820 ck3 = 8678 } # Sinus Persicus, Sinus Persicus, Sinus Persicus -> Persian Gulf + link = { autogenerated = yes imp = 2791 imp = 2790 imp = 2792 imp = 2825 imp = 8748 imp = 8749 ck3 = 8676 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Oceanus, Oceanus -> Somali Sea + link = { autogenerated = yes imp = 2788 imp = 2786 ck3 = 8675 } # Mare Erythraeum, Sinus Adenensis -> Gulf of Aden + link = { autogenerated = yes imp = 2784 imp = 2785 ck3 = 8674 } # Sinus Adenensis, Sinus Adenensis -> Gulf of Aden + link = { autogenerated = yes imp = 1498 imp = 1484 imp = 1485 imp = 1486 imp = 1487 imp = 1497 imp = 1499 ck3 = 8673 } # Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus -> Red Sea + link = { autogenerated = yes imp = 2754 imp = 2734 imp = 2735 imp = 2744 ck3 = 8672 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea + link = { autogenerated = yes imp = 2759 imp = 2745 imp = 2746 imp = 2756 imp = 2760 imp = 2761 ck3 = 8671 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea + link = { autogenerated = yes imp = 2752 imp = 2748 ck3 = 8670 } # Palus Maeotica, Bosporus Cimmerius -> Kerch Strait + link = { autogenerated = yes imp = 4463 ck3 = 867 ck3 = 870 } # Malini -> Odantapuri, Bihar_Sharif + link = { autogenerated = yes imp = 2768 imp = 2742 imp = 2743 imp = 2747 imp = 2764 imp = 2765 imp = 2766 ck3 = 8669 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea + link = { autogenerated = yes imp = 2731 imp = 2770 imp = 8019 ck3 = 8668 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Bosporus + link = { autogenerated = yes imp = 2772 imp = 2773 imp = 2774 imp = 2775 imp = 2776 imp = 2777 imp = 2778 ck3 = 8667 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea + link = { autogenerated = yes imp = 2616 imp = 2621 imp = 8020 ck3 = 8665 } # Mare Thracum, Mare Aegaeum, Mare Thracum -> Dardanelles + link = { autogenerated = yes imp = 2672 imp = 2668 imp = 2671 imp = 2673 ck3 = 8664 } # Mare Phoenicium, Mare Aegyptium, Mare Phoenicium, Mare Aegyptium -> Levantine Sea + link = { autogenerated = yes imp = 2670 imp = 2664 imp = 2665 imp = 2666 ck3 = 8663 } # Mare Aegyptium, Mare Aegyptium, Mare Aegyptium, Mare Aegyptium -> Levantine Sea + link = { autogenerated = yes imp = 2678 imp = 2674 imp = 2675 imp = 2676 ck3 = 8662 } # Mare Lycium, Mare Internum, Mare Aegyptium, Mare Aegyptium -> Levantine Sea + link = { autogenerated = yes imp = 2596 imp = 2588 imp = 2589 imp = 2591 ck3 = 8661 } # Mare Aegyptium, Mare Lycium, Mare Lycium, Mare Lycium -> Levantine Sea + link = { autogenerated = yes imp = 2583 ck3 = 8660 } # Mare Phoenicium -> Coast of Syria + link = { autogenerated = yes imp = 7363 imp = 9274 ck3 = 866 } # Purulia, Ajodhya -> Baghmundi + link = { autogenerated = yes imp = 2577 ck3 = 8659 } # Mare Aegyptium -> Levantine Sea + link = { autogenerated = yes imp = 2611 imp = 2600 imp = 2610 imp = 4723 ck3 = 8658 } # Mare Ionium, Mare Aegyptium, Mare Ionium, Sinus Messenius -> Messenian Sea + link = { autogenerated = yes imp = 2657 imp = 2650 imp = 2654 imp = 2658 imp = 2659 ck3 = 8657 } # Mare Ionium, Mare Ionium, Mare Libycum, Mare Aegyptium, Mare Aegyptium -> Ionian Sea + link = { autogenerated = yes imp = 2653 imp = 2635 imp = 2637 imp = 2639 imp = 2640 imp = 2641 imp = 2652 imp = 2655 ck3 = 8656 } # Mare Libycum, Mare Libycum, Mare Libycum, Mare Ionium, Mare Libycum, Mare Libycum, Mare Ionium, Mare Ionium -> Ionian Sea + link = { autogenerated = yes imp = 2642 imp = 2571 imp = 2572 imp = 2573 imp = 2643 imp = 2644 imp = 2645 ck3 = 8655 } # Mare Libycum, Syrtis Maior, Syrtis Maior, Syrtis Maior, Syrtis Maior, Syrtis Maior, Mare Libycum -> Gulf of Sidra + link = { autogenerated = yes imp = 2634 imp = 2569 imp = 2570 imp = 2632 imp = 2636 ck3 = 8654 } # Mare Libycum, Mare Libycum, Mare Libycum, Mare Libycum, Mare Libycum -> Coast of Tripoli + link = { autogenerated = yes imp = 2647 imp = 2501 imp = 2510 imp = 2514 imp = 2518 imp = 2638 imp = 2651 ck3 = 8653 } # Mare Ionium, Fretum Siculum, Mare Ionium, Mare Ionium, Mare Ionium, Mare Ionium, Mare Ionium -> Ionian Sea + link = { autogenerated = yes imp = 2545 imp = 2534 imp = 2535 imp = 2536 ck3 = 8652 } # Mare Superum, Mare Superum, Mare Superum, Mare Superum -> Adriatic Sea + link = { autogenerated = yes imp = 2531 imp = 2530 imp = 2532 imp = 2544 ck3 = 8651 } # Mare Superum, Sinus Sipontinus, Mare Superum, Mare Superum -> Adriatic Sea + link = { autogenerated = yes imp = 2540 imp = 2512 imp = 2526 imp = 2527 imp = 2528 imp = 6357 imp = 6358 ck3 = 8650 } # Mare Superum, Sinus Liburnus, Sinus Liburnus, Mare Superum, Mare Superum, LAKE, LAKE -> Adriatic Sea + link = { autogenerated = yes imp = 7177 ck3 = 865 } # Tamralipti -> Dantan + link = { autogenerated = yes imp = 2539 imp = 2508 imp = 2509 ck3 = 8649 } # Mare Superum, Mare Superum, Mare Superum -> Adriatic Sea + link = { autogenerated = yes imp = 2631 imp = 2565 imp = 2566 imp = 2567 imp = 2568 imp = 2626 imp = 2628 ck3 = 8648 } # Mare Libycum, Fretum Siculum, Sinus Neapolitanus, Mare Libycum, Syrtis Minor, Mare Libycum, Mare Libycum -> Gulf of Gabes + link = { autogenerated = yes imp = 2564 imp = 2624 imp = 2687 imp = 6319 ck3 = 8647 } # Sinus Uticensis, Fretum Siculum, Mare Tyrrhenum, LAKE -> Gulf of Tunis + link = { autogenerated = yes imp = 2683 imp = 2682 imp = 2684 imp = 2685 imp = 2686 ck3 = 8646 } # Mare Tyrrhenum, Mare Tyrrhenum, Mare Tyrrhenum, Mare Tyrrhenum, Mare Tyrrhenum -> Tyrrhenian Sea + link = { autogenerated = yes imp = 2681 imp = 2502 imp = 2505 ck3 = 8645 } # Mare Tyrrhenum, Sinus Paestanus, Mare Tyrrhenum -> Tyrrhenian Sea + link = { autogenerated = yes imp = 2701 imp = 2563 ck3 = 8644 } # Mare Internum, Sinus Hipponensis -> Punic Sea + link = { autogenerated = yes imp = 2688 ck3 = 8643 } # Mare Sardoum -> Coast of Sardinia + link = { autogenerated = yes imp = 2702 imp = 2703 ck3 = 8642 } # Mare Internum, Mare Sardoum -> Punic Sea + link = { autogenerated = yes imp = 2560 imp = 2724 imp = 2726 ck3 = 8641 } # Mare Hibericum, Mare Hibericum, Mare Hibericum -> Coast of Algier + link = { autogenerated = yes imp = 2711 imp = 2713 imp = 2720 ck3 = 8640 } # Mare Sardoum, Mare Sardoum, Mare Sardoum -> Balearic Sea + link = { autogenerated = yes imp = 7796 ck3 = 864 } # Bidyadhari -> Chandraketugarh + link = { autogenerated = yes imp = 2708 imp = 2706 imp = 2709 imp = 2712 imp = 2714 ck3 = 8639 } # Mare Sardoum, Mare Sardoum, Mare Sardoum, Mare Sardoum, Mare Sardoum -> Balearic Sea + link = { autogenerated = yes imp = 2692 ck3 = 8638 } # Mare Sardoum -> Ligurian Sea + link = { autogenerated = yes imp = 2691 ck3 = 8637 } # Mare Tyrrhenum -> Strait of Bonifacio + link = { autogenerated = yes imp = 2693 imp = 2546 ck3 = 8636 } # Mare Tyrrhenum, Mare Tyrrhenum -> Corsica Channel + link = { autogenerated = yes imp = 2694 imp = 2696 ck3 = 8635 } # Mare Ligusticum, Mare Ligusticum -> Ligurian Sea + link = { autogenerated = yes imp = 2715 imp = 2553 ck3 = 8634 } # Mare Balearium, Mare Internum -> Coast of Barcelona + link = { autogenerated = yes imp = 2523 imp = 8037 ck3 = 8633 } # Mare Hibericum, Iberus -> Coast of Tarragona + link = { autogenerated = yes imp = 2719 ck3 = 8632 } # Mare Balearium -> Balearic Sea + link = { autogenerated = yes imp = 2718 ck3 = 8631 } # Mare Hibericum -> Balearic Sea + link = { autogenerated = yes imp = 2722 imp = 2721 ck3 = 8630 } # Mare Balearium, Mare Balearium -> Balearic Sea + link = { autogenerated = yes imp = 2723 ck3 = 8629 } # Mare Hibericum -> Balearic Sea + link = { autogenerated = yes imp = 2525 imp = 2725 ck3 = 8628 } # Mare Hibericum, Mare Hibericum -> Coast of Murcia + link = { autogenerated = yes imp = 2554 ck3 = 8627 } # Mare Hibericum -> Alboran Sea + link = { autogenerated = yes imp = 2729 imp = 2555 imp = 2556 imp = 2557 ck3 = 8626 } # Mare Hibericum, Mare Hibericum, Mare Hibericum, Mare Hibericum -> Alboran Sea + link = { autogenerated = yes imp = 4747 imp = 4744 imp = 4746 imp = 5683 imp = 5685 imp = 5688 imp = 5689 ck3 = 8623 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> The Atlantic + link = { autogenerated = yes imp = 8278 imp = 8279 ck3 = 8621 } # Oceanus Atlanticus, Oceanus Atlanticus -> Coast of Morocco + link = { autogenerated = yes imp = 4722 imp = 4589 imp = 4594 imp = 4595 imp = 4596 imp = 4597 ck3 = 8620 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Gulf of Cadiz + link = { autogenerated = yes imp = 7393 ck3 = 862 ck3 = 863 } # Kasipur -> Sagardwip, Chatrabhog + link = { autogenerated = yes imp = 4592 imp = 4726 imp = 4728 imp = 4729 ck3 = 8619 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Coast of Portugal + link = { autogenerated = yes imp = 5674 imp = 5670 imp = 5671 imp = 7741 ck3 = 8618 } # Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Garumna -> Bay of Biscay + link = { autogenerated = yes imp = 7493 ck3 = 861 } # Varendra -> Pabna + link = { autogenerated = yes imp = 9234 ck3 = 8603 } # $PROV7783$ -> Brahmaputra River + link = { autogenerated = yes imp = 9224 imp = 9225 ck3 = 8602 } # $PROV7701$, $PROV7701$ -> Ganges River + link = { autogenerated = yes imp = 6002 ck3 = 86 } # Guthisbo -> GOINGE + link = { autogenerated = yes imp = 9222 ck3 = 8598 } # Godavari -> Godavari River + link = { autogenerated = yes imp = 9221 ck3 = 8597 } # Godavari -> Godavari River + link = { autogenerated = yes imp = 9215 imp = 9216 ck3 = 8596 } # Cauvery, Cauvery -> Kaveri River + link = { autogenerated = yes imp = 9214 imp = 9212 imp = 9213 ck3 = 8595 } # Cauvery, Cauvery, Cauvery -> Kaveri River + link = { autogenerated = yes imp = 9211 ck3 = 8593 } # Tapi -> Tapti River + link = { autogenerated = yes imp = 9204 imp = 9203 ck3 = 8591 } # Satluj, Satluj -> Sutlej River + link = { autogenerated = yes imp = 9202 imp = 9205 ck3 = 8590 } # Satluj, Chenab -> Sutlej River + link = { autogenerated = yes imp = 9201 ck3 = 8589 } # $PROV7692$ -> Indus River + link = { autogenerated = yes imp = 9199 imp = 9200 ck3 = 8588 } # $PROV7692$, $PROV7692$ -> Indus River + link = { autogenerated = yes imp = 8042 imp = 8043 ck3 = 8585 } # Tanais, Tanais -> Don River + link = { autogenerated = yes imp = 8582 ck3 = 8584 } # $PROV8042$ -> Don River + link = { autogenerated = yes imp = 8585 ck3 = 8583 } # $PROV8042$ -> Don River + link = { autogenerated = yes imp = 7329 ck3 = 858 } # Chandraketugarh -> Kumarhati + link = { autogenerated = yes imp = 8580 imp = 8579 ck3 = 8568 } # $PROV8578$, $PROV8578$ -> Desna River + link = { autogenerated = yes imp = 8573 imp = 8572 ck3 = 8565 } # $PROV7871$, $PROV7871$ -> Dnieper River + link = { autogenerated = yes imp = 6355 ck3 = 8564 } # Borysthenes -> Dnieper River + link = { autogenerated = yes imp = 7875 imp = 7876 imp = 7877 ck3 = 8563 } # Borysthenes, Borysthenes, Borysthenes -> Dnieper River + link = { autogenerated = yes imp = 7883 ck3 = 8561 } # Tyras -> Dniester River + link = { autogenerated = yes imp = 9189 imp = 9188 ck3 = 8560 } # $PROV7773$, $PROV7773$ -> Danube River + link = { autogenerated = yes imp = 7336 imp = 7358 imp = 7397 ck3 = 856 } # Selampoura, Khulna, Jessore -> Santipura + link = { autogenerated = yes imp = 1489 ck3 = 8525 } # Fretum Diodorus -> LAKE_GHOUBET + link = { autogenerated = yes imp = 8745 ck3 = 8523 } # Lake Abbe -> LAKE_ABHE + link = { autogenerated = yes imp = 7494 ck3 = 852 } # Durgapur -> Nasirabad + link = { autogenerated = yes imp = 8721 ck3 = 8519 } # Lake Tana -> LAKE_TANA + link = { autogenerated = yes imp = 7490 ck3 = 851 } # Nagarpur -> Dhakeshwari_Jatiya_Mandir + link = { autogenerated = yes imp = 8704 ck3 = 8509 } # Apocopa -> BARBACADLE + link = { autogenerated = yes imp = 8673 imp = 8672 imp = 8674 imp = 8696 imp = 9133 ck3 = 8502 } # Gidheys, Suuqsade, Seeto, Xood, Somali Impassable -> SHEIKH + link = { autogenerated = yes imp = 7496 ck3 = 850 } # Bhaluka -> Bokainagar + link = { autogenerated = yes imp = 7325 ck3 = 846 ck3 = 848 } # Pundra -> Mahasthangarh, Somapur + link = { autogenerated = yes imp = 7531 imp = 7528 imp = 8679 ck3 = 8432 } # Pano, Opone, Bandarbeyla -> RAS_HAFUN + link = { autogenerated = yes imp = 7526 imp = 7525 imp = 7529 imp = 8680 ck3 = 8431 } # Aromata, Elephanton Limen, Yehta, Mudun -> GARDAFUUL + link = { autogenerated = yes imp = 4447 ck3 = 843 } # Kajangala -> Agmahl + link = { autogenerated = yes imp = 8686 ck3 = 8429 } # Kalabeyr -> EL-AYO + link = { autogenerated = yes imp = 7524 ck3 = 8426 } # Macajilayn -> LAAS_QORAY + link = { autogenerated = yes imp = 8683 imp = 7523 imp = 7533 imp = 8684 imp = 8692 ck3 = 8425 } # Ceerigabo, Moundou, Salweyn, Jidali, Mosylon Mountains -> MAIT + link = { autogenerated = yes imp = 7327 ck3 = 842 } # Karnasuvarna -> Raktamrittika + link = { autogenerated = yes imp = 7324 ck3 = 841 ck3 = 847 } # Balipura -> Devkot, Ghoraghat + link = { autogenerated = yes imp = 8668 imp = 8669 imp = 8670 imp = 8677 ck3 = 8405 } # Bagan, Barkhadle, Hargeysa, Goyar -> HARGEISA + link = { autogenerated = yes imp = 7521 ck3 = 8400 ck3 = 8398 } # Aualites -> ZAILA, ABASA + link = { autogenerated = yes imp = 7335 imp = 7499 ck3 = 840 } # Souannagoura, Porsha -> Ramavati + link = { autogenerated = yes imp = 3863 ck3 = 84 } # Avionia Minor -> HUSUMBRO + link = { autogenerated = yes imp = 7520 ck3 = 8399 } # Anchitaia -> GHOUBET + link = { autogenerated = yes imp = 7497 ck3 = 839 } # Puthia -> Rampur_Boalia + link = { autogenerated = yes imp = 7326 ck3 = 837 ck3 = 838 } # Kotivarsa -> Gaur, Hazrat_Pandua + link = { autogenerated = yes imp = 7357 ck3 = 836 } # Kotta -> Ishwaripur + link = { autogenerated = yes imp = 7396 ck3 = 835 } # Bagerhat -> Bagerhat + link = { autogenerated = yes imp = 8731 ck3 = 8343 } # Yoboki -> MORA-AWSSA + link = { autogenerated = yes imp = 7518 ck3 = 8341 ck3 = 8342 } # Deire -> AWBUK, TADJOURA + link = { autogenerated = yes imp = 7516 imp = 7517 ck3 = 8340 } # Smyrnophoros Chora, Arsinoe -> ASSAB + link = { autogenerated = yes imp = 7547 ck3 = 8332 } # Undulli -> EDD + link = { autogenerated = yes imp = 7548 ck3 = 8331 } # Thio -> EDD-NORTH + link = { autogenerated = yes imp = 8722 imp = 8730 ck3 = 8312 } # Weyto, Gondar -> GONDAR + link = { autogenerated = yes imp = 7538 ck3 = 8311 } # Agawe -> GOUZARA + link = { autogenerated = yes imp = 8651 ck3 = 8307 ck3 = 8313 ck3 = 8314 } # Uacne -> DEMBIYA, GALILA, UPPER_DINDER + link = { autogenerated = yes imp = 7537 ck3 = 8306 } # Roza -> BELASA + link = { autogenerated = yes imp = 7539 ck3 = 8305 ck3 = 8304 } # D'bark -> FALASHA, SEMIEN + link = { autogenerated = yes imp = 8649 imp = 7536 ck3 = 8303 } # Haria, Gwara -> KOSOGE + link = { autogenerated = yes imp = 8650 imp = 8647 imp = 8648 ck3 = 8302 } # Maganan, Tawirda, Gherma -> WEGERA + link = { autogenerated = yes imp = 7544 ck3 = 8301 ck3 = 8336 } # Karmille -> LALIBELA, DABAHU + link = { autogenerated = yes imp = 7401 ck3 = 830 } # Ramgati -> Pattikera + link = { autogenerated = yes imp = 7545 ck3 = 8299 ck3 = 8300 } # Awash -> ADAFA, DOBA + link = { autogenerated = yes imp = 7511 ck3 = 8298 ck3 = 8308 ck3 = 8309 } # Roha -> LASTA, ANGOT, BEGEMDIR + link = { autogenerated = yes imp = 7512 imp = 8655 ck3 = 8297 } # Muchera, Gijet -> TEKEZE + link = { autogenerated = yes imp = 7505 ck3 = 8296 } # Yeha -> QIHA + link = { autogenerated = yes imp = 7514 imp = 7508 ck3 = 8295 } # Esheta, Uikra -> INTARTA + link = { autogenerated = yes imp = 7510 ck3 = 8294 } # Adi Gelamo -> WIQRO + link = { autogenerated = yes imp = 8654 imp = 8652 imp = 8656 ck3 = 8293 } # Seglamen, Enda Cherqos, Tembien -> JOHA + link = { autogenerated = yes imp = 8646 imp = 8645 ck3 = 8292 } # Metemmeh, Boval -> WALDABBA + link = { autogenerated = yes imp = 651 imp = 7540 imp = 7593 ck3 = 8291 } # Sumita, Shire, Tanachtala -> TIGRE + link = { autogenerated = yes imp = 8653 imp = 7506 imp = 7509 ck3 = 8289 } # Mai Adrasha, Aksum, Sazila -> AKSUM + link = { autogenerated = yes imp = 7549 ck3 = 8287 ck3 = 8330 } # Ras Andada -> BUR, SAHO + link = { autogenerated = yes imp = 7507 ck3 = 8286 } # Oreine -> BURI + link = { autogenerated = yes imp = 8661 imp = 8657 imp = 8659 imp = 8660 imp = 8693 ck3 = 8285 } # Debarwa, Tsirhan, Sembel, Adi Ugri, Ethiopian Mountains -> SHIMAZANA + link = { autogenerated = yes imp = 7504 ck3 = 8284 } # Qohaito -> QOHAITO + link = { autogenerated = yes imp = 8665 imp = 5972 ck3 = 8283 } # Tokore, Ona Mountains -> SERAYE + link = { autogenerated = yes imp = 8742 imp = 7515 imp = 8662 imp = 8719 ck3 = 8282 } # Gher, Naamen, Taille, Somali Desert -> HAMASEN + link = { autogenerated = yes imp = 7502 ck3 = 8280 ck3 = 8281 } # Alalaiou -> DAHLAK_KEBIR, GIMHILE + link = { autogenerated = yes imp = 7331 ck3 = 828 ck3 = 829 ck3 = 8722 } # Chittagong -> Chatigama, Candranatha, Karnaphuli + link = { autogenerated = yes imp = 7503 ck3 = 8279 } # Adouli -> DEHONO + link = { autogenerated = yes imp = 7550 ck3 = 8278 } # Imberimi -> MASSAWA + link = { autogenerated = yes imp = 7495 ck3 = 824 ck3 = 825 } # Egarosindur -> Jangalbari, Habiganj + link = { autogenerated = yes imp = 7339 ck3 = 820 ck3 = 819 } # Pragjyotishpura -> Kamakhya, Sri_Surya_Pahar + link = { autogenerated = yes imp = 7654 imp = 7655 ck3 = 818 } # Thakurgaon, Siliguri -> Bhitagarh + link = { autogenerated = yes imp = 7652 ck3 = 817 ck3 = 9134 ck3 = 9137 } # Gosanimari -> Nalrajar_Garh, Kalimpong, Paro + link = { autogenerated = yes imp = 7343 ck3 = 816 } # Dhuburi -> Dhubri + link = { autogenerated = yes imp = 7348 ck3 = 815 ck3 = 823 } # Davaka -> Pragyotisapura, Oddiyana2 + link = { autogenerated = yes imp = 7342 ck3 = 814 } # Hajo -> Manikuta + link = { autogenerated = yes imp = 3878 ck3 = 81 } # Cimbria Centralis -> AALBORG + link = { autogenerated = yes imp = 7351 ck3 = 809 ck3 = 812 ck3 = 9158 } # Japa -> Ghuguha_Dol, Narayanpur, Ziro + link = { autogenerated = yes imp = 2132 ck3 = 8 } # Orcades -> KIRKWALL + link = { autogenerated = yes imp = 8763 ck3 = 7976 ck3 = 7977 } # Yancheng -> Toksu, Shayar + link = { autogenerated = yes imp = 7184 ck3 = 7974 ck3 = 7975 } # Kuche -> Jigdalik, Duldulokur + link = { autogenerated = yes imp = 8762 ck3 = 7973 } # Xayar -> Stwerap + link = { autogenerated = yes imp = 5665 ck3 = 7971 } # Hotan -> Tumshuk + link = { autogenerated = yes imp = 8757 ck3 = 7972 } # Chigu -> Uch_TARIM + link = { autogenerated = yes imp = 6755 ck3 = 7970 } # Kumo -> Barchuk + link = { autogenerated = yes imp = 8761 imp = 5377 ck3 = 7969 } # Tumxuk, IP 378 -> Maralbeshi + link = { autogenerated = yes imp = 6754 imp = 6753 ck3 = 7968 } # Kagra, Toksa -> Atus + link = { autogenerated = yes imp = 6758 imp = 6772 ck3 = 7962 } # Surkhab, Irkeshtam -> Kona_Xahar + link = { autogenerated = yes imp = 6761 ck3 = 7961 } # Kasia -> Yengi_Xahar + link = { autogenerated = yes imp = 8760 imp = 8759 ck3 = 7960 } # Tageairike, Makit -> Yopurga + link = { autogenerated = yes imp = 6746 ck3 = 7959 } # Shaju -> Makit + link = { autogenerated = yes imp = 6771 ck3 = 7958 } # Kezhen -> Yengisar + link = { autogenerated = yes imp = 3810 imp = 7361 ck3 = 7947 } # Embadina, Salutara -> Waihind + link = { autogenerated = yes imp = 7151 ck3 = 7935 ck3 = 1254 } # Vairagara -> Gondia, Vairagara + link = { autogenerated = yes imp = 7130 ck3 = 7934 ck3 = 3991 ck3 = 7932 } # Bhilapura -> Nandgram, Shivapura, Lanjika + link = { autogenerated = yes imp = 7132 ck3 = 7933 } # Rapsakpur -> Mungeli + link = { autogenerated = yes imp = 7451 imp = 7067 ck3 = 7931 } # Seoni, Ramagiri -> Seoni + link = { autogenerated = yes imp = 7076 ck3 = 7929 } # Bhaddavati -> Nagpur + link = { autogenerated = yes imp = 7094 ck3 = 7928 } # Fanindrapura -> Kundina + link = { autogenerated = yes imp = 7162 ck3 = 7927 } # Yetavana -> Wun + link = { autogenerated = yes imp = 7157 ck3 = 7926 } # Mahur -> Kalam + link = { autogenerated = yes imp = 7121 imp = 7075 ck3 = 7925 } # Audabaravati, Bhojakata -> Amraoti + link = { autogenerated = yes imp = 7124 ck3 = 7922 ck3 = 7923 } # Dhamna -> Kerimeri, Mancherial + link = { autogenerated = yes imp = 7163 ck3 = 7921 } # Aggathana -> Mahur + link = { autogenerated = yes imp = 7158 ck3 = 7920 } # Indur -> Nirmal + link = { autogenerated = yes imp = 7165 imp = 7079 ck3 = 7919 } # Minagana, Potana -> Bhainsa + link = { autogenerated = yes imp = 7164 imp = 7161 ck3 = 7918 } # Visakpura, Darur -> Sindkhed + link = { autogenerated = yes imp = 7046 ck3 = 7916 } # Alosgyni -> Draksharama + link = { autogenerated = yes imp = 7123 ck3 = 7913 ck3 = 7915 } # Alatnapura -> Bhadracala, Chutur + link = { autogenerated = yes imp = 7054 ck3 = 7911 } # Guntupalli -> Polavaram + link = { autogenerated = yes imp = 7056 ck3 = 7910 } # Gummididurru -> Palwancha + link = { autogenerated = yes imp = 7055 imp = 7058 ck3 = 7909 } # Pravarapura, Kondapuram -> Vinukonda + link = { autogenerated = yes imp = 7150 ck3 = 7907 } # Anumapala -> Kaulas + link = { autogenerated = yes imp = 7053 ck3 = 7901 } # Sannathi -> Gulbarga + link = { autogenerated = yes imp = 7064 ck3 = 7900 } # Pitangalva -> Jhodga + link = { autogenerated = yes imp = 6006 ck3 = 79 ck3 = 80 ck3 = 8726 } # Borgamo -> RONNEBY, AVASKAR, Torsas + link = { autogenerated = yes imp = 7093 ck3 = 7898 } # Tiyagoura -> Ankai + link = { autogenerated = yes imp = 7101 ck3 = 7897 } # Maharatthalava -> Seunapura + link = { autogenerated = yes imp = 7144 ck3 = 7896 } # Lattalura -> Qandhar + link = { autogenerated = yes imp = 7146 ck3 = 7894 ck3 = 7895 } # Asmakhala -> Bhid, Darur + link = { autogenerated = yes imp = 7102 imp = 7074 ck3 = 7893 } # Gurala, Pattithana -> Ahmadnagar + link = { autogenerated = yes imp = 7078 ck3 = 7892 } # Tagara -> Ausa + link = { autogenerated = yes imp = 7127 ck3 = 7891 } # Trinagua -> Purnagiri + link = { autogenerated = yes imp = 7105 ck3 = 7889 } # Siddhatek -> Patkapur + link = { autogenerated = yes imp = 7103 imp = 7060 ck3 = 7888 } # Godavara, Kondane -> Jirnanagara + link = { autogenerated = yes imp = 7092 ck3 = 7886 ck3 = 7887 } # Katriyal -> Bagavadi, Kembavi + link = { autogenerated = yes imp = 7110 ck3 = 7885 } # Vayapata -> Vijayapura_bis + link = { autogenerated = yes imp = 7107 ck3 = 7883 ck3 = 7884 } # Jayatnagar -> Miraj, Hastikundi + link = { autogenerated = yes imp = 7112 ck3 = 7882 } # Pandaprata -> Karhada + link = { autogenerated = yes imp = 7106 ck3 = 7881 ck3 = 7890 } # Buravhala -> Pundarika, Sholapur + link = { autogenerated = yes imp = 7061 ck3 = 7880 ck3 = 7940 } # Valuraka -> Bhimashankara, Western Ghats (NS) + link = { autogenerated = yes imp = 7059 ck3 = 7879 } # Karahataka -> Karahataka + link = { autogenerated = yes imp = 7072 ck3 = 7875 ck3 = 7876 } # Palkigunda -> Vankapura, Anegandi + link = { autogenerated = yes imp = 7088 imp = 9285 ck3 = 7873 } # Akkilur, Jungle -> Hangal + link = { autogenerated = yes imp = 7090 ck3 = 7872 } # Panapala -> Hubli + link = { autogenerated = yes imp = 7108 ck3 = 7871 } # Athani -> Keladi + link = { autogenerated = yes imp = 7089 ck3 = 7870 ck3 = 7939 } # Hippokoura -> Belgaum, Western Ghats (M) + link = { autogenerated = yes imp = 7004 imp = 7018 ck3 = 7867 } # Andalapura, Kodava -> Sosavur + link = { autogenerated = yes imp = 7011 ck3 = 7866 } # Triparvata -> Shravana_Belgola + link = { autogenerated = yes imp = 7022 ck3 = 7865 } # Belgola -> Belapura + link = { autogenerated = yes imp = 7007 ck3 = 7864 } # Nandagiri -> Parivi + link = { autogenerated = yes imp = 7036 ck3 = 7863 } # Huliyar -> Honnavalli + link = { autogenerated = yes imp = 7010 ck3 = 7862 } # Paravipura -> Hemavati + link = { autogenerated = yes imp = 7005 ck3 = 7860 } # Brahmagiri -> Nidugallu + link = { autogenerated = yes imp = 7071 ck3 = 7859 } # Gavimath -> Kampili + link = { autogenerated = yes imp = 7006 imp = 7073 ck3 = 7858 } # Uccasrngi, Siddapura -> Vijayanagara + link = { autogenerated = yes imp = 7047 ck3 = 7857 } # Yerraguddi -> Gutti + link = { autogenerated = yes imp = 7021 imp = 9283 ck3 = 7856 } # Suvarnagiri, Jungle -> Adavani + link = { autogenerated = yes imp = 7069 ck3 = 7855 } # Rajula -> Adoni + link = { autogenerated = yes imp = 7038 ck3 = 7852 ck3 = 7861 } # Chandravalli -> Arka, Basavapattana + link = { autogenerated = yes imp = 7016 ck3 = 7847 ck3 = 7848 ck3 = 7938 } # Sriringapatna -> Mercara, Moyar, Western Ghats (S) + link = { autogenerated = yes imp = 7050 ck3 = 7845 } # Kuromolinava -> Bhairavunikonda + link = { autogenerated = yes imp = 7026 imp = 9284 ck3 = 7844 } # Kadapa, Jungle -> Ahobalam + link = { autogenerated = yes imp = 7043 imp = 7013 ck3 = 7842 } # Mallayapalam, Srisailam -> Addanki + link = { autogenerated = yes imp = 7048 ck3 = 7841 ck3 = 7905 } # Sriparvata -> Sriparvata, Devarakonda + link = { autogenerated = yes imp = 7051 ck3 = 7840 ck3 = 7843 } # Kadinava -> Ittagi, Mudivemu + link = { autogenerated = yes imp = 7049 ck3 = 7839 ck3 = 7904 } # Naconda -> Pondugala, Nalgonda + link = { autogenerated = yes imp = 6935 imp = 6932 imp = 6933 ck3 = 7838 } # Chaberis, Koroula, Karmara -> Nagapattinam + link = { autogenerated = yes imp = 6936 imp = 6934 ck3 = 7837 } # Karige, Abour -> Gangaikondacolapuram + link = { autogenerated = yes imp = 6992 imp = 6928 ck3 = 7836 } # Argaru, Thanjavur -> Kannanur_2 + link = { autogenerated = yes imp = 6994 ck3 = 7835 } # Nadhapura -> Tirukoilur + link = { autogenerated = yes imp = 6930 imp = 6991 imp = 5310 ck3 = 7834 } # Karafur, Karoura, IP 311 -> Srirangam + link = { autogenerated = yes imp = 6993 imp = 5312 ck3 = 7833 } # Kolinah, IP 313 -> Kelrayan + link = { autogenerated = yes imp = 6987 ck3 = 7832 } # Colapattinam -> Jinji + link = { autogenerated = yes imp = 6986 ck3 = 7831 } # Sopattinam -> Uttaramerur + link = { autogenerated = yes imp = 6996 imp = 6988 ck3 = 7830 } # Tiruvannamalai, Koval -> Tiruvannamalai + link = { autogenerated = yes imp = 6995 imp = 5313 ck3 = 7829 } # Chengam, Eastern Ghats -> Kudalasangama_bis + link = { autogenerated = yes imp = 6985 imp = 6984 ck3 = 7827 } # Mavilankai, Kancipuram -> Mamallapuram + link = { autogenerated = yes imp = 7000 imp = 6983 ck3 = 7826 } # Tondana, Arkatapura -> Takkaloma + link = { autogenerated = yes imp = 7032 ck3 = 7824 ck3 = 7828 } # Tiruperur -> Muluvagil, Kuvalala + link = { autogenerated = yes imp = 7031 ck3 = 7823 } # Kuvalalapura -> Nangali + link = { autogenerated = yes imp = 7008 ck3 = 7822 } # Chintamani -> Nandi + link = { autogenerated = yes imp = 6998 ck3 = 7821 } # Gudimallam -> Kalahasti + link = { autogenerated = yes imp = 7028 ck3 = 7820 ck3 = 7825 } # Tirumala -> Melpadi, Padaividu + link = { autogenerated = yes imp = 7025 ck3 = 7819 } # Rayachoti -> Mangalavada + link = { autogenerated = yes imp = 7027 ck3 = 7818 } # Rapur -> Vallurapura + link = { autogenerated = yes imp = 7034 ck3 = 7816 ck3 = 7817 } # Kadiri -> Anantapur, Puspagiri + link = { autogenerated = yes imp = 7024 ck3 = 7815 } # Mangalavada -> Togarakunta + link = { autogenerated = yes imp = 6901 imp = 6911 ck3 = 7814 } # Balita, Aykudi -> Kottar + link = { autogenerated = yes imp = 6903 imp = 6902 ck3 = 7813 } # Curana, Komari -> Kayal + link = { autogenerated = yes imp = 6912 imp = 6913 imp = 6922 ck3 = 7812 } # Kolkoi, Tamraparni, Vilath -> Korkai + link = { autogenerated = yes imp = 6920 imp = 6918 ck3 = 7811 } # Malayana, Karivala -> Sivakasi + link = { autogenerated = yes imp = 6923 ck3 = 7810 } # Kamai -> Virudhukkalvetti + link = { autogenerated = yes imp = 6915 ck3 = 7809 } # Koti -> Rameshvaram + link = { autogenerated = yes imp = 6948 imp = 6925 ck3 = 7808 } # Codasi, Akour -> Sivaganga + link = { autogenerated = yes imp = 6926 imp = 6927 ck3 = 7807 } # Bata Pandiya, Urayur -> Uraiyur + link = { autogenerated = yes imp = 6947 imp = 6942 ck3 = 7806 } # Kodumbalur, Mohur -> Dindigul + link = { autogenerated = yes imp = 6945 imp = 6938 imp = 6939 ck3 = 7805 } # Kilandha, Karur, Chavadi -> Tiruppur + link = { autogenerated = yes imp = 6940 imp = 6949 ck3 = 7804 } # Korelloura, Kongu -> Kovai + link = { autogenerated = yes imp = 6898 imp = 6909 ck3 = 7803 } # Bacare, Tropiana -> Kollam + link = { autogenerated = yes imp = 6896 imp = 6895 imp = 6897 imp = 6904 ck3 = 7802 } # Pseudostomos, Muziris, Nelcynda, Aloe -> Kottayam + link = { autogenerated = yes imp = 6905 imp = 6894 imp = 6916 imp = 6906 ck3 = 7801 } # Kalakaris, Koreoura, Vanci, Eyyal -> Kunjakari + link = { autogenerated = yes imp = 6907 imp = 6944 imp = 6908 ck3 = 7800 } # Podoperoura, Vellalore, Paloura -> Palakkad + link = { autogenerated = yes imp = 6005 ck3 = 78 ck3 = 87 } # Vang -> BREGNE, LISTER + link = { autogenerated = yes imp = 6892 imp = 6910 ck3 = 7799 } # Coula, Tandi -> Malappuram + link = { autogenerated = yes imp = 6889 imp = 6888 ck3 = 7798 } # Mousopalle, Nitra -> Kannanur + link = { autogenerated = yes imp = 6886 imp = 6891 imp = 7023 ck3 = 7797 } # Olokhoira, Basai, Srnguri -> Mangalur + link = { autogenerated = yes imp = 6883 imp = 6882 ck3 = 7795 } # Aegidi, Toparon -> Hinawr + link = { autogenerated = yes imp = 6879 ck3 = 7794 } # Pisauta -> Panaji + link = { autogenerated = yes imp = 6876 imp = 6877 imp = 6878 ck3 = 7793 } # Palaipatmai, Milzigeris, Yakaris -> Kollapura + link = { autogenerated = yes imp = 6874 imp = 6875 ck3 = 7792 } # Mandagara, Etuca -> Chiplun + link = { autogenerated = yes imp = 6873 ck3 = 7791 } # Semylla -> Dabhol + link = { autogenerated = yes imp = 6871 imp = 6872 ck3 = 7790 } # Dounga, Lonavli -> Chaul + link = { autogenerated = yes imp = 6867 imp = 6870 ck3 = 7789 } # Kalyana, Kalliena -> Ambaranatha + link = { autogenerated = yes imp = 6004 ck3 = 77 } # Burgundarholm -> RONNE + link = { autogenerated = yes imp = 1882 imp = 8022 ck3 = 762 } # Adana, Cilician Gates -> Adana + link = { autogenerated = yes imp = 1887 ck3 = 761 } # Soloi -> Tarsus + link = { autogenerated = yes imp = 1951 ck3 = 760 } # Tyana -> Tyana + link = { autogenerated = yes imp = 1890 imp = 1897 ck3 = 758 } # Holmoi, Kelenderis -> Seleukia + link = { autogenerated = yes imp = 330 imp = 331 ck3 = 757 } # Karpasia, Salamis Kyprias -> Famagusta + link = { autogenerated = yes imp = 7990 imp = 7989 ck3 = 756 } # Kourion, Trogodos Mons -> Limisol + link = { autogenerated = yes imp = 7956 imp = 165 imp = 166 imp = 7952 ck3 = 755 } # Ariassos, Olbia Pamphylias, Perge, Kretopolis Mountains -> Attaleia + link = { autogenerated = yes imp = 1936 imp = 1933 imp = 7759 ck3 = 754 } # Apamea Cibotus, Konane, (Unknown) -> Sozopolis + link = { autogenerated = yes imp = 195 ck3 = 753 } # Malos -> Ankyra + link = { autogenerated = yes imp = 1913 imp = 7981 ck3 = 752 } # Sakoena, Androna -> Galatia + link = { autogenerated = yes imp = 1814 imp = 1815 imp = 7921 ck3 = 751 } # Stephane, Abonouteichos, Sinope Mountains -> Paphlagonia + link = { autogenerated = yes imp = 247 imp = 7919 ck3 = 750 } # Pythopolis, Pythopolis Mountains -> Nikaea + link = { autogenerated = yes imp = 315 imp = 8061 ck3 = 749 } # Dorylaion, Dorylaion Mons -> Dorylaion + link = { autogenerated = yes imp = 1952 imp = 1948 imp = 7938 imp = 7941 imp = 7756 imp = 7757 ck3 = 748 } # Aphrodisias, Diospolis Lykou, Bargasa, Kranaos, Kadmons Mons, (Unknown) -> Laodikeia + link = { autogenerated = yes imp = 1981 imp = 7934 imp = 7935 imp = 7930 ck3 = 747 } # Halikarnassos, Keramos, Bargylia, Halikarnassos Mountains -> Halikarnassos + link = { autogenerated = yes imp = 1972 imp = 1969 imp = 290 imp = 294 ck3 = 746 } # Priene, Magnesia pros Maiandro, Ephesos, Larisa Ionias -> Ephesos + link = { autogenerated = yes imp = 287 imp = 296 imp = 7754 ck3 = 745 } # Smyrna, Magnesia, Sipylos Mons -> Smyrna + link = { autogenerated = yes imp = 261 imp = 257 imp = 262 imp = 267 imp = 268 imp = 7909 imp = 7910 ck3 = 744 } # Abydos, Ilion, Kolonai, Kale Peuke, Skepsis, Ida Mons, Markaion Mons -> Abydos + link = { autogenerated = yes imp = 252 imp = 7908 ck3 = 743 } # Kyzikos, Antigoneia Kyzikene -> Kyzikos + link = { autogenerated = yes imp = 244 imp = 7761 ck3 = 741 } # Nicaea, Sophon Mons -> Nikomedia + link = { autogenerated = yes imp = 207 imp = 209 ck3 = 740 } # Herakleia Pontike, Tieion -> Herakleia + link = { autogenerated = yes imp = 6011 ck3 = 74 } # Feruiria -> HALMSTAD + link = { autogenerated = yes imp = 1812 ck3 = 739 } # Sinope -> Sinope + link = { autogenerated = yes imp = 1807 imp = 1804 ck3 = 738 } # Amisos, Boinasa -> Amisos + link = { autogenerated = yes imp = 1799 ck3 = 737 } # Mazaka -> Kaisereia + link = { autogenerated = yes imp = 158 imp = 1895 ck3 = 735 } # Ablastha, Oulnia -> Ablastha + link = { autogenerated = yes imp = 6003 ck3 = 73 ck3 = 76 } # Bergio -> HELSINGBORG, LAHOLM + link = { autogenerated = yes imp = 5698 ck3 = 729 } # Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 5693 ck3 = 728 } # Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 5700 ck3 = 727 } # Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 9044 ck3 = 7267 ck3 = 7266 ck3 = 7268 } # Marane -> Achu, Ulu Jitanjik, Kyzyl Cheku + link = { autogenerated = yes imp = 9043 ck3 = 7263 } # Zazi -> Jilali + link = { autogenerated = yes imp = 9040 ck3 = 7262 } # Ogenage -> Janai Cheku + link = { autogenerated = yes imp = 9039 ck3 = 7261 } # Gan -> Chumkar Kia + link = { autogenerated = yes imp = 9045 ck3 = 7260 ck3 = 1273 ck3 = 7258 ck3 = 7264 } # Adage -> Jaman Akkul, Turgay, Tatyr Kul, Karalbak + link = { autogenerated = yes imp = 9042 ck3 = 7259 ck3 = 7254 ck3 = 7257 } # Vega -> Tusum Kum, Tibis Sor, Murun Tomis + link = { autogenerated = yes imp = 9038 ck3 = 7256 } # Bezin -> Tumar + link = { autogenerated = yes imp = 9037 ck3 = 7255 } # Edug -> Kyzyl Yar + link = { autogenerated = yes imp = 5708 ck3 = 725 } # Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 9041 ck3 = 7244 ck3 = 7242 ck3 = 7243 } # Soma -> Chir Kala, Karabutak, Kum Saï + link = { autogenerated = yes imp = 8908 imp = 8914 ck3 = 7240 } # Sel, Embi -> Airyk + link = { autogenerated = yes imp = 5713 imp = 5714 ck3 = 724 } # Mare Verginium, Mare Verginium -> Celtic Sea + link = { autogenerated = yes imp = 8909 ck3 = 7238 } # Kenkiyak -> Baisary + link = { autogenerated = yes imp = 8910 imp = 8919 ck3 = 7237 } # Sagiz, Ashchiy -> Tulugai Sor + link = { autogenerated = yes imp = 8911 ck3 = 7236 } # Koptogay -> Sorkul + link = { autogenerated = yes imp = 8913 ck3 = 7235 ck3 = 7234 } # Babatay -> Ak Su, Temir + link = { autogenerated = yes imp = 8933 ck3 = 7231 } # Aksha -> Zarapan + link = { autogenerated = yes imp = 8934 ck3 = 7230 } # Mukur -> Kainar + link = { autogenerated = yes imp = 5723 imp = 5745 imp = 5747 ck3 = 723 } # Mare Verginium, Mare Verginium, Oceanus Atlanticus -> Courtmacsherry Bay + link = { autogenerated = yes imp = 5913 imp = 5881 imp = 8931 ck3 = 7229 } # Nassin, Gyechk, Kenbay -> Bakash-aul + link = { autogenerated = yes imp = 8932 imp = 8936 ck3 = 7228 } # Makat, Shoba -> Hyan + link = { autogenerated = yes imp = 8937 ck3 = 7227 } # Zelshargan -> Sagiz + link = { autogenerated = yes imp = 8935 ck3 = 7226 ck3 = 7232 } # Kuyandy -> Ulu-Uil, Jarkul + link = { autogenerated = yes imp = 8912 ck3 = 7225 ck3 = 7233 } # Segizsay -> Isanbai, Basagha + link = { autogenerated = yes imp = 8942 ck3 = 7224 } # Kamekol -> Jaksybai + link = { autogenerated = yes imp = 9108 imp = 9107 imp = 9109 imp = 9110 imp = 9116 ck3 = 7223 } # Opoin, Oirpata, Oitosyros, Raiwant, Dhokia -> Kyz Imchik + link = { autogenerated = yes imp = 8941 ck3 = 7222 } # Chokun -> Taisugan + link = { autogenerated = yes imp = 9105 imp = 9106 ck3 = 7221 } # Kissar, Amazo -> Manatau + link = { autogenerated = yes imp = 5725 ck3 = 722 } # Oceanus Atlanticus -> Dingle Bay + link = { autogenerated = yes imp = 9114 imp = 9115 ck3 = 7219 } # Sparga, Bartatu -> Barbastau + link = { autogenerated = yes imp = 9111 ck3 = 7218 } # Levedi -> Santas + link = { autogenerated = yes imp = 6001 ck3 = 72 } # Svimraros -> TOMMERUP + link = { autogenerated = yes imp = 8753 ck3 = 7165 ck3 = 7166 } # Aktogay -> Talgar, Kyzyl Suu + link = { autogenerated = yes imp = 8751 imp = 8752 ck3 = 7164 } # Issyk, Yilihe -> Almaty + link = { autogenerated = yes imp = 8750 imp = 9035 ck3 = 7161 } # Jieshan, Adrug -> Kurdai + link = { autogenerated = yes imp = 9034 imp = 9033 ck3 = 7158 } # Krou, Kas -> Chu + link = { autogenerated = yes imp = 8754 ck3 = 7153 } # Chilpek -> Barskhan + link = { autogenerated = yes imp = 8756 ck3 = 7152 } # Beishan -> Narin + link = { autogenerated = yes imp = 5726 imp = 5727 imp = 5728 ck3 = 715 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Galway Bay + link = { autogenerated = yes imp = 6781 imp = 6778 ck3 = 7147 } # Yul, Balasaghun -> Pishkek + link = { autogenerated = yes imp = 6782 ck3 = 7146 ck3 = 7148 } # Ashpara -> Merke, Sayaq + link = { autogenerated = yes imp = 9019 imp = 9022 imp = 9032 ck3 = 7144 } # Savu, Savan, Komar -> Nevaket + link = { autogenerated = yes imp = 9020 imp = 9017 imp = 9021 imp = 9024 ck3 = 7143 } # Pimna, Ecavu, Magat, Donda -> Itte-Kichu + link = { autogenerated = yes imp = 9015 imp = 6783 imp = 9118 ck3 = 7141 } # Agaie, Kulan, Impassable -> Taraz + link = { autogenerated = yes imp = 6777 imp = 6784 imp = 6786 imp = 6785 ck3 = 7140 } # Uvikat, Barskhan, Tobe, Shelji -> Awliya-Ata + link = { autogenerated = yes imp = 5743 imp = 5744 imp = 5756 ck3 = 714 } # Oceanus Atlanticus, Mare Hibernicum, Oceanus Atlanticus -> Coast of Ailech + link = { autogenerated = yes imp = 6792 imp = 7265 ck3 = 7139 } # Isfijab, Zintik -> Chakpak + link = { autogenerated = yes imp = 6791 ck3 = 7138 } # Chach -> Isfijab + link = { autogenerated = yes imp = 7264 ck3 = 7137 } # Maidanchach -> Nuket + link = { autogenerated = yes imp = 7271 imp = 7273 ck3 = 7136 } # Kush, Poshkar -> Chimkent + link = { autogenerated = yes imp = 7267 imp = 7268 imp = 7270 ck3 = 7135 } # Araq, Osht, Kashram -> Sayram + link = { autogenerated = yes imp = 9007 imp = 9013 imp = 9016 imp = 9006 ck3 = 7133 } # Cannabis, Vau, Galage, Vurun -> Quriltay + link = { autogenerated = yes imp = 9008 imp = 9011 ck3 = 7132 } # Iryk, Chagri -> Talas + link = { autogenerated = yes imp = 8998 imp = 9010 imp = 9009 imp = 9012 ck3 = 7131 } # Tigri, Ippa, Herros, Arim -> Karakul + link = { autogenerated = yes imp = 5731 ck3 = 713 } # Mare Hibernicum -> Irish Sea + link = { autogenerated = yes imp = 7262 ck3 = 7129 ck3 = 1181 ck3 = 7130 } # Maidankuyryk -> Shavgar, Sutkend, Sary-Ozek + link = { autogenerated = yes imp = 6794 imp = 9004 ck3 = 7128 } # Kuyruk, Gik -> Yasi + link = { autogenerated = yes imp = 9003 imp = 9120 ck3 = 7127 } # Maca, Impassable -> Shulak + link = { autogenerated = yes imp = 6795 imp = 7261 ck3 = 7126 } # Shavgar, Maidankoga -> Sawran + link = { autogenerated = yes imp = 7249 imp = 7250 ck3 = 7124 } # Akkum, Koga -> Oktyabr + link = { autogenerated = yes imp = 8976 imp = 7251 ck3 = 7123 } # Kumsuat, Besta -> Sighnaq + link = { autogenerated = yes imp = 8977 ck3 = 7122 } # Taldyk -> Suzak + link = { autogenerated = yes imp = 9000 imp = 8997 ck3 = 7121 } # Sturi, Mazgi -> Mushun + link = { autogenerated = yes imp = 8978 imp = 8996 ck3 = 7120 } # Tuzkol, Kassi -> Tashti + link = { autogenerated = yes imp = 5718 imp = 5717 ck3 = 712 } # Mare Verginium, Mare Verginium -> Bristol Channel + link = { autogenerated = yes imp = 8975 ck3 = 7119 } # Abay -> Aq-Masjid + link = { autogenerated = yes imp = 7248 ck3 = 7118 } # Janaqala -> Telegul + link = { autogenerated = yes imp = 8974 ck3 = 7116 } # Zharagash -> Beljan + link = { autogenerated = yes imp = 7257 imp = 7258 ck3 = 7114 } # Qala, Birim -> Buzai + link = { autogenerated = yes imp = 8995 ck3 = 7117 } # Tulya -> Azez-kul + link = { autogenerated = yes imp = 8979 ck3 = 7113 } # Toghayy -> Uzun-kul + link = { autogenerated = yes imp = 8973 imp = 8980 ck3 = 7112 } # Baikonur, Kuduk -> Kara-Mugai + link = { autogenerated = yes imp = 8971 imp = 8970 ck3 = 7111 } # Enbekshi, Zhanatalap -> Raimskoe + link = { autogenerated = yes imp = 7254 imp = 7253 ck3 = 7110 } # Boot, Ziram -> Kazalinsk + link = { autogenerated = yes imp = 5715 imp = 5716 imp = 5722 ck3 = 711 } # Mare Verginium, Mare Verginium, Mare Verginium -> Celtic Sea + link = { autogenerated = yes imp = 8895 imp = 8972 ck3 = 7109 } # Tabankuduk, Orazbay -> Dzangent + link = { autogenerated = yes imp = 8982 imp = 8981 ck3 = 7108 } # Tatan, Berdaly -> Tailyak-kul + link = { autogenerated = yes imp = 8990 imp = 8994 ck3 = 7107 } # Qalmaqqyrgan, Lokyldak -> Arys-kum + link = { autogenerated = yes imp = 8992 imp = 8991 ck3 = 7106 } # Ush, Kyshtau -> Chubar + link = { autogenerated = yes imp = 8988 ck3 = 7105 } # Akirek -> Chalkar + link = { autogenerated = yes imp = 8989 ck3 = 7104 } # Saryapan -> Kalmas + link = { autogenerated = yes imp = 8984 ck3 = 7103 } # Kayta -> Terekli + link = { autogenerated = yes imp = 8897 imp = 8985 ck3 = 7102 } # Saksaul, Zhalauly -> Zhelanash + link = { autogenerated = yes imp = 8986 ck3 = 7101 } # Yrgyz -> Djelavi + link = { autogenerated = yes imp = 8987 ck3 = 7100 } # Balta -> Irgis + link = { autogenerated = yes imp = 5721 imp = 5730 ck3 = 710 } # Mare Verginium, Mare Hibernicum -> Irish Sea + link = { autogenerated = yes imp = 9036 ck3 = 7099 ck3 = 7241 } # Zoza -> Airyuk, Kos Biryuk + link = { autogenerated = yes imp = 8902 ck3 = 7097 ck3 = 7098 } # Shagar -> Agyspe, Chushka-Kol + link = { autogenerated = yes imp = 8905 imp = 8903 ck3 = 7096 } # Shalkar, Baykadam -> Barsuki + link = { autogenerated = yes imp = 8907 ck3 = 7095 } # Sapibulak -> Emba + link = { autogenerated = yes imp = 8906 imp = 8917 ck3 = 7094 } # Kaynbulak, Dzhaindy -> Djamantau + link = { autogenerated = yes imp = 8916 imp = 8904 ck3 = 7093 } # Karabulak, Quqyq -> Kashkarata + link = { autogenerated = yes imp = 8898 ck3 = 7092 } # Kez Kara -> Kugaral + link = { autogenerated = yes imp = 8900 imp = 8899 ck3 = 7091 } # Kektikshe, Bozoy -> Kulandy + link = { autogenerated = yes imp = 5488 imp = 5485 imp = 5487 ck3 = 7090 } # Tirim, Gran, Thema -> Davlet-Girei + link = { autogenerated = yes imp = 5736 imp = 5733 imp = 5737 ck3 = 709 } # Mare Hibernicum, Mare Hibernicum, Mare Hibernicum -> Irish Sea + link = { autogenerated = yes imp = 5477 imp = 5476 ck3 = 7089 } # Kilich, Sthura -> Vezir + link = { autogenerated = yes imp = 5428 ck3 = 7088 } # Suna -> Oglamych + link = { autogenerated = yes imp = 5459 imp = 5451 imp = 5458 ck3 = 7087 } # Azkoi, Shalak, Dnem -> Kum-Sebszen + link = { autogenerated = yes imp = 5461 imp = 5460 ck3 = 7086 } # Khanash, Garam -> Sumbe + link = { autogenerated = yes imp = 5462 imp = 5463 ck3 = 7085 } # Yetteka, Ziri -> Bekdas + link = { autogenerated = yes imp = 5467 imp = 5468 imp = 5469 ck3 = 7081 } # Teike, Shachkra, Byrshchre -> Fort Aleksandrovkiy + link = { autogenerated = yes imp = 5732 imp = 5729 ck3 = 708 } # Mare Hibernicum, Mare Hibernicum -> Irish Sea + link = { autogenerated = yes imp = 5457 imp = 5478 ck3 = 7079 } # Ustret, Zhanit -> Koizak + link = { autogenerated = yes imp = 5471 imp = 5493 ck3 = 7078 } # Tamaasan, Thurissa -> Kajdak + link = { autogenerated = yes imp = 5492 imp = 5491 ck3 = 7076 } # Erim, Gyoshach -> Churuk + link = { autogenerated = yes imp = 5494 imp = 5497 ck3 = 7074 } # Kurchina, Kylorica -> Beyneu + link = { autogenerated = yes imp = 5496 imp = 5498 ck3 = 7073 } # Donom, Vyoros -> Tengiz + link = { autogenerated = yes imp = 5915 imp = 5916 ck3 = 7072 } # Alsita, Chevka -> Kumstan + link = { autogenerated = yes imp = 8927 imp = 8926 ck3 = 7071 } # Beyneu, Shomishtikol -> Chumishtikul + link = { autogenerated = yes imp = 8920 imp = 8915 imp = 8923 imp = 8924 ck3 = 7070 } # Qamysty, Chagan, Qosbulaq, Matay -> Kos-Buwak + link = { autogenerated = yes imp = 1866 imp = 1865 imp = 6397 imp = 839 imp = 7983 ck3 = 707 } # Korne, Miasena, Barzala, Nymphaios, Nymphaios Mountains -> Melitene + link = { autogenerated = yes imp = 8918 ck3 = 7068 ck3 = 7069 } # Tobusken -> Namastau, Asheh-Atrik + link = { autogenerated = yes imp = 8921 imp = 8929 ck3 = 7067 } # Karaoba, Azgyl -> Issenjau + link = { autogenerated = yes imp = 8930 imp = 8928 ck3 = 7066 } # Imankara, Tugarakchan -> Azgyl + link = { autogenerated = yes imp = 5499 imp = 5914 ck3 = 7065 } # Satticha, Kholan -> Qoshagyl + link = { autogenerated = yes imp = 1783 imp = 1781 ck3 = 706 } # Anniaka, Basgoedariza -> Colonea + link = { autogenerated = yes imp = 483 imp = 4037 ck3 = 703 } # Artales, Kitharizon -> Martyropolis + link = { autogenerated = yes imp = 1856 imp = 1857 ck3 = 702 } # Anzita, Hierapolis Sophenias -> Tzimisca + link = { autogenerated = yes imp = 1562 ck3 = 701 } # Zombis -> Manzikert + link = { autogenerated = yes imp = 5757 imp = 5740 imp = 6304 imp = 6307 imp = 6310 ck3 = 700 } # Oceanus Atlanticus, Mare Hibernicum, LAKE, LAKE, LAKE -> Sea of Hebrides + link = { autogenerated = yes imp = 6000 ck3 = 70 ck3 = 71 } # Uppakra -> LUND, TRELLEBORG + link = { autogenerated = yes imp = 5739 ck3 = 699 } # Mare Hibernicum -> Firth of Clyde + link = { autogenerated = yes imp = 5767 ck3 = 698 ck3 = 693 } # Mare Orcadum -> The Minch, Sea of Orkney + link = { autogenerated = yes imp = 5758 imp = 5759 imp = 5760 imp = 6331 ck3 = 696 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, LAKE -> Sea of Hebrides + link = { autogenerated = yes imp = 5771 ck3 = 692 } # Mare Septentrionale -> Eastern Coast of Scotland + link = { autogenerated = yes imp = 5796 imp = 5792 imp = 5793 imp = 5795 imp = 5797 imp = 5800 imp = 5801 imp = 5802 ck3 = 691 } # Mare Septentrionale, Mare Germanicum, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Germanicum -> North Sea + link = { autogenerated = yes imp = 5773 ck3 = 690 } # Mare Septentrionale -> East English Coast + link = { autogenerated = yes imp = 5775 imp = 8036 ck3 = 689 } # Mare Germanicum, Abus -> Humber River + link = { autogenerated = yes imp = 5776 ck3 = 688 } # Mare Germanicum -> The Wash + link = { autogenerated = yes imp = 5777 ck3 = 687 } # Mare Germanicum -> Coast of Suffolk + link = { autogenerated = yes imp = 5778 ck3 = 686 } # Mare Germanicum -> Thames Estuary + link = { autogenerated = yes imp = 5782 imp = 7724 ck3 = 684 } # Lacus Flevo, Rhenus -> Zuiderzee + link = { autogenerated = yes imp = 6333 ck3 = 683 } # Lim -> Limfjord + link = { autogenerated = yes imp = 995 imp = 988 ck3 = 682 } # Molchia, Thospia -> Van + link = { autogenerated = yes imp = 1582 imp = 1583 ck3 = 681 } # Ani, Dzhrapi -> Ani + link = { autogenerated = yes imp = 1690 imp = 1676 imp = 1679 imp = 1685 ck3 = 679 } # Zghuderi, Meschistha-Harmozike, Kavtiskhevi, Uplistsikhe -> Gori + link = { autogenerated = yes imp = 1734 imp = 1773 imp = 1775 imp = 1797 imp = 8000 ck3 = 678 } # Trapezous, Zigana, Magnana, Koralla, Trapezous Mountains -> Trebizond + link = { autogenerated = yes imp = 1701 imp = 1724 imp = 1725 ck3 = 677 } # Goderdzi Pass, Apasidam, Bathys Limen -> Batumi + link = { autogenerated = yes imp = 7604 ck3 = 674 } # Tzur -> Derbent + link = { autogenerated = yes imp = 1668 imp = 1550 imp = 1571 imp = 1572 imp = 1573 imp = 5211 ck3 = 672 } # Vayots Dzor, Maravan, Artaxata, Tibion, Gorneae, IMPASSIBLE TERRAIN 211 -> Dvin + link = { autogenerated = yes imp = 1616 imp = 1614 imp = 1615 imp = 5213 ck3 = 671 } # Kapan, Sigan, Balaberd, IMPASSIBLE TERRAIN 213 -> Kapan + link = { autogenerated = yes imp = 1640 ck3 = 670 } # Tigranakert -> Gandzasar + link = { autogenerated = yes imp = 3884 ck3 = 67 ck3 = 68 } # Herulia Australis -> NYKOBING, NAKSKOV + link = { autogenerated = yes imp = 1634 ck3 = 669 } # Kamachia -> Shemakha + link = { autogenerated = yes imp = 5819 imp = 5786 imp = 5787 imp = 5788 imp = 5815 imp = 5830 imp = 5824 ck3 = 667 } # Mare Septentrionale, Mare Germanicum, Mare Septentrionale, Mare Septentrionale, Mare Germanicum, Mare Septentrionale, Mare Septentrionale -> Coast of Denmark + link = { autogenerated = yes imp = 5820 ck3 = 666 ck3 = 8559 ck3 = 8617 } # Mare Septentrionale -> Coast of Norway, Hardangerfjord, Coast of Norway + link = { autogenerated = yes imp = 3881 ck3 = 66 } # Insula Anglorum -> SVENDBORG + link = { autogenerated = yes imp = 3883 ck3 = 65 } # Reudingia Minor -> ODENSE + link = { autogenerated = yes imp = 8181 imp = 8173 imp = 8189 imp = 8190 imp = 8191 imp = 8194 ck3 = 6450 } # Zuwila, Traghen, Majdul, Terbu, Izam, Mastutah -> TASSAWA + link = { autogenerated = yes imp = 5831 imp = 5827 imp = 5829 imp = 5832 imp = 5823 ck3 = 645 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Mare Septentrionale -> Skagerrak + link = { autogenerated = yes imp = 8644 ck3 = 6444 } # Barakit -> SHOWAK_SOUTH + link = { autogenerated = yes imp = 633 imp = 7591 imp = 8739 imp = 8737 ck3 = 6443 } # Druka, Acranoe, Mareb, Brebana -> GASH + link = { autogenerated = yes imp = 7551 imp = 8743 ck3 = 6441 } # Gulbub, Nakfa -> KA'BIR + link = { autogenerated = yes imp = 5843 imp = 5840 imp = 5841 imp = 5842 ck3 = 644 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus -> South Funen Archipelago + link = { autogenerated = yes imp = 3331 imp = 7590 ck3 = 6437 } # Zithaa, Demora -> SHOWAK + link = { autogenerated = yes imp = 8643 imp = 8642 imp = 8623 imp = 8633 ck3 = 6436 } # Gabub, Baqbaqah, Thalathun, Rumaylah -> WOLQAYT + link = { autogenerated = yes imp = 5846 imp = 5838 imp = 5844 imp = 5845 imp = 6320 imp = 6323 ck3 = 643 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, LAKE, LAKE -> Arkona Basin + link = { autogenerated = yes imp = 3323 imp = 3322 imp = 8640 ck3 = 6411 } # Durai, Borassa, Tuwesat -> MIDDLE_ATBARA + link = { autogenerated = yes imp = 8619 imp = 8621 ck3 = 6410 } # Essayal, Shirayyet -> JEBEL_GEILI + link = { autogenerated = yes imp = 5849 imp = 5850 ck3 = 641 } # Oceanus Sarmaticus, Oceanus Sarmaticus -> Coast of Pomerania + link = { autogenerated = yes imp = 8618 imp = 7588 imp = 8620 ck3 = 6409 } # Bagarah, Dmut, Mirikh -> UMM_USUDA + link = { autogenerated = yes imp = 8616 imp = 8598 imp = 8599 imp = 8600 imp = 8601 imp = 8617 imp = 5328 ck3 = 6408 } # Kakabi, Hamadab, Bafalil, Hatab, Suriba, Hufrah, IP 329 -> BASA + link = { autogenerated = yes imp = 8594 imp = 8593 imp = 8597 imp = 8602 imp = 8603 imp = 8604 ck3 = 6407 } # Hissuna, Mahdood, Hejeilat, Adabda, Zariba, Keili -> NAGA + link = { autogenerated = yes imp = 8626 ck3 = 6406 } # Ghorani -> BASHARGA + link = { autogenerated = yes imp = 8627 imp = 8628 imp = 8631 ck3 = 6405 } # Fao, Singda, Qalbi -> EL-ELEILA + link = { autogenerated = yes imp = 8630 imp = 8112 imp = 8632 imp = 8727 ck3 = 6404 } # Dinder, Singa, Simsim, Gisi -> ABU_GEILI + link = { autogenerated = yes imp = 8726 ck3 = 6400 ck3 = 6403 } # Abal -> SENNAR, SINGA + link = { autogenerated = yes imp = 5861 imp = 5863 imp = 5864 ck3 = 640 } # Mare Gothicum, Oceanus Sarmaticus, Oceanus Sarmaticus -> Baltic Sea + link = { autogenerated = yes imp = 3885 ck3 = 64 } # Herulia Centralis -> NAESTVED + link = { autogenerated = yes imp = 8108 imp = 8106 imp = 8107 ck3 = 6399 } # Jebel Moya, Amara, Sennar -> UM_SUNT + link = { autogenerated = yes imp = 8111 ck3 = 6398 } # Manaqil -> ARBAJI + link = { autogenerated = yes imp = 3317 imp = 3319 ck3 = 6397 } # Attrah, Syuta -> KAMLIN + link = { autogenerated = yes imp = 3320 imp = 3318 imp = 8110 ck3 = 6396 } # Korin, Kuria, Kawah -> GETEINA + link = { autogenerated = yes imp = 3314 ck3 = 6395 } # Alwa -> ALTI + link = { autogenerated = yes imp = 8625 imp = 8595 imp = 8605 imp = 5329 ck3 = 6394 } # Azraq, Surayriyah, Harazah, IP 330 -> SOBA + link = { autogenerated = yes imp = 3315 imp = 8724 imp = 8105 imp = 8723 ck3 = 6393 } # Gurnah, Kigeira, Muqaddam, Bana -> USHARA + link = { autogenerated = yes imp = 8596 imp = 3313 ck3 = 6392 } # Sayyidab, Soba -> KADERO + link = { autogenerated = yes imp = 3311 imp = 8592 ck3 = 6391 } # Toprate, Kasir -> GEILI + link = { autogenerated = yes imp = 8104 imp = 3312 imp = 8103 imp = 8101 imp = 8102 ck3 = 6390 } # Fashfash, Petta, Samra, Bum, Baggura -> SHAHEINAB + link = { autogenerated = yes imp = 5860 imp = 6469 imp = 6519 ck3 = 639 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus -> Baltic Sea + link = { autogenerated = yes imp = 7598 imp = 8090 imp = 7597 ck3 = 6388 } # Sabaste, Gidmib, Erascum -> LOWER_ODIB + link = { autogenerated = yes imp = 8609 imp = 8615 ck3 = 6382 } # Misrar, Hashim -> WADI_AMUR + link = { autogenerated = yes imp = 7553 imp = 7552 ck3 = 6380 } # Aqiq, Deresa -> BADI + link = { autogenerated = yes imp = 5852 imp = 5855 ck3 = 638 } # Oceanus Sarmaticus, Oceanus Sarmaticus -> Coast of Lithuania + link = { autogenerated = yes imp = 7500 ck3 = 6379 ck3 = 6381 } # Ptolemais Theron -> AKIK, BAZIN + link = { autogenerated = yes imp = 7501 imp = 8606 ck3 = 6378 } # Elephanton Chora, Kaweit -> TOKAR + link = { autogenerated = yes imp = 7599 ck3 = 6377 } # Setronon -> SUAKIN + link = { autogenerated = yes imp = 8610 imp = 8607 ck3 = 6376 } # Hamdab, Sinkat -> SINKAT + link = { autogenerated = yes imp = 7596 imp = 7595 ck3 = 6371 } # Canarbis, Arachos -> DUNGUNAB + link = { autogenerated = yes imp = 5848 ck3 = 637 } # Mare Eovium -> Coast of Oland + link = { autogenerated = yes imp = 626 ck3 = 6368 ck3 = 6369 } # Napata -> REDAB, KUWEIB + link = { autogenerated = yes imp = 646 ck3 = 6367 } # Fourth Cataract -> SHEMKHIYA + link = { autogenerated = yes imp = 643 imp = 640 imp = 8063 ck3 = 6365 } # Araba, Epis, Tulih -> KELI + link = { autogenerated = yes imp = 644 imp = 8590 imp = 8591 ck3 = 6364 } # Wad ban Naqa, Aborepi, Nagaa -> SHENDI + link = { autogenerated = yes imp = 642 imp = 641 ck3 = 6363 } # Summarum, Meroe -> AL-ABWAB + link = { autogenerated = yes imp = 8073 ck3 = 6361 } # Hudi -> SABAGURA + link = { autogenerated = yes imp = 592 ck3 = 6362 } # Talmis -> KALABSHA + link = { autogenerated = yes imp = 5856 ck3 = 636 } # Oceanus Sarmaticus -> Coast of Oland + link = { autogenerated = yes imp = 605 imp = 607 ck3 = 6359 } # Noa, Gugo -> KASSI-MARKOL + link = { autogenerated = yes imp = 7592 imp = 634 imp = 637 imp = 638 imp = 7587 ck3 = 6358 } # Ganagaras, Darou, Mallo, Sakolche, Anak -> ED-DAMER + link = { autogenerated = yes imp = 635 imp = 629 imp = 631 imp = 636 imp = 639 imp = 8065 ck3 = 6357 } # Galim, Sankole, Gora, Seserem, Tadu, Kurmut -> AL-BAWGA + link = { autogenerated = yes imp = 628 imp = 630 ck3 = 6355 } # Alana, Scammos -> BERBER + link = { autogenerated = yes imp = 7584 ck3 = 6353 } # Hashem -> TARFAYA + link = { autogenerated = yes imp = 627 imp = 645 ck3 = 6351 } # Marru, Kurgus -> KURGUS + link = { autogenerated = yes imp = 5859 imp = 5858 imp = 5862 imp = 6348 ck3 = 635 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Mare Gothicum, LAKE -> Baltic Sea + link = { autogenerated = yes imp = 7585 imp = 8068 ck3 = 6349 } # Nuri, Kuweib -> NURI + link = { autogenerated = yes imp = 625 ck3 = 6347 } # Cortum -> TANKASI + link = { autogenerated = yes imp = 619 imp = 614 imp = 615 imp = 616 imp = 622 ck3 = 6345 } # Segasa, Bagada, Pago, Mulon, Zamnes -> DEBBA + link = { autogenerated = yes imp = 611 imp = 609 imp = 610 imp = 618 ck3 = 6343 } # Orsum, Acina, Prummu, Urbim -> DONGOLA + link = { autogenerated = yes imp = 606 ck3 = 6339 } # Saye -> SAI + link = { autogenerated = yes imp = 7580 imp = 7579 imp = 7581 ck3 = 6338 } # Tila, Firke, Pderme -> AKASHA + link = { autogenerated = yes imp = 602 ck3 = 6335 } # Tamania -> SERRA + link = { autogenerated = yes imp = 599 imp = 598 imp = 5519 ck3 = 6333 } # Kambousis, Premis, Simbel -> SHEIKH_DAWUD + link = { autogenerated = yes imp = 594 imp = 596 ck3 = 6331 } # Tachampso, Aramum -> SAYALA + link = { autogenerated = yes imp = 7645 ck3 = 632 } # Oceanus Sarmaticus -> Gulf of Riga + link = { autogenerated = yes imp = 8864 ck3 = 6316 } # Andhur -> MIRBA + link = { autogenerated = yes imp = 8853 imp = 4707 imp = 8852 ck3 = 6315 } # Thumrait, Samharam, Iram -> DHUFAR + link = { autogenerated = yes imp = 4708 imp = 8863 ck3 = 6314 } # Saliah, Thinqayr -> RAYSUT + link = { autogenerated = yes imp = 4706 imp = 4705 imp = 8860 imp = 8861 imp = 8859 imp = 8862 ck3 = 6313 } # Neogilla, Ausara Hadhramut, Ariqim, Qasawa, Muqarqar, Dakharaib -> AL-ASA + link = { autogenerated = yes imp = 4703 imp = 4704 imp = 8857 ck3 = 6312 } # Thialematt, Qishan, Breigha -> ASH-SHIHR + link = { autogenerated = yes imp = 4675 ck3 = 6311 } # Tretos -> MUKALLA + link = { autogenerated = yes imp = 5426 imp = 5424 ck3 = 631 } # Yone, Venas -> Yangadzha + link = { autogenerated = yes imp = 4679 ck3 = 6308 ck3 = 6301 ck3 = 6309 } # Sau -> QUTN, HISN_AL-ABR, HURAYDA + link = { autogenerated = yes imp = 4678 ck3 = 6306 ck3 = 6307 } # Sabata -> SHIBAM, QABR_SALIH + link = { autogenerated = yes imp = 8854 imp = 4710 ck3 = 6305 } # Seiyun, Rabun -> INAT + link = { autogenerated = yes imp = 3886 ck3 = 63 ck3 = 69 } # Herulia Borealis -> ROSKILDE, SLAGELSE + link = { autogenerated = yes imp = 4662 imp = 4661 imp = 4663 imp = 4665 ck3 = 6297 } # Tamna, Marimatha, Caripeta, Nagia -> BAYHAN + link = { autogenerated = yes imp = 4712 imp = 4659 ck3 = 6295 } # Hadrama, Sarouon -> NISAB + link = { autogenerated = yes imp = 4658 imp = 5291 ck3 = 6294 } # Maipha, Hadramut Desert -> AZZAN + link = { autogenerated = yes imp = 4685 ck3 = 6293 ck3 = 6310 } # Qana -> BALHAF, KHURAYBA + link = { autogenerated = yes imp = 4657 imp = 4655 imp = 4660 ck3 = 6292 } # Firai, Abisama, Maccua -> AHWAN + link = { autogenerated = yes imp = 4656 ck3 = 6291 } # Dela -> SAQRA + link = { autogenerated = yes imp = 4650 imp = 4654 ck3 = 6290 } # 'Adan, Mesala -> ADEN + link = { autogenerated = yes imp = 9174 ck3 = 629 ck3 = 630 } # $PROV8035$ -> River Thames, River Thames + link = { autogenerated = yes imp = 4692 ck3 = 6289 } # Makeda -> MUSAYMIR + link = { autogenerated = yes imp = 4695 ck3 = 6288 } # Homeira -> LAWDAR + link = { autogenerated = yes imp = 4698 ck3 = 6287 } # Felicita -> RADA + link = { autogenerated = yes imp = 4693 ck3 = 6286 } # Sabatia -> ZAFAR + link = { autogenerated = yes imp = 4694 ck3 = 6285 ck3 = 6277 } # Ocelia -> AL-JANAD, JABAL AYBAN + link = { autogenerated = yes imp = 4687 imp = 4648 imp = 4684 ck3 = 6284 } # Qatabia, Saraka, Himiara -> TAIZZ + link = { autogenerated = yes imp = 4652 imp = 4647 ck3 = 6283 } # Confluentia Qataba, Save -> AL-MAAFIR + link = { autogenerated = yes imp = 4646 imp = 4651 ck3 = 6282 } # Okelis, Caiwa -> AL-MANDAB + link = { autogenerated = yes imp = 4645 imp = 4649 ck3 = 6281 } # Mouza Emporion, Meda -> MAWZA + link = { autogenerated = yes imp = 4643 imp = 4644 imp = 4680 imp = 4691 ck3 = 6280 } # Laupas, Aliou Kome, Zafar, Harazia Vallis -> ZABID + link = { autogenerated = yes imp = 8035 ck3 = 628 } # Tamesis -> River Thames + link = { autogenerated = yes imp = 4642 ck3 = 6279 } # Adedou Kome -> GHALAFIQA + link = { autogenerated = yes imp = 4686 imp = 4689 ck3 = 6278 } # Sabiyah, Haraz -> FASHAL + link = { autogenerated = yes imp = 4696 imp = 4664 imp = 4682 imp = 4697 imp = 4681 ck3 = 6276 } # Hazma, Nossa, Sanaa, Damar, Raida -> SANAA + link = { autogenerated = yes imp = 4688 ck3 = 6275 } # Amran -> SHIBAM-SANAA + link = { autogenerated = yes imp = 4683 imp = 4667 imp = 4690 ck3 = 6274 } # Sirwa, Athroula, Nashaq -> AR-RAYDA + link = { autogenerated = yes imp = 4700 imp = 4668 ck3 = 6273 } # Yathill, Caminacum -> HUTH + link = { autogenerated = yes imp = 4641 imp = 4637 ck3 = 6271 } # Badeo, Devada -> KAMARAN + link = { autogenerated = yes imp = 4702 ck3 = 6270 ck3 = 6272 ck3 = 1332 } # Affa -> AL-MAHJAM, ASH-SHARAF, JIBAL-AL-HIJAZI + link = { autogenerated = yes imp = 5425 ck3 = 627 } # Duri -> Kyzyl-Su + link = { autogenerated = yes imp = 7571 imp = 7570 imp = 7572 imp = 7573 ck3 = 6269 } # Madrakah, Quwayrah, Nafun, Khaluf -> DUQM + link = { autogenerated = yes imp = 8879 imp = 5421 imp = 7216 imp = 7217 ck3 = 6268 } # Juba, Acte, Sarapis, Ganta -> WAHIBA + link = { autogenerated = yes imp = 8820 ck3 = 6262 ck3 = 6264 } # Hadri -> UNAYZA, TIKHFA + link = { autogenerated = yes imp = 8819 ck3 = 6261 } # Buraydah -> AL-QARYATAN-QASIM + link = { autogenerated = yes imp = 8818 ck3 = 6260 } # Asyah -> AN-NIBAJ + link = { autogenerated = yes imp = 8824 ck3 = 6254 } # Hajir -> AL-ARID + link = { autogenerated = yes imp = 8825 ck3 = 6252 } # Rufaya -> AL-KHARJ + link = { autogenerated = yes imp = 4701 imp = 4669 ck3 = 6242 } # Haud, Marna Vallis -> SADA + link = { autogenerated = yes imp = 4640 imp = 4699 ck3 = 6241 } # Akme, Aksumia -> HARAD + link = { autogenerated = yes imp = 4639 imp = 4638 ck3 = 6240 } # Baitus, Marma -> ATTAR + link = { autogenerated = yes imp = 5464 imp = 5465 ck3 = 624 } # Karon, Mroshika -> Aktau + link = { autogenerated = yes imp = 4636 imp = 3479 ck3 = 6239 } # Cama, Abha -> ASH-SHUQAYQ + link = { autogenerated = yes imp = 4635 imp = 4634 imp = 7578 imp = 7601 ck3 = 6238 } # Raqeta, Ambe, Nemerah, Barek -> HALI + link = { autogenerated = yes imp = 8839 imp = 3480 imp = 8838 imp = 8841 ck3 = 6237 } # Kutnah, Migayah, Jurash, Hubuna -> KUTHBA + link = { autogenerated = yes imp = 8873 ck3 = 6236 ck3 = 6235 } # Bishah -> JURASH, BISHA + link = { autogenerated = yes imp = 8901 imp = 5489 imp = 6064 ck3 = 623 } # Kucherquduq, Vyache, Aral -> Kassarma + link = { autogenerated = yes imp = 4633 imp = 7577 ck3 = 6224 } # Litha, Attaba -> AS-SIRAYN + link = { autogenerated = yes imp = 7576 ck3 = 6223 ck3 = 6225 } # Ta'if -> MAKKA, AT-TAIF + link = { autogenerated = yes imp = 4630 imp = 4632 ck3 = 6222 } # Baruka, Zaibram -> JIDDA + link = { autogenerated = yes imp = 7575 ck3 = 6221 ck3 = 6227 } # Makarabah -> KHULAYS, SUFAINA + link = { autogenerated = yes imp = 4629 ck3 = 6220 } # Rabigh -> RABIGH + link = { autogenerated = yes imp = 8983 imp = 8896 ck3 = 622 } # Zhenishkekum, Tokabay -> Ak-Dzulpas + link = { autogenerated = yes imp = 4628 imp = 4653 imp = 7574 ck3 = 6219 } # Harbia, Vaduma, Kariya -> AS-SAFRA + link = { autogenerated = yes imp = 4627 ck3 = 6210 } # Rayyis -> AL-JAR + link = { autogenerated = yes imp = 8922 ck3 = 621 } # Tugyrakshan -> Akkityk + link = { autogenerated = yes imp = 4626 imp = 4625 ck3 = 6209 } # Arga, Charamithas -> YANBU + link = { autogenerated = yes imp = 4719 imp = 4720 imp = 7736 ck3 = 6207 } # Coloera, Eroe, Ausara Volcano -> KHAYBAR + link = { autogenerated = yes imp = 4615 ck3 = 6201 } # Dedan -> AL-HIJR + link = { autogenerated = yes imp = 4616 imp = 4714 ck3 = 6200 } # Ausara, Hegra -> AL-ULA + link = { autogenerated = yes imp = 6223 imp = 6224 imp = 6225 imp = 6226 imp = 6227 imp = 8951 imp = 8956 ck3 = 620 } # Khorolats, Vhingad, Monok, Urmonok, Zale, Zhanashu, Suyindik -> Itil + link = { autogenerated = yes imp = 3862 ck3 = 62 } # Anglia Borealis -> HEDEBY + link = { autogenerated = yes imp = 4619 imp = 4622 ck3 = 6199 } # Apudia Vallis, Iuthra -> AS-SUQYA + link = { autogenerated = yes imp = 4620 imp = 4621 ck3 = 6198 } # Alaura, Harenae -> AL-HAWRA + link = { autogenerated = yes imp = 4610 imp = 4608 ck3 = 6197 } # Raunathou Kome, Phoinikon Kome -> AL-WAJH + link = { autogenerated = yes imp = 4609 imp = 4607 ck3 = 6196 } # Egra, Badais -> BADA + link = { autogenerated = yes imp = 4606 ck3 = 6195 } # Hippou Kome -> AL-AWNID + link = { autogenerated = yes imp = 4605 imp = 4604 ck3 = 6194 } # Soaka, Laba -> AN-NABAK + link = { autogenerated = yes imp = 4603 ck3 = 6193 } # Modiana -> ZIBA + link = { autogenerated = yes imp = 4715 imp = 6496 ck3 = 6191 } # Demne, South Nabatean Desert -> AL-MUHDATHA + link = { autogenerated = yes imp = 4713 ck3 = 6190 ck3 = 6189 } # Achroua -> AL-AQRA, FAJR + link = { autogenerated = yes imp = 8969 imp = 8961 imp = 8962 imp = 8966 imp = 8967 imp = 9086 ck3 = 619 } # Bulukhta, Akhtuba, Sary Su, Ilicha, Zhitkur, Zyrenka -> Saray + link = { autogenerated = yes imp = 4611 imp = 4601 ck3 = 6188 } # Madiama Felix, Baclanaza -> TABUK + link = { autogenerated = yes imp = 4612 imp = 4600 imp = 7647 ck3 = 6186 } # Relicta, Ostama, Impassable -> SARJ + link = { autogenerated = yes imp = 726 ck3 = 6185 } # Madiama -> SHARAF AL-BAL + link = { autogenerated = yes imp = 4602 ck3 = 6184 } # Leuke Kome -> AINUN + link = { autogenerated = yes imp = 725 ck3 = 6183 } # Makna -> MAQNA + link = { autogenerated = yes imp = 8815 ck3 = 6181 } # Jubbah -> JUBBA-HAIL + link = { autogenerated = yes imp = 8846 ck3 = 6182 } # Mawqaq -> MAWQAQ + link = { autogenerated = yes imp = 8938 imp = 5880 imp = 5912 imp = 8939 ck3 = 618 } # Tortkuduk, Ruta, Azgar, Orlik -> Atyrau + link = { autogenerated = yes imp = 7561 imp = 4721 ck3 = 6177 } # Sakaka, Durnatha -> AL-QARA + link = { autogenerated = yes imp = 7558 ck3 = 6176 ck3 = 6178 } # Arabia Deserta -> SAKAKA, AL-JAWF + link = { autogenerated = yes imp = 9094 imp = 9092 imp = 9095 ck3 = 617 } # Arya, Airma, Tavah -> Uzens + link = { autogenerated = yes imp = 7196 imp = 944 ck3 = 6161 } # Adros, Akkaz -> KAZIMA + link = { autogenerated = yes imp = 5404 imp = 8881 ck3 = 6160 } # Mulayjah, Ulya -> THAJ + link = { autogenerated = yes imp = 7198 imp = 7197 ck3 = 6159 } # Istana, Itamos -> AL-JUBAYL + link = { autogenerated = yes imp = 7199 imp = 5405 ck3 = 6158 } # Gerrha, Thaj -> AL-QATIF + link = { autogenerated = yes imp = 7200 ck3 = 6157 } # Theppra -> AL-KHATT + link = { autogenerated = yes imp = 7202 ck3 = 6156 } # Tylos -> UWAL + link = { autogenerated = yes imp = 7201 ck3 = 6155 } # Atta -> AL-UQAYR + link = { autogenerated = yes imp = 5408 imp = 5407 imp = 8848 imp = 8849 ck3 = 6152 } # Efa, Agarum, Haradh, Hawiyah -> AL-HAJAR + link = { autogenerated = yes imp = 7204 imp = 5409 imp = 5410 ck3 = 6151 } # Sarkoi, Largis, Utea -> MASHQAR + link = { autogenerated = yes imp = 7203 imp = 8872 ck3 = 6150 } # Gylus, Khor -> MURWAB + link = { autogenerated = yes imp = 7205 imp = 5412 imp = 7206 imp = 5411 ck3 = 6148 } # Labrys Omana, Suwaytiyah, Attiaca, Ghirban -> AZ-DHAFRA + link = { autogenerated = yes imp = 7214 ck3 = 6147 } # Artemidos -> JAALAN + link = { autogenerated = yes imp = 7215 ck3 = 6145 ck3 = 6146 } # Metas -> QALHAT, SUR + link = { autogenerated = yes imp = 7212 ck3 = 6143 ck3 = 6144 } # Kryptos Limen -> MATRAH, MASQAT + link = { autogenerated = yes imp = 5420 ck3 = 6141 } # Zirne -> SAMAD + link = { autogenerated = yes imp = 5419 imp = 8851 imp = 7213 imp = 8865 ck3 = 6140 } # Samad, Sharqiyah, Dirma Omana, Adam -> NIZWA + link = { autogenerated = yes imp = 8866 ck3 = 6139 ck3 = 6142 } # Bahla -> BAHLA, JEBEL AKHDAR + link = { autogenerated = yes imp = 5417 imp = 8869 imp = 8870 imp = 5418 ck3 = 6138 } # Ialla, Dhank, Ibri, Vatum -> DHANK + link = { autogenerated = yes imp = 8868 ck3 = 6137 } # Rumailah -> HAFIT + link = { autogenerated = yes imp = 8871 ck3 = 6135 ck3 = 6136 } # Suwayq -> BATINA-EAST, RUSTAQ-OMAN + link = { autogenerated = yes imp = 7209 imp = 5416 ck3 = 6134 } # Omana, Ecrune -> SUHAR + link = { autogenerated = yes imp = 5429 imp = 7208 ck3 = 6133 } # Iepana, Regna -> DABBA + link = { autogenerated = yes imp = 7210 ck3 = 6132 } # Heliou Limen -> MUSANDAM + link = { autogenerated = yes imp = 8867 ck3 = 6131 } # Dur -> JULFAR + link = { autogenerated = yes imp = 7207 imp = 5414 imp = 7211 ck3 = 6130 } # Kanepsa, Murkhan, Kalas -> TAWWAM-WEST + link = { autogenerated = yes imp = 5415 imp = 5430 ck3 = 6129 } # Saruq, Trazel -> TAWWAM + link = { autogenerated = yes imp = 6438 imp = 6440 imp = 7710 imp = 7711 imp = 7717 imp = 7722 ck3 = 6128 } # LAKE, LAKE, Tigris, Tigris, Euphrates, Tigris -> Tigris River + link = { autogenerated = yes imp = 7714 ck3 = 6127 } # Tigris -> Tigris River + link = { autogenerated = yes imp = 7715 imp = 7716 ck3 = 6126 } # Tigris, Tigris -> Tigris River + link = { autogenerated = yes imp = 9156 imp = 9154 imp = 9155 imp = 9157 imp = 9158 ck3 = 6125 } # $PROV7687$, $PROV7687$, $PROV7687$, $PROV7687$, $PROV7687$ -> River Nile + link = { autogenerated = yes imp = 647 imp = 581 imp = 649 imp = 650 ck3 = 6122 } # Quei, Semna, Lykabettus-Porphyrites, Drepanum -> SAFAGA + link = { autogenerated = yes imp = 8076 imp = 8075 imp = 8072 ck3 = 6121 } # Asele, Karim, Abraq -> UM SHASHOBA + link = { autogenerated = yes imp = 588 imp = 586 imp = 589 ck3 = 6118 } # Aristonis, Sukkari, Falacro -> NORTH_JBL_QUZLUM + link = { autogenerated = yes imp = 5550 imp = 5554 imp = 5551 ck3 = 6117 } # Alexandrou Parembole, Sanus, Varias -> QARA + link = { autogenerated = yes imp = 8088 imp = 8077 imp = 8083 imp = 8084 imp = 8085 imp = 8086 imp = 8087 imp = 8119 ck3 = 6113 } # Eigat, Ghaloa, Garaiyat, Seiga, Shoshoba, Allaqi, Fas, Allaqi Desert -> ALLAQI + link = { autogenerated = yes imp = 8081 imp = 8079 imp = 8080 imp = 8082 imp = 593 imp = 8098 ck3 = 6112 } # Dhahab, Contra Pselchis, Hairiri, Heimur, Pselkis, Dayyub -> HAIMUR + link = { autogenerated = yes imp = 7594 ck3 = 6110 ck3 = 6373 } # Sabraiton -> AYDHAB, GEBEIT + link = { autogenerated = yes imp = 580 imp = 579 imp = 582 ck3 = 6109 } # Myos Hormos, Persou, Siqdit -> QUSAYR + link = { autogenerated = yes imp = 8125 imp = 8126 imp = 8127 ck3 = 6107 } # Mawahi, Gicherra, Gialo -> JALU + link = { autogenerated = yes imp = 3348 imp = 3346 imp = 3350 ck3 = 6105 } # Chersis, Amastor, Euesperides -> BENGHAZI + link = { autogenerated = yes imp = 3353 imp = 3352 imp = 3354 ck3 = 6104 } # Taucheira, Hadrianopolis, Ptolemais -> BARQA-AL-MARJ + link = { autogenerated = yes imp = 3347 imp = 3344 imp = 3349 ck3 = 6103 } # Talliamunera, Serapeion, Zau Taberna -> JABAL_AL-GHARBI + link = { autogenerated = yes imp = 3360 imp = 3357 imp = 3358 imp = 3361 ck3 = 6101 } # Kyrene, Barke, Phykous, Apollonia Kyrenaike -> MARAWA + link = { autogenerated = yes imp = 3865 ck3 = 61 } # Cimbrica Minor -> AABENRAA + link = { autogenerated = yes imp = 3363 imp = 3365 imp = 3366 ck3 = 6099 } # Darnis, Aziris, Paliouros -> DERNA + link = { autogenerated = yes imp = 3372 imp = 3368 imp = 3369 imp = 3370 imp = 3371 imp = 8158 ck3 = 6098 } # Menelaos, Batrachos, Gonia, Antipyrgos, Kyrthanion, Shaqiq -> TOBRUK + link = { autogenerated = yes imp = 3375 imp = 3373 imp = 3374 ck3 = 6097 } # Chettaia, Catabathmus Maior, Nesus -> SULLUM + link = { autogenerated = yes imp = 3379 imp = 3380 imp = 3476 imp = 5553 imp = 5556 ck3 = 6095 } # Kallias, Leuke Akte Kyrenaike, Pnigeus, Graias, Abid -> QASR_ASH_SHAMMAS + link = { autogenerated = yes imp = 445 imp = 3477 imp = 3478 ck3 = 6094 } # Dyme, Pedonia, Derras -> AL-HAMAM + link = { autogenerated = yes imp = 5538 imp = 5539 imp = 5555 ck3 = 6093 } # Gargara, Zethin, Carnasa -> SIWA + link = { autogenerated = yes imp = 5540 imp = 5537 imp = 5536 ck3 = 6092 } # Areg, Ammon, Sitra -> AIN_AL-GHANBI + link = { autogenerated = yes imp = 5534 imp = 5535 ck3 = 6091 } # Varam, Colira -> AL-HARRA + link = { autogenerated = yes imp = 5529 imp = 5527 imp = 5528 imp = 5541 ck3 = 6090 } # Poka, Tablamum, Elassa, Shunne -> BAWITI + link = { autogenerated = yes imp = 5530 imp = 5531 ck3 = 6089 } # Mandish, Parva -> AL-BAHRIYA + link = { autogenerated = yes imp = 5525 imp = 5523 imp = 5524 ck3 = 6088 } # Tawar, Farafra, Bishaya -> AL-FARAFRA + link = { autogenerated = yes imp = 5511 imp = 5514 ck3 = 6087 } # Trimithis, Farafra -> AL-QASR-DAKHLA + link = { autogenerated = yes imp = 5512 imp = 5509 imp = 5513 ck3 = 6086 } # Thenete, Kellis, Parammon -> TUNAYDA + link = { autogenerated = yes imp = 5506 imp = 5507 ck3 = 6084 } # Tchonemyris, Tabenesse -> BARIS + link = { autogenerated = yes imp = 5504 imp = 5503 imp = 5505 ck3 = 6083 } # Hibis, Gibra, Amura -> KHARGA + link = { autogenerated = yes imp = 591 imp = 577 ck3 = 6081 } # Syene, Omboi -> ASWAN + link = { autogenerated = yes imp = 575 imp = 574 imp = 578 ck3 = 6080 } # Eileithyiopolis, Latopolis, Dunqash -> ZARNIKH + link = { autogenerated = yes imp = 576 ck3 = 6079 ck3 = 6082 } # Apollinopolis Megale -> UDFU, ASWAN-WEST + link = { autogenerated = yes imp = 568 imp = 569 imp = 572 ck3 = 6077 } # Petemout, Diospolis Magna, Hermonthis -> QUS + link = { autogenerated = yes imp = 564 imp = 566 imp = 5286 ck3 = 6076 } # Kaine, Koptos, IMPASSIBLE TERRAIN 286 -> QINA + link = { autogenerated = yes imp = 562 imp = 563 ck3 = 6074 } # Diospolis, Tenthyris -> HUW + link = { autogenerated = yes imp = 560 imp = 558 ck3 = 6073 } # Thinis, Tripheion -> IBSHAYA + link = { autogenerated = yes imp = 557 imp = 559 ck3 = 6072 } # Panopolis, Ptolemais Hermeiou -> IKHMIN + link = { autogenerated = yes imp = 553 imp = 556 ck3 = 6071 } # Lykopolis, Antaiopolis -> BAWIT + link = { autogenerated = yes imp = 5500 imp = 555 ck3 = 6070 } # Erebe, Hypsele -> ASYUT + link = { autogenerated = yes imp = 6202 imp = 6193 imp = 5900 ck3 = 607 } # Irkant, Zhev, Dryna -> Sarkel + link = { autogenerated = yes imp = 554 imp = 5501 ck3 = 6069 } # Pokis, Pohe -> MANFALUT + link = { autogenerated = yes imp = 548 imp = 551 imp = 552 ck3 = 6068 } # Alabastronpolis, Monkanei, Koussai -> ANSINA + link = { autogenerated = yes imp = 546 ck3 = 6064 } # Kynopolis -> IHRIT + link = { autogenerated = yes imp = 5533 imp = 547 imp = 5532 ck3 = 6063 } # Berku, Chysis, Kom Namrud -> AL-BAHNASA + link = { autogenerated = yes imp = 545 imp = 544 ck3 = 6062 } # Oxyrhynchus, Herakleopolis -> AHNAS + link = { autogenerated = yes imp = 5547 imp = 5546 imp = 5548 ck3 = 6061 } # Philoteris, Pseneros, Kerkethoris -> IQNA + link = { autogenerated = yes imp = 7631 imp = 7622 ck3 = 606 } # Irkat, Skarin -> Petigoria + link = { autogenerated = yes imp = 5549 imp = 541 ck3 = 6058 } # Takyris, Karanis -> BUSIR + link = { autogenerated = yes imp = 515 imp = 527 ck3 = 6055 } # Naukratis, Atarbechis-Aphroditopolis -> RAMSIS + link = { autogenerated = yes imp = 531 imp = 517 ck3 = 6054 } # Psenemphaia, Hermopolis Mikra -> DAMANHUR + link = { autogenerated = yes imp = 453 ck3 = 6053 } # Taposiris -> ALEXANDRIA + link = { autogenerated = yes imp = 516 imp = 529 imp = 530 imp = 532 ck3 = 6052 } # Alexandria, Kanopos, Bolbitine, Chaireon -> RASHID + link = { autogenerated = yes imp = 528 imp = 526 ck3 = 6051 } # Isieion, Onouphis Ano -> MINUF + link = { autogenerated = yes imp = 520 imp = 518 imp = 519 ck3 = 6050 } # Xois, Buto, Sais -> IBYAR + link = { autogenerated = yes imp = 6213 imp = 6211 imp = 6216 imp = 6217 imp = 6212 ck3 = 605 } # Achkhacsh, Urgenarcha, Vyalke, Ogron, Ygrre -> Beksima + link = { autogenerated = yes imp = 7691 ck3 = 6049 } # Perseos Skope -> NASTARAWA + link = { autogenerated = yes imp = 523 imp = 521 imp = 522 ck3 = 6047 } # Pakhnemounis, Sebennytos, Diospolis Kato -> SAMANNUD + link = { autogenerated = yes imp = 7690 imp = 508 ck3 = 6046 } # Tamiathis, Tanis -> DUMIYAT + link = { autogenerated = yes imp = 510 imp = 7688 ck3 = 6045 } # Daphnai, Thenessos -> TINNIS + link = { autogenerated = yes imp = 511 imp = 655 ck3 = 6044 } # Phakoussai, Serapieion -> FAQUS + link = { autogenerated = yes imp = 534 imp = 7689 ck3 = 6043 } # Mendes, Hermopolis -> DAQAHLA + link = { autogenerated = yes imp = 504 imp = 513 imp = 524 ck3 = 6041 } # Leontopolis, Athribis, Pharbaithos -> QALYUB + link = { autogenerated = yes imp = 7668 imp = 503 ck3 = 6040 } # Bilbeis, Bubastis -> BILBAYS + link = { autogenerated = yes imp = 5905 imp = 5906 imp = 5903 ck3 = 604 } # Iska, Vorena, Gonnema -> Khazaran + link = { autogenerated = yes imp = 509 imp = 525 ck3 = 6038 } # Pelusium, Sile -> FARAMA + link = { autogenerated = yes imp = 535 ck3 = 6036 } # Ostrakine -> WARRADA + link = { autogenerated = yes imp = 1604 imp = 1600 imp = 506 ck3 = 6035 } # Phoinikon, Marah, Cleopatris -> QALAT_JUNDI + link = { autogenerated = yes imp = 1675 imp = 5287 ck3 = 6034 } # Pharan, IMPASSIBLE TERRAIN 287 -> FARAN + link = { autogenerated = yes imp = 1682 ck3 = 6033 } # Rhaithou -> AT-TUR + link = { autogenerated = yes imp = 1693 imp = 1710 ck3 = 6032 } # Horeb Mons, Sina Meridionalis -> STCATHERINE + link = { autogenerated = yes imp = 1684 imp = 1708 ck3 = 6031 } # Ain Hudera, Tell el-Mashraba -> DAHAB + link = { autogenerated = yes imp = 7625 imp = 1674 imp = 7624 imp = 7626 ck3 = 603 } # Didai, Cumania, Contani, Arukai -> Cabarda + link = { autogenerated = yes imp = 9152 imp = 9150 imp = 9151 imp = 9153 ck3 = 6029 } # $PROV7687$, $PROV7687$, $PROV7687$, $PROV7687$ -> River Nile + link = { autogenerated = yes imp = 9149 imp = 7669 imp = 7674 imp = 7675 imp = 7687 imp = 9146 imp = 9147 imp = 9148 ck3 = 6028 } # $PROV7687$, Nile, the Pelusiac, Nile, the Bolbitine, Nile, the Phatnitic, Nile, $PROV7687$, $PROV7687$, $PROV7687$ -> River Nile + link = { autogenerated = yes imp = 7683 imp = 7680 imp = 7681 imp = 7682 ck3 = 6027 } # Nile, the Bolbitine, Nile, the Bolbitine, Nile, the Bolbitine, Nile, the Bolbitine -> River Nile + link = { autogenerated = yes imp = 7678 imp = 7676 imp = 7677 imp = 7679 ck3 = 6026 } # Nile, the Phatnitic, Nile, the Phatnitic, Nile, the Phatnitic, Nile, the Phatnitic -> River Nile + link = { autogenerated = yes imp = 964 ck3 = 6025 } # Teredon -> HIFAIR + link = { autogenerated = yes imp = 5399 ck3 = 6022 ck3 = 6023 ck3 = 6024 } # Hawmah -> AL-BASRA, AIN_SAID, AR-RUKHAIL + link = { autogenerated = yes imp = 942 ck3 = 6020 ck3 = 6021 } # Apologos -> AL-UBULLA, MATARA-IRAQ + link = { autogenerated = yes imp = 965 ck3 = 6019 } # Apphana -> BALJAN + link = { autogenerated = yes imp = 969 ck3 = 6017 ck3 = 6018 } # Darak -> ABBADAN, BASIYAN + link = { autogenerated = yes imp = 941 imp = 940 imp = 971 ck3 = 6016 } # Forat, Alexandria Susiana, Ampe -> BAYAN + link = { autogenerated = yes imp = 972 ck3 = 6015 } # Arac -> JUBBA + link = { autogenerated = yes imp = 943 ck3 = 6014 } # Soloke -> DAWRAQ + link = { autogenerated = yes imp = 945 ck3 = 6011 ck3 = 6012 } # Taryana -> AHWAZ, HUWAIZA + link = { autogenerated = yes imp = 975 ck3 = 6010 } # Cissia -> BASINNA + link = { autogenerated = yes imp = 1714 imp = 1707 ck3 = 601 } # Onogouris, Kotais -> Kutaisi + link = { autogenerated = yes imp = 970 ck3 = 6009 } # Abara -> AL-MADHAR + link = { autogenerated = yes imp = 938 ck3 = 6006 ck3 = 6007 ck3 = 6008 } # Nina -> AL-FARUT, AL-QATR, NAHR_SIMMARA + link = { autogenerated = yes imp = 935 ck3 = 6004 ck3 = 6005 } # Girsu -> AS-SALIQ, AR-RUSAFA-IRAQ + link = { autogenerated = yes imp = 932 imp = 930 imp = 931 imp = 936 imp = 937 ck3 = 6003 } # Dabrum, Kuara, Isin, Fara, Uruk -> NIFFAR + link = { autogenerated = yes imp = 7723 imp = 939 imp = 5303 ck3 = 6002 } # Durum, Larsa, Mesopotamian Desert -> AL-AKHADID + link = { autogenerated = yes imp = 922 ck3 = 5992 ck3 = 5991 ck3 = 5993 } # Aqola -> AL-KUFA, SAFATA, AN-NAJAF + link = { autogenerated = yes imp = 7634 imp = 4559 ck3 = 599 } # Khulor, Pataroue -> Yaseni + link = { autogenerated = yes imp = 715 imp = 713 imp = 714 imp = 720 ck3 = 5985 } # Gadara Judea, Livias, Tyros, Asophon -> JARASH + link = { autogenerated = yes imp = 717 imp = 712 ck3 = 5983 } # Madaba, Aroes -> MUJIB + link = { autogenerated = yes imp = 731 imp = 681 ck3 = 5981 } # Mhai, Characmoba -> MAAB + link = { autogenerated = yes imp = 4562 imp = 4563 imp = 4564 imp = 4565 ck3 = 598 } # Hermonassa, Phanagoria, Labrys, Gorgippia -> Tmutarakan + link = { autogenerated = yes imp = 730 ck3 = 5978 ck3 = 5979 } # Adrou -> SHAWBAK, AT-TAFILA + link = { autogenerated = yes imp = 727 ck3 = 5975 ck3 = 5976 } # Aramaua -> AL-HUMAYMA, MAAN + link = { autogenerated = yes imp = 724 ck3 = 5974 } # Ankale -> AQABA + link = { autogenerated = yes imp = 704 ck3 = 5973 } # Aelana -> AILA + link = { autogenerated = yes imp = 706 imp = 705 imp = 703 ck3 = 5972 } # Bossia, Sabkah, Gypsaria -> ARANDAL + link = { autogenerated = yes imp = 728 imp = 707 imp = 729 imp = 708 ck3 = 5971 } # Auara, Arieldela, Petra, Kalgouia -> BAIDHA-PETRA + link = { autogenerated = yes imp = 701 imp = 656 imp = 657 imp = 697 imp = 702 ck3 = 5970 } # Maghara, Rinokoloura, Bitylion, Nessana, Quseima -> AL-ARISH + link = { autogenerated = yes imp = 4558 ck3 = 597 } # Paniardis -> Azov + link = { autogenerated = yes imp = 709 ck3 = 5969 ck3 = 5980 } # Toloha -> ZUGHAR, KERAK + link = { autogenerated = yes imp = 696 imp = 658 imp = 659 imp = 694 ck3 = 5968 } # Betomolachon, Raphia, Gaza, Maon -> GHAZZA + link = { autogenerated = yes imp = 693 imp = 660 ck3 = 5967 } # Thala, Ascalon -> ASCALON + link = { autogenerated = yes imp = 700 imp = 692 imp = 695 imp = 710 imp = 711 imp = 698 ck3 = 5966 } # Mampsis, Adora, Elousa, Zoara, Masada, Sobata -> HEBRON + link = { autogenerated = yes imp = 688 imp = 684 imp = 686 imp = 687 imp = 691 ck3 = 5965 } # Thekoa, Jericho, Emmaous, Jerusalem, Hebron -> JERUSALEM + link = { autogenerated = yes imp = 719 imp = 676 imp = 680 imp = 683 ck3 = 5964 } # Akraba, Salem, Shekhem, Ephraim -> NABLUS + link = { autogenerated = yes imp = 690 imp = 689 ck3 = 5963 } # Marisa, Bethar -> AR-RAMLA + link = { autogenerated = yes imp = 682 imp = 661 imp = 662 imp = 663 imp = 664 imp = 685 ck3 = 5962 } # Antipatris, Ashdod, Iamneia, Ioppe, Apollonia Palaistinias, Lydda -> YAFFA + link = { autogenerated = yes imp = 665 imp = 667 imp = 668 imp = 671 imp = 678 imp = 679 ck3 = 5961 } # Stratonos Pyrgos, Dora, Boukolonpolis, Kefar Shuni, Narbata, Samaria -> CESAREA + link = { autogenerated = yes imp = 670 imp = 666 imp = 669 imp = 677 ck3 = 5960 } # Ake-Ptolemais, Skyamina, Jellemeh, Asochis -> ACRE + link = { autogenerated = yes imp = 6178 imp = 4557 imp = 6180 imp = 6183 imp = 6187 imp = 6189 ck3 = 596 } # Ganka, Tanais, Vygriya, Yuty, Zhutikka, Arn -> Tana + link = { autogenerated = yes imp = 648 imp = 672 imp = 673 imp = 674 ck3 = 5959 } # Gennesar, Iezreel, Scythopolis, Philoteria -> TIBERIAS + link = { autogenerated = yes imp = 721 imp = 675 imp = 722 ck3 = 5958 } # Gerasa, Pella, Gadara -> IRBID + link = { autogenerated = yes imp = 735 ck3 = 5957 } # Canatha -> AS-SUWAIDA-HAURAN + link = { autogenerated = yes imp = 7554 imp = 736 ck3 = 5956 } # Arabia Deserta, Mothana -> SARKHAD + link = { autogenerated = yes imp = 732 imp = 723 imp = 733 imp = 737 imp = 739 ck3 = 5954 } # Adraha, Hippos, Abila Dekapoleos, Raphon, Karnaia -> ZURRA + link = { autogenerated = yes imp = 750 ck3 = 5953 ck3 = 5924 } # Damascus -> DARAYYA, DAMASCUS + link = { autogenerated = yes imp = 756 imp = 757 imp = 7648 ck3 = 5950 } # Cunna, Oneuatha, Impassable -> AL-QARYATAN + link = { autogenerated = yes imp = 8963 imp = 8964 imp = 8965 imp = 9076 ck3 = 595 } # Karpovka, Ilovlya, Olene, Medu -> Sarysyn + link = { autogenerated = yes imp = 754 imp = 755 imp = 775 imp = 800 ck3 = 5948 } # Palmyra, Veriaraca, Heliaramia, Gennaes -> TADMUR + link = { autogenerated = yes imp = 801 ck3 = 5947 ck3 = 5945 } # Helela -> ARAK, AS-SUKHNA + link = { autogenerated = yes imp = 802 ck3 = 5946 } # Oriza -> URD + link = { autogenerated = yes imp = 806 ck3 = 5943 ck3 = 4880 } # Birtha -> RATLA, AL-KHANUQA + link = { autogenerated = yes imp = 850 ck3 = 5942 ck3 = 1343 } # Amsareddi -> SURIYA, SYRIAN DESERT + link = { autogenerated = yes imp = 851 ck3 = 5941 } # Ammattha -> KHUNASIRA + link = { autogenerated = yes imp = 803 imp = 815 ck3 = 5940 } # Resafa, Seriane -> AR-RUSAFA + link = { autogenerated = yes imp = 6198 imp = 6196 imp = 6197 imp = 6200 ck3 = 594 } # Urgast, Volat, Urghno, Urvel -> Kazarki + link = { autogenerated = yes imp = 814 ck3 = 5938 ck3 = 5939 } # Barbalissus -> BUZAA, SIFFIN + link = { autogenerated = yes imp = 751 imp = 752 imp = 753 ck3 = 5937 } # Abila Syrias, Gerra, Zenopolis -> ANJAR + link = { autogenerated = yes imp = 7985 imp = 787 imp = 5996 ck3 = 5936 } # Telmenissos, Beloi, Diokleion Mons -> AR-RIKHA + link = { autogenerated = yes imp = 797 imp = 793 ck3 = 5935 } # Chalcis ad Belum, Gindaros -> ARTAH + link = { autogenerated = yes imp = 813 ck3 = 5933 ck3 = 5934 } # Anasartha -> QINNASRIN, HALAB + link = { autogenerated = yes imp = 782 ck3 = 5932 } # Pharnake -> KAFARTAB + link = { autogenerated = yes imp = 816 ck3 = 5931 } # Theleda -> SALAMIYA + link = { autogenerated = yes imp = 799 ck3 = 5930 } # Occaraba -> HAMA + link = { autogenerated = yes imp = 9066 imp = 9067 imp = 9069 ck3 = 593 } # Citras, Aerac, Paoi -> Khopyor + link = { autogenerated = yes imp = 776 ck3 = 5929 ck3 = 5949 } # Otthara -> HIMS, JUDR + link = { autogenerated = yes imp = 770 imp = 761 ck3 = 5928 } # Cara, Triparadeisos -> JUSIYA + link = { autogenerated = yes imp = 758 imp = 759 ck3 = 5927 } # Vallis Alba, Thelseai -> AL-QASTAL + link = { autogenerated = yes imp = 760 ck3 = 5925 ck3 = 1380 } # Iabrouda -> AZ-ZABADANI, SYRIAN IMPASSABLE + link = { autogenerated = yes imp = 738 ck3 = 5923 } # Maked -> NAWA + link = { autogenerated = yes imp = 740 imp = 7988 ck3 = 5922 } # Dan, Hermon Mons -> BANIYAS + link = { autogenerated = yes imp = 743 imp = 742 imp = 744 imp = 745 ck3 = 5921 } # Tyrus, Kadasa, Hammon, Gelil -> TYRE + link = { autogenerated = yes imp = 747 imp = 741 imp = 746 imp = 5389 ck3 = 5920 } # Sidon, Abila, Sarepta, IP 390 -> SAIDA + link = { autogenerated = yes imp = 748 imp = 749 imp = 765 imp = 766 ck3 = 5919 } # Berytus, Brochoi, Berothe, Byblos -> BEIRUT + link = { autogenerated = yes imp = 772 imp = 774 imp = 8011 ck3 = 5917 } # Kabiosa, Hemesa, Korlon -> RAFANIYA-KRAK + link = { autogenerated = yes imp = 779 ck3 = 5916 } # Arados -> ANTARTUS + link = { autogenerated = yes imp = 777 imp = 781 ck3 = 5915 } # Amathe, Larissa -> SHAIZAR + link = { autogenerated = yes imp = 784 imp = 786 imp = 788 ck3 = 5912 } # Sigon, Leuke Akte, Posideion -> LATAKIA + link = { autogenerated = yes imp = 791 imp = 789 imp = 790 ck3 = 5910 } # Darkus, Palaeopolis, Antigoneia -> ANTIOCH + link = { autogenerated = yes imp = 808 ck3 = 5907 } # Beselatha -> AZAZ + link = { autogenerated = yes imp = 798 ck3 = 5906 } # Hadad -> TALL_AFRIN + link = { autogenerated = yes imp = 795 imp = 8021 ck3 = 5905 } # Myriandros, Syrian Gates -> ALEXANDRETTA + link = { autogenerated = yes imp = 792 imp = 1871 ck3 = 5904 } # Trapezon, Syrian Gates -> BAGHRAS + link = { autogenerated = yes imp = 812 imp = 794 ck3 = 5903 } # Aliareia, Cyrrhus -> QURUS + link = { autogenerated = yes imp = 807 ck3 = 5902 ck3 = 5908 } # Bambyce -> JARABULUS, MANBIJ + link = { autogenerated = yes imp = 852 ck3 = 5901 ck3 = 9661 } # Chaonia -> TALL_BASHIR, Northern Mountains of Antioch + link = { autogenerated = yes imp = 810 ck3 = 5900 } # Zeugma -> AINTAB + link = { autogenerated = yes imp = 3870 ck3 = 58 } # Eudosia Australis -> JELLING + link = { autogenerated = yes imp = 1500 imp = 1529 imp = 1531 imp = 1532 imp = 1539 imp = 1533 ck3 = 5794 } # Chauon, Darman, Malejin, Zarawand, Jula, Shamiram -> Gher + link = { autogenerated = yes imp = 1631 ck3 = 5793 } # Spandaran -> Barzand + link = { autogenerated = yes imp = 1618 ck3 = 5792 } # Mish -> Nakorzan + link = { autogenerated = yes imp = 1632 imp = 1649 ck3 = 5791 } # Balanrot, Masalas -> Langarkanan + link = { autogenerated = yes imp = 1638 imp = 1654 ck3 = 5789 } # Warthan, Mochi -> Varsan + link = { autogenerated = yes imp = 1652 ck3 = 5788 } # Talish -> Gabarawan + link = { autogenerated = yes imp = 1540 imp = 1538 imp = 1623 ck3 = 5787 } # Parakan, Goltan, Arevik -> Jugha + link = { autogenerated = yes imp = 1667 imp = 1613 imp = 1664 imp = 1665 imp = 7737 ck3 = 5786 } # Aghahechk, Shalat, Arank, Parsakank, Qarqar Volcano -> Goris + link = { autogenerated = yes imp = 1669 imp = 1501 imp = 1542 imp = 1541 imp = 5214 ck3 = 5785 } # Chahuk, Naxouana, Arxata, Sangibut, IMPASSIBLE TERRAIN 214 -> Naxcivan + link = { autogenerated = yes imp = 1650 imp = 1617 imp = 1639 ck3 = 5784 } # Sisakan Inferior, Nakorzan, Amaras -> Ktis + link = { autogenerated = yes imp = 1670 ck3 = 5783 } # Partaw -> Parnes + link = { autogenerated = yes imp = 1608 imp = 1605 ck3 = 5780 } # Berd, Gezlu -> Tovuz + link = { autogenerated = yes imp = 1671 imp = 1584 ck3 = 5779 } # Southwest Arran, Utidorsi -> Barda + link = { autogenerated = yes imp = 1635 imp = 1661 ck3 = 5778 } # Nyudi, Arash -> Mingachevir + link = { autogenerated = yes imp = 1637 ck3 = 5777 } # Mingechaur -> Ganja + link = { autogenerated = yes imp = 1672 imp = 1651 ck3 = 5776 } # Southeast Arran, Shahargah -> Paidangaran + link = { autogenerated = yes imp = 1655 ck3 = 5775 } # Kaladasht -> Kudevan + link = { autogenerated = yes imp = 1636 ck3 = 5774 } # Chabala -> Kabala + link = { autogenerated = yes imp = 1647 ck3 = 5773 } # Salyan -> Salyan + link = { autogenerated = yes imp = 1644 imp = 1662 ck3 = 5772 } # Paytakaran, Lupenia -> Maras + link = { autogenerated = yes imp = 1642 imp = 1633 ck3 = 5771 } # Bagawan, Absheron -> Baku + link = { autogenerated = yes imp = 1643 imp = 1641 ck3 = 5770 } # Samukh, Gumbati -> Dedoplitskhara + link = { autogenerated = yes imp = 1645 ck3 = 5769 ck3 = 673 } # Shaki -> Ghisi, Nukhpata + link = { autogenerated = yes imp = 1659 imp = 1656 ck3 = 5768 } # Lagodekhi, Zakatala -> Zaqatala + link = { autogenerated = yes imp = 1660 ck3 = 5767 } # Cambysene -> Ujarma + link = { autogenerated = yes imp = 5435 ck3 = 5766 } # Kurus -> Kharnabuji + link = { autogenerated = yes imp = 1658 ck3 = 5765 } # Shilda -> Gavazi + link = { autogenerated = yes imp = 1607 imp = 1609 ck3 = 5762 } # Idzhevan, Kariglukh -> Kayan + link = { autogenerated = yes imp = 1611 imp = 1678 ck3 = 5760 } # Sagarejo, Seusamora -> Rustavi + link = { autogenerated = yes imp = 8466 ck3 = 576 } # Blagoveshchenskaya -> Debryansk + link = { autogenerated = yes imp = 1612 imp = 1610 imp = 1686 imp = 5206 ck3 = 5759 } # Tbilisi, Sary-tepe, Samshvilde, IMPASSIBLE TERRAIN 206 -> Tbilisi + link = { autogenerated = yes imp = 1703 imp = 1704 ck3 = 5757 } # Bori, Sarapanis -> Shorapann + link = { autogenerated = yes imp = 1706 imp = 1696 imp = 1700 imp = 5203 imp = 5204 ck3 = 5756 } # Rhodopolis, Leukothea, Zekari Pass, IMPASSIBLE TERRAIN 203, IMPASSIBLE TERRAIN 204 -> Vartsikhe + link = { autogenerated = yes imp = 1722 imp = 1711 imp = 1723 ck3 = 5754 } # Vashnari, Telephis, Pichvnari -> Poti + link = { autogenerated = yes imp = 1705 imp = 1746 imp = 1748 ck3 = 5753 } # Skandis, Itkhvissi, Modinakhe -> Kvara + link = { autogenerated = yes imp = 1749 ck3 = 5752 ck3 = 5751 } # Brili -> Kasriskari, Ambrolauri + link = { autogenerated = yes imp = 1717 imp = 1720 ck3 = 5749 } # Chaladidi, Phasis -> Zugdidi + link = { autogenerated = yes imp = 1739 imp = 1735 imp = 1737 imp = 1738 ck3 = 5747 } # Tqvarcheli, Ergeta, Ziganne, Gyenos -> Gudakva + link = { autogenerated = yes imp = 1740 ck3 = 5746 } # Tzibile -> Tskhumi + link = { autogenerated = yes imp = 1742 imp = 1741 ck3 = 5745 } # Anakopia, Dioscurias -> Anacopia + link = { autogenerated = yes imp = 1743 ck3 = 5744 } # Pityous -> Bichvinta + link = { autogenerated = yes imp = 1753 ck3 = 5741 ck3 = 5733 ck3 = 5736 } # Kola -> Artaani, Zariskat, Taoskari + link = { autogenerated = yes imp = 1697 imp = 1755 imp = 5202 ck3 = 5739 } # Akhaltsikhe, Colit, IMPASSIBLE TERRAIN 202 -> Akhaltsikhe + link = { autogenerated = yes imp = 1702 imp = 1695 imp = 1699 imp = 5205 ck3 = 5738 } # Javakheti, Borjomi, Mzetamze, IMPASSIBLE TERRAIN 205 -> Tmogvi + link = { autogenerated = yes imp = 1736 ck3 = 5735 } # Vagharshakert -> Sevuki + link = { autogenerated = yes imp = 1752 imp = 1581 ck3 = 5734 } # Chorzene, Eruandashat -> Kars + link = { autogenerated = yes imp = 1569 ck3 = 5730 ck3 = 5795 } # Paracata -> Tsalakert, Mount Ararat + link = { autogenerated = yes imp = 1588 imp = 1591 ck3 = 5729 } # Kamo, Karchakhpyur -> Garni + link = { autogenerated = yes imp = 1589 imp = 1575 ck3 = 5728 } # Atarbegian, Erebuni -> Yerevan + link = { autogenerated = yes imp = 1587 imp = 1586 imp = 1585 imp = 5201 ck3 = 5725 } # Vardbach, Hokhmik, Shirakavan, IMPASSIBLE TERRAIN 201 -> Dlim + link = { autogenerated = yes imp = 1561 imp = 996 imp = 997 imp = 999 ck3 = 5724 } # Mardastan, Alouaka, Kotorox, Hayk -> Hadamakert + link = { autogenerated = yes imp = 989 imp = 1560 imp = 987 imp = 998 ck3 = 5723 } # Nymphaeum, Andzevatsik, Zoaranda, Artemita Vaspurakan -> Akhtamar + link = { autogenerated = yes imp = 1536 imp = 1534 imp = 1535 imp = 1559 imp = 1537 imp = 1546 ck3 = 5722 } # Maku, Rusakhinili, Qiz Chakhlu, Aladagh Qal'eh, Nuarsak, Shawarshan -> Maku + link = { autogenerated = yes imp = 1549 imp = 1548 imp = 1551 imp = 1568 imp = 1544 imp = 1547 imp = 5212 ck3 = 5720 } # Teroua, Tambat, Ardeank', Hariza, Catispi, Keshmesh, Ararat Volcano -> Bagavan + link = { autogenerated = yes imp = 993 ck3 = 5718 } # Calata -> Khlat + link = { autogenerated = yes imp = 978 imp = 846 ck3 = 5717 } # Tatyene, Cymiza -> Tatvan + link = { autogenerated = yes imp = 994 ck3 = 5716 ck3 = 5715 } # Ashtishat -> Musch, Varto + link = { autogenerated = yes imp = 8010 imp = 8006 ck3 = 5712 } # Koloua, Koubina Mountains -> Balu + link = { autogenerated = yes imp = 8008 imp = 1765 imp = 1767 imp = 5191 ck3 = 5711 } # Palios, Koubina, Eriza, IMPASSIBLE TERRAIN 191 -> Koloberd + link = { autogenerated = yes imp = 1854 imp = 7982 ck3 = 5708 } # Melitia, Perrhe Mountains -> Arca + link = { autogenerated = yes imp = 858 imp = 1855 imp = 235 ck3 = 5707 } # Rhandeia, Gareina, Tomisa -> Arsamosata + link = { autogenerated = yes imp = 1853 imp = 1769 imp = 1852 imp = 1858 imp = 5189 ck3 = 5706 } # Kiakis, Sabos, Sinispora, Daskousa, IMPASSIBLE TERRAIN 189 -> Arguvan + link = { autogenerated = yes imp = 1733 imp = 1766 imp = 7844 ck3 = 5705 } # Pisingara, Arane, Zimara -> Tephrice + link = { autogenerated = yes imp = 1789 imp = 1790 imp = 1833 ck3 = 5700 } # Syderos, Komana Pontike, Dazimon -> Hypseie + link = { autogenerated = yes imp = 3873 ck3 = 57 } # Eudosia Borealis -> AARHUS + link = { autogenerated = yes imp = 1776 imp = 1770 imp = 1772 ck3 = 5699 } # Arauraka, Satala, Sediska -> Sinoria + link = { autogenerated = yes imp = 1792 imp = 1787 imp = 7996 ck3 = 5698 } # Kabeira, Danai, Danae Mountains -> Neocaesara + link = { autogenerated = yes imp = 1763 imp = 8002 ck3 = 5695 } # Tareina, Eriza Mountains -> Keltzine + link = { autogenerated = yes imp = 1760 imp = 1762 ck3 = 5694 } # Sinoria, Bagariza -> Baeberdon + link = { autogenerated = yes imp = 1761 ck3 = 5693 } # Charton -> Hyspiratis + link = { autogenerated = yes imp = 1793 imp = 1786 imp = 1795 ck3 = 5690 } # Side Pontike, Sauronisena, Kotyora -> Polemonium + link = { autogenerated = yes imp = 1806 imp = 7995 ck3 = 5689 } # Themiskyra, Kabeira Mountains -> Oinaion + link = { autogenerated = yes imp = 197 imp = 202 ck3 = 5684 } # Sarmalios, Doudousa -> Ecobrogis + link = { autogenerated = yes imp = 1825 ck3 = 5683 } # Taouion -> Tabia + link = { autogenerated = yes imp = 334 imp = 6431 ck3 = 5682 } # Paphos, Marion -> Paphos + link = { autogenerated = yes imp = 332 imp = 338 imp = 7991 ck3 = 5681 } # Kition, Amathous, Idalion -> Nicosia + link = { autogenerated = yes imp = 333 imp = 336 ck3 = 5680 } # Soloi, Tamassos -> Soli_CYP + link = { autogenerated = yes imp = 9130 ck3 = 568 ck3 = 5219 } # Gintei -> Smolensk, Dorogobyzh + link = { autogenerated = yes imp = 6433 imp = 335 imp = 8055 ck3 = 5679 } # Chythroi, Kyrenia, Cyprus Mons -> Cerynia + link = { autogenerated = yes imp = 177 imp = 1971 ck3 = 5678 } # Kindyria, Soatra -> Katakekaumene + link = { autogenerated = yes imp = 1934 imp = 178 imp = 1924 imp = 7966 ck3 = 5677 } # Iconium, Tyriaion, Pappa, Ikonion Mountains -> Pappa + link = { autogenerated = yes imp = 1950 ck3 = 5676 } # Derbe -> Barata + link = { autogenerated = yes imp = 1955 imp = 169 ck3 = 5675 } # Thebasa, Laranda -> Derbe + link = { autogenerated = yes imp = 1892 imp = 7968 ck3 = 5674 } # Elaioussa, Kyinda -> Soloi + link = { autogenerated = yes imp = 7964 imp = 1780 ck3 = 5673 } # Koropissos, Artanada -> Laranalia + link = { autogenerated = yes imp = 1785 ck3 = 5672 } # Ilistra -> Isaura + link = { autogenerated = yes imp = 1965 imp = 1920 imp = 7965 ck3 = 5671 } # Lystra, Ouasada, Lystra Mountains -> Lystra + link = { autogenerated = yes imp = 1922 imp = 1927 ck3 = 5670 } # Misteia, Tityassos -> Mistea + link = { autogenerated = yes imp = 8457 ck3 = 567 } # Tyutyunnytsya -> Novgorod Seversky + link = { autogenerated = yes imp = 1918 imp = 1921 imp = 7961 ck3 = 5669 } # Homonadeis, Amblada, Kagrai -> Ouasada + link = { autogenerated = yes imp = 7958 imp = 1885 imp = 7758 imp = 7959 ck3 = 5668 } # Kotenna, Selge, (Unknown), Etenna Mountains -> Kaklauma + link = { autogenerated = yes imp = 7971 imp = 1945 imp = 1953 imp = 5160 imp = 8062 ck3 = 5667 } # Eriza Karias, Colossae, Saleia Salbakes, IMPASSIBLE TERRAIN 160, Eriza Mons -> Salda + link = { autogenerated = yes imp = 1959 imp = 7953 ck3 = 5666 } # Takina, Lysinoe Mountains -> Parlais + link = { autogenerated = yes imp = 1949 imp = 1935 imp = 1988 imp = 7760 imp = 7954 imp = 5163 ck3 = 5665 } # Sagalassos, Baris, Kremna, Prostanna, Kormasa, IMPASSIBLE TERRAIN 163 -> Sagalassus + link = { autogenerated = yes imp = 1931 ck3 = 5663 ck3 = 5664 } # Adada -> Adada, Selge + link = { autogenerated = yes imp = 1926 imp = 1925 imp = 7955 ck3 = 5662 } # Anaboura, Tymbriada, Adada Mountains -> Neapolis + link = { autogenerated = yes imp = 1928 imp = 1930 imp = 1937 imp = 8060 ck3 = 5661 } # Tyita, Mordiaion, Euphorbion, Mordaion Mons -> Antiochia + link = { autogenerated = yes imp = 186 imp = 8012 ck3 = 5660 } # Eukarpia, Synnada Mountains -> Synnada + link = { autogenerated = yes imp = 8570 imp = 8563 imp = 8564 ck3 = 566 } # Volchya, Tikhaya Sosna, Chernyanka -> Oskol + link = { autogenerated = yes imp = 187 ck3 = 5659 } # Kidyessos -> Docimium + link = { autogenerated = yes imp = 184 imp = 182 imp = 1939 imp = 1941 imp = 7911 ck3 = 5658 } # Dokimeion, Aurokra, Prymnessos, Synnada, Sultan Mountains -> Amorion + link = { autogenerated = yes imp = 230 imp = 1777 imp = 179 imp = 7969 ck3 = 5657 } # Thymbrion, Klaneos, Okenoi, Men Mountains -> Philomelium + link = { autogenerated = yes imp = 180 imp = 181 ck3 = 5656 } # Keissia, Tolastochora -> Tyraion + link = { autogenerated = yes imp = 191 imp = 192 imp = 229 ck3 = 5655 } # Ouetissos, Kyballon, Orbana -> Germa + link = { autogenerated = yes imp = 183 ck3 = 5654 } # Abbasion -> Polybotus + link = { autogenerated = yes imp = 314 imp = 328 ck3 = 5653 } # Nakoleia, Orkistos -> Midaeum + link = { autogenerated = yes imp = 313 imp = 185 imp = 318 ck3 = 5652 } # Metropolis Phrygias, Ipsos, Meiros -> Nakoleia + link = { autogenerated = yes imp = 302 imp = 8013 ck3 = 5651 } # Kadoi, Akmoneia Mountains -> Aezani + link = { autogenerated = yes imp = 8404 imp = 8402 imp = 8403 imp = 8405 imp = 8406 ck3 = 565 } # Vovchansk, Vorskla, Zolochiv, Merefa, Krasnohrad -> Kharka + link = { autogenerated = yes imp = 1876 imp = 1987 imp = 1989 imp = 7942 ck3 = 5649 } # Physkos, Knidos, Kaunos, Daidala -> Cridus + link = { autogenerated = yes imp = 1958 imp = 1997 imp = 7944 ck3 = 5648 } # Kibyra, Boubon, Telmessos Mountains -> Cibyra + link = { autogenerated = yes imp = 1992 imp = 1995 imp = 7948 imp = 7946 ck3 = 5647 } # Telmessos, Xanthos, Kadyanda, Xanthos Mountains -> Telmessos + link = { autogenerated = yes imp = 1960 imp = 1961 imp = 1990 imp = 1991 imp = 7947 ck3 = 5646 } # Lagbe, Olbasa, Oinoanda, Podalia, Balboura -> Olbasa + link = { autogenerated = yes imp = 159 imp = 156 imp = 160 imp = 1993 imp = 1998 imp = 7949 imp = 7943 imp = 7945 imp = 7950 ck3 = 5645 } # Choma, Myra, Arykanda, Tlos, Patara, Kandyba, Tlos Mountains, Oenodanda Mountains, Kadyanda Mountains -> Myra + link = { autogenerated = yes imp = 162 imp = 161 imp = 7951 ck3 = 5644 } # Olympos, Limyra, Kitanaura -> Limyra + link = { autogenerated = yes imp = 170 imp = 164 imp = 171 imp = 5162 ck3 = 5643 } # Termessos, Phaselis, Isinda, IMPASSIBLE TERRAIN 162 -> Phaselis + link = { autogenerated = yes imp = 1986 imp = 5161 ck3 = 5642 } # Pogla, IMPASSIBLE TERRAIN 161 -> Cremna + link = { autogenerated = yes imp = 1911 imp = 167 imp = 7957 ck3 = 5641 } # Sillyon, Pednelissos, Aspendos Mountains -> Side + link = { autogenerated = yes imp = 1910 imp = 168 ck3 = 5640 } # Side, Aspendos -> Korakesion + link = { autogenerated = yes imp = 6169 imp = 6162 imp = 6167 imp = 6168 imp = 6172 ck3 = 564 } # Veryi, Ygast, Stetta, Ushkan, Uron -> Bakhmut + link = { autogenerated = yes imp = 1906 imp = 1905 imp = 1908 ck3 = 5639 } # Lairtes, Korakesion, Kolybrassos -> Selinus + link = { autogenerated = yes imp = 1784 imp = 7963 ck3 = 5636 } # Klibanos, Adrasos -> Claudiopolis_SELEUCIA + link = { autogenerated = yes imp = 1894 imp = 1896 imp = 7960 ck3 = 5635 } # Olbe, Ninika, Adrasos Mountains -> Corycus + link = { autogenerated = yes imp = 176 imp = 174 imp = 190 ck3 = 5634 } # Ekdaoumaoua, Kongoustos, Kinna -> Kinna + link = { autogenerated = yes imp = 204 ck3 = 5633 } # Aspona -> Aspona + link = { autogenerated = yes imp = 1811 ck3 = 5632 } # Parnassos -> Parnassos + link = { autogenerated = yes imp = 1788 imp = 1978 imp = 7735 ck3 = 5631 } # Nora, Salambriai, Argaios Mons Volcano -> Nazianzus + link = { autogenerated = yes imp = 173 imp = 1954 ck3 = 5630 } # Koropassos, Garsaura -> Garsaura + link = { autogenerated = yes imp = 6165 imp = 4556 imp = 6177 ck3 = 563 } # Vel, Karoia, Ishkenk -> Taganrog + link = { autogenerated = yes imp = 1914 imp = 1916 imp = 1938 ck3 = 5629 } # Perta, Kanna, Ardistama -> Comitanassus + link = { autogenerated = yes imp = 1940 ck3 = 5628 } # Cybistra -> Cybistra + link = { autogenerated = yes imp = 1883 imp = 1872 ck3 = 5627 } # Tarsus, Cilician Gates -> Podandus + link = { autogenerated = yes imp = 1877 imp = 1875 imp = 1880 ck3 = 5625 } # Anazarbos, Kastabala, Mopsouestia -> Anazaribus + link = { autogenerated = yes imp = 1881 imp = 1889 ck3 = 5624 } # Mallos, Magarsa -> Mallus + link = { autogenerated = yes imp = 1800 imp = 1900 ck3 = 5623 } # Soandos, Sasima -> Kyzistra + link = { autogenerated = yes imp = 1817 imp = 1813 imp = 1818 imp = 205 ck3 = 5622 } # Zoropassos, Nyssa, Ouenasa, Zeila -> Zeila_CHA + link = { autogenerated = yes imp = 1912 ck3 = 5621 ck3 = 5617 } # Kamoulianai -> Euaissa, Charsianon + link = { autogenerated = yes imp = 1820 ck3 = 5620 } # Odogra -> Aspona_CHA + link = { autogenerated = yes imp = 4549 imp = 4550 ck3 = 562 } # Pantikapaion, Kimmerikon -> Kerch + link = { autogenerated = yes imp = 1832 imp = 1923 ck3 = 5619 } # Saralos, Soanda -> Soanda + link = { autogenerated = yes imp = 1836 imp = 1909 imp = 1932 ck3 = 5618 } # Pteria, Sibora, Seiousa -> Therma + link = { autogenerated = yes imp = 1982 imp = 155 imp = 1794 ck3 = 5616 } # Ariaramneia, Kiskisos, Korama -> Arasaxa + link = { autogenerated = yes imp = 1802 imp = 1796 imp = 1803 imp = 7979 ck3 = 5615 } # Euagina, Arasaxa, Herpha, Arasaxa Mountains -> Herpha + link = { autogenerated = yes imp = 1805 imp = 6420 imp = 7970 ck3 = 5614 } # Anisa, Eulepa, Eulepa Mountains -> Armaxa + link = { autogenerated = yes imp = 1902 imp = 7976 ck3 = 5613 } # Kodouzalaba, Euagina Mountains -> Ariaratheia + link = { autogenerated = yes imp = 1878 ck3 = 5612 } # Sipha -> Cocussus + link = { autogenerated = yes imp = 1983 imp = 172 imp = 1976 imp = 7967 imp = 7977 ck3 = 5610 } # Kabassos, Komana Hierapolis, Kokousos, Baka Mons, Kiskikos Mountains -> Comana_LYK + link = { autogenerated = yes imp = 4543 imp = 4544 ck3 = 561 } # Athenaion, Theodosia -> Theodosia + link = { autogenerated = yes imp = 1994 imp = 1999 imp = 7978 ck3 = 5609 } # Arabissos, Tanadaris, Kokousos Mountains -> Tanadaris + link = { autogenerated = yes imp = 163 imp = 157 ck3 = 5608 } # Osdara, Ouarsapa -> Osdara + link = { autogenerated = yes imp = 1859 imp = 1861 imp = 5178 imp = 5179 ck3 = 5607 } # Arca, Zizoatra, IMPASSIBLE TERRAIN 178, IMPASSIBLE TERRAIN 179 -> Dalanda + link = { autogenerated = yes imp = 1898 imp = 1886 imp = 7975 ck3 = 5606 } # Gauraina, Dalanda, Ouarsapa Mountains -> Gauraina + link = { autogenerated = yes imp = 1851 imp = 1929 ck3 = 5605 } # Euspena, Phouphagena -> Euspena + link = { autogenerated = yes imp = 1891 imp = 1893 imp = 7974 ck3 = 5604 } # Karnalis, Dasmenda, Gauraina Mountains -> Karnalis + link = { autogenerated = yes imp = 1849 imp = 1899 ck3 = 5603 } # Tonosa, Malandara -> Malandra + link = { autogenerated = yes imp = 1848 imp = 1850 imp = 7973 ck3 = 5602 } # Zoana, Goundousa, Karnalis Mountains -> Sebasteia + link = { autogenerated = yes imp = 1844 imp = 1843 imp = 1846 ck3 = 5601 } # Talaura, Kamisa, Pedachthoe -> Pedachtoe + link = { autogenerated = yes imp = 1907 imp = 7972 ck3 = 5600 } # Agranai, Synnada Mountains -> Agranai + link = { autogenerated = yes imp = 4540 imp = 4537 imp = 4538 imp = 4539 imp = 4541 ck3 = 560 } # Lampas, Parthenion, Chersonesos, Charax, Aloustou Phrourion -> Chersonesus + link = { autogenerated = yes imp = 3876 ck3 = 56 } # Teutonia Centralis -> VIBORG + link = { autogenerated = yes imp = 1845 imp = 1839 imp = 1840 ck3 = 5599 } # Phiara, Karana, Ouerisa -> Sebastopolis + link = { autogenerated = yes imp = 1819 imp = 1791 imp = 1834 imp = 7998 imp = 7993 ck3 = 5598 } # Amaseia, Ibora, Zela, Gazioura, Amaseia Mountains -> Comana Pontica + link = { autogenerated = yes imp = 1838 imp = 7999 imp = 7997 ck3 = 5597 } # Pleuramis, Sermousa, Sermousa Mountains -> Zela + link = { autogenerated = yes imp = 1841 ck3 = 5596 } # Posdala -> Pteria + link = { autogenerated = yes imp = 1837 ck3 = 5595 } # Euchaita -> Carissa + link = { autogenerated = yes imp = 231 ck3 = 5594 } # Arinna -> Euchaita + link = { autogenerated = yes imp = 203 imp = 201 imp = 7922 ck3 = 5593 } # Asklepios, Zoaka, Klaneios Mountains -> Pimolisa + link = { autogenerated = yes imp = 1828 ck3 = 5592 } # Domanion -> Andrapa + link = { autogenerated = yes imp = 1823 imp = 1826 imp = 1831 imp = 7992 ck3 = 5591 } # Diakopa, Pteria Pontias, Pimolisa, Pteria Mountains -> Magnopolis + link = { autogenerated = yes imp = 1821 imp = 1822 imp = 7994 ck3 = 5590 } # Phazemon, Etonia, Kizari -> Amaseia + link = { autogenerated = yes imp = 4534 imp = 4535 ck3 = 559 } # Kalos Limen, Masella -> Kalos Limen + link = { autogenerated = yes imp = 1809 imp = 1824 ck3 = 5589 } # Gadilon, Andrapa -> Gadilon + link = { autogenerated = yes imp = 1810 imp = 5172 ck3 = 5588 } # Zaliches, IMPASSIBLE TERRAIN 172 -> Zagora + link = { autogenerated = yes imp = 216 imp = 213 ck3 = 5587 } # Zeita, Kimista -> Ziporea + link = { autogenerated = yes imp = 1827 imp = 5171 ck3 = 5584 } # Sakorsa, IMPASSIBLE TERRAIN 171 -> Pampeiopolis + link = { autogenerated = yes imp = 1829 imp = 1816 imp = 206 imp = 5173 ck3 = 5583 } # Blaine, Karambis, Kytoros, IMPASSIBLE TERRAIN 173 -> Ionopolis + link = { autogenerated = yes imp = 232 imp = 208 imp = 211 imp = 7918 ck3 = 5582 } # Bonita, Sesamos, Ziporeia, Sesamos Mountains -> Aigialos + link = { autogenerated = yes imp = 212 imp = 7917 ck3 = 5581 } # Parthenia, Parthenia Mountains -> Amastris + link = { autogenerated = yes imp = 198 imp = 196 ck3 = 5580 } # Gangra, Klossama -> Gangra + link = { autogenerated = yes imp = 7190 imp = 4530 imp = 4531 imp = 4532 imp = 4533 ck3 = 558 } # Kanit, Hippolaou Akra, Karkine, Hylaia, Taphros -> Oleshye + link = { autogenerated = yes imp = 193 ck3 = 5579 } # Gorbeous -> Papira + link = { autogenerated = yes imp = 228 imp = 189 ck3 = 5578 } # Androna, Gordion -> Vindia + link = { autogenerated = yes imp = 226 imp = 194 ck3 = 5577 } # Mnezos, Ankyra -> Lagania + link = { autogenerated = yes imp = 221 imp = 224 imp = 225 ck3 = 5576 } # Peion, Gordioukome, Lagania -> Iuliopolis + link = { autogenerated = yes imp = 222 imp = 223 ck3 = 5575 } # Bloukion, Legna -> Krateia + link = { autogenerated = yes imp = 217 imp = 7916 ck3 = 5574 } # Tobata, Krateia Mountains -> Hadrionopolis + link = { autogenerated = yes imp = 214 imp = 210 ck3 = 5573 } # Timonion, Dadybra -> Cratea + link = { autogenerated = yes imp = 215 imp = 7915 ck3 = 5572 } # Krateia, Artiknous Mountains -> Boli + link = { autogenerated = yes imp = 233 imp = 219 imp = 237 imp = 7913 ck3 = 5571 } # Kieros, Salon, Embolos, Bithynion Mountains -> Claudiopolis + link = { autogenerated = yes imp = 245 imp = 246 ck3 = 5570 } # Kios, Strobilos -> Crius + link = { autogenerated = yes imp = 6148 imp = 6140 imp = 6143 imp = 6150 imp = 6152 ck3 = 557 } # Nynt, Tahent, Aghonor, Kihkyengra, Kilgad -> Khortytsia + link = { autogenerated = yes imp = 325 imp = 7762 ck3 = 5569 } # Kabia, (Unknown) -> Tarsos + link = { autogenerated = yes imp = 326 ck3 = 5568 } # Modra -> Modra + link = { autogenerated = yes imp = 236 imp = 238 imp = 7914 imp = 7764 ck3 = 5567 } # Tarsos Bithynias, Diospolis, Modra Pass, (Unknown) -> Prusias ad Hypium + link = { autogenerated = yes imp = 234 imp = 243 imp = 7763 ck3 = 5566 } # Kalpe, Astakos, Sophon Pass -> Chelai + link = { autogenerated = yes imp = 241 imp = 239 imp = 240 imp = 242 ck3 = 5565 } # Rhebas, Artanes, Chalcedon, Libyssa -> Chalcedon + link = { autogenerated = yes imp = 329 imp = 7765 ck3 = 5564 } # Dableis, Tattaios -> Oka + link = { autogenerated = yes imp = 188 ck3 = 5563 } # Pessinous -> Pessinus + link = { autogenerated = yes imp = 227 ck3 = 5562 } # Trokna -> Midaeum_OPSI + link = { autogenerated = yes imp = 175 imp = 7912 ck3 = 5561 } # Germa, Gordioukome Mountains -> Gordium + link = { autogenerated = yes imp = 316 imp = 327 ck3 = 5560 } # Midaion, Oka -> Saegud + link = { autogenerated = yes imp = 6126 imp = 6131 imp = 6132 imp = 6133 ck3 = 556 } # Ratikgot, Zhenna, Solyots, Dyrghet -> Samar + link = { autogenerated = yes imp = 324 imp = 322 imp = 323 ck3 = 5559 } # Otroia, Lamounia, Sarkotyle -> Dabla + link = { autogenerated = yes imp = 317 imp = 312 ck3 = 5558 } # Kotiaeion, Appia -> Katyaion + link = { autogenerated = yes imp = 321 imp = 319 ck3 = 5557 } # Kybellion, Aizanoi -> Catyaeum + link = { autogenerated = yes imp = 218 ck3 = 5555 ck3 = 742 } # Kallydion -> Helge, Prusa + link = { autogenerated = yes imp = 250 imp = 7755 ck3 = 5554 } # Helge, Olympus Mons -> Apemea + link = { autogenerated = yes imp = 320 ck3 = 5553 ck3 = 5556 } # Ariste -> Appollonia, Hadrianoi + link = { autogenerated = yes imp = 269 imp = 253 imp = 272 ck3 = 5552 } # Pericharaxis, Daskyleion, Hiera Germe -> Miletopolis + link = { autogenerated = yes imp = 265 imp = 264 ck3 = 5551 } # Argiza, Baris Mysias -> Poimanenon + link = { autogenerated = yes imp = 339 imp = 1942 imp = 311 imp = 8059 ck3 = 5550 } # Elouza, Peltai, Pepouza, Eukarpia Mons -> Sebaste + link = { autogenerated = yes imp = 8419 ck3 = 555 } # Khotove -> Pereyaslavl + link = { autogenerated = yes imp = 1944 imp = 1943 ck3 = 5549 } # Lounda, Sanaos -> Apamea + link = { autogenerated = yes imp = 1946 imp = 7925 ck3 = 5548 } # Hierapolis, Pergamon Mountains 2 -> Chonae + link = { autogenerated = yes imp = 7939 imp = 1963 imp = 1967 imp = 7940 ck3 = 5547 } # Hyllarima, Harpasa, Alabanda, Hyllarima Mountains -> Mylasa + link = { autogenerated = yes imp = 1947 imp = 1962 imp = 7751 imp = 7984 ck3 = 5546 } # Apollonia Maiandrou, Athymbra, Mesogis Mons, Kranaos Mountains -> Philadelphia + link = { autogenerated = yes imp = 300 imp = 7928 ck3 = 5544 } # Maionia, Sardis Mountains -> Silandos + link = { autogenerated = yes imp = 308 ck3 = 5543 } # Blaoundos -> Bagis + link = { autogenerated = yes imp = 309 imp = 307 ck3 = 5542 } # Akmoneia, Bageis -> Akrainos + link = { autogenerated = yes imp = 301 imp = 7927 ck3 = 5541 } # Silandos, Silandos Mountains -> Cadi + link = { autogenerated = yes imp = 299 imp = 305 ck3 = 5540 } # Maiboza, Hyrkanis -> Tabala + link = { autogenerated = yes imp = 8424 ck3 = 554 } # Teteriv -> Chernigov + link = { autogenerated = yes imp = 274 imp = 7926 ck3 = 5539 } # Thyateira, Hyssa Mountains -> Thyatira + link = { autogenerated = yes imp = 306 imp = 304 ck3 = 5538 } # Ankyra Sidera, Hyssa -> Synaos + link = { autogenerated = yes imp = 303 ck3 = 5537 } # Synaos -> Cybele + link = { autogenerated = yes imp = 273 imp = 276 imp = 337 imp = 8058 ck3 = 5535 } # Inde, Apollonia Mysias, Pioniai, Apollonia Mons -> Attalia + link = { autogenerated = yes imp = 1977 imp = 1973 imp = 1980 imp = 275 imp = 7932 ck3 = 5534 } # Mylasa, Miletos, Stratonikeia, Iasos, Alabanda Mountains -> Iassus + link = { autogenerated = yes imp = 1968 imp = 1966 imp = 7929 imp = 7931 ck3 = 5533 } # Alexandreia pros to Latmo, Tralles, Tralleis Mountains, Alinda Mountains -> Miletus + link = { autogenerated = yes imp = 1808 imp = 291 imp = 7753 imp = 7933 ck3 = 5532 } # Metropolis, Colophon, Tempsis Mons, Smyrna Mountains -> Lebedos + link = { autogenerated = yes imp = 298 imp = 279 imp = 285 imp = 7924 ck3 = 5531 } # Aigai, Elaea, Kyme, Pergamon Mountains -> Phocaea + link = { autogenerated = yes imp = 278 ck3 = 5530 } # Pergamon -> Pergamon + link = { autogenerated = yes imp = 8461 imp = 8455 imp = 8456 ck3 = 553 } # Hrabiv, Lyubech, Kuchynivka -> Lyubech + link = { autogenerated = yes imp = 281 imp = 282 ck3 = 5529 } # Adramyttion, Atarna -> Adramytium + link = { autogenerated = yes imp = 8437 imp = 8436 ck3 = 552 } # Lemeshevichi, Pripyat -> Turov + link = { autogenerated = yes imp = 9128 imp = 9126 imp = 9127 ck3 = 551 } # Bajatei, Nawas, Bartei -> Mstislavl + link = { autogenerated = yes imp = 8538 imp = 8535 ck3 = 550 } # Byerazino, Kremok -> Minsk + link = { autogenerated = yes imp = 3879 imp = 3875 imp = 3880 ck3 = 55 } # Cimbria Borealis, Teutonia Maior, Cimbria Maior -> LINDHOLM + link = { autogenerated = yes imp = 7821 imp = 7825 imp = 8481 ck3 = 549 } # Ossioia Orientalis, Sentia, Maciejowice -> Berestye + link = { autogenerated = yes imp = 8482 ck3 = 548 } # Lukow -> Pinsk + link = { autogenerated = yes imp = 6090 imp = 8420 ck3 = 547 } # Sitya, Khodosivka -> Kiev + link = { autogenerated = yes imp = 6082 imp = 6091 ck3 = 544 } # Donts, Aggrygh -> Korsun + link = { autogenerated = yes imp = 7186 imp = 4527 ck3 = 543 } # Scyra, Istrianon -> Okachiv + link = { autogenerated = yes imp = 7187 imp = 4528 ck3 = 542 } # Ektonopolis, Scopuli -> Olbia_ETEL + link = { autogenerated = yes imp = 4933 ck3 = 541 } # Cruciatum -> Iasi + link = { autogenerated = yes imp = 4501 imp = 5998 ck3 = 540 } # Caput Stenarum, Transyvlanian Impassable -> Szekelyfold + link = { autogenerated = yes imp = 2177 ck3 = 54 } # Ivernia Australis -> KINSALE + link = { autogenerated = yes imp = 9065 ck3 = 5381 } # Cyrg -> Kriucha + link = { autogenerated = yes imp = 9063 imp = 9064 ck3 = 5380 } # Vite, Mud -> Bychok + link = { autogenerated = yes imp = 9077 imp = 9073 ck3 = 5379 } # Ajam, Rast -> Viazovka + link = { autogenerated = yes imp = 9059 imp = 9060 ck3 = 5371 } # Naktis, Kirsnas -> Karatayak + link = { autogenerated = yes imp = 4943 ck3 = 536 } # Castrana -> Halych + link = { autogenerated = yes imp = 6253 imp = 6248 ck3 = 535 } # Mavar, Bonava -> Volodymyr + link = { autogenerated = yes imp = 9104 imp = 9103 imp = 9102 ck3 = 5349 } # Hurasa, Batya, Batesa -> Zhaltyr + link = { autogenerated = yes imp = 9093 imp = 9091 ck3 = 5347 } # Wantah, Xsay -> Engels + link = { autogenerated = yes imp = 5878 imp = 5910 imp = 5911 ck3 = 5346 } # Atar, Uvra, Usch -> Ryn + link = { autogenerated = yes imp = 8960 imp = 6219 imp = 6222 imp = 8959 imp = 8968 ck3 = 5345 } # Shungay, Uyennik, Arzhahk, Mukhat, Saykhin -> Chyorny Yar + link = { autogenerated = yes imp = 5928 imp = 5926 imp = 5925 imp = 5927 ck3 = 5344 } # Nechek, Duzea, Krayn, Varyr -> Majar + link = { autogenerated = yes imp = 5873 imp = 5874 imp = 5921 ck3 = 5343 } # Molliuch, Recrassia, Abach -> Samiran + link = { autogenerated = yes imp = 7602 imp = 7621 ck3 = 5342 } # Endzhara, Valent -> Sambalut + link = { autogenerated = yes imp = 7603 ck3 = 5341 ck3 = 668 } # Derbent -> Kuba, Shirvan + link = { autogenerated = yes imp = 5891 imp = 5887 imp = 5889 ck3 = 5340 } # Avrar, Bashkra, Donol -> Yergolyk + link = { autogenerated = yes imp = 4945 imp = 4946 ck3 = 534 } # Riparum, Solitarium -> Peremyshl + link = { autogenerated = yes imp = 5885 imp = 7637 ck3 = 5339 } # Muiksita, Yeyata -> Chamchev + link = { autogenerated = yes imp = 5886 ck3 = 5338 } # Akkei -> Tikhon + link = { autogenerated = yes imp = 7636 imp = 7635 ck3 = 5337 } # Garen, Iados -> Chelbaska + link = { autogenerated = yes imp = 7617 imp = 4560 imp = 7618 ck3 = 5336 } # Stepna, Azara, Rogoy -> Soleny + link = { autogenerated = yes imp = 4561 imp = 7612 ck3 = 5335 } # Lebedia, Maran -> Kuban + link = { autogenerated = yes imp = 6218 imp = 5904 imp = 6220 imp = 6221 imp = 5902 ck3 = 5334 } # Mennichak, Mylla, Uryennik, Zhelk, Reama -> Yenotayevka + link = { autogenerated = yes imp = 6209 imp = 6210 imp = 6215 imp = 6205 ck3 = 5333 } # Ydomor, Ghenarcha, Urghat, Uyoro -> Sarepta + link = { autogenerated = yes imp = 5899 imp = 6192 ck3 = 5332 } # Gura, Syutnich -> Semikarakary + link = { autogenerated = yes imp = 4546 ck3 = 5331 } # Urgat -> Dzhankoi + link = { autogenerated = yes imp = 4548 ck3 = 5330 } # Kimmeria -> Aqmescit + link = { autogenerated = yes imp = 6176 imp = 6175 imp = 6179 ck3 = 5329 } # Molon, Shashcha, Yoro -> Ivanovskoye + link = { autogenerated = yes imp = 6170 imp = 6164 imp = 6173 ck3 = 5328 } # Dolom, Shchor, Sythachka -> Kuzeyrog + link = { autogenerated = yes imp = 8561 imp = 6171 imp = 6174 imp = 8566 ck3 = 5327 } # Komyshna, Galligh, Scytte, Bila -> Podgornye + link = { autogenerated = yes imp = 6184 imp = 6181 imp = 6182 ck3 = 5326 } # Yovolat, Achkach, Ighkoy -> Millerovo + link = { autogenerated = yes imp = 8571 imp = 8562 imp = 8565 ck3 = 5325 } # Artilne, Kurennoe, Rovenki -> Boguchar + link = { autogenerated = yes imp = 6157 imp = 6153 imp = 6156 imp = 6159 ck3 = 5324 } # Shgaritat, Uldan, Aihkohna, Stat -> Donetsk + link = { autogenerated = yes imp = 8567 imp = 6166 imp = 7644 imp = 8568 imp = 8569 ck3 = 5323 } # Kupyansk, Gyrones, Donetsk, Horyane, Kozynka -> Volcha + link = { autogenerated = yes imp = 6138 imp = 6135 imp = 6160 imp = 6161 ck3 = 5322 } # Ghart, Thense, Verhyn, Yakkant -> Tor + link = { autogenerated = yes imp = 6158 imp = 6151 ck3 = 5321 } # Unige, Alkhyent -> Pokrovsk + link = { autogenerated = yes imp = 6134 imp = 6136 imp = 6137 ck3 = 5320 } # Annike, Skurtisk, Voynor -> Lozova + link = { autogenerated = yes imp = 8946 imp = 8940 imp = 8943 imp = 8947 ck3 = 5318 } # Taskuduk, Inder, Krugli, Zhanaqala -> Kalmikovsky + link = { autogenerated = yes imp = 5879 imp = 8944 imp = 6232 ck3 = 5317 } # Gyoria, Bangazy, Schelats -> Saraychiq + link = { autogenerated = yes imp = 9087 imp = 9081 imp = 9082 imp = 9088 imp = 9089 ck3 = 5316 } # Waru, Riza, Mauka, Stana, Api -> Nikolaievsk + link = { autogenerated = yes imp = 6206 imp = 6201 imp = 6203 imp = 6207 imp = 6214 ck3 = 5315 } # Ketsk, Agharite, Ghalat, Urviygra, Zhuna -> Aksay + link = { autogenerated = yes imp = 5909 imp = 5877 imp = 6228 imp = 8050 imp = 6229 imp = 6230 ck3 = 5313 } # Norom, Enim, Arzhale, Uyra, Khonnt, Arkhonnt -> Saqsin + link = { autogenerated = yes imp = 5919 imp = 5918 imp = 5920 ck3 = 5312 } # Kurnsck, Chroda, Ermel -> Sara + link = { autogenerated = yes imp = 5907 imp = 5876 imp = 5908 ck3 = 5311 } # Taksaty, Sechtra, Gyashech -> Astrakhan + link = { autogenerated = yes imp = 5872 imp = 5871 imp = 5924 imp = 5923 ck3 = 5310 } # Shiech, Zarem, Volna, Achtab -> Cisterki + link = { autogenerated = yes imp = 5869 imp = 5867 ck3 = 5309 } # Magrai, Suthrander -> Tserlona + link = { autogenerated = yes imp = 5870 imp = 5875 ck3 = 5308 } # Kurema, Ashawm -> Cabartei + link = { autogenerated = yes imp = 5866 imp = 5868 ck3 = 5307 } # Zabender, Lotin -> Kizlyar + link = { autogenerated = yes imp = 7623 ck3 = 5306 } # Terekata -> Durdzukia + link = { autogenerated = yes imp = 7632 imp = 7633 ck3 = 5305 } # Irmana, Kayit -> Samander + link = { autogenerated = yes imp = 7605 ck3 = 5304 ck3 = 675 } # Urtseki -> Balanjar, Kumukh + link = { autogenerated = yes imp = 5929 imp = 5930 imp = 7630 imp = 5931 imp = 5932 ck3 = 5303 } # Zhodyn, Huruir, Kaflur, Skatar, Manar -> Besinada + link = { autogenerated = yes imp = 7629 imp = 7627 imp = 7628 ck3 = 5302 } # Gorat, Verks, Malyts -> Tatartopa + link = { autogenerated = yes imp = 7609 imp = 7610 imp = 7611 ck3 = 5301 } # Hypanispa, Sinad, Alanis -> Betzini + link = { autogenerated = yes imp = 7606 imp = 7619 imp = 7620 ck3 = 5300 } # Heniat, Lapra, Kalkry -> Etzeri + link = { autogenerated = yes imp = 6273 ck3 = 530 } # Sopha -> Czersk + link = { autogenerated = yes imp = 2162 ck3 = 53 } # Usdia Occidentalis -> CORK + link = { autogenerated = yes imp = 7607 ck3 = 5299 } # Abasgria -> Maghas + link = { autogenerated = yes imp = 7614 imp = 7608 imp = 7615 ck3 = 5297 } # Salavy, Hypanera, Elvruz -> Zapaxi + link = { autogenerated = yes imp = 7600 imp = 4566 imp = 4567 ck3 = 5296 } # Sabiranum, Bata, Torikos -> Bata + link = { autogenerated = yes imp = 9071 imp = 9070 ck3 = 5295 } # Kalm, Cyxt -> Yelan + link = { autogenerated = yes imp = 9085 imp = 9080 imp = 9084 ck3 = 5294 } # Zurka, Gaita, Vadasz -> Kamyshin + link = { autogenerated = yes imp = 9072 imp = 9074 imp = 9075 imp = 9079 ck3 = 5293 } # Arv, Carm, Capi, Nahapana -> Frolovo + link = { autogenerated = yes imp = 8556 imp = 6195 imp = 8555 imp = 8557 imp = 8558 ck3 = 5292 } # Berezovaya, Urvolat, Bolshoi, Tikhaya, Olkhovaya -> Ust-Donvokhi + link = { autogenerated = yes imp = 8551 imp = 6199 imp = 8552 imp = 8553 imp = 8554 ck3 = 5291 } # Krepkaya, Ydologh, Liska, Bazki, Kalmykovskii -> Siyahtepe + link = { autogenerated = yes imp = 6191 imp = 6185 imp = 6186 imp = 6188 imp = 6190 imp = 6194 ck3 = 5290 } # Khang, Ollo, Urgenkh, Vyrni, Kichpa, Urzhev -> Golden Hills + link = { autogenerated = yes imp = 6279 ck3 = 529 } # Vadina -> Plock + link = { autogenerated = yes imp = 7613 ck3 = 5289 } # Yelsa -> Papagia + link = { autogenerated = yes imp = 5888 imp = 5884 ck3 = 5288 } # Techka, Katys -> Manych + link = { autogenerated = yes imp = 8560 imp = 8559 ck3 = 5287 } # Titarevka, Bogucharka -> Kazanskaya + link = { autogenerated = yes imp = 9056 imp = 9057 ck3 = 5286 } # Krauja, Sausas -> Khursa + link = { autogenerated = yes imp = 9055 imp = 9046 imp = 9047 imp = 9051 ck3 = 5285 } # Ragas, Zweris, Kirmis, Karo -> Khorysdan + link = { autogenerated = yes imp = 8477 imp = 8401 imp = 8414 ck3 = 5284 } # Orlik, Trostyanets, Moshchenoe -> Chally-Kala + link = { autogenerated = yes imp = 8400 imp = 6120 imp = 8399 ck3 = 5283 } # Merla, Volg, Gelon -> Bohodukhiv + link = { autogenerated = yes imp = 6127 imp = 6116 ck3 = 5282 } # Nyetskor, Syuthgrat -> Karlivka + link = { autogenerated = yes imp = 6154 imp = 4554 imp = 6149 imp = 7193 ck3 = 5281 } # Rynek, Halieuma Theou, Ghahko, Settina -> Kutur-Ogly + link = { autogenerated = yes imp = 6163 imp = 4555 imp = 6155 ck3 = 5280 } # Vyonots, Hygreis, Kisko -> Mariupol + link = { autogenerated = yes imp = 7192 imp = 4551 imp = 4552 imp = 4553 ck3 = 5279 } # Sarmapolis, Coretia, Limnaioi, Kremnoi -> Kyzyl Jar + link = { autogenerated = yes imp = 6124 imp = 6144 imp = 6146 imp = 6147 ck3 = 5278 } # Syti, Borysthenia, Aegha, Ruti -> Kakovka + link = { autogenerated = yes imp = 4545 ck3 = 5277 } # Cimus -> Perekop + link = { autogenerated = yes imp = 4536 imp = 4542 imp = 4547 ck3 = 5276 } # Kerkinitis, Neapolis Taurike, Taurica -> Kerkinitis + link = { autogenerated = yes imp = 6128 imp = 6121 ck3 = 5275 } # Zeh, Oykets -> Salmacatce + link = { autogenerated = yes imp = 6139 imp = 6129 imp = 6130 ck3 = 5274 } # Kyakkam, Gyonal, Vurd -> Dnipro + link = { autogenerated = yes imp = 6141 imp = 6122 imp = 6142 imp = 6145 ck3 = 5273 } # Enke, Syalite, Ghasett, Gerrhos -> Nikopol + link = { autogenerated = yes imp = 7191 imp = 6118 imp = 6123 ck3 = 5272 } # Uttar, Kin, Shuchshek -> Beryslav + link = { autogenerated = yes imp = 6103 imp = 6098 imp = 6100 ck3 = 5271 } # Vashschka, Ocraent, Hkraniyat -> Voznessensk + link = { autogenerated = yes imp = 6119 imp = 6108 ck3 = 5270 } # Exampeaus, Mnata -> Kazanka + link = { autogenerated = yes imp = 7188 imp = 4529 imp = 6102 ck3 = 5269 } # Yendi, Olbia, Korulin -> Kherson + link = { autogenerated = yes imp = 7185 imp = 4526 ck3 = 5268 } # Atavria, Nikonia -> Odessa + link = { autogenerated = yes imp = 7189 ck3 = 5267 } # Rakan -> Tiraspol + link = { autogenerated = yes imp = 6105 imp = 6104 ck3 = 5266 } # Gonoska, Maske -> Pervomaisk + link = { autogenerated = yes imp = 6099 ck3 = 5265 } # Onskoet -> Kashan + link = { autogenerated = yes imp = 6107 imp = 6106 imp = 6117 ck3 = 5264 } # Kreshcek, Jyr, Aggrat -> Sacacatce + link = { autogenerated = yes imp = 6101 imp = 6110 ck3 = 5263 } # Zetha, Ehkere -> Cherkassy + link = { autogenerated = yes imp = 6096 imp = 6095 ck3 = 5262 } # Vyelinat, Siskary -> Uman + link = { autogenerated = yes imp = 6083 imp = 6094 ck3 = 5261 } # Vyrketin, Akhynt -> Buky + link = { autogenerated = yes imp = 6087 ck3 = 5260 } # Hkar -> Yary + link = { autogenerated = yes imp = 6097 imp = 7195 ck3 = 5259 } # Kilkhaneg, Tanarke -> Liubashivka + link = { autogenerated = yes imp = 6088 imp = 7194 ck3 = 5258 } # Kmekhich, Konae -> Birzula + link = { autogenerated = yes imp = 6085 imp = 6084 imp = 6086 ck3 = 5257 } # Tumin, Schech, Volyatss -> Ladyzyn + link = { autogenerated = yes imp = 4853 ck3 = 523 } # Anartia -> Hewes + link = { autogenerated = yes imp = 9121 ck3 = 5225 } # Sulnis -> Cherykaw + link = { autogenerated = yes imp = 9125 imp = 9124 ck3 = 5224 } # Zeme, Neba -> Klimavichy + link = { autogenerated = yes imp = 9131 ck3 = 5220 } # Ungnis -> Yelnya + link = { autogenerated = yes imp = 4855 ck3 = 522 } # Ocara -> Pest + link = { autogenerated = yes imp = 9052 ck3 = 5210 } # Swo -> Krom + link = { autogenerated = yes imp = 8472 imp = 8467 ck3 = 5208 } # Snezhet, Lupuznya -> Lokot + link = { autogenerated = yes imp = 9050 ck3 = 5207 } # Lapas -> Ust-Livny + link = { autogenerated = yes imp = 8474 ck3 = 5206 } # Zhuchok -> Sevsk + link = { autogenerated = yes imp = 8471 ck3 = 5205 } # Mglin -> Mglin + link = { autogenerated = yes imp = 8465 ck3 = 5204 } # Rechitsa -> Trubetsk + link = { autogenerated = yes imp = 8463 imp = 8462 ck3 = 5203 } # Slot, Zamhlay -> Starodub + link = { autogenerated = yes imp = 9123 imp = 9122 ck3 = 5202 } # Zwaisda, Meno -> Surazichi + link = { autogenerated = yes imp = 8425 imp = 8454 ck3 = 5201 } # Krasne, Snov -> Unenezh + link = { autogenerated = yes imp = 8451 imp = 8450 ck3 = 5200 } # Gomel, Dnipro -> Gomel + link = { autogenerated = yes imp = 2176 imp = 2179 ck3 = 52 } # Ivernia Borealis, Velaboria Occidentalis -> TRALEE + link = { autogenerated = yes imp = 8475 imp = 8476 imp = 8478 ck3 = 5199 } # Kursk, Psel, Oskil -> Oboyan + link = { autogenerated = yes imp = 8470 imp = 8459 ck3 = 5198 } # Sejm, Kleven -> Sudzha + link = { autogenerated = yes imp = 8473 imp = 8469 ck3 = 5197 } # Medovyi, Grunya -> Rylsk + link = { autogenerated = yes imp = 9048 imp = 8479 imp = 8480 ck3 = 5196 } # Derwa, Belaya, Rybnitsa -> Kursk + link = { autogenerated = yes imp = 8418 ck3 = 5195 } # Nedryhailiv -> Konotop + link = { autogenerated = yes imp = 8413 ck3 = 5194 } # Basivka -> Vyr + link = { autogenerated = yes imp = 8416 imp = 8458 imp = 8468 ck3 = 5193 } # Tereshkivka, Melnya, Turochka -> Putyvl + link = { autogenerated = yes imp = 8452 imp = 8460 imp = 8464 ck3 = 5192 } # Desna, Ret, Sudist -> Glukhov + link = { autogenerated = yes imp = 8453 ck3 = 5191 } # Mena -> Borzna + link = { autogenerated = yes imp = 8421 ck3 = 5190 } # Pyryatyn -> Lubny + link = { autogenerated = yes imp = 4291 ck3 = 519 } # Apulum -> Feher + link = { autogenerated = yes imp = 6112 imp = 6111 ck3 = 5189 } # Schelera, Rotila -> Voin + link = { autogenerated = yes imp = 8408 imp = 8409 imp = 8415 ck3 = 5188 } # Hlynsk, Boromlya, Velykyi -> Sumy + link = { autogenerated = yes imp = 8412 ck3 = 5187 } # Yahanivka -> Nedryhailiv + link = { autogenerated = yes imp = 8411 ck3 = 5186 } # Sukhonosivka -> Lokhrytsia + link = { autogenerated = yes imp = 8417 ck3 = 5185 } # Poharshchyna -> Romen + link = { autogenerated = yes imp = 6125 ck3 = 5184 } # Machiekkyt -> Poltava + link = { autogenerated = yes imp = 6113 imp = 8410 ck3 = 5183 } # Muika, Myrhorod -> Myrhorod + link = { autogenerated = yes imp = 8407 imp = 6114 ck3 = 5182 } # Birky, Selb -> Akhtyr + link = { autogenerated = yes imp = 6115 ck3 = 5181 } # Ahgranika -> Hradyzk + link = { autogenerated = yes imp = 6109 ck3 = 5180 } # Soe -> Zolotonosha + link = { autogenerated = yes imp = 4843 ck3 = 518 } # Onagrinum -> Bacs + link = { autogenerated = yes imp = 8428 ck3 = 5179 } # Sula -> Priluk + link = { autogenerated = yes imp = 8422 imp = 7299 ck3 = 5178 } # Zhurivka, Pirhirci -> Boryspil + link = { autogenerated = yes imp = 4834 ck3 = 517 ck3 = 521 } # Lixisis -> Temes, Csanad + link = { autogenerated = yes imp = 4210 ck3 = 516 } # Dierna -> Severin + link = { autogenerated = yes imp = 4823 ck3 = 515 ck3 = 5009 } # Tiriscum -> Targoviste, Campulung + link = { autogenerated = yes imp = 8491 ck3 = 5136 } # Monki -> Novogrudok + link = { autogenerated = yes imp = 8525 imp = 8526 ck3 = 5133 } # Dyagili, Guta -> Hlybokaye + link = { autogenerated = yes imp = 8527 imp = 8528 ck3 = 5132 } # Plissa, Yelnya -> Vetrino + link = { autogenerated = yes imp = 8521 ck3 = 5131 } # Braslaw -> Myory + link = { autogenerated = yes imp = 4923 imp = 4924 ck3 = 513 } # Acritones, Inatius -> Barlad + link = { autogenerated = yes imp = 8546 imp = 8544 imp = 8548 ck3 = 5128 } # Gory, Krasnaya, Ryasna -> Drutsk + link = { autogenerated = yes imp = 8545 imp = 8543 ck3 = 5126 } # Shlou, Lukomlskoye -> Barysaw + link = { autogenerated = yes imp = 8533 imp = 8534 ck3 = 5125 } # Dzyarzhynsk, Berezina -> Maladzyechna + link = { autogenerated = yes imp = 8536 ck3 = 5124 } # Sharai -> Zaslawye + link = { autogenerated = yes imp = 8537 imp = 8539 ck3 = 5123 } # Minsk, Smarhon -> Lahoysk + link = { autogenerated = yes imp = 8449 ck3 = 5122 } # Brahin -> Rechytsa + link = { autogenerated = yes imp = 8447 imp = 8446 ck3 = 5121 } # Vasilievicy, Dikoye -> Kalinkavichy + link = { autogenerated = yes imp = 8448 imp = 8531 ck3 = 5120 } # Milohrad, Slutsk -> Zhlobin + link = { autogenerated = yes imp = 4525 imp = 4524 ck3 = 512 } # Tyras, Aipolion -> Cetatea Alba + link = { autogenerated = yes imp = 8547 imp = 8549 ck3 = 5119 } # Mogilev, Chavusy -> Babruysk + link = { autogenerated = yes imp = 8440 imp = 8442 imp = 8532 ck3 = 5117 } # Gorodische, Loktyshi, Zavolochitsky -> Kletsk + link = { autogenerated = yes imp = 8441 ck3 = 5116 } # Vygonoschanskoye -> Mikashevichy + link = { autogenerated = yes imp = 8445 ck3 = 5115 } # Chervonoye -> Zhytkavichy + link = { autogenerated = yes imp = 8444 imp = 8530 ck3 = 5114 } # Salihorsk, Kapyl -> Slutsk + link = { autogenerated = yes imp = 8443 imp = 8483 ck3 = 5113 } # Pahost, Ogorodniki -> Luninets + link = { autogenerated = yes imp = 8486 imp = 8487 ck3 = 5112 } # Seroczyn, Bielsk -> Lahishyn + link = { autogenerated = yes imp = 7829 ck3 = 5111 } # Heritia -> Liubeshiv + link = { autogenerated = yes imp = 7828 ck3 = 5110 } # Manoia -> Stepan + link = { autogenerated = yes imp = 4802 ck3 = 511 } # Agarusia -> Galati + link = { autogenerated = yes imp = 8439 ck3 = 5109 } # Buhski -> Dubrovytsia + link = { autogenerated = yes imp = 8432 ck3 = 5107 } # Hrezlya -> Naroulia + link = { autogenerated = yes imp = 8435 ck3 = 5106 } # Mazyr -> Mazyr + link = { autogenerated = yes imp = 8433 ck3 = 5105 } # Uzh -> Ovruch + link = { autogenerated = yes imp = 8434 ck3 = 5104 ck3 = 5108 } # Hlumcha -> Korosten, Lelchytsy + link = { autogenerated = yes imp = 8438 ck3 = 5103 } # Styr -> Selo + link = { autogenerated = yes imp = 6075 imp = 6073 ck3 = 5101 } # Mechkeht, Vonnet -> Haisyn + link = { autogenerated = yes imp = 6072 ck3 = 5100 } # Yukta -> Yampil + link = { autogenerated = yes imp = 4512 imp = 4513 imp = 4515 ck3 = 510 } # Axiopolis, Histria, Capidava -> Constantia + link = { autogenerated = yes imp = 2187 ck3 = 51 } # Brigantia -> CLONMEL + link = { autogenerated = yes imp = 6071 ck3 = 5099 } # Shethigk -> Vinnytsia + link = { autogenerated = yes imp = 6068 imp = 6069 ck3 = 5098 } # Khurra, Gosthinya -> Ushytsia + link = { autogenerated = yes imp = 8429 ck3 = 5096 ck3 = 5097 } # Zvyzdal -> Ivankiv, Radynka + link = { autogenerated = yes imp = 8426 imp = 8427 ck3 = 5095 } # Hdzyen, Radcha -> Chornobyl + link = { autogenerated = yes imp = 8430 ck3 = 5094 } # Sluch -> Horodnytsia + link = { autogenerated = yes imp = 8431 ck3 = 5093 } # Irsha -> Chortolisy + link = { autogenerated = yes imp = 6235 imp = 6089 ck3 = 5092 } # Anakkesta, Vurdant -> Kolodiazhen + link = { autogenerated = yes imp = 7642 ck3 = 5091 ck3 = 5102 } # Sylvana -> Zvyahel, Sarny + link = { autogenerated = yes imp = 6074 ck3 = 5090 } # Tiersi -> Malaia Skvirka + link = { autogenerated = yes imp = 4249 imp = 4250 imp = 4256 ck3 = 509 } # Krounoi, Tirizis, Tropaeum -> Karvuna + link = { autogenerated = yes imp = 6077 ck3 = 5089 } # Ghanilkatta -> Rastovets + link = { autogenerated = yes imp = 6076 ck3 = 5088 } # Krueng -> Mezhybozhe + link = { autogenerated = yes imp = 6078 ck3 = 5087 } # Notghi -> Zhytomyr + link = { autogenerated = yes imp = 6080 imp = 6079 ck3 = 5086 } # Oschka, Vryank -> Zdvyzhen + link = { autogenerated = yes imp = 6092 imp = 6093 ck3 = 5085 } # Gelts, Mangyl -> Kaniv + link = { autogenerated = yes imp = 6081 ck3 = 5084 } # Kyrtik -> Yuriev + link = { autogenerated = yes imp = 8423 ck3 = 5082 ck3 = 5083 } # Ros -> Vyshgorod, Bilhorod + link = { autogenerated = yes imp = 6251 imp = 6255 ck3 = 5081 } # Gala, Donar -> Lizhensk + link = { autogenerated = yes imp = 4947 ck3 = 5080 } # Tandum -> Sanok + link = { autogenerated = yes imp = 4252 imp = 4246 imp = 4253 ck3 = 508 } # Helis, Silistra, Palmatis -> Dorostotum + link = { autogenerated = yes imp = 6252 ck3 = 5078 } # Histrine -> Liubachev + link = { autogenerated = yes imp = 6247 ck3 = 5077 } # Sottika -> Belz + link = { autogenerated = yes imp = 6257 ck3 = 5076 } # Malica -> Suteysk + link = { autogenerated = yes imp = 6256 ck3 = 5075 } # Venediana -> Kholm + link = { autogenerated = yes imp = 6249 ck3 = 5073 ck3 = 5074 } # Celavira -> Cherven, Volin + link = { autogenerated = yes imp = 6242 ck3 = 5072 } # Seno -> Ostroh + link = { autogenerated = yes imp = 6244 ck3 = 5071 } # Kanale -> Dubno + link = { autogenerated = yes imp = 6236 ck3 = 5070 } # Forom -> Zaslavl + link = { autogenerated = yes imp = 4238 ck3 = 507 } # Novae -> Nikopolis + link = { autogenerated = yes imp = 6066 ck3 = 5069 } # Utkennita -> Chortkiv + link = { autogenerated = yes imp = 6233 ck3 = 5068 } # Urschelats -> Horodok + link = { autogenerated = yes imp = 5383 imp = 6047 imp = 6065 ck3 = 5067 } # Oggrunet, Olnish, Granika -> Moklekov + link = { autogenerated = yes imp = 6239 ck3 = 5066 } # Sitha -> Buchach + link = { autogenerated = yes imp = 6245 imp = 6250 ck3 = 5065 } # Mitteria, Arha -> Busk + link = { autogenerated = yes imp = 6238 ck3 = 5064 } # Arhao -> Zvenyhorod + link = { autogenerated = yes imp = 6246 ck3 = 5063 } # Venulia -> Lviv + link = { autogenerated = yes imp = 4941 ck3 = 5061 } # Salumnis -> Kolomyia + link = { autogenerated = yes imp = 4944 ck3 = 5060 } # Dolarum -> Sambir + link = { autogenerated = yes imp = 4215 imp = 4216 ck3 = 506 } # Dortium, Bononia Moesiaca -> Vidin + link = { autogenerated = yes imp = 6294 imp = 6291 ck3 = 5059 } # Felita, Vorytta -> Blotkowo + link = { autogenerated = yes imp = 7824 imp = 6298 ck3 = 5058 } # Revacia, Bostor -> Kobryn + link = { autogenerated = yes imp = 6293 ck3 = 5057 } # Makkate -> Dorohychyn + link = { autogenerated = yes imp = 7822 imp = 8484 ck3 = 5055 } # Sudionoia Australis, Lysobyki -> Kamyanyets + link = { autogenerated = yes imp = 7820 ck3 = 5054 ck3 = 5056 } # Ossioia -> Bielsk, Simiatychi + link = { autogenerated = yes imp = 6295 ck3 = 5053 } # Orona -> Klevan + link = { autogenerated = yes imp = 6237 imp = 6240 ck3 = 5051 } # Arforom, Assula -> Peresopnytsia + link = { autogenerated = yes imp = 6297 ck3 = 5050 } # Thure -> Rozhyshche + link = { autogenerated = yes imp = 4195 imp = 4198 ck3 = 505 } # Singidunum, Ad Sextum Miliarem -> Belgrade + link = { autogenerated = yes imp = 7826 imp = 7827 ck3 = 5049 } # Merania, Orentia -> Kovel + link = { autogenerated = yes imp = 6292 imp = 6296 ck3 = 5048 } # Trakylli, Kire -> Luboml + link = { autogenerated = yes imp = 6243 ck3 = 5047 } # Vorta -> Lutsk + link = { autogenerated = yes imp = 8485 imp = 8489 ck3 = 5045 } # Starorzecze, Kulesze -> Slonim + link = { autogenerated = yes imp = 7823 imp = 8488 ck3 = 5044 } # Sudionoia Orientalis, Biebrzankski -> Volkovysk + link = { autogenerated = yes imp = 7805 ck3 = 5043 ck3 = 5046 } # Sudinoia -> Sokolka, Bielastock + link = { autogenerated = yes imp = 2543 ck3 = 5042 } # Uccrynyika -> Cernauti + link = { autogenerated = yes imp = 4940 ck3 = 5041 } # Limnorum -> Tetina + link = { autogenerated = yes imp = 6067 ck3 = 5040 } # Alkonet -> Hotin + link = { autogenerated = yes imp = 4068 imp = 5081 ck3 = 504 } # Bistua Nova, IMPASSIBLE TERRAIN 081 -> Rama + link = { autogenerated = yes imp = 4914 ck3 = 5039 } # Carsidava -> Harlau + link = { autogenerated = yes imp = 4939 ck3 = 5038 } # Octavum -> Dorohoi + link = { autogenerated = yes imp = 4938 ck3 = 5037 ck3 = 5034 } # Tannis -> Siret, Baia + link = { autogenerated = yes imp = 4930 ck3 = 5033 } # Oridava -> Roman + link = { autogenerated = yes imp = 4912 ck3 = 5030 } # Zargidava -> Bacau + link = { autogenerated = yes imp = 4911 ck3 = 5029 } # Tamasidava -> Stoenesti + link = { autogenerated = yes imp = 4913 imp = 4825 ck3 = 5028 } # Piroboridava, Montibus -> Focsani + link = { autogenerated = yes imp = 4801 ck3 = 5027 } # Polondava -> Tecuci + link = { autogenerated = yes imp = 4932 imp = 4931 ck3 = 5025 } # Millianum, Loricata -> Vaslui + link = { autogenerated = yes imp = 4937 ck3 = 5024 } # Confluentia Subcarpathica -> Falesti + link = { autogenerated = yes imp = 4934 imp = 4928 ck3 = 5023 } # Muradava, Leptidava -> Ungheni + link = { autogenerated = yes imp = 4936 ck3 = 5022 } # Ad Verticem -> Balti + link = { autogenerated = yes imp = 6070 ck3 = 5021 } # Lechta -> Soroca + link = { autogenerated = yes imp = 4929 ck3 = 5020 } # Siculo -> Tuzara + link = { autogenerated = yes imp = 4101 imp = 5078 imp = 5091 ck3 = 502 } # Arsia, IMPASSIBLE TERRAIN 078, IMPASSIBLE TERRAIN 091 -> Rashka + link = { autogenerated = yes imp = 4915 ck3 = 5019 } # Clepidava -> Orhei + link = { autogenerated = yes imp = 4921 imp = 4916 ck3 = 5018 } # Bridava, Mirum -> Chisinau + link = { autogenerated = yes imp = 4925 ck3 = 5017 ck3 = 5026 } # Volumis -> Lapusna, Husi + link = { autogenerated = yes imp = 4800 ck3 = 5016 } # Dinogetia -> Cahul + link = { autogenerated = yes imp = 4922 ck3 = 5015 } # Aikronon -> Tigheci + link = { autogenerated = yes imp = 4920 ck3 = 5014 } # Agrana -> Artsyz + link = { autogenerated = yes imp = 4919 imp = 4521 ck3 = 5013 } # Olitis, Nobiodounos -> Oblucita + link = { autogenerated = yes imp = 4917 imp = 4918 ck3 = 5011 } # Alitora, Lepton -> Tighina + link = { autogenerated = yes imp = 4522 ck3 = 5010 } # Ta Antiphilou -> Sulina + link = { autogenerated = yes imp = 4115 imp = 4112 imp = 5096 ck3 = 501 } # Remesiana, Navissos, IMPASSIBLE TERRAIN 096 -> Naissus + link = { autogenerated = yes imp = 4822 imp = 4821 ck3 = 5008 } # Ciagisiana, Ardeiscus -> Arges + link = { autogenerated = yes imp = 4271 ck3 = 5007 } # Confluentiana -> Filiasi + link = { autogenerated = yes imp = 4269 imp = 4272 ck3 = 5006 } # Rusidava, Pons Aluti -> Govora + link = { autogenerated = yes imp = 4273 imp = 4274 ck3 = 5005 } # Buridava, Confluentia Malvensis -> Polovragi + link = { autogenerated = yes imp = 4803 imp = 4804 ck3 = 5004 } # Rhamidava, Britolagia -> Ramnicu Sarat + link = { autogenerated = yes imp = 4806 ck3 = 5003 } # Cotesiana -> Braila + link = { autogenerated = yes imp = 4808 ck3 = 5001 } # Isteriana -> Slobozia + link = { autogenerated = yes imp = 4805 imp = 4812 ck3 = 5000 } # Cotesia, Sensia -> Buzau + link = { autogenerated = yes imp = 4097 imp = 477 ck3 = 500 } # Helice, Serdica -> Serdica + link = { autogenerated = yes imp = 4807 ck3 = 4999 } # Isteria -> Fetesti + link = { autogenerated = yes imp = 4809 ck3 = 4998 } # Piephigia -> Radovanu + link = { autogenerated = yes imp = 4811 ck3 = 4997 } # Sornus -> Calarasi + link = { autogenerated = yes imp = 4815 ck3 = 4996 } # Pirum -> Targsor + link = { autogenerated = yes imp = 4813 ck3 = 4995 } # Sensiana -> Bucuresti + link = { autogenerated = yes imp = 4819 ck3 = 4993 } # Ordessia -> Pitesti + link = { autogenerated = yes imp = 4818 ck3 = 4992 ck3 = 514 } # Pinion -> Glavacioc, Turnu + link = { autogenerated = yes imp = 4810 ck3 = 4991 } # Piephigiana -> Comana + link = { autogenerated = yes imp = 4817 ck3 = 4990 } # Tiasum -> Giurgiu + link = { autogenerated = yes imp = 4245 imp = 4313 ck3 = 499 } # Haemiana, Selymnos -> Tyrnovo + link = { autogenerated = yes imp = 4814 ck3 = 4989 ck3 = 5002 } # Netindava -> Tabla Butii, Ploiesti + link = { autogenerated = yes imp = 4820 ck3 = 4988 } # Ciagisia -> Rusii de Vede + link = { autogenerated = yes imp = 4267 imp = 4266 ck3 = 4986 } # Castris Novis, Romula Saldensica -> Corabia + link = { autogenerated = yes imp = 4270 imp = 4276 ck3 = 4985 } # Pelendava, Castra Bistrita -> Craiova + link = { autogenerated = yes imp = 4279 ck3 = 4983 } # Dumbrava -> Strehaia + link = { autogenerated = yes imp = 4277 ck3 = 4982 } # Salcia -> Cujmir + link = { autogenerated = yes imp = 4278 ck3 = 4981 ck3 = 4984 } # Amutria -> Calafat, Segarcea + link = { autogenerated = yes imp = 4211 ck3 = 4979 } # Drobeta -> Baia de Arama + link = { autogenerated = yes imp = 4275 ck3 = 4978 } # Ad Mutriam -> Targu Jiu + link = { autogenerated = yes imp = 4824 ck3 = 4977 ck3 = 4980 } # Confluentia Roxolania -> Dumbraveni, Zoresti + link = { autogenerated = yes imp = 4263 ck3 = 4975 } # Ad Scorfulas -> Orsova + link = { autogenerated = yes imp = 4896 ck3 = 4973 } # Valitum -> Wislica + link = { autogenerated = yes imp = 4893 ck3 = 4971 ck3 = 3041 } # Matiscua -> Wieliczka, BIELSKO + link = { autogenerated = yes imp = 4890 ck3 = 4970 } # Agrum -> Bochnia + link = { autogenerated = yes imp = 4314 imp = 495 ck3 = 497 } # Bizye, Tarpodizo -> Thrake + link = { autogenerated = yes imp = 4891 ck3 = 4968 ck3 = 532 } # Ectonum -> Pilzno, Sacz + link = { autogenerated = yes imp = 6254 ck3 = 4967 ck3 = 5079 } # Donaria -> Baranow, Yaroslav + link = { autogenerated = yes imp = 4887 ck3 = 4965 ck3 = 4966 } # Cracovia -> Tarnow, Mielec + link = { autogenerated = yes imp = 4901 ck3 = 4964 ck3 = 4974 } # Salata -> Checiny, Jedrzejow + link = { autogenerated = yes imp = 4895 ck3 = 4963 } # Mitabis -> Olesnica + link = { autogenerated = yes imp = 6266 ck3 = 4962 } # Gorion -> Kielce + link = { autogenerated = yes imp = 6259 ck3 = 4961 ck3 = 531 } # Urgana -> Opatow, Sandomierz + link = { autogenerated = yes imp = 6263 ck3 = 4960 } # Shurita -> Urzedow + link = { autogenerated = yes imp = 1453 ck3 = 496 } # Byzantion -> Byzantion + link = { autogenerated = yes imp = 6260 ck3 = 4959 } # Folla -> Goraj + link = { autogenerated = yes imp = 6262 ck3 = 4958 } # Varcret -> Parczew + link = { autogenerated = yes imp = 6261 imp = 6258 ck3 = 4957 } # Sophine, Cariala -> Lublin + link = { autogenerated = yes imp = 6269 ck3 = 4956 } # Gurala Venedia -> Szydlowiec + link = { autogenerated = yes imp = 6270 imp = 6265 ck3 = 4955 } # Mantora, Gorideva -> Ilza + link = { autogenerated = yes imp = 6268 ck3 = 4953 } # Venideva -> Radom + link = { autogenerated = yes imp = 6290 ck3 = 4952 } # Egladia -> Lukow + link = { autogenerated = yes imp = 6267 imp = 6264 ck3 = 4951 } # Maranot, Vinata -> Stezyca + link = { autogenerated = yes imp = 6272 ck3 = 4950 } # Kavera Venedia -> Lowicz + link = { autogenerated = yes imp = 350 imp = 349 ck3 = 495 } # Lysimacheia, Sestos -> Kaliopolis + link = { autogenerated = yes imp = 6289 ck3 = 4948 } # Toll -> Wyszkow + link = { autogenerated = yes imp = 6277 ck3 = 4946 } # Duretica -> Zakroczym + link = { autogenerated = yes imp = 7836 ck3 = 4944 } # Chrononia Australis -> Wizna + link = { autogenerated = yes imp = 7804 ck3 = 4943 ck3 = 4947 } # Ossioia Occidentalis -> Lomza, Nur + link = { autogenerated = yes imp = 6271 ck3 = 4941 } # Filin -> Rawa + link = { autogenerated = yes imp = 6276 ck3 = 4940 } # Venedicania -> Gostynin + link = { autogenerated = yes imp = 489 ck3 = 494 } # Uskodama -> Adrianopolis + link = { autogenerated = yes imp = 6275 ck3 = 4937 ck3 = 4938 ck3 = 4939 } # Korotan -> Liw, Brodno, Garwolin + link = { autogenerated = yes imp = 6274 ck3 = 4936 ck3 = 4942 } # Kunegria -> Warszawa, Sochaczew + link = { autogenerated = yes imp = 6288 ck3 = 4935 } # Gurina -> Ciechanow + link = { autogenerated = yes imp = 6278 ck3 = 4933 ck3 = 4934 } # Mornal -> Wyszogrod, Zawkrze + link = { autogenerated = yes imp = 4772 ck3 = 4932 ck3 = 528 } # Calisia -> Grabow, Sieradz + link = { autogenerated = yes imp = 4777 ck3 = 4930 } # Vartia -> Uniejow + link = { autogenerated = yes imp = 487 ck3 = 493 ck3 = 3623 ck3 = 3625 } # Bessapara -> Philippopolis, Tsepina, Krichim + link = { autogenerated = yes imp = 4900 ck3 = 4929 ck3 = 4931 } # Ambium -> Radomsko, Wielun + link = { autogenerated = yes imp = 4902 ck3 = 4928 ck3 = 4954 } # Amellua -> Przedborz, Opoczno + link = { autogenerated = yes imp = 4904 ck3 = 4926 } # Laudicum -> Klodawa + link = { autogenerated = yes imp = 4903 ck3 = 4924 ck3 = 4925 ck3 = 4927 } # Exitanes -> Leczyca, Lodz, Piotrkow + link = { autogenerated = yes imp = 6280 ck3 = 4922 ck3 = 4923 } # Brigare -> Dobrzyn, Michalowo + link = { autogenerated = yes imp = 362 ck3 = 492 } # Abdera -> Strymon + link = { autogenerated = yes imp = 4776 ck3 = 4918 ck3 = 4919 ck3 = 4920 } # Naharvalorum -> Kruszwica, Wloclawek, Inowroclaw + link = { autogenerated = yes imp = 4763 ck3 = 4917 ck3 = 4921 } # Helveconia -> Znin, Bydgoszcz + link = { autogenerated = yes imp = 4774 ck3 = 4909 ck3 = 4910 } # Elysiana -> Kalisz, Kozmin + link = { autogenerated = yes imp = 4775 ck3 = 4907 ck3 = 4908 ck3 = 4911 } # Setideva -> Pyzdry, Konin, Turek + link = { autogenerated = yes imp = 4761 ck3 = 4905 ck3 = 4906 } # Ascaucalis -> Gniezno, Sroda + link = { autogenerated = yes imp = 4767 ck3 = 4903 } # Buguntiana -> Wronki + link = { autogenerated = yes imp = 4768 ck3 = 4902 } # Erbia -> Czarnkow + link = { autogenerated = yes imp = 4769 ck3 = 4900 ck3 = 4913 } # Manimia -> Poznan, Koscian + link = { autogenerated = yes imp = 373 ck3 = 490 } # Thessalonica -> Thessalonike + link = { autogenerated = yes imp = 2178 ck3 = 49 } # Usdia Orientalis -> WATERFORD + link = { autogenerated = yes imp = 811 ck3 = 4899 } # Doliche -> DULUK-TELUCH + link = { autogenerated = yes imp = 1879 ck3 = 4897 } # Aigaiai -> AYAS + link = { autogenerated = yes imp = 1874 imp = 796 imp = 5180 ck3 = 4896 } # Oiniandos, Issus, IMPASSIBLE TERRAIN 180 -> TALL HAMID + link = { autogenerated = yes imp = 1873 imp = 1870 imp = 7986 imp = 7987 ck3 = 4895 } # Erana, Amanian Gates, Commagenian Gates, Markash Mountains -> AL-HARUNIYA + link = { autogenerated = yes imp = 838 imp = 836 ck3 = 4894 } # Charmodara, Samosata -> SAMOSATA + link = { autogenerated = yes imp = 1862 imp = 1867 ck3 = 4893 } # Adatha, Markash -> MARASH + link = { autogenerated = yes imp = 1860 ck3 = 4892 } # Perrhe -> BAHASNA + link = { autogenerated = yes imp = 1864 imp = 1863 imp = 837 ck3 = 4891 } # Singa, Nastae, Tharsa -> KAISUM + link = { autogenerated = yes imp = 1869 imp = 1868 ck3 = 4890 } # Rhabaine, Tyba -> QALAT_AR-RUM + link = { autogenerated = yes imp = 389 ck3 = 489 } # Larissa -> Thessalia + link = { autogenerated = yes imp = 827 ck3 = 4889 ck3 = 5944 } # Circesium -> AL-RAHBA, DAIR_AR-RUMAN + link = { autogenerated = yes imp = 829 ck3 = 4888 } # Doura -> AL-DALIYA + link = { autogenerated = yes imp = 391 imp = 392 ck3 = 488 } # Pagasai, Kasthaneia -> Demetrias + link = { autogenerated = yes imp = 848 imp = 820 ck3 = 4878 } # Alagma, Sahlala -> TALL_MAHRA + link = { autogenerated = yes imp = 804 ck3 = 4876 } # Soura -> RAQQA + link = { autogenerated = yes imp = 847 imp = 805 ck3 = 4875 } # Dausara, Amphipolis Syrias -> DAUSAR + link = { autogenerated = yes imp = 849 ck3 = 4874 } # Ballatha -> SARUJ + link = { autogenerated = yes imp = 809 ck3 = 4873 } # Europos -> TALL_AMMAR + link = { autogenerated = yes imp = 1847 ck3 = 4872 } # Bithias -> AL-BIRA + link = { autogenerated = yes imp = 844 ck3 = 4871 } # Antiochia Arabis -> TALL_MAUZAN + link = { autogenerated = yes imp = 819 ck3 = 4870 } # Carrhae -> HARRAN + link = { autogenerated = yes imp = 284 imp = 283 ck3 = 487 } # Eresos, Mytilene -> Lesbos + link = { autogenerated = yes imp = 818 imp = 817 ck3 = 4869 } # Adma, Batnai -> EDESSA + link = { autogenerated = yes imp = 879 imp = 840 ck3 = 4868 } # Barbare, Arsameia -> AS-SUWAIDA + link = { autogenerated = yes imp = 877 ck3 = 4866 } # Barsalium -> ZERMION + link = { autogenerated = yes imp = 878 ck3 = 4865 ck3 = 4867 } # Arsinia -> ERKNE, AMID + link = { autogenerated = yes imp = 8009 imp = 859 ck3 = 4863 } # Balisbiga, Dadima -> SHIMSHAT + link = { autogenerated = yes imp = 860 ck3 = 4861 } # Anzitene -> HANI + link = { autogenerated = yes imp = 857 imp = 841 ck3 = 4860 } # Sitai, Karkathiokerta -> NASRIYE + link = { autogenerated = yes imp = 286 imp = 288 imp = 289 ck3 = 486 } # Chios, Tecybeleneos, Erythrai -> Chios + link = { autogenerated = yes imp = 845 ck3 = 4859 } # Martyropolis -> MAYYAFARIQIN + link = { autogenerated = yes imp = 843 ck3 = 4857 } # Chlomaron -> TALL_FAFAN + link = { autogenerated = yes imp = 821 ck3 = 4856 } # Resaina -> KAFARTUTHA + link = { autogenerated = yes imp = 856 imp = 855 imp = 870 imp = 871 ck3 = 4855 } # Sardeoua, Siphrios, Izala Mons, Marde -> TALL_BASMA + link = { autogenerated = yes imp = 872 ck3 = 4854 } # Ammodios -> MARDIN + link = { autogenerated = yes imp = 854 ck3 = 4853 } # Ganaba -> RAS_AL-AIN + link = { autogenerated = yes imp = 874 ck3 = 4851 ck3 = 4852 } # Thannuris -> TUNAMIR, MIJDAL + link = { autogenerated = yes imp = 823 imp = 824 ck3 = 4850 } # Shadikanni, Qatnu -> AL-JIBAL + link = { autogenerated = yes imp = 409 imp = 407 imp = 410 imp = 7901 imp = 7904 imp = 7900 ck3 = 485 } # Karystos, Chalcis, Oichalia Euboias, Eretria, Styra, Dirphys Mons -> Euboia + link = { autogenerated = yes imp = 869 ck3 = 4847 } # Riskephas -> HISN_KAIFA + link = { autogenerated = yes imp = 822 ck3 = 4846 } # Nabada -> DARA + link = { autogenerated = yes imp = 830 imp = 832 ck3 = 4845 } # Nisibis, Ta'idu -> NASIBIN + link = { autogenerated = yes imp = 833 ck3 = 4844 ck3 = 4816 } # Pinaka -> GAZIRAT_IBN_UMAR, SA'IRD + link = { autogenerated = yes imp = 831 imp = 875 imp = 876 ck3 = 4843 } # Singara, Zagurae, Qarassas -> BASHAZZA + link = { autogenerated = yes imp = 873 ck3 = 4842 } # Hassu -> BARQAID + link = { autogenerated = yes imp = 868 ck3 = 4841 } # Dhahir -> BALAD-MOSUL + link = { autogenerated = yes imp = 861 ck3 = 4840 } # Apqu -> MOSUL + link = { autogenerated = yes imp = 263 imp = 1915 imp = 1964 imp = 375 imp = 387 imp = 7905 ck3 = 484 } # Naxos, Paros, Milos, Amorgos, Ios, Siphnos -> Naxos + link = { autogenerated = yes imp = 5440 imp = 773 ck3 = 4839 } # Syria Desert, Vicat -> TALL_AFAR + link = { autogenerated = yes imp = 882 ck3 = 4838 } # Kalhu -> JUHAINA + link = { autogenerated = yes imp = 835 ck3 = 4837 } # Hatra -> AL-HADR + link = { autogenerated = yes imp = 883 ck3 = 4836 } # Ashur -> AIN AL-QAYYARA + link = { autogenerated = yes imp = 894 ck3 = 4832 } # Maskin -> AIWANA + link = { autogenerated = yes imp = 904 imp = 954 ck3 = 4831 } # Idu, Haditha -> AR-RABB + link = { autogenerated = yes imp = 903 imp = 909 imp = 918 ck3 = 4830 } # Kerbala, Naarda, Babylon -> KARBALA + link = { autogenerated = yes imp = 266 imp = 1884 ck3 = 483 } # Rhodos, Syme -> Rhodos + link = { autogenerated = yes imp = 902 ck3 = 4829 ck3 = 4833 } # Misiche -> AL-ANBAR, HIT + link = { autogenerated = yes imp = 900 ck3 = 4828 } # Dur-Kurigalzu -> BAGHDAD + link = { autogenerated = yes imp = 910 imp = 901 imp = 911 ck3 = 4827 } # Sippar, Aswad, Seleucia Magna -> SARSAR + link = { autogenerated = yes imp = 923 imp = 919 imp = 920 imp = 921 imp = 7649 ck3 = 4826 } # Qadissiyya, Borsippa, Dilbat, Marad, (Unknown) -> AL-HILA + link = { autogenerated = yes imp = 917 imp = 913 imp = 915 ck3 = 4825 } # Kish, Vologesias, Cutha -> AL-FARASA + link = { autogenerated = yes imp = 960 imp = 916 imp = 927 ck3 = 4824 } # Zibliyat, Girumu, Skaphe -> HUMANIYA + link = { autogenerated = yes imp = 962 imp = 929 imp = 961 ck3 = 4823 } # Khay, Nippur, Adab -> AN-NU'MANIYA + link = { autogenerated = yes imp = 933 imp = 973 ck3 = 4822 } # Apamea ad Tigridem, Bakusaya -> KASKAR + link = { autogenerated = yes imp = 934 ck3 = 4821 } # Kashkar -> WASIT + link = { autogenerated = yes imp = 980 ck3 = 4820 } # Dorista -> AT-TIB + link = { autogenerated = yes imp = 7799 imp = 413 imp = 416 imp = 442 imp = 7898 imp = 5062 ck3 = 482 } # Thorikos, Oropos, Athens, Aigina, Rhamnous, Parnes Mons -> Atheniai + link = { autogenerated = yes imp = 947 imp = 4969 imp = 5235 ck3 = 4819 } # Choaspes, Andamaska, IMPASSIBLE TERRAIN 235 -> KARKHA + link = { autogenerated = yes imp = 948 imp = 946 ck3 = 4818 } # Dizpul, Shushan -> AS-SUS + link = { autogenerated = yes imp = 834 ck3 = 4813 ck3 = 4814 ck3 = 4815 } # Satalka -> BAQIRDA, TAMANIN, HAKKARI + link = { autogenerated = yes imp = 986 imp = 867 ck3 = 4812 } # Grai Darki, Shapur -> FISHABUR + link = { autogenerated = yes imp = 866 imp = 863 ck3 = 4811 } # Bavian, Balad -> NINAWA + link = { autogenerated = yes imp = 862 imp = 864 imp = 865 ck3 = 4810 } # Nineveh, Dur-Sharrukin, Gaugamela -> BARTULLA + link = { autogenerated = yes imp = 7894 imp = 418 imp = 448 imp = 7893 imp = 8003 imp = 5060 imp = 5061 imp = 7895 ck3 = 481 } # Kleonai, Korinthos, Stymphalia, Pellene, Sikyon, IMPASSIBLE TERRAIN 060, IMPASSIBLE TERRAIN 061, Arachnaion Mons -> Korinthos + link = { autogenerated = yes imp = 957 ck3 = 4809 } # Turshan -> AS-SINN + link = { autogenerated = yes imp = 881 ck3 = 4808 } # Kilizu -> AL-HADITHA + link = { autogenerated = yes imp = 886 ck3 = 4807 } # Nuzi -> BARIMMA + link = { autogenerated = yes imp = 892 ck3 = 4805 } # Dura -> SAMARRA + link = { autogenerated = yes imp = 893 ck3 = 4804 ck3 = 4834 } # Samarra -> BALAD, HISN AL-MASHUQ + link = { autogenerated = yes imp = 887 imp = 884 ck3 = 4803 } # Arzuhin, Arrapha -> KIRKUK + link = { autogenerated = yes imp = 885 ck3 = 4802 } # Lashom -> DAQUQA + link = { autogenerated = yes imp = 888 imp = 983 ck3 = 4801 } # Lahir, Paikuli -> RAUSHANQUBAD + link = { autogenerated = yes imp = 981 imp = 5234 ck3 = 4800 } # Kelonai, IMPASSIBLE TERRAIN 234 -> HULWAN + link = { autogenerated = yes imp = 361 imp = 358 imp = 8018 ck3 = 480 } # Gortyna, Knossos, Arkades -> Chandax + link = { autogenerated = yes imp = 890 imp = 977 ck3 = 4799 } # Gubba, Shahraban -> KHANIJAR + link = { autogenerated = yes imp = 976 ck3 = 4797 ck3 = 4798 } # Lawami -> ISKAF, JABBUL + link = { autogenerated = yes imp = 924 imp = 912 imp = 914 imp = 925 imp = 926 ck3 = 4796 } # Aberta, Ctesiphon, Opis, Shemali, Sumaka -> AN-NAHRAWAN + link = { autogenerated = yes imp = 895 imp = 899 ck3 = 4795 } # Awana, Bagdata -> UKBARA + link = { autogenerated = yes imp = 896 imp = 898 ck3 = 4794 } # Artemita, Nahrawan -> BA'QUBA + link = { autogenerated = yes imp = 897 ck3 = 4793 } # Daskara -> DASKARA + link = { autogenerated = yes imp = 889 ck3 = 4792 } # Me-Turnat -> JALULA-HULWAN + link = { autogenerated = yes imp = 979 ck3 = 4790 ck3 = 4791 } # Mandali -> TARSUKH, BANDANIJAN + link = { autogenerated = yes imp = 367 imp = 368 imp = 8017 ck3 = 479 } # Kydonia, Polyrrenia, Leuka Mons -> Kaneia + link = { autogenerated = yes imp = 974 ck3 = 4789 ck3 = 4786 } # Cossaea -> BAKUSAYA, AS-SAIMARA + link = { autogenerated = yes imp = 928 ck3 = 4788 } # Deru -> BADARAYA + link = { autogenerated = yes imp = 1602 imp = 1598 ck3 = 4784 } # Korine, Bagistana -> BISUTUN + link = { autogenerated = yes imp = 1603 ck3 = 4783 } # Zagrou Pylai -> TAZAR + link = { autogenerated = yes imp = 959 ck3 = 4780 } # Syarazur -> SHAHRAZUR + link = { autogenerated = yes imp = 429 imp = 471 ck3 = 478 } # Epidauros Limera, Kythera -> Monemvasia + link = { autogenerated = yes imp = 958 ck3 = 4779 } # Kurh u Kich -> TIRANSHAH + link = { autogenerated = yes imp = 985 ck3 = 4778 } # Ishkewt -> KHUFTIDKAN + link = { autogenerated = yes imp = 984 ck3 = 4777 } # Hazza -> IRBIL + link = { autogenerated = yes imp = 880 ck3 = 4774 ck3 = 4775 } # Arbela -> TALL HAFTUN, SHAQLABADH + link = { autogenerated = yes imp = 1503 imp = 1504 imp = 1507 ck3 = 4772 } # Salamas, Gazrik, Surenapati -> SALMAS + link = { autogenerated = yes imp = 1506 imp = 1505 imp = 1508 imp = 1509 ck3 = 4771 } # Ormi, Karenis, Balajuk, Siraganon -> URMIYA + link = { autogenerated = yes imp = 1511 imp = 1518 imp = 1519 imp = 1510 ck3 = 4770 } # Vovea, Araskh, Mari, Shno -> USHNUYA + link = { autogenerated = yes imp = 432 ck3 = 477 } # Mothone -> Methone + link = { autogenerated = yes imp = 1512 imp = 1513 ck3 = 4769 } # Sagapeni, Barozha -> BASAWA + link = { autogenerated = yes imp = 1553 imp = 1514 imp = 1516 imp = 1517 ck3 = 4767 } # Dashband, Fakhrikah, Gomarga, Matiania -> BAILAQAN + link = { autogenerated = yes imp = 1601 ck3 = 4765 } # Nikaia Nialia -> SANDA + link = { autogenerated = yes imp = 6964 imp = 4965 imp = 6958 ck3 = 4764 } # Golan, Makash, Bijar -> SAD KHANIYA + link = { autogenerated = yes imp = 434 imp = 7890 ck3 = 476 } # Patrai, Dyme -> Achaia + link = { autogenerated = yes imp = 3271 imp = 3266 imp = 3270 imp = 7856 ck3 = 4753 } # Thignica, Ureu, Bisica Lucana, Africa Impassable -> SILYANA + link = { autogenerated = yes imp = 3227 imp = 3161 imp = 3226 ck3 = 4752 } # Rusicade, Chullu, Culucitanis -> IZAN + link = { autogenerated = yes imp = 457 imp = 456 imp = 7803 imp = 5065 ck3 = 475 } # Naupaktos, Thermon, Oiniadai, IMPASSIBLE TERRAIN 065 -> Hellas + link = { autogenerated = yes imp = 8319 imp = 8318 imp = 5986 ck3 = 4748 } # Maghessel, Taddart, Middle Atlas -> NADOR + link = { autogenerated = yes imp = 6489 ck3 = 4746 ck3 = 4747 } # Mzamza -> EL-BOROUJ, TIT-AN-WAGURRAMT + link = { autogenerated = yes imp = 461 ck3 = 474 } # Kefalonia -> Cephalonia + link = { autogenerated = yes imp = 8329 imp = 8335 imp = 8356 ck3 = 4739 } # Errachidia, Atlas Pass, Boudenib -> ZIZ + link = { autogenerated = yes imp = 8292 imp = 8293 ck3 = 4734 } # Ouarzazate, Bou Azzer -> WARZAZAT + link = { autogenerated = yes imp = 6480 imp = 6479 imp = 6492 ck3 = 4731 } # Amrane, Bouzerrara, Zaakna -> BOULAWAN + link = { autogenerated = yes imp = 8280 imp = 8277 ck3 = 4722 } # Timlilt, Tamanar -> IGIR AD YATUF + link = { autogenerated = yes imp = 8274 imp = 8267 imp = 8272 ck3 = 4721 } # Moktar, Arambys, Iyiche -> AGHUZ + link = { autogenerated = yes imp = 6490 imp = 8268 imp = 8269 ck3 = 4720 } # Safim, Aguz, Yousouffia -> ASFI + link = { autogenerated = yes imp = 6474 imp = 8270 ck3 = 4718 } # Meskine, Guerir -> MARRAKESH + link = { autogenerated = yes imp = 8273 ck3 = 4717 ck3 = 4719 } # Marrakech -> NAFFIS, RIBAT SHAKIR + link = { autogenerated = yes imp = 8275 ck3 = 4716 } # Mejjat -> TINMALLAL + link = { autogenerated = yes imp = 8276 ck3 = 4715 } # Aghmat -> TASGIMUT + link = { autogenerated = yes imp = 8271 ck3 = 4714 } # Laattaouia -> AGHMAT + link = { autogenerated = yes imp = 6471 ck3 = 4713 } # Mousa -> AIT IYAT + link = { autogenerated = yes imp = 8324 ck3 = 4712 } # Atlas Pass -> AIT ITAB + link = { autogenerated = yes imp = 6472 imp = 6470 imp = 6473 ck3 = 4710 } # Amer, Rob'a, Ouardigha -> DAI + link = { autogenerated = yes imp = 412 ck3 = 471 ck3 = 3724 } # Lychidnos -> Ochrid, Debar + link = { autogenerated = yes imp = 6302 ck3 = 4709 } # Zemour -> TADLA + link = { autogenerated = yes imp = 8306 ck3 = 4708 } # Kerrouchen -> WAWMANA + link = { autogenerated = yes imp = 7221 imp = 6301 imp = 6478 ck3 = 4705 } # Mizab, Rutubis, Amar -> MAZAGHAN + link = { autogenerated = yes imp = 6477 imp = 6491 ck3 = 4704 } # Frej, Azama -> AZZAMUR + link = { autogenerated = yes imp = 6481 ck3 = 4703 } # Haouzia -> ANFA + link = { autogenerated = yes imp = 6475 ck3 = 4702 } # Anfa -> FADALA + link = { autogenerated = yes imp = 6486 ck3 = 4701 } # Ziaida -> RIBAT-AL-FATH + link = { autogenerated = yes imp = 6476 imp = 3068 ck3 = 4700 } # Khedis, Sala -> SALA + link = { autogenerated = yes imp = 415 ck3 = 470 } # Epidamnos -> Dyrrachion + link = { autogenerated = yes imp = 2181 ck3 = 47 ck3 = 48 ck3 = 50 } # Velaboria Orientalis -> NENAGH, ROSCREA, EMLY + link = { autogenerated = yes imp = 6484 ck3 = 4698 ck3 = 4707 } # Ifran -> TAGRAGRA, WAZEQQUR + link = { autogenerated = yes imp = 3067 imp = 3072 ck3 = 4695 } # Volubilis, Aquae Dacicae -> AL-ALIYA + link = { autogenerated = yes imp = 3079 imp = 8396 ck3 = 4694 } # Mons Semita, Kandar -> FES + link = { autogenerated = yes imp = 6485 ck3 = 4693 ck3 = 792 } # Tiflet -> BAHT, Atlas Mountains 3 + link = { autogenerated = yes imp = 3069 imp = 3073 ck3 = 4692 } # Tocolosida, Gilda -> WARZIGH + link = { autogenerated = yes imp = 3071 ck3 = 4691 } # Thamusida Australis -> WALILA + link = { autogenerated = yes imp = 3074 ck3 = 4689 } # Aelia -> IZERHAN + link = { autogenerated = yes imp = 3063 ck3 = 4687 } # Thamusida -> AL-BASRA + link = { autogenerated = yes imp = 3076 imp = 3066 imp = 3077 ck3 = 4686 } # Tremulae, Occasum, Oppidum Novum -> TAHLIT + link = { autogenerated = yes imp = 3065 ck3 = 4685 } # Frigidae -> KASR AL-KABIR + link = { autogenerated = yes imp = 3064 imp = 3062 imp = 3078 ck3 = 4684 } # Arzeila, Lixus, Ad Mercuri -> ASILA + link = { autogenerated = yes imp = 3061 ck3 = 4682 ck3 = 4683 } # Tingis -> SABTA, TANGER + link = { autogenerated = yes imp = 8354 imp = 8348 imp = 8349 imp = 8352 imp = 8353 imp = 8355 ck3 = 4679 } # Ziam, Hoceima, Sidi Driss, Ajdir, Mnoud Nekkour, Senada -> NAKUR + link = { autogenerated = yes imp = 8350 imp = 3080 imp = 8351 ck3 = 4678 } # Tiztoutine, Rusaddir, Midar -> MELILLA + link = { autogenerated = yes imp = 8398 imp = 8316 imp = 8317 imp = 8320 imp = 8321 imp = 6494 ck3 = 4675 } # Gafait, Oufriden, Guercif, Lamrija, Ouidane, More Riff -> SAA + link = { autogenerated = yes imp = 3082 ck3 = 4674 } # Mons Ambulatis -> WAJDA + link = { autogenerated = yes imp = 3089 imp = 3087 imp = 3090 ck3 = 4671 } # Altava, Pomaria, Tepidae -> AIN TEKBALET + link = { autogenerated = yes imp = 4060 ck3 = 467 } # Tragourion -> Split + link = { autogenerated = yes imp = 3083 ck3 = 4669 } # Lemnis -> HUNAYN + link = { autogenerated = yes imp = 3086 ck3 = 4668 } # Siga -> ARSGUL + link = { autogenerated = yes imp = 3088 imp = 3093 ck3 = 4667 } # Albulae, Regiae -> QASR IBN SINAN + link = { autogenerated = yes imp = 3092 imp = 3091 ck3 = 4666 } # Portus Divinus, Castra Puerorum -> ORAN + link = { autogenerated = yes imp = 3095 ck3 = 4664 ck3 = 4665 } # Portus Magnus -> MARSA FARUKH, ARZEW + link = { autogenerated = yes imp = 3100 ck3 = 4656 ck3 = 800 } # Castra Nova -> QALA'A B_HUWARA, Tell Atlas Mountains 1 + link = { autogenerated = yes imp = 3109 imp = 3102 imp = 3107 ck3 = 4655 } # Portus Magulus, Mina, Caudium Castra -> YALALA + link = { autogenerated = yes imp = 3106 imp = 3108 imp = 3101 ck3 = 4653 } # Arsennaria, Cartennae, Quiza Xenitana -> TANAS + link = { autogenerated = yes imp = 3111 imp = 3113 ck3 = 4652 } # Cartili, Gunugu -> SHARSHAL + link = { autogenerated = yes imp = 3118 imp = 3116 ck3 = 4651 } # Icosium, Iol -> MATTIJA + link = { autogenerated = yes imp = 3120 ck3 = 4650 } # Rusguniae -> ALGIERS + link = { autogenerated = yes imp = 4054 ck3 = 465 } # Idassa -> Zadar + link = { autogenerated = yes imp = 3123 imp = 3121 imp = 3122 imp = 3124 ck3 = 4649 } # Rusazus, Rusuccuru, Rusippisir, Bida -> TADALLIS + link = { autogenerated = yes imp = 8383 imp = 8375 imp = 8376 imp = 8378 imp = 8381 imp = 8382 imp = 8384 imp = 8385 ck3 = 4645 } # Moudjebara, Dechret Kamra, Errich, Gahra, Hamel, Chioukh, Djelfa, Ibel -> BOU SAADA + link = { autogenerated = yes imp = 8379 imp = 3152 imp = 3153 imp = 3155 ck3 = 4644 } # Slimane, Thubunae, Mesarietta, Aqua Viva -> TUBNA + link = { autogenerated = yes imp = 3173 imp = 3156 ck3 = 4643 } # Burgus Gaetulia, Nicivibus -> NGAOUS + link = { autogenerated = yes imp = 8380 imp = 3151 ck3 = 4642 } # Mcif, Macri -> MAGRA + link = { autogenerated = yes imp = 8386 imp = 3132 imp = 3133 imp = 3134 imp = 8377 ck3 = 4641 } # Teboucha, Tatiliti, Zabi, Equizeto, Khoubana -> AL-MASILA + link = { autogenerated = yes imp = 3139 imp = 3140 imp = 3142 imp = 3141 imp = 3157 ck3 = 4640 } # Vanisnesi, Ad Sava Municipium, Aras, Sertei, Lemellia -> QALA'A B_HAMMAD + link = { autogenerated = yes imp = 4033 ck3 = 464 ck3 = 3540 } # Senia -> Senj, Brinje + link = { autogenerated = yes imp = 3147 imp = 3148 imp = 3158 imp = 3159 ck3 = 4639 } # Sitifis, Mopth, Lobrinia, Zarai -> SATIF + link = { autogenerated = yes imp = 3146 imp = 3149 ck3 = 4638 } # Satafis, Cuicul -> IKJAN + link = { autogenerated = yes imp = 3126 imp = 3135 imp = 3143 imp = 3144 ck3 = 4637 } # Saldae, Tubusuctu, Lesbia, Muslubium -> BEJAYA + link = { autogenerated = yes imp = 3150 imp = 3145 imp = 3160 ck3 = 4636 } # Igilgili, Choba, Tucca -> JIJEL + link = { autogenerated = yes imp = 3162 ck3 = 4635 ck3 = 805 } # Milevum -> MILA, Tell Atlas Mountains 6 + link = { autogenerated = yes imp = 3177 imp = 3179 ck3 = 4634 } # Lamasba, Verecunda -> BILIZMA + link = { autogenerated = yes imp = 3171 ck3 = 4633 } # Tabudium -> SIDI UQBA + link = { autogenerated = yes imp = 3181 imp = 3164 imp = 3165 ck3 = 4632 } # Sigus, Thibilis, Nattabutum -> TIJIS + link = { autogenerated = yes imp = 3163 imp = 3178 imp = 3180 imp = 3183 ck3 = 4631 } # Cirta, Diana Veteranorum, Thenebrestia, Subzuaritanum -> CONSTANTINE + link = { autogenerated = yes imp = 3223 imp = 3221 imp = 3228 imp = 3355 ck3 = 4630 } # Calama, Zattara, Celtianis, Fabatianum -> QALAMA + link = { autogenerated = yes imp = 4077 ck3 = 463 } # Marsonia -> Usora + link = { autogenerated = yes imp = 3231 imp = 3218 imp = 7859 ck3 = 4629 } # Pagus Malarensium, Tipasa, Africa Impassable -> TUBURSHIQ + link = { autogenerated = yes imp = 3220 imp = 3217 ck3 = 4628 } # Saltus Sorothensis, Madauros -> TIFASH + link = { autogenerated = yes imp = 3182 imp = 3167 imp = 3168 imp = 3170 imp = 3207 imp = 3174 imp = 9145 ck3 = 4627 } # Bagai, Macomades, Mascula Tiberia, Lambafundi, Vegesela, Claudi, Aures Mountains -> BAGHAYA + link = { autogenerated = yes imp = 3215 imp = 3213 imp = 3219 ck3 = 4626 } # Casaea, Vasampus, Marcimeni -> MASKIYANA + link = { autogenerated = yes imp = 3214 imp = 3208 imp = 3247 ck3 = 4625 } # Thaesactum, Ammaedara, Althiburos -> MAYDARA + link = { autogenerated = yes imp = 3205 imp = 3209 imp = 3248 ck3 = 4624 } # Menegesum, Thala Musulamia, Thugga Terebenthina -> TALA + link = { autogenerated = yes imp = 3206 imp = 3185 imp = 3203 ck3 = 4623 } # Ad Aquas Caesaris, Leges Maiores, Theveste -> TABASSA + link = { autogenerated = yes imp = 3172 imp = 9144 ck3 = 4621 } # Aurasius Superior, Aures Mountains -> BISKRA + link = { autogenerated = yes imp = 3184 imp = 3166 ck3 = 4620 } # Thalades, Gadiaufala -> QASR AL-IFRIQI + link = { autogenerated = yes imp = 4182 ck3 = 462 } # Claudia -> Krizevci + link = { autogenerated = yes imp = 4176 imp = 4181 ck3 = 461 } # Pyrri, Savia -> Zagreb + link = { autogenerated = yes imp = 3186 imp = 3193 imp = 3204 ck3 = 4607 } # Ubaza Castellum, Cerva, Vatari -> MADILA + link = { autogenerated = yes imp = 3189 imp = 3188 ck3 = 4606 } # Ad Speculum, Casae Nigrae -> MADAS + link = { autogenerated = yes imp = 8249 imp = 8251 imp = 8253 imp = 8254 imp = 8255 imp = 8241 ck3 = 4605 } # Tabria, Turris Tamaleni, Jamnah, Ghidma, Faouar, Jebil -> DOUZ + link = { autogenerated = yes imp = 8256 ck3 = 4604 } # Rjim Maatoug -> SOUF + link = { autogenerated = yes imp = 8257 ck3 = 4603 ck3 = 4608 } # Talib -> NAFTA, AJLU + link = { autogenerated = yes imp = 3190 ck3 = 4602 } # Thiges -> HAMMA + link = { autogenerated = yes imp = 3191 ck3 = 4601 } # Castra Neptitana -> TOZEUR + link = { autogenerated = yes imp = 3196 ck3 = 4600 } # Capsa Iustiniana -> TAQYUS + link = { autogenerated = yes imp = 4137 ck3 = 460 } # Populi -> Varadzin + link = { autogenerated = yes imp = 2183 ck3 = 46 ck3 = 8749 } # Gangania Australis -> ENNIS, Kincora + link = { autogenerated = yes imp = 3201 imp = 3195 ck3 = 4599 } # Tabira, Gemellia -> QAFSA + link = { autogenerated = yes imp = 3194 imp = 3197 imp = 3198 imp = 3199 ck3 = 4598 } # Thelepte, Sufetula, Cillium, Nara Maxyesia -> AL-QASRAYN + link = { autogenerated = yes imp = 3286 ck3 = 4597 } # Aeliae -> AL-ABBASIYA + link = { autogenerated = yes imp = 3279 ck3 = 4596 } # Vicus Augusti -> MANSURIYA + link = { autogenerated = yes imp = 3272 imp = 3212 imp = 3242 ck3 = 4594 } # Muzuc, Aquae Regiae, Abthugni -> KAIROUAN + link = { autogenerated = yes imp = 3211 imp = 3210 imp = 3246 ck3 = 4593 } # Masclinae, Sufes, Mactaris -> SABIBA + link = { autogenerated = yes imp = 3239 imp = 3236 imp = 3238 imp = 3240 imp = 3241 imp = 7854 ck3 = 4592 } # Uzappa, Assuras, Zama Regia, Seressi, Furnos Maius, Africa Impassable -> JALULA + link = { autogenerated = yes imp = 3235 imp = 3237 imp = 3269 ck3 = 4591 } # Lares, Obba, Thugga -> AL-ARIBUS + link = { autogenerated = yes imp = 3232 imp = 3216 imp = 3234 ck3 = 4590 } # Simitthus, Funda Thavagalensis, Sicca Veneria -> SIQQABANARIYA + link = { autogenerated = yes imp = 4032 ck3 = 459 } # Curicum -> Veglia + link = { autogenerated = yes imp = 3267 imp = 3233 imp = 3265 imp = 3268 ck3 = 4589 } # Numluli, Bulla Regia, Thimida Bure, Aunobaris -> BAJA + link = { autogenerated = yes imp = 3225 imp = 3224 ck3 = 4588 } # Hippo Regius, Asuccuris -> ANNABA + link = { autogenerated = yes imp = 3229 ck3 = 4587 } # Tuniza -> MANSA'L-KHARAZ + link = { autogenerated = yes imp = 3230 imp = 7858 ck3 = 4586 } # Thabraca, Africa Impassable -> TABARQA + link = { autogenerated = yes imp = 3262 imp = 3258 imp = 3263 imp = 3264 ck3 = 4585 } # Kinna Thabracania, Hippo Diarrhytus, Rucuma, Septimia -> BANZART + link = { autogenerated = yes imp = 3245 imp = 1470 imp = 3244 imp = 3252 imp = 3253 imp = 3254 imp = 3255 ck3 = 4584 } # Curubis, Cossyra, Pupput, Carpis, Nepheris, Kerkouane, Missua -> NABEUL + link = { autogenerated = yes imp = 3261 imp = 3256 imp = 3257 imp = 3260 imp = 7857 ck3 = 4583 } # Thisika, Carthago, Utica, Matar, Africa Impassable -> QARTAJANA + link = { autogenerated = yes imp = 3259 imp = 3250 ck3 = 4582 } # Uzali Sar, Uthina -> TUNIS + link = { autogenerated = yes imp = 3249 imp = 3251 imp = 7853 ck3 = 4581 } # Ziqua, Membressa, Africa Impassable -> ZAGHWAN + link = { autogenerated = yes imp = 3243 imp = 3274 imp = 3275 ck3 = 4580 } # Feradi Maius, Mediccera, Ulizibbira -> SUSA + link = { autogenerated = yes imp = 4039 imp = 4175 ck3 = 458 } # Romula, Aquae Iasae -> Istria + link = { autogenerated = yes imp = 3276 ck3 = 4579 } # Hadrametum -> MONASTIR + link = { autogenerated = yes imp = 3277 imp = 3278 ck3 = 4578 } # Leptis Minor, Thapsus -> MAHDIYA + link = { autogenerated = yes imp = 3281 imp = 3280 imp = 3282 ck3 = 4577 } # Bararus, Acholla, Thysdrus -> SLAKTA + link = { autogenerated = yes imp = 3200 imp = 3288 ck3 = 4576 } # Oviscae, Macomades Minores -> EL-JEM + link = { autogenerated = yes imp = 3285 imp = 3283 imp = 3284 imp = 3287 ck3 = 4575 } # Thaenae, Usula, Cercina, Taparura -> SFAX + link = { autogenerated = yes imp = 3290 imp = 3202 imp = 3289 ck3 = 4574 } # Aves, Silesva, Bennafa -> AL-HAMMA + link = { autogenerated = yes imp = 3292 imp = 3291 imp = 8248 imp = 8252 ck3 = 4573 } # Arelliorum, Tacape, Bezereos, Aquae Tacapitanae -> QABIS + link = { autogenerated = yes imp = 7789 imp = 6467 imp = 7790 ck3 = 457 } # Ganges, LAKE, Ganges -> Ichamati River + link = { autogenerated = yes imp = 8227 imp = 8212 imp = 8215 imp = 8216 imp = 8225 imp = 8228 imp = 8177 ck3 = 4569 } # Ajdab, Mizda, Vinaza, Garian, Scemech, Dnar, Desert -> TAMAZDA + link = { autogenerated = yes imp = 8243 imp = 3293 imp = 8242 ck3 = 4566 } # Augemmi, Gigthis, Tabalati -> BUGHRARA + link = { autogenerated = yes imp = 3294 ck3 = 4562 } # Tipasa -> JERBA + link = { autogenerated = yes imp = 7787 imp = 7786 imp = 7788 ck3 = 456 } # Ganges, Ganges, Ganges -> Hooghly River + link = { autogenerated = yes imp = 8214 imp = 8213 ck3 = 4558 } # Thenteos, Centenarium -> TIRI + link = { autogenerated = yes imp = 3303 imp = 3304 imp = 3305 imp = 8217 imp = 8218 imp = 8219 ck3 = 4557 } # Oea, Amarea, Gaphara, Thenadassa, Mesphe, Subututtu -> TRIPOLIS + link = { autogenerated = yes imp = 3325 imp = 3326 imp = 8220 imp = 8221 imp = 8226 ck3 = 4555 } # Thubactis, Base, Banat, Sdada, Rimoniana -> MISURATA + link = { autogenerated = yes imp = 3327 imp = 3329 ck3 = 4554 } # Thebunte, Annesel -> TAWURGHA + link = { autogenerated = yes imp = 3345 imp = 3342 imp = 3343 ck3 = 4551 } # Chorotus, Kainon, Corniclanum -> AJADABIYA + link = { autogenerated = yes imp = 3384 imp = 1556 ck3 = 4549 } # Kul, Giaur -> SHIZ + link = { autogenerated = yes imp = 1555 imp = 1557 ck3 = 4548 } # Shiz, Chahar Taq -> AR-RAN + link = { autogenerated = yes imp = 3388 ck3 = 4547 } # Ekkana -> KHUNAJ + link = { autogenerated = yes imp = 3386 imp = 1515 imp = 1552 ck3 = 4546 } # Batina, Gazaka, Adjalu -> LEYLAN + link = { autogenerated = yes imp = 1628 ck3 = 4543 } # Piri -> ARDABIL + link = { autogenerated = yes imp = 1619 imp = 1622 ck3 = 4541 } # Dish, Seqindel -> DIZMAR + link = { autogenerated = yes imp = 1565 ck3 = 4538 } # Shahi Island -> DIHNAKHIRJAN + link = { autogenerated = yes imp = 1527 imp = 1526 imp = 5215 ck3 = 4537 } # Parsk, Tauris, IMPASSIBLE TERRAIN 215 -> TABRIZ + link = { autogenerated = yes imp = 1528 imp = 1502 imp = 1530 ck3 = 4536 } # Morounda, Tasuk, Bakurakerta -> MARAND + link = { autogenerated = yes imp = 1630 ck3 = 4534 ck3 = 4535 } # Langarkanan -> TALISH, APARSHAHR + link = { autogenerated = yes imp = 5423 ck3 = 4533 } # Ahur -> NEBIT DAG + link = { autogenerated = yes imp = 6812 ck3 = 4532 } # Kumdah -> YASHKAN + link = { autogenerated = yes imp = 5427 ck3 = 4531 } # Bakk -> DEKCHA + link = { autogenerated = yes imp = 6808 ck3 = 4530 } # Uzboia -> BURGUN + link = { autogenerated = yes imp = 5452 ck3 = 4529 } # Oshin -> IGDY + link = { autogenerated = yes imp = 6807 imp = 6806 ck3 = 4528 } # Dauaba, Balkan -> KURTYSH + link = { autogenerated = yes imp = 5456 ck3 = 4527 } # Murna -> BALA ISKEM + link = { autogenerated = yes imp = 5453 ck3 = 4526 } # Zatra -> KUGUNEK + link = { autogenerated = yes imp = 5454 imp = 5455 imp = 6809 ck3 = 4525 } # Yatsha, Palimek, Sariq -> ORTAKUYU + link = { autogenerated = yes imp = 4369 ck3 = 4513 ck3 = 4512 ck3 = 3029 } # Gandava -> SIBI, SHAL, PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 6540 imp = 6539 imp = 6571 ck3 = 4511 } # Cottabura, Musarna, Pharsaga -> MASTANG + link = { autogenerated = yes imp = 6613 ck3 = 4508 } # Andaka -> LAMGHAN + link = { autogenerated = yes imp = 6623 ck3 = 4507 ck3 = 4509 } # Tazora -> JALDAK, MAPAN + link = { autogenerated = yes imp = 6624 ck3 = 4506 } # Liman -> MOQOR + link = { autogenerated = yes imp = 6608 ck3 = 4504 } # Kaboura -> KABUL + link = { autogenerated = yes imp = 6640 imp = 6641 ck3 = 4502 } # Alkon, Naulibis -> ISTAKH + link = { autogenerated = yes imp = 6609 ck3 = 4500 ck3 = 4503 ck3 = 4501 } # Ortespane -> GHAZNA, SUKAWAND, GARDIZ + link = { autogenerated = yes imp = 2180 ck3 = 45 } # Velaboria Borealis -> LIMERICK + link = { autogenerated = yes imp = 6632 ck3 = 4499 } # Kopan -> RUKHAJ + link = { autogenerated = yes imp = 6547 ck3 = 4498 } # Artoarta -> QANDAHAR + link = { autogenerated = yes imp = 6573 ck3 = 4495 ck3 = 4496 } # Banagara -> PANJWAY, BAKRAWATH + link = { autogenerated = yes imp = 6548 ck3 = 4494 } # Itua -> RUDAN + link = { autogenerated = yes imp = 6622 imp = 6553 imp = 6633 ck3 = 4492 } # Phoklis, Carura, Kora -> DURGAS + link = { autogenerated = yes imp = 6610 ck3 = 4491 } # Musai -> BISHANG + link = { autogenerated = yes imp = 6554 ck3 = 4490 ck3 = 4493 } # Bagasse -> SARWAN, BAGNIN + link = { autogenerated = yes imp = 6538 imp = 6616 ck3 = 4488 } # Badara, Choarene -> QIQAN + link = { autogenerated = yes imp = 6555 ck3 = 4485 ck3 = 4489 } # Demetrias Arachosias -> AL-MUASKAR, ZAMINDAWAR + link = { autogenerated = yes imp = 6546 ck3 = 4484 ck3 = 4467 } # Arachotus -> BOST, LANDAY + link = { autogenerated = yes imp = 6594 ck3 = 4483 } # Taharene -> GALIKAN + link = { autogenerated = yes imp = 6595 ck3 = 4482 } # Pharazana -> DELARAM + link = { autogenerated = yes imp = 6618 imp = 6617 ck3 = 4481 } # Oltus, Pardiae -> GAJOR + link = { autogenerated = yes imp = 6537 imp = 6535 ck3 = 4480 } # Soxetra, Oscana -> BUDIN + link = { autogenerated = yes imp = 6534 ck3 = 4478 ck3 = 4479 } # Zetis -> WAD, QUSDAR + link = { autogenerated = yes imp = 6619 ck3 = 4477 ck3 = 3036 } # Arbia -> KHAWR, PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 6536 imp = 6533 ck3 = 4476 } # Arbiti, Rhamna -> ARMABIL + link = { autogenerated = yes imp = 6526 imp = 6532 ck3 = 4475 } # Pagala, Arbis -> QANBALI + link = { autogenerated = yes imp = 6531 imp = 6524 imp = 6525 imp = 6620 ck3 = 4474 } # Cocala, Malana, Cabana, Bambacia -> KOKAHDAN + link = { autogenerated = yes imp = 6549 imp = 6550 ck3 = 4466 } # Parabeste, Ariaspe -> KHANNESIN + link = { autogenerated = yes imp = 7259 ck3 = 4462 } # Baraq -> NORTH KURDAR + link = { autogenerated = yes imp = 9240 imp = 9241 ck3 = 4461 } # Sokkul, Qo'yqirilgan -> MIZDAHQAN + link = { autogenerated = yes imp = 7260 imp = 9243 ck3 = 4459 } # Kupir, Nazarkhan -> BARATIGIN + link = { autogenerated = yes imp = 5484 imp = 5483 ck3 = 4458 } # Cammei, Tubek -> MADMINIYA + link = { autogenerated = yes imp = 6803 ck3 = 4457 } # Gurganj -> JITH + link = { autogenerated = yes imp = 6805 ck3 = 4456 } # Ariaka -> GURGANJ + link = { autogenerated = yes imp = 6797 ck3 = 4455 ck3 = 4524 } # Vezir -> ZAMAKHSHAR, SARYKAMYSH + link = { autogenerated = yes imp = 6799 ck3 = 4451 ck3 = 4452 } # Zamakshahr -> KARDURAN-KHAS, KHIVA + link = { autogenerated = yes imp = 6804 ck3 = 4449 ck3 = 4453 ck3 = 4454 } # Mizdaqahn -> RAKHUSHMITHAN, RUZVAND, NAZVAR + link = { autogenerated = yes imp = 9239 ck3 = 4448 ck3 = 4447 } # Sarymay -> KATH, GHARDAMAN + link = { autogenerated = yes imp = 9238 ck3 = 4445 ck3 = 4446 } # Sho'rtakli -> ARDAKHIVAH, WAYIKHAN + link = { autogenerated = yes imp = 9237 imp = 5968 ck3 = 4444 } # Nar Gyz, Karakum Dessert Impassable -> NUKFAGH + link = { autogenerated = yes imp = 6800 ck3 = 4443 ck3 = 4450 } # Aratha -> SADVAR, HAZARASP + link = { autogenerated = yes imp = 6801 ck3 = 4442 } # Jirbend -> JIGIRBEND + link = { autogenerated = yes imp = 6802 ck3 = 4440 ck3 = 4441 } # Varakhsha -> TAHIRIYA, DARGHAN + link = { autogenerated = yes imp = 6739 ck3 = 4439 } # Akhsiket -> MARGHINAN + link = { autogenerated = yes imp = 6734 ck3 = 4436 ck3 = 4437 ck3 = 4438 } # Chust -> ARDALANKATH, KASAN, AKHSIKATH + link = { autogenerated = yes imp = 6736 ck3 = 4431 ck3 = 7967 } # Osh -> NAQAD, Terek + link = { autogenerated = yes imp = 6740 ck3 = 4430 } # Shakrikhan -> OSH + link = { autogenerated = yes imp = 6737 ck3 = 4432 } # Andijan -> UZGEND + link = { autogenerated = yes imp = 6788 ck3 = 4433 } # Shura -> MIYAN-RUDAN + link = { autogenerated = yes imp = 6738 ck3 = 4429 ck3 = 4435 ck3 = 4434 } # Namakan -> ANDIJAN, NAJM, KHAYLAM + link = { autogenerated = yes imp = 6735 ck3 = 4426 ck3 = 4427 } # Dawan -> AVAL, QUBA + link = { autogenerated = yes imp = 6730 ck3 = 4424 ck3 = 4428 } # Khavakand -> SUKH, KHOKAND + link = { autogenerated = yes imp = 6789 ck3 = 4421 } # Uskat -> WANKATH + link = { autogenerated = yes imp = 6731 imp = 6790 ck3 = 4420 } # Massagetia, Tunket -> ASHT + link = { autogenerated = yes imp = 6732 ck3 = 4419 ck3 = 4423 ck3 = 4422 ck3 = 4425 } # Makhram -> KEND-I-BADAM, ISFARA, VARUKH, HOSHYAR + link = { autogenerated = yes imp = 7276 imp = 7278 ck3 = 4417 } # Ust, Padri -> KHAWAS + link = { autogenerated = yes imp = 6704 ck3 = 4416 ck3 = 4418 } # Alexandreia Eschate -> KURKATH, KHOJAND + link = { autogenerated = yes imp = 6811 ck3 = 4415 } # Hazar -> CHELEKEN + link = { autogenerated = yes imp = 6703 imp = 6721 ck3 = 4414 } # Kyropolis Baktriane, Drepsiana -> BUNJIKET + link = { autogenerated = yes imp = 7275 ck3 = 4413 } # Shahr Jaxartha -> ZAMIN + link = { autogenerated = yes imp = 7277 ck3 = 4412 } # Arcum -> DIZAK + link = { autogenerated = yes imp = 6733 ck3 = 4411 } # Istarava -> BOTTAMAN + link = { autogenerated = yes imp = 6705 imp = 6702 ck3 = 4409 } # Matuaspa, Shakria -> PANJIKAND + link = { autogenerated = yes imp = 7274 ck3 = 4408 } # Gabae -> BARKAT + link = { autogenerated = yes imp = 6682 ck3 = 4407 ck3 = 4410 } # Marakanda -> WADHAR, VARAGHSHAR + link = { autogenerated = yes imp = 6716 ck3 = 4403 ck3 = 4404 } # Nautaka -> ARBINJAN, SAMARQAND + link = { autogenerated = yes imp = 4899 ck3 = 440 ck3 = 4972 ck3 = 527 } # Sidaris -> Olsztyn, Dabrowa Gorn, Krakow + link = { autogenerated = yes imp = 2186 ck3 = 44 } # Brigantia Australis -> CARRICK + link = { autogenerated = yes imp = 6712 ck3 = 4399 ck3 = 4405 ck3 = 4400 ck3 = 4406 } # Kaza -> KUSHANIYA, ISHTIKHAN, NOOR BUKHARA, QATWAN + link = { autogenerated = yes imp = 6713 ck3 = 4397 ck3 = 4398 } # Kermine -> GHUJDUVAN, TAVAVIS + link = { autogenerated = yes imp = 6707 ck3 = 4395 ck3 = 4396 } # Tribactra -> VARAKHSHA, RAMITAN + link = { autogenerated = yes imp = 6717 ck3 = 4393 ck3 = 4394 } # Branchidai -> PAYKEND, BUKHARA + link = { autogenerated = yes imp = 6710 imp = 7244 ck3 = 4392 } # Xenippa, Amu -> BEZDA + link = { autogenerated = yes imp = 6714 ck3 = 4391 ck3 = 4401 ck3 = 4402 } # Karnab -> RIBAT MALIK, KERMINIYA, DABUSIYA + link = { autogenerated = yes imp = 6715 ck3 = 4390 } # Naura -> NAKHSHAB + link = { autogenerated = yes imp = 6711 ck3 = 4389 } # Charva -> NAWQAD QUREISH + link = { autogenerated = yes imp = 6706 ck3 = 4387 ck3 = 4388 } # Kis -> Al-Musala, Kishsh + link = { autogenerated = yes imp = 7238 ck3 = 4386 } # Nikhshapaya -> Subakh + link = { autogenerated = yes imp = 6719 ck3 = 4385 } # Petra Sisimithrou -> Kandak + link = { autogenerated = yes imp = 7232 imp = 7233 ck3 = 4384 } # Tarmantis, Bazaria -> Kalif + link = { autogenerated = yes imp = 6720 imp = 6774 ck3 = 4383 } # Baskata, Karamyk -> Rasht + link = { autogenerated = yes imp = 6701 ck3 = 4382 } # Petra Chorienou -> Vashjird + link = { autogenerated = yes imp = 6700 ck3 = 4381 } # Petra Arimazou -> Shuman + link = { autogenerated = yes imp = 6699 ck3 = 4380 } # Marouka -> Munk + link = { autogenerated = yes imp = 6695 ck3 = 4378 ck3 = 4379 } # Cholbisina -> Pargar, Hulbuk + link = { autogenerated = yes imp = 6698 ck3 = 4377 } # Ikroni -> Livkand + link = { autogenerated = yes imp = 6696 ck3 = 4376 } # Boubakene -> Halavand + link = { autogenerated = yes imp = 6691 ck3 = 4374 } # Oxeiana -> Awzaj + link = { autogenerated = yes imp = 6690 ck3 = 4373 } # Antiocheia Tarmita -> Charmanjan + link = { autogenerated = yes imp = 6688 imp = 6689 ck3 = 4372 } # Alexandria Oxiana, Pandokheion -> Basand + link = { autogenerated = yes imp = 6697 ck3 = 4371 ck3 = 4375 } # Margineia -> Darzanji, Qobadiyan + link = { autogenerated = yes imp = 6687 ck3 = 4369 ck3 = 4370 } # Gazaba -> Chaghaniyan, Rigar + link = { autogenerated = yes imp = 6763 ck3 = 4365 ck3 = 2702 } # Bulaq -> Murghab, PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 6764 imp = 6769 ck3 = 4364 } # Miena, Pamir -> Alichur + link = { autogenerated = yes imp = 6765 ck3 = 4363 } # Kafir Kala -> Shughnan + link = { autogenerated = yes imp = 6762 ck3 = 4360 ck3 = 4359 } # Kaahka Pamir -> Ishkamish, Zaybak + link = { autogenerated = yes imp = 6759 ck3 = 4354 } # Samti -> Kishm + link = { autogenerated = yes imp = 6694 ck3 = 4353 } # Oskobara -> Rustaq + link = { autogenerated = yes imp = 6686 ck3 = 4351 ck3 = 4368 } # Tarmita -> Khulm, Termez + link = { autogenerated = yes imp = 6693 imp = 6627 ck3 = 4349 } # Aornos, Astakana -> Valvalij + link = { autogenerated = yes imp = 6648 imp = 6680 ck3 = 4348 } # Drapsake, Tochara -> Baghlan + link = { autogenerated = yes imp = 6650 ck3 = 4347 } # Kabolite -> Andarab + link = { autogenerated = yes imp = 6625 ck3 = 4345 } # Kapissa -> Panjhir + link = { autogenerated = yes imp = 6611 ck3 = 4344 ck3 = 4346 } # Alexandria ad Caucasum -> Parwan, Jarbaya + link = { autogenerated = yes imp = 6651 imp = 6614 imp = 6638 ck3 = 4343 } # Choatina, Cartana, Paros Paropamisadorum -> Bamiyan + link = { autogenerated = yes imp = 6649 ck3 = 4342 } # Battak -> Sakalkand + link = { autogenerated = yes imp = 6681 ck3 = 4341 ck3 = 4352 } # Tahora -> Samanjan, Mila + link = { autogenerated = yes imp = 6679 ck3 = 4340 } # Phratroua -> Ruy + link = { autogenerated = yes imp = 3868 ck3 = 434 } # Cobandia Minor -> KOLDING + link = { autogenerated = yes imp = 6637 imp = 6630 imp = 6677 ck3 = 4339 } # Alexandreia Bactriane, Zaviaspa, Denai -> Saan + link = { autogenerated = yes imp = 6654 ck3 = 4337 } # Indikomordana -> Navida + link = { autogenerated = yes imp = 6655 ck3 = 4336 } # Kumsar -> Shapurqan + link = { autogenerated = yes imp = 6678 ck3 = 4335 ck3 = 4338 } # Bactra -> Balkh, Siyahjird + link = { autogenerated = yes imp = 7229 ck3 = 4334 } # Kharispa -> Rib?-i-l-K? + link = { autogenerated = yes imp = 6962 imp = 6961 ck3 = 4333 } # Choromia, Vera -> Hamadan + link = { autogenerated = yes imp = 6963 imp = 1594 imp = 3393 ck3 = 4332 } # Sigria, Kangavar, Vindirni -> Dinawar + link = { autogenerated = yes imp = 1595 imp = 1596 ck3 = 4331 } # Ecbatana, Deh Bozan -> Rudhrawar + link = { autogenerated = yes imp = 4981 imp = 4980 imp = 4982 ck3 = 4330 } # Rhapsa, Ashtian, Tabarte -> Sharuq + link = { autogenerated = yes imp = 3887 ck3 = 433 ck3 = 85 } # Herulia Orientalis -> HELSINGORA, HAFN + link = { autogenerated = yes imp = 6955 imp = 6956 imp = 6959 ck3 = 4329 } # Saavakineh, Siva, Vesaspe -> Mazdaqan + link = { autogenerated = yes imp = 6960 ck3 = 4328 } # Iasonia -> Aba + link = { autogenerated = yes imp = 3385 imp = 4990 ck3 = 4327 } # Aba, Molla -> Suhravard + link = { autogenerated = yes imp = 3383 ck3 = 4326 } # Shaapa -> Afshar + link = { autogenerated = yes imp = 4989 imp = 4987 ck3 = 4324 } # Ekur, Shiman -> Abhar + link = { autogenerated = yes imp = 6957 imp = 4984 ck3 = 4323 } # Pirra, Kaspin -> Qazvin + link = { autogenerated = yes imp = 3381 imp = 3396 ck3 = 4322 } # Sigriane, Choana Medias -> Qasran + link = { autogenerated = yes imp = 3382 ck3 = 4321 } # Baaka -> Mashkuya + link = { autogenerated = yes imp = 3452 imp = 3394 imp = 3395 ck3 = 4320 } # Goziris, Tarkhan, Nizamabad -> Waramin + link = { autogenerated = yes imp = 4999 ck3 = 4319 } # Tishtriana -> Rayy + link = { autogenerated = yes imp = 7639 ck3 = 4314 } # Salus -> Shalush + link = { autogenerated = yes imp = 7638 ck3 = 4313 ck3 = 4312 } # Mura -> Natil, Amul + link = { autogenerated = yes imp = 4997 imp = 4996 ck3 = 4311 } # Saringiy, Amarda -> Sariya + link = { autogenerated = yes imp = 3434 ck3 = 4310 } # Charinda -> Tamisha + link = { autogenerated = yes imp = 966 ck3 = 4308 } # Samangan -> Ramhurmuz + link = { autogenerated = yes imp = 4779 ck3 = 4306 ck3 = 4307 } # Agines -> Dariyan, Asak + link = { autogenerated = yes imp = 4780 ck3 = 4305 } # Arragan -> Arrajan + link = { autogenerated = yes imp = 4786 ck3 = 4303 } # Temukan -> Tawwaj + link = { autogenerated = yes imp = 4784 ck3 = 4301 ck3 = 4302 } # Arrakia -> Jannaba, Siniz + link = { autogenerated = yes imp = 6518 ck3 = 4299 ck3 = 4300 ck3 = 4201 } # Phrada -> Farah, Zirjan, Azadawan + link = { autogenerated = yes imp = 7224 ck3 = 4298 ck3 = 4293 } # Bitaxa -> Masau, Juwain + link = { autogenerated = yes imp = 6563 ck3 = 4297 } # Zimyra -> Khoshk-Rud + link = { autogenerated = yes imp = 6605 ck3 = 4295 } # Barda -> Bandan + link = { autogenerated = yes imp = 6566 imp = 7225 ck3 = 4294 } # Phorana, Bogadia -> Uq + link = { autogenerated = yes imp = 6570 imp = 6551 ck3 = 4289 } # Bigis, Etymandria -> Zaranj + link = { autogenerated = yes imp = 6561 imp = 6552 ck3 = 4288 } # Nostana, Alexandreia Sakastenes -> Ram Shahristan + link = { autogenerated = yes imp = 6607 imp = 6606 ck3 = 4283 } # Xarxiare, Tribazina -> Nih + link = { autogenerated = yes imp = 6574 imp = 6584 imp = 6586 ck3 = 4280 } # Sedrasyra, Kano, Bulya -> Khwash + link = { autogenerated = yes imp = 6589 imp = 6588 imp = 6590 imp = 6591 ck3 = 4277 } # Arcrotis, Euergetae, Sacasteniana, Cuni -> Sanij + link = { autogenerated = yes imp = 6528 imp = 6529 imp = 6587 ck3 = 4274 } # Apameia Raphane, Chodda, Cabadene -> Riqan + link = { autogenerated = yes imp = 6593 imp = 6592 ck3 = 4271 } # Gedrosiana, Hydriacus -> Bih + link = { autogenerated = yes imp = 6517 ck3 = 4270 } # Canasida -> Tiz + link = { autogenerated = yes imp = 6516 ck3 = 4269 } # Troesus -> Ruhna + link = { autogenerated = yes imp = 6579 ck3 = 4268 } # Samydae -> Bint + link = { autogenerated = yes imp = 6515 ck3 = 4266 } # Bagaseira -> Houn + link = { autogenerated = yes imp = 6514 imp = 6581 ck3 = 4265 } # Badis, Canate -> Jask + link = { autogenerated = yes imp = 6580 imp = 6512 ck3 = 4264 } # Salarus, Harmozeia -> Darhafan + link = { autogenerated = yes imp = 4966 ck3 = 4261 } # Khaydalu -> Saburkhawasht + link = { autogenerated = yes imp = 967 ck3 = 4256 ck3 = 6013 } # Urzan -> Tustar, AZAM + link = { autogenerated = yes imp = 6634 ck3 = 4254 } # Aspioneia -> Anbar-Guzgani + link = { autogenerated = yes imp = 6635 imp = 6629 ck3 = 4253 } # Tambyzeia, Kourianda -> Gurzivan + link = { autogenerated = yes imp = 6672 ck3 = 4252 } # Garuli -> Taleqan + link = { autogenerated = yes imp = 6673 ck3 = 4251 } # Zeshoi -> Yahudan + link = { autogenerated = yes imp = 6676 ck3 = 4250 } # Ihnum -> Faryab + link = { autogenerated = yes imp = 6675 imp = 6674 imp = 7237 ck3 = 4249 } # Ankui, Menapila, Aqcha -> Andkhud + link = { autogenerated = yes imp = 7235 imp = 7227 imp = 7234 imp = 7243 ck3 = 4248 } # Deshikli, Zamm, Bazistris, Bezda -> Akhsisak + link = { autogenerated = yes imp = 7236 imp = 7228 ck3 = 4247 } # Dilyar, Ebousmou Anassa -> Zamm + link = { autogenerated = yes imp = 7239 imp = 7230 ck3 = 4244 } # Farab, Kerkichi -> Nevida + link = { autogenerated = yes imp = 6718 ck3 = 4243 } # Kogon -> Barzam + link = { autogenerated = yes imp = 9236 ck3 = 4242 } # Qarako'l -> Firabr + link = { autogenerated = yes imp = 6708 imp = 5397 imp = 6709 ck3 = 4241 } # Amul, Shenia, Rapete -> Shagal + link = { autogenerated = yes imp = 7240 ck3 = 4240 } # Zariaspa -> Amol-e-shatt + link = { autogenerated = yes imp = 6685 ck3 = 4234 ck3 = 4235 } # Alan -> Sinj, Jiranj + link = { autogenerated = yes imp = 6621 imp = 6645 imp = 6639 ck3 = 4233 } # Sangar, Tamazan, Rana -> Till + link = { autogenerated = yes imp = 6644 ck3 = 4226 ck3 = 4224 } # Artousia -> Ahanjaran, Khasht + link = { autogenerated = yes imp = 6559 imp = 6643 ck3 = 4225 } # Artacabane, Barzaura -> Firuzkuh + link = { autogenerated = yes imp = 6665 ck3 = 4222 } # Iasonion -> Baghshur + link = { autogenerated = yes imp = 6653 ck3 = 4221 } # Komiana -> Marv-ar-Rud + link = { autogenerated = yes imp = 6667 ck3 = 4220 } # Confluentia Margiana -> Panjdih + link = { autogenerated = yes imp = 6652 imp = 6669 ck3 = 4219 } # Komeia, Tapuria -> Barkdiz + link = { autogenerated = yes imp = 6670 ck3 = 4218 } # Kushke -> Qarinayn + link = { autogenerated = yes imp = 6646 imp = 6558 ck3 = 4217 } # Soteira, Alexandreia Areia -> Malin + link = { autogenerated = yes imp = 6565 ck3 = 4216 ck3 = 4223 ck3 = 4230 } # Phoraua -> Karukh, Dizah, Shurmin + link = { autogenerated = yes imp = 6557 ck3 = 4215 } # Artacoana -> Herat + link = { autogenerated = yes imp = 6664 ck3 = 4214 } # Serakhis -> Jabal-al-Fidda + link = { autogenerated = yes imp = 6543 ck3 = 4211 } # Suphtha -> Zurabad + link = { autogenerated = yes imp = 6545 imp = 7222 ck3 = 4210 } # Guriana, Kotake -> Buzjan + link = { autogenerated = yes imp = 6556 ck3 = 4208 ck3 = 4212 } # Godana -> Tayabad, Kusuy + link = { autogenerated = yes imp = 6567 imp = 6568 imp = 6596 ck3 = 4205 } # Astasana, Parsia, Thubrasine -> Adraskan + link = { autogenerated = yes imp = 6647 ck3 = 4204 } # Nisibis -> Asfuzar + link = { autogenerated = yes imp = 4793 ck3 = 4200 ck3 = 4196 } # Cyropolis Persica -> Karzin, Kariyan + link = { autogenerated = yes imp = 4792 imp = 4794 imp = 4796 ck3 = 4199 } # Gur, Mammica, Ardea -> Firuzabad + link = { autogenerated = yes imp = 4795 ck3 = 4198 } # Kanat -> Gundijan + link = { autogenerated = yes imp = 4788 imp = 4787 ck3 = 4197 } # Hieratis, Bushahr -> Bushkanat + link = { autogenerated = yes imp = 4789 ck3 = 4195 } # Gogana -> Mandestan + link = { autogenerated = yes imp = 4790 ck3 = 4194 } # Apostana -> Siraf + link = { autogenerated = yes imp = 4962 ck3 = 4192 ck3 = 4193 ck3 = 4189 } # Ostana -> Dazuk, Naband, Beiram + link = { autogenerated = yes imp = 4956 ck3 = 4191 } # Portospana -> Huzu + link = { autogenerated = yes imp = 4957 ck3 = 4190 } # Sisidona -> Dun + link = { autogenerated = yes imp = 4955 ck3 = 4187 ck3 = 4188 } # Oarakta -> Laft, Kaurastan + link = { autogenerated = yes imp = 4791 ck3 = 4185 ck3 = 4186 } # Hormirzad -> Hormuz, Shahru + link = { autogenerated = yes imp = 4014 ck3 = 4183 ck3 = 4184 } # Eburum -> Hradec-nad-Moravici, Opava + link = { autogenerated = yes imp = 4016 ck3 = 4182 } # Oreinia -> Prerov + link = { autogenerated = yes imp = 4015 imp = 5146 ck3 = 4181 } # Gothinia, IMPASSIBLE TERRAIN 146 -> Unicov + link = { autogenerated = yes imp = 4782 ck3 = 4180 } # Suravan -> Sabur + link = { autogenerated = yes imp = 4781 imp = 5388 ck3 = 4179 } # Tragonica, IP 389 -> Kazarun + link = { autogenerated = yes imp = 4798 imp = 4948 ck3 = 4177 } # Corra, Pylai Sousianes -> Shiraz-Farsi + link = { autogenerated = yes imp = 3405 ck3 = 4176 } # Niserne -> Sarwistan-Shirazi-Runiz + link = { autogenerated = yes imp = 3401 imp = 3400 ck3 = 4174 } # Pasa, Narecha -> Istakhbanat + link = { autogenerated = yes imp = 3409 ck3 = 4172 } # Qatre -> Fustujan + link = { autogenerated = yes imp = 3926 ck3 = 4169 } # Eburodunum Carnuntii -> Breclav + link = { autogenerated = yes imp = 3928 ck3 = 4168 } # Felicia Boioa -> Brno + link = { autogenerated = yes imp = 3930 ck3 = 4166 } # Phargisatus -> Znojmo + link = { autogenerated = yes imp = 3932 ck3 = 4163 ck3 = 4167 } # Hercyniana -> Zdar, Ivancice + link = { autogenerated = yes imp = 3939 imp = 3914 ck3 = 4161 } # Budorgis, Coridorgis -> Caslav + link = { autogenerated = yes imp = 3940 ck3 = 4160 } # Corcontia -> Chrudim + link = { autogenerated = yes imp = 4017 ck3 = 4159 ck3 = 8999 } # Asanca -> Spytihnev, Veseli + link = { autogenerated = yes imp = 3938 ck3 = 4156 ck3 = 4162 } # Boioa -> Chynov, Jihlava + link = { autogenerated = yes imp = 3931 ck3 = 4155 ck3 = 4164 } # Tavia -> Telcz, Bitov + link = { autogenerated = yes imp = 3935 ck3 = 4154 ck3 = 772 } # Ad Limen -> Doudleby, Czech Mountains 10 + link = { autogenerated = yes imp = 3934 ck3 = 4152 ck3 = 4153 } # Ad Periam -> Krumlov, Rozmberk + link = { autogenerated = yes imp = 3936 ck3 = 4151 ck3 = 4157 } # Sylvaria Prima -> Pisek, Bechyne + link = { autogenerated = yes imp = 3818 ck3 = 4150 ck3 = 770 } # Setuacatum -> Netolice, Czech Mountains 8 + link = { autogenerated = yes imp = 3929 ck3 = 4148 ck3 = 4170 } # Auchia -> Rakovnik, Hodonin + link = { autogenerated = yes imp = 3944 ck3 = 4147 } # Extremadura -> Zatec + link = { autogenerated = yes imp = 3812 ck3 = 4146 ck3 = 4149 } # Strevinta -> Primda, Prachen + link = { autogenerated = yes imp = 3816 ck3 = 4145 } # Marcomannia -> Plzen + link = { autogenerated = yes imp = 3813 ck3 = 4144 } # Reganus -> Tachov + link = { autogenerated = yes imp = 3945 ck3 = 4142 ck3 = 4143 } # Sudetiana -> Loket, Stribro + link = { autogenerated = yes imp = 4008 ck3 = 4140 ck3 = 4165 ck3 = 773 } # Asciburgia -> Vraclav, Olomouc, Czech Mountains 11 + link = { autogenerated = yes imp = 3915 ck3 = 4139 } # Meliodunum -> Jaromer + link = { autogenerated = yes imp = 4009 ck3 = 4138 ck3 = 4137 } # Galaegia -> Hradec(Kralove), Dvur-Chvojno + link = { autogenerated = yes imp = 3941 ck3 = 4136 } # Vandalicia -> Boleslav + link = { autogenerated = yes imp = 3980 ck3 = 4133 ck3 = 4134 ck3 = 4135 } # Ad Fines Boiohaemi -> Decin, Bezdez, Zitava + link = { autogenerated = yes imp = 3913 ck3 = 4132 ck3 = 4141 } # Marobudum -> Kadan, Sedlec + link = { autogenerated = yes imp = 3912 ck3 = 4130 ck3 = 4131 } # Redintuinum -> Slany, Bilina + link = { autogenerated = yes imp = 3911 ck3 = 4129 } # Nomisterium -> Litomerice + link = { autogenerated = yes imp = 3942 ck3 = 4128 } # Hegetmatia -> Melnik + link = { autogenerated = yes imp = 3937 ck3 = 4127 ck3 = 4158 } # Baemia -> Beroun, Milevsko + link = { autogenerated = yes imp = 3943 ck3 = 4125 ck3 = 4126 } # Butonia -> Praha, Vysehrad + link = { autogenerated = yes imp = 3406 imp = 4799 ck3 = 4118 } # Nisacus, Persepolis -> Istakhr + link = { autogenerated = yes imp = 4978 ck3 = 4117 } # Azargarta -> Iqlid + link = { autogenerated = yes imp = 1597 imp = 4963 ck3 = 4116 } # Konkobar, Nithavanta -> Nihawand + link = { autogenerated = yes imp = 6954 ck3 = 4111 } # Qom -> Sawa + link = { autogenerated = yes imp = 4975 ck3 = 4109 } # Goyman -> Qom + link = { autogenerated = yes imp = 3392 imp = 3398 ck3 = 4108 } # Sevavicina, Themantica -> Wazwan + link = { autogenerated = yes imp = 4974 ck3 = 4107 } # Gadamarta -> Gulpaygan + link = { autogenerated = yes imp = 4973 ck3 = 4105 ck3 = 4106 ck3 = 4103 } # Aspadana -> Julfa, Isfahan, Qumisha + link = { autogenerated = yes imp = 4972 imp = 3397 ck3 = 4104 } # Gabiene, Gindes -> Firuzan + link = { autogenerated = yes imp = 3432 imp = 3431 ck3 = 4102 } # Kular, Ashet -> Wardana + link = { autogenerated = yes imp = 4977 ck3 = 4101 ck3 = 4098 ck3 = 4121 } # Axiana -> Sarwistan, Abarquh, Abada + link = { autogenerated = yes imp = 3399 ck3 = 4100 } # Sycta -> Jarquh + link = { autogenerated = yes imp = 2164 ck3 = 41 ck3 = 42 ck3 = 43 } # Brigantia Borealis -> KILKENNY, ATHY, GOWRAN + link = { autogenerated = yes imp = 4958 imp = 4960 ck3 = 4090 } # Valashgerd, Sabzevaran -> Maghun + link = { autogenerated = yes imp = 3410 imp = 3427 ck3 = 4089 } # Thospis, Micadae -> Jiruft + link = { autogenerated = yes imp = 3408 ck3 = 4088 ck3 = 4092 } # Yahye -> Sirjan, Baaft + link = { autogenerated = yes imp = 3425 ck3 = 4087 } # Tarouana -> Bimand + link = { autogenerated = yes imp = 3426 ck3 = 4086 } # Cophanta -> Dafaarid + link = { autogenerated = yes imp = 4959 imp = 4961 imp = 5254 ck3 = 4085 } # Karmana, Bam, IMPASSIBLE TERRAIN 254 -> Nurmashiir + link = { autogenerated = yes imp = 3415 ck3 = 4084 ck3 = 4076 ck3 = 4082 } # Throasca -> Dardjiin, Khabis, Kashid + link = { autogenerated = yes imp = 3424 imp = 3414 ck3 = 4081 } # Pantyene, Stabaei -> Mashiz + link = { autogenerated = yes imp = 3423 ck3 = 4080 } # Caumata -> Rudhan + link = { autogenerated = yes imp = 3421 ck3 = 4079 } # Rhapses -> Anar + link = { autogenerated = yes imp = 3412 imp = 3413 ck3 = 4078 } # Ardashir, Madomastice -> Kirman + link = { autogenerated = yes imp = 3429 imp = 3416 ck3 = 4077 } # Paradana, Zarand -> Zarand + link = { autogenerated = yes imp = 3474 ck3 = 4073 ck3 = 4074 } # Ecbatana Magorum -> Behabad, Kuhbayan + link = { autogenerated = yes imp = 3470 imp = 3460 imp = 5438 ck3 = 4069 } # Simpsimidi, Tabai Persikai, Great Kavir -> Tabas + link = { autogenerated = yes imp = 6601 imp = 6598 ck3 = 4066 } # Saripha, Darium -> Junabid + link = { autogenerated = yes imp = 6603 ck3 = 4065 ck3 = 4202 } # Mila -> Barandud, Shahrakht + link = { autogenerated = yes imp = 6599 imp = 5444 ck3 = 4064 } # Biriand, Lut Desert -> Khusf + link = { autogenerated = yes imp = 6597 ck3 = 4063 } # Zamouchana -> Birjand + link = { autogenerated = yes imp = 6600 ck3 = 4062 } # Ambrodax -> Qain + link = { autogenerated = yes imp = 5439 imp = 6501 imp = 6505 ck3 = 4057 } # Kavir Desert, Palitas, Bazyab -> Jarmaq + link = { autogenerated = yes imp = 3430 ck3 = 4055 } # Arbua -> Fahraj + link = { autogenerated = yes imp = 3428 ck3 = 4054 } # Artacana -> Maibud + link = { autogenerated = yes imp = 3417 ck3 = 4053 } # Issatis -> Yazd + link = { autogenerated = yes imp = 3418 imp = 3419 ck3 = 4052 } # Nincildae, Portippa -> Uqda + link = { autogenerated = yes imp = 5441 ck3 = 4050 } # Kavir Desert -> Uzwara + link = { autogenerated = yes imp = 6507 ck3 = 4049 } # Naein -> Ardistan + link = { autogenerated = yes imp = 3433 imp = 6510 ck3 = 4048 } # Ardesh, Orubicaria -> Natanz + link = { autogenerated = yes imp = 3453 imp = 3442 ck3 = 4046 } # Khuvara, Canatha -> Khuwar + link = { autogenerated = yes imp = 3459 imp = 3458 imp = 4994 imp = 4993 ck3 = 4045 } # Pasacartia, Calliope, Semina, Apameia -> Simnan + link = { autogenerated = yes imp = 6666 imp = 6659 imp = 6723 ck3 = 4044 } # Abarbina, Kala, Apauarktike -> Abivard + link = { autogenerated = yes imp = 6657 imp = 5398 ck3 = 4041 } # Nisaia, Salos -> Shahrastan + link = { autogenerated = yes imp = 6656 ck3 = 4040 ck3 = 4038 } # Asaak -> Dawin, Jarmaqan + link = { autogenerated = yes imp = 6729 imp = 6728 ck3 = 4039 } # Dasht, Kilaleh -> Samaiqan + link = { autogenerated = yes imp = 6726 imp = 5391 ck3 = 4037 } # Mansur, Kalana -> Hesare Taq + link = { autogenerated = yes imp = 6810 ck3 = 4036 } # Sild -> Farava + link = { autogenerated = yes imp = 5390 imp = 5422 ck3 = 4035 } # Acasta, Tenetis -> Oboy + link = { autogenerated = yes imp = 6776 imp = 6725 ck3 = 4033 } # Dihistan, Akhur -> Dihistan + link = { autogenerated = yes imp = 3436 ck3 = 4031 } # Asbana -> Abaskun + link = { autogenerated = yes imp = 6727 ck3 = 4029 ck3 = 4030 } # Shikh -> Gurgan, Bakrabad + link = { autogenerated = yes imp = 3437 imp = 3435 imp = 3438 ck3 = 4028 } # Sirynx, Zadrakarta, Gurgan -> Astarabad + link = { autogenerated = yes imp = 3457 imp = 4995 ck3 = 4026 } # Choatras, Thara -> Damghan + link = { autogenerated = yes imp = 3449 imp = 3441 imp = 3445 ck3 = 4023 } # Sapham, Argiyan, Sangast -> Isfarain + link = { autogenerated = yes imp = 3440 ck3 = 4022 } # Taga -> Jajarm + link = { autogenerated = yes imp = 3469 imp = 3468 ck3 = 4021 } # Parvand, Deraza -> Mazinan + link = { autogenerated = yes imp = 3444 imp = 5387 ck3 = 4020 } # Vishpauzatis, IP 388 -> Sabzavar + link = { autogenerated = yes imp = 3463 imp = 3462 imp = 3465 imp = 3467 ck3 = 4019 } # Doruneh, Sarmagana, Siphare, Oscanidati -> Keshmar + link = { autogenerated = yes imp = 3448 imp = 3447 imp = 3451 ck3 = 4018 } # Dakhtar, Salak, Sathis -> Rivand + link = { autogenerated = yes imp = 3450 ck3 = 4017 } # Patigrabana -> Nishapur + link = { autogenerated = yes imp = 3466 ck3 = 4016 ck3 = 12892 } # Rivash -> Shamat, persia_mountains + link = { autogenerated = yes imp = 6544 ck3 = 4014 } # Dirma -> Farhadjird + link = { autogenerated = yes imp = 3454 ck3 = 4013 ck3 = 4010 } # Tusa -> Nuqaq, Mazduran + link = { autogenerated = yes imp = 3446 ck3 = 4012 } # Yetaan -> Tus + link = { autogenerated = yes imp = 6661 ck3 = 4011 } # Dara -> Maihana + link = { autogenerated = yes imp = 6663 ck3 = 4009 } # Ragau -> Shiraz-Sarakhsi + link = { autogenerated = yes imp = 6662 imp = 7226 ck3 = 4007 } # Abivard, Sirake -> Sarakhs + link = { autogenerated = yes imp = 4986 ck3 = 4004 } # Parachoatras -> Lahij + link = { autogenerated = yes imp = 3387 imp = 1524 imp = 1593 ck3 = 4003 } # Mediana, Qara Sheshen, Miyana -> Kursara + link = { autogenerated = yes imp = 1627 imp = 3390 ck3 = 4002 } # Ardabil, Farrab -> Khalkhal + link = { autogenerated = yes imp = 4985 ck3 = 4000 } # Kyropolis -> Gilan + link = { autogenerated = yes imp = 7135 ck3 = 3999 } # Atavi -> Umerkote + link = { autogenerated = yes imp = 7141 imp = 7176 ck3 = 3996 } # Komana, Bilagada -> Ranipur + link = { autogenerated = yes imp = 7166 ck3 = 3995 ck3 = 1249 } # Vinitapura -> Vinitapura, Sambalpur + link = { autogenerated = yes imp = 7140 imp = 7095 ck3 = 3993 } # Dhamtari, Sripura -> Rajiva_Lochana + link = { autogenerated = yes imp = 7131 ck3 = 3992 } # Raipur -> Camparanya + link = { autogenerated = yes imp = 7082 ck3 = 3990 ck3 = 9650 } # Samapa -> Nayagarh, Ganjam + link = { autogenerated = yes imp = 7171 ck3 = 3989 ck3 = 929 } # Bhuvanesvara -> Nilamadhav, Dhauli + link = { autogenerated = yes imp = 9251 imp = 7167 ck3 = 3987 } # Gopalprasad, Yajatinagara -> Bajrakot + link = { autogenerated = yes imp = 9247 imp = 7181 imp = 9252 ck3 = 3985 } # Kamakhyanagar, Manites, Gadapalsuni -> Ghatagaon + link = { autogenerated = yes imp = 7180 ck3 = 3983 ck3 = 1247 } # Khijjngalalla -> Asanapat, Khijjinga + link = { autogenerated = yes imp = 7178 imp = 7366 ck3 = 3982 } # Bhamangati, Puskarna -> Raibania + link = { autogenerated = yes imp = 7179 imp = 6052 ck3 = 3981 } # Utkalava, Chattisgarh -> Baleshvara + link = { autogenerated = yes imp = 4839 ck3 = 3975 } # Grissia -> Pankota + link = { autogenerated = yes imp = 4840 ck3 = 3974 } # Zurobara -> Nagylak + link = { autogenerated = yes imp = 4829 imp = 4265 imp = 4828 imp = 4833 ck3 = 3973 } # Centum Putea, Caput Bubali, Vallum Romanum, Bersovia -> Boksanbanya + link = { autogenerated = yes imp = 7471 ck3 = 3972 } # Orai -> Jalaun + link = { autogenerated = yes imp = 6853 imp = 6826 imp = 6851 ck3 = 3971 } # Gallita, Andhau, Daria -> Karoonjar + link = { autogenerated = yes imp = 7470 imp = 4474 imp = 4485 imp = 5361 ck3 = 3964 } # Mahoba, Suktimati, Khajuraha, IP 362 -> Umri + link = { autogenerated = yes imp = 7321 imp = 5363 ck3 = 3963 } # Bharhut, IP 364 -> Bhatta + link = { autogenerated = yes imp = 4466 ck3 = 3960 } # Khoh -> Chitrakuta + link = { autogenerated = yes imp = 7484 imp = 7372 ck3 = 3958 } # Bhawaniganj, Kusavati -> Gorakhpur + link = { autogenerated = yes imp = 7489 imp = 4458 ck3 = 3957 } # Birganj, Ramagrama -> Barohiya + link = { autogenerated = yes imp = 7378 ck3 = 3956 } # Lakhimpur -> Lakhimpur + link = { autogenerated = yes imp = 7379 ck3 = 3955 } # Brahmarchi -> Bahraich + link = { autogenerated = yes imp = 4437 ck3 = 3954 } # Ayodhya -> Gonda + link = { autogenerated = yes imp = 7483 ck3 = 3953 } # Mehdawal -> Faizabad + link = { autogenerated = yes imp = 4859 ck3 = 3947 } # Metanastiana -> Elesd + link = { autogenerated = yes imp = 4910 ck3 = 3946 ck3 = 3927 } # Attidava -> Gyergyoszentmiklos, Szaszregen + link = { autogenerated = yes imp = 4500 ck3 = 3944 } # Hargita -> Sepsiszentgyorgy + link = { autogenerated = yes imp = 4294 ck3 = 3943 ck3 = 3945 } # Angustia -> Balvanyos, Kovaszna + link = { autogenerated = yes imp = 4293 ck3 = 3942 } # Ramidava -> Brasso + link = { autogenerated = yes imp = 4292 ck3 = 3940 ck3 = 3941 } # Comidava -> Fogaras, Torcsvar + link = { autogenerated = yes imp = 4299 imp = 4298 ck3 = 3939 } # Deva Apulensis, Media -> Szaszkezd + link = { autogenerated = yes imp = 4286 ck3 = 3938 } # Blandiana -> Alvinc + link = { autogenerated = yes imp = 4289 imp = 5114 ck3 = 3936 } # Ampelum, Caucoenia -> Abrudbanya + link = { autogenerated = yes imp = 4297 imp = 4295 imp = 4296 ck3 = 3935 } # Salinae Porolissenses, Cedonia, Zidava -> Kukullovar + link = { autogenerated = yes imp = 3927 ck3 = 3934 } # Celamantia -> Somorja + link = { autogenerated = yes imp = 4285 ck3 = 3933 } # Petris -> Deva + link = { autogenerated = yes imp = 4282 imp = 4283 ck3 = 3932 } # Sarmizegetusa, Iscronia -> Harszoc + link = { autogenerated = yes imp = 4284 ck3 = 3931 } # Bucium -> Vajdahunyad + link = { autogenerated = yes imp = 4909 ck3 = 3930 } # Utidava -> Csikszereda + link = { autogenerated = yes imp = 4503 imp = 4502 ck3 = 3929 } # Marcodava, Sandava -> Marosvasarhely + link = { autogenerated = yes imp = 4506 ck3 = 3926 ck3 = 3928 } # Napoca -> Koloszvar, Aranyosbanya + link = { autogenerated = yes imp = 4511 imp = 4510 ck3 = 3925 } # Optatiana, Resculum -> Banffyhunyad + link = { autogenerated = yes imp = 4505 ck3 = 3924 } # Potaissa -> Torda + link = { autogenerated = yes imp = 4907 ck3 = 3923 } # Vidava -> Laposbanya + link = { autogenerated = yes imp = 4507 ck3 = 3922 } # Arcobara -> Szek + link = { autogenerated = yes imp = 4508 imp = 4509 ck3 = 3921 } # Samum, Porolissum -> Des + link = { autogenerated = yes imp = 4906 imp = 4504 ck3 = 3919 } # Petrodava, Brancona -> Beszterce + link = { autogenerated = yes imp = 4908 ck3 = 3915 ck3 = 3920 ck3 = 721 } # Mallites -> Borsa, Radna, CARPATHIANS + link = { autogenerated = yes imp = 4905 ck3 = 3914 ck3 = 3917 ck3 = 539 ck3 = 5036 } # Patridava -> Tecso, Huszt, Marmaros, Campulung Moldovenesc + link = { autogenerated = yes imp = 4884 ck3 = 3912 } # Acronodumia -> Nagykaroly + link = { autogenerated = yes imp = 4882 ck3 = 3909 ck3 = 3910 ck3 = 3911 } # Olate -> Szilagy, Kraszna, Tasnad + link = { autogenerated = yes imp = 4883 ck3 = 3907 ck3 = 3908 ck3 = 3913 } # Voconis -> Szatmar, Nagybanya, Nagyszolos + link = { autogenerated = yes imp = 4837 imp = 4288 imp = 4838 ck3 = 3906 } # Potulatensia, Micia, Potulatensiana -> Lippa + link = { autogenerated = yes imp = 4841 ck3 = 3905 } # Marisia -> Arad + link = { autogenerated = yes imp = 4290 ck3 = 3904 } # Ziridava -> Nagyhalmagy + link = { autogenerated = yes imp = 4836 ck3 = 3903 } # Ziridava Iazygia -> Zarand + link = { autogenerated = yes imp = 4851 imp = 4861 ck3 = 3902 } # Crisia, Ad Statuam -> Zolonta + link = { autogenerated = yes imp = 4860 ck3 = 3901 ck3 = 520 } # Aurariae Dacicae -> Belenyes, Bihar + link = { autogenerated = yes imp = 2189 ck3 = 39 } # Coriondia -> FERNS + link = { autogenerated = yes imp = 4881 ck3 = 3899 } # Iconeia -> Gyozeg + link = { autogenerated = yes imp = 4886 ck3 = 3896 } # Obutora -> Varanno + link = { autogenerated = yes imp = 4885 ck3 = 3893 ck3 = 3897 ck3 = 3898 ck3 = 537 } # Tolitum -> Munkacz, Ungvar, Borsova, Bereg + link = { autogenerated = yes imp = 4877 ck3 = 3891 ck3 = 3892 } # Mebatunum -> Nagyboszormeny, Szoboszlo + link = { autogenerated = yes imp = 4926 ck3 = 3887 ck3 = 3895 } # Dure -> Zynna, Nagyberezna + link = { autogenerated = yes imp = 4880 ck3 = 3886 ck3 = 3889 ck3 = 3890 } # Bilatis -> Szerencs, Szabolcs, Nyir + link = { autogenerated = yes imp = 4879 ck3 = 3885 } # Mabatorum -> Zemplen + link = { autogenerated = yes imp = 4260 ck3 = 3884 } # Castra Arcidava -> Fehertemplom + link = { autogenerated = yes imp = 4827 ck3 = 3883 } # Lederata -> Ersomlyo + link = { autogenerated = yes imp = 4261 ck3 = 3882 } # Putea -> Kraso + link = { autogenerated = yes imp = 4264 ck3 = 3881 } # Tibiscum -> Karansebes + link = { autogenerated = yes imp = 4830 ck3 = 3880 } # Maschianae -> Lugos + link = { autogenerated = yes imp = 4832 ck3 = 3879 } # Tibirsia -> Becse + link = { autogenerated = yes imp = 4831 ck3 = 3878 } # Ad Sextum -> Pancsova + link = { autogenerated = yes imp = 4826 ck3 = 3877 } # Tricomium -> Kevevar + link = { autogenerated = yes imp = 4878 ck3 = 3876 ck3 = 3978 ck3 = 538 } # Aborisia -> Kassa, Torna, Abauj + link = { autogenerated = yes imp = 4858 ck3 = 3874 ck3 = 3900 } # Metanastia -> Svarvas, Debrecen + link = { autogenerated = yes imp = 4856 ck3 = 3873 ck3 = 3875 } # Crisiana -> Bekes, Oroshaza + link = { autogenerated = yes imp = 4835 ck3 = 3872 } # Albocensia -> Szeged + link = { autogenerated = yes imp = 4876 ck3 = 3871 ck3 = 3948 } # Obatis -> Miskolc, Eger + link = { autogenerated = yes imp = 4875 ck3 = 3870 ck3 = 3979 ck3 = 524 } # Antia -> Borsod, Szendro, Gemer + link = { autogenerated = yes imp = 4852 ck3 = 3869 } # Burgus Quadorum -> Gyongyospata + link = { autogenerated = yes imp = 4857 ck3 = 3867 } # Tisia -> Tur + link = { autogenerated = yes imp = 4848 ck3 = 3866 } # Triticum -> Kiskunhalas + link = { autogenerated = yes imp = 4850 imp = 4847 ck3 = 3865 } # Iazygiana, Partiskon -> Csongrad + link = { autogenerated = yes imp = 4846 ck3 = 3864 } # Tibiscua -> Zenta + link = { autogenerated = yes imp = 4845 imp = 4844 ck3 = 3863 } # Agria, Florentia -> Bodrog + link = { autogenerated = yes imp = 4888 ck3 = 3862 ck3 = 533 } # Dolum -> Locse, Saris + link = { autogenerated = yes imp = 4889 ck3 = 3860 ck3 = 3888 } # Tantonum -> Barfta, Toporo + link = { autogenerated = yes imp = 4873 ck3 = 3857 ck3 = 3858 ck3 = 3859 } # Collata -> Breznobanya, Murany, Rimaszombat + link = { autogenerated = yes imp = 4870 ck3 = 3854 ck3 = 3855 ck3 = 525 ck3 = 3861 } # Maronis -> Liptoujvar, Nemetlipcse, Orava, Kesmark + link = { autogenerated = yes imp = 4872 ck3 = 3851 ck3 = 3852 ck3 = 3853 ck3 = 3856 } # Amatria -> Korporna, Losonc, Selmecbanya, Zolyom + link = { autogenerated = yes imp = 4874 ck3 = 3850 } # Astrum -> Balassagyarmat + link = { autogenerated = yes imp = 4867 ck3 = 3848 ck3 = 3849 } # Navata -> Hont, Nograd + link = { autogenerated = yes imp = 4868 ck3 = 3846 ck3 = 3916 ck3 = 3976 } # Brocasta -> Bars, Batorkeszi, Beny + link = { autogenerated = yes imp = 4168 imp = 4167 ck3 = 3844 } # Sopianae, Limusa -> Pecs + link = { autogenerated = yes imp = 4171 imp = 4172 ck3 = 3843 } # Serena, Cardono -> Siklos + link = { autogenerated = yes imp = 4170 ck3 = 3842 } # Mursa -> Baranyavar + link = { autogenerated = yes imp = 4164 ck3 = 3841 } # Alisca -> Dombovar + link = { autogenerated = yes imp = 4169 ck3 = 3840 ck3 = 3845 } # Lugio -> Simontornya, Mohacs + link = { autogenerated = yes imp = 4162 ck3 = 3839 } # Alta Ripa -> Tolna + link = { autogenerated = yes imp = 4174 ck3 = 3838 } # Piretis -> Szigetvar + link = { autogenerated = yes imp = 4173 ck3 = 3837 } # Sonista -> Csurgo + link = { autogenerated = yes imp = 4166 ck3 = 3836 } # Iovia -> Kaposvar + link = { autogenerated = yes imp = 4165 imp = 4163 ck3 = 3835 } # Silicenis, Tricciana -> Somogyvar + link = { autogenerated = yes imp = 3924 ck3 = 3834 } # Rhacatia -> Sasvar + link = { autogenerated = yes imp = 3925 ck3 = 3832 ck3 = 3952 } # Felicia -> Pecsen, EASTERN EUROPE IMPASSABLE TERRAIN 2 + link = { autogenerated = yes imp = 4869 ck3 = 3831 ck3 = 3833 ck3 = 3847 } # Marrica -> Nyitra, Bajmoc, Kormocbanya + link = { autogenerated = yes imp = 4842 ck3 = 3830 } # Acumincum -> Titel + link = { autogenerated = yes imp = 4140 ck3 = 3829 } # Salia -> Letenye + link = { autogenerated = yes imp = 4133 ck3 = 3828 } # Salla -> Egerszeg + link = { autogenerated = yes imp = 4148 ck3 = 3826 } # Pelsodis -> Veszprem + link = { autogenerated = yes imp = 4138 imp = 4151 ck3 = 3825 } # Mogentiana, Murselliana -> Vasarhely + link = { autogenerated = yes imp = 4149 ck3 = 3824 } # Crispiana -> Zirc + link = { autogenerated = yes imp = 4150 ck3 = 3823 } # Arrabona -> Gyor + link = { autogenerated = yes imp = 4147 ck3 = 3822 } # Quadrata -> Moson + link = { autogenerated = yes imp = 4143 ck3 = 3821 ck3 = 3119 } # Confluentia Latobicorum -> Kormend, FURSTENFELD + link = { autogenerated = yes imp = 4139 ck3 = 3820 } # Mestrianis -> Vasvar + link = { autogenerated = yes imp = 4141 ck3 = 3819 } # Sabaria -> Koszeg + link = { autogenerated = yes imp = 4146 imp = 4142 ck3 = 3818 } # Mursella Prima, Bassena -> Kapuvar + link = { autogenerated = yes imp = 4144 imp = 4145 ck3 = 3817 } # Scarbantia, Muteno -> Sopron + link = { autogenerated = yes imp = 3919 ck3 = 3815 ck3 = 3816 } # Anduetium -> Poszony, Szomolany + link = { autogenerated = yes imp = 4866 ck3 = 3811 ck3 = 3812 ck3 = 3814 ck3 = 3813 ck3 = 642 } # Laugaricio -> Trenscen, Puho, Turoc, Zsolna, HUNGARIAN-MORAVIAN MOUNTAINS + link = { autogenerated = yes imp = 4892 ck3 = 3810 ck3 = 4969 } # Ibadura -> Twardosczino, Nowy Targ + link = { autogenerated = yes imp = 4155 ck3 = 3809 } # Brigetio -> Komarom + link = { autogenerated = yes imp = 4156 ck3 = 3808 } # Crumerum -> Esztergom + link = { autogenerated = yes imp = 4849 ck3 = 3807 } # Iazygia -> Kalocsa + link = { autogenerated = yes imp = 4158 ck3 = 3806 } # Campona -> Csakvar + link = { autogenerated = yes imp = 4160 imp = 4159 imp = 4161 ck3 = 3805 } # Gorsium, Floriana, Intercisa -> Szekesfehervar + link = { autogenerated = yes imp = 4157 ck3 = 3803 } # Aquincum -> Buda + link = { autogenerated = yes imp = 4854 ck3 = 3802 ck3 = 3804 ck3 = 3868 } # Anartiana -> Cegled, Kecskemet, Szolnok + link = { autogenerated = yes imp = 444 ck3 = 3801 } # Aigion -> Vostitsa + link = { autogenerated = yes imp = 431 imp = 5057 ck3 = 3800 } # Messene, IMPASSIBLE TERRAIN 057 -> Kalamata + link = { autogenerated = yes imp = 451 imp = 441 imp = 7903 imp = 7734 ck3 = 3799 } # Troizen, Epidauros, Hermione, Methana Volcano -> Damala + link = { autogenerated = yes imp = 440 ck3 = 3798 } # Argos -> Argos + link = { autogenerated = yes imp = 395 ck3 = 3797 ck3 = 3703 } # Pialeia -> Trikala, Gardiki + link = { autogenerated = yes imp = 399 ck3 = 3794 ck3 = 3792 } # Lamia -> Zetouni, Gardikia + link = { autogenerated = yes imp = 401 imp = 469 ck3 = 3793 } # Hypate, Thaumakoi -> Neopatras + link = { autogenerated = yes imp = 398 imp = 5066 ck3 = 3790 } # Nea Halos, IMPASSIBLE TERRAIN 066 -> Halmyros + link = { autogenerated = yes imp = 390 ck3 = 3789 } # Pherai -> Velestino + link = { autogenerated = yes imp = 404 imp = 388 imp = 8023 imp = 5071 ck3 = 3788 } # Olooson, Gonnoi, Tempe Pass, IMPASSIBLE TERRAIN 071 -> Elasson + link = { autogenerated = yes imp = 6399 imp = 380 imp = 428 ck3 = 3786 } # Pydna, Dion, Methone -> Platamon + link = { autogenerated = yes imp = 381 imp = 5072 ck3 = 3784 } # Beroia, IMPASSIBLE TERRAIN 072 -> Veria + link = { autogenerated = yes imp = 383 imp = 382 ck3 = 3783 } # Europos, Edessa -> Voden + link = { autogenerated = yes imp = 379 ck3 = 3782 } # Pella -> Sthlanitza + link = { autogenerated = yes imp = 384 ck3 = 3781 } # Gortynia -> Maglen + link = { autogenerated = yes imp = 386 ck3 = 3779 } # Asseros -> Langades + link = { autogenerated = yes imp = 385 ck3 = 3778 } # Tauriana -> Gynaikokastron + link = { autogenerated = yes imp = 376 ck3 = 3777 } # Poteidaia -> Kassandreia + link = { autogenerated = yes imp = 377 imp = 378 ck3 = 3776 } # Akanthos, Torone -> Ierrisos + link = { autogenerated = yes imp = 374 ck3 = 3775 ck3 = 491 } # Kalindoia -> Rendina, Chalkidike + link = { autogenerated = yes imp = 366 ck3 = 3774 } # Tragilos -> Chrysopolis + link = { autogenerated = yes imp = 365 ck3 = 3773 } # Amphipolis -> Kavala + link = { autogenerated = yes imp = 364 ck3 = 3772 ck3 = 3554 } # Philippoi -> Drama, Rodopi + link = { autogenerated = yes imp = 369 imp = 5100 ck3 = 3771 } # Sirra, IMPASSIBLE TERRAIN 100 -> Serres + link = { autogenerated = yes imp = 356 ck3 = 3769 } # Thasos -> Thasos + link = { autogenerated = yes imp = 357 imp = 360 ck3 = 3768 } # Maroneia, Porsula -> Traianopolis + link = { autogenerated = yes imp = 363 ck3 = 3767 } # Neapolis Thrake -> Xanthia + link = { autogenerated = yes imp = 354 ck3 = 3766 } # Ainos -> Ainos + link = { autogenerated = yes imp = 352 imp = 347 ck3 = 3764 } # Ornoi, Bisanthe -> Raidestos + link = { autogenerated = yes imp = 353 ck3 = 3763 ck3 = 3765 } # Kypsela -> Chariopolis, Kypsela + link = { autogenerated = yes imp = 346 ck3 = 3762 } # Perinthos -> Herakleia Perinthos + link = { autogenerated = yes imp = 341 imp = 345 ck3 = 3761 } # Philia, Selymbria -> Selymbria + link = { autogenerated = yes imp = 348 imp = 4154 ck3 = 3760 } # Bergoule, Burtudizon -> Arkadiopolis + link = { autogenerated = yes imp = 342 ck3 = 3759 } # Salmydessos -> Bizye + link = { autogenerated = yes imp = 343 ck3 = 3758 } # Aulaiouteichos -> Salmydessus + link = { autogenerated = yes imp = 1996 imp = 454 ck3 = 3757 } # Astypalaia, Thera -> Thera + link = { autogenerated = yes imp = 452 imp = 1835 ck3 = 3756 } # Tenos, Delos -> Tinos + link = { autogenerated = yes imp = 1903 imp = 437 imp = 443 imp = 447 imp = 472 ck3 = 3755 } # Andros, Seriphos, Kythnos, Syros, Kea -> Andros + link = { autogenerated = yes imp = 1974 imp = 220 imp = 310 ck3 = 3754 } # Samos, Oinoe Ikarias, Leros -> Samos + link = { autogenerated = yes imp = 277 ck3 = 3753 } # Skyros -> Skyros + link = { autogenerated = yes imp = 270 imp = 1774 imp = 297 ck3 = 3752 } # Lemnos, Samothrake, Imbros -> Lemnos + link = { autogenerated = yes imp = 258 imp = 259 ck3 = 3751 } # Polymedion, Assos -> Alexandria Troas + link = { autogenerated = yes imp = 260 ck3 = 3750 } # Kebren -> Ilion + link = { autogenerated = yes imp = 256 ck3 = 3749 } # Lampsakos -> Lampsakos + link = { autogenerated = yes imp = 255 imp = 254 ck3 = 3748 } # Parium, Zeleia -> Pagaea + link = { autogenerated = yes imp = 251 imp = 248 imp = 249 ck3 = 3747 } # Miletopolis, Myrleia, Apollonia Rhyndakos -> Lopadion + link = { autogenerated = yes imp = 359 ck3 = 3746 } # Lyctus -> Ierapetra + link = { autogenerated = yes imp = 344 imp = 355 ck3 = 3745 } # Praesos, Hierapytna -> Agios Nikolaos + link = { autogenerated = yes imp = 370 ck3 = 3744 } # Tarrha -> Paleohora + link = { autogenerated = yes imp = 351 imp = 372 imp = 8016 imp = 8014 ck3 = 3743 } # Rhithymna, Korion, Lappa, Idaion Mons -> Rethymno + link = { autogenerated = yes imp = 280 ck3 = 3742 } # Poseidion -> Karpathos + link = { autogenerated = yes imp = 1830 imp = 7936 imp = 7937 imp = 8015 ck3 = 3741 } # Lindos, Nisyros, Telos, Kameiros -> Lindos + link = { autogenerated = yes imp = 1970 imp = 1653 ck3 = 3740 } # Kos, Kalymnos -> Kos + link = { autogenerated = yes imp = 4189 imp = 4190 ck3 = 3739 } # Sirmium, Bassiana -> Szerem + link = { autogenerated = yes imp = 449 ck3 = 3738 } # Kleitor -> Kalavryta + link = { autogenerated = yes imp = 446 imp = 439 imp = 5059 ck3 = 3737 } # Elis, Olympia, IMPASSIBLE TERRAIN 059 -> Andravida + link = { autogenerated = yes imp = 473 imp = 430 imp = 7889 ck3 = 3736 } # Leuktron, Gytheion, Tainaron -> Mistra + link = { autogenerated = yes imp = 427 imp = 450 ck3 = 3735 } # Sparta, Kyphanta -> Lacedaemonia + link = { autogenerated = yes imp = 433 ck3 = 3734 } # Lepreon -> Arcadia + link = { autogenerated = yes imp = 435 imp = 436 imp = 5058 ck3 = 3733 } # Heraia, Megalopolis, IMPASSIBLE TERRAIN 058 -> Karytaina + link = { autogenerated = yes imp = 7891 imp = 438 imp = 7892 imp = 5056 ck3 = 3732 } # Tegea, Mantinea, Thyrea, IMPASSIBLE TERRAIN 056 -> Nikli + link = { autogenerated = yes imp = 417 imp = 7897 imp = 7902 ck3 = 3731 } # Megara, Eleusis, Salamis -> Megara + link = { autogenerated = yes imp = 426 imp = 406 imp = 7802 imp = 7800 ck3 = 3730 } # Thebes, Anthedon, Tanagra, Cithaeron Mons -> Thebes + link = { autogenerated = yes imp = 424 imp = 475 imp = 7797 ck3 = 3729 } # Delphi, Herakleia Trachinia, Parnassus Mons -> Amfissa + link = { autogenerated = yes imp = 423 imp = 402 imp = 468 imp = 7798 imp = 5063 ck3 = 3728 } # Orchomenos, Opous, Thespiai, Elateia, IMPASSIBLE TERRAIN 063 -> Levadia + link = { autogenerated = yes imp = 7896 imp = 5064 ck3 = 3727 } # Nikaia Lokron, IMPASSIBLE TERRAIN 064 -> Boudounitsa + link = { autogenerated = yes imp = 403 imp = 7899 ck3 = 3726 } # Oreus, Kerinthos -> Oreoi + link = { autogenerated = yes imp = 420 ck3 = 3725 } # Peparethos -> Skopelos + link = { autogenerated = yes imp = 2213 ck3 = 3720 ck3 = 3718 } # Albanopolis -> Kruje, Mat + link = { autogenerated = yes imp = 422 ck3 = 3717 } # Apollonia -> Savra + link = { autogenerated = yes imp = 474 ck3 = 3715 ck3 = 3716 ck3 = 1042 } # Omphalion -> Argyrokastron, Klisura, BALKAN MOUNTAINS + link = { autogenerated = yes imp = 3192 imp = 5070 ck3 = 3713 } # Byllis, IMPASSIBLE TERRAIN 070 -> Antipatreia + link = { autogenerated = yes imp = 467 ck3 = 3711 ck3 = 3712 ck3 = 1041 } # Orikos -> Avlonas, Himara, BALKAN MOUNTAINS + link = { autogenerated = yes imp = 470 ck3 = 3710 } # Korkyra -> Corfu + link = { autogenerated = yes imp = 419 imp = 464 ck3 = 3709 } # Gitana, Kassope -> Grava + link = { autogenerated = yes imp = 425 ck3 = 3708 ck3 = 3704 } # Dodona -> Ioannina, Vrestenitsa + link = { autogenerated = yes imp = 476 imp = 5068 ck3 = 3707 } # Passaron, Upper Epirus -> Vella + link = { autogenerated = yes imp = 3175 ck3 = 3702 ck3 = 3706 } # Eratyra -> Metzovo, Konitsa + link = { autogenerated = yes imp = 463 ck3 = 3700 } # Thyrrheion -> Angelokastron + link = { autogenerated = yes imp = 2188 ck3 = 37 ck3 = 38 } # Coriondia Australis -> WEXFORD, ENNISCORTHY + link = { autogenerated = yes imp = 465 ck3 = 3699 ck3 = 473 } # Ambrakia -> Sivista, Arta + link = { autogenerated = yes imp = 462 ck3 = 3697 } # Stratos -> Prousos + link = { autogenerated = yes imp = 460 ck3 = 3696 } # Zakynthos -> Zakynthos + link = { autogenerated = yes imp = 4257 imp = 4254 imp = 4255 ck3 = 3695 } # Sacidava, Callatis, Tomis -> Mangalia + link = { autogenerated = yes imp = 4520 imp = 4514 imp = 4516 imp = 4517 imp = 4518 imp = 4519 ck3 = 3694 } # Troesmis, Carsium, Argamum, Libida, Troismis, Halmyris -> Tulcha + link = { autogenerated = yes imp = 4248 ck3 = 3693 } # Odessus -> Varna + link = { autogenerated = yes imp = 4307 ck3 = 3692 } # Eidos -> Ktenia + link = { autogenerated = yes imp = 480 ck3 = 3691 ck3 = 498 } # Mesembria -> Aytos, Mesembria + link = { autogenerated = yes imp = 6010 ck3 = 369 ck3 = 370 ck3 = 371 ck3 = 372 } # Vineta -> WYSBU, GARNAE, BURSS, FAROO + link = { autogenerated = yes imp = 4258 imp = 5108 ck3 = 3689 } # Panisus, IMPASSIBLE TERRAIN 108 -> Preslav + link = { autogenerated = yes imp = 4259 ck3 = 3688 ck3 = 3683 } # Zikideba -> Sborishte, Elena + link = { autogenerated = yes imp = 4241 ck3 = 3687 } # Appiara -> Hrazgrad + link = { autogenerated = yes imp = 4243 ck3 = 3686 } # Abritus -> Shumen + link = { autogenerated = yes imp = 4242 ck3 = 3685 } # Transmarisca -> Tutrakan + link = { autogenerated = yes imp = 4240 imp = 4239 ck3 = 3682 } # Prista, Trimammium -> Cherven + link = { autogenerated = yes imp = 4229 imp = 4230 ck3 = 3681 } # Longinopara, Scretisca -> Samundzhievo + link = { autogenerated = yes imp = 4234 imp = 4236 imp = 4237 ck3 = 3680 } # Melta, Emporium Discoduraterae, Nikopolis -> Lovech + link = { autogenerated = yes imp = 4233 imp = 4231 imp = 4232 ck3 = 3679 } # Storgosia, Asamus, Ad Putea -> Pliven + link = { autogenerated = yes imp = 4225 ck3 = 3678 } # Tautiomosis -> Vratsa + link = { autogenerated = yes imp = 4221 ck3 = 3677 } # Montana -> Kutlovitsa + link = { autogenerated = yes imp = 4226 imp = 4227 imp = 4228 ck3 = 3676 } # Vicus Siamus, Oescus, Trullensium -> Orehovo + link = { autogenerated = yes imp = 4224 imp = 4223 ck3 = 3675 } # Cebrus, Almus -> Lom + link = { autogenerated = yes imp = 3853 imp = 4235 imp = 488 imp = 5105 ck3 = 3673 } # Sparata, Sostra, Pistiros, IMPASSIBLE TERRAIN 105 -> Stipon + link = { autogenerated = yes imp = 499 ck3 = 3672 } # Spinopara -> Pernik + link = { autogenerated = yes imp = 4116 ck3 = 3671 ck3 = 3663 } # Ballanstra -> Meldi, Breznik + link = { autogenerated = yes imp = 4220 imp = 4217 ck3 = 3670 } # Combustica, Ratiaria -> Belogradchik + link = { autogenerated = yes imp = 4213 imp = 4218 ck3 = 3669 } # Romuliana, Castra Martis -> Petrus + link = { autogenerated = yes imp = 4212 ck3 = 3668 } # Bao -> Zajecar + link = { autogenerated = yes imp = 4209 imp = 4208 imp = 4214 ck3 = 3667 } # Egeta, Taliata, Clevora -> Kladovo + link = { autogenerated = yes imp = 4204 imp = 4201 ck3 = 3666 } # Idimum, Municipium -> Ravno + link = { autogenerated = yes imp = 4207 ck3 = 3665 } # Cuppae -> Kucevo + link = { autogenerated = yes imp = 4200 ck3 = 3664 } # Viminacium Moesiacum -> Branicevo + link = { autogenerated = yes imp = 4219 ck3 = 3661 } # Timacum -> Svrljig + link = { autogenerated = yes imp = 4098 imp = 5093 ck3 = 3660 } # Ulpiana, Upper Dardania -> Morava + link = { autogenerated = yes imp = 4114 imp = 4110 ck3 = 3657 } # Ad Fines Dardaniae, Tauresium -> Glubocica + link = { autogenerated = yes imp = 4117 ck3 = 3656 } # Pautalia -> Velbazhd + link = { autogenerated = yes imp = 4152 imp = 5097 ck3 = 3655 } # Tranupara, IMPASSIBLE TERRAIN 097 -> Kratovo + link = { autogenerated = yes imp = 497 ck3 = 3653 ck3 = 3770 ck3 = 3649 } # Herakleia Sintike -> Melnik, Siderokastron, Maleshevo + link = { autogenerated = yes imp = 4302 imp = 4303 imp = 4304 imp = 5098 ck3 = 3650 } # Doberos, Astraia, Astibos, IMPASSIBLE TERRAIN 098 -> Strumica + link = { autogenerated = yes imp = 4305 ck3 = 3648 } # Bylazora -> Shtip + link = { autogenerated = yes imp = 393 imp = 405 ck3 = 3647 } # Pelagonia, Stuberra -> Prilep + link = { autogenerated = yes imp = 4096 ck3 = 3643 ck3 = 3644 ck3 = 3645 } # Scupi -> Skopje, Tetovo, Veles + link = { autogenerated = yes imp = 4108 ck3 = 3642 } # Vizinia -> Zegligovo + link = { autogenerated = yes imp = 3125 ck3 = 3639 ck3 = 3640 } # Keletron -> Devol, Kastoria + link = { autogenerated = yes imp = 411 imp = 408 imp = 5073 ck3 = 3638 } # Herakleia Lynkestis, Arnisa, IMPASSIBLE TERRAIN 073 -> Bitola + link = { autogenerated = yes imp = 484 imp = 478 ck3 = 3636 } # Beroe, Seuthopolis -> Kran + link = { autogenerated = yes imp = 479 ck3 = 3635 } # Kabyle -> Sliven + link = { autogenerated = yes imp = 491 ck3 = 3633 } # Bourdepa -> Janitsa + link = { autogenerated = yes imp = 4309 ck3 = 3632 ck3 = 3634 } # Pizos -> Beroe, Haskovo + link = { autogenerated = yes imp = 496 ck3 = 3631 } # Kabakle -> Dbilin + link = { autogenerated = yes imp = 4312 ck3 = 3630 } # Debelton -> Potamukastel + link = { autogenerated = yes imp = 482 ck3 = 3629 } # Apollonia Pontike -> Sozopol + link = { autogenerated = yes imp = 481 ck3 = 3628 } # Anchialos -> Burgas + link = { autogenerated = yes imp = 490 ck3 = 3627 } # Zerbai -> Didymoteichon + link = { autogenerated = yes imp = 493 ck3 = 3626 } # Hyperperakion -> Mezeshka + link = { autogenerated = yes imp = 4311 imp = 485 ck3 = 3624 } # Parambole, Philippopolis -> Stanimaka + link = { autogenerated = yes imp = 494 ck3 = 3621 ck3 = 3620 } # Oraion -> Ustra, Smolyan + link = { autogenerated = yes imp = 492 ck3 = 3619 ck3 = 3622 } # Rhodope -> Lyutitsa, Byalgrad + link = { autogenerated = yes imp = 414 ck3 = 3617 ck3 = 3615 } # Keirpara -> Nevrokop, Dospat + link = { autogenerated = yes imp = 4306 imp = 4153 imp = 5099 imp = 5102 ck3 = 3614 } # Keirpara, Paroikopolis, IMPASSIBLE TERRAIN 099, IMPASSIBLE TERRAIN 102 -> Kalyatta + link = { autogenerated = yes imp = 4193 ck3 = 3613 } # Altina -> Zemun + link = { autogenerated = yes imp = 4192 ck3 = 3611 } # Spaneta -> Ilok + link = { autogenerated = yes imp = 4191 ck3 = 3610 } # Causilena -> Vakovo + link = { autogenerated = yes imp = 4188 ck3 = 3609 } # Cibalae -> Osijek + link = { autogenerated = yes imp = 4187 imp = 4185 ck3 = 3608 } # Mursella, Stravianis -> Orahovica + link = { autogenerated = yes imp = 4197 imp = 4122 ck3 = 3607 } # Moesiana, Parthinia -> Uzice + link = { autogenerated = yes imp = 4124 ck3 = 3606 } # Ad Drinum -> Krupanj + link = { autogenerated = yes imp = 4196 ck3 = 3605 } # Siluvia -> Debrc + link = { autogenerated = yes imp = 4194 ck3 = 3604 } # Gensis -> Macva + link = { autogenerated = yes imp = 4203 imp = 4120 ck3 = 3603 } # Horreum Margi, Praesidium Illyricum -> Kragujevac + link = { autogenerated = yes imp = 4206 ck3 = 3602 } # Bannea -> Rudnik + link = { autogenerated = yes imp = 4199 imp = 4205 ck3 = 3601 } # Margum, Aureus Mons -> Smederevo + link = { autogenerated = yes imp = 2167 ck3 = 36 } # Manapia Borealis -> UISNEACH + link = { autogenerated = yes imp = 4118 imp = 4202 imp = 5092 ck3 = 3598 } # Gramrianae, Dasminium, IMPASSIBLE TERRAIN 092 -> Krusevac + link = { autogenerated = yes imp = 4095 ck3 = 3597 } # Theranda -> Prizren + link = { autogenerated = yes imp = 4099 ck3 = 3596 } # Vicianum -> Pristina + link = { autogenerated = yes imp = 4093 ck3 = 3595 ck3 = 503 } # Siparantum -> Pec, Hum + link = { autogenerated = yes imp = 4100 ck3 = 3594 } # Municipium Dardanorum -> Zvecan + link = { autogenerated = yes imp = 4103 ck3 = 3591 ck3 = 3584 ck3 = 3592 } # Sevastum -> Sjenica, Prijepolje, Budlimlje + link = { autogenerated = yes imp = 4106 imp = 5080 ck3 = 3590 } # Risetia, IMPASSIBLE TERRAIN 080 -> Rujno + link = { autogenerated = yes imp = 4121 ck3 = 3588 ck3 = 3589 } # Gradus -> Zica, Arilje + link = { autogenerated = yes imp = 4127 ck3 = 3581 } # Malvesia -> Visegrad + link = { autogenerated = yes imp = 1144 ck3 = 3580 ck3 = 3578 } # Skodra -> Skadar, Drivast + link = { autogenerated = yes imp = 4102 ck3 = 3577 ck3 = 3586 } # Grabaion -> Moraca, Brskovo + link = { autogenerated = yes imp = 2336 ck3 = 3576 ck3 = 3719 } # Lissos -> Ulcinj, Lezhe + link = { autogenerated = yes imp = 4090 ck3 = 3575 } # Bouthoe -> Antivari + link = { autogenerated = yes imp = 4091 ck3 = 3574 } # Askrebion -> Kotor + link = { autogenerated = yes imp = 4088 ck3 = 3573 } # Rhizon -> Risan + link = { autogenerated = yes imp = 4087 ck3 = 3572 ck3 = 3571 } # Anderba -> Trebinje, Onogost + link = { autogenerated = yes imp = 394 ck3 = 3570 ck3 = 3791 } # Pharsalos -> Pharsalos, Domokos + link = { autogenerated = yes imp = 4082 ck3 = 3569 } # Narona -> Ston + link = { autogenerated = yes imp = 4085 ck3 = 468 } # Epidauros Illyrikos -> Ragusa + link = { autogenerated = yes imp = 4107 ck3 = 3567 ck3 = 3568 } # Haedum -> Vhrbosna, Rogatica + link = { autogenerated = yes imp = 4125 ck3 = 3566 } # Domavia -> Srebrenica + link = { autogenerated = yes imp = 4086 ck3 = 3563 } # Salthua -> Kljuc + link = { autogenerated = yes imp = 4083 ck3 = 3562 ck3 = 466 } # Dilenton -> Drijeva, Zachlumia + link = { autogenerated = yes imp = 4104 ck3 = 3560 ck3 = 3561 } # Leusinium -> Gacko, Nevesinje + link = { autogenerated = yes imp = 4080 ck3 = 3557 ck3 = 3558 } # Aquae Sulphurae -> Konjic, Mostar + link = { autogenerated = yes imp = 8027 imp = 8026 ck3 = 3556 } # Korkyra Melaina, Issa -> Hvar + link = { autogenerated = yes imp = 4081 ck3 = 3553 ck3 = 3555 } # Angeliai -> Omis, Mokro + link = { autogenerated = yes imp = 4084 imp = 4062 ck3 = 3552 } # Pharos, Salona -> Solin + link = { autogenerated = yes imp = 4057 ck3 = 3551 } # Bournion -> Sinj + link = { autogenerated = yes imp = 4058 imp = 4059 ck3 = 3550 } # Skardon, Synodion -> sibenik + link = { autogenerated = yes imp = 4056 ck3 = 3549 } # Asseria -> Bribir + link = { autogenerated = yes imp = 4055 ck3 = 3546 ck3 = 3547 } # Argyruntum -> Obrovac, Biograd + link = { autogenerated = yes imp = 4052 imp = 4053 ck3 = 3545 } # Kissa, Ainona -> Nin + link = { autogenerated = yes imp = 4051 ck3 = 3544 ck3 = 3541 } # Ancus -> Udbina, Dreznik + link = { autogenerated = yes imp = 4050 imp = 5086 ck3 = 3543 } # Arupium, IMPASSIBLE TERRAIN 086 -> Kaseg + link = { autogenerated = yes imp = 4049 imp = 4035 ck3 = 3542 } # Vegium, Ortopla -> Bag + link = { autogenerated = yes imp = 4036 imp = 5118 ck3 = 3539 } # Metulum, IMPASSIBLE TERRAIN 118 -> Modrus + link = { autogenerated = yes imp = 4042 imp = 4046 ck3 = 3538 } # Raetinium, Valdasus -> Topusko + link = { autogenerated = yes imp = 4040 ck3 = 3537 } # Ad Fines Catariae -> Okic + link = { autogenerated = yes imp = 4045 ck3 = 3536 } # Colapia -> Dubovac + link = { autogenerated = yes imp = 4038 ck3 = 3535 } # Andautonia -> Sisak + link = { autogenerated = yes imp = 4177 ck3 = 3533 } # Varianis -> Cazma + link = { autogenerated = yes imp = 4179 ck3 = 3532 } # Serota -> Verevce + link = { autogenerated = yes imp = 4180 ck3 = 3531 } # Lentulis -> Koprivnica + link = { autogenerated = yes imp = 4186 ck3 = 3530 } # Picentino -> Brod + link = { autogenerated = yes imp = 4184 ck3 = 3529 } # Dravia -> Pozega + link = { autogenerated = yes imp = 4178 ck3 = 3528 } # Iassorum -> Kutina + link = { autogenerated = yes imp = 4079 ck3 = 3527 ck3 = 3525 } # Stanecli -> Visoki, Bobovac + link = { autogenerated = yes imp = 4078 ck3 = 3526 ck3 = 3524 } # Bercellum -> Travnik, Vranduk + link = { autogenerated = yes imp = 4043 ck3 = 3521 ck3 = 3522 } # Clandate -> Krupa, Bihac + link = { autogenerated = yes imp = 1445 imp = 455 imp = 5075 ck3 = 3520 } # Kodrion, Dimalion, IMPASSIBLE TERRAIN 075 -> Valamara + link = { autogenerated = yes imp = 4073 ck3 = 3519 } # Ad Praetorium -> Vodicevo + link = { autogenerated = yes imp = 4041 ck3 = 3518 } # Segestica -> Dubica + link = { autogenerated = yes imp = 4076 ck3 = 3517 } # Urbate -> Glaz + link = { autogenerated = yes imp = 4074 imp = 5088 ck3 = 3516 } # Servitium, IMPASSIBLE TERRAIN 088 -> Vrbaski Grad + link = { autogenerated = yes imp = 4183 ck3 = 3515 } # Incero -> Gradiska + link = { autogenerated = yes imp = 4128 ck3 = 3514 } # Sarviana -> Maglaj + link = { autogenerated = yes imp = 4129 ck3 = 3512 } # Sarvia -> Tolisa + link = { autogenerated = yes imp = 4123 ck3 = 3511 ck3 = 3565 } # Salinae -> Zvornik, Kuclat + link = { autogenerated = yes imp = 4130 ck3 = 3510 ck3 = 3513 } # Saldia -> Soli, Srebrenik + link = { autogenerated = yes imp = 4126 ck3 = 3509 } # Drinum -> Bijeljina + link = { autogenerated = yes imp = 4070 ck3 = 3507 ck3 = 3508 } # Baloia -> Jajce, Sokol + link = { autogenerated = yes imp = 4072 imp = 5087 ck3 = 3505 } # Aemate, IMPASSIBLE TERRAIN 087 -> Greben + link = { autogenerated = yes imp = 4061 ck3 = 3504 ck3 = 3523 ck3 = 3548 } # Splonum -> Kljuc na Sani, Pset, Knin + link = { autogenerated = yes imp = 4066 imp = 4067 imp = 5082 ck3 = 3503 } # Delminion, Bariduum, IMPASSIBLE TERRAIN 082 -> Imotski + link = { autogenerated = yes imp = 4064 imp = 4063 ck3 = 3502 } # Pelva, Osinion -> Duvno + link = { autogenerated = yes imp = 4065 ck3 = 3500 } # Salvium -> Glamoc + link = { autogenerated = yes imp = 7438 ck3 = 3499 } # Mahanala -> Bundi + link = { autogenerated = yes imp = 7435 ck3 = 3498 } # Ramgarh -> Ramgarh + link = { autogenerated = yes imp = 7428 ck3 = 3497 } # Manasa -> Bhainsrorgarh + link = { autogenerated = yes imp = 7448 ck3 = 3496 } # Jhalawar -> Baroli + link = { autogenerated = yes imp = 4479 ck3 = 3495 } # Dasapura -> Rampura + link = { autogenerated = yes imp = 4478 imp = 7430 ck3 = 3494 } # Devnimori, Aspur -> Jagadamba + link = { autogenerated = yes imp = 7417 ck3 = 3493 } # Jagadamba -> Rishabhdeo + link = { autogenerated = yes imp = 4495 ck3 = 3491 } # Agathapura -> Eklingji + link = { autogenerated = yes imp = 7658 ck3 = 3490 } # Srimalla -> Achalgarh + link = { autogenerated = yes imp = 7413 imp = 7310 ck3 = 3489 } # Bhinmal, Mandapura -> Bhillamala + link = { autogenerated = yes imp = 7390 ck3 = 3486 } # Suvarngiri -> Siwana + link = { autogenerated = yes imp = 4488 ck3 = 3485 ck3 = 3388 ck3 = 3484 } # Asangai -> Sanderaka, Phalavardhika, Osian + link = { autogenerated = yes imp = 4439 ck3 = 3483 } # Ambara -> Amer + link = { autogenerated = yes imp = 7388 ck3 = 3482 } # Empelathra -> Sanganer + link = { autogenerated = yes imp = 4438 imp = 7387 ck3 = 3481 } # Vairata, Dausa -> Vairata + link = { autogenerated = yes imp = 4413 ck3 = 3475 } # Sonprastha -> Rohtak + link = { autogenerated = yes imp = 4419 ck3 = 3473 ck3 = 1168 } # Haridwar -> Gangadvara, Mandawar + link = { autogenerated = yes imp = 4454 ck3 = 3472 ck3 = 3474 } # Matipura -> Bachhraon, Bijnor + link = { autogenerated = yes imp = 7403 imp = 4453 ck3 = 3471 } # Govishana, Dhampur -> Amroha + link = { autogenerated = yes imp = 7404 imp = 4424 ck3 = 3470 } # Anupshahr, Ahicchatra -> Ujhani + link = { autogenerated = yes imp = 4425 ck3 = 3468 } # Kanyakubja -> Tilokpur + link = { autogenerated = yes imp = 7407 ck3 = 3467 ck3 = 3469 } # Katheria -> Bareily, Ahichatra + link = { autogenerated = yes imp = 7444 imp = 7408 ck3 = 3465 } # Dhawalpur, Batesar -> Dhavalapuri + link = { autogenerated = yes imp = 4436 ck3 = 3463 } # Alavi Pancala -> Soron + link = { autogenerated = yes imp = 7447 ck3 = 3462 } # Rajyapura -> Agra + link = { autogenerated = yes imp = 4420 ck3 = 3460 ck3 = 3461 } # Mathura -> Krishnajanmabhoomi, Govardhan + link = { autogenerated = yes imp = 7485 imp = 4418 ck3 = 3458 } # Sodal, Satadru -> Jajjanir + link = { autogenerated = yes imp = 4414 imp = 4417 ck3 = 3457 } # Salagishsha, Tohana -> Sunam + link = { autogenerated = yes imp = 4407 ck3 = 3455 ck3 = 3456 } # Isukara -> Asika, Narabhata + link = { autogenerated = yes imp = 4411 ck3 = 3454 } # Sthanishvara -> Samana + link = { autogenerated = yes imp = 4412 ck3 = 3453 } # Karnal -> Sthanisvara + link = { autogenerated = yes imp = 4402 imp = 4401 imp = 4416 ck3 = 3452 } # Thuna, Rupar, Sunam -> Sirhind + link = { autogenerated = yes imp = 4423 ck3 = 3450 } # Soreyya -> Indrasthana + link = { autogenerated = yes imp = 4404 ck3 = 3449 } # Hastinapura -> Mirath + link = { autogenerated = yes imp = 4421 ck3 = 3448 ck3 = 3451 } # Varana -> Jahanpanah, Hapur + link = { autogenerated = yes imp = 4405 imp = 5450 ck3 = 3447 } # Indraprastha, Maru Desert -> Dhilika + link = { autogenerated = yes imp = 4335 imp = 4336 imp = 4337 ck3 = 3446 } # Labaka, Varahasaila Pass, Embolima -> Parihasapura + link = { autogenerated = yes imp = 4329 imp = 7314 ck3 = 3442 } # Nara, Taxila -> Lund_Nandana + link = { autogenerated = yes imp = 4328 ck3 = 3441 ck3 = 3443 ck3 = 3444 } # Plagira -> Nowshera, Kalabagh, Hangu + link = { autogenerated = yes imp = 4300 imp = 4367 ck3 = 3440 } # Pushkalavati, Arjunava -> Shergarh + link = { autogenerated = yes imp = 4322 imp = 4326 imp = 4327 imp = 5349 ck3 = 3439 } # Alexandreia Nikaia, Manikyala, Kaspira, Sharhistan Desert -> Mankiala + link = { autogenerated = yes imp = 4323 imp = 4370 ck3 = 3438 } # Takht-i-Bahi, Massaka -> Oddiyana + link = { autogenerated = yes imp = 7319 ck3 = 3437 } # Ataka -> Attak + link = { autogenerated = yes imp = 4315 ck3 = 3436 } # Jobnathnagar -> Kunjah + link = { autogenerated = yes imp = 4391 ck3 = 3434 ck3 = 3431 ck3 = 7945 } # Udambhara -> Kangra, Rahon, Brahmapura + link = { autogenerated = yes imp = 4394 ck3 = 3432 } # Adrestai -> Pathankot + link = { autogenerated = yes imp = 4342 ck3 = 3430 } # Parvata -> Jammu + link = { autogenerated = yes imp = 6031 ck3 = 343 } # Arosia -> ENESCOPINGE + link = { autogenerated = yes imp = 4347 imp = 4344 ck3 = 3429 } # Magaris, Chhamb -> Bhuttar + link = { autogenerated = yes imp = 4331 imp = 4308 imp = 5372 ck3 = 3428 } # Khushab, Cakravala, IP 373 -> Katasraj + link = { autogenerated = yes imp = 4396 ck3 = 3427 } # Chandaniot -> Bhirr + link = { autogenerated = yes imp = 9280 ck3 = 3426 } # Kot Kamalia -> Kamalia + link = { autogenerated = yes imp = 7399 ck3 = 3425 } # Rajagrha -> Phalia + link = { autogenerated = yes imp = 9267 imp = 9265 ck3 = 3423 } # Badopal, Rojhanwali -> Abohar + link = { autogenerated = yes imp = 4395 ck3 = 3422 } # Turvasha -> Satghara + link = { autogenerated = yes imp = 4388 ck3 = 3421 } # Pancapura -> Pancapura + link = { autogenerated = yes imp = 4400 imp = 4346 imp = 4397 imp = 4399 ck3 = 3420 } # Taki, Madra, Vipasha, Jayapura -> Sangla + link = { autogenerated = yes imp = 4393 ck3 = 3419 } # Okara -> Chunian + link = { autogenerated = yes imp = 9282 ck3 = 3418 } # Nokhar -> Kasur + link = { autogenerated = yes imp = 4321 imp = 4330 ck3 = 3416 } # Kutte Mar, Gogaraioi -> Wan_Bhachran + link = { autogenerated = yes imp = 4385 ck3 = 3414 } # Shivai -> Alipur + link = { autogenerated = yes imp = 9278 ck3 = 3413 } # Atari -> Kabirwala + link = { autogenerated = yes imp = 4382 ck3 = 3412 } # Anatachara -> Tulamba + link = { autogenerated = yes imp = 4381 ck3 = 3411 ck3 = 3424 } # Shudrakai -> Vehari, Ajodhan + link = { autogenerated = yes imp = 4378 imp = 9281 ck3 = 3410 } # Osioi, Sukah -> Askhanda + link = { autogenerated = yes imp = 6032 ck3 = 341 ck3 = 342 ck3 = 344 } # Broborg -> SIGTUNA, UPPSALA, OSTHAMMAR + link = { autogenerated = yes imp = 4373 ck3 = 3408 } # Siberai -> Chachran + link = { autogenerated = yes imp = 4376 ck3 = 3406 } # Pardabathra -> Shikarpur + link = { autogenerated = yes imp = 6527 ck3 = 3403 } # Morontobara -> Kolachi + link = { autogenerated = yes imp = 6815 ck3 = 3401 } # Patala -> Nirun + link = { autogenerated = yes imp = 6821 ck3 = 3400 ck3 = 3402 } # Alexandrou Limen -> Shahbandar, Thatta + link = { autogenerated = yes imp = 6026 ck3 = 340 ck3 = 8733 } # Miriquidui -> BIRKEVIK, Norrkoping + link = { autogenerated = yes imp = 2185 ck3 = 34 } # Gangania Orientalis -> ATHLONE + link = { autogenerated = yes imp = 6848 ck3 = 3399 } # Sangama -> Badin + link = { autogenerated = yes imp = 4359 ck3 = 3397 } # Samarabriai -> Matiari + link = { autogenerated = yes imp = 4356 ck3 = 3395 } # Kahu-Jo-Darro -> Mirpur_Khas + link = { autogenerated = yes imp = 4354 imp = 6827 ck3 = 3394 } # Min, Khadro -> Mir_Rukan + link = { autogenerated = yes imp = 4372 ck3 = 3393 } # Vijnot -> Ghotki + link = { autogenerated = yes imp = 4363 ck3 = 3392 } # Sembrakenoi -> Siraj_ji_Takri + link = { autogenerated = yes imp = 6856 ck3 = 3385 } # Vallai -> Kasara + link = { autogenerated = yes imp = 6866 ck3 = 3384 ck3 = 7788 } # Nanaghat -> Sanjan, Suraparaka + link = { autogenerated = yes imp = 6862 imp = 6861 ck3 = 3383 } # Nousaripa, Surat -> Navasarika + link = { autogenerated = yes imp = 7420 imp = 7116 ck3 = 3382 } # Nandipuri, Purnaya -> Rajpipla + link = { autogenerated = yes imp = 6858 ck3 = 3380 } # Minnagara -> Bharuch + link = { autogenerated = yes imp = 6855 ck3 = 3379 } # Baroda -> Kayavarohan + link = { autogenerated = yes imp = 6830 ck3 = 3375 } # Svabhra -> Khambhat + link = { autogenerated = yes imp = 4497 imp = 7418 ck3 = 3374 } # Dadhipadra, Brahampuri -> Jhalod + link = { autogenerated = yes imp = 7416 ck3 = 3373 } # Mohadavasaka -> Idar + link = { autogenerated = yes imp = 4489 ck3 = 3372 } # Anandpura -> Siddhapura + link = { autogenerated = yes imp = 4494 ck3 = 3370 ck3 = 3371 ck3 = 3377 } # Candanaputraka -> Modhera, Vadnagar, Dholka + link = { autogenerated = yes imp = 6029 ck3 = 337 ck3 = 338 ck3 = 339 } # Rekarne -> NYKOPUNG, SUNDBY, STRIGINES + link = { autogenerated = yes imp = 6835 ck3 = 3369 } # Malia -> Kamboika + link = { autogenerated = yes imp = 6836 ck3 = 3367 } # Dhanduka -> Dhandhuka + link = { autogenerated = yes imp = 6814 ck3 = 3366 } # Automula -> Shatrunjaya + link = { autogenerated = yes imp = 6817 ck3 = 3364 } # Sana -> Delvada + link = { autogenerated = yes imp = 6824 ck3 = 3363 ck3 = 3365 } # Astakapra -> Saymur, Moherak + link = { autogenerated = yes imp = 6823 ck3 = 3361 ck3 = 3362 } # Monoglosson -> Shrinagar, Mangrol + link = { autogenerated = yes imp = 6834 ck3 = 3360 } # Kalavad -> Bhumilka + link = { autogenerated = yes imp = 6030 ck3 = 336 } # Birka -> TALJE + link = { autogenerated = yes imp = 6819 ck3 = 3359 } # Ujjayanta -> Uperkot + link = { autogenerated = yes imp = 6832 ck3 = 3358 } # Khambalida -> Amarvalli + link = { autogenerated = yes imp = 6839 imp = 6838 ck3 = 3357 } # Kuvada, Jhala -> Ranpur + link = { autogenerated = yes imp = 6847 ck3 = 3355 ck3 = 3356 } # Rusia -> Morvi, Halvad + link = { autogenerated = yes imp = 6829 ck3 = 3354 } # Anartta -> Lakhota + link = { autogenerated = yes imp = 6828 ck3 = 3352 } # Kukurra -> Lalpur + link = { autogenerated = yes imp = 6842 ck3 = 3351 } # Kaccha -> Anjar + link = { autogenerated = yes imp = 6840 imp = 6833 imp = 6844 imp = 6845 ck3 = 3350 } # Maltecoria, Baraca, Darangia, Bissai -> Bhuj + link = { autogenerated = yes imp = 4481 ck3 = 3349 } # Barli -> Pushkar + link = { autogenerated = yes imp = 7442 ck3 = 3348 } # Vyaghrapataka -> Dhanop + link = { autogenerated = yes imp = 7309 imp = 7443 ck3 = 3347 } # Mritti Kavati, Narayana -> Ajayameru + link = { autogenerated = yes imp = 7432 ck3 = 3345 } # Rajsamand -> Bhilwara + link = { autogenerated = yes imp = 4472 ck3 = 3344 ck3 = 3346 } # Barnala -> Gangapur, Mandrael + link = { autogenerated = yes imp = 4496 ck3 = 3343 } # Machhindrapur -> Ranakpur + link = { autogenerated = yes imp = 4469 ck3 = 3341 } # Padmavati -> Dabra + link = { autogenerated = yes imp = 7307 imp = 7446 ck3 = 3340 } # Sripatha, Sabalgarh -> Sabalgarh + link = { autogenerated = yes imp = 7308 ck3 = 3339 } # Candhoba -> Narwar + link = { autogenerated = yes imp = 7445 ck3 = 3338 } # Sheopur -> Sheopur + link = { autogenerated = yes imp = 7450 ck3 = 3335 ck3 = 3336 } # Sarangpur -> Maksi, Mehidpur + link = { autogenerated = yes imp = 4492 ck3 = 3332 } # Bagh Anupa -> Dharampuri + link = { autogenerated = yes imp = 7425 ck3 = 3331 } # Jhabua -> Depalpur + link = { autogenerated = yes imp = 4486 ck3 = 3330 ck3 = 3334 } # Devasabha -> Betma, Dewas + link = { autogenerated = yes imp = 6021 ck3 = 333 } # Aska -> SKAENNINGE + link = { autogenerated = yes imp = 4499 ck3 = 3329 } # Navagramaka -> Vatapadraka + link = { autogenerated = yes imp = 4482 ck3 = 3328 ck3 = 3337 } # Kolvi -> Dharmrajeshwar, Agar + link = { autogenerated = yes imp = 7434 imp = 7433 imp = 7449 imp = 7466 ck3 = 3327 } # Candravati, Binnayaga, Guna, Bhand Deva -> Gagraun + link = { autogenerated = yes imp = 7441 ck3 = 3326 } # Jirapur -> Jhalawar + link = { autogenerated = yes imp = 7421 imp = 4483 imp = 7301 ck3 = 3325 } # Narmadapuram, Kakanada, Rajasayana -> Ashta + link = { autogenerated = yes imp = 7303 ck3 = 3324 } # Airakina -> Bhojpur + link = { autogenerated = yes imp = 4470 ck3 = 3322 ck3 = 3323 ck3 = 1170 } # Vidisha -> Sironj, Sanchi, Vidisa + link = { autogenerated = yes imp = 7312 ck3 = 3321 } # Tundikera -> Raisin + link = { autogenerated = yes imp = 7302 ck3 = 3320 } # Kirthagiri -> Kadwaya + link = { autogenerated = yes imp = 7469 ck3 = 3319 } # Gujjar -> Jarai_ka_Math + link = { autogenerated = yes imp = 4435 ck3 = 3318 } # Erakaccha -> Garh_Kundar + link = { autogenerated = yes imp = 7464 ck3 = 3317 } # Bina -> Guna + link = { autogenerated = yes imp = 7461 ck3 = 3316 } # Tehri -> Luacchagiri + link = { autogenerated = yes imp = 7460 ck3 = 3315 } # Mauranipur -> Jhansi + link = { autogenerated = yes imp = 6019 ck3 = 330 ck3 = 331 } # Vikbo -> SUDHERKOPUNG, HAMARKINDA + link = { autogenerated = yes imp = 2191 ck3 = 33 } # Manapia Occidentalis -> BIRR + link = { autogenerated = yes imp = 6968 ck3 = 3287 } # Modoutou -> MULLAITIVU + link = { autogenerated = yes imp = 6950 ck3 = 3284 } # Anuradhapura -> KURUNAGALA + link = { autogenerated = yes imp = 6973 imp = 6979 ck3 = 3283 } # Upatissagama, Simhalava -> PUTTALAM + link = { autogenerated = yes imp = 6975 ck3 = 3282 ck3 = 3285 } # Mihintale -> DHAMBALLAI, VAVUNIYA + link = { autogenerated = yes imp = 6976 imp = 6978 ck3 = 3281 } # Girikandi, Avakana -> TRINCOMALEE + link = { autogenerated = yes imp = 6967 ck3 = 3280 } # Gokanna -> BATTICALOA + link = { autogenerated = yes imp = 6027 ck3 = 328 ck3 = 326 ck3 = 329 } # Tivedia -> RISEBERGA, VASE, NORASKOG + link = { autogenerated = yes imp = 6969 ck3 = 3275 } # Jambukola Pattana -> JAFFNA + link = { autogenerated = yes imp = 6972 ck3 = 3272 ck3 = 3286 } # Mahatittha -> ANURADHAPURA, MANNAR + link = { autogenerated = yes imp = 6028 ck3 = 327 ck3 = 334 ck3 = 347 } # Arbugae -> ORABRO, VRETA, ARBUGAE + link = { autogenerated = yes imp = 9159 imp = 7772 ck3 = 3254 } # $PROV7771$, Baetis -> Guadalquivir River + link = { autogenerated = yes imp = 7665 imp = 7771 ck3 = 3253 } # Lacus Ligustinus, Baetis -> Guadalquivir River + link = { autogenerated = yes imp = 9160 imp = 9161 ck3 = 3251 } # $PROV7862$, $PROV7862$ -> Guadiana River + link = { autogenerated = yes imp = 7862 imp = 7863 ck3 = 3250 } # Flumen Anas, Flumen Anas -> Guadiana River + link = { autogenerated = yes imp = 6033 ck3 = 325 ck3 = 323 } # Vrine -> GILLBERG, TINGVALLA + link = { autogenerated = yes imp = 9172 ck3 = 3249 } # $PROV7846$ -> Rhone River + link = { autogenerated = yes imp = 9171 ck3 = 3248 } # $PROV7846$ -> Rhone River + link = { autogenerated = yes imp = 7846 imp = 9170 ck3 = 3247 } # Rhodanus, $PROV7846$ -> Rhone River + link = { autogenerated = yes imp = 8034 ck3 = 3245 ck3 = 3246 } # Padus -> Po River, Po River + link = { autogenerated = yes imp = 8032 imp = 8033 ck3 = 3244 } # Padus, Padus -> Po River + link = { autogenerated = yes imp = 8031 imp = 8030 ck3 = 3243 } # Padus, Padus -> Po River + link = { autogenerated = yes imp = 8588 ck3 = 3242 } # $PROV8586$ -> Daugava River + link = { autogenerated = yes imp = 8586 ck3 = 3241 } # Vain -> Daugava River + link = { autogenerated = yes imp = 7888 ck3 = 3240 } # Albis -> Elbe River + link = { autogenerated = yes imp = 7887 ck3 = 3239 } # Albis -> Elbe River + link = { autogenerated = yes imp = 7886 imp = 7885 ck3 = 3238 } # Albis, Albis -> Elbe River + link = { autogenerated = yes imp = 7884 ck3 = 3237 } # Albis -> Elbe River + link = { autogenerated = yes imp = 9169 ck3 = 3236 } # $PROV7868$ -> Seine + link = { autogenerated = yes imp = 7870 imp = 9168 ck3 = 3235 } # Sequana, $PROV7868$ -> Seine + link = { autogenerated = yes imp = 7869 imp = 7868 ck3 = 3234 } # Sequana, Sequana -> Seine + link = { autogenerated = yes imp = 7729 ck3 = 3233 } # Rhenus -> River Rhine + link = { autogenerated = yes imp = 7728 imp = 7727 ck3 = 3232 } # Rhenus, Rhenus -> River Rhine + link = { autogenerated = yes imp = 7726 imp = 7725 ck3 = 3231 } # Rhenus, Rhenus -> River Rhine + link = { autogenerated = yes imp = 5780 ck3 = 3230 } # Mare Germanicum -> Zeeland Delta + link = { autogenerated = yes imp = 5779 ck3 = 3229 } # Mare Germanicum -> Zeeland Delta + link = { autogenerated = yes imp = 7867 imp = 7866 ck3 = 3227 } # Liger, Liger -> Loire River + link = { autogenerated = yes imp = 7864 imp = 7865 ck3 = 3226 } # Liger, Liger -> Loire River + link = { autogenerated = yes imp = 9165 ck3 = 3225 } # $PROV7741$ -> Garonne River + link = { autogenerated = yes imp = 7742 ck3 = 3223 } # $PROV7741$ -> Garonne River + link = { autogenerated = yes imp = 7766 ck3 = 3224 } # Garumna -> Garonne River + link = { autogenerated = yes imp = 1077 imp = 1074 ck3 = 3221 } # Iluberis, Forum Gallorum -> ALTO ARAGON + link = { autogenerated = yes imp = 6285 ck3 = 3218 ck3 = 3219 ck3 = 3220 } # Nullica -> LAUKITTEN, OSTLANDSBERG, Wormditt + link = { autogenerated = yes imp = 4865 ck3 = 3216 } # Venedicana -> KONIGSBERG + link = { autogenerated = yes imp = 6284 ck3 = 3214 } # Anavenedica -> EYLAU + link = { autogenerated = yes imp = 6286 ck3 = 3213 } # Marone -> OSTERODE + link = { autogenerated = yes imp = 6287 ck3 = 3212 ck3 = 3215 } # Anavella -> ALLENSTEIN, NIEDENBURG + link = { autogenerated = yes imp = 7298 ck3 = 3211 ck3 = 4945 ck3 = 4949 } # Venedia Australis -> ORTELSBURG, Kolno, Rozan + link = { autogenerated = yes imp = 6025 ck3 = 321 ck3 = 8770 } # Ragnaricia -> DALABORG, Uddevalla + link = { autogenerated = yes imp = 7835 ck3 = 3209 ck3 = 3210 } # Chrononia -> ANGERBURG, LYCK + link = { autogenerated = yes imp = 7833 ck3 = 3204 ck3 = 3207 ck3 = 3208 } # Venedia -> LAUTENBURG, RASTENBURG, LOTZEN + link = { autogenerated = yes imp = 7832 ck3 = 3203 ck3 = 3205 ck3 = 3206 } # Venedia Borealis -> PATERSWALDE, BARTENSTEIN, INSTERBURG + link = { autogenerated = yes imp = 6283 ck3 = 3200 ck3 = 3202 } # Anacureta -> Brodnica, BRIESEN + link = { autogenerated = yes imp = 6281 ck3 = 3198 ck3 = 3199 } # Follia -> KULM, TORUN + link = { autogenerated = yes imp = 4863 ck3 = 3197 } # Voreynica -> GRAUDENZ + link = { autogenerated = yes imp = 4764 ck3 = 3192 ck3 = 3196 } # Helveconiana -> KONITZ, SCHWETZ + link = { autogenerated = yes imp = 4765 ck3 = 3190 ck3 = 4915 ck3 = 4916 } # Carinia -> HAMMERSTEIN, Naklo, Zlotow + link = { autogenerated = yes imp = 6022 ck3 = 319 ck3 = 320 } # Hio -> FALKÖPING, VARNHEM + link = { autogenerated = yes imp = 4757 ck3 = 3189 ck3 = 3191 ck3 = 3195 } # Lemoviana -> MIASTKO, BYTOW, BERENT + link = { autogenerated = yes imp = 4766 ck3 = 3186 ck3 = 3187 } # Cariniana -> PILA, WALCZ + link = { autogenerated = yes imp = 4760 ck3 = 3185 ck3 = 3188 } # Campia -> BELGARD, SZCZECINEK + link = { autogenerated = yes imp = 4754 ck3 = 3183 } # Turcilingia -> KREUZ + link = { autogenerated = yes imp = 3997 ck3 = 3182 } # Suevia Minor -> LUBBEN + link = { autogenerated = yes imp = 3995 ck3 = 3178 } # Viaduna -> DAHME + link = { autogenerated = yes imp = 3996 ck3 = 3173 ck3 = 3180 } # Graetana -> WITTENBERG, JUTERBOG + link = { autogenerated = yes imp = 3989 ck3 = 3172 ck3 = 3174 } # Albiana -> ZERBST, BELIZI + link = { autogenerated = yes imp = 3909 ck3 = 3171 ck3 = 3176 } # Mesuium -> MOCKERN, GOMMERN + link = { autogenerated = yes imp = 6023 ck3 = 317 ck3 = 8723 } # Gothalia -> LODOSE, Lacko + link = { autogenerated = yes imp = 3982 ck3 = 3169 } # Coenonia -> NOWEN + link = { autogenerated = yes imp = 3894 ck3 = 3168 } # Virunum Germanicum -> RUPPIN + link = { autogenerated = yes imp = 3983 ck3 = 3167 } # Astuia -> LINDOW + link = { autogenerated = yes imp = 3987 ck3 = 3166 ck3 = 3170 ck3 = 3177 } # Caluconiana -> BRANDENBURG, TANGERMUNDE, LEHNIN + link = { autogenerated = yes imp = 3985 ck3 = 3162 ck3 = 3163 } # Vistulia -> SCHWEDT, TEMPLIN + link = { autogenerated = yes imp = 3984 ck3 = 3161 } # Burgia -> EBERSWALDE + link = { autogenerated = yes imp = 6024 ck3 = 316 } # Rane -> SKARA + link = { autogenerated = yes imp = 3994 ck3 = 3158 } # Silingia -> BERLIN + link = { autogenerated = yes imp = 3986 ck3 = 3157 ck3 = 3164 } # Uarinia -> POTSDAM, BOTZOW + link = { autogenerated = yes imp = 4753 ck3 = 3155 ck3 = 3156 } # Rhuticlia Helveconia -> GRYFINO, ARNSWALDE + link = { autogenerated = yes imp = 3908 ck3 = 3153 ck3 = 3154 } # Viritium -> KOSTSCHIN, SOLDIN + link = { autogenerated = yes imp = 4758 ck3 = 3151 ck3 = 3152 } # Seurgium -> DRIESEN, LANDSBERG + link = { autogenerated = yes imp = 3999 ck3 = 3149 ck3 = 3165 } # Susidata -> LEBUS, ROSENFELDE + link = { autogenerated = yes imp = 4759 ck3 = 3147 ck3 = 3148 } # Iadua -> RZEPIN, SULECIN + link = { autogenerated = yes imp = 4770 ck3 = 3146 ck3 = 4912 ck3 = 4914 } # Vindua -> SIEDLISCHO, Wschowa, Srem + link = { autogenerated = yes imp = 4762 ck3 = 3144 ck3 = 3145 ck3 = 4901 ck3 = 4904 } # Buguntia -> CROSSEN, SCHWIEBUS, Miedzyrzecz, Wolsztyn + link = { autogenerated = yes imp = 4000 ck3 = 3142 ck3 = 3159 } # Omania -> ODERFRANKFURT, STORKOW + link = { autogenerated = yes imp = 3993 ck3 = 3141 } # Stragona Buria -> KAMENZ + link = { autogenerated = yes imp = 6009 ck3 = 314 ck3 = 315 } # Eowia -> BORGHOLM, EKETORP + link = { autogenerated = yes imp = 4001 ck3 = 3139 ck3 = 3140 ck3 = 3143 } # Diduniana -> SORGE, SPREEWALD, NAUMBERG + link = { autogenerated = yes imp = 3998 ck3 = 3138 ck3 = 3181 } # Suevia Maior -> FORST, COTTBUS + link = { autogenerated = yes imp = 3647 ck3 = 3131 ck3 = 3132 } # Ovilava -> LINZ, STEYR + link = { autogenerated = yes imp = 6018 ck3 = 313 ck3 = 335 } # Vist -> EKSJO, WISINGHNO + link = { autogenerated = yes imp = 3673 ck3 = 3125 ck3 = 3112 } # Sabatinca -> KNITTELFELD, JUDENBURG + link = { autogenerated = yes imp = 3674 ck3 = 3124 ck3 = 3126 ck3 = 3130 } # Gabramagus -> WAIDHOFEN, ADMONT, LIEZEN + link = { autogenerated = yes imp = 6016 ck3 = 312 } # Thwetum -> JONKOPING + link = { autogenerated = yes imp = 4131 ck3 = 3118 ck3 = 3110 } # Poedicum -> KAPFENBERG, LEOBEN + link = { autogenerated = yes imp = 4135 ck3 = 3117 ck3 = 3111 } # Arraboa -> GRAZ, KOFLACH + link = { autogenerated = yes imp = 4134 ck3 = 3116 ck3 = 3977 } # Ad Vicessimum -> FELDBACH, Szentgotthard + link = { autogenerated = yes imp = 4031 imp = 4048 ck3 = 3109 } # Flavia Solva, Colatio -> LEIBNITZ + link = { autogenerated = yes imp = 4136 ck3 = 3106 } # Halicanum -> WINDISCHE BUHEL + link = { autogenerated = yes imp = 3672 ck3 = 3105 ck3 = 3113 } # Noreia -> KLAGENFURT, SANKT VEIT + link = { autogenerated = yes imp = 4030 imp = 5034 ck3 = 3103 } # Poetovio, IMPASSIBLE TERRAIN 034 -> MARIBOR + link = { autogenerated = yes imp = 4029 ck3 = 3101 ck3 = 3102 } # Celeia -> KAMNIK, KRSKO + link = { autogenerated = yes imp = 4025 ck3 = 3100 ck3 = 2515 } # Carnium -> KRANJ, TRIGLAVSKI + link = { autogenerated = yes imp = 6020 ck3 = 310 ck3 = 332 ck3 = 8734 } # Kinda -> VIMMERBY, LIUNGA, Grebo + link = { autogenerated = yes imp = 3671 ck3 = 3099 } # Virunum -> VILLACH + link = { autogenerated = yes imp = 4044 ck3 = 3098 ck3 = 3534 } # Crucium -> RUDOLFSWERDE, Samobor + link = { autogenerated = yes imp = 4027 imp = 4024 ck3 = 3096 } # Latobicorum, Emona -> LJUBLJANA + link = { autogenerated = yes imp = 3649 imp = 3650 ck3 = 3094 } # Loacus Felicis, Namare -> WIESELBURG + link = { autogenerated = yes imp = 3648 ck3 = 3093 } # Lauriacum -> AMSTETTEN + link = { autogenerated = yes imp = 6008 ck3 = 309 ck3 = 8727 } # Theustia -> HULINGSRYD, Stegeholm + link = { autogenerated = yes imp = 3651 imp = 3652 ck3 = 3089 } # Faviana, Augustinia -> SANKT POLTEN + link = { autogenerated = yes imp = 3916 ck3 = 3088 ck3 = 3090 } # Abilunum -> KREMS, SPITZ + link = { autogenerated = yes imp = 3918 ck3 = 3087 } # Carnuntum -> BRUCK + link = { autogenerated = yes imp = 3653 ck3 = 3086 ck3 = 3091 } # Quadriburgium -> VIENNA, PADUN + link = { autogenerated = yes imp = 3921 ck3 = 3085 } # Regnia Secunda -> ERNSTBRUNN + link = { autogenerated = yes imp = 3669 ck3 = 3083 ck3 = 3114 ck3 = 3115 } # In Murio -> SPITTAL, MURAU, TAMSWEG + link = { autogenerated = yes imp = 3920 ck3 = 3082 ck3 = 3084 } # Regnia Prima -> MISTELBACH, FLORIDSDORF + link = { autogenerated = yes imp = 3922 ck3 = 3078 ck3 = 3079 ck3 = 3080 ck3 = 3081 } # Medioslanium -> HAUGSDORF, LAA, MIKULOV, HOHENAU + link = { autogenerated = yes imp = 3923 ck3 = 3075 ck3 = 3077 } # Teracatriae -> WILD, HORN + link = { autogenerated = yes imp = 3933 ck3 = 3074 } # Quadia -> GMUND + link = { autogenerated = yes imp = 3917 ck3 = 3073 ck3 = 3076 ck3 = 771 } # Adrabae -> FREISTADT, ZWETTL, Czech Mountains 9 + link = { autogenerated = yes imp = 3819 ck3 = 3072 } # Furgisatis -> LEONFELDEN + link = { autogenerated = yes imp = 6007 ck3 = 307 ck3 = 308 } # Meore -> KALMAR, HOGSBY + link = { autogenerated = yes imp = 4003 ck3 = 3067 ck3 = 3068 } # Lugidunum -> SPROTTAU, PRZEMKOW + link = { autogenerated = yes imp = 3992 ck3 = 3066 ck3 = 3070 } # Buria -> ZAGAN, NOWOGRODZIEC + link = { autogenerated = yes imp = 4002 ck3 = 3064 ck3 = 3065 } # Budorigum -> GRUNBERG, BYTOM + link = { autogenerated = yes imp = 4771 ck3 = 3062 } # Leucaristus -> OLESNICA + link = { autogenerated = yes imp = 4773 ck3 = 3061 } # Elysia -> MILIEZ + link = { autogenerated = yes imp = 4005 ck3 = 3059 ck3 = 3069 } # Stragona -> SWINY, WLEN + link = { autogenerated = yes imp = 4004 ck3 = 3058 ck3 = 3060 ck3 = 3063 } # Didunia -> LEGNICA, SADOWEL, GLOGOW + link = { autogenerated = yes imp = 4006 ck3 = 3057 ck3 = 3047 } # Marsignia -> BARDO, KLADZKO + link = { autogenerated = yes imp = 4010 ck3 = 3055 } # Casurgis -> OLAWA + link = { autogenerated = yes imp = 4778 ck3 = 3052 ck3 = 3053 } # Lygia -> OPPELN, KREUZBURG + link = { autogenerated = yes imp = 6017 ck3 = 305 ck3 = 306 ck3 = 311 } # Vitala -> NORRVIDINGE, UPPVIDINGE, HULTABY + link = { autogenerated = yes imp = 4012 ck3 = 3049 } # Viadria -> BRZEG + link = { autogenerated = yes imp = 4013 ck3 = 3048 ck3 = 3050 ck3 = 763 } # Carredunum -> NYSA, GLOGOWEK, Czech Mountains 1 + link = { autogenerated = yes imp = 4011 ck3 = 3046 ck3 = 3056 ck3 = 764 } # Cognia -> FRANKENSTEIN, OTMUCHOW, Czech Mountains 2 + link = { autogenerated = yes imp = 4007 ck3 = 3045 } # Leucara -> BRESLAU + link = { autogenerated = yes imp = 4898 ck3 = 3044 ck3 = 3054 ck3 = 526 } # Vectia -> BETHEN, LUBLINIEC, Czestochowa + link = { autogenerated = yes imp = 4897 ck3 = 3042 ck3 = 3043 ck3 = 3051 } # Lecrotiana -> RATIBOR, RYBNIK, STREHLITZ + link = { autogenerated = yes imp = 4894 ck3 = 3040 } # Arsonis -> TESCHEN + link = { autogenerated = yes imp = 3956 ck3 = 3038 } # Melocabus -> GERA + link = { autogenerated = yes imp = 3991 ck3 = 3034 ck3 = 3035 ck3 = 3175 } # Buriana -> GROSSENHAIN, RADEBEUL, BRENE + link = { autogenerated = yes imp = 3910 ck3 = 3032 ck3 = 3033 } # Susidaea -> BAUTZEN, BISCHOFSWERDA + link = { autogenerated = yes imp = 3988 ck3 = 3021 ck3 = 3024 } # Caluconia -> EILENBURG, DUBEN + link = { autogenerated = yes imp = 6015 ck3 = 302 ck3 = 303 ck3 = 304 } # Warinia -> VAXJO, ALLBO, KINNEVALD + link = { autogenerated = yes imp = 3951 ck3 = 3019 ck3 = 3020 } # Luphurdum -> LEIPZIG, NAUMBURG + link = { autogenerated = yes imp = 3950 ck3 = 3018 ck3 = 3023 } # Calaegia -> HALLE, DESSAU + link = { autogenerated = yes imp = 3990 ck3 = 3015 ck3 = 3016 ck3 = 3017 ck3 = 3025 ck3 = 3027 } # Hercynia -> COLDITZ, LEISNING, DEVIN, TORGAU, MEISSEN + link = { autogenerated = yes imp = 3954 ck3 = 3013 ck3 = 3014 } # Camulia -> WALDENBURG, ALTENBURG + link = { autogenerated = yes imp = 3981 ck3 = 3012 ck3 = 3028 ck3 = 3030 } # Thuringiana -> WOLKENSTEIN, FREIBERG, DRESDEN + link = { autogenerated = yes imp = 6013 ck3 = 301 ck3 = 8724 ck3 = 8725 } # Gautigothia -> WANNAMO, Opensten, Kindaholm + link = { autogenerated = yes imp = 3957 ck3 = 3006 ck3 = 3008 ck3 = 2999 ck3 = 3009 } # Bicurdium -> GLEICHEN, KAFERNBURG, SCHWARZBURG, EISENACH + link = { autogenerated = yes imp = 3955 ck3 = 3005 ck3 = 3007 } # Candulum -> ORLAMUNDE, BEICHTINEN + link = { autogenerated = yes imp = 3952 ck3 = 3004 } # Sudetia -> PLAUEN + link = { autogenerated = yes imp = 3953 ck3 = 3003 ck3 = 3039 } # Dandutia -> LOBDABURG, REICHENBACH + link = { autogenerated = yes imp = 6014 ck3 = 300 } # Finnaithae -> LIONGBY + link = { autogenerated = yes imp = 2192 ck3 = 30 ck3 = 31 } # Manapia Australis -> KILDARE, TRIM + link = { autogenerated = yes imp = 3948 ck3 = 2998 } # Turoniana -> COBURG + link = { autogenerated = yes imp = 3821 ck3 = 2995 ck3 = 3000 } # Moenosgadia -> LICHTENFELS, HOF + link = { autogenerated = yes imp = 3946 ck3 = 2994 ck3 = 2997 ck3 = 3001 ck3 = 768 } # Sudetica Planus -> KULMBACH, CHEB, REHAU, Czech Mountains 6 + link = { autogenerated = yes imp = 3820 ck3 = 2993 } # Cantiabis -> BAYREUTH + link = { autogenerated = yes imp = 3811 ck3 = 2988 ck3 = 2990 } # Brodentia -> SULZBACH, LEUCHTENBURG + link = { autogenerated = yes imp = 3808 ck3 = 2986 ck3 = 2987 } # Vandulia -> LENGENFELD, PARSBERG + link = { autogenerated = yes imp = 3642 ck3 = 2984 } # Isinisca -> MARQUARDSTEIN + link = { autogenerated = yes imp = 3643 ck3 = 2982 } # Artobriga -> LAUFEN + link = { autogenerated = yes imp = 3979 ck3 = 2980 ck3 = 3136 } # Colancorum -> GORLITZ, SPREMBERG + link = { autogenerated = yes imp = 3645 ck3 = 2979 } # Laciacum -> STRASSWALCHEN + link = { autogenerated = yes imp = 3644 ck3 = 2975 ck3 = 2983 } # Iuvavum -> SALZBURG, TRAUNSTEIN + link = { autogenerated = yes imp = 3763 ck3 = 2971 } # Ioviacum -> SCHAUMBERG + link = { autogenerated = yes imp = 3762 ck3 = 2970 ck3 = 2972 } # Stanacum -> SCHARDING, RIED + link = { autogenerated = yes imp = 3817 ck3 = 2968 ck3 = 2969 } # Brodentica -> DEGGENDORF, WALDKIRCHEN + link = { autogenerated = yes imp = 3814 ck3 = 2966 ck3 = 2989 ck3 = 769 } # Parmacampia -> WENZENBACH, HOHENBURG, Czech Mountains 7 + link = { autogenerated = yes imp = 3815 ck3 = 2965 ck3 = 2967 } # Augustania -> TEGERNHEIM, CHAM + link = { autogenerated = yes imp = 3759 ck3 = 2963 } # Sorviodurum -> LEONSBERG + link = { autogenerated = yes imp = 3760 ck3 = 2962 } # Petrensibus -> ORTENBURG + link = { autogenerated = yes imp = 3764 ck3 = 2961 ck3 = 2973 ck3 = 2981 } # Innaba -> DORNBERG, BRAUNAU, BURGHAUSEN + link = { autogenerated = yes imp = 3761 ck3 = 2960 } # Batavis -> PASSAU + link = { autogenerated = yes imp = 3756 imp = 3755 ck3 = 2959 } # Iovisura, Turum Breunorum -> FRONTENHAUSEN + link = { autogenerated = yes imp = 3753 imp = 3754 ck3 = 2958 } # Bratananium, Ad Pontes Tessenios -> ERDING + link = { autogenerated = yes imp = 3654 ck3 = 2949 ck3 = 2781 } # Foetes -> ESCHENLOHE, PEITING + link = { autogenerated = yes imp = 3641 ck3 = 2947 ck3 = 2956 } # Arces Covelicae -> WOLFRATSHAUSEN, FALKENSTEIN + link = { autogenerated = yes imp = 3751 ck3 = 2945 } # Abodiacum -> MUNCHEN + link = { autogenerated = yes imp = 3752 ck3 = 2943 } # Ambrae -> FREISING + link = { autogenerated = yes imp = 3757 ck3 = 2942 ck3 = 2957 } # Celeusum -> ROTHENBURG, GEISENHAUSEN + link = { autogenerated = yes imp = 3758 ck3 = 2941 ck3 = 2964 } # Castra Regina -> ABENSBERG, REGENSBURG + link = { autogenerated = yes imp = 3773 ck3 = 2940 } # Venaxamodurum -> MUNCHSMUNSTER + link = { autogenerated = yes imp = 3749 ck3 = 2939 } # Vindelicia -> ILMUNSTER + link = { autogenerated = yes imp = 3959 ck3 = 2934 ck3 = 2935 ck3 = 2936 } # Argelia -> SANGERHAUSEN, MERSENBURG, MANSFELD + link = { autogenerated = yes imp = 3966 ck3 = 2932 ck3 = 2933 } # Aregelliana -> BLANKENBURG, ARNSTEIN + link = { autogenerated = yes imp = 3961 ck3 = 2928 ck3 = 2931 } # Fosia -> EBELEBEN, HOHENSTEIN + link = { autogenerated = yes imp = 3947 ck3 = 2925 ck3 = 3010 } # Turonia -> HENNEBERG, SCHMALKALDEN + link = { autogenerated = yes imp = 3823 ck3 = 2923 ck3 = 2924 ck3 = 775 } # Melocavus -> HERSFELD, FULDA, German Mountains 2 + link = { autogenerated = yes imp = 3949 ck3 = 2922 } # Vistugia -> MUNDEN + link = { autogenerated = yes imp = 3958 ck3 = 2921 } # Salia Chamavia -> MUHLHAUSEN + link = { autogenerated = yes imp = 3960 ck3 = 2919 ck3 = 2920 } # Teuriona -> GLEICHENSTEIN, GOTTINGEN + link = { autogenerated = yes imp = 3965 ck3 = 2918 ck3 = 776 } # Bicurgium -> GOSLAR, German Mountains 3 + link = { autogenerated = yes imp = 3977 ck3 = 2913 ck3 = 2914 } # Luppia -> HILDESHEIM, WOLDENBERG + link = { autogenerated = yes imp = 3963 ck3 = 2912 } # Tropea -> HOMBURG + link = { autogenerated = yes imp = 3967 ck3 = 2906 ck3 = 2916 } # Aregellia -> MAGDEBURG, HALBERSTADT + link = { autogenerated = yes imp = 3975 ck3 = 2905 } # Angia -> GIFHORN + link = { autogenerated = yes imp = 3978 ck3 = 2902 ck3 = 2917 } # Meliboia -> WOLFENBUTTEL, WERNIGERODE + link = { autogenerated = yes imp = 3976 imp = 3974 ck3 = 2901 } # Maroia, Alaria -> BRUNSWICK + link = { autogenerated = yes imp = 3968 ck3 = 2900 } # Mersovium -> STENDAL + link = { autogenerated = yes imp = 2165 ck3 = 29 ck3 = 40 } # Coriondia Borealis -> WICKLOW, CARLOW + link = { autogenerated = yes imp = 3969 ck3 = 2899 } # Cistula -> WERBEN + link = { autogenerated = yes imp = 3973 ck3 = 2897 ck3 = 2898 } # Chamavia -> DEPENAU, HANNOVER + link = { autogenerated = yes imp = 3964 ck3 = 2896 } # Dinia -> WUNSDORF + link = { autogenerated = yes imp = 3971 ck3 = 2895 ck3 = 2907 } # Arminia -> LUCHOW, GARDELEGEN + link = { autogenerated = yes imp = 3970 ck3 = 2894 ck3 = 2937 } # Langobardia -> DANNENBERG, UELZEN + link = { autogenerated = yes imp = 3972 ck3 = 2893 ck3 = 2904 } # Fosa -> LUNEBURG, CELLE + link = { autogenerated = yes imp = 3805 ck3 = 2890 } # Bergium -> IPHOFEN + link = { autogenerated = yes imp = 3801 ck3 = 2889 } # Segodunum Chattuariorum -> MERGENTHEIM + link = { autogenerated = yes imp = 3803 ck3 = 2888 ck3 = 2891 } # Armalausia -> CRAILSHEIM, UFFENHEIM + link = { autogenerated = yes imp = 3769 ck3 = 2885 ck3 = 2886 } # Losodica -> DILLINGEN, NORDLINGEN + link = { autogenerated = yes imp = 3765 ck3 = 2883 } # Abusina -> INGOLSTADT + link = { autogenerated = yes imp = 3774 ck3 = 2882 ck3 = 2938 } # Parrodunum -> WEISSENBURG, NIEDERSCHONENFELD + link = { autogenerated = yes imp = 3768 imp = 3772 ck3 = 2880 } # Mediana Vendelicia, Ad Fines Germaniae -> TRUBENDING + link = { autogenerated = yes imp = 3809 ck3 = 2879 ck3 = 2991 } # Bibacum -> HIRSCHBERG, NEUMARKT + link = { autogenerated = yes imp = 3766 imp = 3767 ck3 = 2878 } # Germanicum, Biriciana -> LICHTSTAD + link = { autogenerated = yes imp = 3806 ck3 = 2875 ck3 = 2876 ck3 = 2892 } # Varistia -> ANSBACH, ABENBERG, RIEDFELD + link = { autogenerated = yes imp = 3807 ck3 = 2874 ck3 = 2877 ck3 = 2992 } # Nariscia -> BAMBERG, NUREMBERG, GREIFFENST + link = { autogenerated = yes imp = 3822 ck3 = 2873 ck3 = 2927 } # Devona -> CASEL, WILTBERG + link = { autogenerated = yes imp = 3799 ck3 = 2870 ck3 = 2871 ck3 = 2926 } # Salinae Chattuariorum -> WURZBURG, HAMMELBURG, SCHWEINFURT + link = { autogenerated = yes imp = 3802 ck3 = 2868 ck3 = 2869 } # Locoritum -> WERTHEIM, HOCHBERG + link = { autogenerated = yes imp = 3797 ck3 = 2865 ck3 = 2866 } # Mattiacia -> BUDINGEN, RIENECK + link = { autogenerated = yes imp = 3798 ck3 = 2862 ck3 = 2864 } # Vangionia -> KLINGENBERG, GELNHAUSEN + link = { autogenerated = yes imp = 3796 ck3 = 2861 ck3 = 2867 } # Bucinobantia -> NIDDA, LAUTERBACH + link = { autogenerated = yes imp = 3795 ck3 = 2860 } # Gravionarium -> KASSEL + link = { autogenerated = yes imp = 6038 ck3 = 286 ck3 = 287 } # Lingum -> TUNSBERG, SKIRINGSSAL + link = { autogenerated = yes imp = 3794 ck3 = 2858 ck3 = 2859 } # Marsiana -> ZIEGENHAIN, MARBURG + link = { autogenerated = yes imp = 3793 ck3 = 2857 } # Landia -> WETZLAR + link = { autogenerated = yes imp = 3700 ck3 = 2855 ck3 = 2863 } # Taunensium -> FRANKFURT, HANAU + link = { autogenerated = yes imp = 3789 ck3 = 2851 ck3 = 2852 ck3 = 2853 ck3 = 2856 } # Usipetia -> DIEZ, SIEGEN, SOLMS, HOMBURG + link = { autogenerated = yes imp = 3824 ck3 = 2850 ck3 = 2915 } # Mattium -> WALDECK, HOFGEISMAR + link = { autogenerated = yes imp = 3825 ck3 = 2848 ck3 = 2911 } # Pheugarum -> BRAKEL, DASSEL + link = { autogenerated = yes imp = 3827 ck3 = 2844 ck3 = 2909 ck3 = 2910 } # Tulisurgium -> LIPPE, SCHWALENBERG, EVERSTEIN + link = { autogenerated = yes imp = 3826 ck3 = 2842 ck3 = 2843 ck3 = 2847 } # Amisia -> LIPPSTADT, BUREN, PADERBORN + link = { autogenerated = yes imp = 3828 ck3 = 2840 ck3 = 2845 } # Tuliphurdum -> MINDEN, SCHAUENBURG + link = { autogenerated = yes imp = 3829 ck3 = 2839 ck3 = 2846 } # Ascalingium -> HOYA, WOLPE + link = { autogenerated = yes imp = 3840 ck3 = 2837 } # Ad Pontem -> BRUCHHAUSEN + link = { autogenerated = yes imp = 4864 ck3 = 2835 ck3 = 3217 } # Venedica -> ELBLAG, BRAUNSBERG + link = { autogenerated = yes imp = 6282 ck3 = 2834 ck3 = 3201 } # Cureta -> MALBORK, Mohrungen + link = { autogenerated = yes imp = 4862 ck3 = 2831 } # Vistuliana -> WISLANA + link = { autogenerated = yes imp = 4755 ck3 = 2830 ck3 = 3193 ck3 = 3194 } # Sciria Rugia -> GDANSK, TUCHOWNA, TRSOW + link = { autogenerated = yes imp = 4750 ck3 = 2827 ck3 = 2829 ck3 = 2832 ck3 = 2833 } # Rugia -> SLUPSK, LEBNO, WLADYSLAWOWO, SOPOT + link = { autogenerated = yes imp = 4756 ck3 = 2826 ck3 = 2828 } # Eughum -> CAMMIN, KOSZALIN + link = { autogenerated = yes imp = 4752 ck3 = 2825 ck3 = 2836 } # Viadrus -> STARGARD, LOBEZ + link = { autogenerated = yes imp = 4751 ck3 = 2824 ck3 = 3184 } # Rhugium -> KOLOBRZEG, DRAMBERG + link = { autogenerated = yes imp = 3906 ck3 = 2823 ck3 = 3160 } # Galindia -> SZCZECIN, PRENZLAU + link = { autogenerated = yes imp = 3904 ck3 = 2822 } # Sidenia -> UCRAMUND + link = { autogenerated = yes imp = 3905 ck3 = 2820 ck3 = 2821 } # Helveconia Pharodeniorum -> NEUBRANDENBURG, NEUSTRELITZ + link = { autogenerated = yes imp = 3903 ck3 = 2817 ck3 = 2818 } # Sciria -> WOLGAST, SWINOUJSCIE + link = { autogenerated = yes imp = 3893 ck3 = 2815 } # Avarpi -> KLENOW + link = { autogenerated = yes imp = 3907 ck3 = 2814 } # Nuithonia -> HAVELBERG + link = { autogenerated = yes imp = 3900 ck3 = 2813 } # Bunitium -> PARCHIM + link = { autogenerated = yes imp = 3901 ck3 = 2812 ck3 = 2819 } # Maryanus -> WERLE, GUSTROW + link = { autogenerated = yes imp = 3899 ck3 = 2811 } # Lemovia -> RUGEN + link = { autogenerated = yes imp = 3898 ck3 = 2810 } # Pharodenia -> STRALSUND + link = { autogenerated = yes imp = 3897 ck3 = 2809 } # Virunia -> ROSTOCK + link = { autogenerated = yes imp = 3892 ck3 = 2808 } # Alisus -> SCHWERIN + link = { autogenerated = yes imp = 3896 ck3 = 2807 } # Ruticlia -> MECKLENBURG + link = { autogenerated = yes imp = 3891 ck3 = 2806 } # Laciburaium -> RATZEBURG + link = { autogenerated = yes imp = 3895 imp = 3888 ck3 = 2805 } # Suardonia, Leuphana -> AHRENSBURG + link = { autogenerated = yes imp = 3858 ck3 = 2804 } # Marionis -> LUBECK + link = { autogenerated = yes imp = 3890 ck3 = 2803 } # Chaucia -> BUXTEHUDE + link = { autogenerated = yes imp = 3889 ck3 = 2802 } # Treva -> HAMBURG + link = { autogenerated = yes imp = 3860 ck3 = 2801 } # Anglia Meridionalis -> KIEL + link = { autogenerated = yes imp = 3859 ck3 = 2800 } # Sardonia -> FEMERA + link = { autogenerated = yes imp = 2190 ck3 = 28 ck3 = 32 } # Eblana -> DUBLIN, DROGHEDA + link = { autogenerated = yes imp = 3857 imp = 3861 ck3 = 2799 } # Charudiana, Anglia Centralis -> NEUMUNSTER + link = { autogenerated = yes imp = 3855 ck3 = 2798 } # Mariones -> ITZEHOE + link = { autogenerated = yes imp = 3856 ck3 = 2797 } # Charudia -> DITHMARSCHEN + link = { autogenerated = yes imp = 3962 ck3 = 2794 ck3 = 2903 } # Idistavisus -> VERDEN, WALSRODE + link = { autogenerated = yes imp = 3837 ck3 = 2791 ck3 = 2792 ck3 = 2795 ck3 = 2796 } # Saxonnia -> BEDERKESA, CUXHAVEN, STADE, ZEVEN + link = { autogenerated = yes imp = 3616 ck3 = 2789 } # Curia -> VARES + link = { autogenerated = yes imp = 3739 ck3 = 2785 } # Vemania -> MEMMINGEN + link = { autogenerated = yes imp = 3638 ck3 = 2784 } # Cambodunum -> KAUFBEUREN + link = { autogenerated = yes imp = 3637 ck3 = 2783 ck3 = 2786 ck3 = 2782 } # Vernania -> KEMPTEN, RAVENSBURG, SCHONGAU + link = { autogenerated = yes imp = 3640 ck3 = 2780 ck3 = 2946 } # Damasia -> LECHRAIN, AHEIM + link = { autogenerated = yes imp = 3748 imp = 3747 ck3 = 2779 } # Rostrum Nemaviae, Navoa -> FRIEDBERG + link = { autogenerated = yes imp = 3750 ck3 = 2778 } # Rapis -> AUGSBURG + link = { autogenerated = yes imp = 3775 ck3 = 2777 } # Summuntorium -> BURGAU + link = { autogenerated = yes imp = 3740 ck3 = 2776 } # Cassiliacum -> MARSTETTEN + link = { autogenerated = yes imp = 3741 ck3 = 2775 } # Caelius Mons -> KIRCHBERG + link = { autogenerated = yes imp = 3746 ck3 = 2773 ck3 = 2774 } # Raetia Orientalis -> GRUNINGEN, BERGE + link = { autogenerated = yes imp = 3800 ck3 = 2772 ck3 = 2887 } # Sedusia -> LOWENSTEIN, HALL + link = { autogenerated = yes imp = 3770 ck3 = 2770 ck3 = 2771 } # Ad Lunam -> HELFENSTEIN, TECK + link = { autogenerated = yes imp = 3771 ck3 = 2769 } # Aquileia Germanica -> HELLENENSTEIN + link = { autogenerated = yes imp = 3742 ck3 = 2768 } # Viana -> ULM + link = { autogenerated = yes imp = 3745 ck3 = 2767 } # Raetia Occidentalis -> SIGMARINGEN + link = { autogenerated = yes imp = 3743 ck3 = 2765 ck3 = 2766 } # Riusiava -> BEUTLINGEN, SCHELKLINGEN + link = { autogenerated = yes imp = 3732 ck3 = 2762 } # Tasgetium -> NELLENBURG + link = { autogenerated = yes imp = 3635 imp = 3639 ck3 = 2761 } # Constantia, Arbor Felix -> HEILIGENBERG + link = { autogenerated = yes imp = 3744 ck3 = 2759 ck3 = 2763 ck3 = 2764 } # Bragodurum -> HOHENBERG, ZOLLERN, VEHRINGEN + link = { autogenerated = yes imp = 3731 ck3 = 2757 ck3 = 2758 ck3 = 2760 } # Brigobannis -> FURSTENBERG, LUPFEN, CLETTGAU + link = { autogenerated = yes imp = 3733 ck3 = 2755 ck3 = 2756 } # Arae Flaviae -> SULZ, ROTTWEIL + link = { autogenerated = yes imp = 3020 ck3 = 2753 } # Helvetum -> GEROLDSECK + link = { autogenerated = yes imp = 3022 ck3 = 2752 ck3 = 2751 } # Tarodunon -> OFFENBURG, FREIBURG + link = { autogenerated = yes imp = 3012 ck3 = 2750 } # Rauracia -> SANKT BLASIEN + link = { autogenerated = yes imp = 3734 ck3 = 2749 } # Sumelocenna -> TUBINGEN + link = { autogenerated = yes imp = 3736 ck3 = 2748 } # Grinario -> WIRTEMBERG + link = { autogenerated = yes imp = 3025 ck3 = 2746 } # Aurelia Aquensis -> BADEN + link = { autogenerated = yes imp = 3735 ck3 = 2745 ck3 = 2747 } # Portus -> VAIHINGEN, CALW + link = { autogenerated = yes imp = 3738 ck3 = 2743 } # Vicus Alsinensium -> HEILBRONN + link = { autogenerated = yes imp = 7732 ck3 = 2741 } # Vicus Augustanus -> RUSSELSHEIM + link = { autogenerated = yes imp = 3804 ck3 = 2738 ck3 = 2739 ck3 = 2872 } # Hermunduria -> MOSBACH, DURNE, WEINSBERG + link = { autogenerated = yes imp = 3737 ck3 = 2737 } # Vicus Nediensis -> ERBACH + link = { autogenerated = yes imp = 3702 ck3 = 2742 } # Civitas Auderiensium -> SELIGENSTADT + link = { autogenerated = yes imp = 3055 ck3 = 2735 ck3 = 2736 } # Lopodunum -> WEINHEIM, BESENSHEIM + link = { autogenerated = yes imp = 3052 ck3 = 2733 ck3 = 2744 } # Saletio -> HEIDELBERG, HOCKENHEIM + link = { autogenerated = yes imp = 3054 imp = 3053 ck3 = 2732 } # Tabernae, Concordia -> SPEYER + link = { autogenerated = yes imp = 3056 ck3 = 2731 } # Borbetomagus -> WORMS + link = { autogenerated = yes imp = 3693 ck3 = 2730 } # Mosellia -> PIRMASENS + link = { autogenerated = yes imp = 3697 ck3 = 2727 ck3 = 2728 ck3 = 2729 } # Rouphiniana -> ROCKHAUSEN, LETNINGEN, KAISERSLAUTERN + link = { autogenerated = yes imp = 3694 ck3 = 2726 } # Leucia -> ZWEIBRUCKEN + link = { autogenerated = yes imp = 3695 ck3 = 2725 } # Mosellia Minor -> BITSCH + link = { autogenerated = yes imp = 3023 ck3 = 2723 ck3 = 2724 } # Brocomagus -> LICHTBERG, WEISSENBURG + link = { autogenerated = yes imp = 3021 ck3 = 2722 } # Argentorate -> HAGUENAU + link = { autogenerated = yes imp = 3024 ck3 = 2721 } # Altitona -> STRASSBURG + link = { autogenerated = yes imp = 3019 ck3 = 2719 ck3 = 2717 } # Argentovaria -> SELESTAT, COLMAR + link = { autogenerated = yes imp = 3015 ck3 = 2715 } # Aquae Borbonis -> VAUDEMONT + link = { autogenerated = yes imp = 3017 ck3 = 2710 ck3 = 2712 } # Decem Pagi -> PUTTLINGEN, FINSTINGEN + link = { autogenerated = yes imp = 2499 ck3 = 2709 ck3 = 2711 } # Scarponna -> NANCY, FAULQUEMONT + link = { autogenerated = yes imp = 2454 ck3 = 2708 } # Divodurum -> METZ + link = { autogenerated = yes imp = 3698 imp = 3725 ck3 = 2707 } # Altaia, Dumnissus -> KREUSNACH + link = { autogenerated = yes imp = 3001 ck3 = 2706 } # Castrum Vabrense -> BRIEY + link = { autogenerated = yes imp = 3692 ck3 = 2704 ck3 = 2705 } # Mediomatricia -> SAARBRUCKEN, FORBACH + link = { autogenerated = yes imp = 3696 ck3 = 2701 ck3 = 2703 ck3 = 779 } # Cruciniacum -> VELDENZ, WADERN, German Mountains 6 + link = { autogenerated = yes imp = 3690 ck3 = 2700 } # Treveria -> KONZ + link = { autogenerated = yes imp = 2168 ck3 = 27 } # Caucia -> CAVAN + link = { autogenerated = yes imp = 3689 ck3 = 2699 } # Andethanna -> VIANDEN + link = { autogenerated = yes imp = 3691 ck3 = 2698 } # Vicus Contiomagus -> SAARBURG + link = { autogenerated = yes imp = 3701 ck3 = 2694 } # Mogontiacum -> MAINZ + link = { autogenerated = yes imp = 3699 ck3 = 2692 ck3 = 2693 ck3 = 2854 } # Aquae Mattiacorum -> KATZENELNBOGEN, WIESBADEN, LIMBURG + link = { autogenerated = yes imp = 3788 ck3 = 2690 ck3 = 2691 ck3 = 778 } # Lacobardia -> WIED, ISENBURG, German Mountains 5 + link = { autogenerated = yes imp = 3683 ck3 = 2687 } # Vervigium -> SAINT-HUBERT + link = { autogenerated = yes imp = 3728 ck3 = 2684 } # Icorigium -> PRUM + link = { autogenerated = yes imp = 3791 ck3 = 2681 ck3 = 2849 ck3 = 777 } # Chattuaria -> BILSTEIN, WITTENSTEIN, German Mountains 4 + link = { autogenerated = yes imp = 3792 ck3 = 2680 } # Sicambria -> ARNSBERG + link = { autogenerated = yes imp = 3790 ck3 = 2679 } # Bacenis -> MARK + link = { autogenerated = yes imp = 3787 ck3 = 2676 ck3 = 2688 ck3 = 2689 } # Tenctheria -> HUKESWAG, SIEGBURG, SAYN + link = { autogenerated = yes imp = 3786 ck3 = 2673 ck3 = 2674 } # Arbalo -> DORTMUND, SOEST + link = { autogenerated = yes imp = 3784 ck3 = 2670 ck3 = 2671 } # Alesia Germanica -> MUNSTER, WARENDORF + link = { autogenerated = yes imp = 32 ck3 = 2669 ck3 = 2607 } # Bovianum -> ALIFE, ISERNIA + link = { autogenerated = yes imp = 3595 ck3 = 2666 ck3 = 8765 } # Ateste -> MONTAGNANA, Este + link = { autogenerated = yes imp = 3497 imp = 3496 ck3 = 2665 } # Carbia, Gurulis -> ALGHERO + link = { autogenerated = yes imp = 3501 imp = 3502 imp = 5055 ck3 = 2663 } # Luguido, Lesa, IMPASSIBLE TERRAIN 055 -> ARDARA + link = { autogenerated = yes imp = 3500 ck3 = 2662 } # Libisonis -> SASSARI + link = { autogenerated = yes imp = 3495 imp = 3498 ck3 = 2661 } # Hydata, Makopsis -> ISILI + link = { autogenerated = yes imp = 3491 imp = 3482 ck3 = 2660 } # Lacon, Samas -> SAMASSI + link = { autogenerated = yes imp = 3492 imp = 3493 imp = 3494 ck3 = 2659 } # Othoca, Tharros, Sanaphar -> ORISTANO + link = { autogenerated = yes imp = 3506 imp = 3504 imp = 3505 ck3 = 2658 } # Longones, Phausiane, Tibula -> OLBIA + link = { autogenerated = yes imp = 3503 imp = 3489 ck3 = 2657 } # Thorpe, Kares -> GALTELLI + link = { autogenerated = yes imp = 3488 imp = 3487 ck3 = 2656 } # Sulki Tyrsen, Tyrsenia -> TORTOLI + link = { autogenerated = yes imp = 3486 ck3 = 2655 } # Sarcapos -> CARBONARA + link = { autogenerated = yes imp = 3481 imp = 3485 ck3 = 2654 } # Sulcis, Gurgua -> IGLESIAS + link = { autogenerated = yes imp = 3483 imp = 3484 imp = 3490 ck3 = 2653 } # Nura, Karali, Serdan -> CAGLIARI + link = { autogenerated = yes imp = 3508 ck3 = 2652 } # Phikaria -> BONIFACIO + link = { autogenerated = yes imp = 3507 ck3 = 2651 } # Rhoubra -> VECCHIO + link = { autogenerated = yes imp = 3515 imp = 3514 imp = 3516 ck3 = 2648 } # Aleria, Ouagon, Sermigion -> CORTE + link = { autogenerated = yes imp = 3513 imp = 3512 ck3 = 2647 } # Kanelate, Rhopikon -> BASTIA + link = { autogenerated = yes imp = 1471 ck3 = 2646 } # Melita -> MALTA + link = { autogenerated = yes imp = 90 ck3 = 2645 } # Hippana -> CALATAFIMI + link = { autogenerated = yes imp = 91 imp = 7843 ck3 = 2644 } # Heraclea Minoa, Adranon -> MAZARA + link = { autogenerated = yes imp = 83 imp = 7840 ck3 = 2643 } # Leontini, Menae -> LENTINI + link = { autogenerated = yes imp = 85 ck3 = 2642 } # Gela -> CALTAGIRONE + link = { autogenerated = yes imp = 88 ck3 = 2641 } # Murgantia -> CALTANISETTA + link = { autogenerated = yes imp = 89 imp = 7839 imp = 7841 imp = 5149 ck3 = 2640 } # Henna, Capitium, Myttistraton, IMPASSIBLE TERRAIN 149 -> CASTROGIOVANNI + link = { autogenerated = yes imp = 7838 imp = 82 imp = 5000 ck3 = 2639 } # Centuripae, Catana, Aetna Volcano -> CATANIA + link = { autogenerated = yes imp = 101 imp = 7837 imp = 84 imp = 87 imp = 5148 ck3 = 2638 } # Camarina, Megara, Syracusae, Acrae, IMPASSIBLE TERRAIN 148 -> SYRACUSE + link = { autogenerated = yes imp = 86 ck3 = 2637 } # Acragas -> GIRGENTI + link = { autogenerated = yes imp = 94 imp = 92 imp = 93 imp = 95 ck3 = 2636 } # Lilybaeum, Egesta, Selinus, Eryx -> TRAPANI + link = { autogenerated = yes imp = 7842 imp = 96 imp = 97 ck3 = 2635 } # Soluntum, Panorumus, Thermai -> PALERMO + link = { autogenerated = yes imp = 100 imp = 98 imp = 5150 ck3 = 2634 } # Calacte, Cephaloedium, IMPASSIBLE TERRAIN 150 -> CEFALU + link = { autogenerated = yes imp = 80 imp = 1472 imp = 81 imp = 99 imp = 5147 imp = 7861 ck3 = 2633 } # Messana, Liparae, Tauromenium, Tyndaris, IMPASSIBLE TERRAIN 147, Strongyle Volcano -> MESSINA + link = { autogenerated = yes imp = 71 imp = 53 ck3 = 2632 } # Hostiliusanus, Grumentum -> STIGLIANO + link = { autogenerated = yes imp = 54 imp = 61 imp = 5004 ck3 = 2631 } # Heraclea, Siris, Mons Pullinus -> CAMARDA + link = { autogenerated = yes imp = 79 imp = 52 imp = 5003 ck3 = 2629 } # Petelia, Thurii, Sila -> ROSSANO + link = { autogenerated = yes imp = 77 ck3 = 2628 } # Consentia -> COSENZA + link = { autogenerated = yes imp = 72 imp = 73 imp = 5001 ck3 = 2627 } # Rhegium, Locri, Aspromons -> REGGIO + link = { autogenerated = yes imp = 74 imp = 76 imp = 5002 ck3 = 2626 } # Stylacium, Temesa, Serrae -> SQUILLUCE + link = { autogenerated = yes imp = 78 ck3 = 2625 ck3 = 8753 } # Croton -> COTRONE, Catanzaro + link = { autogenerated = yes imp = 55 imp = 70 ck3 = 2624 } # Metapontum, Silvium -> MATERA + link = { autogenerated = yes imp = 66 imp = 67 imp = 68 ck3 = 2623 } # Barium, Gnatia, Turum -> BARI + link = { autogenerated = yes imp = 57 imp = 65 ck3 = 2622 } # Brundisium, Lupiae -> BRINDISI + link = { autogenerated = yes imp = 56 ck3 = 2621 } # Tarentum -> TARANTO + link = { autogenerated = yes imp = 64 imp = 63 ck3 = 2620 } # Hydruntum, Callipolis -> OLRANTO + link = { autogenerated = yes imp = 69 imp = 58 ck3 = 2619 } # Natiolum, Barduli -> TRANI + link = { autogenerated = yes imp = 42 ck3 = 2618 } # Venusia -> VENOSA + link = { autogenerated = yes imp = 60 ck3 = 2617 } # Bantia -> ACERENZA + link = { autogenerated = yes imp = 46 imp = 47 ck3 = 2616 } # Potentia, Acerronia -> POTENZA + link = { autogenerated = yes imp = 1718 imp = 43 imp = 5005 ck3 = 2615 } # Aeclanum, Compsa, IMPASSIBLE TERRAIN 005 -> MELFI + link = { autogenerated = yes imp = 39 imp = 37 imp = 38 imp = 45 ck3 = 2614 } # Canusium, Luceria, Sipontum, Ausculum -> SIPONTO + link = { autogenerated = yes imp = 13 ck3 = 2613 } # Blanda -> MARATEA + link = { autogenerated = yes imp = 11 ck3 = 2612 } # Paestum -> SALERNO + link = { autogenerated = yes imp = 10 imp = 9 imp = 1716 ck3 = 2611 } # Salerna, Pompeii, Abellinum -> AMALFI + link = { autogenerated = yes imp = 36 imp = 49 ck3 = 2610 } # Teanum Apulum, Gerumum -> LUCERA + link = { autogenerated = yes imp = 41 ck3 = 2609 } # Beneventum -> BENEVENTO + link = { autogenerated = yes imp = 7 imp = 1713 imp = 7733 ck3 = 2608 } # Neapolis, Nuceria, Vesuvius Volcano -> NAPOLI + link = { autogenerated = yes imp = 6 imp = 5006 ck3 = 2606 } # Capua, IMPASSIBLE TERRAIN 006 -> CAPUA + link = { autogenerated = yes imp = 48 imp = 35 ck3 = 2605 } # Terventum, Buca -> LARINO + link = { autogenerated = yes imp = 29 ck3 = 2604 } # Histonium -> LANCIANO + link = { autogenerated = yes imp = 106 imp = 5010 ck3 = 2603 } # Aternum, IMPASSIBLE TERRAIN 010 -> CLUIELI + link = { autogenerated = yes imp = 31 imp = 1712 imp = 30 imp = 5008 ck3 = 2602 } # Venafrum, Antinum, Aufidena, IMPASSIBLE TERRAIN 008 -> CASSINO + link = { autogenerated = yes imp = 27 imp = 24 imp = 5011 ck3 = 2600 } # Fucens, Peltuinum, IMPASSIBLE TERRAIN 011 -> AVEZZANO + link = { autogenerated = yes imp = 2196 ck3 = 26 } # Eblania Occidentalis -> LONGFORD + link = { autogenerated = yes imp = 111 ck3 = 2598 } # Picenum -> FERMO + link = { autogenerated = yes imp = 109 ck3 = 2597 } # Asculum -> ASCOLI PICENO + link = { autogenerated = yes imp = 108 ck3 = 2596 } # Matrinum -> TERAMO + link = { autogenerated = yes imp = 107 ck3 = 2595 } # Interamnia -> ATRI + link = { autogenerated = yes imp = 117 ck3 = 2594 ck3 = 2599 } # Ancona -> ANCONA, MACERATA + link = { autogenerated = yes imp = 5 ck3 = 2592 ck3 = 2593 } # Fundi -> TERRACINA, GAETA + link = { autogenerated = yes imp = 25 imp = 26 imp = 5007 ck3 = 2591 } # Norba, Fregellae, IMPASSIBLE TERRAIN 007 -> SEGNI + link = { autogenerated = yes imp = 4 ck3 = 2590 } # Circeii -> VELLETRI + link = { autogenerated = yes imp = 19 imp = 2 ck3 = 2589 } # Carsioli, Tibur -> TIVOLI + link = { autogenerated = yes imp = 105 ck3 = 2588 } # Trebula -> RIETI + link = { autogenerated = yes imp = 110 imp = 118 ck3 = 2587 } # Septempeda, Cingulum -> CAMERINO + link = { autogenerated = yes imp = 23 ck3 = 2586 ck3 = 2585 } # Narnia -> TERNI, SPOLETO + link = { autogenerated = yes imp = 122 imp = 5017 ck3 = 2583 } # Urbinum, IMPASSIBLE TERRAIN 017 -> CAGLI + link = { autogenerated = yes imp = 123 ck3 = 2582 ck3 = 2584 } # Iguvium -> GUBBIO, CIVITAS CASTELLI + link = { autogenerated = yes imp = 119 imp = 103 ck3 = 2581 } # Sentinum, Plestia -> ASSISSI + link = { autogenerated = yes imp = 20 ck3 = 2579 } # Cures -> FARFA + link = { autogenerated = yes imp = 15 ck3 = 2578 } # Ostia -> PALO + link = { autogenerated = yes imp = 16 ck3 = 2577 } # Veii -> VATICAN + link = { autogenerated = yes imp = 3 ck3 = 2576 } # Lavinium -> OSTIA + link = { autogenerated = yes imp = 1 ck3 = 2575 } # Roma -> ROMA + link = { autogenerated = yes imp = 18 ck3 = 2574 } # Nepete -> PATERNO + link = { autogenerated = yes imp = 14 ck3 = 2573 } # Pyrgi -> SUTRI + link = { autogenerated = yes imp = 21 ck3 = 2572 } # Visentium -> VITERBO + link = { autogenerated = yes imp = 17 ck3 = 2571 } # Tarquini -> CIVITAVECCHIA + link = { autogenerated = yes imp = 113 imp = 5016 ck3 = 2570 } # Aurinia, IMPASSIBLE TERRAIN 016 -> SOANA + link = { autogenerated = yes imp = 22 ck3 = 2569 } # Volci -> ORBETELLO + link = { autogenerated = yes imp = 115 ck3 = 2567 } # Rusellae -> MONTALCINO + link = { autogenerated = yes imp = 102 ck3 = 2566 ck3 = 2568 } # Tuder -> PERUGIA, ORIVETO + link = { autogenerated = yes imp = 116 ck3 = 2565 } # Clusium -> CHIUSI + link = { autogenerated = yes imp = 120 ck3 = 2564 } # Perusia -> CORTONA + link = { autogenerated = yes imp = 114 imp = 112 ck3 = 2562 } # Vetulonia, Telamon -> GROSSETO + link = { autogenerated = yes imp = 126 imp = 127 ck3 = 2561 } # Populonia, Ilva -> PIOMBINO + link = { autogenerated = yes imp = 130 imp = 125 ck3 = 2560 } # Sena Iulia, Ad Novas -> SIENA + link = { autogenerated = yes imp = 134 ck3 = 2559 ck3 = 2544 } # Florentia -> IMPRUNETA, VALLOMBROSA + link = { autogenerated = yes imp = 129 imp = 128 ck3 = 2558 } # Volaterrae, Vada Volaterrana -> VOLTERRA + link = { autogenerated = yes imp = 121 ck3 = 2556 } # Sena Gallica -> PESARO + link = { autogenerated = yes imp = 132 ck3 = 2555 } # Sarsina -> URBINO + link = { autogenerated = yes imp = 131 ck3 = 2554 } # Arretium -> AREZZO + link = { autogenerated = yes imp = 148 ck3 = 2552 } # Forum Popilii -> MONTEFELTRO + link = { autogenerated = yes imp = 147 ck3 = 2548 } # Faventia -> FORLI + link = { autogenerated = yes imp = 133 ck3 = 2547 } # Ariminum -> RIMINI + link = { autogenerated = yes imp = 142 ck3 = 2546 } # Ravenna -> RAVENNA + link = { autogenerated = yes imp = 139 ck3 = 2543 ck3 = 2545 ck3 = 2551 } # Pistoriae -> FIRENZE, PRATO, CAMALDOLI + link = { autogenerated = yes imp = 146 ck3 = 2542 ck3 = 2549 ck3 = 2550 } # Bononia -> BOLOGNA, IMOLA, MONTE SOLE + link = { autogenerated = yes imp = 149 ck3 = 2540 ck3 = 2541 } # Mutina -> MODENA, CENTO + link = { autogenerated = yes imp = 6043 ck3 = 254 ck3 = 253 ck3 = 256 } # Arothia -> HAUGELAND, RYFYLKI, SUNNHORDALAND + link = { autogenerated = yes imp = 135 ck3 = 2538 ck3 = 2563 } # Valvata -> PISTORJA, EMPOLI + link = { autogenerated = yes imp = 138 ck3 = 2537 } # Luca -> LUCCA + link = { autogenerated = yes imp = 136 ck3 = 2536 ck3 = 2557 } # Pisae -> PISA, LIVORNO + link = { autogenerated = yes imp = 151 ck3 = 2534 ck3 = 2535 } # Regium Lepidum -> REGGIO, CANOSSA + link = { autogenerated = yes imp = 152 imp = 3587 ck3 = 2533 } # Parma, Brixellum -> BRESCELLO + link = { autogenerated = yes imp = 153 ck3 = 2532 } # Forum Novum -> PARMA + link = { autogenerated = yes imp = 141 imp = 154 imp = 137 ck3 = 2531 } # Portus Veneris, Rubra, Luna -> LUNA + link = { autogenerated = yes imp = 3591 imp = 3588 ck3 = 2530 } # Vicus Varianus, Colicaria -> GUASTALLA + link = { autogenerated = yes imp = 144 ck3 = 2528 } # Spina -> COMACCHIO + link = { autogenerated = yes imp = 150 ck3 = 2527 } # Vicus Aventia -> FERRARA + link = { autogenerated = yes imp = 145 ck3 = 2526 } # Corniculani -> POMPOSA + link = { autogenerated = yes imp = 3597 ck3 = 2525 } # Anneianum -> ROVIGO + link = { autogenerated = yes imp = 3593 ck3 = 2524 } # Hatria -> ADRIA + link = { autogenerated = yes imp = 4021 ck3 = 2522 } # Flanona -> VIKLA + link = { autogenerated = yes imp = 4034 ck3 = 2521 } # Apsaros -> CHERSO + link = { autogenerated = yes imp = 4022 ck3 = 2520 } # Piquentum -> PAZIN + link = { autogenerated = yes imp = 6042 ck3 = 252 ck3 = 290 } # Eunixia -> JATHARR, HEIANE + link = { autogenerated = yes imp = 4020 imp = 4019 ck3 = 2518 } # Pola, Parentium -> PULA + link = { autogenerated = yes imp = 4026 imp = 3607 imp = 5031 ck3 = 2516 } # Longaticum, Timavos, Histria Mons -> GORIZIA + link = { autogenerated = yes imp = 4018 ck3 = 2514 ck3 = 2519 } # Tergeste -> TRIESTE, PIRAN + link = { autogenerated = yes imp = 3604 ck3 = 2513 } # Reunia -> PORDENONE + link = { autogenerated = yes imp = 3601 ck3 = 2512 } # Portus Liquentiae -> CAORLE + link = { autogenerated = yes imp = 3603 ck3 = 2511 } # Opitergium -> CENETA + link = { autogenerated = yes imp = 6041 ck3 = 251 ck3 = 289 ck3 = 292 } # Aetelrugia -> LISTER, OTTRUNES, ARAK + link = { autogenerated = yes imp = 3596 ck3 = 2509 } # Vicetia -> LONIGO + link = { autogenerated = yes imp = 3605 ck3 = 2508 ck3 = 2510 } # Forum Iulii -> AQUILEIA, UDINE + link = { autogenerated = yes imp = 3606 ck3 = 2507 } # Aquileia -> GRADO + link = { autogenerated = yes imp = 3598 ck3 = 2506 } # Altinum -> MESTRE + link = { autogenerated = yes imp = 3599 ck3 = 2505 } # Tarvisium -> TREVISO + link = { autogenerated = yes imp = 143 ck3 = 2504 } # Brundulum -> CHIOGGIA + link = { autogenerated = yes imp = 3594 ck3 = 2503 ck3 = 8767 } # Patavium -> PADUA, Malamacco + link = { autogenerated = yes imp = 3584 imp = 3589 imp = 3590 ck3 = 2501 } # Verona, Hostilia, Auraei -> VERONA + link = { autogenerated = yes imp = 3600 ck3 = 2500 } # Acelum -> VICENZA + link = { autogenerated = yes imp = 3583 imp = 3585 imp = 3586 ck3 = 2497 } # Ariolica, Bedriacum, Mantua -> MANTUA + link = { autogenerated = yes imp = 3662 ck3 = 2496 ck3 = 2502 } # Bretina -> GARDA, LESSINIA + link = { autogenerated = yes imp = 3581 ck3 = 2494 } # Brixia -> BRESCIA + link = { autogenerated = yes imp = 3580 ck3 = 2492 } # Laus Insubrum -> CREMA + link = { autogenerated = yes imp = 3582 ck3 = 2491 } # Cremona -> CREMONA + link = { autogenerated = yes imp = 6040 ck3 = 249 } # Augandzia -> ARENDALL + link = { autogenerated = yes imp = 3575 ck3 = 2489 } # Placentia -> RONCAGLIA + link = { autogenerated = yes imp = 3552 ck3 = 2485 } # Segesta -> CHIAVARI + link = { autogenerated = yes imp = 3554 imp = 3553 ck3 = 2483 } # Dertona, Libarna -> TORTONA + link = { autogenerated = yes imp = 3578 ck3 = 2482 } # Argentea -> MILAN + link = { autogenerated = yes imp = 3577 ck3 = 2481 } # Forum Licinii -> MONZA + link = { autogenerated = yes imp = 3571 ck3 = 2480 } # Mediolanum -> GALLARATE + link = { autogenerated = yes imp = 6039 ck3 = 248 ck3 = 288 } # Grannia -> TELEMARK, HEDDALI + link = { autogenerated = yes imp = 3570 ck3 = 2479 ck3 = 2477 } # Comum -> VARESE, COMO + link = { autogenerated = yes imp = 3573 ck3 = 2476 } # Lambrum -> LODI + link = { autogenerated = yes imp = 3572 ck3 = 2475 } # Ticinum -> PAVIA + link = { autogenerated = yes imp = 3565 ck3 = 2474 } # Laumellum -> VIGEVANO + link = { autogenerated = yes imp = 3568 ck3 = 2473 } # Victimulae -> BIELLA + link = { autogenerated = yes imp = 3569 ck3 = 2472 } # Sebuinus Vicus -> POMBIA + link = { autogenerated = yes imp = 3566 imp = 3567 ck3 = 2471 } # Novaria, Plumbia -> NOVARA + link = { autogenerated = yes imp = 3562 ck3 = 2470 } # Vercellae -> VERCELLI + link = { autogenerated = yes imp = 3555 ck3 = 2469 } # Forum Fulvii -> ASTI + link = { autogenerated = yes imp = 3556 ck3 = 2468 } # Aquae Statiellae -> ACQUI + link = { autogenerated = yes imp = 3557 ck3 = 2467 } # Crixia -> ALBA + link = { autogenerated = yes imp = 3549 ck3 = 2466 } # Genua -> GENOA + link = { autogenerated = yes imp = 3547 imp = 3550 ck3 = 2465 } # Savo, Coeba -> SAVONA + link = { autogenerated = yes imp = 2386 ck3 = 2464 } # Ambiacum -> LA TREMOUILLE + link = { autogenerated = yes imp = 2416 ck3 = 2463 } # Brivodurum -> SULLY-SUR-LOIRE + link = { autogenerated = yes imp = 2355 ck3 = 2459 } # Vesontio -> ORNANS + link = { autogenerated = yes imp = 2359 ck3 = 2458 } # Matisco -> DOLE + link = { autogenerated = yes imp = 3627 imp = 3626 ck3 = 2457 } # Bodgalio, Antro -> CHAMPAGNOLE + link = { autogenerated = yes imp = 3535 ck3 = 2456 } # Segusio -> CANAVESE + link = { autogenerated = yes imp = 3538 ck3 = 2455 } # Voludnia -> CHAMBERY + link = { autogenerated = yes imp = 3839 ck3 = 2454 } # Visurgis -> VAREL + link = { autogenerated = yes imp = 3833 ck3 = 2453 } # Amastica -> DELFZIJL + link = { autogenerated = yes imp = 3711 ck3 = 2450 } # Blariacum -> GELDERN + link = { autogenerated = yes imp = 3685 ck3 = 2449 } # Orolaunum -> CLERVAUX + link = { autogenerated = yes imp = 1079 ck3 = 2447 } # Ad Vicensi -> LIMOUX + link = { autogenerated = yes imp = 3831 ck3 = 2444 } # Dulgia -> VECHTA + link = { autogenerated = yes imp = 3835 ck3 = 2838 } # Ansibaria -> DIEPHOLZ + link = { autogenerated = yes imp = 3841 ck3 = 2441 ck3 = 2442 ck3 = 2445 } # Chasuaria -> PAPENBURG, TWISTRINGEN, CLOPPENBURG + link = { autogenerated = yes imp = 3830 ck3 = 2440 ck3 = 2443 ck3 = 2841 } # Marsia -> OSNABRUCK, RAVENSBERG, WIEDENBRUCK + link = { autogenerated = yes imp = 3780 ck3 = 2439 } # Teuderium -> MEPPEN + link = { autogenerated = yes imp = 3842 ck3 = 2436 ck3 = 2438 } # Unsingia -> LEER, OLDENBURG + link = { autogenerated = yes imp = 3777 ck3 = 2435 ck3 = 2675 } # Dorsten -> WEZEL, RECKLINGHAUSEN + link = { autogenerated = yes imp = 3783 ck3 = 2434 ck3 = 2672 } # Caesia -> BREDEVOORT, AHLEN + link = { autogenerated = yes imp = 3785 ck3 = 2433 ck3 = 2677 ck3 = 2678 } # Alisutum -> BERGH, ESSEN, HAGEN + link = { autogenerated = yes imp = 3778 ck3 = 2431 ck3 = 2432 } # Mediolanum Belgicum -> ALMELO, BORCULO + link = { autogenerated = yes imp = 3776 ck3 = 2429 } # Carvium -> ZUTPHEN + link = { autogenerated = yes imp = 3850 ck3 = 2425 ck3 = 2427 } # Chamoria -> TIEL, APELDOORN + link = { autogenerated = yes imp = 3781 ck3 = 2423 } # Vidrosia -> OMMEN + link = { autogenerated = yes imp = 3779 ck3 = 2422 ck3 = 2430 } # Salia Chasuaria -> COEVORDEN, BENTHEIM + link = { autogenerated = yes imp = 3851 ck3 = 2421 ck3 = 2426 ck3 = 2428 } # Isala -> ZWOLLE, HARDERWIJK, ARNHEM + link = { autogenerated = yes imp = 3836 ck3 = 2418 ck3 = 2437 } # Amsivaria -> EMDEN, WILHELMSHAVEN + link = { autogenerated = yes imp = 3834 ck3 = 2417 ck3 = 2419 ck3 = 2420 } # Noviliacum -> GRONINGEN, EMMEN, ASSEN + link = { autogenerated = yes imp = 3832 ck3 = 2414 ck3 = 2415 } # Manarmanis -> DOKKUM, APPPINGEDAM + link = { autogenerated = yes imp = 3852 ck3 = 2411 ck3 = 2413 } # Flevum -> HARLINGEN, LEEUWARDEN + link = { autogenerated = yes imp = 3854 ck3 = 2410 ck3 = 2416 ck3 = 2452 } # Tubantia -> STAVEREN, KAMPEN, STEENWIJK + link = { autogenerated = yes imp = 3848 ck3 = 2406 ck3 = 2408 ck3 = 2451 } # Traiectum -> AMSTERDAM, EDAM, AMERSFOORT + link = { autogenerated = yes imp = 3847 ck3 = 2405 ck3 = 2407 ck3 = 2409 ck3 = 2412 } # Baduhenna -> HAARLEM, AALKMAR, MEDEMBLIK, WAADEILANNEN + link = { autogenerated = yes imp = 3846 ck3 = 2403 ck3 = 2404 } # Lugadurum -> ROTTERDAM, DELFT + link = { autogenerated = yes imp = 3849 ck3 = 2402 ck3 = 2424 } # Manaritum -> DORT, UTRECHT + link = { autogenerated = yes imp = 3845 ck3 = 2401 } # Marsacia -> BRIELLE + link = { autogenerated = yes imp = 2202 ck3 = 24 ck3 = 25 } # Nagnatia Orientalis -> DROMAHAIR, BELCOO + link = { autogenerated = yes imp = 2452 ck3 = 2398 ck3 = 2399 ck3 = 2400 } # Seussonia -> COUCY, LAON, ROUCY + link = { autogenerated = yes imp = 3048 imp = 3043 ck3 = 2397 } # Verbinum, Viromanduorum -> MARLE + link = { autogenerated = yes imp = 3051 ck3 = 2394 ck3 = 2396 } # Porricum -> MEZIERES, ROMIGNY + link = { autogenerated = yes imp = 2494 imp = 3049 ck3 = 2393 } # Basillia, Vungovicus -> GRANPRE + link = { autogenerated = yes imp = 2450 ck3 = 2392 } # Durocatalaunum -> CHALONS + link = { autogenerated = yes imp = 2451 ck3 = 2390 ck3 = 2391 } # Durocortorum -> REIMS, RETHEL + link = { autogenerated = yes imp = 2495 ck3 = 2389 } # Tanomia -> SAINT-DIZIER + link = { autogenerated = yes imp = 2496 ck3 = 2388 } # Caturicis -> BAR + link = { autogenerated = yes imp = 3007 ck3 = 2386 } # Grannum -> GRAND + link = { autogenerated = yes imp = 3004 ck3 = 2385 } # Mosa -> Champs + link = { autogenerated = yes imp = 3003 ck3 = 2384 } # Solicia -> NEUFCHATEAU + link = { autogenerated = yes imp = 2428 ck3 = 2382 ck3 = 2383 } # Varcia -> GRAY, GY + link = { autogenerated = yes imp = 2433 ck3 = 2381 } # Benevellum -> CHAUMONT + link = { autogenerated = yes imp = 2429 ck3 = 2380 } # Tilena -> DIJON + link = { autogenerated = yes imp = 2440 imp = 2436 ck3 = 2379 } # Alesia, Divionense -> MONTBARD + link = { autogenerated = yes imp = 2438 imp = 2437 ck3 = 2378 } # Bibracte, Sidoloucum -> MORVAN + link = { autogenerated = yes imp = 2362 ck3 = 2377 } # Castrum Divionense -> CITEAUX + link = { autogenerated = yes imp = 2435 ck3 = 2376 } # Vidubia -> BEAUNE + link = { autogenerated = yes imp = 3005 ck3 = 2375 } # Segeserra -> CLAIRVAUX + link = { autogenerated = yes imp = 2354 ck3 = 2374 } # Andematunnum -> LANGRES + link = { autogenerated = yes imp = 3008 ck3 = 2373 } # Tricassia -> JOINVILLE + link = { autogenerated = yes imp = 3006 ck3 = 2372 } # Corobillium -> BAR-SUR-AUBE + link = { autogenerated = yes imp = 2449 ck3 = 2371 } # Augustobona -> TROYES + link = { autogenerated = yes imp = 2488 ck3 = 2369 ck3 = 2370 } # Eburobriga -> AUBE, BAR-SUR-SEINE + link = { autogenerated = yes imp = 2448 ck3 = 2368 } # Agedincum -> NOGENT + link = { autogenerated = yes imp = 2490 ck3 = 2367 } # Malliacus -> VITRY-EN-PERTHOIS + link = { autogenerated = yes imp = 2487 ck3 = 2366 } # Senonia -> EPERNAY + link = { autogenerated = yes imp = 2489 ck3 = 2365 } # Artiaca -> ROMILLY + link = { autogenerated = yes imp = 2491 ck3 = 2362 } # Mugilonia -> CHATILLON + link = { autogenerated = yes imp = 2492 ck3 = 2360 ck3 = 2361 } # Odomagus -> CREPY, CHATEAU-THIERRY + link = { autogenerated = yes imp = 2447 ck3 = 2358 } # Iatinon -> SENLIS + link = { autogenerated = yes imp = 2484 ck3 = 2356 ck3 = 2359 } # Calagum -> MONTREUIL, MEAUX + link = { autogenerated = yes imp = 2485 ck3 = 2355 ck3 = 2364 } # Riobe -> CRECY, COULOMMIERS + link = { autogenerated = yes imp = 2483 ck3 = 2354 } # Cala -> MELUN + link = { autogenerated = yes imp = 2482 ck3 = 2353 } # Agedincum -> BRAY + link = { autogenerated = yes imp = 2353 ck3 = 2352 } # Autessiodurum -> SENS + link = { autogenerated = yes imp = 2431 ck3 = 2351 } # Vertillium -> TONNERRE + link = { autogenerated = yes imp = 2430 ck3 = 2350 } # Tornodurum -> CHABLIS + link = { autogenerated = yes imp = 2439 ck3 = 2349 } # Aballo -> VEZELAY + link = { autogenerated = yes imp = 2360 ck3 = 2348 } # Cabillonum -> CHALON + link = { autogenerated = yes imp = 2348 ck3 = 2347 } # Augustodunum -> AUTUN + link = { autogenerated = yes imp = 2432 ck3 = 2346 } # Cora Vicus -> AUXERRE + link = { autogenerated = yes imp = 2413 ck3 = 2345 } # Vicus Massava -> DONZY + link = { autogenerated = yes imp = 2434 imp = 2412 ck3 = 2344 } # Cervidunum, Nogeomagus -> POUGUES-LES-EAUX + link = { autogenerated = yes imp = 2367 imp = 2366 ck3 = 2343 } # Decetia, Allsincum -> NEVERS + link = { autogenerated = yes imp = 2480 ck3 = 2342 } # Montargia -> MONTEREAU + link = { autogenerated = yes imp = 2418 imp = 2415 ck3 = 2341 } # Bandritum, Intaranum -> CHATEAU-RENARD + link = { autogenerated = yes imp = 6037 ck3 = 234 ck3 = 8768 ck3 = 232 ck3 = 246 ck3 = 8769 } # Raumariki -> OSLOSYSLAR, Ski, ROMERIKI, DRAFN, Stange + link = { autogenerated = yes imp = 2417 ck3 = 2339 ck3 = 2340 } # Belca -> MONTARGIS, COURTENAY + link = { autogenerated = yes imp = 2350 ck3 = 2338 } # Cenabum -> ORLEANS + link = { autogenerated = yes imp = 2479 ck3 = 2337 } # Ad Fines Galliarum -> NEMOURS + link = { autogenerated = yes imp = 2478 ck3 = 2336 } # Salioclita -> ETAMPES + link = { autogenerated = yes imp = 2481 ck3 = 2335 } # Mellodunum -> MONTLHERY + link = { autogenerated = yes imp = 2476 ck3 = 2334 } # Dortenco -> VERSAILLES + link = { autogenerated = yes imp = 2475 ck3 = 2333 } # Lutetia -> PARIS + link = { autogenerated = yes imp = 2477 ck3 = 2332 } # Diodurum -> MONTFORT + link = { autogenerated = yes imp = 2442 ck3 = 2331 } # Aulercorum -> DREUX + link = { autogenerated = yes imp = 2466 ck3 = 2329 ck3 = 2330 } # Uggate -> EVREUX, VERNON + link = { autogenerated = yes imp = 2221 ck3 = 2326 } # Esuvia Australis -> ARGENTAN + link = { autogenerated = yes imp = 2464 imp = 2461 imp = 2463 ck3 = 2324 } # Ebrovicia, Carnutia Occidentalis, Condate -> MORTAGNE + link = { autogenerated = yes imp = 2460 ck3 = 2323 } # Carnutia Orientalis -> NOGENT-LE-ROTROU + link = { autogenerated = yes imp = 2441 imp = 2462 ck3 = 2322 } # Autricum, Dorocas -> CHARTRES + link = { autogenerated = yes imp = 2458 ck3 = 2321 } # Vindocinium -> CHATEAUDUN + link = { autogenerated = yes imp = 2457 ck3 = 2320 } # Dunense Castrum -> BEAUGENCY + link = { autogenerated = yes imp = 2425 imp = 2424 ck3 = 2319 } # Blesum, Tasciaca -> BLOIS + link = { autogenerated = yes imp = 2408 ck3 = 2317 } # Biturigum -> OLIVET + link = { autogenerated = yes imp = 2406 ck3 = 2316 } # Leprosum -> ROMORANTIN + link = { autogenerated = yes imp = 2407 ck3 = 2315 ck3 = 2318 } # Gabris -> VIERZON, CONTRES + link = { autogenerated = yes imp = 2411 imp = 2347 imp = 2414 ck3 = 2314 } # Segivomicus, Avaricum, Condate Avaricum -> SANCERRE + link = { autogenerated = yes imp = 2368 ck3 = 2313 } # Tincontium -> HERRY + link = { autogenerated = yes imp = 2377 ck3 = 2311 ck3 = 2312 } # Derventum -> ORVAL, BOURGES + link = { autogenerated = yes imp = 2376 ck3 = 2310 } # Aquae Neri -> BOURBON-LARCHEMBAULT + link = { autogenerated = yes imp = 6035 ck3 = 231 ck3 = 285 } # Vinovilothia -> AUSTFOLD, BORGARSYSLAR + link = { autogenerated = yes imp = 2373 ck3 = 2309 } # Ricomagus -> SAINT-POURCAIN + link = { autogenerated = yes imp = 2375 ck3 = 2308 } # Manatum -> MONTLUCON + link = { autogenerated = yes imp = 2374 ck3 = 2307 } # Arthona -> MOULINS + link = { autogenerated = yes imp = 2371 imp = 2372 ck3 = 2306 } # Aquae Calidae, Sitilia -> JILAGNY + link = { autogenerated = yes imp = 2370 ck3 = 2305 } # Transalium -> ROANNE + link = { autogenerated = yes imp = 2369 ck3 = 2303 } # Berberensis -> SEMUR-EN-BRIONNAIS + link = { autogenerated = yes imp = 2365 ck3 = 2302 ck3 = 2304 } # Pocrinnium -> MACON, CLUNY + link = { autogenerated = yes imp = 2364 ck3 = 2301 } # Rodumna -> BEAUJEU + link = { autogenerated = yes imp = 6034 ck3 = 230 } # Tanum -> RANIRIKI + link = { autogenerated = yes imp = 2166 ck3 = 23 } # Gangania -> ATHENRY + link = { autogenerated = yes imp = 2184 ck3 = 8747 } # Gangania Borealis -> Da_Chainoc + link = { autogenerated = yes imp = 2298 imp = 2299 ck3 = 2299 } # Brivas, Biliomagus -> THIERS + link = { autogenerated = yes imp = 2337 ck3 = 2294 } # Argenta -> AURILLAC + link = { autogenerated = yes imp = 6012 ck3 = 229 ck3 = 318 ck3 = 75 } # Konghelle -> BAGAHUS, KUNGAHALLA, ONSALA + link = { autogenerated = yes imp = 1719 ck3 = 2289 ck3 = 2295 } # Avitacum -> CLERMONT-SUR-ALLIER, LA TOUR + link = { autogenerated = yes imp = 2284 ck3 = 2288 } # Gergovia -> MONTEPENSIER + link = { autogenerated = yes imp = 2342 imp = 2344 ck3 = 2287 } # Ubiquum, Durotincum -> AUBUSSON + link = { autogenerated = yes imp = 2343 imp = 2378 imp = 2379 ck3 = 2286 } # Salviacum, Finis Secundus, Accitodunum -> GUERET + link = { autogenerated = yes imp = 2283 ck3 = 2284 ck3 = 2285 } # Augustoritum -> BELLAC, GRANDMONT + link = { autogenerated = yes imp = 2426 ck3 = 2283 } # Navicellis -> VENDOME + link = { autogenerated = yes imp = 2215 imp = 2145 ck3 = 2282 } # Foricum, Dolus -> COMBOURG + link = { autogenerated = yes imp = 2380 imp = 2381 ck3 = 2281 } # Cambonum, Mediolanicum -> BOUSSAC + link = { autogenerated = yes imp = 2382 ck3 = 2280 } # Idunum -> DEOLS + link = { autogenerated = yes imp = 3882 ck3 = 228 } # Reudingia Maior -> MIDDELFART + link = { autogenerated = yes imp = 2346 imp = 2383 ck3 = 2279 } # Argentomagus, Ferruciacum -> CHATEAUROUX + link = { autogenerated = yes imp = 2409 imp = 2410 ck3 = 2278 } # Ernodurum, Exolidunum -> ISSOUDUN + link = { autogenerated = yes imp = 2405 ck3 = 2277 } # Pontiniacum -> VALENCAY + link = { autogenerated = yes imp = 2419 imp = 2384 ck3 = 2276 } # Claudiomagus, Vosagum -> LA HAYE + link = { autogenerated = yes imp = 2422 imp = 2421 ck3 = 2275 } # Onia, Cisomagus -> LOCHES + link = { autogenerated = yes imp = 2395 ck3 = 2274 } # Briggogalus -> TOURS + link = { autogenerated = yes imp = 2423 imp = 2394 ck3 = 2273 } # Severiacus, Caesarodunum -> TOURAINE + link = { autogenerated = yes imp = 2459 imp = 2456 ck3 = 2272 } # Vindinum, Labrinum -> COURCILLON + link = { autogenerated = yes imp = 2219 ck3 = 2271 ck3 = 2325 } # Noviodunum -> SARTHE, ALENCON + link = { autogenerated = yes imp = 2401 ck3 = 2270 } # Noviliacus -> LE MANS + link = { autogenerated = yes imp = 3869 ck3 = 227 } # Cobandia Maior -> TAULOV + link = { autogenerated = yes imp = 2349 ck3 = 2269 } # Vivicum -> LE LUDE + link = { autogenerated = yes imp = 2402 ck3 = 2268 } # Bricca -> LA FLECHE + link = { autogenerated = yes imp = 2400 ck3 = 2267 } # Robrica -> ANGERS + link = { autogenerated = yes imp = 2214 imp = 2216 ck3 = 2266 } # Diablintum, Abricates -> MAYENNE + link = { autogenerated = yes imp = 2217 ck3 = 2265 } # Modulus -> LAVAL + link = { autogenerated = yes imp = 2351 ck3 = 2264 } # Brucironno -> SABLE + link = { autogenerated = yes imp = 2352 ck3 = 2263 } # Iuliomagus -> LUIGNE + link = { autogenerated = yes imp = 2403 imp = 2144 ck3 = 2262 } # Salica, Sipia -> CRAON + link = { autogenerated = yes imp = 2398 ck3 = 2260 ck3 = 2261 } # Segora -> MELAY, SAUMUR + link = { autogenerated = yes imp = 3871 ck3 = 226 } # Eudosia Cimbrica -> DJURSLAND + link = { autogenerated = yes imp = 2227 ck3 = 2259 } # Vertavia -> MAULEVRIER + link = { autogenerated = yes imp = 2228 ck3 = 2258 } # Pictonia -> BRESSUIRE + link = { autogenerated = yes imp = 2397 imp = 2399 ck3 = 2257 } # Vultaconum, Toarcius -> THOUARS + link = { autogenerated = yes imp = 2396 ck3 = 2256 } # Clinno -> LOUDUN + link = { autogenerated = yes imp = 2393 ck3 = 2255 } # Voglada -> PARTHENAY + link = { autogenerated = yes imp = 2391 imp = 2390 ck3 = 2254 } # Brigiosum, Rauranum -> NIORT + link = { autogenerated = yes imp = 2385 imp = 2388 imp = 2420 ck3 = 2253 } # Andecamulum, Comodoliacus, Iciodoro -> CHATELLERAULT + link = { autogenerated = yes imp = 2345 imp = 2387 ck3 = 2252 } # Limonum, Exidualum -> POITIERS + link = { autogenerated = yes imp = 3000 ck3 = 2250 } # Sermanicomago -> MELLE + link = { autogenerated = yes imp = 3866 ck3 = 225 ck3 = 59 ck3 = 83 } # Sigulonia Australis -> TARM, VORBASSE, VARDE + link = { autogenerated = yes imp = 2392 imp = 2389 ck3 = 2249 } # Aunnedonacum, Cassinomagum -> LUSIGNAN + link = { autogenerated = yes imp = 2404 imp = 2341 ck3 = 2248 } # Sisciacum, Curisiacum -> LIMOGES + link = { autogenerated = yes imp = 2340 imp = 1721 imp = 3307 ck3 = 2247 } # Tiniacum, Fines, Confluenta -> VENTADOUR + link = { autogenerated = yes imp = 2330 imp = 2331 ck3 = 2246 } # Userca, Gemilliacum -> CHALUS + link = { autogenerated = yes imp = 2334 ck3 = 2245 } # Campaniacum -> SAINT-JUNIEN + link = { autogenerated = yes imp = 2290 imp = 2291 ck3 = 2244 } # Iculisma, Sarrum -> ANGOULEME + link = { autogenerated = yes imp = 2230 ck3 = 2243 } # Mediolanum Santonum -> TAILLEBOURG + link = { autogenerated = yes imp = 2231 ck3 = 2242 ck3 = 2462 } # Lamnum -> SAINTES, COGNAC + link = { autogenerated = yes imp = 2328 ck3 = 2240 } # Briva -> TURENNE + link = { autogenerated = yes imp = 3877 ck3 = 224 } # Cimbria Australis -> RANDROS + link = { autogenerated = yes imp = 2332 ck3 = 2239 } # Negiacum -> NONTRON + link = { autogenerated = yes imp = 2329 ck3 = 2238 } # Nonniacus -> MONTIGNAC + link = { autogenerated = yes imp = 2282 imp = 2287 ck3 = 2237 } # Vesunna, Corterate -> PERIGUEUX + link = { autogenerated = yes imp = 2292 imp = 2327 ck3 = 2236 } # Pompegiaco, Acuciago -> BERGERAC + link = { autogenerated = yes imp = 2294 ck3 = 2235 } # Travectus -> AGENAIS + link = { autogenerated = yes imp = 2339 ck3 = 2234 ck3 = 2293 } # Uxellodunum -> FIGEAC, CARLAT + link = { autogenerated = yes imp = 2338 imp = 2326 imp = 2335 ck3 = 2233 } # Eustriacum, Decaniacum, Marcelliago -> CAHORS + link = { autogenerated = yes imp = 2270 imp = 2293 ck3 = 2232 } # Aginnum, Excisum -> AGEN + link = { autogenerated = yes imp = 2269 ck3 = 2231 } # Divona -> QUERCY + link = { autogenerated = yes imp = 2280 ck3 = 2230 } # Marinavas -> MONTAUBAN + link = { autogenerated = yes imp = 3867 ck3 = 223 ck3 = 82 } # Sigulonia Borealis -> YCOST, RINGKOBING + link = { autogenerated = yes imp = 2262 ck3 = 2229 } # Segodunum -> LA PEYRADE + link = { autogenerated = yes imp = 2268 ck3 = 2228 } # Carantomagus -> LA SALLE + link = { autogenerated = yes imp = 2295 ck3 = 2222 } # Ad Silanum -> MILAU + link = { autogenerated = yes imp = 2285 ck3 = 2221 ck3 = 2223 ck3 = 2227 } # Gabalum -> MENDE, GEVAUDAN, MARVEJOLS + link = { autogenerated = yes imp = 3872 ck3 = 222 } # Eudosia Centralis -> ORMSTRUP + link = { autogenerated = yes imp = 2297 ck3 = 2218 ck3 = 786 } # Cebennia -> CEVENNES, French Mountains 2 + link = { autogenerated = yes imp = 2311 imp = 2296 imp = 5048 ck3 = 2217 } # Alba Helviorum, Condate Arvernorum, IMPASSIBLE TERRAIN 048 -> ALES + link = { autogenerated = yes imp = 2316 imp = 2315 imp = 2317 ck3 = 2216 } # Staturnae, Briginnum, Ucetia -> USES + link = { autogenerated = yes imp = 2265 ck3 = 2213 ck3 = 2214 } # Tolosa -> CASTELSARRASIN, TOULOUSE + link = { autogenerated = yes imp = 2267 ck3 = 2212 } # Elusio -> CASTELNAUDARY + link = { autogenerated = yes imp = 3874 ck3 = 221 } # Teutonia Minor -> HOLSTEBRO + link = { autogenerated = yes imp = 2253 ck3 = 2209 ck3 = 2210 } # Consoranni -> FOIX, TARASCON + link = { autogenerated = yes imp = 2278 imp = 2279 ck3 = 2208 } # Casinomagus, Sarnali -> BEAUMONT + link = { autogenerated = yes imp = 2266 imp = 2252 ck3 = 2207 } # Aquae Siccae, Lugdunum Convenarum -> MURET + link = { autogenerated = yes imp = 2277 ck3 = 2206 } # Belsinum -> ASTARAC + link = { autogenerated = yes imp = 2271 ck3 = 2204 } # Lactora -> LECTOURE + link = { autogenerated = yes imp = 2275 ck3 = 2203 ck3 = 2205 } # Elimberrum -> FESENSAC, LOMAGNE + link = { autogenerated = yes imp = 2249 ck3 = 2202 } # Tarba -> PARDIAC + link = { autogenerated = yes imp = 2250 ck3 = 2201 } # Atura -> ARMAGNAC + link = { autogenerated = yes imp = 2281 imp = 2273 ck3 = 2200 } # Ussubium, Eleusa -> GABARDAN + link = { autogenerated = yes imp = 3864 ck3 = 220 ck3 = 60 } # Avionia Maior -> STRAND, RIBE + link = { autogenerated = yes imp = 2198 imp = 2171 ck3 = 22 } # Autenia Orientalis, Nagnatia Occidentalis -> SLIGO + link = { autogenerated = yes imp = 2274 ck3 = 2199 } # Saviniago -> MARSAN + link = { autogenerated = yes imp = 2272 imp = 2288 ck3 = 2198 } # Cossium, Praemiacum -> BAZADAIS + link = { autogenerated = yes imp = 2245 ck3 = 2197 } # Stomatas -> LANGON + link = { autogenerated = yes imp = 2241 ck3 = 2196 } # Telonnum -> ALBRET + link = { autogenerated = yes imp = 2242 ck3 = 2195 } # Coequosa -> TARTAS + link = { autogenerated = yes imp = 2243 imp = 2247 ck3 = 2194 } # Aquae Tarbellicae, Bene Harnum -> TURSAN + link = { autogenerated = yes imp = 2246 ck3 = 2193 } # Iluro -> PAU + link = { autogenerated = yes imp = 3013 imp = 3014 ck3 = 2192 } # Magetobria, Portus Albucinus -> LURE + link = { autogenerated = yes imp = 2363 ck3 = 2191 } # Pons Ariola -> QUINGEY + link = { autogenerated = yes imp = 2444 ck3 = 2190 ck3 = 2357 } # Catalacus -> BEAUMONT, SAINT-DENIS + link = { autogenerated = yes imp = 3032 imp = 2445 ck3 = 2189 } # Curmiliaca, Augustomagus -> CLERMONT + link = { autogenerated = yes imp = 2493 ck3 = 2188 } # Isara -> NOYON + link = { autogenerated = yes imp = 3044 ck3 = 2187 } # Sefulae -> SAINT-QUENTIN + link = { autogenerated = yes imp = 3038 ck3 = 2186 } # Nemetocenna -> PERONNE + link = { autogenerated = yes imp = 3031 ck3 = 2185 } # Teucera -> CORBIE + link = { autogenerated = yes imp = 3035 ck3 = 2184 } # Samarobriva -> AMIENS + link = { autogenerated = yes imp = 2446 ck3 = 2183 } # Caesaromagus -> BEAUVAIS + link = { autogenerated = yes imp = 3034 ck3 = 2182 } # Caletia Minor -> AUMALE + link = { autogenerated = yes imp = 2472 imp = 2473 imp = 2474 ck3 = 2181 } # Briva Isarae, Avalocum, Nemetodurum -> MANTES + link = { autogenerated = yes imp = 2469 ck3 = 2180 } # Ritumagus -> GISORS + link = { autogenerated = yes imp = 2471 ck3 = 2178 } # Galetia Orientalis -> EU + link = { autogenerated = yes imp = 2470 ck3 = 2177 } # Galetia Occidentalis -> DIEPPE + link = { autogenerated = yes imp = 2468 ck3 = 2176 } # Caracotinum -> FECAMP + link = { autogenerated = yes imp = 2467 ck3 = 2175 } # Pentale -> HARCOURT + link = { autogenerated = yes imp = 2223 ck3 = 2174 } # Esta -> LISIEUX + link = { autogenerated = yes imp = 2222 ck3 = 2173 ck3 = 2327 } # Lexoviorum -> FALAISE, SEES + link = { autogenerated = yes imp = 2218 ck3 = 2172 } # Aregenua -> CAEN + link = { autogenerated = yes imp = 2220 ck3 = 2171 } # Esuvia Borealis -> MORTAIN + link = { autogenerated = yes imp = 2138 imp = 2139 ck3 = 2170 } # Augustodurum, Cerisiacum -> BAYEUX + link = { autogenerated = yes imp = 2134 ck3 = 2169 } # Coriallum -> CHERBOURG + link = { autogenerated = yes imp = 2137 imp = 2135 imp = 2136 imp = 5431 ck3 = 2168 } # Cosedia, Aluna, Crouciaconnum, Andion -> COUTANCES + link = { autogenerated = yes imp = 2140 ck3 = 2167 } # Ingena -> AVRANCHES + link = { autogenerated = yes imp = 2209 imp = 3308 ck3 = 2166 } # Sipia Occidentalis, Conbaristum -> CHATEAUBRIANT + link = { autogenerated = yes imp = 2143 ck3 = 2165 } # Condate Redonum -> RENNES + link = { autogenerated = yes imp = 2141 imp = 2142 ck3 = 2164 } # Reginca, Fanum Martis -> SAINT-MALO + link = { autogenerated = yes imp = 2146 imp = 2156 ck3 = 2163 } # Matriniaca, Coriosolitum -> PORHOET + link = { autogenerated = yes imp = 2157 ck3 = 2162 } # Osismetum -> SAINT-BRIEUC + link = { autogenerated = yes imp = 2158 ck3 = 2161 } # Tregoritum -> TREGUIER + link = { autogenerated = yes imp = 2149 ck3 = 2160 } # Sulis -> ROHAN + link = { autogenerated = yes imp = 2150 imp = 2159 ck3 = 2159 } # Vorgium, Goelloria -> CORNOUAILLES + link = { autogenerated = yes imp = 2151 imp = 2152 ck3 = 2157 } # Vorganium, Gesoscribate -> BREST + link = { autogenerated = yes imp = 2155 ck3 = 2156 } # Agritore -> QUIMPER + link = { autogenerated = yes imp = 2154 ck3 = 2155 } # Pollicum -> LORIENT + link = { autogenerated = yes imp = 2148 imp = 2147 ck3 = 2154 } # Dariorigum, Duretie -> VANNES + link = { autogenerated = yes imp = 2153 ck3 = 2153 } # Grannona -> GUERANDE + link = { autogenerated = yes imp = 2212 ck3 = 2152 } # Namnetum -> NANTES + link = { autogenerated = yes imp = 2210 imp = 2211 ck3 = 2151 } # Piktonion Akron, Ratiatum -> RAIS + link = { autogenerated = yes imp = 2224 ck3 = 2150 } # Pictavia Borealis -> MONTAIGU + link = { autogenerated = yes imp = 2225 ck3 = 2148 ck3 = 2149 } # Pictavia Australis -> FONTENAY, TALMONT + link = { autogenerated = yes imp = 2226 ck3 = 2147 } # Becciacum -> LA ROCHELLE + link = { autogenerated = yes imp = 2229 ck3 = 2146 } # Novioregum Santonum -> ROYAN + link = { autogenerated = yes imp = 2232 ck3 = 2145 ck3 = 2241 } # Tannum -> JONZAC, SAINTOGNE + link = { autogenerated = yes imp = 2234 ck3 = 2144 } # Burgus -> BLAYE + link = { autogenerated = yes imp = 2289 ck3 = 2143 } # Lucaniacum -> FRONSAC + link = { autogenerated = yes imp = 2236 ck3 = 2142 } # Burdigala -> BORDEAUX + link = { autogenerated = yes imp = 2233 ck3 = 2141 } # Noviomagus Aquitanum -> MEDOC + link = { autogenerated = yes imp = 2235 ck3 = 2140 } # Akroterion -> LA-TESTE-DE-BUCH + link = { autogenerated = yes imp = 2238 imp = 2237 ck3 = 2139 } # Segosa, Losa -> MIMIZAN + link = { autogenerated = yes imp = 2239 ck3 = 2138 } # Mosconnum -> DAX + link = { autogenerated = yes imp = 3036 ck3 = 2136 } # Lintomagus -> MONTREUIL-SUR-MER + link = { autogenerated = yes imp = 3037 ck3 = 2135 } # Durocoregum -> HESDIN + link = { autogenerated = yes imp = 3039 ck3 = 2134 } # Estia -> AIRE + link = { autogenerated = yes imp = 3027 imp = 3030 ck3 = 2133 } # Tarvenna, Ardellum -> SAINT-OMER + link = { autogenerated = yes imp = 3026 ck3 = 2130 ck3 = 2132 } # Gesoriacum -> CALAIS, BOULOGNE + link = { autogenerated = yes imp = 3029 ck3 = 2129 } # Portus Itius -> GRAVELINES + link = { autogenerated = yes imp = 3028 ck3 = 2128 ck3 = 2131 } # Castellum -> VEURNE, DUNKIRK + link = { autogenerated = yes imp = 3041 ck3 = 2127 } # Turnacum -> TOURNAI + link = { autogenerated = yes imp = 3040 ck3 = 2126 } # Minariacum -> LILLE + link = { autogenerated = yes imp = 3677 ck3 = 2124 } # Asse -> ROESELARE + link = { autogenerated = yes imp = 3675 ck3 = 2123 ck3 = 2125 } # Cortoriacum -> COURTRAI, YPRES + link = { autogenerated = yes imp = 3704 ck3 = 2122 } # Nervia Prima -> COUVIN + link = { autogenerated = yes imp = 3042 ck3 = 2121 } # Bagacum -> MALBODEN + link = { autogenerated = yes imp = 3676 ck3 = 2120 } # Feliciacum -> ATH + link = { autogenerated = yes imp = 3046 ck3 = 2119 } # Hermoniacum -> VALENCIENNES + link = { autogenerated = yes imp = 3045 imp = 3047 ck3 = 2118 } # Camaracum, Duronum -> CAMBRAI + link = { autogenerated = yes imp = 3679 imp = 3680 ck3 = 2117 } # Vodgoriacum, Geminiacum -> MONS + link = { autogenerated = yes imp = 3678 ck3 = 2114 } # Condacum -> GHENT + link = { autogenerated = yes imp = 3843 ck3 = 2112 ck3 = 2115 } # Ganuenta -> MIDDELBURG, BRUGES + link = { autogenerated = yes imp = 3708 ck3 = 2111 } # Teudurum -> TURNHOUT + link = { autogenerated = yes imp = 3713 ck3 = 2109 } # Ad Duodecimum -> BREDA + link = { autogenerated = yes imp = 3844 ck3 = 2108 ck3 = 2113 } # Fletio -> ROSENDAAL, BERGEN OP ZOOM + link = { autogenerated = yes imp = 3707 ck3 = 2107 } # Andellium -> BRUSSELS + link = { autogenerated = yes imp = 3706 ck3 = 2105 ck3 = 2106 } # Tienen -> LEUVEN, ANTWERP + link = { autogenerated = yes imp = 3712 ck3 = 2103 } # Harenatium -> NIJMEGEN + link = { autogenerated = yes imp = 3715 imp = 3716 ck3 = 2102 } # Asciburgium, Iuliacum -> GLADBACH + link = { autogenerated = yes imp = 3714 ck3 = 2101 ck3 = 2104 } # Castra Vetera -> MOERS, KLEVE + link = { autogenerated = yes imp = 3710 ck3 = 2100 ck3 = 2110 } # Catualium -> EINDHOVEN, TILBURG + link = { autogenerated = yes imp = 2199 ck3 = 21 } # Autenia -> CASTLEBAR + link = { autogenerated = yes imp = 3709 ck3 = 2099 } # Traiectus -> MAASTRICHT + link = { autogenerated = yes imp = 3705 ck3 = 2098 ck3 = 2116 } # Nervia Secunda -> NAMUR, DINANT + link = { autogenerated = yes imp = 3681 ck3 = 2097 } # Momalle -> [liege|E] + link = { autogenerated = yes imp = 3682 ck3 = 2096 } # Amanium -> HUY + link = { autogenerated = yes imp = 3686 ck3 = 2095 } # Eposium -> VIRTON + link = { autogenerated = yes imp = 3719 ck3 = 2094 ck3 = 2448 } # Belsonancum -> LA ROCHE, LIMBOURG + link = { autogenerated = yes imp = 3727 ck3 = 2093 } # Marcomagus -> DUREN + link = { autogenerated = yes imp = 3718 ck3 = 2092 ck3 = 2683 } # Aquae Granni -> AACHEN, ESCHWEILER + link = { autogenerated = yes imp = 3703 ck3 = 2091 } # Remia -> BOUILLON + link = { autogenerated = yes imp = 3684 ck3 = 2090 ck3 = 2686 } # Nasagus -> BASTOGNE, CHINY + link = { autogenerated = yes imp = 3729 imp = 3730 ck3 = 2089 } # Epternacus, Vicus Voclannionum -> DIEKIRCH + link = { autogenerated = yes imp = 3717 ck3 = 2088 ck3 = 2682 } # Novaesium -> COLOGNE, NEUSS + link = { autogenerated = yes imp = 3720 ck3 = 2087 } # Bonna -> BONN + link = { autogenerated = yes imp = 7738 ck3 = 2086 ck3 = 2685 } # Rigomagus -> ADENAU, NAUENAHR + link = { autogenerated = yes imp = 3726 ck3 = 2085 ck3 = 2697 } # Beda -> BEDA, COCHEM + link = { autogenerated = yes imp = 3722 imp = 3721 ck3 = 2084 } # Vosolvia, Confluentes -> KOBLENZ + link = { autogenerated = yes imp = 3724 ck3 = 2083 ck3 = 2696 } # Belginum -> TRIER, SPONHEIM + link = { autogenerated = yes imp = 3687 imp = 3688 ck3 = 2082 } # Caranusca, Ricciacum -> LUXEMBOURG + link = { autogenerated = yes imp = 2455 imp = 2498 ck3 = 2081 } # Viriodunum, Sauriciacum -> SAINT-MIHIEL + link = { autogenerated = yes imp = 3002 ck3 = 2080 } # Pannorum -> HAYANGE + link = { autogenerated = yes imp = 2453 ck3 = 2079 } # Tullum -> TOUL + link = { autogenerated = yes imp = 3016 ck3 = 2078 ck3 = 2713 ck3 = 2714 } # Vicus Bodatius -> EPINAL, BLANKENBERG, SALM + link = { autogenerated = yes imp = 2427 ck3 = 2076 } # Segobodium -> BESANCON + link = { autogenerated = yes imp = 2361 ck3 = 2073 } # Crucinae -> LONS-LE-SAUNIER + link = { autogenerated = yes imp = 3628 ck3 = 2072 } # Filomusiacum -> SALINS + link = { autogenerated = yes imp = 2357 imp = 2356 imp = 2358 ck3 = 2071 } # Brioratis, Ludna, Lunna -> BOURG + link = { autogenerated = yes imp = 2301 ck3 = 2070 } # Lugdunum -> Villars + link = { autogenerated = yes imp = 3622 imp = 3621 ck3 = 2069 } # Isarnodurum, Venetonimagus -> BELLEY + link = { autogenerated = yes imp = 3519 ck3 = 2067 } # Vasio -> VAISON + link = { autogenerated = yes imp = 3527 imp = 3525 imp = 3526 imp = 5045 ck3 = 2066 } # Vologatae, Vocontiorum, Darentiaca, IMPASSIBLE TERRAIN 045 -> DIE + link = { autogenerated = yes imp = 2302 ck3 = 2065 ck3 = 2297 } # Seguslavorum -> LYON, FEURS + link = { autogenerated = yes imp = 2307 imp = 2304 ck3 = 2064 } # Morginnum, Vienna -> VALENCE + link = { autogenerated = yes imp = 2320 ck3 = 2062 } # Arausio -> ORANGE + link = { autogenerated = yes imp = 3528 ck3 = 2061 } # Mons Seleucus -> FORCALQUIER + link = { autogenerated = yes imp = 2324 ck3 = 2060 } # Apta Iulia -> APT + link = { autogenerated = yes imp = 2322 imp = 2321 ck3 = 2059 } # Carpentorate, Avennio -> AVIGNON + link = { autogenerated = yes imp = 3018 imp = 3009 ck3 = 2058 } # Rubiacum, Larga -> MULHOUSE + link = { autogenerated = yes imp = 3010 ck3 = 2057 ck3 = 2077 ck3 = 2075 } # Valtudurum -> MONTPELLIARD, VESOUL, MORTEAU + link = { autogenerated = yes imp = 3011 ck3 = 2056 ck3 = 2720 } # Epamanduodurum -> PORRENTRUY, FERRETTE + link = { autogenerated = yes imp = 3634 ck3 = 2054 } # Vitudurum -> KONSTANZ + link = { autogenerated = yes imp = 3636 ck3 = 2053 ck3 = 2787 } # Brigantium -> SANKT GALLEN, BREGENZ + link = { autogenerated = yes imp = 3619 ck3 = 2052 ck3 = 2788 } # Clunia Raetia -> FARDUZES, WERDENBURG + link = { autogenerated = yes imp = 3633 ck3 = 2051 } # Vindonissa -> ZURICH + link = { autogenerated = yes imp = 3632 ck3 = 2050 } # Salodurum -> BASEL + link = { autogenerated = yes imp = 3631 ck3 = 2049 } # Petinesca -> BIEL + link = { autogenerated = yes imp = 3630 ck3 = 2046 ck3 = 2460 } # Aventicum -> BERN, NEUCHATEL + link = { autogenerated = yes imp = 3559 imp = 3558 ck3 = 2045 } # Hasta, Vardagate -> CHIERI + link = { autogenerated = yes imp = 3564 imp = 3530 ck3 = 2044 } # Pollentia, Mustiae Calmes -> SALUZZO + link = { autogenerated = yes imp = 3548 ck3 = 2043 ck3 = 8763 } # Bagiennia -> CUNEO, Mondovi + link = { autogenerated = yes imp = 3551 ck3 = 2041 } # Taurasia -> TURIN + link = { autogenerated = yes imp = 3629 ck3 = 2037 ck3 = 2038 ck3 = 2074 } # Lausonna -> LAUSANNE, MARTIGNY, PONTARLIER + link = { autogenerated = yes imp = 3624 imp = 5043 ck3 = 2036 } # Genava, IMPASSIBLE TERRAIN 043 -> THONON-LES-BAINS + link = { autogenerated = yes imp = 3625 ck3 = 2035 ck3 = 785 } # Equestris -> GENEVA, German Mountains 12 + link = { autogenerated = yes imp = 3623 imp = 5044 ck3 = 2034 } # Boutae, IMPASSIBLE TERRAIN 044 -> ANNECY + link = { autogenerated = yes imp = 2303 ck3 = 2033 } # Octavus -> VIENNE + link = { autogenerated = yes imp = 3539 imp = 2305 ck3 = 2032 } # Labisco, Allobrogia -> CHARTREUSE + link = { autogenerated = yes imp = 3531 ck3 = 2030 ck3 = 2068 } # Cularo -> GRENOBLE, ROMANS + link = { autogenerated = yes imp = 3533 ck3 = 2028 } # Murissa -> GAP + link = { autogenerated = yes imp = 3520 imp = 3524 ck3 = 2026 } # Segustero, Vappincum -> SISTERON + link = { autogenerated = yes imp = 3518 imp = 3522 ck3 = 2025 } # Griselica, Sanitium -> Castellane + link = { autogenerated = yes imp = 3542 imp = 3521 imp = 3541 ck3 = 2024 } # Matavo, Tegulata, Agathom -> DRAGUGNIAN + link = { autogenerated = yes imp = 3523 ck3 = 2023 } # Verunia -> AIX + link = { autogenerated = yes imp = 3546 imp = 3545 ck3 = 2022 } # Albom Ingaunom, Album Intimilium -> MONACO + link = { autogenerated = yes imp = 3544 ck3 = 2021 ck3 = 8721 } # Navelis -> NICE, Puget + link = { autogenerated = yes imp = 3517 imp = 3540 ck3 = 2019 } # Tauroention, Pergantion -> TOULON + link = { autogenerated = yes imp = 2325 imp = 2323 ck3 = 2018 } # Massalia, Pisavi -> MARSEILLE + link = { autogenerated = yes imp = 2319 ck3 = 2017 } # Arelatis -> ARLES + link = { autogenerated = yes imp = 2318 imp = 2314 ck3 = 2016 } # Rhodanousia, Nemausus -> NIMES + link = { autogenerated = yes imp = 2313 imp = 2312 ck3 = 2015 } # Sextantio, Andusia -> MONTPELLIER + link = { autogenerated = yes imp = 2260 imp = 5049 ck3 = 2014 } # Agatha, IMPASSIBLE TERRAIN 049 -> AGDE + link = { autogenerated = yes imp = 2259 ck3 = 2013 } # Baeterrae -> BEZIERS + link = { autogenerated = yes imp = 2240 ck3 = 2012 } # Lapurdum -> BAYONNE + link = { autogenerated = yes imp = 2244 ck3 = 2011 } # Carasa -> OLORON + link = { autogenerated = yes imp = 2248 ck3 = 2010 } # Novum Oppidum -> TARBES + link = { autogenerated = yes imp = 2251 ck3 = 2009 } # Aquae Convenarum -> BERTRAND-DE-COMMINGES + link = { autogenerated = yes imp = 2276 ck3 = 2008 } # Calagorris -> SAINT-LIZIER + link = { autogenerated = yes imp = 2254 ck3 = 2007 ck3 = 2211 } # Tarusco -> MONTBEL, PAMIERS + link = { autogenerated = yes imp = 2255 imp = 2258 ck3 = 2006 } # Carcasso, Usuerva -> CARCASSONE + link = { autogenerated = yes imp = 2256 ck3 = 2005 } # Narbo -> NARBONNE + link = { autogenerated = yes imp = 1292 ck3 = 2003 } # Visseria -> GRALHEIRA + link = { autogenerated = yes imp = 1469 ck3 = 2002 } # Mago -> MINORCA + link = { autogenerated = yes imp = 1467 imp = 1468 ck3 = 2001 } # Pollentia, Tuci -> MALLORCA + link = { autogenerated = yes imp = 1464 ck3 = 2000 } # Ebusus -> IVIZA + link = { autogenerated = yes imp = 2200 ck3 = 20 } # Autenia Occidentalis -> GALWAY + link = { autogenerated = yes imp = 1404 imp = 1440 ck3 = 1999 } # Flavium Velares, Baedro -> GUADIATO + link = { autogenerated = yes imp = 1406 ck3 = 1998 } # Artigi -> DON LLORENTE + link = { autogenerated = yes imp = 1407 imp = 1408 ck3 = 1997 } # Iulipa, Phornakis -> HORNACHOS + link = { autogenerated = yes imp = 1403 imp = 1436 ck3 = 1996 } # Caspiana, Metellinum -> MEDELLIN + link = { autogenerated = yes imp = 1442 imp = 1372 imp = 1378 imp = 1441 ck3 = 1995 } # Mariana Baetica, Segida, Epora, Mellaria -> CORDOBA + link = { autogenerated = yes imp = 1409 imp = 1373 imp = 1405 imp = 1411 imp = 1412 ck3 = 1994 } # Munigua, Naeva, Regina, Iporca, Lacunis -> CANTILLANA + link = { autogenerated = yes imp = 1414 imp = 1356 imp = 1410 ck3 = 1993 } # Fodinae, Italica, Ilipa -> TRIANA + link = { autogenerated = yes imp = 1417 ck3 = 1992 } # Arucci -> ZAFRA + link = { autogenerated = yes imp = 1415 imp = 1359 ck3 = 1991 } # Tharsis, Ilpulla -> NIEBLA + link = { autogenerated = yes imp = 1418 imp = 1401 imp = 1402 ck3 = 1990 } # Seria, Ugultunia, Perceiana -> ILERENA + link = { autogenerated = yes imp = 1459 imp = 1439 imp = 1460 ck3 = 1989 } # Messicia, Mirobriga, Sattalicia -> ALMADER + link = { autogenerated = yes imp = 1444 imp = 1446 ck3 = 1988 } # Solia, Ad Decimum -> PEDROCHE + link = { autogenerated = yes imp = 1448 ck3 = 1987 } # Carcuvium -> ALARCOS + link = { autogenerated = yes imp = 1443 imp = 1379 imp = 1380 imp = 1384 imp = 1447 ck3 = 1986 } # Edeba, Sucia, Isiturgis, Baecula, Marianus Mons -> ANDUJAR + link = { autogenerated = yes imp = 1399 imp = 1286 imp = 1381 imp = 1382 ck3 = 1985 } # Baesucci, Ilugo, Castulo, Vivatia -> UBEDA + link = { autogenerated = yes imp = 1389 imp = 1375 imp = 1388 imp = 1391 ck3 = 1984 } # Ad Gemellas, Lauro, Anticaria, Cisimbrium -> ANTEQUERA + link = { autogenerated = yes imp = 1364 imp = 1354 imp = 1365 imp = 1368 ck3 = 1983 } # Arunda, Carissa, Nescania, Irni -> MORON + link = { autogenerated = yes imp = 1352 imp = 1346 imp = 1349 imp = 1351 ck3 = 1982 } # Ocuri, Asido, Onoba, Turirecina -> ARCOS + link = { autogenerated = yes imp = 1360 imp = 1353 imp = 1355 imp = 1357 ck3 = 1981 } # Lucurgentum, Urgia, Hispalis, Osset -> SEVILLA + link = { autogenerated = yes imp = 1374 imp = 1369 imp = 1370 imp = 1371 ck3 = 1980 } # Carmo, Urso, Basilippo, Astigi -> CARMONA + link = { autogenerated = yes imp = 1386 imp = 1376 imp = 1377 imp = 1387 imp = 1390 imp = 1393 ck3 = 1979 } # Claritas Iulia, Sabetanum, Corduba, Ituci, Igabrum, Ipolcobulcola -> CABRA + link = { autogenerated = yes imp = 1398 imp = 1392 imp = 1397 imp = 1385 ck3 = 1978 } # Calecula, Antecaria, Ebura, Elvira -> GRANADA + link = { autogenerated = yes imp = 1394 imp = 1383 imp = 1395 ck3 = 1977 } # Iliturgicola, Iliturgis, Tucci -> JAEN + link = { autogenerated = yes imp = 1285 imp = 1281 ck3 = 1975 } # Accis, Basti -> GUADIZ + link = { autogenerated = yes imp = 1280 imp = 1279 ck3 = 1974 } # Tagili, Tutugi -> BAZA + link = { autogenerated = yes imp = 1277 imp = 1039 imp = 1275 ck3 = 1971 } # Ad Morum, Asso, Elioucroca -> CARAVACA DE LA CRUZ + link = { autogenerated = yes imp = 1040 imp = 1251 ck3 = 1970 } # Begastrum, Segisa -> CIEZA + link = { autogenerated = yes imp = 1248 ck3 = 1969 } # Setabis -> ALMANSA + link = { autogenerated = yes imp = 1253 imp = 1262 ck3 = 1968 } # Elotana, Ad Palem -> SEGURA + link = { autogenerated = yes imp = 1254 imp = 1027 ck3 = 1967 } # Salika, Libisosa -> ALCARAZ + link = { autogenerated = yes imp = 1257 imp = 1026 imp = 1258 imp = 1450 ck3 = 1966 } # Mentesa, Laminium, Mariana Lobetania, Ad Turres -> MENTESA + link = { autogenerated = yes imp = 1271 ck3 = 1965 } # Caput -> TOMELLOSO + link = { autogenerated = yes imp = 1268 ck3 = 1964 } # Egelesta -> ALCAZAR + link = { autogenerated = yes imp = 1451 imp = 1449 ck3 = 1963 } # Ad Murum, Oretum -> CALATRAVA + link = { autogenerated = yes imp = 1455 ck3 = 1962 } # Satella -> LA PUEBLA DE MONTALBAN + link = { autogenerated = yes imp = 1463 imp = 1462 ck3 = 1961 } # Solorbes, Catonita -> CABANEROS + link = { autogenerated = yes imp = 1458 ck3 = 1960 } # Dunites -> MALAGON + link = { autogenerated = yes imp = 1457 imp = 1452 ck3 = 1959 } # Solicia Carpetania, Alaba -> QUINTANAR + link = { autogenerated = yes imp = 1024 imp = 1025 imp = 1456 ck3 = 1958 } # Toletum, Consabura, Pilonicoria -> OCANA + link = { autogenerated = yes imp = 1461 ck3 = 1957 } # Bocouriqua -> LA JARA + link = { autogenerated = yes imp = 1454 imp = 1435 ck3 = 1956 } # Brutobriga, Lacipea -> CASTILBLANCO + link = { autogenerated = yes imp = 340 ck3 = 1955 } # Turgalium -> TRUJILLO + link = { autogenerated = yes imp = 1432 imp = 1433 imp = 1434 ck3 = 1954 } # Norba, Tourmogon, Tamusia -> CACERES + link = { autogenerated = yes imp = 1208 ck3 = 1953 } # Vicus Cuminarius -> MORA + link = { autogenerated = yes imp = 1270 imp = 1269 imp = 1272 ck3 = 1952 } # Alces, Pons Rugio, Domum -> UCLES + link = { autogenerated = yes imp = 1209 ck3 = 1951 } # Segobriga -> HUETE + link = { autogenerated = yes imp = 1255 ck3 = 1950 } # Saltigi -> VENTA DEL MORO + link = { autogenerated = yes imp = 1256 ck3 = 1949 } # Parietinae -> ALARCON + link = { autogenerated = yes imp = 1261 ck3 = 1948 } # Ad Putea -> VALERIA + link = { autogenerated = yes imp = 1028 imp = 1233 ck3 = 1947 } # Valeria, Bellia Superioris -> CUENCA + link = { autogenerated = yes imp = 1266 ck3 = 1946 } # Edetania Inferioris -> ADEMUZ + link = { autogenerated = yes imp = 1210 imp = 1211 imp = 1224 ck3 = 1944 } # Opta, Ocules, Loutia -> ZURITA + link = { autogenerated = yes imp = 1214 imp = 1247 ck3 = 1943 } # Carae, Columbarium -> SIERRA DE SAN JUST + link = { autogenerated = yes imp = 1246 ck3 = 1942 } # Dentum -> MAESTRAZGO + link = { autogenerated = yes imp = 1264 imp = 1249 ck3 = 1940 } # Contestania Maior, Ad Aras -> ALBACETE + link = { autogenerated = yes imp = 1263 imp = 1250 imp = 1265 ck3 = 1939 } # Incusum, Sucro, Contestania Minor -> REQUENA + link = { autogenerated = yes imp = 1234 imp = 1237 imp = 1267 ck3 = 1938 } # Edeta, Edetania Centralis, Edetania Superioris -> MONTANEJOS + link = { autogenerated = yes imp = 1216 imp = 1238 ck3 = 1937 } # Urbiaca, Lautumiae -> TERUEL + link = { autogenerated = yes imp = 1231 imp = 1215 imp = 1217 ck3 = 1936 } # Bellia Relicta, Agiria, Lobeton -> ALBARRACIN + link = { autogenerated = yes imp = 1230 imp = 1228 ck3 = 1935 } # Bellia Desolata, Colenda -> MOLINA + link = { autogenerated = yes imp = 1213 ck3 = 1934 } # Segeda -> DAROCA + link = { autogenerated = yes imp = 1222 ck3 = 1933 } # Okilis -> ABLANQUE + link = { autogenerated = yes imp = 1220 ck3 = 1932 } # Aquae Bilbitonorum -> CALATAYUD + link = { autogenerated = yes imp = 1227 imp = 1221 ck3 = 1931 } # Lagni, Arcobriga -> MEDINACELI + link = { autogenerated = yes imp = 1226 ck3 = 1930 } # Mallia -> SIGUENZA + link = { autogenerated = yes imp = 1207 ck3 = 1929 } # Caracca -> VILLAREJO DE SALVANES + link = { autogenerated = yes imp = 1203 ck3 = 1928 } # Titulcia -> ARGANDA + link = { autogenerated = yes imp = 1225 imp = 1223 ck3 = 1927 } # Tucris, Segontia -> GUDALAJARA + link = { autogenerated = yes imp = 1219 ck3 = 1926 } # Uxama Argaela -> UCEDA + link = { autogenerated = yes imp = 1184 imp = 1191 imp = 1192 ck3 = 1925 } # Vaccaeia Relicta, Rauda, Pintia -> CUELLAR + link = { autogenerated = yes imp = 1193 imp = 1022 imp = 1177 imp = 1205 ck3 = 1924 } # Confluentia, Segovia, Cauca, Carpetana Luga -> SEGOVIA + link = { autogenerated = yes imp = 1206 imp = 1195 ck3 = 1923 } # Complutum, Miaccum -> MADRID + link = { autogenerated = yes imp = 1196 imp = 1194 ck3 = 1921 } # Tullium, Avila -> LA ADRADA + link = { autogenerated = yes imp = 1202 imp = 1023 ck3 = 1920 } # Vaddua, Mantua Carpetania -> MAQUEDA + link = { autogenerated = yes imp = 1204 ck3 = 1919 } # Ioppe Iberia -> TOLEDO + link = { autogenerated = yes imp = 1438 imp = 1200 ck3 = 1918 } # Caesarobriga, Vettonia Superioris -> TALAVERA + link = { autogenerated = yes imp = 1201 imp = 1437 imp = 1304 ck3 = 1917 } # Vettonia Inferioris, Augustobriga Vettonia, Caellonico -> ALMARAZ + link = { autogenerated = yes imp = 1198 imp = 1199 ck3 = 1916 } # Coloricum, Platanus -> SIERRA DE GREDOS + link = { autogenerated = yes imp = 1176 ck3 = 1915 ck3 = 1922 } # Nivaria -> OLMEDO, CORACERA + link = { autogenerated = yes imp = 1180 imp = 1197 ck3 = 1914 } # Vettonia Deserta, Ad Lippos -> MEDINA DEL CAMPO + link = { autogenerated = yes imp = 1046 imp = 1160 ck3 = 1913 } # Salmantica, Sentice -> BEJAR + link = { autogenerated = yes imp = 1179 imp = 1173 imp = 1175 ck3 = 1912 } # Vettonia Relicta, Arboukale, Septimanca -> AVILA + link = { autogenerated = yes imp = 1178 ck3 = 1911 } # Comeniaca -> VALENCIA DE CAMPOS + link = { autogenerated = yes imp = 1041 ck3 = 1910 } # Intercatia -> VILLAFAFILA + link = { autogenerated = yes imp = 1093 imp = 5183 ck3 = 1909 } # Nova Augusta, IMPASSIBLE TERRAIN 183 -> SAN LEONARDO DE YAGUE + link = { autogenerated = yes imp = 1021 ck3 = 1908 } # Palantia -> LERMA + link = { autogenerated = yes imp = 1188 ck3 = 1907 } # Autraca -> ATAPUERCA + link = { autogenerated = yes imp = 1186 imp = 1185 imp = 1187 ck3 = 1906 } # Viminacium, Camala, Lacobriga -> BURGOS + link = { autogenerated = yes imp = 1189 ck3 = 1905 } # Lateremum -> PALENCIA + link = { autogenerated = yes imp = 1109 ck3 = 1904 } # Maggiaviensium -> SEDANO + link = { autogenerated = yes imp = 1091 imp = 1090 ck3 = 1902 } # Augustobriga, Tertakom -> TARAZONA + link = { autogenerated = yes imp = 1092 ck3 = 1901 ck3 = 1903 } # Ouisontion -> SORIA, ARNEDO + link = { autogenerated = yes imp = 1018 imp = 1218 ck3 = 1900 } # Numantia, Voluca -> OSMA + link = { autogenerated = yes imp = 2193 ck3 = 19 } # Caucia Orientalis -> ARDEE + link = { autogenerated = yes imp = 1019 ck3 = 1899 } # Clunia -> SAN ESTEBAN + link = { autogenerated = yes imp = 1190 ck3 = 1898 } # Pampligua -> ARANDA DE DUERO + link = { autogenerated = yes imp = 1182 ck3 = 1897 } # Balneos -> VALLADOLID + link = { autogenerated = yes imp = 1181 imp = 1183 ck3 = 1896 } # Gella, Vaccaeia Deserta -> SIMANCAS + link = { autogenerated = yes imp = 1174 ck3 = 1894 ck3 = 1895 } # Amallobriga -> ZAMORA, TORO + link = { autogenerated = yes imp = 1242 imp = 1244 ck3 = 1893 } # Lassira, Roburum -> CALACEITE + link = { autogenerated = yes imp = 1243 ck3 = 1891 ck3 = 1892 } # Sedetania -> BELCHITE, ALCANIZ + link = { autogenerated = yes imp = 1016 ck3 = 1890 } # Calagurris Iulia -> TUDELA + link = { autogenerated = yes imp = 1081 ck3 = 1889 } # Carta -> TAFALLA + link = { autogenerated = yes imp = 1088 ck3 = 1888 } # Ilurcis -> EJEA + link = { autogenerated = yes imp = 1013 imp = 1015 imp = 1089 imp = 1212 imp = 1011 ck3 = 1887 } # Salduba, Bilbilis, Cascantum, Sermonae, Celsa -> ZARAGOZA + link = { autogenerated = yes imp = 1071 imp = 1072 ck3 = 1886 } # Presuina, Gallicum -> ZUERA + link = { autogenerated = yes imp = 1070 ck3 = 1885 } # Gallika Phlaouia -> SARINENA + link = { autogenerated = yes imp = 1068 ck3 = 1884 ck3 = 1869 ck3 = 8800 } # Aeso -> BALAGUER, ANDORRA, Pallars Sobira + link = { autogenerated = yes imp = 1062 ck3 = 1883 } # Ad Novas Iberia -> CASPE + link = { autogenerated = yes imp = 1064 ck3 = 1882 } # Keresos -> FRAGA + link = { autogenerated = yes imp = 1010 ck3 = 1881 } # Ilerda -> LLEIDA + link = { autogenerated = yes imp = 1241 ck3 = 1880 } # Otobesa -> MAIALS + link = { autogenerated = yes imp = 1061 ck3 = 1879 } # Ad Septimum -> PRADES + link = { autogenerated = yes imp = 1055 ck3 = 1877 ck3 = 1878 } # Sigarra -> MANRESA, URGELL + link = { autogenerated = yes imp = 1005 ck3 = 1875 ck3 = 1876 } # Auso -> VIC, BERGA + link = { autogenerated = yes imp = 1065 ck3 = 1874 } # Caum -> BARBASTRO + link = { autogenerated = yes imp = 1014 imp = 1073 ck3 = 1873 } # Osca, Bortina -> HUESCA + link = { autogenerated = yes imp = 1067 ck3 = 1872 } # Labitolosa -> AINSA + link = { autogenerated = yes imp = 1069 ck3 = 1871 ck3 = 8799 } # Ager -> RIBAGORZA, Pallars Jussa + link = { autogenerated = yes imp = 1059 ck3 = 1868 } # Urgellum -> PUIGCERDA + link = { autogenerated = yes imp = 1008 ck3 = 1867 } # Sebendounon -> OLOT + link = { autogenerated = yes imp = 2257 ck3 = 1866 } # Ruscino -> PERPIGNAN + link = { autogenerated = yes imp = 1001 ck3 = 1865 } # Rhoda -> ROSES + link = { autogenerated = yes imp = 1003 imp = 1054 ck3 = 1864 } # Blandae, Gerunda -> GIRONA + link = { autogenerated = yes imp = 1000 imp = 1002 ck3 = 1863 } # Emporiae, Iuncaria -> LOREDO + link = { autogenerated = yes imp = 1004 imp = 1007 ck3 = 1862 } # Lauro Iberias, Rubricatum -> BARCELONA + link = { autogenerated = yes imp = 1006 ck3 = 1861 } # Kallipolis Iberias -> SITGES + link = { autogenerated = yes imp = 1053 imp = 1009 imp = 1063 imp = 1052 ck3 = 1860 } # Antistiana, Tarraco, Oleastrum, Subur -> TARRAGONA + link = { autogenerated = yes imp = 1012 ck3 = 1859 } # Dertosa -> TORTOSA + link = { autogenerated = yes imp = 1239 ck3 = 1858 } # Indibilis -> AMPOSTA + link = { autogenerated = yes imp = 1240 imp = 1245 ck3 = 1857 } # Etobesa, Rubium -> CASTELLON DE LA PLANA + link = { autogenerated = yes imp = 1029 imp = 1235 ck3 = 1856 } # Saguntum, Sebelaci -> MURVIEDRO + link = { autogenerated = yes imp = 1030 imp = 1032 ck3 = 1855 } # Valentia, Portus Sucronis -> VALENCIA + link = { autogenerated = yes imp = 1031 ck3 = 1854 } # Hemeroskopeion -> DENIA + link = { autogenerated = yes imp = 1033 imp = 1034 imp = 1037 imp = 1260 ck3 = 1853 } # Akra Leuke, Ilici, Alonis, Iaspis -> ALICANTE + link = { autogenerated = yes imp = 1038 imp = 1035 imp = 1259 ck3 = 1852 } # Ilorci, Thiar, Fortuna -> MURCIA + link = { autogenerated = yes imp = 1036 imp = 1273 ck3 = 1851 } # Mastia, Ficariensis Locus -> CARTAGENA + link = { autogenerated = yes imp = 1274 ck3 = 1850 ck3 = 1972 } # Longuntica -> AGUILAS, LORCA + link = { autogenerated = yes imp = 1282 imp = 1278 imp = 1284 imp = 1276 ck3 = 1849 } # Murgi, Urci, Aboula, Baria -> ALMERIA + link = { autogenerated = yes imp = 1283 ck3 = 1848 } # Abdarat -> MOTRIL + link = { autogenerated = yes imp = 1367 imp = 1366 ck3 = 1847 } # Saxetanum, Menova -> NERJA + link = { autogenerated = yes imp = 1361 imp = 1362 imp = 1363 ck3 = 1846 } # Suel, Malaca, Cartima -> MALAGA + link = { autogenerated = yes imp = 1348 imp = 1350 ck3 = 1845 } # Carteia, Lacippo -> ALGECIRAS + link = { autogenerated = yes imp = 1347 ck3 = 1844 } # Baelo -> TARIFA + link = { autogenerated = yes imp = 1344 imp = 1345 ck3 = 1843 } # Gadir, Mergablum -> CADIZ + link = { autogenerated = yes imp = 1342 imp = 1343 ck3 = 1842 } # Hasta, Nabrissa -> JEREZ + link = { autogenerated = yes imp = 1358 imp = 1341 ck3 = 1841 } # Olontigi, Tartessos -> ALMONTE + link = { autogenerated = yes imp = 1340 ck3 = 1840 } # Ad Rubras -> HUELVA + link = { autogenerated = yes imp = 1339 ck3 = 1839 } # Praesidium -> AYAMONTE + link = { autogenerated = yes imp = 1416 ck3 = 1837 ck3 = 1838 } # Fons Siccus -> MOURA, SERPA + link = { autogenerated = yes imp = 1419 imp = 1421 ck3 = 1836 } # Turdulia Inferioris, Luserium -> OLIVENZA + link = { autogenerated = yes imp = 1424 imp = 1420 imp = 1429 ck3 = 1835 } # Dipo, Varna, Celtica Inferioris -> BADAJOZ + link = { autogenerated = yes imp = 1431 imp = 1400 imp = 1423 ck3 = 1834 } # Ad Sorores, Augusta Emerita, Evandriana -> MERIDA + link = { autogenerated = yes imp = 1426 ck3 = 1833 } # Budua -> ZALACA + link = { autogenerated = yes imp = 1430 ck3 = 1832 } # Ad Fines Hiberiae -> ALCANTARA + link = { autogenerated = yes imp = 1306 imp = 1305 ck3 = 1831 } # Lama, Capera -> PLASENCIA + link = { autogenerated = yes imp = 1311 imp = 1307 ck3 = 1830 } # Tongorigum, Caurium -> CORIA + link = { autogenerated = yes imp = 1162 imp = 1158 imp = 1159 imp = 1049 ck3 = 1829 } # Bletsima, Cobelcorum, Polibedenses, Mirobriga Lusitania -> CIDUAD RODRIGO + link = { autogenerated = yes imp = 1043 imp = 1161 ck3 = 1828 } # Ocelum Duri, Sibaris -> SALAMANCA + link = { autogenerated = yes imp = 1171 imp = 1042 imp = 1172 ck3 = 1827 } # Praterion, Brigaecium, Vicus Aquarius -> ALBA + link = { autogenerated = yes imp = 1169 imp = 1120 ck3 = 1826 } # Argentiolum, Vallata -> BENAVENTE + link = { autogenerated = yes imp = 1044 ck3 = 1825 } # Lancia -> GUARDO + link = { autogenerated = yes imp = 1045 ck3 = 1824 } # Asturicia -> VILLABLINO + link = { autogenerated = yes imp = 1123 imp = 1126 ck3 = 1823 } # Mons Rubeum, Luggonia -> CANGAS DEL NARCEA + link = { autogenerated = yes imp = 1122 imp = 1117 ck3 = 1822 } # Spadonium, Memoriana -> SARRIA + link = { autogenerated = yes imp = 1128 ck3 = 1821 } # Uttaris -> ASTORGA + link = { autogenerated = yes imp = 1121 imp = 1127 imp = 9294 ck3 = 1820 } # Interamnium, Bergidum Flavium, Iberian Impassable -> PONFERRADA + link = { autogenerated = yes imp = 1170 imp = 1165 imp = 9293 ck3 = 1818 } # Relicta Asturia, Nemetobriga, Iberian Impassable -> MONTERREI + link = { autogenerated = yes imp = 1113 imp = 9289 ck3 = 1817 } # Pallontion, Iberian Impassable -> RIANO + link = { autogenerated = yes imp = 1119 imp = 1111 ck3 = 1816 } # Legio Gemina, Equosera -> LEON + link = { autogenerated = yes imp = 1020 imp = 1112 ck3 = 1815 } # Aracillum, Caiellum -> REINOSA + link = { autogenerated = yes imp = 1110 ck3 = 1814 } # Camarica -> AMAYA + link = { autogenerated = yes imp = 1102 imp = 1097 imp = 1100 imp = 1103 ck3 = 1813 } # Bravum, Salionka, Tritium, Segisama Iulia -> MIRANDA DE EBRO + link = { autogenerated = yes imp = 1104 imp = 1105 ck3 = 1812 } # Segontia Paramika, Ouxama Barka -> MEDINA DE POMAR + link = { autogenerated = yes imp = 1096 imp = 1094 ck3 = 1811 } # Vindeleia, Auca -> NAJERA + link = { autogenerated = yes imp = 1086 imp = 1085 ck3 = 1810 } # Tritium Magallum, Barbariana -> LOGRONO + link = { autogenerated = yes imp = 1087 ck3 = 1809 } # Vareia -> LIZARRA + link = { autogenerated = yes imp = 1098 imp = 1095 imp = 1101 ck3 = 1808 } # Veleia, Atiliana, Belegia -> ALAVA + link = { autogenerated = yes imp = 1076 ck3 = 1807 } # Iacca -> JACA + link = { autogenerated = yes imp = 1082 ck3 = 1806 } # Andelos -> PAMPLONA + link = { autogenerated = yes imp = 1078 imp = 1017 ck3 = 1805 } # Pompelo, Oiasso -> IRUN + link = { autogenerated = yes imp = 1083 imp = 1084 ck3 = 1804 } # Aracaeli, Beturri -> IZURUM + link = { autogenerated = yes imp = 1106 imp = 1099 ck3 = 1803 } # Flaviobriga, Gebala -> BILIBIO + link = { autogenerated = yes imp = 1107 imp = 9292 ck3 = 1802 } # Brigensium, Iberian Impassable -> SANTANDER + link = { autogenerated = yes imp = 1108 ck3 = 1801 } # Veseiasueca -> SANTIALLANA + link = { autogenerated = yes imp = 1152 imp = 9295 ck3 = 1800 } # Aquis Querquennis, Iberian Impassable -> LIMIA + link = { autogenerated = yes imp = 2195 ck3 = 18 } # Isamnion -> DUNDALK + link = { autogenerated = yes imp = 1147 imp = 1146 ck3 = 1799 } # Lougia, Interamicia -> OURENSE + link = { autogenerated = yes imp = 1115 ck3 = 1798 } # Ad Mare -> VILLAVICIOSA + link = { autogenerated = yes imp = 1116 ck3 = 1797 } # Lucus Asturum -> OVIEDO + link = { autogenerated = yes imp = 1114 ck3 = 1796 } # Gigia -> GIJON + link = { autogenerated = yes imp = 1118 ck3 = 1795 } # Flavionavia -> PRAVIA + link = { autogenerated = yes imp = 1124 ck3 = 1794 } # Paesicia -> LUARCA + link = { autogenerated = yes imp = 1125 ck3 = 1793 } # Villadonga -> CARBALLIDO + link = { autogenerated = yes imp = 1047 ck3 = 1792 } # Lucus -> LUGO + link = { autogenerated = yes imp = 1141 ck3 = 1791 } # Aquae Quintinae -> MELIDE + link = { autogenerated = yes imp = 1129 ck3 = 1790 } # Caranicum -> VILALBA + link = { autogenerated = yes imp = 1134 imp = 1133 imp = 1135 ck3 = 1789 } # Varina Marinia, Varrinia, Cibarcia -> MONDONEDO + link = { autogenerated = yes imp = 1131 imp = 1132 ck3 = 1788 } # Phlaouia Lambris, Arronia -> FERROL + link = { autogenerated = yes imp = 1130 ck3 = 1787 } # Flavium Brigantium -> LA CORUNA + link = { autogenerated = yes imp = 1137 imp = 1136 ck3 = 1786 } # Artabron Limen, Aviliobris -> BETANZOS + link = { autogenerated = yes imp = 1139 imp = 1140 ck3 = 1785 } # Assegonia, Brevis -> SANTIAGO DE COMPOSTELA + link = { autogenerated = yes imp = 1143 imp = 1142 ck3 = 1784 } # Baedia, Castellum Meidunium -> MONTE FARO + link = { autogenerated = yes imp = 1138 imp = 1148 ck3 = 1783 } # Noouion, Aquae Gallaecia -> PADRON + link = { autogenerated = yes imp = 1149 ck3 = 1782 } # Ad Duos Pontes -> VIGO + link = { autogenerated = yes imp = 1150 ck3 = 1781 } # Vicus Spacorum -> TUI + link = { autogenerated = yes imp = 1323 imp = 1327 ck3 = 1780 } # Ebora, Calanta -> VIANA DO ALENTEJO + link = { autogenerated = yes imp = 1315 imp = 1328 ck3 = 1779 } # Aritium Praetorium, Sefiana -> MONTEMOR + link = { autogenerated = yes imp = 1329 imp = 1309 ck3 = 1778 } # Taporia, Vicus Carnalocensis -> AVIS + link = { autogenerated = yes imp = 1422 imp = 1325 ck3 = 1777 } # Ad Muratum, Pax Iulia -> EVORA + link = { autogenerated = yes imp = 1428 ck3 = 1776 } # Celtica Superioris -> ELVAS + link = { autogenerated = yes imp = 1427 imp = 1425 ck3 = 1775 } # Matsuarum, Ad Atrum Flumen -> CRATO + link = { autogenerated = yes imp = 1310 ck3 = 1774 } # Ammaia -> NISA + link = { autogenerated = yes imp = 1303 imp = 1308 ck3 = 1773 } # Herminium, Aritium -> CASTELO BRANCO + link = { autogenerated = yes imp = 1298 ck3 = 1772 } # Sellium -> ABRANTES + link = { autogenerated = yes imp = 1312 imp = 1301 ck3 = 1771 } # Castra Cecilia, Igaeditania -> IDANHA + link = { autogenerated = yes imp = 1300 imp = 1302 ck3 = 1770 } # Vicus Veniensis, Ocelum -> TRANCOSO + link = { autogenerated = yes imp = 1299 ck3 = 1769 } # Centum Cellas -> VISEU + link = { autogenerated = yes imp = 1290 ck3 = 1768 } # Aravorum -> LAMEGO + link = { autogenerated = yes imp = 1157 ck3 = 1767 } # Baniensium -> MOGADOURO + link = { autogenerated = yes imp = 1153 ck3 = 1766 } # Salacia Aebocosia -> GUIMARAES + link = { autogenerated = yes imp = 1156 imp = 1050 imp = 1288 ck3 = 1765 } # Vicus Vagornicensis, Aquae Flaviae, Lamecum -> VILLA REAL + link = { autogenerated = yes imp = 1164 imp = 1163 ck3 = 1764 } # Veniatia, Zoelarum -> MIRANDA DO DUORO + link = { autogenerated = yes imp = 1167 imp = 1048 imp = 1166 imp = 1168 ck3 = 1763 } # Zoelia, Forum Limicorum, Gigurria, Pettavonium -> BRAGANCA + link = { autogenerated = yes imp = 1154 imp = 1155 ck3 = 1762 } # Aquae Originae, Germinae -> CHAVEZ + link = { autogenerated = yes imp = 1151 ck3 = 1761 } # Limia -> BRAGA + link = { autogenerated = yes imp = 1051 imp = 1289 ck3 = 1760 } # Bracara Augusta, Tongobriga -> PORTO + link = { autogenerated = yes imp = 1291 ck3 = 1759 } # Langobriga -> AVEIRO + link = { autogenerated = yes imp = 1293 imp = 1295 imp = 1296 ck3 = 1758 } # Aeminium, Areocelum, Elboconis -> COIMBRA + link = { autogenerated = yes imp = 1294 ck3 = 1757 } # Conimbriga -> LEIRIA + link = { autogenerated = yes imp = 1297 imp = 1313 ck3 = 1756 } # Collippo, Tubucci -> OBIDOS + link = { autogenerated = yes imp = 1316 imp = 1314 imp = 1317 ck3 = 1755 } # Eburobrittium, Scallabis, Arabriga -> SANTAREM + link = { autogenerated = yes imp = 1319 ck3 = 1754 } # Olisipo -> LISBOA + link = { autogenerated = yes imp = 1318 imp = 1320 imp = 1321 ck3 = 1753 } # Barbarion, Malateca, Caetobriga -> SETUBAL + link = { autogenerated = yes imp = 1324 imp = 1322 imp = 1330 ck3 = 1752 } # Mirobriga Couneia, Salacia, Patulus Portus -> ALCACER DO SAL + link = { autogenerated = yes imp = 1331 imp = 1326 imp = 1332 imp = 1413 ck3 = 1751 } # Arandis, Metallum Vipescense, Myrtilis, Serpentum -> BEJA + link = { autogenerated = yes imp = 1337 ck3 = 1750 } # Couneia -> MERTOLA + link = { autogenerated = yes imp = 1336 ck3 = 1749 } # Mirobigensia -> OURIQUE + link = { autogenerated = yes imp = 1335 imp = 1338 ck3 = 1748 } # Baal Saphon, Tartessia -> FARO + link = { autogenerated = yes imp = 1334 ck3 = 1747 } # Ossonoba -> SILVES + link = { autogenerated = yes imp = 1333 ck3 = 1746 } # Portus Cibilis -> LAGOS + link = { autogenerated = yes imp = 2114 ck3 = 1727 ck3 = 1730 ck3 = 1731 ck3 = 1732 ck3 = 1739 } # Veluniate -> EDINBURGH, PENICUICK, LINLITHGOW, QUEENSFERRY, BIGGAR + link = { autogenerated = yes imp = 2115 ck3 = 1724 ck3 = 1725 ck3 = 1733 ck3 = 1734 ck3 = 1736 } # Venicones -> DUNFERMLINE, KIRCALDY, FALKIRK, STIRLING, CLACKMANNAN + link = { autogenerated = yes imp = 2133 ck3 = 1720 ck3 = 1726 ck3 = 1721 ck3 = 1741 ck3 = 1742 } # Pinnata Castra -> DUNDEE, ST ANDREWS, KIRRIEMUIR, PERTH, COUPAR ANGUS + link = { autogenerated = yes imp = 7740 ck3 = 1719 } # Taexalia Australis -> KINCARDINE + link = { autogenerated = yes imp = 2123 ck3 = 1715 ck3 = 1717 } # Vacomagi -> ELGIN, GARIOCH + link = { autogenerated = yes imp = 2116 ck3 = 1714 ck3 = 1718 ck3 = 1722 } # Taexali -> PETERHEAD, ABERDEEN, BALLATER + link = { autogenerated = yes imp = 2125 ck3 = 1712 ck3 = 1716 ck3 = 1713 } # Taixalon Akron -> BANFF, KEITH, MORTLACH + link = { autogenerated = yes imp = 2118 ck3 = 1711 ck3 = 35 } # Creones Boreales -> GLENFINNAN, ARDNAMURCHON + link = { autogenerated = yes imp = 2120 ck3 = 1709 ck3 = 1703 ck3 = 1710 ck3 = 8775 } # Caledonii -> INVERNESS, DINGWALL, BADENOCH, Urquhart + link = { autogenerated = yes imp = 2131 ck3 = 1708 } # Ouirouedroum Akron -> WICK + link = { autogenerated = yes imp = 2122 ck3 = 1706 ck3 = 1707 } # Cornavii -> DURNESS, THURSO + link = { autogenerated = yes imp = 2121 ck3 = 1704 ck3 = 8779 } # Caereni -> GAIRLOCH, Assynt + link = { autogenerated = yes imp = 2117 ck3 = 1702 ck3 = 1695 ck3 = 1696 } # Epidii -> LOMOND, DUMBARTON, GLASGOW + link = { autogenerated = yes imp = 6311 ck3 = 1700 ck3 = 1701 } # Creones Australes -> KILMARTEN, GLENCOE + link = { autogenerated = yes imp = 2172 ck3 = 17 ck3 = 8743 } # Voluntia Orientalis -> ARMAGH, Dungannon + link = { autogenerated = yes imp = 2108 ck3 = 1698 ck3 = 1699 } # Manavia -> CASTLETOWN, RAMSEY + link = { autogenerated = yes imp = 2128 ck3 = 1692 } # Scitis -> SKYE + link = { autogenerated = yes imp = 2126 ck3 = 1690 } # Epidion Akron -> ARRAN + link = { autogenerated = yes imp = 2127 ck3 = 1689 ck3 = 1691 } # Malaios -> ISLAY, MULL + link = { autogenerated = yes imp = 2124 ck3 = 1687 ck3 = 1688 ck3 = 1738 } # Lindon -> STRATHGRYTE, CUNNINGHAM, CADYOU + link = { autogenerated = yes imp = 2112 ck3 = 1683 ck3 = 1686 ck3 = 1737 } # Damnonii -> SANQUHAR, KYLE, LANARK + link = { autogenerated = yes imp = 2110 ck3 = 1682 } # Selgovae -> KILCUDBRITE + link = { autogenerated = yes imp = 2109 ck3 = 1680 ck3 = 1684 ck3 = 1685 } # Novantae -> MAYBOLE, WIGTOWN, GIRVAN + link = { autogenerated = yes imp = 2113 ck3 = 1677 ck3 = 1678 ck3 = 1681 ck3 = 1740 } # Trimontium -> KELSO, JEDBURGH, DUMFRIES, SELKIRK + link = { autogenerated = yes imp = 2111 ck3 = 1675 ck3 = 1676 ck3 = 1728 ck3 = 1729 } # Otadini -> BERWICK, DUNBAR, HADDINGTON, GALASHIELS + link = { autogenerated = yes imp = 2106 ck3 = 1670 ck3 = 1671 ck3 = 1672 } # Canovium -> DENBIGH, WREXHAM, RUTHIN + link = { autogenerated = yes imp = 2105 ck3 = 1669 ck3 = 1673 ck3 = 1674 } # Seguntium -> LLANDUDNO, YNS MON, HOLYHEAD + link = { autogenerated = yes imp = 2104 ck3 = 1665 ck3 = 1666 ck3 = 1667 ck3 = 1668 } # Ganganon Akron -> DOLGELLAU, CORWEN, CAERNARFON, LLYN + link = { autogenerated = yes imp = 2102 ck3 = 1664 } # Levobrinta -> NEWTOWN + link = { autogenerated = yes imp = 2107 ck3 = 1663 } # Plaenium -> WELSHPOOL + link = { autogenerated = yes imp = 2100 ck3 = 1661 } # Magnis -> LLANDRINDOD + link = { autogenerated = yes imp = 8522 imp = 8520 imp = 8523 ck3 = 166 } # Svirkos, Garais, Narachanski -> BRASLAU + link = { autogenerated = yes imp = 2097 ck3 = 1659 } # Cicucium -> BRECON + link = { autogenerated = yes imp = 2103 ck3 = 1658 ck3 = 1662 } # Carona -> ABERYSTWYTH, RHAYADER + link = { autogenerated = yes imp = 2099 ck3 = 1654 ck3 = 1655 ck3 = 1656 } # Oktapitaron Akron -> PEMBROKE, ST DAVIDS, FISHGUARD + link = { autogenerated = yes imp = 2096 ck3 = 1653 ck3 = 1657 ck3 = 1660 } # Dolaucothi -> LLANDOVERY, CARDIGAN, TALGARTH + link = { autogenerated = yes imp = 2095 ck3 = 1652 } # Moridunum -> CARMARTHEN + link = { autogenerated = yes imp = 2094 ck3 = 1650 } # Nidum -> SWANSEA + link = { autogenerated = yes imp = 8507 imp = 8504 imp = 8524 ck3 = 165 } # Aristava, Paezeriai, Izha -> KREVA + link = { autogenerated = yes imp = 2093 ck3 = 1649 } # Bornium -> CARDIFF + link = { autogenerated = yes imp = 2060 ck3 = 1647 ck3 = 1648 } # Savicum -> LUDLOW, BISHOP'S CASTLE + link = { autogenerated = yes imp = 2059 ck3 = 1646 } # Viroconium -> SHREWSBURY + link = { autogenerated = yes imp = 2070 ck3 = 1645 } # Mamucium -> MACCLESFIELD + link = { autogenerated = yes imp = 2047 ck3 = 1643 ck3 = 1644 } # Deva -> CHESTER, NORTHWICH + link = { autogenerated = yes imp = 2081 ck3 = 1642 } # Galava -> FURNESS + link = { autogenerated = yes imp = 2071 ck3 = 1641 } # Coccium -> WEST DERBY + link = { autogenerated = yes imp = 2072 ck3 = 1640 ck3 = 1593 } # Bremetennacum -> SALFORD, HALIFAX + link = { autogenerated = yes imp = 8500 ck3 = 164 } # Dzukjos -> LIDA + link = { autogenerated = yes imp = 2073 ck3 = 1639 } # Portus Setantiorum -> LANCASTER + link = { autogenerated = yes imp = 2084 ck3 = 1638 } # Brocavum -> APPLEBY + link = { autogenerated = yes imp = 2080 ck3 = 1637 } # Calunium -> KENDAL + link = { autogenerated = yes imp = 2082 ck3 = 1636 } # Gabrosentum -> WHITEHAVEN + link = { autogenerated = yes imp = 2091 ck3 = 1635 ck3 = 1679 } # Blatobulgium -> CARLISLE, ANNAN + link = { autogenerated = yes imp = 2101 ck3 = 1633 } # Bravonium -> WIGMORE + link = { autogenerated = yes imp = 2098 ck3 = 1632 ck3 = 1634 } # Gobannium -> Hereford, CLIFFORD + link = { autogenerated = yes imp = 2092 ck3 = 1630 ck3 = 1631 ck3 = 1651 } # Burrium -> NEWPORT, MONMOUTH, CAERPHILLY + link = { autogenerated = yes imp = 7806 ck3 = 163 } # Sudinoia Borealis -> SEJNY + link = { autogenerated = yes imp = 2064 ck3 = 1629 } # Salinae Cornoviorum -> STOKE-ON-TRENT + link = { autogenerated = yes imp = 2046 ck3 = 1628 } # Mediolanum -> WOLVERHAMPTON + link = { autogenerated = yes imp = 2066 ck3 = 1627 } # Aquae Arnemetiae -> STAFFORD + link = { autogenerated = yes imp = 2049 ck3 = 1625 } # Vertis -> EVESHAM + link = { autogenerated = yes imp = 2050 ck3 = 1624 ck3 = 1626 } # Condate Ordovicia -> WORCESTER, KIDDERMINSTER + link = { autogenerated = yes imp = 5433 ck3 = 1621 ck3 = 1622 } # Lutudarum -> DERBY, CHESTERFIELD + link = { autogenerated = yes imp = 8494 ck3 = 162 } # Mamry -> ALITEN + link = { autogenerated = yes imp = 2058 ck3 = 1618 } # Lindum -> NOTTINGHAM + link = { autogenerated = yes imp = 2065 ck3 = 1617 } # Derbentio -> BOSWORTH + link = { autogenerated = yes imp = 2054 ck3 = 1615 } # Ratae -> LEICESTER + link = { autogenerated = yes imp = 2062 ck3 = 1613 ck3 = 1616 } # Vernemetum -> OAKHAM, MELTON + link = { autogenerated = yes imp = 2086 ck3 = 1611 } # Fanum Cocidi -> HEXHAM + link = { autogenerated = yes imp = 2090 ck3 = 1610 ck3 = 1612 } # Bremenium -> BAMBURGH, ROTHBURY + link = { autogenerated = yes imp = 8496 imp = 8493 imp = 8495 ck3 = 161 } # Wigierski, Sniardwy, Dob -> GRODNO + link = { autogenerated = yes imp = 2089 ck3 = 1609 } # Habitancum -> MONKCHESTER + link = { autogenerated = yes imp = 3060 ck3 = 1607 } # Vindolanda -> HARTLEPOOL + link = { autogenerated = yes imp = 2087 ck3 = 1606 ck3 = 1608 } # Vindolava -> DURHAM, DARLINGTON + link = { autogenerated = yes imp = 2056 ck3 = 1605 } # Letocetum -> BIRMINGHAM + link = { autogenerated = yes imp = 2055 ck3 = 1604 } # Manduessedum -> COVENTRY + link = { autogenerated = yes imp = 2048 ck3 = 1603 } # Alauna -> WARWICK + link = { autogenerated = yes imp = 8498 ck3 = 160 } # Vistytis -> MERKINE + link = { autogenerated = yes imp = 2161 ck3 = 16 } # Ivernia -> BALTIMORE + link = { autogenerated = yes imp = 2077 ck3 = 1599 } # Isurium -> RIPON + link = { autogenerated = yes imp = 3059 imp = 5432 imp = 5980 ck3 = 1598 } # Bravoniacum, Lavatrae, Central British Impassable -> RICHMOND + link = { autogenerated = yes imp = 2085 ck3 = 1597 } # Vinovia -> WHITBY + link = { autogenerated = yes imp = 5434 ck3 = 1594 ck3 = 1623 } # Rigodounon -> SHEFFIELD, CASTLETON + link = { autogenerated = yes imp = 2069 ck3 = 1592 ck3 = 1620 } # Lagentium -> DONCASTER, RETFORD + link = { autogenerated = yes imp = 3058 imp = 2074 imp = 5978 ck3 = 1591 } # Calcaria, Verbeia, Central British Impassable -> LEEDS + link = { autogenerated = yes imp = 2079 ck3 = 1590 ck3 = 1596 } # Dictium -> BRIDLINGTON, SCARBOROUGH + link = { autogenerated = yes imp = 8499 ck3 = 159 } # Orija -> VALKININKAI + link = { autogenerated = yes imp = 2076 ck3 = 1589 } # Derventio -> COTTINGHAM + link = { autogenerated = yes imp = 2075 ck3 = 1588 } # Eboracum -> POCKLINGTON + link = { autogenerated = yes imp = 3057 ck3 = 1587 } # Hessulum -> GRIMSBY + link = { autogenerated = yes imp = 2057 ck3 = 1585 ck3 = 1586 } # Bannovallum -> BOSTON, BOLINGBROKE + link = { autogenerated = yes imp = 2063 ck3 = 1584 ck3 = 1601 } # Causennae -> STAMFORD, PETERBOROUGH + link = { autogenerated = yes imp = 2068 ck3 = 1583 } # Petuaria -> LINCOLN + link = { autogenerated = yes imp = 2008 ck3 = 1578 } # Lindinis -> ILCHESTER + link = { autogenerated = yes imp = 2009 ck3 = 1576 ck3 = 1577 } # Aquae Sulis -> BATH, WINTERSTOKE + link = { autogenerated = yes imp = 2000 ck3 = 1575 } # Deventiasteno -> HELSTON + link = { autogenerated = yes imp = 2002 ck3 = 1574 } # Herakleous Akron -> TINTAGEL + link = { autogenerated = yes imp = 2005 ck3 = 1572 ck3 = 1579 } # Iscalis -> BARNSTAPLE, TAUNTON + link = { autogenerated = yes imp = 2004 ck3 = 1571 } # Nemetia -> OKEHAMPTON + link = { autogenerated = yes imp = 2001 ck3 = 1570 ck3 = 1573 } # Fortis Vallum -> TOTNES, LAUNCESTON + link = { autogenerated = yes imp = 7834 ck3 = 157 } # Chrononia Borealis -> SUVALKAI + link = { autogenerated = yes imp = 2006 imp = 2003 ck3 = 1569 } # Olconum, Isca Dumnoniorum -> EXETER + link = { autogenerated = yes imp = 2007 ck3 = 1565 ck3 = 1568 } # Durnovaria -> WAREHAM, LYME + link = { autogenerated = yes imp = 2024 ck3 = 1564 ck3 = 1581 } # Abona -> MALMESBURY, BRISTOL + link = { autogenerated = yes imp = 2011 ck3 = 1562 } # Sorviodunum -> WILTON + link = { autogenerated = yes imp = 2012 ck3 = 1561 } # Cunetio -> SALISBURY + link = { autogenerated = yes imp = 2039 ck3 = 1560 ck3 = 1582 } # Corinium -> WITNEY, WINCHCOMBE + link = { autogenerated = yes imp = 7807 ck3 = 156 } # Saloia -> PANEMUNE + link = { autogenerated = yes imp = 2061 ck3 = 1559 ck3 = 1580 } # Dorn -> BANBURY, Gloucester + link = { autogenerated = yes imp = 2041 ck3 = 1558 } # Alavna -> OXFORD + link = { autogenerated = yes imp = 2026 ck3 = 1557 } # Durocornovium -> ABINGDON + link = { autogenerated = yes imp = 2025 ck3 = 1556 ck3 = 1563 } # Verluccio -> NEWBURY, RAMSBURY + link = { autogenerated = yes imp = 2043 ck3 = 1553 } # Magiovinium -> NEWPORT + link = { autogenerated = yes imp = 2045 ck3 = 1551 ck3 = 1600 } # Bannaventa -> BUCKINGHAM, NORTHAMPTON + link = { autogenerated = yes imp = 8503 ck3 = 155 } # Borodinskoye -> VILNIUS + link = { autogenerated = yes imp = 2014 ck3 = 1549 } # Vectis -> CARISBROOKE + link = { autogenerated = yes imp = 2016 ck3 = 1547 ck3 = 1555 } # Calleva -> BASINGSTOKE, READING + link = { autogenerated = yes imp = 2013 ck3 = 1546 } # Venta -> PORTSMOUTH + link = { autogenerated = yes imp = 2010 ck3 = 1545 ck3 = 1548 ck3 = 1566 ck3 = 1567 } # Vindocladia -> SOUTHAMPTON, CHRISTCHURCH, POOLE, SHAFTESBURY + link = { autogenerated = yes imp = 2015 ck3 = 1544 } # Leucomagus -> WINCHESTER + link = { autogenerated = yes imp = 2053 ck3 = 1542 } # Durobrivae -> NORMAN CROSS + link = { autogenerated = yes imp = 2052 ck3 = 1541 ck3 = 1543 } # Durovigutum -> HURSTINGSTONE, LEIGHTONSTONE + link = { autogenerated = yes imp = 8511 ck3 = 154 } # Asvejos -> KERNAVE + link = { autogenerated = yes imp = 2044 ck3 = 1538 ck3 = 1602 } # Lactodorum -> BEDFORD, KETTERING + link = { autogenerated = yes imp = 2037 ck3 = 1537 } # Denevia -> ELY + link = { autogenerated = yes imp = 2034 ck3 = 1533 ck3 = 1534 } # Duroliponte -> HERTFORD, CAMBRIDGE + link = { autogenerated = yes imp = 2051 ck3 = 1532 ck3 = 1539 ck3 = 1540 } # Durocobrivae -> SAINT ALBANS, AMPTHILL, LUTON + link = { autogenerated = yes imp = 2027 ck3 = 1531 ck3 = 1552 ck3 = 1554 } # Verulamium -> BERKHAMSTED, AYLESBURY, WYCOMBE + link = { autogenerated = yes imp = 8506 ck3 = 153 } # Tytuvenu -> TRAKAI + link = { autogenerated = yes imp = 2018 ck3 = 1528 ck3 = 1529 ck3 = 1530 } # Pontes -> WOXBRIGGE, GORE, BRENTFORD + link = { autogenerated = yes imp = 2031 ck3 = 1524 ck3 = 1525 } # Branodunum -> WALSINGHAM, LYNN + link = { autogenerated = yes imp = 2032 ck3 = 1523 } # Venta Icenorum -> THETFORD + link = { autogenerated = yes imp = 2035 ck3 = 1521 ck3 = 1535 ck3 = 1536 } # Bramulovium -> BEODERICSWORTH, RADFIELD, PAPWORTH + link = { autogenerated = yes imp = 2033 ck3 = 1520 ck3 = 1522 } # Garrianonum -> BLYTHING, NORWICH + link = { autogenerated = yes imp = 8513 imp = 8514 imp = 8516 ck3 = 152 } # Birzu, Sartu, Paliene -> BIRZAI + link = { autogenerated = yes imp = 2036 ck3 = 1518 ck3 = 1519 } # Aspallitorum -> IPSWICH, SUDBURY + link = { autogenerated = yes imp = 2030 ck3 = 1517 } # Sinomagus -> DUNMOW + link = { autogenerated = yes imp = 2022 ck3 = 1516 ck3 = 1527 } # Londinium -> CHELMSFORD, LONDON + link = { autogenerated = yes imp = 2028 ck3 = 1515 } # Camulodunum -> MALDON + link = { autogenerated = yes imp = 2029 ck3 = 1514 } # Combretovium -> COLCHESTER + link = { autogenerated = yes imp = 2038 ck3 = 1512 ck3 = 1513 ck3 = 1526 } # Noviomagus -> KINGSTON, TANDBRIDGE, SOUTHWARK + link = { autogenerated = yes imp = 2042 ck3 = 1510 ck3 = 1511 } # Vindomis -> CHERTSEY, GUILDFORD + link = { autogenerated = yes imp = 8515 ck3 = 151 } # Grazutes -> UTENA + link = { autogenerated = yes imp = 2020 ck3 = 1509 } # Anderitum -> HASTINGS + link = { autogenerated = yes imp = 2017 ck3 = 1507 } # Noviomagus Durotrigiorum -> CHICHESTER + link = { autogenerated = yes imp = 2019 ck3 = 1506 ck3 = 1508 } # Novus Portus -> LEWES, ARUN + link = { autogenerated = yes imp = 2023 ck3 = 1504 ck3 = 1505 } # Vagniacis -> ROCHESTER, TONBRIDGE + link = { autogenerated = yes imp = 2021 ck3 = 1502 ck3 = 1503 } # Durovernum -> DOVER, CANTERBURY + link = { autogenerated = yes imp = 2078 ck3 = 1500 ck3 = 1595 } # Cataractonium -> YARLESTRE, YORK + link = { autogenerated = yes imp = 8519 ck3 = 150 ck3 = 137 } # Jekabpils -> OKNIST, DAUGAVPILS + link = { autogenerated = yes imp = 2208 ck3 = 15 ck3 = 8741 } # Darinia Australis -> DOWNPATRICK, Bangor + link = { autogenerated = yes imp = 2088 imp = 5979 ck3 = 1499 } # Virosidum, Central British Impassable -> BOLTON + link = { autogenerated = yes imp = 6448 ck3 = 1492 } # Issyk-Kul -> LAKES TARTARIA + link = { autogenerated = yes imp = 6447 imp = 6445 imp = 6446 ck3 = 1491 } # LAKE, LAKE, LAKE -> TRANSOXIANA LAKES + link = { autogenerated = yes imp = 6416 ck3 = 1490 } # LAKE -> Tibet Lakes + link = { autogenerated = yes imp = 8510 ck3 = 149 } # Zirnajai -> VILKMERGE + link = { autogenerated = yes imp = 6353 imp = 6352 ck3 = 1486 } # LAKE, LAKE -> RUSSIAN LAKES 2 + link = { autogenerated = yes imp = 8814 ck3 = 1484 } # PersianLakes -> PERSIAN LAKES + link = { autogenerated = yes imp = 2579 imp = 5982 imp = 6376 imp = 7685 ck3 = 1483 } # Delta Nili, Moeris, Canal of the Pharaohs, Canal of the Pharaohs -> EGYPT LAKES + link = { autogenerated = yes imp = 6425 imp = 6424 imp = 6428 ck3 = 1482 } # Matianus, Arsissa, Lychnitis -> EAST TURKISH LAKES + link = { autogenerated = yes imp = 6407 imp = 6393 imp = 6394 imp = 6395 imp = 6396 imp = 6400 imp = 6401 imp = 6402 imp = 6403 imp = 6405 imp = 6406 imp = 8040 imp = 8041 imp = 8053 ck3 = 1481 } # Tatta, Dascylitis, Apolloniatis, Ascania, LAKE, LAKE, LAKE, LAKE, LAKE, LAKE, Carallis, Eblu, Aksehir, Mazaka Lake -> WEST TURKISH LAKES + link = { autogenerated = yes imp = 6382 imp = 6317 imp = 6360 imp = 6361 imp = 6383 imp = 6385 imp = 6388 imp = 6389 ck3 = 1480 } # Brygeis Megale, Kopais, LAKE, Labeatis, Brygeis Mikra, Trichonis, Koroneia, Bolbe -> GREEK LAKES + link = { autogenerated = yes imp = 6356 ck3 = 1479 } # Pelsodis -> HUNGARIAN LAKES + link = { autogenerated = yes imp = 6373 imp = 5983 imp = 6370 imp = 6371 imp = 6374 imp = 6375 imp = 6378 ck3 = 1478 } # Benacus, Sabatinus, LAKE, LAKE, LAKE, Volsinii, Trasumennus -> ITALIAN LAKES + link = { autogenerated = yes imp = 6299 imp = 6303 imp = 6305 ck3 = 1477 } # LAKE, LAKE, LAKE -> IRISH LAKES + link = { autogenerated = yes imp = 5836 imp = 6321 imp = 9177 ck3 = 1476 } # Oceanus Sarmaticus, LAKE, Viadrus -> DANISH LAKES + link = { autogenerated = yes imp = 6454 imp = 6345 ck3 = 1474 } # LAKE, LAKE -> SOUTH NORWAY LAKES + link = { autogenerated = yes imp = 6350 imp = 6335 imp = 6336 imp = 6338 imp = 6339 ck3 = 1473 } # LAKE, LAKE, LAKE, LAKE, LAKE -> SOUTH SWEDEN LAKES + link = { autogenerated = yes imp = 6453 imp = 6341 imp = 6343 imp = 6452 ck3 = 1472 } # LAKE, LAKE, LAKE, LAKE -> MIDDLE SWEDEN LAKES + link = { autogenerated = yes imp = 2837 imp = 2824 imp = 2828 imp = 2831 imp = 2833 imp = 2834 imp = 2835 imp = 2838 imp = 2840 imp = 2841 imp = 2843 imp = 2869 imp = 2871 imp = 2872 imp = 2873 imp = 2874 imp = 2875 imp = 2876 imp = 2877 imp = 2878 imp = 2879 imp = 2880 imp = 2881 imp = 2882 imp = 2883 imp = 2884 imp = 2885 imp = 2886 imp = 2887 imp = 2888 imp = 2889 imp = 2890 imp = 2891 imp = 2894 imp = 2903 imp = 2904 imp = 2905 imp = 2906 imp = 2907 imp = 2908 imp = 2909 imp = 2910 imp = 2911 imp = 2913 imp = 2914 imp = 2915 imp = 2917 imp = 2918 imp = 2920 imp = 2921 imp = 2922 imp = 2923 imp = 2925 imp = 2929 imp = 2930 imp = 2931 imp = 2932 imp = 7847 imp = 7848 imp = 7849 ck3 = 1467 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, SEAZONE IMPASSABLE WASTELAND, SEAZONE IMPASSABLE WASTELAND, SEAZONE IMPASSABLE WASTELAND -> INDIAN OCEAN TI + link = { autogenerated = yes imp = 7183 ck3 = 1445 } # Rucya -> Aksu + link = { autogenerated = yes imp = 6749 ck3 = 1441 ck3 = 9601 } # Cherchen -> Cherchen, Waxxari + link = { autogenerated = yes imp = 6744 ck3 = 1439 } # Kashgar -> Kashgar + link = { autogenerated = yes imp = 9031 imp = 9023 imp = 9030 imp = 9029 ck3 = 1432 } # Zloiar, Laga, Vaca, Dena -> Symbyl + link = { autogenerated = yes imp = 7269 imp = 7266 imp = 7272 imp = 6793 ck3 = 1431 } # Jaxartia, Qaram, Khanus, Otrar -> Otrar + link = { autogenerated = yes imp = 6779 imp = 6780 imp = 9117 ck3 = 1424 } # Suyab, Nevaket, Impassable -> Suyab + link = { autogenerated = yes imp = 6787 ck3 = 1423 ck3 = 7216 ck3 = 7217 } # Narin -> Fergana, Arslanbob, Sarybulak + link = { autogenerated = yes imp = 7406 ck3 = 1422 } # Sitapur -> Naimisa + link = { autogenerated = yes imp = 4451 imp = 4450 ck3 = 1421 } # Sravasti, Kapilavastu -> Sravasti + link = { autogenerated = yes imp = 7488 ck3 = 1420 } # Bethadipa -> Simaramapura + link = { autogenerated = yes imp = 4461 ck3 = 1419 } # Dwarbanga -> Mithila + link = { autogenerated = yes imp = 7350 ck3 = 1418 ck3 = 9156 ck3 = 9157 } # Gosira -> Haruppeswara, Sepla, Itanagar + link = { autogenerated = yes imp = 7052 ck3 = 1416 ck3 = 7868 ck3 = 7869 } # Kolhapura -> Kolhapur, Kurundaka, Pranala + link = { autogenerated = yes imp = 6900 imp = 6899 imp = 5307 ck3 = 1413 } # Elankon, Kottiara, IP 308 -> Venadu + link = { autogenerated = yes imp = 2853 imp = 2848 imp = 2858 imp = 2870 ck3 = 1412 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea + link = { autogenerated = yes imp = 2977 imp = 2973 imp = 2974 imp = 2978 imp = 6459 imp = 6463 imp = 6464 imp = 6465 imp = 6466 imp = 6468 imp = 7795 ck3 = 1411 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, LAKE, LAKE, LAKE, LAKE, LAKE, LAKE, Ganges -> Bay of Bengal + link = { autogenerated = yes imp = 2972 imp = 2966 imp = 2971 ck3 = 1410 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal + link = { autogenerated = yes imp = 2970 imp = 2964 imp = 2965 imp = 2969 ck3 = 1409 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal + link = { autogenerated = yes imp = 2968 imp = 2958 imp = 2963 imp = 2967 imp = 2985 imp = 2987 ck3 = 1407 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal + link = { autogenerated = yes imp = 2982 imp = 2956 imp = 2957 imp = 2960 imp = 2961 imp = 2962 imp = 2983 imp = 2984 imp = 6455 imp = 9217 ck3 = 1406 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, LAKE, Penner -> Bay of Bengal + link = { autogenerated = yes imp = 2981 imp = 2946 imp = 2947 imp = 2953 imp = 2954 imp = 2980 ck3 = 1405 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal + link = { autogenerated = yes imp = 2959 imp = 2940 imp = 2948 imp = 2955 ck3 = 1404 } # Sinus Gangeticus, Mare Erythraeum, Sinus Gangeticus, Sinus Gangeticus -> Palk Bay + link = { autogenerated = yes imp = 2941 imp = 2938 imp = 2942 imp = 2943 ck3 = 1402 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Laccadive Sea + link = { autogenerated = yes imp = 2896 imp = 2866 imp = 2867 imp = 2868 imp = 2892 imp = 2897 imp = 2898 imp = 2902 ck3 = 1401 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Laccadive Sea + link = { autogenerated = yes imp = 2912 imp = 2865 imp = 2893 imp = 2916 ck3 = 1400 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea + link = { autogenerated = yes imp = 2173 ck3 = 14 } # Darinia Borealis -> CARRICKFERGUS + link = { autogenerated = yes imp = 2919 imp = 2863 imp = 2864 imp = 2928 ck3 = 1399 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea + link = { autogenerated = yes imp = 2859 imp = 2924 imp = 2927 ck3 = 1398 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea + link = { autogenerated = yes imp = 2855 imp = 2856 ck3 = 1397 } # Rann of Kutch, Gulf of Kutch -> Arabian Sea + link = { autogenerated = yes imp = 2849 imp = 2850 imp = 2851 imp = 2852 ck3 = 1396 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea + link = { autogenerated = yes imp = 2816 imp = 2814 imp = 2815 imp = 2817 imp = 2818 ck3 = 1395 } # Sinus Persicus, Sinus Persicus, Sinus Persicus, Sinus Persicus, Sinus Persicus -> Persian Gulf + link = { autogenerated = yes imp = 2821 imp = 2813 imp = 2819 ck3 = 1394 } # Sinus Persicus, Sinus Persicus, Sinus Persicus -> Persian Gulf + link = { autogenerated = yes imp = 2809 imp = 2803 imp = 2804 imp = 2808 ck3 = 1393 } # Sinus Persicus, Mare Erythraeum, Mare Erythraeum, Fretum Persarum -> Strait of Hormuz + link = { autogenerated = yes imp = 2806 imp = 2802 imp = 2805 imp = 2807 imp = 2846 ck3 = 1392 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Gulf of Oman + link = { autogenerated = yes imp = 2800 imp = 2801 imp = 2839 ck3 = 1391 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea + link = { autogenerated = yes imp = 2836 imp = 2799 ck3 = 1390 } # Mare Erythraeum, Sinus Sachalites -> Arabian Sea + link = { autogenerated = yes imp = 2823 imp = 2795 imp = 2798 imp = 2829 imp = 2832 ck3 = 1389 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea + link = { autogenerated = yes imp = 2794 imp = 2793 imp = 2796 imp = 2797 imp = 2826 imp = 2827 imp = 2830 ck3 = 1388 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Guardafui Channel + link = { autogenerated = yes imp = 2783 imp = 2787 imp = 2789 ck3 = 1387 } # Sinus Adenensis, Sinus Adenensis, Sinus Adenensis -> Gulf of Aden + link = { autogenerated = yes imp = 2781 imp = 2782 ck3 = 1386 } # Sinus Adenensis, Sinus Adenensis -> Gulf of Aden + link = { autogenerated = yes imp = 1488 ck3 = 1385 } # Sinus Arabicus -> Bab-el-Mandeb + link = { autogenerated = yes imp = 1482 imp = 1480 imp = 1481 imp = 1483 imp = 1493 imp = 1494 imp = 1495 imp = 1496 ck3 = 1384 } # Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus -> Red Sea + link = { autogenerated = yes imp = 1479 imp = 1477 imp = 1478 imp = 1490 imp = 1491 imp = 1492 ck3 = 1383 } # Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus -> Red Sea + link = { autogenerated = yes imp = 1473 imp = 1474 imp = 1475 imp = 1476 imp = 652 imp = 653 imp = 654 imp = 7684 imp = 7743 imp = 7744 imp = 7745 imp = 7746 ck3 = 1382 } # Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Heroopoliticus, Sinus Arabicus, Sinus Arabicus, Canal of the Pharaohs, $PROV652$, $PROV652$, $PROV653$, $PROV653$ -> Red Sea + link = { autogenerated = yes imp = 7651 ck3 = 1381 } # Balurghat -> Pundravardhana + link = { autogenerated = yes imp = 5480 imp = 5479 imp = 5481 imp = 5482 imp = 5486 ck3 = 1378 } # Dyruzh, Alicodra, Zantem, Gyesch, Sechoria -> Gurganj + link = { autogenerated = yes imp = 7482 ck3 = 1377 } # Itwa -> Jasnaul + link = { autogenerated = yes imp = 9257 ck3 = 1376 ck3 = 4520 } # Gomal -> Daraban, ZHOB + link = { autogenerated = yes imp = 4319 ck3 = 1375 } # Gorydale -> Kafirkot + link = { autogenerated = yes imp = 4362 ck3 = 1370 } # Azaika -> Mohenjo_Daro + link = { autogenerated = yes imp = 4403 ck3 = 1367 ck3 = 1368 } # Usinaragiri -> Saharanpur, Hastinapura + link = { autogenerated = yes imp = 4408 imp = 4387 imp = 4409 ck3 = 1366 } # Madrakara, Agrodakha, Arispara -> Asigarh + link = { autogenerated = yes imp = 4406 ck3 = 1365 } # Rohtak -> Indraprastha + link = { autogenerated = yes imp = 5445 imp = 4410 ck3 = 1364 } # Grodaka, Indabara -> Tribandapura + link = { autogenerated = yes imp = 9279 ck3 = 1363 } # Harapa -> Dipalpur + link = { autogenerated = yes imp = 4379 imp = 4389 ck3 = 1362 } # Phegas, Iravatyavar -> Lahur + link = { autogenerated = yes imp = 4380 ck3 = 1361 } # Mallava -> Shorkot + link = { autogenerated = yes imp = 7218 ck3 = 1359 ck3 = 3464 } # Yamaprastha -> Mathura, Etah + link = { autogenerated = yes imp = 7381 ck3 = 1358 } # Badaun -> Vodamayutja + link = { autogenerated = yes imp = 7306 ck3 = 1357 ck3 = 3466 } # Ranasthambapura -> Sripatha, Bayana + link = { autogenerated = yes imp = 7410 ck3 = 1356 } # Kora Pancala -> Kanyakubja + link = { autogenerated = yes imp = 7437 imp = 7439 imp = 7440 ck3 = 1355 } # Dhavagarta, Bundi, Khandar -> Ranthambore + link = { autogenerated = yes imp = 7389 ck3 = 1353 ck3 = 3479 ck3 = 3969 } # Nehrawati -> Harshnath, Kuchaman, Khaluvana + link = { autogenerated = yes imp = 4415 ck3 = 1352 ck3 = 3459 ck3 = 3477 } # Sirsa -> Sarasvati, Bhatnir, Dadrewa + link = { autogenerated = yes imp = 5596 imp = 5594 ck3 = 1351 } # Druzhiya, Gilgit -> Gilgit + link = { autogenerated = yes imp = 6421 imp = 7661 imp = 7662 imp = 7663 imp = 7664 ck3 = 1348 } # LAKE, LAKE, LAKE, LAKE, LAKE -> TIBETAN LAKES + link = { autogenerated = yes imp = 4484 ck3 = 1346 ck3 = 3480 ck3 = 3487 } # Pushkara -> Shakambhari, Makrana, Purnatallakapura + link = { autogenerated = yes imp = 7431 ck3 = 1345 ck3 = 3492 } # Bhindar -> Aghata, Nagahrada + link = { autogenerated = yes imp = 7657 ck3 = 1342 } # Purushapura -> Purushapura + link = { autogenerated = yes imp = 4320 imp = 4317 ck3 = 1341 } # Singhapura, Rudera -> Nandana + link = { autogenerated = yes imp = 4351 imp = 4348 imp = 4350 ck3 = 1340 } # Apakara, Sibipura, Mulasthanapura -> Karor + link = { autogenerated = yes imp = 4377 ck3 = 1339 } # Bisambritai -> Rajanpur + link = { autogenerated = yes imp = 4349 ck3 = 1338 } # Mallia -> Multan + link = { autogenerated = yes imp = 4371 ck3 = 1337 } # Deogarh -> Uch + link = { autogenerated = yes imp = 6822 ck3 = 1331 ck3 = 3396 } # Barbarikon -> Sonda, Nasarpur + link = { autogenerated = yes imp = 8518 ck3 = 133 } # Viku -> SELPILS + link = { autogenerated = yes imp = 4428 ck3 = 1328 } # Prayaga -> Prayaga + link = { autogenerated = yes imp = 9271 ck3 = 1327 } # Kolhua -> Rothas + link = { autogenerated = yes imp = 7340 ck3 = 1325 } # Suhma -> Madhupur + link = { autogenerated = yes imp = 7491 ck3 = 1324 } # Sripur -> Suvarnagram + link = { autogenerated = yes imp = 7341 ck3 = 1321 ck3 = 9155 } # Sonitapur -> Kamarupanagara, Morshing + link = { autogenerated = yes imp = 8508 imp = 8509 ck3 = 132 } # Zagares, Joniskis -> UPYTE + link = { autogenerated = yes imp = 7334 ck3 = 1319 ck3 = 833 } # Bikrampur -> Bikrampur, Ekdala + link = { autogenerated = yes imp = 7356 ck3 = 1318 ck3 = 834 } # Karmanta -> Devaparvata, Chandpur + link = { autogenerated = yes imp = 7785 imp = 7783 imp = 7784 imp = 9233 ck3 = 1316 } # Dyardanes, Dyardanes, Dyardanes, $PROV7783$ -> Brahmaputra River + link = { autogenerated = yes imp = 7707 imp = 7708 imp = 9223 ck3 = 1315 } # Ganges, Ganges, $PROV7701$ -> Ganges River + link = { autogenerated = yes imp = 9228 imp = 9227 imp = 9229 ck3 = 1314 } # $PROV7701$, $PROV7701$, $PROV7701$ -> Ganges River + link = { autogenerated = yes imp = 7706 imp = 7705 ck3 = 1313 } # Ganges, Ganges -> Ganges River + link = { autogenerated = yes imp = 7703 imp = 7704 imp = 7791 ck3 = 1312 } # Ganges, Ganges, Ganges -> Ganges River + link = { autogenerated = yes imp = 7702 imp = 7701 ck3 = 1311 } # Ganges, Ganges -> Ganges River + link = { autogenerated = yes imp = 7530 ck3 = 1310 ck3 = 1369 } # Dioscoridus -> Qualnsiyah, Socotra + link = { autogenerated = yes imp = 8505 ck3 = 131 } # Glitu -> KEDAINIAI + link = { autogenerated = yes imp = 7700 imp = 7692 ck3 = 1309 } # Indus, Indus -> Indus River + link = { autogenerated = yes imp = 7698 imp = 7696 imp = 7697 imp = 7699 ck3 = 1308 } # Indus, Indus, Indus, Indus -> Indus River + link = { autogenerated = yes imp = 7695 ck3 = 1307 } # Indus -> Indus River + link = { autogenerated = yes imp = 6449 ck3 = 1305 } # LAKE -> Balkhash Lake + link = { autogenerated = yes imp = 4480 imp = 4473 imp = 7429 ck3 = 1302 } # Ghosundi, Madhyamika, Pratapgarh -> Chitrakut + link = { autogenerated = yes imp = 4434 ck3 = 1301 ck3 = 3959 } # Sotthavati -> Mahoba, Ajaigarh + link = { autogenerated = yes imp = 7436 ck3 = 1300 } # Kota -> Kota + link = { autogenerated = yes imp = 8502 ck3 = 130 } # Timofeevo -> KAUNAS + link = { autogenerated = yes imp = 2207 ck3 = 13 } # Robogdia Orientalis -> SLEMISH + link = { autogenerated = yes imp = 7465 ck3 = 1299 } # Shivpuri -> Candhoba + link = { autogenerated = yes imp = 7462 ck3 = 1298 } # Chanderi -> Chanderi + link = { autogenerated = yes imp = 6849 ck3 = 1297 } # Bibakta -> Debul + link = { autogenerated = yes imp = 6825 imp = 6841 ck3 = 1295 } # Kanthi, Bacchav -> Kanthakota + link = { autogenerated = yes imp = 7412 imp = 6857 ck3 = 1294 } # Satyapura, Detta -> Satyapura + link = { autogenerated = yes imp = 7415 ck3 = 1292 } # Mehsana -> Anahilapataka + link = { autogenerated = yes imp = 7419 ck3 = 1291 } # Simalwara -> Mohadavasaka + link = { autogenerated = yes imp = 6854 ck3 = 1290 ck3 = 3376 } # Kheta -> Khetaka, Ashaval + link = { autogenerated = yes imp = 8501 ck3 = 129 } # Pagramancio -> VELIUONA + link = { autogenerated = yes imp = 7300 ck3 = 1289 } # Ayanakagraha -> Dadhipadra + link = { autogenerated = yes imp = 4475 ck3 = 1288 } # Ujjayini -> Ujjayini + link = { autogenerated = yes imp = 7317 imp = 7456 ck3 = 1286 } # Deogarh, Kherla -> Kherla + link = { autogenerated = yes imp = 7097 ck3 = 1285 } # Amaravati -> Acalapura + link = { autogenerated = yes imp = 4433 imp = 7373 ck3 = 1284 } # Kitagiri, Sringivera -> Manikpur + link = { autogenerated = yes imp = 7376 ck3 = 1283 } # Asani -> Asni + link = { autogenerated = yes imp = 2040 ck3 = 12826 } # Glevum -> (Unknown) + link = { autogenerated = yes imp = 7382 imp = 7411 ck3 = 1282 } # Raebareli, Unnao -> Lalganj + link = { autogenerated = yes imp = 4431 imp = 7475 ck3 = 1281 } # Sumsumaragiri, Mau -> Chunar + link = { autogenerated = yes imp = 4456 ck3 = 1279 } # Nimisa -> Hardoi + link = { autogenerated = yes imp = 7453 ck3 = 1278 ck3 = 3967 } # Kakaradika -> Gurgi, Chandrehi + link = { autogenerated = yes imp = 9277 ck3 = 1277 ck3 = 1241 ck3 = 1272 } # Bargarh -> Tummana, Koriya, Ratanpur + link = { autogenerated = yes imp = 4444 ck3 = 1276 ck3 = 873 } # Gaya -> Gaya, Bodh_Gaya + link = { autogenerated = yes imp = 7375 ck3 = 1275 ck3 = 1414 } # Kahnpuria -> Jajmau, Kora + link = { autogenerated = yes imp = 7467 imp = 7468 imp = 5362 ck3 = 1274 } # Damoh, Deori, IP 363 -> Damoh + link = { autogenerated = yes imp = 7459 ck3 = 1271 ck3 = 3966 } # Sihora -> Tripuri, Nohta + link = { autogenerated = yes imp = 7129 imp = 5448 imp = 6056 ck3 = 1270 } # Gondia, IMPASSABLE, Gondwana -> Kiranapura + link = { autogenerated = yes imp = 7819 ck3 = 127 } # Careotaia Australis -> SIAULIAI + link = { autogenerated = yes imp = 7115 ck3 = 1269 } # Wairagar -> Canda + link = { autogenerated = yes imp = 6846 ck3 = 1268 } # Horrai -> Dhamalpur + link = { autogenerated = yes imp = 6837 imp = 6820 ck3 = 1267 } # Vardhamane, Valabhi -> Vardhamana + link = { autogenerated = yes imp = 6816 ck3 = 1266 } # Prabhasa -> Somnath + link = { autogenerated = yes imp = 7120 ck3 = 1265 ck3 = 7878 } # Raichur -> Sagar, Raichur + link = { autogenerated = yes imp = 6863 imp = 6860 ck3 = 1264 } # Nagara, Kammonai -> Nandurbar + link = { autogenerated = yes imp = 7128 ck3 = 1261 ck3 = 7924 } # Shegaon -> Parnakheta, Mekhar + link = { autogenerated = yes imp = 7147 ck3 = 1259 } # Vatsagulma -> Vatsagulma + link = { autogenerated = yes imp = 7160 ck3 = 1258 } # Qandar -> Nanded + link = { autogenerated = yes imp = 7152 ck3 = 1257 } # Mankal -> Medak + link = { autogenerated = yes imp = 7149 ck3 = 1256 } # Orugallu -> Orangallu + link = { autogenerated = yes imp = 7145 ck3 = 1255 } # Vemulavada -> Vemulavada + link = { autogenerated = yes imp = 7039 ck3 = 1253 ck3 = 7846 } # Kantakossyla -> Nilagiri, Mutfili + link = { autogenerated = yes imp = 7122 ck3 = 1252 ck3 = 7914 } # Jagdalpur -> Barasuru, Malkangiri + link = { autogenerated = yes imp = 7474 imp = 7659 ck3 = 1251 } # Rohtas, Madanpur -> Sasaram + link = { autogenerated = yes imp = 4455 ck3 = 1250 } # Jaisingpura -> Ayodhya + link = { autogenerated = yes imp = 7344 ck3 = 1246 } # Goalpara -> Goalpara + link = { autogenerated = yes imp = 7323 ck3 = 1244 } # Kirrhadia -> Kamatapur + link = { autogenerated = yes imp = 7398 imp = 7337 ck3 = 1243 } # Kushtia, Aganagara -> Karnasubarna + link = { autogenerated = yes imp = 7368 ck3 = 1242 ck3 = 844 } # Yavana -> Lakhnor, Kalyaneshwari + link = { autogenerated = yes imp = 7394 imp = 7359 ck3 = 1240 } # Fathabad, Mukund -> Fathabad + link = { autogenerated = yes imp = 7328 ck3 = 1239 ck3 = 1323 ck3 = 845 ck3 = 855 } # Vardhamana -> Vijayapura, Nabadwipa, Gopbhum, Attahasa + link = { autogenerated = yes imp = 7365 ck3 = 1238 ck3 = 859 ck3 = 860 } # Ladha -> Mallabhum, Visnupura, Umardan + link = { autogenerated = yes imp = 9275 ck3 = 1237 ck3 = 910 } # Bokaro -> Rajrappa, Kenduli + link = { autogenerated = yes imp = 7395 imp = 7330 ck3 = 1236 } # Barisal, Bargysi -> Candradvipa + link = { autogenerated = yes imp = 7362 ck3 = 1235 } # Mallabhum -> Tamralipti + link = { autogenerated = yes imp = 7338 imp = 5370 imp = 5371 ck3 = 1234 } # Deoghar, IP 371, IP 372 -> Deogarh2 + link = { autogenerated = yes imp = 7345 ck3 = 1233 ck3 = 857 } # Nabadwipa -> Saptagrama, Pandua + link = { autogenerated = yes imp = 7391 ck3 = 1232 } # Kharagpur -> Midnapore + link = { autogenerated = yes imp = 7174 ck3 = 1231 ck3 = 3980 } # Jajatipura -> Viraja, Bhadrak + link = { autogenerated = yes imp = 7168 ck3 = 1230 ck3 = 3994 } # Suvarnapura -> Suvarnapura, Yajatinagara + link = { autogenerated = yes imp = 7808 ck3 = 123 ck3 = 124 } # Rubonia -> JURBARKAS, RASEINIAI + link = { autogenerated = yes imp = 7134 ck3 = 1227 } # Chakrakot -> Cakrakuta + link = { autogenerated = yes imp = 7085 ck3 = 1225 ck3 = 930 } # Jaugada -> Puri, Sakshigopal + link = { autogenerated = yes imp = 7084 ck3 = 1222 ck3 = 1415 } # Lingarajupalem -> Rajamahendravaram, Pithapuram + link = { autogenerated = yes imp = 7019 imp = 7041 ck3 = 1221 } # Andhapura, Kottobora -> Vijayawada + link = { autogenerated = yes imp = 6881 imp = 6880 ck3 = 1220 } # Tyrannosboas, Vasi -> Goa + link = { autogenerated = yes imp = 7001 ck3 = 1219 } # Melange -> Potapi + link = { autogenerated = yes imp = 7091 ck3 = 1218 ck3 = 7854 } # Bhakkuli -> Alampur, Kandanavolu + link = { autogenerated = yes imp = 7029 ck3 = 1217 } # Bendakaluru -> Nandagiri + link = { autogenerated = yes imp = 7009 imp = 6937 imp = 5311 ck3 = 1216 } # Talavanapura, Tennagora, IP 312 -> Talakad + link = { autogenerated = yes imp = 4427 ck3 = 1215 } # Bhitargaon -> Etawah + link = { autogenerated = yes imp = 6914 ck3 = 1214 } # Alaivay -> Tirunelveli + link = { autogenerated = yes imp = 7104 imp = 9250 ck3 = 1213 } # Siaprava, Jungle -> Kondana + link = { autogenerated = yes imp = 7153 ck3 = 1212 } # Bidar -> Lattalura + link = { autogenerated = yes imp = 7119 ck3 = 1211 ck3 = 7902 } # Kothapala -> Pannagallu, Yetagiri + link = { autogenerated = yes imp = 7154 ck3 = 1210 } # Guriprava -> Manyakheta + link = { autogenerated = yes imp = 7057 ck3 = 1209 } # Nagarjunikonda -> Racakonda + link = { autogenerated = yes imp = 7044 ck3 = 1208 ck3 = 7912 } # Nanagaina -> Kambampet, Ellur + link = { autogenerated = yes imp = 7042 ck3 = 1207 } # Pitoura -> Amaravati + link = { autogenerated = yes imp = 7111 imp = 7113 ck3 = 1206 } # Sonnolagi, Mehdnapura -> Taradavadi + link = { autogenerated = yes imp = 7002 ck3 = 1204 } # Nellore -> Nellore + link = { autogenerated = yes imp = 7070 ck3 = 1203 ck3 = 7877 } # Maski -> Idatarainadu, Mushangi + link = { autogenerated = yes imp = 6946 ck3 = 1201 } # Kavera -> Kongu + link = { autogenerated = yes imp = 6885 ck3 = 1200 } # Nouira -> Kanara + link = { autogenerated = yes imp = 7831 ck3 = 120 } # Galindia Orientalis -> RAGNIT + link = { autogenerated = yes imp = 2206 ck3 = 12 } # Voluntia Borealis -> DERRY + link = { autogenerated = yes imp = 7014 imp = 7033 ck3 = 1199 } # Penugonda, Madana -> Penugonda + link = { autogenerated = yes imp = 7109 ck3 = 1198 ck3 = 1202 } # Vijayapura -> Vatapi, Kudalasangama + link = { autogenerated = yes imp = 7035 ck3 = 1197 ck3 = 7853 } # Kalligeris -> Dwarasamudra, Kudala + link = { autogenerated = yes imp = 7125 ck3 = 1194 ck3 = 1262 } # Pandavleni -> Sindkheda, Thalner + link = { autogenerated = yes imp = 4390 imp = 4392 ck3 = 1193 } # Jalandhara, Sarvamanapura -> Jalandhar + link = { autogenerated = yes imp = 4398 ck3 = 1192 } # Bhatiai -> Bhera + link = { autogenerated = yes imp = 7492 ck3 = 1191 } # Aspakora -> Bannu + link = { autogenerated = yes imp = 7830 ck3 = 119 ck3 = 122 } # Galindia Occidentalis -> TILSIT, LABIAU + link = { autogenerated = yes imp = 7117 ck3 = 1189 ck3 = 1195 } # Satyiyani -> Amalner, Bhamer + link = { autogenerated = yes imp = 7182 ck3 = 1188 ck3 = 7899 } # Jhodga -> Erandol, Elapura + link = { autogenerated = yes imp = 7126 ck3 = 1187 } # Burhanpur -> Changdev + link = { autogenerated = yes imp = 7263 ck3 = 1186 } # Jaxartes -> Chach + link = { autogenerated = yes imp = 7424 ck3 = 1185 } # Omkareshwar -> Khandwa + link = { autogenerated = yes imp = 7311 ck3 = 1287 } # Khandav -> Asirgarh + link = { autogenerated = yes imp = 7316 ck3 = 1184 ck3 = 1263 } # Khargone -> Khargone, Burhanpur + link = { autogenerated = yes imp = 7114 ck3 = 1183 } # Tapia -> Borgarh + link = { autogenerated = yes imp = 7315 ck3 = 1182 } # Barwani -> Bawangaja + link = { autogenerated = yes imp = 6997 imp = 4324 imp = 4325 imp = 5373 ck3 = 1180 } # Ora, Gorya, Mardan, IP 374 -> Udabhanda + link = { autogenerated = yes imp = 7809 ck3 = 118 ck3 = 125 } # Rubonia Occidentalis -> MEMEL, TAURAGE + link = { autogenerated = yes imp = 4340 ck3 = 1179 } # Sakala -> Sakala + link = { autogenerated = yes imp = 7354 ck3 = 1177 ck3 = 9166 ck3 = 9164 ck3 = 9165 } # Sadiya -> Kundina, Tezu, Anini, Roing + link = { autogenerated = yes imp = 4491 imp = 7414 ck3 = 1174 } # Samlaji, Patan -> Candravati + link = { autogenerated = yes imp = 4452 ck3 = 1173 } # Sambalhagrama -> Sambhal + link = { autogenerated = yes imp = 7305 imp = 7472 ck3 = 1172 } # Gopadri, Bhind -> Gwalior + link = { autogenerated = yes imp = 4467 ck3 = 1171 ck3 = 3962 } # Ambaloda -> Kalanjara, Khajuraho + link = { autogenerated = yes imp = 7409 ck3 = 1169 ck3 = 3961 } # Kalapriya -> Kalpi, Rath + link = { autogenerated = yes imp = 7380 ck3 = 1167 } # Lakhanpur -> Lakhnau + link = { autogenerated = yes imp = 7374 imp = 7371 ck3 = 1166 } # Kusapura, Jamadaganipura -> Jaunpur + link = { autogenerated = yes imp = 5443 imp = 6053 ck3 = 1165 } # Chattisgarh Jungle, Dakshina Koshala -> Bandhugadha + link = { autogenerated = yes imp = 7458 ck3 = 1164 } # Chauragarh -> Chauragarh + link = { autogenerated = yes imp = 4429 ck3 = 1163 } # Varanasi -> Varanasi + link = { autogenerated = yes imp = 7369 imp = 4449 ck3 = 1162 } # Pipphalivana, Kusinagara -> Kusinagara + link = { autogenerated = yes imp = 7096 ck3 = 1160 } # Kosala -> Rayapura + link = { autogenerated = yes imp = 7452 ck3 = 1159 } # Chhindwara -> Ramagiri + link = { autogenerated = yes imp = 7156 ck3 = 1158 } # Sripratava -> Bidar + link = { autogenerated = yes imp = 7155 ck3 = 1157 ck3 = 7906 } # Kaulas -> Balkonda, Indur + link = { autogenerated = yes imp = 9248 ck3 = 1156 } # Kamalanga -> Kodalaka + link = { autogenerated = yes imp = 7175 ck3 = 1155 } # Bandavala -> Sripuri + link = { autogenerated = yes imp = 4442 ck3 = 1154 } # Nalanda -> Pataliputra + link = { autogenerated = yes imp = 7650 ck3 = 1153 } # Itahar -> Kotivarsa + link = { autogenerated = yes imp = 7400 ck3 = 1152 } # Jayapura -> Mudgagiri + link = { autogenerated = yes imp = 7498 ck3 = 1151 } # Malda -> Laksmanavati + link = { autogenerated = yes imp = 7304 ck3 = 1150 } # Bhojapuri -> Sarangpur + link = { autogenerated = yes imp = 7813 ck3 = 115 ck3 = 116 } # Veltaea Australis -> PALANGA, DUVZARE + link = { autogenerated = yes imp = 7426 ck3 = 1149 } # Dhar -> Dhara + link = { autogenerated = yes imp = 7427 imp = 4498 ck3 = 1148 } # Banswara, Dhammanahadika -> Dasapura + link = { autogenerated = yes imp = 4476 ck3 = 1147 } # Mahismati -> Mandapika + link = { autogenerated = yes imp = 7098 ck3 = 1146 } # Askapala -> Naldurg + link = { autogenerated = yes imp = 8810 ck3 = 11452 } # Shweli -> Mongmit + link = { autogenerated = yes imp = 7065 imp = 7062 imp = 7159 ck3 = 1145 } # Ajanta, Nevasa, Devagiri -> Devagiri + link = { autogenerated = yes imp = 7148 ck3 = 1144 } # Kollipake -> Kollipake + link = { autogenerated = yes imp = 7142 imp = 7143 ck3 = 1143 } # Manyakheta, Kalyani Asika -> Kalyani + link = { autogenerated = yes imp = 7063 ck3 = 1142 ck3 = 7917 } # Atathana -> Pratishthana, Jalna + link = { autogenerated = yes imp = 4422 imp = 4426 ck3 = 1141 } # Antaranjiya, Kampili -> Kol + link = { autogenerated = yes imp = 7015 ck3 = 1140 ck3 = 7850 ck3 = 7851 } # Vanavasi -> Banavasi, Masur, Shringeri + link = { autogenerated = yes imp = 7814 ck3 = 114 } # Veltaea -> GROBIN + link = { autogenerated = yes imp = 7219 ck3 = 1139 } # Suktivati -> Musanagar + link = { autogenerated = yes imp = 4364 ck3 = 1138 } # Oumbrai -> Bhakkar + link = { autogenerated = yes imp = 4358 ck3 = 1137 } # Singhi -> Mansura + link = { autogenerated = yes imp = 6813 ck3 = 1136 ck3 = 3353 } # Dvaraka -> Dvaraka, Bhanvad + link = { autogenerated = yes imp = 6831 ck3 = 1135 ck3 = 3368 } # Satrunavha -> Valabhi, Sihor + link = { autogenerated = yes imp = 6818 ck3 = 1134 } # Girinagara -> Vamanasthali + link = { autogenerated = yes imp = 4493 ck3 = 1133 ck3 = 3333 ck3 = 3378 } # Akota -> Vadodara, Champaner, Darbhavati + link = { autogenerated = yes imp = 7332 ck3 = 1131 ck3 = 832 ck3 = 9657 } # Salariga -> Karmanta, Mainamati, Udaipur + link = { autogenerated = yes imp = 7812 imp = 7815 ck3 = 113 } # Turuntia Borealis, Veltaea Borealis -> BANDAVA + link = { autogenerated = yes imp = 7086 ck3 = 1129 ck3 = 928 } # Tosali -> Kataka, Konarak + link = { autogenerated = yes imp = 7083 ck3 = 1128 ck3 = 1226 } # Sankaram -> Vizagipatam, Nandapur + link = { autogenerated = yes imp = 6859 ck3 = 1127 ck3 = 3381 } # Barygaza -> Akruresvara, Tadkeshwar + link = { autogenerated = yes imp = 6864 imp = 6865 ck3 = 1126 } # Polipoula, Paunar -> Daman + link = { autogenerated = yes imp = 6868 ck3 = 1125 } # Surparaka -> Thana + link = { autogenerated = yes imp = 6884 imp = 6887 ck3 = 1124 } # Chersonesos Vanavasi, Pira -> Honnore + link = { autogenerated = yes imp = 7045 imp = 7040 ck3 = 1123 } # Alluru, Mosali -> Vengipura + link = { autogenerated = yes imp = 7003 imp = 7012 ck3 = 1122 } # Kottis, Palakka -> Udayagiri + link = { autogenerated = yes imp = 7037 imp = 7020 ck3 = 1121 } # Chitradurga, Isila -> Uchangidurga + link = { autogenerated = yes imp = 6990 imp = 6989 ck3 = 1120 } # Ricavatta, Tagadur -> Tagadur + link = { autogenerated = yes imp = 6999 ck3 = 1119 } # Mayurasattapattinam -> Kanchipuram + link = { autogenerated = yes imp = 7030 ck3 = 1118 ck3 = 1196 } # Mahisha -> Manyapura, Srirangapatna + link = { autogenerated = yes imp = 6890 imp = 5309 ck3 = 1117 } # Naura, IP 310 -> Qalqut + link = { autogenerated = yes imp = 6929 imp = 6924 imp = 6931 ck3 = 1115 } # Venni, Karukka, Nikama -> Cholamandalam + link = { autogenerated = yes imp = 6893 ck3 = 1114 } # Tyndis -> Mahoyadapuram + link = { autogenerated = yes imp = 4430 ck3 = 1113 } # Kaushambi -> Kara + link = { autogenerated = yes imp = 6919 imp = 6917 imp = 6921 ck3 = 1112 } # Tangala, Madurai, Perinkari -> Madurai + link = { autogenerated = yes imp = 2617 imp = 2595 imp = 2619 ck3 = 1111 } # Mare Aegaeum, Mare Icarium, Mare Aegaeum -> Aegean Sea + link = { autogenerated = yes imp = 2507 imp = 2515 ck3 = 1110 } # Sinus Veneticus, Sinus Veneticus -> Gulf of Venice + link = { autogenerated = yes imp = 7811 ck3 = 111 ck3 = 128 } # Turuntia -> CEKLIS, TELSIAI + link = { autogenerated = yes imp = 2541 imp = 2529 imp = 2537 imp = 2538 imp = 2542 imp = 6359 ck3 = 1109 } # Mare Superum, Mare Superum, Mare Superum, Mare Superum, Mare Superum, LAKE -> Adriatic Sea + link = { autogenerated = yes imp = 6450 ck3 = 1105 ck3 = 8573 ck3 = 8579 } # LAKE -> Volga River, Sheksna River, Volga River + link = { autogenerated = yes imp = 9198 ck3 = 1103 } # $PROV8047$ -> Volga River + link = { autogenerated = yes imp = 7816 ck3 = 110 ck3 = 117 } # Carbonia Occidentalis -> PILTENE, DUNDAGA + link = { autogenerated = yes imp = 2174 ck3 = 11 } # Robogdia Occidentalis -> FAHAN + link = { autogenerated = yes imp = 8812 ck3 = 10986 ck3 = 10987 } # Bahmo -> Shwegu, Momauk + link = { autogenerated = yes imp = 8813 ck3 = 10985 ck3 = 10988 ck3 = 10989 ck3 = 10981 } # Myitkyina -> Mogaung, Waingmaw, Myitkyina, Sumpra_Bum + link = { autogenerated = yes imp = 8784 imp = 8782 imp = 5669 ck3 = 10983 } # Pu, Kettha, Burma Mountains -> Hpakant + link = { autogenerated = yes imp = 8809 ck3 = 10976 } # Lashio -> Hsenwi + link = { autogenerated = yes imp = 8808 ck3 = 10975 } # Thanlyin -> Hsipaw + link = { autogenerated = yes imp = 8807 ck3 = 9642 } # Mongmit -> Momeik + link = { autogenerated = yes imp = 9196 imp = 9195 imp = 9197 ck3 = 1094 } # $PROV8047$, $PROV8047$, $PROV8047$ -> Volga River + link = { autogenerated = yes imp = 9194 ck3 = 1093 } # $PROV8047$ -> Volga River + link = { autogenerated = yes imp = 8049 imp = 8048 ck3 = 1092 } # Rha, Rha -> Volga River + link = { autogenerated = yes imp = 9192 imp = 9193 ck3 = 1091 } # $PROV8042$, $PROV8042$ -> Don River + link = { autogenerated = yes imp = 8584 imp = 8044 imp = 8045 imp = 8046 imp = 8583 ck3 = 1090 } # $PROV8042$, Tanais, Tanais, Tanais, $PROV8042$ -> Don River + link = { autogenerated = yes imp = 8575 ck3 = 1083 } # Ammodeis Ochthes -> Pripyat River + link = { autogenerated = yes imp = 8589 ck3 = 1082 ck3 = 626 } # $PROV8586$ -> Daugava River, Daugava River + link = { autogenerated = yes imp = 8587 ck3 = 1081 } # $PROV8586$ -> Daugava River + link = { autogenerated = yes imp = 8577 imp = 8576 ck3 = 1079 } # $PROV8575$, $PROV8575$ -> Pripyat River + link = { autogenerated = yes imp = 8574 ck3 = 1078 ck3 = 8566 } # $PROV7871$ -> Dnieper River, Dnieper River + link = { autogenerated = yes imp = 6354 ck3 = 1077 } # Borysthenes -> Dnieper River + link = { autogenerated = yes imp = 8581 ck3 = 1074 ck3 = 1075 } # $PROV8578$ -> Desna River, Desna River + link = { autogenerated = yes imp = 8578 ck3 = 1073 } # Dexi Cheri -> Desna River + link = { autogenerated = yes imp = 7880 ck3 = 1072 } # Borysthenes -> Dnieper River + link = { autogenerated = yes imp = 7878 imp = 7879 ck3 = 1071 } # Borysthenes, Borysthenes -> Dnieper River + link = { autogenerated = yes imp = 7873 imp = 7871 imp = 7872 imp = 7874 ck3 = 1070 } # Borysthenes, Borysthenes, Borysthenes, Borysthenes -> Dnieper River + link = { autogenerated = yes imp = 5367 ck3 = 1069 } # Tritonis -> Chott el Djerid + link = { autogenerated = yes imp = 9190 ck3 = 1065 } # $PROV7773$ -> Danube River + link = { autogenerated = yes imp = 2989 imp = 2988 imp = 2990 imp = 2991 imp = 2992 imp = 2996 imp = 2998 imp = 2999 imp = 4569 imp = 4570 imp = 4571 ck3 = 1064 } # Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum -> Caspian Sea + link = { autogenerated = yes imp = 9186 imp = 9187 ck3 = 1063 } # $PROV7773$, $PROV7773$ -> Danube River + link = { autogenerated = yes imp = 4587 imp = 2995 imp = 4578 imp = 4579 imp = 4580 imp = 4581 imp = 4582 imp = 4583 imp = 4585 imp = 4586 imp = 8047 ck3 = 1062 } # Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Rha -> Caspian Sea + link = { autogenerated = yes imp = 7782 imp = 7781 imp = 9184 imp = 9185 ck3 = 1061 } # Ister, Ister, $PROV7773$, $PROV7773$ -> Danube River + link = { autogenerated = yes imp = 7779 imp = 7780 ck3 = 1060 } # Ister, Ister -> Danube River + link = { autogenerated = yes imp = 7818 ck3 = 106 ck3 = 121 } # Careotaia Borealis -> DOBELE, NEUENBURG + link = { autogenerated = yes imp = 7777 imp = 7776 imp = 7778 ck3 = 1059 } # Ister, Ister, Ister -> Danube River + link = { autogenerated = yes imp = 7773 imp = 7774 imp = 7775 ck3 = 1058 } # Ister, Ister, Ister -> Danube River + link = { autogenerated = yes imp = 2739 imp = 7881 imp = 7882 ck3 = 1056 } # Pontus Euxinus, Tyras, Tyras -> Dniester River + link = { autogenerated = yes imp = 9183 ck3 = 1054 ck3 = 1055 } # Ouistoula -> Vistula River, Vistula River + link = { autogenerated = yes imp = 9180 imp = 9181 imp = 9182 ck3 = 1053 } # Ouistoula, Ouistoula, Ouistoula -> Vistula River + link = { autogenerated = yes imp = 9179 imp = 9178 ck3 = 1052 } # Ouistoula, Ouistoula -> Vistula River + link = { autogenerated = yes imp = 8512 ck3 = 105 } # Bauska -> BAUSKA + link = { autogenerated = yes imp = 8791 ck3 = 10488 ck3 = 9168 } # Tibetan Pass -> Patkai Hills, Hawai + link = { autogenerated = yes imp = 7817 ck3 = 104 ck3 = 112 } # Carbonia -> JURMALA, KANDAVA + link = { autogenerated = yes imp = 2533 ck3 = 1038 } # Fretum Hydruntis -> Strait of Otranto + link = { autogenerated = yes imp = 2649 imp = 2612 imp = 2613 imp = 7747 ck3 = 1037 } # Mare Ionium, Mare Ionium, Mare Ionium, Sinus Patraicus -> Ionian Sea + link = { autogenerated = yes imp = 2648 imp = 2511 imp = 2513 imp = 2522 ck3 = 1036 } # Mare Ionium, Mare Ionium, Mare Ionium, Sinus Tarentinus -> Gulf of Taranto + link = { autogenerated = yes imp = 2656 imp = 2574 imp = 2575 imp = 2646 imp = 2661 ck3 = 1035 } # Mare Aegyptium, Mare Aegyptium, Mare Aegyptium, Mare Libycum, Mare Aegyptium -> Libyan Sea + link = { autogenerated = yes imp = 2629 imp = 2516 imp = 2519 imp = 2520 imp = 2627 imp = 2630 imp = 2633 ck3 = 1034 } # Mare Libycum, Fretum Melitense, Fretum Melitense, Fretum Siculum, Mare Libycum, Fretum Melitense, Mare Libycum -> Malta Channel + link = { autogenerated = yes imp = 2625 imp = 2517 ck3 = 1033 } # Fretum Siculum, Fretum Siculum -> Sicilian Narrows + link = { autogenerated = yes imp = 2506 imp = 2500 imp = 2521 ck3 = 1032 } # Mare Tyrrhenum, Mare Tyrrenum, Mare Tyrrhenum -> Coast of Palermo + link = { autogenerated = yes imp = 2504 ck3 = 1031 } # Mare Tyrrhenum -> Gulf of Napoli + link = { autogenerated = yes imp = 2689 imp = 2698 imp = 2699 imp = 2700 ck3 = 1030 } # Mare Tyrrhenum, Mare Tyrrhenum, Mare Tyrrhenum, Mare Tyrrhenum -> Coast of Sardinia + link = { autogenerated = yes imp = 2697 imp = 2503 ck3 = 1029 } # Mare Tyrrhenum, Mare Tyrrhenum -> Tyrrhenian Sea + link = { autogenerated = yes imp = 2548 imp = 2547 imp = 2695 ck3 = 1028 } # Sinus Genuensis, Mare Ligusticum, Mare Ligusticum -> Gulf of Genoa + link = { autogenerated = yes imp = 2549 imp = 2550 ck3 = 1027 } # Mare Ligusticum, Mare Sardoum -> Cote D'Azur + link = { autogenerated = yes imp = 6366 imp = 6362 imp = 6364 imp = 6365 ck3 = 1026 } # Lemannus, Everdunensis, LAKE, Brigantinus -> ALP LAKES + link = { autogenerated = yes imp = 2551 imp = 2552 imp = 2707 ck3 = 1025 } # Sinus Gallicus, Sinus Gallicus, Sinus Gallicus -> Gulf of Lion + link = { autogenerated = yes imp = 2710 imp = 2690 ck3 = 1024 } # Mare Sardoum, Mare Sardoum -> Sardinian Sea + link = { autogenerated = yes imp = 2705 imp = 2561 imp = 2562 imp = 2704 imp = 2717 ck3 = 1023 } # Mare Internum, Mare Hibericum, Mare Internum, Mare Sardoum, Mare Sardoum -> Coast of Algier + link = { autogenerated = yes imp = 2716 ck3 = 1022 } # Mare Hibericum -> Coast of Algier + link = { autogenerated = yes imp = 2524 ck3 = 1021 } # Mare Balearium -> Gulf of Valencia + link = { autogenerated = yes imp = 2558 imp = 2728 imp = 6318 ck3 = 1020 } # Mare Hibericum, Mare Hibericum, LAKE -> Alboran Sea + link = { autogenerated = yes imp = 5738 imp = 5734 imp = 5735 ck3 = 1019 } # Mare Hibernicum, Mare Hibernicum, Mare Hibernicum -> Irish Sea + link = { autogenerated = yes imp = 2602 imp = 2598 imp = 2599 imp = 2603 imp = 2604 imp = 2606 imp = 2607 imp = 2608 imp = 4724 imp = 5865 imp = 7749 imp = 7750 ck3 = 1017 } # Mare Creticum, Mare Creticum, Mare Creticum, Sinus Argolicus, Sinus Saronicus, Mare Creticum, Mare Myrtoum, Mare Aegaeum, Sinus Laconicus, Mare Myrtoum, $PROV2607$, $PROV2607$ -> Aegean Sea + link = { autogenerated = yes imp = 5677 imp = 4748 imp = 5675 imp = 5676 imp = 5679 imp = 5681 imp = 5682 imp = 5684 imp = 5691 ck3 = 1016 } # Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Oceanus Atlanticus, Oceanus Atlanticus -> Bay of Biscay + link = { autogenerated = yes imp = 5678 imp = 5672 imp = 5673 imp = 5680 imp = 6314 ck3 = 1015 } # Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, LAKE -> Bay of Biscay + link = { autogenerated = yes imp = 4783 imp = 4740 imp = 4741 imp = 4749 ck3 = 1014 } # Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum -> Coast of Asturias + link = { autogenerated = yes imp = 6451 ck3 = 1012 } # LAKE -> Lake Peipus + link = { autogenerated = yes imp = 2559 imp = 2727 ck3 = 1011 } # Mare Hibericum, Mare Hibericum -> Alboran Sea + link = { autogenerated = yes imp = 5703 ck3 = 1010 } # Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 5697 imp = 5707 imp = 5709 imp = 5711 ck3 = 1009 } # Mare Britannicum, Mare Britannicum, Mare Britannicum, Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 5854 imp = 5853 imp = 5857 ck3 = 1004 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Mare Gothicum -> Baltic Sea + link = { autogenerated = yes imp = 5847 ck3 = 1003 } # Oceanus Sarmaticus -> Bight of Hano + link = { autogenerated = yes imp = 5851 ck3 = 1002 } # Oceanus Sarmaticus -> Gulf of Gdansk + link = { autogenerated = yes imp = 5833 imp = 5834 imp = 5835 ck3 = 1001 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus -> Kattegat + link = { autogenerated = yes imp = 5809 imp = 5785 imp = 5808 imp = 6326 ck3 = 1000 } # Mare Germanicum, Mare Germanicum, Mare Germanicum, LAKE -> Gulf of Heligoland + link = { autogenerated = yes imp = 2204 imp = 2203 ck3 = 10 } # Venicnia Borealis, Venicnia Orientalis -> RAPHOE +} diff --git a/ImperatorToCK3/Data_Files/configurables/province_mappings/imperator_invictus.txt b/ImperatorToCK3/Data_Files/configurables/province_mappings/invictus_to_vanilla_ck3.txt similarity index 97% rename from ImperatorToCK3/Data_Files/configurables/province_mappings/imperator_invictus.txt rename to ImperatorToCK3/Data_Files/configurables/province_mappings/invictus_to_vanilla_ck3.txt index 98e852ebd..12f412bd1 100644 --- a/ImperatorToCK3/Data_Files/configurables/province_mappings/imperator_invictus.txt +++ b/ImperatorToCK3/Data_Files/configurables/province_mappings/invictus_to_vanilla_ck3.txt @@ -1,4 +1,4 @@ -imperator_invictus = { +invictus_to_vanilla_ck3 = { triangulation_pair = { srcX = 5683 srcY = 418 dstX = 4784 dstY = 1941 } triangulation_pair = { srcX = 5141 srcY = 535 dstX = 4410 dstY = 1849 } triangulation_pair = { srcX = 1873 srcY = 1404 dstX = 1814 dstY = 1835 } @@ -106,6 +106,7 @@ imperator_invictus = { triangulation_pair = { srcX = 7256 srcY = 1902 dstX = 5215 dstY = 3243 } triangulation_pair = { srcX = 7284 srcY = 1859 dstX = 5233 dstY = 3234 } triangulation_pair = { srcX = 7458 srcY = 251 dstX = 5882 dstY = 2489 } + triangulation_pair = { srcX = 7706 srcY = 405 dstX = 5953 dstY = 2629 } triangulation_pair = { srcX = 7571 srcY = 267 dstX = 5927 dstY = 2530 } triangulation_pair = { srcX = 7856 srcY = 472 dstX = 6003 dstY = 2712 } triangulation_pair = { srcX = 7754 srcY = 566 dstX = 5911 dstY = 2727 } @@ -571,12 +572,18 @@ imperator_invictus = { triangulation_pair = { srcX = 6620 srcY = 706 dstX = 5231 dstY = 2419 } triangulation_pair = { srcX = 7406 srcY = 175 dstX = 5889 dstY = 2436 } triangulation_pair = { srcX = 7524 srcY = 449 dstX = 5844 dstY = 2594 } - triangulation_pair = { srcX = 7840 srcY = 273 dstX = 6078 dstY = 2594 } triangulation_pair = { srcX = 7845 srcY = 328 dstX = 6056 dstY = 2636 } - triangulation_pair = { srcX = 7977 srcY = 649 dstX = 5987 dstY = 2844 } - triangulation_pair = { srcX = 8030 srcY = 593 dstX = 6038 dstY = 2831 } - triangulation_pair = { srcX = 8011 srcY = 530 dstX = 6056 dstY = 2790 } - triangulation_pair = { srcX = 8172 srcY = 1013 dstX = 5926 dstY = 3035 } + triangulation_pair = { srcX = 7978 srcY = 651 dstX = 5987 dstY = 2844 } + triangulation_pair = { srcX = 8031 srcY = 596 dstX = 6038 dstY = 2832 } + triangulation_pair = { srcX = 8165 srcY = 905 dstX = 5985 dstY = 3031 } + triangulation_pair = { srcX = 8127 srcY = 897 dstX = 5965 dstY = 3008 } + triangulation_pair = { srcX = 7962 srcY = 720 dstX = 5955 dstY = 2865 } + triangulation_pair = { srcX = 7855 srcY = 739 dstX = 5889 dstY = 2849 } + triangulation_pair = { srcX = 7841 srcY = 654 dstX = 5918 dstY = 2801 } + triangulation_pair = { srcX = 7954 srcY = 919 dstX = 5873 dstY = 2971 } + triangulation_pair = { srcX = 7968 srcY = 772 dstX = 5934 dstY = 2899 } + triangulation_pair = { srcX = 8138 srcY = 980 dstX = 5938 dstY = 3060 } + triangulation_pair = { srcX = 8100 srcY = 960 dstX = 5927 dstY = 3037 } triangulation_pair = { srcX = 8045 srcY = 970 dstX = 5898 dstY = 3023 } triangulation_pair = { srcX = 7826 srcY = 2375 dstX = 5369 dstY = 3699 } triangulation_pair = { srcX = 7658 srcY = 2393 dstX = 5272 dstY = 3651 } @@ -4988,12 +4995,10 @@ imperator_invictus = { link = { imp = 8192 imp = 8191 imp = 8194 ck3 = 6667 } # Qatrun, Izam, Mastutah -> FEZZAN_ROUTE link = { imp = 8193 ck3 = 6453 ck3 = 6666 } # Tajhiri -> TUMMO, TIBESTI_ROUTE link = { imp = 5971 ck3 = 6655 ck3 = 6654 ck3 = 4760 ck3 = 6468 ck3 = 6467 ck3 = 6466 ck3 = 6465 ck3 = 6591 ck3 = 6322 } # Even More Steppes Impassable -> SAOURA, TAGHAZA_ROAD, TAGHAZA, BOUDA, ADRAR_TIMMI, TAMENTIT, REGGANE, HAMADAT_TINGHERT, TEDMAIT - link = { autogenerated = yes imp = 8795 imp = 8783 ck3 = 9567 } # Burma Mountains, Aung Myay -> Naga Hills + link = { autogenerated = yes imp = 8795 imp = 8782 imp = 8783 imp = 8793 ck3 = 9567 } # Burma Mountains, Kettha, Aung Myay, Burma Mountains -> Naga Hills link = { autogenerated = yes imp = 5110 imp = 5109 ck3 = 894 } # Carpathia, IMPASSIBLE TERRAIN 109 -> SOUTH CARPATHIANS link = { autogenerated = yes imp = 9302 imp = 9305 ck3 = 8710 } # Vasnam, Vamva -> Western Kazakh Steppe - link = { autogenerated = yes imp = 7851 ck3 = 8687 ck3 = 8688 ck3 = 8689 } # SEAZONE IMPASSABLE WASTELAND -> Andaman Sea, Bay of Bengal, Bay of Bengal - link = { autogenerated = yes imp = 7848 ck3 = 8677 } # SEAZONE IMPASSABLE WASTELAND -> Somali Sea - link = { autogenerated = yes imp = 7852 ck3 = 8606 ck3 = 8607 ck3 = 8608 ck3 = 8686 ck3 = 8691 } # SEAZONE IMPASSABLE WASTELAND -> Irrawaddy Delta, Irrawaddy Delta, Irrawaddy, Gulf of Martaban, ANDAMAN SEA + link = { autogenerated = yes imp = 7852 ck3 = 8606 ck3 = 8686 ck3 = 8687 } # SEAZONE IMPASSABLE WASTELAND -> Irrawaddy Delta, Gulf of Martaban, Andaman Sea link = { autogenerated = yes imp = 5323 imp = 5322 ck3 = 8557 } # Caucasus Mons Volcano, IP 323 -> CAUCASUS MOUNTAINS link = { autogenerated = yes imp = 5960 ck3 = 8552 ck3 = 9157 } # Arunachal Impassable -> HIMALAYA, Itanagar link = { autogenerated = yes imp = 5956 imp = 5955 ck3 = 8545 } # Nepalese Impassable, Nepalese Impassable -> HIMALAYA @@ -5001,7 +5006,6 @@ imperator_invictus = { link = { autogenerated = yes imp = 5355 imp = 8733 ck3 = 8443 } # Koha, Logiya -> DANAKIL_DESERT link = { autogenerated = yes imp = 5337 ck3 = 8442 } # Puntic Highlands -> DANAKIL_HILLS link = { autogenerated = yes imp = 9135 ck3 = 8402 } # Somali Impassable -> AW_BARRE - link = { autogenerated = yes imp = 5942 ck3 = 8325 ck3 = 8327 ck3 = 8328 ck3 = 8329 ck3 = 8346 ck3 = 8347 ck3 = 8348 ck3 = 8349 ck3 = 8350 ck3 = 8351 ck3 = 8352 ck3 = 8353 ck3 = 8354 ck3 = 8355 ck3 = 8356 ck3 = 8357 ck3 = 8358 ck3 = 8359 ck3 = 8360 ck3 = 8364 ck3 = 8368 ck3 = 8378 ck3 = 8379 ck3 = 8380 ck3 = 8381 ck3 = 8382 ck3 = 8383 ck3 = 8384 ck3 = 8385 ck3 = 8392 ck3 = 8393 ck3 = 8394 ck3 = 8395 ck3 = 8396 ck3 = 8397 ck3 = 8406 ck3 = 8407 ck3 = 8408 ck3 = 8409 ck3 = 8410 ck3 = 8411 ck3 = 8412 ck3 = 8413 ck3 = 8414 ck3 = 8415 ck3 = 8416 ck3 = 8417 ck3 = 8418 ck3 = 8419 ck3 = 8420 ck3 = 8421 ck3 = 8422 ck3 = 8423 ck3 = 8440 ck3 = 8441 ck3 = 8444 ck3 = 8445 ck3 = 8446 ck3 = 8448 ck3 = 8450 ck3 = 8451 ck3 = 8452 ck3 = 8453 ck3 = 8454 ck3 = 8455 ck3 = 8456 ck3 = 8457 ck3 = 8458 ck3 = 8459 ck3 = 8460 ck3 = 8462 ck3 = 8463 ck3 = 8464 ck3 = 8465 ck3 = 8467 ck3 = 8468 ck3 = 8469 ck3 = 8470 ck3 = 8471 ck3 = 8472 ck3 = 8473 ck3 = 8474 ck3 = 8475 ck3 = 8476 ck3 = 8477 ck3 = 8478 ck3 = 8479 ck3 = 8480 ck3 = 8481 ck3 = 8482 ck3 = 8483 ck3 = 8484 ck3 = 8485 ck3 = 8486 ck3 = 8487 ck3 = 8488 ck3 = 8489 ck3 = 8490 ck3 = 8491 ck3 = 8492 ck3 = 8493 ck3 = 8494 ck3 = 8495 ck3 = 8496 ck3 = 8497 ck3 = 8498 ck3 = 8499 ck3 = 8500 ck3 = 8501 ck3 = 8517 ck3 = 8518 ck3 = 8711 } # Somalian Impassable -> EAST_AMHARA, GIDIM, WAGDA, WALAQA, MIDDLE_AWASH, IFAT, WARJIH, SILALISH, WARAB, SARMAT, KATATA, DEBRE_LIBANOS, KARAYU, SHARKA, HADYA, MUNESA, WALAMO, ABAYA, GAMO, WAJ, KAMBATA, FATAGAR, BURJI, BORAMA, JAM-JAM, BALI-WEST, DUMALI, BOKE, GEBERGE, SITTI, ADAL, WEST_ADAL, BATE, GENDEBELO, GABAL, DAKKAR, HARAR, HARGAYA, GABAL_SOUTH, JEBEL_AHMAR, HARGAYA-WEST, ARUSI-NORTH, ARUSI-SOUTH, DAWARO, DAWARO-WEST, HARGAYA-SOUTH, SHABELLE, BALI-EAST, BALI, FAFAN, GIDAYA, GIDAYA-NORTH, GIDAYA-EAST, CHALBI_DESERT, OGADEN_DESERT, AHMAR_MOUNTAINS, MENDEBO, SHOA_HIGHLANDS, WOLLO_HIGHLANDS, YABELO, FUDALHI, WEST_SIDAMO, EAST_SIDAMO, LOWER_DAWA, LUUQ, SIDAMO-SOUTH, JUBBA-AJURAAN, BAYDHABO, BARDHERE, BARAAWE, AFGOOYE, MOGADISHU, WARSHEIKH, EL_DERE, BELETWEYNE, QALAAFE, HIRAAB, MAREEG, EL_BUUR, DHUSAMAREB, JILIB, HUDUR, JOWHAAR, BUUR_HEYBE, BUG, MAREHAN-NORTH, MAREHAN-SOUTH, EL_WAAK, LAG_DERA, LOWER_JUBBA, DAWA-SOUTH, UPPER_KUTULO, KUTULO, LOWER_KUTULO, LAK_BOR, LAGH_BOGAL, MARSABIT, GESTRO, JUBBA-NORTH, GANALE, AUDO, MIDDLE-SHEBELLE, REEWIN, WAJID, SHABELLE-HIRAN, MUSTAHIL, GODE, FAFAN-SOUTH, HANAN, DARA-SHARKA, LOWER_OMO, East African Southern Impassable link = { autogenerated = yes imp = 9143 imp = 9144 ck3 = 807 } # Aures Mountains, Aures Mountains -> Tell Atlas Mountains 8 link = { autogenerated = yes imp = 5153 imp = 5154 ck3 = 803 } # IMPASSIBLE TERRAIN 153, IMPASSIBLE TERRAIN 154 -> Tell Atlas Mountains 4 link = { autogenerated = yes imp = 5152 ck3 = 802 } # IMPASSIBLE TERRAIN 152 -> Tell Atlas Mountains 3 @@ -5076,8 +5080,6 @@ imperator_invictus = { link = { autogenerated = yes imp = 7284 ck3 = 4463 ck3 = 4464 } # Impassable -> KISH-RUDBAR, MOFD AFDZALKHAN link = { autogenerated = yes imp = 5242 imp = 5243 ck3 = 4123 } # IMPASSIBLE TERRAIN 242, IMPASSIBLE TERRAIN 243 -> Aruj link = { autogenerated = yes imp = 5241 ck3 = 4113 ck3 = 4259 } # IMPASSIBLE TERRAIN 241 -> Juy-e-Sard, Dizful - link = { autogenerated = yes imp = 5257 ck3 = 4071 } # IMPASSIBLE TERRAIN 257 -> Raqe - link = { autogenerated = yes imp = 5265 ck3 = 4034 } # IMPASSIBLE TERRAIN 265 -> Khodzhakala link = { autogenerated = yes imp = 7288 ck3 = 3998 } # Impassable -> Bikramkhol link = { autogenerated = yes imp = 5319 ck3 = 3994 } # IP 320 -> Yajatinagara link = { autogenerated = yes imp = 5361 ck3 = 3962 } # IP 362 -> Khajuraho @@ -5098,14 +5100,13 @@ imperator_invictus = { link = { autogenerated = yes imp = 5987 ck3 = 3294 } # Maurian Plateau -> Tell Atlas Mountains 9 link = { autogenerated = yes imp = 5266 imp = 5267 imp = 5269 imp = 5393 imp = 5396 imp = 5397 imp = 5398 imp = 6659 ck3 = 3292 } # IMPASSIBLE TERRAIN 266, IMPASSIBLE TERRAIN 267, IMPASSIBLE TERRAIN 269, Artessia, Ghore, Shenia, Salos, Kala -> PERSIAN IMPASSABLE TERRAIN 4 link = { autogenerated = yes imp = 5259 imp = 7283 ck3 = 3290 } # IMPASSIBLE TERRAIN 259, Impassable -> PERSIAN IMPASSABLE TERRAIN 2 - link = { autogenerated = yes imp = 5245 imp = 5236 imp = 5237 imp = 5238 imp = 5239 imp = 5244 imp = 5246 imp = 5247 imp = 5264 imp = 5386 ck3 = 3289 } # IMPASSIBLE TERRAIN 245, IMPASSIBLE TERRAIN 236, Qumis Highland, IMPASSIBLE TERRAIN 238, IMPASSIBLE TERRAIN 239, IMPASSIBLE TERRAIN 244, IMPASSIBLE TERRAIN 246, Utian Plain, IMPASSIBLE TERRAIN 264, IP 387 -> PERSIAN IMPASSABLE TERRAIN 1 + link = { autogenerated = yes imp = 5237 ck3 = 3289 } # Qumis Highland -> PERSIAN IMPASSABLE TERRAIN 1 link = { autogenerated = yes imp = 5036 ck3 = 3257 } # IMPASSIBLE TERRAIN 036 -> German Mountains 13 link = { autogenerated = yes imp = 5023 imp = 5131 ck3 = 3256 } # Alpes Cottiae, Alpes Maritimae -> ALPS 1 link = { autogenerated = yes imp = 5385 ck3 = 3255 } # IP 386 -> KUNLUNSHAN - link = { autogenerated = yes imp = 5961 ck3 = 3150 ck3 = 3612 ck3 = 4059 ck3 = 4281 ck3 = 4282 ck3 = 5913 ck3 = 5997 ck3 = 7787 ck3 = 7941 ck3 = 8526 ck3 = 8527 ck3 = 8528 ck3 = 8529 ck3 = 8554 ck3 = 9031 ck3 = 9032 ck3 = 9033 ck3 = 9034 ck3 = 9035 ck3 = 9036 ck3 = 9040 ck3 = 9041 ck3 = 9042 ck3 = 9043 ck3 = 9060 ck3 = 9062 ck3 = 9063 ck3 = 9064 ck3 = 9065 ck3 = 9212 ck3 = 9213 ck3 = 9215 ck3 = 9216 ck3 = 9218 ck3 = 9219 ck3 = 9220 ck3 = 9221 ck3 = 9252 ck3 = 9253 ck3 = 9254 ck3 = 9258 ck3 = 9259 ck3 = 9260 ck3 = 9261 ck3 = 9262 ck3 = 9263 ck3 = 9264 ck3 = 9278 ck3 = 9279 ck3 = 9280 ck3 = 9284 ck3 = 9285 ck3 = 9286 ck3 = 9287 ck3 = 9288 ck3 = 9289 ck3 = 9290 ck3 = 9291 ck3 = 9292 ck3 = 9293 ck3 = 9294 ck3 = 9295 ck3 = 9296 ck3 = 9297 ck3 = 9298 ck3 = 9299 ck3 = 9300 ck3 = 9301 ck3 = 9302 ck3 = 9303 ck3 = 9304 ck3 = 9305 ck3 = 9306 ck3 = 9354 ck3 = 9355 ck3 = 9356 ck3 = 9357 ck3 = 9358 ck3 = 9359 ck3 = 9360 ck3 = 9361 ck3 = 9362 ck3 = 9363 ck3 = 9364 ck3 = 9365 ck3 = 9366 ck3 = 9367 ck3 = 9368 ck3 = 9370 ck3 = 9371 ck3 = 9372 ck3 = 9373 ck3 = 9374 ck3 = 9375 ck3 = 9376 ck3 = 9377 ck3 = 9378 ck3 = 9379 ck3 = 9380 ck3 = 9389 ck3 = 9390 ck3 = 9391 ck3 = 9392 ck3 = 9393 ck3 = 9600 ck3 = 9609 ck3 = 9611 ck3 = 9612 ck3 = 971 } # Tibetan Plateau Impassable -> KUNLUNSHAN, KUNLUNSHAN, KUNLUNSHAN, KUNLUNSHAN, KUNLUNSHAN, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, HIMALAYA, Nischu, Sumna, Thaldat, Sumnal, Sumdo, Chungtash, Changmar, Memar, Bangdag, Bairab, Chaka, Dongco, Gomoco, Chagboco, Burogco, Xainza, Shyungme, Nyima, Aso, Ngoqu, Garkung, Margai, Yurba, Xenkyer, Pukpa, Balla, Qangma, Parling, Xibde, Cozhelhoma, Garco, Dorsoidong, Cozhedangma, Rawu, Bome, Yiong, Yiqen, Kangyu, Qundo, Banbar, Jaggang, Lhorong, Qizhu, Damdoi, Xamqu, Biru, Sog, Riwar, Arxog, Baqen, Lhaxi, Dengqen, Riwoqe, Karub, Qamdo, Lhatok, Nangqen, Nyangla, Gyegumdo, Nyainrong, Amdo, Gangnyi, Sibnak_Chenchungo, Marrong, Changco, Yenshipin, Quemoco, Marchu, Sewa, Ulenulaco, Dokecoring, Dokecoring_Qangco, Yuyico, Aqenganggyai, Dangla, Nengyi, Drakbuk, Chumarho, Toma, Trandam, Damzhung, Ato, Qapugtang, Mukzhung, Zokya, Ayakkum, Aqqikkol, Kytkol, Bokalik, Mangnai, Bashkoyumal, Bugaiwilik, Mahas, Domoko, TIBET IMPASSABLE + link = { autogenerated = yes imp = 5961 ck3 = 3150 ck3 = 3612 ck3 = 4059 ck3 = 4281 ck3 = 4282 ck3 = 5913 ck3 = 5997 ck3 = 7787 ck3 = 7941 ck3 = 8526 ck3 = 8527 ck3 = 8528 ck3 = 8529 ck3 = 8553 ck3 = 8554 ck3 = 9031 ck3 = 9032 ck3 = 9033 ck3 = 9034 ck3 = 9035 ck3 = 9036 ck3 = 9040 ck3 = 9041 ck3 = 9042 ck3 = 9043 ck3 = 9060 ck3 = 9062 ck3 = 9063 ck3 = 9064 ck3 = 9065 ck3 = 9212 ck3 = 9213 ck3 = 9215 ck3 = 9216 ck3 = 9218 ck3 = 9219 ck3 = 9220 ck3 = 9221 ck3 = 9252 ck3 = 9253 ck3 = 9254 ck3 = 9258 ck3 = 9259 ck3 = 9260 ck3 = 9261 ck3 = 9262 ck3 = 9263 ck3 = 9264 ck3 = 9279 ck3 = 9280 ck3 = 9285 ck3 = 9286 ck3 = 9287 ck3 = 9288 ck3 = 9289 ck3 = 9290 ck3 = 9291 ck3 = 9292 ck3 = 9293 ck3 = 9294 ck3 = 9295 ck3 = 9296 ck3 = 9297 ck3 = 9298 ck3 = 9299 ck3 = 9300 ck3 = 9354 ck3 = 9355 ck3 = 9356 ck3 = 9357 ck3 = 9358 ck3 = 9359 ck3 = 9360 ck3 = 9361 ck3 = 9362 ck3 = 9363 ck3 = 9364 ck3 = 9365 ck3 = 9366 ck3 = 9367 ck3 = 9368 ck3 = 9370 ck3 = 9371 ck3 = 9372 ck3 = 9374 ck3 = 9375 ck3 = 9376 ck3 = 9377 ck3 = 9389 ck3 = 9390 ck3 = 9391 ck3 = 9600 ck3 = 9609 ck3 = 9611 ck3 = 9612 ck3 = 971 } # Tibetan Plateau Impassable -> KUNLUNSHAN, KUNLUNSHAN, KUNLUNSHAN, KUNLUNSHAN, KUNLUNSHAN, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, HIMALAYA, HIMALAYA, Nischu, Sumna, Thaldat, Sumnal, Sumdo, Chungtash, Changmar, Memar, Bangdag, Bairab, Chaka, Dongco, Gomoco, Chagboco, Burogco, Xainza, Shyungme, Nyima, Aso, Ngoqu, Garkung, Margai, Yurba, Xenkyer, Pukpa, Balla, Qangma, Parling, Xibde, Cozhelhoma, Garco, Dorsoidong, Cozhedangma, Bome, Yiong, Kangyu, Qundo, Banbar, Jaggang, Lhorong, Qizhu, Damdoi, Xamqu, Biru, Sog, Riwar, Arxog, Baqen, Lhaxi, Dengqen, Riwoqe, Nyainrong, Amdo, Gangnyi, Sibnak_Chenchungo, Marrong, Changco, Yenshipin, Quemoco, Marchu, Sewa, Ulenulaco, Dokecoring, Dokecoring_Qangco, Yuyico, Aqenganggyai, Dangla, Nengyi, Drakbuk, Toma, Trandam, Damzhung, Ato, Ayakkum, Aqqikkol, Kytkol, Bashkoyumal, Bugaiwilik, Mahas, Domoko, TIBET IMPASSABLE link = { autogenerated = yes imp = 5375 ck3 = 3123 } # IP 376 -> KUNLUNSHAN link = { autogenerated = yes imp = 5962 ck3 = 3104 ck3 = 9615 ck3 = 9616 } # Karakoram -> KUNLUNSHAN, Kehan, Karghalik - link = { autogenerated = yes imp = 5347 ck3 = 3029 ck3 = 3031 } # IP 348 -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE link = { autogenerated = yes imp = 7297 ck3 = 3026 ck3 = 4520 } # Impassable -> PERSIAN IMPASSABLE, ZHOB link = { autogenerated = yes imp = 5345 ck3 = 3022 } # IP 346 -> PERSIAN IMPASSABLE link = { autogenerated = yes imp = 5346 ck3 = 3011 ck3 = 4522 } # IP 347 -> PERSIAN IMPASSABLE, Shakin @@ -5116,33 +5117,48 @@ imperator_invictus = { link = { autogenerated = yes imp = 5268 ck3 = 2884 } # IMPASSIBLE TERRAIN 268 -> PERSIAN IMPASSABLE link = { autogenerated = yes imp = 5274 ck3 = 2881 } # Bactrian Highland -> PERSIAN IMPASSABLE link = { autogenerated = yes imp = 5273 ck3 = 2754 } # IMPASSIBLE TERRAIN 273 -> PERSIAN IMPASSABLE - link = { autogenerated = yes imp = 5380 ck3 = 2734 } # IP 381 -> PERSIAN IMPASSABLE - link = { autogenerated = yes imp = 5963 ck3 = 2718 ck3 = 2740 ck3 = 3037 ck3 = 4358 ck3 = 4515 ck3 = 7953 } # Badakshan Impassable -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, KUNLUNSHAN, Sanglich, CHITRAL, Golaghmuli + link = { autogenerated = yes imp = 5963 ck3 = 2718 ck3 = 2734 ck3 = 2740 ck3 = 3037 ck3 = 4358 ck3 = 4515 ck3 = 7953 } # Badakshan Impassable -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, KUNLUNSHAN, Sanglich, CHITRAL, Golaghmuli link = { autogenerated = yes imp = 5279 ck3 = 2716 } # IMPASSIBLE TERRAIN 279 -> PERSIAN IMPASSABLE link = { autogenerated = yes imp = 5278 ck3 = 2667 ck3 = 2668 ck3 = 3291 ck3 = 4366 ck3 = 4367 } # IMPASSIBLE TERRAIN 278 -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE TERRAIN 3, Upper Karran, Lower Karran link = { autogenerated = yes imp = 5270 imp = 5271 imp = 5272 imp = 5276 imp = 5277 ck3 = 2601 } # Sogdian Mountains, IMPASSIBLE TERRAIN 271, IMPASSIBLE TERRAIN 272, IMPASSIBLE TERRAIN 276, Ferghanan Mountains -> PERSIAN IMPASSABLE link = { autogenerated = yes imp = 5281 imp = 5280 ck3 = 2580 } # IMPASSIBLE TERRAIN 281, Talas Highland -> PERSIAN IMPASSABLE - link = { autogenerated = yes imp = 5282 ck3 = 2539 ck3 = 7148 ck3 = 7149 ck3 = 7150 ck3 = 7151 } # IMPASSIBLE TERRAIN 282 -> TIANSHAN, Sayaq, Tinimseyit, Bagish, Cherik - link = { autogenerated = yes imp = 5967 ck3 = 2486 ck3 = 7163 ck3 = 7168 } # More Steppe Impassable -> TIANSHAN, Kopathal, Qayaliq link = { autogenerated = yes imp = 5130 imp = 5021 ck3 = 2484 } # IMPASSIBLE TERRAIN 130, IMPASSIBLE TERRAIN 021 -> Northern Apennine Mountains 1 link = { autogenerated = yes imp = 5953 ck3 = 233 ck3 = 235 ck3 = 238 ck3 = 247 ck3 = 255 ck3 = 256 ck3 = 257 ck3 = 258 ck3 = 259 ck3 = 260 ck3 = 261 ck3 = 262 ck3 = 264 ck3 = 288 ck3 = 299 ck3 = 3260 ck3 = 7 } # Norwegian Impassable -> RINGARIKI, VALDRES, SUTHRI GUDBRANDSDALI, NUMEDAL, HARDANGER, SUNNHORDALAND, MITHRHORDALAND, NORTHRIHORDALAND, VOSS, SOGNFYLKI, BREMANGER, STOLSHEIMEN, DALE, HEDDALI, NORWEGIAN IMPASSABLE 9, NORWEGIAN MOUNTAINS, SCALLOWAY link = { autogenerated = yes imp = 5952 ck3 = 232 ck3 = 236 ck3 = 240 ck3 = 323 ck3 = 324 ck3 = 325 ck3 = 326 ck3 = 329 ck3 = 342 ck3 = 345 ck3 = 346 ck3 = 347 ck3 = 348 ck3 = 349 ck3 = 350 ck3 = 351 ck3 = 352 ck3 = 353 ck3 = 354 ck3 = 355 ck3 = 356 ck3 = 8728 ck3 = 8729 ck3 = 8731 ck3 = 8732 ck3 = 8739 ck3 = 8769 } # Swedish Impassable -> ROMERIKI, HEDMARK, SUTHRI EYSTRIDALI, TINGVALLA, FRISKDAL, GILLBERG, VASE, NORASKOG, UPPSALA, HENAMORUM, VAESTRAAROS, ARBUGAE, SKYNZEKKEBERGE, FERNABO, FALENE, MOR, MOLUNGR, NORRBARKE, GAVLE, OKLABO, ODMARDEN, Leksand, Lima, Nordmark, Josse, Farnebo, Stange link = { autogenerated = yes imp = 5882 ck3 = 1489 ck3 = 7080 } # Multen -> Ustyurt Plateau, Karasye link = { autogenerated = yes imp = 5256 imp = 5255 ck3 = 1471 } # IMPASSIBLE TERRAIN 256, IMPASSIBLE TERRAIN 255 -> PERSIAN IMPASSABLE TERRAIN - link = { autogenerated = yes imp = 8813 imp = 8782 imp = 8784 imp = 8790 imp = 8793 imp = 8808 imp = 8809 ck3 = 1468 } # Myitkyina, Kettha, Pu, Danai, Burma Mountains, Thanlyin, Lashio -> Eastern Wasteland 3 + link = { autogenerated = yes imp = 3222 ck3 = 1466 } # (Unknown) -> (Unknown) link = { autogenerated = yes imp = 5020 ck3 = 1465 ck3 = 8615 ck3 = 8616 ck3 = 8625 ck3 = 958 ck3 = 960 ck3 = 986 ck3 = 990 } # IMPASSIBLE SEA -> ATLANTIC TI, Sea of Faereyar, Sea of Shetland, The Atlantic, Ladoga, Sea of Faereyar, Coast of Norway, North Sea link = { autogenerated = yes imp = 5253 imp = 5250 imp = 5251 imp = 5252 ck3 = 1437 } # IMPASSIBLE TERRAIN 254, IMPASSIBLE TERRAIN 250, IMPASSIBLE TERRAIN 251, Lut -> PERSIAN IMPASSABLE TERRAIN link = { autogenerated = yes imp = 5231 imp = 5232 ck3 = 1436 } # IMPASSIBLE TERRAIN 231, Zagros -> AZERBAIJAN MOUNTAINS - link = { autogenerated = yes imp = 5969 ck3 = 1433 ck3 = 5429 ck3 = 5430 ck3 = 5431 ck3 = 5432 ck3 = 5433 ck3 = 5478 ck3 = 5479 ck3 = 5480 ck3 = 5481 ck3 = 5482 ck3 = 5483 ck3 = 5484 ck3 = 5485 ck3 = 5486 ck3 = 5517 ck3 = 615 ck3 = 7246 ck3 = 7247 ck3 = 7248 ck3 = 7250 ck3 = 7252 ck3 = 7265 ck3 = 7269 ck3 = 7270 ck3 = 7271 ck3 = 7272 ck3 = 7273 ck3 = 7275 ck3 = 7276 ck3 = 7353 } # European Steppe Impassable -> Terekti, Sterlitamak, Teterpush, Salavat, Kumertau, Prechistenskaya, Inzer, Prigorod Tabynsk, Bielaya, Yanokul, Kaginskoi, Sakmara, Yuldybayevo, Verkouralsk, Yumanova, Southern Urals, Ufa, Suvunduk, Atamansku, Kbumak, Jarli Butak, Kosh Kurbay, Sor Kuduk, Tuzdyn, Jilanjik, Tamdins, Ulytau, Ajutasty, Kaptadyr, Jaman Arganaty, Central Kazakh Steppe + link = { autogenerated = yes imp = 5969 ck3 = 1433 ck3 = 5429 ck3 = 5430 ck3 = 5431 ck3 = 5432 ck3 = 5433 ck3 = 5478 ck3 = 5479 ck3 = 5480 ck3 = 5481 ck3 = 5482 ck3 = 5483 ck3 = 5484 ck3 = 5485 ck3 = 5486 ck3 = 5514 ck3 = 5517 ck3 = 615 ck3 = 7246 ck3 = 7247 ck3 = 7248 ck3 = 7250 ck3 = 7252 ck3 = 7265 ck3 = 7269 ck3 = 7270 ck3 = 7271 ck3 = 7272 ck3 = 7273 ck3 = 7275 ck3 = 7276 ck3 = 7353 } # European Steppe Impassable -> Terekti, Sterlitamak, Teterpush, Salavat, Kumertau, Prechistenskaya, Inzer, Prigorod Tabynsk, Bielaya, Yanokul, Kaginskoi, Sakmara, Yuldybayevo, Verkouralsk, Yumanova, Caucasus Wasteland, Southern Urals, Ufa, Suvunduk, Atamansku, Kbumak, Jarli Butak, Kosh Kurbay, Sor Kuduk, Tuzdyn, Jilanjik, Tamdins, Ulytau, Ajutasty, Kaptadyr, Jaman Arganaty, Central Kazakh Steppe link = { autogenerated = yes imp = 5997 ck3 = 1380 } # Antilibanus Mons -> SYRIAN IMPASSABLE link = { autogenerated = yes imp = 768 ck3 = 1379 } # Libanus Mons -> SYRIAN IMPASSABLE link = { autogenerated = yes imp = 5228 imp = 5227 imp = 5229 ck3 = 1373 } # Syrian Desert, Syrian Desert, Syrian Desert -> SYRIAN DESERT - link = { autogenerated = yes imp = 5379 imp = 5376 imp = 5377 imp = 5378 imp = 5666 imp = 5668 imp = 6742 imp = 6745 imp = 6746 imp = 6756 imp = 8759 imp = 8765 ck3 = 1347 } # IP 380, IP 377, IP 378, Tarim, Taklamakan, Taklamakan, Pishan, Keriya, Shaju, Khata, Makit, Cadota -> TAKLAMAKAN DESERT + link = { autogenerated = yes imp = 5379 imp = 5668 imp = 6742 imp = 6745 imp = 6756 imp = 8765 ck3 = 1347 } # IP 380, Taklamakan, Pishan, Keriya, Khata, Cadota -> TAKLAMAKAN DESERT link = { autogenerated = yes imp = 5295 ck3 = 1344 } # Syrian Desert -> SYRIAN DESERT link = { autogenerated = yes imp = 8883 ck3 = 1335 } # Arabian Desert -> AD-DAHNA DESERT link = { autogenerated = yes imp = 5336 ck3 = 1334 ck3 = 8333 ck3 = 8334 ck3 = 8335 } # IP 337 -> DANAKIL_HILLS, RAGALI, AMARTA, AFERA link = { autogenerated = yes imp = 5290 ck3 = 1326 } # Qal'eh -> JIBAL-AL-HIJAZI + link = { autogenerated = yes imp = 5282 ck3 = 12925 ck3 = 2539 ck3 = 7148 ck3 = 7149 ck3 = 7150 ck3 = 7151 } # IMPASSIBLE TERRAIN 282 -> TIANSHAN, TIANSHAN, Sayaq, Tinimseyit, Bagish, Cherik + link = { autogenerated = yes imp = 5378 imp = 5376 imp = 5377 imp = 5666 imp = 6746 imp = 8759 ck3 = 12924 } # Tarim, IP 377, IP 378, Taklamakan, Shaju, Makit -> TAKLAMAKAN DESERT + link = { autogenerated = yes imp = 5967 ck3 = 12923 ck3 = 2486 ck3 = 7163 ck3 = 7168 } # More Steppe Impassable -> TAKLAMAKAN DESERT, TIANSHAN, Kopathal, Qayaliq + link = { autogenerated = yes imp = 5380 ck3 = 12922 } # IP 381 -> kabulistan_mountains + link = { autogenerated = yes imp = 5347 ck3 = 12899 ck3 = 3029 ck3 = 3031 } # IP 348 -> persia_mountains, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5247 ck3 = 12898 } # Utian Plain -> zagros_mountains + link = { autogenerated = yes imp = 5246 ck3 = 12896 ck3 = 12897 } # IMPASSIBLE TERRAIN 246 -> zagros_mountains, zagros_mountains + link = { autogenerated = yes imp = 5245 ck3 = 12895 } # IMPASSIBLE TERRAIN 245 -> zagros_mountains + link = { autogenerated = yes imp = 5257 ck3 = 12894 ck3 = 4071 } # IMPASSIBLE TERRAIN 257 -> persia_mountains, Raqe + link = { autogenerated = yes imp = 5264 ck3 = 12891 } # IMPASSIBLE TERRAIN 264 -> alborz_mountains + link = { autogenerated = yes imp = 5386 ck3 = 12890 } # IP 387 -> alborz_mountains + link = { autogenerated = yes imp = 5265 ck3 = 12889 ck3 = 4034 } # IMPASSIBLE TERRAIN 265 -> alborz_mountains, Khodzhakala + link = { autogenerated = yes imp = 5236 ck3 = 12887 } # IMPASSIBLE TERRAIN 236 -> alborz_mountains + link = { autogenerated = yes imp = 5239 ck3 = 12885 ck3 = 12886 } # IMPASSIBLE TERRAIN 239 -> alborz_mountains, alborz_mountains + link = { autogenerated = yes imp = 5238 ck3 = 12884 } # IMPASSIBLE TERRAIN 238 -> alborz_mountains + link = { autogenerated = yes imp = 7851 ck3 = 12850 ck3 = 8688 ck3 = 8689 } # SEAZONE IMPASSABLE WASTELAND -> Andaman Sea, Bay of Bengal, Bay of Bengal link = { autogenerated = yes imp = 8118 ck3 = 1280 } # Upper Egyptian Desert -> EASTERN DESERT + link = { autogenerated = yes imp = 5942 ck3 = 12771 ck3 = 12772 ck3 = 12773 ck3 = 12774 ck3 = 12775 ck3 = 12777 ck3 = 12778 ck3 = 12779 ck3 = 12780 ck3 = 12781 ck3 = 12782 ck3 = 12783 ck3 = 12784 ck3 = 12785 ck3 = 12786 ck3 = 12787 ck3 = 12795 ck3 = 12796 ck3 = 12797 ck3 = 12802 ck3 = 12803 ck3 = 12804 ck3 = 12805 ck3 = 12806 ck3 = 12807 ck3 = 12808 ck3 = 12809 ck3 = 8325 ck3 = 8327 ck3 = 8328 ck3 = 8329 ck3 = 8346 ck3 = 8347 ck3 = 8348 ck3 = 8349 ck3 = 8350 ck3 = 8351 ck3 = 8352 ck3 = 8353 ck3 = 8354 ck3 = 8355 ck3 = 8356 ck3 = 8357 ck3 = 8358 ck3 = 8359 ck3 = 8360 ck3 = 8364 ck3 = 8368 ck3 = 8378 ck3 = 8379 ck3 = 8380 ck3 = 8381 ck3 = 8382 ck3 = 8383 ck3 = 8384 ck3 = 8385 ck3 = 8392 ck3 = 8393 ck3 = 8394 ck3 = 8395 ck3 = 8396 ck3 = 8397 ck3 = 8406 ck3 = 8407 ck3 = 8408 ck3 = 8409 ck3 = 8410 ck3 = 8411 ck3 = 8412 ck3 = 8413 ck3 = 8414 ck3 = 8415 ck3 = 8416 ck3 = 8417 ck3 = 8418 ck3 = 8419 ck3 = 8420 ck3 = 8421 ck3 = 8422 ck3 = 8423 ck3 = 8440 ck3 = 8441 ck3 = 8444 ck3 = 8445 ck3 = 8446 ck3 = 8448 ck3 = 8450 ck3 = 8451 ck3 = 8452 ck3 = 8453 ck3 = 8454 ck3 = 8455 ck3 = 8456 ck3 = 8457 ck3 = 8458 ck3 = 8459 ck3 = 8460 ck3 = 8461 ck3 = 8462 ck3 = 8463 ck3 = 8464 ck3 = 8465 ck3 = 8467 ck3 = 8468 ck3 = 8469 ck3 = 8470 ck3 = 8471 ck3 = 8472 ck3 = 8473 ck3 = 8474 ck3 = 8475 ck3 = 8476 ck3 = 8477 ck3 = 8478 ck3 = 8479 ck3 = 8480 ck3 = 8481 ck3 = 8482 ck3 = 8483 ck3 = 8484 ck3 = 8485 ck3 = 8486 ck3 = 8487 ck3 = 8488 ck3 = 8489 ck3 = 8490 ck3 = 8491 ck3 = 8492 ck3 = 8493 ck3 = 8494 ck3 = 8495 ck3 = 8496 ck3 = 8497 ck3 = 8498 ck3 = 8499 ck3 = 8500 ck3 = 8501 ck3 = 8517 ck3 = 8518 ck3 = 8711 } # Somalian Impassable -> somalia_kismayo, somalia_hoosingo, kenya_pate_island, kenya_kiunga, kenya_kiangwe, kenya_ewago_ngiro_river, kenya_kipini, kenya_mto_tana, kenya_ungwana, kenya_malindi, kenya_mto_athi, kenya_mto_tsavo, kenya_mtwapa, kenya_saghasa, kenya_mombasa, tanzania_kwa_mgogo_mombo, kenya_gede, kenya_galana_river, kenya_witu, tanzania_kilimanjaro, vumba_kuu, kenya_meru, kenya_kirinyaga, kenya_kambu, kenya_empusel, kenta_garissa, kenya_taveta, EAST_AMHARA, GIDIM, WAGDA, WALAQA, MIDDLE_AWASH, IFAT, WARJIH, SILALISH, WARAB, SARMAT, KATATA, DEBRE_LIBANOS, KARAYU, SHARKA, HADYA, MUNESA, WALAMO, ABAYA, GAMO, WAJ, KAMBATA, FATAGAR, BURJI, BORAMA, JAM-JAM, BALI-WEST, DUMALI, BOKE, GEBERGE, SITTI, ADAL, WEST_ADAL, BATE, GENDEBELO, GABAL, DAKKAR, HARAR, HARGAYA, GABAL_SOUTH, JEBEL_AHMAR, HARGAYA-WEST, ARUSI-NORTH, ARUSI-SOUTH, DAWARO, DAWARO-WEST, HARGAYA-SOUTH, SHABELLE, BALI-EAST, BALI, FAFAN, GIDAYA, GIDAYA-NORTH, GIDAYA-EAST, CHALBI_DESERT, OGADEN_DESERT, AHMAR_MOUNTAINS, MENDEBO, SHOA_HIGHLANDS, WOLLO_HIGHLANDS, YABELO, FUDALHI, WEST_SIDAMO, EAST_SIDAMO, LOWER_DAWA, LUUQ, SIDAMO-SOUTH, JUBBA-AJURAAN, BAYDHABO, BARDHERE, BARAAWE, MARKA, AFGOOYE, MOGADISHU, WARSHEIKH, EL_DERE, BELETWEYNE, QALAAFE, HIRAAB, MAREEG, EL_BUUR, DHUSAMAREB, JILIB, HUDUR, JOWHAAR, BUUR_HEYBE, BUG, MAREHAN-NORTH, MAREHAN-SOUTH, EL_WAAK, LAG_DERA, LOWER_JUBBA, DAWA-SOUTH, UPPER_KUTULO, KUTULO, LOWER_KUTULO, LAK_BOR, LAGH_BOGAL, MARSABIT, GESTRO, JUBBA-NORTH, GANALE, AUDO, MIDDLE-SHEBELLE, REEWIN, WAJID, SHABELLE-HIRAN, MUSTAHIL, GODE, FAFAN-SOUTH, HANAN, DARA-SHARKA, LOWER_OMO, East African Southern Impassable + link = { autogenerated = yes imp = 5352 imp = 5286 ck3 = 1107 } # Troglodytica, IMPASSIBLE TERRAIN 286 -> EASTERN DESERT link = { autogenerated = yes imp = 5353 ck3 = 1089 } # Pendactylos Mons -> WOLLO_HIGHLANDS link = { autogenerated = yes imp = 8719 ck3 = 1051 } # Somali Desert -> JEBEL_BEJA link = { autogenerated = yes imp = 8716 ck3 = 1049 } # Somali Desert -> OGADEN_DESERT @@ -5164,22 +5180,19 @@ imperator_invictus = { link = { autogenerated = yes imp = 9357 ck3 = 5170 } # Jarvi -> Toropets link = { autogenerated = yes imp = 9354 ck3 = 5222 } # Mukka -> Velizh link = { autogenerated = yes imp = 9331 ck3 = 5386 ck3 = 5360 } # Udoma -> Vorona, Morchansk - link = { autogenerated = yes imp = 9300 ck3 = 5499 } # Ipasyam -> Orskaya link = { autogenerated = yes imp = 9259 imp = 9260 imp = 9262 imp = 9263 imp = 9264 imp = 9266 imp = 6058 imp = 7286 ck3 = 1178 } # Yazman, Marot, Patan Minara, Inayati, Chishtian, Anupgarh, Abhiria Secunda, Impassable -> Karur link = { autogenerated = yes imp = 9256 imp = 7289 ck3 = 911 } # Rajgangpur, Impassable -> Ratu link = { autogenerated = yes imp = 9255 imp = 9276 imp = 5365 ck3 = 1248 } # Rourkela, Baragaon, IP 366 -> Chutia link = { autogenerated = yes imp = 9254 ck3 = 3997 ck3 = 3988 } # Deogarh -> Rajgangpur, Deogarh link = { autogenerated = yes imp = 9253 ck3 = 3986 ck3 = 3984 } # Lahunipara -> Malayagiri, Bahalda - link = { autogenerated = yes imp = 9166 ck3 = 3228 } # $PROV7864$ -> Loire + link = { autogenerated = yes imp = 9166 ck3 = 3228 } # $PROV7864$ -> Loire River link = { autogenerated = yes imp = 9018 ck3 = 7142 } # Lanyar -> Shelji link = { autogenerated = yes imp = 8799 imp = 8800 imp = 8801 imp = 8802 ck3 = 8685 } # Indian Ocean, Indian Ocean, Indian Ocean, Indian Ocean -> Bay of Bengal - link = { autogenerated = yes imp = 8763 ck3 = 7976 ck3 = 7977 } # Yancheng -> Toksu, Shayar link = { autogenerated = yes imp = 8755 ck3 = 7154 } # Bosteri -> Balasaghun - link = { autogenerated = yes imp = 8751 imp = 8752 ck3 = 7164 } # Issyk, Yilihe -> Almaty link = { autogenerated = yes imp = 8735 imp = 8736 imp = 8734 ck3 = 8326 } # Weki, Weama, Mille -> HAYQ link = { autogenerated = yes imp = 8732 ck3 = 8344 ck3 = 8345 } # Gehar -> AWSSA, AWASH link = { autogenerated = yes imp = 8180 imp = 8172 imp = 9140 ck3 = 6602 } # Harakat, Daydaban, Sahara Impassable -> ERG_GHATI - link = { autogenerated = yes imp = 8160 imp = 8154 imp = 3222 imp = 8187 ck3 = 6601 } # Adwesa, Wanin, (Unknown), Western Black Mountains -> WADI_IRAWAN + link = { autogenerated = yes imp = 8160 imp = 8154 imp = 8187 ck3 = 6601 } # Adwesa, Wanin, Western Black Mountains -> WADI_IRAWAN link = { autogenerated = yes imp = 7544 ck3 = 8336 } # Karmille -> DABAHU link = { autogenerated = yes imp = 7320 imp = 5364 ck3 = 907 } # Bandhavgarh, IP 365 -> Beohari link = { autogenerated = yes imp = 7262 ck3 = 1181 ck3 = 7130 } # Maidankuyryk -> Sutkend, Sary-Ozek @@ -5208,8 +5221,8 @@ imperator_invictus = { link = { autogenerated = yes imp = 4590 imp = 4614 imp = 6506 ck3 = 953 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Coast of Morocco link = { autogenerated = yes imp = 4386 imp = 9258 ck3 = 3417 } # Jadamapura, Nuktani -> Dera_Ghazi_Khan link = { autogenerated = yes imp = 2986 ck3 = 8690 } # Sinus Gangeticus -> Bay of Bengal - link = { autogenerated = yes imp = 2824 imp = 2828 imp = 2831 imp = 2833 imp = 2834 imp = 2835 imp = 2837 imp = 2838 imp = 2840 imp = 2841 imp = 2843 imp = 2869 imp = 2871 imp = 2872 imp = 2873 imp = 2874 imp = 2875 imp = 2876 imp = 2877 imp = 2878 imp = 2879 imp = 2880 imp = 2881 imp = 2882 imp = 2883 imp = 2884 imp = 2885 imp = 2886 imp = 2887 imp = 2888 imp = 2889 imp = 2890 imp = 2891 imp = 2894 imp = 2903 imp = 2904 imp = 2905 imp = 2906 imp = 2907 imp = 2908 imp = 2909 imp = 2910 imp = 2911 imp = 2913 imp = 2914 imp = 2915 imp = 2917 imp = 2918 imp = 2920 imp = 2921 imp = 2922 imp = 2923 imp = 2925 imp = 2929 imp = 2930 imp = 2931 imp = 2932 imp = 7564 imp = 8344 imp = 8345 imp = 7849 ck3 = 1467 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, SEAZONE IMPASSABLE WASTELAND, Mare Erythraeum, Mare Erythraeum, SEAZONE IMPASSABLE WASTELAND -> INDIAN OCEAN TI - link = { autogenerated = yes imp = 2790 imp = 2791 imp = 2792 imp = 2825 imp = 8748 imp = 8749 ck3 = 8676 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Oceanus, Oceanus -> Somali Sea + link = { autogenerated = yes imp = 2824 imp = 2828 imp = 2831 imp = 2833 imp = 2834 imp = 2835 imp = 2837 imp = 2838 imp = 2840 imp = 2841 imp = 2843 imp = 2869 imp = 2871 imp = 2872 imp = 2873 imp = 2874 imp = 2875 imp = 2876 imp = 2877 imp = 2878 imp = 2879 imp = 2880 imp = 2881 imp = 2882 imp = 2883 imp = 2884 imp = 2885 imp = 2886 imp = 2887 imp = 2888 imp = 2889 imp = 2890 imp = 2891 imp = 2894 imp = 2903 imp = 2904 imp = 2905 imp = 2906 imp = 2907 imp = 2908 imp = 2909 imp = 2910 imp = 2911 imp = 2913 imp = 2914 imp = 2915 imp = 2917 imp = 2918 imp = 2920 imp = 2921 imp = 2922 imp = 2923 imp = 2925 imp = 2929 imp = 2930 imp = 2931 imp = 2932 imp = 7557 imp = 7563 imp = 7564 imp = 7566 imp = 8344 imp = 8345 imp = 7848 imp = 7849 ck3 = 1467 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, SEAZONE IMPASSABLE WASTELAND, SEAZONE IMPASSABLE WASTELAND, SEAZONE IMPASSABLE WASTELAND, SEAZONE IMPASSABLE WASTELAND, Mare Erythraeum, Mare Erythraeum, SEAZONE IMPASSABLE WASTELAND, SEAZONE IMPASSABLE WASTELAND -> INDIAN OCEAN TI + link = { autogenerated = yes imp = 2790 imp = 2791 imp = 2792 imp = 2825 imp = 8748 ck3 = 8676 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Oceanus -> Somali Sea link = { autogenerated = yes imp = 2615 imp = 2622 imp = 6418 imp = 6436 ck3 = 8666 } # Sinus Thermaeus, Mare Aegaeum, Sinus Thermaeus, Mare Aegaeum -> Aegean Sea link = { autogenerated = yes imp = 2587 ck3 = 946 } # Mare Lycium -> Gulf of Antalya link = { autogenerated = yes imp = 5789 imp = 5790 imp = 5791 imp = 5794 ck3 = 996 } # Mare Germanicum, Mare Germanicum, Mare Germanicum, Mare Germanicum -> Dogger Bank @@ -5344,37 +5357,38 @@ imperator_invictus = { link = { autogenerated = yes imp = 7393 ck3 = 862 ck3 = 863 } # Kasipur -> Sagardwip, Chatrabhog link = { autogenerated = yes imp = 4728 imp = 4592 imp = 4725 imp = 4726 imp = 4727 imp = 4729 ck3 = 8619 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Coast of Portugal link = { autogenerated = yes imp = 5674 imp = 5670 imp = 5671 imp = 7741 ck3 = 8618 } # Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Garumna -> Bay of Biscay - link = { autogenerated = yes imp = 9234 ck3 = 8603 } # $PROV7783$ -> Brahmaputra - link = { autogenerated = yes imp = 9224 imp = 9225 ck3 = 8602 } # $PROV7701$, $PROV7701$ -> Ganges - link = { autogenerated = yes imp = 9222 ck3 = 8598 } # Godavari -> Godavari - link = { autogenerated = yes imp = 9221 ck3 = 8597 } # Godavari -> Godavari - link = { autogenerated = yes imp = 9215 imp = 9216 ck3 = 8596 } # Cauvery, Cauvery -> Kaveri - link = { autogenerated = yes imp = 9214 imp = 9212 imp = 9213 ck3 = 8595 } # Cauvery, Cauvery, Cauvery -> Kaveri - link = { autogenerated = yes imp = 9211 ck3 = 8593 } # Tapi -> Tapti - link = { autogenerated = yes imp = 9204 imp = 9203 ck3 = 8591 } # Satluj, Satluj -> Sutlej - link = { autogenerated = yes imp = 9202 imp = 9205 ck3 = 8590 } # Satluj, Chenab -> Sutlej - link = { autogenerated = yes imp = 9201 ck3 = 8589 } # $PROV7692$ -> Indus - link = { autogenerated = yes imp = 9199 imp = 9200 ck3 = 8588 } # $PROV7692$, $PROV7692$ -> Indus - link = { autogenerated = yes imp = 8042 imp = 8043 ck3 = 8585 } # Tanais, Tanais -> Don - link = { autogenerated = yes imp = 8582 ck3 = 8584 } # $PROV8042$ -> Don - link = { autogenerated = yes imp = 8585 ck3 = 8583 } # $PROV8042$ -> Don + link = { autogenerated = yes imp = 9234 ck3 = 8603 } # $PROV7783$ -> Brahmaputra River + link = { autogenerated = yes imp = 9224 imp = 9225 ck3 = 8602 } # $PROV7701$, $PROV7701$ -> Ganges River + link = { autogenerated = yes imp = 9222 ck3 = 8598 } # Godavari -> Godavari River + link = { autogenerated = yes imp = 9221 ck3 = 8597 } # Godavari -> Godavari River + link = { autogenerated = yes imp = 9215 imp = 9216 ck3 = 8596 } # Cauvery, Cauvery -> Kaveri River + link = { autogenerated = yes imp = 9214 imp = 9212 imp = 9213 ck3 = 8595 } # Cauvery, Cauvery, Cauvery -> Kaveri River + link = { autogenerated = yes imp = 9211 ck3 = 8593 } # Tapi -> Tapti River + link = { autogenerated = yes imp = 9204 imp = 9203 ck3 = 8591 } # Satluj, Satluj -> Sutlej River + link = { autogenerated = yes imp = 9202 imp = 9205 ck3 = 8590 } # Satluj, Chenab -> Sutlej River + link = { autogenerated = yes imp = 9201 ck3 = 8589 } # $PROV7692$ -> Indus River + link = { autogenerated = yes imp = 9199 imp = 9200 ck3 = 8588 } # $PROV7692$, $PROV7692$ -> Indus River + link = { autogenerated = yes imp = 8042 imp = 8043 ck3 = 8585 } # Tanais, Tanais -> Don River + link = { autogenerated = yes imp = 8582 ck3 = 8584 } # $PROV8042$ -> Don River + link = { autogenerated = yes imp = 8585 ck3 = 8583 } # $PROV8042$ -> Don River link = { autogenerated = yes imp = 7329 ck3 = 858 } # Chandraketugarh -> Kumarhati - link = { autogenerated = yes imp = 9410 ck3 = 8578 } # $PROV9198$ -> Volga - link = { autogenerated = yes imp = 9415 ck3 = 8570 } # Velho -> Lovat - link = { autogenerated = yes imp = 9413 ck3 = 8569 } # Velho -> Volkhov - link = { autogenerated = yes imp = 8580 imp = 8579 ck3 = 8568 } # $PROV8578$, $PROV8578$ -> Desna - link = { autogenerated = yes imp = 9406 ck3 = 8567 } # $PROV8574$ -> Dnieper - link = { autogenerated = yes imp = 8574 ck3 = 8566 } # $PROV7871$ -> Dnieper - link = { autogenerated = yes imp = 8573 imp = 8572 ck3 = 8565 } # $PROV7871$, $PROV7871$ -> Dnieper - link = { autogenerated = yes imp = 6355 ck3 = 8564 } # Borysthenes -> Dnieper - link = { autogenerated = yes imp = 7875 imp = 7876 imp = 7877 ck3 = 8563 } # Borysthenes, Borysthenes, Borysthenes -> Dnieper - link = { autogenerated = yes imp = 7883 ck3 = 8561 } # Tyras -> Dniester - link = { autogenerated = yes imp = 9189 imp = 9188 ck3 = 8560 } # $PROV7773$, $PROV7773$ -> Danube + link = { autogenerated = yes imp = 9410 ck3 = 8578 } # $PROV9198$ -> Volga River + link = { autogenerated = yes imp = 9415 ck3 = 8570 } # Velho -> Lovat River + link = { autogenerated = yes imp = 9413 ck3 = 8569 } # Velho -> Volkhov River + link = { autogenerated = yes imp = 8580 imp = 8579 ck3 = 8568 } # $PROV8578$, $PROV8578$ -> Desna River + link = { autogenerated = yes imp = 9406 ck3 = 8567 } # $PROV8574$ -> Dnieper River + link = { autogenerated = yes imp = 8574 ck3 = 8566 } # $PROV7871$ -> Dnieper River + link = { autogenerated = yes imp = 8573 imp = 8572 ck3 = 8565 } # $PROV7871$, $PROV7871$ -> Dnieper River + link = { autogenerated = yes imp = 6355 ck3 = 8564 } # Borysthenes -> Dnieper River + link = { autogenerated = yes imp = 7875 imp = 7876 imp = 7877 ck3 = 8563 } # Borysthenes, Borysthenes, Borysthenes -> Dnieper River + link = { autogenerated = yes imp = 7883 ck3 = 8561 } # Tyras -> Dniester River + link = { autogenerated = yes imp = 9189 imp = 9188 ck3 = 8560 } # $PROV7773$, $PROV7773$ -> Danube River link = { autogenerated = yes imp = 1489 ck3 = 8525 } # Fretum Diodorus -> LAKE_GHOUBET link = { autogenerated = yes imp = 8745 ck3 = 8523 } # Abbe -> LAKE_ABHE link = { autogenerated = yes imp = 8721 ck3 = 8519 } # Tana -> LAKE_TANA link = { autogenerated = yes imp = 4447 ck3 = 843 } # Kajangala -> Agmahl link = { autogenerated = yes imp = 7327 ck3 = 842 } # Karnasuvarna -> Raktamrittika + link = { autogenerated = yes imp = 8763 ck3 = 7976 ck3 = 7977 } # Yancheng -> Toksu, Shayar link = { autogenerated = yes imp = 7184 ck3 = 7974 ck3 = 7975 } # Kuche -> Jigdalik, Duldulokur link = { autogenerated = yes imp = 8762 ck3 = 7973 } # Xayar -> Stwerap link = { autogenerated = yes imp = 5665 ck3 = 7971 } # Hotan -> Tumshuk @@ -5456,6 +5470,7 @@ imperator_invictus = { link = { autogenerated = yes imp = 9306 ck3 = 7220 } # Mimrito -> Chubar_KAZ link = { autogenerated = yes imp = 5748 imp = 5725 imp = 5747 ck3 = 722 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Dingle Bay link = { autogenerated = yes imp = 8753 ck3 = 7165 ck3 = 7166 } # Aktogay -> Talgar, Kyzyl Suu + link = { autogenerated = yes imp = 8751 imp = 8752 ck3 = 7164 } # Issyk, Yilihe -> Almaty link = { autogenerated = yes imp = 8750 imp = 9035 ck3 = 7161 } # Jieshan, Adrug -> Kurdai link = { autogenerated = yes imp = 9034 imp = 9033 ck3 = 7158 } # Krou, Kas -> Chu link = { autogenerated = yes imp = 8754 ck3 = 7153 } # Chilpek -> Barskhan @@ -5516,7 +5531,7 @@ imperator_invictus = { link = { autogenerated = yes imp = 5771 ck3 = 692 } # Mare Septentrionale -> Eastern Coast of Scotland link = { autogenerated = yes imp = 5796 imp = 5792 imp = 5793 imp = 5795 imp = 5797 imp = 5800 imp = 5801 imp = 5802 ck3 = 691 } # Mare Septentrionale, Mare Germanicum, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Germanicum -> North Sea link = { autogenerated = yes imp = 5773 ck3 = 690 } # Mare Septentrionale -> East English Coast - link = { autogenerated = yes imp = 5775 imp = 8036 ck3 = 689 } # Mare Germanicum, Abus -> Humber + link = { autogenerated = yes imp = 5775 imp = 8036 ck3 = 689 } # Mare Germanicum, Abus -> Humber River link = { autogenerated = yes imp = 5776 ck3 = 688 } # Mare Germanicum -> The Wash link = { autogenerated = yes imp = 5777 ck3 = 687 } # Mare Germanicum -> Coast of Suffolk link = { autogenerated = yes imp = 5778 ck3 = 686 } # Mare Germanicum -> Thames Estuary @@ -5538,21 +5553,21 @@ imperator_invictus = { link = { autogenerated = yes imp = 9430 ck3 = 634 ck3 = 943 ck3 = 633 } # $PROV5854$ -> Archipelago Sea, Näsijärvi, Gulf of Bothnia link = { autogenerated = yes imp = 7645 ck3 = 632 } # Oceanus Sarmaticus -> Gulf of Riga link = { autogenerated = yes imp = 5426 imp = 5424 ck3 = 631 } # Yone, Venas -> Yangadzha - link = { autogenerated = yes imp = 9174 ck3 = 629 ck3 = 630 } # $PROV8035$ -> The Thames, The Thames - link = { autogenerated = yes imp = 8035 ck3 = 628 } # Tamesis -> The Thames + link = { autogenerated = yes imp = 9174 ck3 = 629 ck3 = 630 } # $PROV8035$ -> River Thames, River Thames + link = { autogenerated = yes imp = 8035 ck3 = 628 } # Tamesis -> River Thames link = { autogenerated = yes imp = 5425 ck3 = 627 } # Duri -> Kyzyl-Su - link = { autogenerated = yes imp = 8589 ck3 = 626 } # $PROV8586$ -> Daugava + link = { autogenerated = yes imp = 8589 ck3 = 626 } # $PROV8586$ -> Daugava River link = { autogenerated = yes imp = 5464 imp = 5465 ck3 = 624 } # Karon, Mroshika -> Aktau link = { autogenerated = yes imp = 8983 imp = 8896 ck3 = 622 } # Zhenishkekum, Tokabay -> Ak-Dzulpas link = { autogenerated = yes imp = 9370 imp = 9310 ck3 = 616 } # Kutny, Kodzuv -> Pecheneg - link = { autogenerated = yes imp = 6438 imp = 6440 imp = 7710 imp = 7711 imp = 7717 imp = 7722 ck3 = 6128 } # LAKE, LAKE, Tigris, Tigris, Euphrates, Tigris -> Tigris - link = { autogenerated = yes imp = 7714 ck3 = 6127 } # Tigris -> Tigris - link = { autogenerated = yes imp = 7715 imp = 7716 ck3 = 6126 } # Tigris, Tigris -> Tigris - link = { autogenerated = yes imp = 9156 imp = 9154 imp = 9155 imp = 9157 imp = 9158 ck3 = 6125 } # $PROV7687$, $PROV7687$, $PROV7687$, $PROV7687$, $PROV7687$ -> The Nile - link = { autogenerated = yes imp = 9152 imp = 9150 imp = 9151 imp = 9153 ck3 = 6029 } # $PROV7687$, $PROV7687$, $PROV7687$, $PROV7687$ -> The Nile - link = { autogenerated = yes imp = 9149 imp = 7669 imp = 7674 imp = 7675 imp = 7687 imp = 9146 imp = 9147 imp = 9148 ck3 = 6028 } # $PROV7687$, Nile, the Pelusiac, Nile, the Bolbitine, Nile, the Phatnitic, Nile, $PROV7687$, $PROV7687$, $PROV7687$ -> The Nile - link = { autogenerated = yes imp = 7683 imp = 7680 imp = 7681 imp = 7682 ck3 = 6027 } # Nile, the Bolbitine, Nile, the Bolbitine, Nile, the Bolbitine, Nile, the Bolbitine -> The Nile - link = { autogenerated = yes imp = 7678 imp = 7676 imp = 7677 imp = 7679 ck3 = 6026 } # Nile, the Phatnitic, Nile, the Phatnitic, Nile, the Phatnitic, Nile, the Phatnitic -> The Nile + link = { autogenerated = yes imp = 6438 imp = 6440 imp = 7710 imp = 7711 imp = 7717 imp = 7722 ck3 = 6128 } # LAKE, LAKE, Tigris, Tigris, Euphrates, Tigris -> Tigris River + link = { autogenerated = yes imp = 7714 ck3 = 6127 } # Tigris -> Tigris River + link = { autogenerated = yes imp = 7715 imp = 7716 ck3 = 6126 } # Tigris, Tigris -> Tigris River + link = { autogenerated = yes imp = 9156 imp = 9154 imp = 9155 imp = 9157 imp = 9158 ck3 = 6125 } # $PROV7687$, $PROV7687$, $PROV7687$, $PROV7687$, $PROV7687$ -> River Nile + link = { autogenerated = yes imp = 9152 imp = 9150 imp = 9151 imp = 9153 ck3 = 6029 } # $PROV7687$, $PROV7687$, $PROV7687$, $PROV7687$ -> River Nile + link = { autogenerated = yes imp = 9149 imp = 7669 imp = 7674 imp = 7675 imp = 7687 imp = 9146 imp = 9147 imp = 9148 ck3 = 6028 } # $PROV7687$, Nile, the Pelusiac, Nile, the Bolbitine, Nile, the Phatnitic, Nile, $PROV7687$, $PROV7687$, $PROV7687$ -> River Nile + link = { autogenerated = yes imp = 7683 imp = 7680 imp = 7681 imp = 7682 ck3 = 6027 } # Nile, the Bolbitine, Nile, the Bolbitine, Nile, the Bolbitine, Nile, the Bolbitine -> River Nile + link = { autogenerated = yes imp = 7678 imp = 7676 imp = 7677 imp = 7679 ck3 = 6026 } # Nile, the Phatnitic, Nile, the Phatnitic, Nile, the Phatnitic, Nile, the Phatnitic -> River Nile link = { autogenerated = yes imp = 9318 imp = 9315 imp = 9317 ck3 = 592 } # Kovny, Kymos, Gola -> Saratov link = { autogenerated = yes imp = 9368 ck3 = 577 ck3 = 580 } # Kursa -> Pronsk, Ryazan link = { autogenerated = yes imp = 9347 imp = 9351 imp = 9346 ck3 = 569 } # Orko, Marehtidak, Pihti -> Vyazma @@ -5561,6 +5576,7 @@ imperator_invictus = { link = { autogenerated = yes imp = 9335 ck3 = 5504 } # Juuri -> Jambalar link = { autogenerated = yes imp = 9309 ck3 = 5501 ck3 = 5428 ck3 = 5502 } # Ostny -> Orenburg, Sakmarskoi Gorodok, Ilekskoi Gorodok link = { autogenerated = yes imp = 9303 imp = 9307 ck3 = 5500 } # Mimvam, Bobuv -> Chalap Kerman + link = { autogenerated = yes imp = 9300 ck3 = 5499 } # Ipasyam -> Orskaya link = { autogenerated = yes imp = 9321 ck3 = 5390 } # Asnyd -> Petrovsk link = { autogenerated = yes imp = 9325 ck3 = 5388 } # Pilge -> Durovka link = { autogenerated = yes imp = 9322 ck3 = 5384 ck3 = 5391 } # Makso -> Serdosk, Treliaka @@ -5621,8 +5637,8 @@ imperator_invictus = { link = { autogenerated = yes imp = 9454 imp = 9453 imp = 9455 imp = 9456 imp = 9457 imp = 9448 imp = 9449 ck3 = 4616 } # Berriane, Ghardaia, Rmel, Dahoua, Metlili, Aroui, Ardjoun -> GHARDAIA link = { autogenerated = yes imp = 9451 ck3 = 4615 ck3 = 4613 ck3 = 4614 } # Ouargla -> WARGLA, SADRATA, KARIMA link = { autogenerated = yes imp = 9440 imp = 9441 imp = 9442 ck3 = 4609 } # Oued, Reguiba, Magrane -> ARIGH - link = { autogenerated = yes imp = 7789 imp = 6467 imp = 7790 ck3 = 457 } # Ganges, LAKE, Ganges -> Ichamati - link = { autogenerated = yes imp = 7787 imp = 7786 imp = 7788 ck3 = 456 } # Ganges, Ganges, Ganges -> Hooghly + link = { autogenerated = yes imp = 7789 imp = 6467 imp = 7790 ck3 = 457 } # Ganges, LAKE, Ganges -> Ichamati River + link = { autogenerated = yes imp = 7787 imp = 7786 imp = 7788 ck3 = 456 } # Ganges, Ganges, Ganges -> Hooghly River link = { autogenerated = yes imp = 5423 ck3 = 4533 } # Ahur -> NEBIT DAG link = { autogenerated = yes imp = 5427 imp = 6808 imp = 5452 ck3 = 4531 } # Bakk, Uzboia, Oshin -> DEKCHA link = { autogenerated = yes imp = 6613 ck3 = 4508 ck3 = 4514 } # Andaka -> LAMGHAN, KUNAR @@ -5672,35 +5688,35 @@ imperator_invictus = { link = { autogenerated = yes imp = 4382 ck3 = 3412 } # Anatachara -> Tulamba link = { autogenerated = yes imp = 4381 ck3 = 3411 ck3 = 3424 } # Shudrakai -> Vehari, Ajodhan link = { autogenerated = yes imp = 4378 imp = 9281 ck3 = 3410 } # Osioi, Sukah -> Askhanda - link = { autogenerated = yes imp = 9159 imp = 7772 ck3 = 3254 } # $PROV7771$, Baetis -> Guadalquivir - link = { autogenerated = yes imp = 7665 imp = 7771 ck3 = 3253 } # Lacus Ligustinus, Baetis -> Guadalquivir - link = { autogenerated = yes imp = 9160 imp = 9161 ck3 = 3251 } # $PROV7862$, $PROV7862$ -> Guadiana - link = { autogenerated = yes imp = 7862 imp = 7863 ck3 = 3250 } # Flumen Anas, Flumen Anas -> Guadiana - link = { autogenerated = yes imp = 9172 ck3 = 3249 } # $PROV7846$ -> Rhne - link = { autogenerated = yes imp = 9171 ck3 = 3248 } # $PROV7846$ -> Rhne - link = { autogenerated = yes imp = 7846 imp = 9170 ck3 = 3247 } # Rhodanus, $PROV7846$ -> Rhne - link = { autogenerated = yes imp = 8034 ck3 = 3245 ck3 = 3246 } # Padus -> Po, Po - link = { autogenerated = yes imp = 8032 imp = 8033 ck3 = 3244 } # Padus, Padus -> Po - link = { autogenerated = yes imp = 8031 imp = 8030 ck3 = 3243 } # Padus, Padus -> Po - link = { autogenerated = yes imp = 8588 ck3 = 3242 } # $PROV8586$ -> Daugava - link = { autogenerated = yes imp = 8586 ck3 = 3241 } # Vain -> Daugava - link = { autogenerated = yes imp = 7888 ck3 = 3240 } # Albis -> Elbe - link = { autogenerated = yes imp = 7887 ck3 = 3239 } # Albis -> Elbe - link = { autogenerated = yes imp = 7886 imp = 7885 ck3 = 3238 } # Albis, Albis -> Elbe - link = { autogenerated = yes imp = 7884 ck3 = 3237 } # Albis -> Elbe + link = { autogenerated = yes imp = 9159 imp = 7772 ck3 = 3254 } # $PROV7771$, Baetis -> Guadalquivir River + link = { autogenerated = yes imp = 7665 imp = 7771 ck3 = 3253 } # Lacus Ligustinus, Baetis -> Guadalquivir River + link = { autogenerated = yes imp = 9160 imp = 9161 ck3 = 3251 } # $PROV7862$, $PROV7862$ -> Guadiana River + link = { autogenerated = yes imp = 7862 imp = 7863 ck3 = 3250 } # Flumen Anas, Flumen Anas -> Guadiana River + link = { autogenerated = yes imp = 9172 ck3 = 3249 } # $PROV7846$ -> Rhne River + link = { autogenerated = yes imp = 9171 ck3 = 3248 } # $PROV7846$ -> Rhne River + link = { autogenerated = yes imp = 7846 imp = 9170 ck3 = 3247 } # Rhodanus, $PROV7846$ -> Rhne River + link = { autogenerated = yes imp = 8034 ck3 = 3245 ck3 = 3246 } # Padus -> Po River, Po River + link = { autogenerated = yes imp = 8032 imp = 8033 ck3 = 3244 } # Padus, Padus -> Po River + link = { autogenerated = yes imp = 8031 imp = 8030 ck3 = 3243 } # Padus, Padus -> Po River + link = { autogenerated = yes imp = 8588 ck3 = 3242 } # $PROV8586$ -> Daugava River + link = { autogenerated = yes imp = 8586 ck3 = 3241 } # Vain -> Daugava River + link = { autogenerated = yes imp = 7888 ck3 = 3240 } # Albis -> Elbe River + link = { autogenerated = yes imp = 7887 ck3 = 3239 } # Albis -> Elbe River + link = { autogenerated = yes imp = 7886 imp = 7885 ck3 = 3238 } # Albis, Albis -> Elbe River + link = { autogenerated = yes imp = 7884 ck3 = 3237 } # Albis -> Elbe River link = { autogenerated = yes imp = 9169 ck3 = 3236 } # $PROV7868$ -> Seine link = { autogenerated = yes imp = 7870 imp = 9168 ck3 = 3235 } # Sequana, $PROV7868$ -> Seine link = { autogenerated = yes imp = 7869 imp = 7868 ck3 = 3234 } # Sequana, Sequana -> Seine - link = { autogenerated = yes imp = 7729 ck3 = 3233 } # Rhenus -> Rhine - link = { autogenerated = yes imp = 7728 imp = 7727 ck3 = 3232 } # Rhenus, Rhenus -> Rhine - link = { autogenerated = yes imp = 7726 imp = 7725 ck3 = 3231 } # Rhenus, Rhenus -> Rhine + link = { autogenerated = yes imp = 7729 ck3 = 3233 } # Rhenus -> River Rhine + link = { autogenerated = yes imp = 7728 imp = 7727 ck3 = 3232 } # Rhenus, Rhenus -> River Rhine + link = { autogenerated = yes imp = 7726 imp = 7725 ck3 = 3231 } # Rhenus, Rhenus -> River Rhine link = { autogenerated = yes imp = 5780 ck3 = 3230 } # Mare Germanicum -> Zeeland Delta link = { autogenerated = yes imp = 5779 ck3 = 3229 } # Mare Germanicum -> Zeeland Delta - link = { autogenerated = yes imp = 7867 imp = 7866 ck3 = 3227 } # Liger, Liger -> Loire - link = { autogenerated = yes imp = 7864 imp = 7865 ck3 = 3226 } # Liger, Liger -> Loire - link = { autogenerated = yes imp = 9165 ck3 = 3225 } # $PROV7741$ -> Garonne - link = { autogenerated = yes imp = 7742 ck3 = 3223 } # $PROV7741$ -> Garonne - link = { autogenerated = yes imp = 7766 ck3 = 3224 } # Garumna -> Garonne + link = { autogenerated = yes imp = 7867 imp = 7866 ck3 = 3227 } # Liger, Liger -> Loire River + link = { autogenerated = yes imp = 7864 imp = 7865 ck3 = 3226 } # Liger, Liger -> Loire River + link = { autogenerated = yes imp = 9165 ck3 = 3225 } # $PROV7741$ -> Garonne River + link = { autogenerated = yes imp = 7742 ck3 = 3223 } # $PROV7741$ -> Garonne River + link = { autogenerated = yes imp = 7766 ck3 = 3224 } # Garumna -> Garonne River link = { autogenerated = yes imp = 6448 ck3 = 1492 } # Issyk-Kul -> LAKES TARTARIA link = { autogenerated = yes imp = 6447 imp = 6445 imp = 6446 ck3 = 1491 } # LAKE, LAKE, LAKE -> TRANSOXIANA LAKES link = { autogenerated = yes imp = 6416 ck3 = 1490 } # LAKE -> Tibet Lakes @@ -5730,7 +5746,7 @@ imperator_invictus = { link = { autogenerated = yes imp = 2972 imp = 2966 imp = 2971 ck3 = 1410 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal link = { autogenerated = yes imp = 9383 ck3 = 141 ck3 = 143 } # Hiiri -> ALUKSNE, VASTSELIINA link = { autogenerated = yes imp = 2970 imp = 2964 imp = 2965 imp = 2969 ck3 = 1409 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal - link = { autogenerated = yes imp = 2985 imp = 2958 imp = 2963 imp = 2967 imp = 2968 imp = 2987 ck3 = 1407 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal + link = { autogenerated = yes imp = 2968 imp = 2958 imp = 2963 imp = 2967 imp = 2985 imp = 2987 ck3 = 1407 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal link = { autogenerated = yes imp = 2982 imp = 2956 imp = 2957 imp = 2960 imp = 2961 imp = 2962 imp = 2983 imp = 2984 imp = 6455 imp = 9217 ck3 = 1406 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Podouke, Penner -> Bay of Bengal link = { autogenerated = yes imp = 2981 imp = 2946 imp = 2947 imp = 2953 imp = 2954 imp = 2980 ck3 = 1405 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal link = { autogenerated = yes imp = 2959 imp = 2940 imp = 2948 imp = 2955 ck3 = 1404 } # Sinus Gangeticus, Mare Erythraeum, Sinus Gangeticus, Sinus Gangeticus -> Palk Bay @@ -5766,18 +5782,19 @@ imperator_invictus = { link = { autogenerated = yes imp = 6421 imp = 7661 imp = 7662 imp = 7663 imp = 7664 ck3 = 1348 } # LAKE, LAKE, LAKE, LAKE, LAKE -> TIBETAN LAKES link = { autogenerated = yes imp = 4349 ck3 = 1338 } # Mallia -> Multan link = { autogenerated = yes imp = 9271 ck3 = 1327 } # Kolhua -> Rothas - link = { autogenerated = yes imp = 7785 imp = 7783 imp = 7784 imp = 9233 ck3 = 1316 } # Dyardanes, Dyardanes, Dyardanes, $PROV7783$ -> Brahmaputra - link = { autogenerated = yes imp = 7707 imp = 7708 imp = 9223 ck3 = 1315 } # Ganges, Ganges, $PROV7701$ -> Ganges - link = { autogenerated = yes imp = 9228 imp = 9227 imp = 9229 ck3 = 1314 } # $PROV7701$, $PROV7701$, $PROV7701$ -> Ganges - link = { autogenerated = yes imp = 7706 imp = 7705 ck3 = 1313 } # Ganges, Ganges -> Ganges - link = { autogenerated = yes imp = 7703 imp = 7704 imp = 7791 ck3 = 1312 } # Ganges, Ganges, Ganges -> Ganges - link = { autogenerated = yes imp = 7702 imp = 7701 ck3 = 1311 } # Ganges, Ganges -> Ganges - link = { autogenerated = yes imp = 7700 imp = 7692 ck3 = 1309 } # Indus, Indus -> Indus - link = { autogenerated = yes imp = 7698 imp = 7696 imp = 7697 imp = 7699 ck3 = 1308 } # Indus, Indus, Indus, Indus -> Indus - link = { autogenerated = yes imp = 7695 ck3 = 1307 } # Indus -> Indus + link = { autogenerated = yes imp = 7785 imp = 7783 imp = 7784 imp = 9233 ck3 = 1316 } # Dyardanes, Dyardanes, Dyardanes, $PROV7783$ -> Brahmaputra River + link = { autogenerated = yes imp = 7707 imp = 7708 imp = 9223 ck3 = 1315 } # Ganges, Ganges, $PROV7701$ -> Ganges River + link = { autogenerated = yes imp = 9228 imp = 9227 imp = 9229 ck3 = 1314 } # $PROV7701$, $PROV7701$, $PROV7701$ -> Ganges River + link = { autogenerated = yes imp = 7706 imp = 7705 ck3 = 1313 } # Ganges, Ganges -> Ganges River + link = { autogenerated = yes imp = 7703 imp = 7704 imp = 7791 ck3 = 1312 } # Ganges, Ganges, Ganges -> Ganges River + link = { autogenerated = yes imp = 7702 imp = 7701 ck3 = 1311 } # Ganges, Ganges -> Ganges River + link = { autogenerated = yes imp = 7700 imp = 7692 ck3 = 1309 } # Indus, Indus -> Indus River + link = { autogenerated = yes imp = 7698 imp = 7696 imp = 7697 imp = 7699 ck3 = 1308 } # Indus, Indus, Indus, Indus -> Indus River + link = { autogenerated = yes imp = 7695 ck3 = 1307 } # Indus -> Indus River link = { autogenerated = yes imp = 6449 ck3 = 1305 } # LAKE -> Balkhash Lake link = { autogenerated = yes imp = 7556 imp = 2949 imp = 2950 imp = 7850 ck3 = 1293 } # SEAZONE IMPASSABLE WASTELAND, Mare Erythraeum, Mare Erythraeum, SEAZONE IMPASSABLE WASTELAND -> EAST INDIAN OCEAN TI link = { autogenerated = yes imp = 4431 imp = 7475 ck3 = 1281 } # Sumsumaragiri, Mau -> Chunar + link = { autogenerated = yes imp = 8749 ck3 = 12799 ck3 = 8677 } # Oceanus -> $sea_swahili_coast$, Somali Sea link = { autogenerated = yes imp = 7453 ck3 = 1278 } # Kakaradika -> Gurgi link = { autogenerated = yes imp = 9277 ck3 = 1277 ck3 = 1241 ck3 = 1272 } # Bargarh -> Tummana, Koriya, Ratanpur link = { autogenerated = yes imp = 4444 ck3 = 1276 ck3 = 873 } # Gaya -> Gaya, Bodh_Gaya @@ -5819,42 +5836,47 @@ imperator_invictus = { link = { autogenerated = yes imp = 2617 imp = 2595 imp = 2619 ck3 = 1111 } # Mare Aegaeum, Mare Icarium, Mare Aegaeum -> Aegean Sea link = { autogenerated = yes imp = 2507 imp = 2515 ck3 = 1110 } # Sinus Veneticus, Sinus Veneticus -> Gulf of Venice link = { autogenerated = yes imp = 2541 imp = 2529 imp = 2537 imp = 2538 imp = 2542 imp = 6359 ck3 = 1109 } # Mare Superum, Mare Superum, Mare Superum, Mare Superum, Mare Superum, LAKE -> Adriatic Sea - link = { autogenerated = yes imp = 9412 ck3 = 1106 } # $PROV9198$ -> Volga - link = { autogenerated = yes imp = 6450 ck3 = 1105 ck3 = 8573 ck3 = 8579 } # LAKE -> Volga, Cheksna, Volga - link = { autogenerated = yes imp = 9198 imp = 9409 ck3 = 1103 } # $PROV8047$, $PROV9198$ -> Volga - link = { autogenerated = yes imp = 9411 ck3 = 1095 } # $PROV9198$ -> Volga - link = { autogenerated = yes imp = 9196 imp = 9195 imp = 9197 ck3 = 1094 } # $PROV8047$, $PROV8047$, $PROV8047$ -> Volga - link = { autogenerated = yes imp = 9194 ck3 = 1093 } # $PROV8047$ -> Volga - link = { autogenerated = yes imp = 8049 imp = 8048 ck3 = 1092 } # Rha, Rha -> Volga - link = { autogenerated = yes imp = 9192 imp = 9193 ck3 = 1091 } # $PROV8042$, $PROV8042$ -> Don - link = { autogenerated = yes imp = 8584 imp = 8044 imp = 8045 imp = 8046 imp = 8583 ck3 = 1090 } # $PROV8042$, Tanais, Tanais, Tanais, $PROV8042$ -> Don - link = { autogenerated = yes imp = 9417 imp = 9416 ck3 = 1087 } # Velho, Velho -> Lovat + link = { autogenerated = yes imp = 9412 ck3 = 1106 } # $PROV9198$ -> Volga River + link = { autogenerated = yes imp = 6450 ck3 = 1105 ck3 = 8573 ck3 = 8579 } # LAKE -> Volga River, Cheksna River, Volga River + link = { autogenerated = yes imp = 9198 imp = 9409 ck3 = 1103 } # $PROV8047$, $PROV9198$ -> Volga River + link = { autogenerated = yes imp = 8784 ck3 = 10982 ck3 = 10983 } # Pu -> Monyin, Hpakant + link = { autogenerated = yes imp = 8813 ck3 = 10981 ck3 = 10985 ck3 = 10987 ck3 = 10988 ck3 = 10989 } # Myitkyina -> Sumpra_Bum, Mogaung, Momauk, Waingmaw, Myitkyina + link = { autogenerated = yes imp = 8809 ck3 = 10976 ck3 = 11452 ck3 = 11486 } # Lashio -> Hsenwi, Mongmit, Hsenwi_South + link = { autogenerated = yes imp = 8808 ck3 = 10974 ck3 = 10975 } # Thanlyin -> Mongkung, Hsipaw + link = { autogenerated = yes imp = 9411 ck3 = 1095 } # $PROV9198$ -> Volga River + link = { autogenerated = yes imp = 9196 imp = 9195 imp = 9197 ck3 = 1094 } # $PROV8047$, $PROV8047$, $PROV8047$ -> Volga River + link = { autogenerated = yes imp = 9194 ck3 = 1093 } # $PROV8047$ -> Volga River + link = { autogenerated = yes imp = 8049 imp = 8048 ck3 = 1092 } # Rha, Rha -> Volga River + link = { autogenerated = yes imp = 9192 imp = 9193 ck3 = 1091 } # $PROV8042$, $PROV8042$ -> Don River + link = { autogenerated = yes imp = 8584 imp = 8044 imp = 8045 imp = 8046 imp = 8583 ck3 = 1090 } # $PROV8042$, Tanais, Tanais, Tanais, $PROV8042$ -> Don River + link = { autogenerated = yes imp = 9417 imp = 9416 ck3 = 1087 } # Velho, Velho -> Lovat River link = { autogenerated = yes imp = 9414 ck3 = 1086 } # Velho -> Lake Ilmen - link = { autogenerated = yes imp = 8575 ck3 = 1083 } # Ammodeis Ochthes -> Pripyat - link = { autogenerated = yes imp = 9407 imp = 9408 ck3 = 1082 } # $PROV8589$, $PROV8589$ -> Daugava - link = { autogenerated = yes imp = 8587 ck3 = 1081 } # $PROV8586$ -> Daugava + link = { autogenerated = yes imp = 8575 ck3 = 1083 } # Ammodeis Ochthes -> Pripyat River + link = { autogenerated = yes imp = 9407 imp = 9408 ck3 = 1082 } # $PROV8589$, $PROV8589$ -> Daugava River + link = { autogenerated = yes imp = 8587 ck3 = 1081 } # $PROV8586$ -> Daugava River link = { autogenerated = yes imp = 9376 ck3 = 108 ck3 = 109 } # Cina -> RIGA, VENDEN - link = { autogenerated = yes imp = 8577 imp = 8576 ck3 = 1079 } # $PROV8575$, $PROV8575$ -> Pripyat - link = { autogenerated = yes imp = 9405 ck3 = 1078 } # $PROV8574$ -> Dnieper - link = { autogenerated = yes imp = 6354 ck3 = 1077 } # Borysthenes -> Dnieper - link = { autogenerated = yes imp = 8581 ck3 = 1074 ck3 = 1075 } # $PROV8578$ -> Desna, Desna - link = { autogenerated = yes imp = 8578 ck3 = 1073 } # Dexi Cheri -> Desna - link = { autogenerated = yes imp = 7880 ck3 = 1072 } # Borysthenes -> Dnieper - link = { autogenerated = yes imp = 7878 imp = 7879 ck3 = 1071 } # Borysthenes, Borysthenes -> Dnieper - link = { autogenerated = yes imp = 7873 imp = 7871 imp = 7872 imp = 7874 ck3 = 1070 } # Borysthenes, Borysthenes, Borysthenes, Borysthenes -> Dnieper + link = { autogenerated = yes imp = 8577 imp = 8576 ck3 = 1079 } # $PROV8575$, $PROV8575$ -> Pripyat River + link = { autogenerated = yes imp = 9405 ck3 = 1078 } # $PROV8574$ -> Dnieper River + link = { autogenerated = yes imp = 6354 ck3 = 1077 } # Borysthenes -> Dnieper River + link = { autogenerated = yes imp = 8581 ck3 = 1074 ck3 = 1075 } # $PROV8578$ -> Desna River, Desna River + link = { autogenerated = yes imp = 8578 ck3 = 1073 } # Dexi Cheri -> Desna River + link = { autogenerated = yes imp = 7880 ck3 = 1072 } # Borysthenes -> Dnieper River + link = { autogenerated = yes imp = 7878 imp = 7879 ck3 = 1071 } # Borysthenes, Borysthenes -> Dnieper River + link = { autogenerated = yes imp = 7873 imp = 7871 imp = 7872 imp = 7874 ck3 = 1070 } # Borysthenes, Borysthenes, Borysthenes, Borysthenes -> Dnieper River link = { autogenerated = yes imp = 5367 ck3 = 1069 } # Tritonis -> Chott el Djerid - link = { autogenerated = yes imp = 9190 ck3 = 1065 } # $PROV7773$ -> Danube + link = { autogenerated = yes imp = 9190 ck3 = 1065 } # $PROV7773$ -> Danube River link = { autogenerated = yes imp = 2989 imp = 2988 imp = 2990 imp = 2991 imp = 2992 imp = 2996 imp = 2998 imp = 2999 imp = 4569 imp = 4570 imp = 4571 ck3 = 1064 } # Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum -> Caspian Sea - link = { autogenerated = yes imp = 9186 imp = 9187 ck3 = 1063 } # $PROV7773$, $PROV7773$ -> Danube + link = { autogenerated = yes imp = 9186 imp = 9187 ck3 = 1063 } # $PROV7773$, $PROV7773$ -> Danube River link = { autogenerated = yes imp = 4587 imp = 2995 imp = 4578 imp = 4579 imp = 4580 imp = 4581 imp = 4582 imp = 4583 imp = 4585 imp = 4586 imp = 8047 ck3 = 1062 } # Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Rha -> Caspian Sea - link = { autogenerated = yes imp = 7782 imp = 7781 imp = 9184 imp = 9185 ck3 = 1061 } # Ister, Ister, $PROV7773$, $PROV7773$ -> Danube - link = { autogenerated = yes imp = 7779 imp = 7780 ck3 = 1060 } # Ister, Ister -> Danube - link = { autogenerated = yes imp = 7777 imp = 7776 imp = 7778 ck3 = 1059 } # Ister, Ister, Ister -> Danube - link = { autogenerated = yes imp = 7773 imp = 7774 imp = 7775 ck3 = 1058 } # Ister, Ister, Ister -> Danube - link = { autogenerated = yes imp = 2739 imp = 7881 imp = 7882 ck3 = 1056 } # Pontus Euxinus, Tyras, Tyras -> Dniester - link = { autogenerated = yes imp = 9183 ck3 = 1054 ck3 = 1055 } # Ouistoula -> Vistula, Vistula - link = { autogenerated = yes imp = 9180 imp = 9181 imp = 9182 ck3 = 1053 } # Ouistoula, Ouistoula, Ouistoula -> Vistula - link = { autogenerated = yes imp = 9179 imp = 9178 ck3 = 1052 } # Ouistoula, Ouistoula -> Vistula + link = { autogenerated = yes imp = 7782 imp = 7781 imp = 9184 imp = 9185 ck3 = 1061 } # Ister, Ister, $PROV7773$, $PROV7773$ -> Danube River + link = { autogenerated = yes imp = 7779 imp = 7780 ck3 = 1060 } # Ister, Ister -> Danube River + link = { autogenerated = yes imp = 7777 imp = 7776 imp = 7778 ck3 = 1059 } # Ister, Ister, Ister -> Danube River + link = { autogenerated = yes imp = 7773 imp = 7774 imp = 7775 ck3 = 1058 } # Ister, Ister, Ister -> Danube River + link = { autogenerated = yes imp = 2739 imp = 7881 imp = 7882 ck3 = 1056 } # Pontus Euxinus, Tyras, Tyras -> Dniester River + link = { autogenerated = yes imp = 9183 ck3 = 1054 ck3 = 1055 } # Ouistoula -> Vistula River, Vistula River + link = { autogenerated = yes imp = 9180 imp = 9181 imp = 9182 ck3 = 1053 } # Ouistoula, Ouistoula, Ouistoula -> Vistula River + link = { autogenerated = yes imp = 9179 imp = 9178 ck3 = 1052 } # Ouistoula, Ouistoula -> Vistula River + link = { autogenerated = yes imp = 8790 ck3 = 10488 ck3 = 10984 } # Danai -> Patkai Hills, Danai link = { autogenerated = yes imp = 2533 ck3 = 1038 } # Fretum Hydruntis -> Strait of Otranto link = { autogenerated = yes imp = 2649 imp = 2612 imp = 2613 imp = 7747 ck3 = 1037 } # Mare Ionium, Mare Ionium, Mare Ionium, Sinus Patraicus -> Ionian Sea link = { autogenerated = yes imp = 2648 imp = 2511 imp = 2513 imp = 2522 ck3 = 1036 } # Mare Ionium, Mare Ionium, Mare Ionium, Sinus Tarentinus -> Gulf of Taranto diff --git a/ImperatorToCK3/Data_Files/configurables/province_mappings/terra_indomita_to_vanilla_ck3.txt b/ImperatorToCK3/Data_Files/configurables/province_mappings/terra_indomita_to_vanilla_ck3.txt new file mode 100644 index 000000000..c25349802 --- /dev/null +++ b/ImperatorToCK3/Data_Files/configurables/province_mappings/terra_indomita_to_vanilla_ck3.txt @@ -0,0 +1,7813 @@ +terra_indomita_to_vanilla_ck3 = { + triangulation_pair = { srcX = 1792 srcY = 3251 dstX = 2941 dstY = 2824 } + triangulation_pair = { srcX = 1784 srcY = 3338 dstX = 2905 dstY = 2914 } + triangulation_pair = { srcX = 1957 srcY = 3565 dstX = 3043 dstY = 3159 } + triangulation_pair = { srcX = 1886 srcY = 3493 dstX = 2985 dstY = 3082 } + triangulation_pair = { srcX = 1987 srcY = 3606 dstX = 3066 dstY = 3202 } + triangulation_pair = { srcX = 2323 srcY = 3871 dstX = 3352 dstY = 3544 } + triangulation_pair = { srcX = 2376 srcY = 3959 dstX = 3376 dstY = 3637 } + triangulation_pair = { srcX = 2443 srcY = 3877 dstX = 3465 dstY = 3586 } + triangulation_pair = { srcX = 2562 srcY = 3768 dstX = 3611 dstY = 3525 } + triangulation_pair = { srcX = 2706 srcY = 3622 dstX = 3805 dstY = 3432 } + triangulation_pair = { srcX = 2089 srcY = 4012 dstX = 3083 dstY = 3613 } + triangulation_pair = { srcX = 2103 srcY = 4038 dstX = 3093 dstY = 3641 } + triangulation_pair = { srcX = 105 srcY = 3320 dstX = 590 dstY = 2847 } + triangulation_pair = { srcX = 137 srcY = 3316 dstX = 636 dstY = 2844 } + triangulation_pair = { srcX = 175 srcY = 3310 dstX = 687 dstY = 2832 } + triangulation_pair = { srcX = 202 srcY = 3178 dstX = 649 dstY = 2677 } + triangulation_pair = { srcX = 317 srcY = 3073 dstX = 805 dstY = 2509 } + triangulation_pair = { srcX = 338 srcY = 3090 dstX = 821 dstY = 2531 } + triangulation_pair = { srcX = 399 srcY = 3067 dstX = 930 dstY = 2500 } + triangulation_pair = { srcX = 484 srcY = 3039 dstX = 1055 dstY = 2458 } + triangulation_pair = { srcX = 621 srcY = 3038 dstX = 1275 dstY = 2465 } + triangulation_pair = { srcX = 698 srcY = 3027 dstX = 1392 dstY = 2454 } + triangulation_pair = { } + triangulation_pair = { srcX = 984 srcY = 4080 dstX = 1888 dstY = 3589 } + triangulation_pair = { srcX = 2777 srcY = 2006 dstX = 4728 dstY = 1631 } + triangulation_pair = { srcX = 3820 srcY = 2021 dstX = 5885 dstY = 2431 } + triangulation_pair = { srcX = 4242 srcY = 2386 dstX = 5998 dstY = 3089 } + triangulation_pair = { srcX = 4050 srcY = 1880 dstX = 6230 dstY = 2476 } + triangulation_pair = { srcX = 4100 srcY = 1762 dstX = 6382 dstY = 2408 } + triangulation_pair = { srcX = 4050 srcY = 1767 dstX = 6331 dstY = 2374 } + triangulation_pair = { srcX = 4039 srcY = 1851 dstX = 6247 dstY = 2441 } + triangulation_pair = { srcX = 4138 srcY = 1893 dstX = 6301 dstY = 2555 } + triangulation_pair = { srcX = 4109 srcY = 1912 dstX = 6259 dstY = 2550 } + triangulation_pair = { srcX = 4031 srcY = 1925 dstX = 6174 dstY = 2502 } + triangulation_pair = { srcX = 4053 srcY = 1964 dstX = 6162 dstY = 2552 } + triangulation_pair = { srcX = 3897 srcY = 2073 dstX = 5917 dstY = 2531 } + triangulation_pair = { srcX = 3878 srcY = 2078 dstX = 5896 dstY = 2524 } + triangulation_pair = { srcX = 3950 srcY = 2259 dstX = 5815 dstY = 2735 } + triangulation_pair = { srcX = 3981 srcY = 2365 dstX = 5770 dstY = 2855 } + triangulation_pair = { srcX = 3840 srcY = 2876 dstX = 5326 dstY = 3258 } + triangulation_pair = { srcX = 3840 srcY = 2986 dstX = 5264 dstY = 3363 } + triangulation_pair = { srcX = 4627 srcY = 2105 dstX = 6547 dstY = 3075 } + triangulation_pair = { srcX = 4449 srcY = 2101 dstX = 6411 dstY = 2938 } + triangulation_pair = { srcX = 4610 srcY = 2139 dstX = 6506 dstY = 3083 } + triangulation_pair = { srcX = 4446 srcY = 2020 dstX = 6464 dstY = 2887 } + triangulation_pair = { srcX = 4323 srcY = 2151 dstX = 6249 dstY = 2903 } + triangulation_pair = { srcX = 4355 srcY = 2288 dstX = 6164 dstY = 3026 } + triangulation_pair = { srcX = 4460 srcY = 2290 dstX = 6251 dstY = 3114 } + triangulation_pair = { srcX = 4423 srcY = 2176 dstX = 6319 dstY = 2958 } + triangulation_pair = { srcX = 4362 srcY = 2089 dstX = 6335 dstY = 2878 } + triangulation_pair = { srcX = 4117 srcY = 2243 dstX = 5984 dstY = 2841 } + triangulation_pair = { srcX = 4158 srcY = 2125 dstX = 6124 dstY = 2769 } + triangulation_pair = { srcX = 4285 srcY = 2119 dstX = 6244 dstY = 2851 } + triangulation_pair = { srcX = 4476 srcY = 2307 dstX = 6255 dstY = 3136 } + triangulation_pair = { srcX = 4545 srcY = 2352 dstX = 6269 dstY = 3201 } + triangulation_pair = { srcX = 4566 srcY = 2478 dstX = 6185 dstY = 3303 } + triangulation_pair = { srcX = 4630 srcY = 2492 dstX = 6228 dstY = 3345 } + triangulation_pair = { srcX = 4662 srcY = 2473 dstX = 6266 dstY = 3348 } + triangulation_pair = { srcX = 4690 srcY = 2492 dstX = 6270 dstY = 3377 } + triangulation_pair = { srcX = 4731 srcY = 2514 dstX = 6284 dstY = 3409 } + triangulation_pair = { srcX = 4862 srcY = 2613 dstX = 6296 dstY = 3538 } + triangulation_pair = { srcX = 4777 srcY = 2615 dstX = 6234 dstY = 3497 } + triangulation_pair = { srcX = 4838 srcY = 2733 dstX = 6191 dstY = 3610 } + triangulation_pair = { srcX = 4869 srcY = 2799 dstX = 6174 dstY = 3677 } + triangulation_pair = { srcX = 4886 srcY = 2849 dstX = 6161 dstY = 3724 } + triangulation_pair = { srcX = 4801 srcY = 2868 dstX = 6079 dstY = 3682 } + triangulation_pair = { srcX = 3939 srcY = 3314 dstX = 5156 dstY = 3735 } + triangulation_pair = { srcX = 4065 srcY = 3287 dstX = 5298 dstY = 3784 } + triangulation_pair = { srcX = 4073 srcY = 3179 dstX = 5375 dstY = 3695 } + triangulation_pair = { srcX = 3947 srcY = 3165 dstX = 5268 dstY = 3607 } + triangulation_pair = { srcX = 3971 srcY = 3211 dstX = 5253 dstY = 3661 } + triangulation_pair = { srcX = 3728 srcY = 2991 dstX = 5138 dstY = 3296 } + triangulation_pair = { srcX = 3677 srcY = 3001 dstX = 5087 dstY = 3274 } + triangulation_pair = { srcX = 3233 srcY = 2888 dstX = 4684 dstY = 2918 } + triangulation_pair = { srcX = 2465 srcY = 2383 dstX = 4070 dstY = 1950 } + triangulation_pair = { srcX = 2377 srcY = 2329 dstX = 3969 dstY = 1822 } + triangulation_pair = { srcX = 1542 srcY = 2114 dstX = 2651 dstY = 1101 } + triangulation_pair = { srcX = 1663 srcY = 2083 dstX = 2862 dstY = 1117 } + triangulation_pair = { srcX = 1122 srcY = 1288 dstX = 2123 dstY = 29 } + triangulation_pair = { srcX = 1358 srcY = 1576 dstX = 2381 dstY = 384 } + triangulation_pair = { srcX = 1075 srcY = 1679 dstX = 1997 dstY = 448 } + triangulation_pair = { srcX = 1062 srcY = 1723 dstX = 1977 dstY = 497 } + triangulation_pair = { srcX = 981 srcY = 2006 dstX = 1842 dstY = 838 } + triangulation_pair = { srcX = 1673 srcY = 2458 dstX = 2931 dstY = 1685 } + triangulation_pair = { srcX = 1588 srcY = 2421 dstX = 2781 dstY = 1612 } + triangulation_pair = { srcX = 1537 srcY = 2565 dstX = 2723 dstY = 1809 } + triangulation_pair = { srcX = 1493 srcY = 2518 dstX = 2658 dstY = 1725 } + triangulation_pair = { srcX = 1346 srcY = 1877 dstX = 2361 dstY = 762 } + triangulation_pair = { srcX = 1374 srcY = 1861 dstX = 2400 dstY = 745 } + triangulation_pair = { srcX = 1364 srcY = 1958 dstX = 2397 dstY = 860 } + triangulation_pair = { srcX = 1289 srcY = 1997 dstX = 2292 dstY = 900 } + triangulation_pair = { srcX = 1272 srcY = 1918 dstX = 2262 dstY = 801 } + triangulation_pair = { srcX = 1120 srcY = 1967 dstX = 2063 dstY = 816 } + triangulation_pair = { srcX = 1025 srcY = 2081 dstX = 1905 dstY = 948 } + triangulation_pair = { srcX = 1051 srcY = 2004 dstX = 1950 dstY = 847 } + triangulation_pair = { srcX = 992 srcY = 1892 dstX = 1867 dstY = 695 } + triangulation_pair = { srcX = 1727 srcY = 1962 dstX = 2948 dstY = 986 } + triangulation_pair = { srcX = 1938 srcY = 1921 dstX = 3418 dstY = 1071 } + triangulation_pair = { srcX = 1927 srcY = 1769 dstX = 3419 dstY = 845 } + triangulation_pair = { srcX = 1881 srcY = 1717 dstX = 3307 dstY = 745 } + triangulation_pair = { srcX = 2136 srcY = 1766 dstX = 3904 dstY = 947 } + triangulation_pair = { srcX = 2168 srcY = 1826 dstX = 3906 dstY = 1070 } + triangulation_pair = { srcX = 2206 srcY = 2039 dstX = 3868 dstY = 1354 } + triangulation_pair = { srcX = 2108 srcY = 2301 dstX = 3635 dstY = 1643 } + triangulation_pair = { srcX = 2375 srcY = 2189 dstX = 4038 dstY = 1634 } + triangulation_pair = { srcX = 2592 srcY = 1582 dstX = 4716 dstY = 1008 } + triangulation_pair = { srcX = 2421 srcY = 1623 dstX = 4403 dstY = 977 } + triangulation_pair = { srcX = 2366 srcY = 1660 dstX = 4305 dstY = 974 } + triangulation_pair = { srcX = 2363 srcY = 1569 dstX = 4319 dstY = 857 } + triangulation_pair = { srcX = 2281 srcY = 1591 dstX = 4161 dstY = 840 } + triangulation_pair = { srcX = 2278 srcY = 1651 dstX = 4137 dstY = 868 } + triangulation_pair = { srcX = 1966 srcY = 1666 dstX = 3603 dstY = 704 } + triangulation_pair = { srcX = 2004 srcY = 1747 dstX = 3660 dstY = 893 } + triangulation_pair = { srcX = 1983 srcY = 1884 dstX = 3565 dstY = 1040 } + triangulation_pair = { srcX = 1970 srcY = 1839 dstX = 3562 dstY = 980 } + triangulation_pair = { srcX = 1984 srcY = 1776 dstX = 3605 dstY = 906 } + triangulation_pair = { srcX = 1787 srcY = 1953 dstX = 3062 dstY = 991 } + triangulation_pair = { srcX = 1889 srcY = 1965 dstX = 3263 dstY = 1080 } + triangulation_pair = { srcX = 1698 srcY = 2057 dstX = 2912 dstY = 1093 } + triangulation_pair = { srcX = 1651 srcY = 2194 dstX = 2854 dstY = 1278 } + triangulation_pair = { srcX = 1675 srcY = 2246 dstX = 2891 dstY = 1378 } + triangulation_pair = { srcX = 1608 srcY = 2343 dstX = 2824 dstY = 1487 } + triangulation_pair = { srcX = 1772 srcY = 2393 dstX = 3093 dstY = 1643 } + triangulation_pair = { srcX = 1789 srcY = 2277 dstX = 3109 dstY = 1471 } + triangulation_pair = { srcX = 1864 srcY = 2314 dstX = 3254 dstY = 1562 } + triangulation_pair = { srcX = 2149 srcY = 2407 dstX = 3643 dstY = 1808 } + triangulation_pair = { srcX = 2294 srcY = 2589 dstX = 3762 dstY = 2118 } + triangulation_pair = { srcX = 2196 srcY = 2600 dstX = 3634 dstY = 2089 } + triangulation_pair = { srcX = 1470 srcY = 3015 dstX = 2578 dstY = 2498 } + triangulation_pair = { srcX = 1567 srcY = 2960 dstX = 2720 dstY = 2428 } + triangulation_pair = { srcX = 1681 srcY = 2964 dstX = 2880 dstY = 2447 } + triangulation_pair = { srcX = 2505 srcY = 3266 dstX = 3729 dstY = 2996 } + triangulation_pair = { srcX = 1710 srcY = 2983 dstX = 2915 dstY = 2476 } + triangulation_pair = { srcX = 1756 srcY = 2953 dstX = 2982 dstY = 2446 } + triangulation_pair = { srcX = 1968 srcY = 2695 dstX = 3323 dstY = 2137 } + triangulation_pair = { srcX = 2090 srcY = 2699 dstX = 3473 dstY = 2185 } + triangulation_pair = { srcX = 2171 srcY = 2658 dstX = 3588 dstY = 2156 } + triangulation_pair = { srcX = 2216 srcY = 2767 dstX = 3604 dstY = 2316 } + triangulation_pair = { srcX = 2151 srcY = 2760 dstX = 3527 dstY = 2282 } + triangulation_pair = { srcX = 2182 srcY = 2819 dstX = 3543 dstY = 2371 } + triangulation_pair = { srcX = 2399 srcY = 3008 dstX = 3720 dstY = 2676 } + triangulation_pair = { srcX = 2334 srcY = 3023 dstX = 3641 dstY = 2670 } + triangulation_pair = { srcX = 2357 srcY = 2958 dstX = 3695 dstY = 2605 } + triangulation_pair = { srcX = 2285 srcY = 2992 dstX = 3596 dstY = 2610 } + triangulation_pair = { srcX = 2458 srcY = 3005 dstX = 3788 dstY = 2693 } + triangulation_pair = { srcX = 2448 srcY = 3043 dstX = 3761 dstY = 2733 } + triangulation_pair = { srcX = 2435 srcY = 3099 dstX = 3723 dstY = 2792 } + triangulation_pair = { srcX = 2474 srcY = 3085 dstX = 3770 dstY = 2789 } + triangulation_pair = { srcX = 2603 srcY = 3032 dstX = 3935 dstY = 2781 } + triangulation_pair = { srcX = 2694 srcY = 2909 dstX = 4089 dstY = 2689 } + triangulation_pair = { srcX = 2728 srcY = 3005 dstX = 4078 dstY = 2806 } + triangulation_pair = { srcX = 2664 srcY = 3090 dstX = 3982 dstY = 2864 } + triangulation_pair = { srcX = 2876 srcY = 3303 dstX = 4108 dstY = 3180 } + triangulation_pair = { srcX = 2867 srcY = 3714 dstX = 3932 dstY = 3583 } + triangulation_pair = { srcX = 2765 srcY = 3776 dstX = 3808 dstY = 3601 } + triangulation_pair = { srcX = 2750 srcY = 4022 dstX = 3706 dstY = 3803 } + triangulation_pair = { srcX = 2764 srcY = 3925 dstX = 3755 dstY = 3725 } + triangulation_pair = { srcX = 2771 srcY = 3873 dstX = 3781 dstY = 3688 } + triangulation_pair = { srcX = 2739 srcY = 3809 dstX = 3772 dstY = 3621 } + triangulation_pair = { srcX = 2172 srcY = 3847 dstX = 3204 dstY = 3476 } + triangulation_pair = { srcX = 1836 srcY = 3907 dstX = 2836 dstY = 3464 } + triangulation_pair = { srcX = 1881 srcY = 3797 dstX = 2902 dstY = 3368 } + triangulation_pair = { srcX = 1747 srcY = 3809 dstX = 2749 dstY = 3358 } + triangulation_pair = { srcX = 1770 srcY = 3566 dstX = 2829 dstY = 3129 } + triangulation_pair = { srcX = 1740 srcY = 3424 dstX = 2824 dstY = 2995 } + triangulation_pair = { srcX = 1629 srcY = 3248 dstX = 2741 dstY = 2818 } + triangulation_pair = { srcX = 1322 srcY = 2972 dstX = 2366 dstY = 2406 } + triangulation_pair = { srcX = 1354 srcY = 3087 dstX = 2399 dstY = 2582 } + triangulation_pair = { srcX = 1314 srcY = 3058 dstX = 2346 dstY = 2536 } + triangulation_pair = { srcX = 1224 srcY = 3007 dstX = 2207 dstY = 2451 } + triangulation_pair = { srcX = 1288 srcY = 3027 dstX = 2310 dstY = 2488 } + triangulation_pair = { srcX = 1200 srcY = 2978 dstX = 2172 dstY = 2405 } + triangulation_pair = { srcX = 1270 srcY = 3190 dstX = 2255 dstY = 2716 } + triangulation_pair = { srcX = 926 srcY = 3217 dstX = 1764 dstY = 2741 } + triangulation_pair = { srcX = 1010 srcY = 3246 dstX = 1882 dstY = 2782 } + triangulation_pair = { srcX = 828 srcY = 3175 dstX = 1614 dstY = 2674 } + triangulation_pair = { srcX = 849 srcY = 3131 dstX = 1640 dstY = 2617 } + triangulation_pair = { srcX = 1132 srcY = 2798 dstX = 2072 dstY = 2112 } + triangulation_pair = { srcX = 1129 srcY = 2849 dstX = 2063 dstY = 2195 } + triangulation_pair = { srcX = 1162 srcY = 2905 dstX = 2116 dstY = 2290 } + triangulation_pair = { srcX = 1308 srcY = 2852 dstX = 2362 dstY = 2218 } + triangulation_pair = { srcX = 1297 srcY = 2685 dstX = 2349 dstY = 1948 } + triangulation_pair = { srcX = 1267 srcY = 2687 dstX = 2302 dstY = 1946 } + triangulation_pair = { srcX = 1156 srcY = 2555 dstX = 2117 dstY = 1716 } + triangulation_pair = { srcX = 1131 srcY = 2567 dstX = 2074 dstY = 1733 } + triangulation_pair = { srcX = 1130 srcY = 2399 dstX = 2074 dstY = 1452 } + triangulation_pair = { srcX = 1008 srcY = 2472 dstX = 1869 dstY = 1561 } + triangulation_pair = { srcX = 938 srcY = 2409 dstX = 1745 dstY = 1442 } + triangulation_pair = { srcX = 935 srcY = 2427 dstX = 1741 dstY = 1472 } + triangulation_pair = { srcX = 855 srcY = 2370 dstX = 1596 dstY = 1367 } + triangulation_pair = { srcX = 858 srcY = 2332 dstX = 1605 dstY = 1308 } + triangulation_pair = { srcX = 828 srcY = 2431 dstX = 1548 dstY = 1468 } + triangulation_pair = { srcX = 644 srcY = 2568 dstX = 1222 dstY = 1697 } + triangulation_pair = { srcX = 579 srcY = 2446 dstX = 1098 dstY = 1486 } + triangulation_pair = { srcX = 580 srcY = 2497 dstX = 1098 dstY = 1573 } + triangulation_pair = { srcX = 709 srcY = 2551 dstX = 1338 dstY = 1667 } + triangulation_pair = { srcX = 746 srcY = 2540 dstX = 1400 dstY = 1652 } + triangulation_pair = { srcX = 750 srcY = 2427 dstX = 1408 dstY = 1455 } + triangulation_pair = { srcX = 754 srcY = 2451 dstX = 1419 dstY = 1502 } + triangulation_pair = { srcX = 727 srcY = 2408 dstX = 1369 dstY = 1424 } + triangulation_pair = { srcX = 890 srcY = 2636 dstX = 1667 dstY = 1829 } + triangulation_pair = { srcX = 876 srcY = 2679 dstX = 1642 dstY = 1894 } + triangulation_pair = { srcX = 933 srcY = 2668 dstX = 1740 dstY = 1886 } + triangulation_pair = { srcX = 936 srcY = 2860 dstX = 1752 dstY = 2199 } + triangulation_pair = { srcX = 875 srcY = 3044 dstX = 1668 dstY = 2489 } + triangulation_pair = { srcX = 989 srcY = 3044 dstX = 1845 dstY = 2493 } + triangulation_pair = { srcX = 981 srcY = 2965 dstX = 1827 dstY = 2370 } + triangulation_pair = { srcX = 878 srcY = 2813 dstX = 1651 dstY = 2122 } + triangulation_pair = { srcX = 1097 srcY = 2892 dstX = 2014 dstY = 2260 } + triangulation_pair = { srcX = 840 srcY = 3028 dstX = 1611 dstY = 2463 } + triangulation_pair = { srcX = 23 srcY = 3344 dstX = 429 dstY = 2892 } + triangulation_pair = { srcX = 19 srcY = 3247 dstX = 442 dstY = 2764 } + triangulation_pair = { srcX = 102 srcY = 3137 dstX = 503 dstY = 2614 } + triangulation_pair = { srcX = 180 srcY = 3096 dstX = 598 dstY = 2559 } + triangulation_pair = { srcX = 235 srcY = 3040 dstX = 666 dstY = 2468 } + triangulation_pair = { srcX = 3892 srcY = 433 dstX = 7863 dstY = 1047 } + triangulation_pair = { srcX = 3718 srcY = 950 dstX = 6850 dstY = 1319 } + triangulation_pair = { srcX = 3630 srcY = 892 dstX = 6808 dstY = 1186 } + triangulation_pair = { srcX = 3558 srcY = 930 dstX = 6660 dstY = 1153 } + triangulation_pair = { srcX = 3852 srcY = 1062 dstX = 6832 dstY = 1533 } + triangulation_pair = { srcX = 3946 srcY = 823 dstX = 7270 dstY = 1419 } + triangulation_pair = { srcX = 3988 srcY = 465 dstX = 7904 dstY = 1161 } + triangulation_pair = { srcX = 3846 srcY = 203 dstX = 8225 dstY = 843 } + triangulation_pair = { srcX = 3670 srcY = 171 dstX = 8107 dstY = 588 } + triangulation_pair = { srcX = 3830 srcY = 375 dstX = 7852 dstY = 948 } + triangulation_pair = { srcX = 3311 srcY = 907 dstX = 6281 dstY = 832 } + triangulation_pair = { srcX = 3437 srcY = 843 dstX = 6577 dstY = 955 } + triangulation_pair = { srcX = 3460 srcY = 712 dstX = 6772 dstY = 870 } + triangulation_pair = { srcX = 3448 srcY = 661 dstX = 6810 dstY = 833 } + triangulation_pair = { srcX = 3664 srcY = 559 dstX = 7306 dstY = 940 } + triangulation_pair = { srcX = 3833 srcY = 465 dstX = 7735 dstY = 1013 } + triangulation_pair = { srcX = 3926 srcY = 465 dstX = 7849 dstY = 1105 } + triangulation_pair = { srcX = 3937 srcY = 471 dstX = 7853 dstY = 1115 } + triangulation_pair = { srcX = 4046 srcY = 612 dstX = 7743 dstY = 1341 } + triangulation_pair = { srcX = 4106 srcY = 714 dstX = 7670 dstY = 1481 } + triangulation_pair = { srcX = 4260 srcY = 819 dstX = 7666 dstY = 1719 } + triangulation_pair = { srcX = 4153 srcY = 770 dstX = 7637 dstY = 1569 } + triangulation_pair = { srcX = 4180 srcY = 826 dstX = 7571 dstY = 1647 } + triangulation_pair = { srcX = 4200 srcY = 808 dstX = 7618 dstY = 1653 } + triangulation_pair = { srcX = 4295 srcY = 759 dstX = 7794 dstY = 1714 } + triangulation_pair = { srcX = 4351 srcY = 787 dstX = 7815 dstY = 1820 } + triangulation_pair = { srcX = 4396 srcY = 792 dstX = 7842 dstY = 1885 } + triangulation_pair = { srcX = 4365 srcY = 926 dstX = 7626 dstY = 1951 } + triangulation_pair = { srcX = 4367 srcY = 639 dstX = 8048 dstY = 1711 } + triangulation_pair = { srcX = 4333 srcY = 469 dstX = 8265 dstY = 1552 } + triangulation_pair = { srcX = 4332 srcY = 434 dstX = 8312 dstY = 1527 } + triangulation_pair = { srcX = 4158 srcY = 333 dstX = 8314 dstY = 1294 } + triangulation_pair = { srcX = 4208 srcY = 318 dstX = 8369 dstY = 1312 } + triangulation_pair = { srcX = 4251 srcY = 352 dstX = 8359 dstY = 1384 } + triangulation_pair = { srcX = 4214 srcY = 300 dstX = 8397 dstY = 1309 } + triangulation_pair = { srcX = 3617 srcY = 232 dstX = 7921 dstY = 568 } + triangulation_pair = { srcX = 3629 srcY = 204 dstX = 7964 dstY = 566 } + triangulation_pair = { srcX = 3683 srcY = 130 dstX = 8194 dstY = 586 } + triangulation_pair = { srcX = 3625 srcY = 67 dstX = 8224 dstY = 484 } + triangulation_pair = { srcX = 3870 srcY = 122 dstX = 8350 dstY = 812 } + triangulation_pair = { srcX = 4013 srcY = 196 dstX = 8346 dstY = 984 } + triangulation_pair = { srcX = 4082 srcY = 15 dstX = 8669 dstY = 957 } + triangulation_pair = { srcX = 4187 srcY = 279 dstX = 8404 dstY = 1262 } + triangulation_pair = { srcX = 4125 srcY = 255 dstX = 8376 dstY = 1171 } + triangulation_pair = { srcX = 4030 srcY = 216 dstX = 8351 dstY = 1029 } + triangulation_pair = { srcX = 4031 srcY = 237 dstX = 8323 dstY = 1055 } + triangulation_pair = { srcX = 4018 srcY = 153 dstX = 8407 dstY = 987 } + triangulation_pair = { srcX = 4142 srcY = 110 dstX = 8583 dstY = 1093 } + triangulation_pair = { srcX = 4148 srcY = 66 dstX = 8654 dstY = 1064 } + triangulation_pair = { srcX = 4207 srcY = 275 dstX = 8426 dstY = 1283 } + triangulation_pair = { srcX = 4347 srcY = 311 dstX = 8499 dstY = 1478 } + triangulation_pair = { srcX = 4453 srcY = 369 dstX = 8492 dstY = 1652 } + triangulation_pair = { srcX = 4464 srcY = 422 dstX = 8428 dstY = 1701 } + triangulation_pair = { srcX = 4478 srcY = 458 dstX = 8383 dstY = 1741 } + triangulation_pair = { srcX = 4472 srcY = 479 dstX = 8346 dstY = 1746 } + triangulation_pair = { srcX = 4458 srcY = 522 dstX = 8279 dstY = 1752 } + triangulation_pair = { srcX = 4470 srcY = 536 dstX = 8265 dstY = 1779 } + triangulation_pair = { srcX = 4461 srcY = 617 dstX = 8144 dstY = 1825 } + triangulation_pair = { srcX = 4486 srcY = 695 dstX = 8052 dstY = 1921 } + triangulation_pair = { srcX = 4445 srcY = 720 dstX = 7990 dstY = 1878 } + triangulation_pair = { srcX = 4518 srcY = 782 dstX = 7959 dstY = 2034 } + triangulation_pair = { srcX = 4445 srcY = 814 dstX = 7849 dstY = 1968 } + triangulation_pair = { srcX = 4484 srcY = 836 dstX = 7857 dstY = 2035 } + triangulation_pair = { srcX = 4525 srcY = 810 dstX = 7925 dstY = 2071 } + triangulation_pair = { srcX = 4538 srcY = 799 dstX = 7948 dstY = 2081 } + triangulation_pair = { srcX = 4556 srcY = 813 dstX = 7939 dstY = 2111 } + triangulation_pair = { srcX = 4543 srcY = 835 dstX = 7899 dstY = 2115 } + triangulation_pair = { srcX = 4646 srcY = 1374 dstX = 7366 dstY = 2510 } + triangulation_pair = { srcX = 4628 srcY = 1245 dstX = 7483 dstY = 2387 } + triangulation_pair = { srcX = 4731 srcY = 1355 dstX = 7445 dstY = 2585 } + triangulation_pair = { srcX = 5114 srcY = 1608 dstX = 7413 dstY = 3038 } + triangulation_pair = { srcX = 5079 srcY = 1560 dstX = 7444 dstY = 2985 } + triangulation_pair = { srcX = 5052 srcY = 1479 dstX = 7523 dstY = 2918 } + triangulation_pair = { srcX = 5045 srcY = 1513 dstX = 7468 dstY = 2924 } + triangulation_pair = { srcX = 5012 srcY = 1537 dstX = 7420 dstY = 2911 } + triangulation_pair = { srcX = 4964 srcY = 1509 dstX = 7414 dstY = 2843 } + triangulation_pair = { srcX = 4866 srcY = 1428 dstX = 7431 dstY = 2704 } + triangulation_pair = { srcX = 4899 srcY = 1397 dstX = 7497 dstY = 2718 } + triangulation_pair = { srcX = 5174 srcY = 1452 dstX = 7627 dstY = 3006 } + triangulation_pair = { srcX = 5230 srcY = 1440 dstX = 7676 dstY = 3052 } + triangulation_pair = { srcX = 5204 srcY = 1479 dstX = 7616 dstY = 3052 } + triangulation_pair = { srcX = 5247 srcY = 1561 dstX = 7549 dstY = 3127 } + triangulation_pair = { srcX = 5193 srcY = 1645 dstX = 7435 dstY = 3131 } + triangulation_pair = { srcX = 5230 srcY = 1827 dstX = 7272 dstY = 3250 } + triangulation_pair = { srcX = 5304 srcY = 1873 dstX = 7242 dstY = 3330 } + triangulation_pair = { srcX = 5450 srcY = 2598 dstX = 6713 dstY = 3887 } + triangulation_pair = { srcX = 5085 srcY = 2530 dstX = 6515 dstY = 3610 } + triangulation_pair = { srcX = 5153 srcY = 2317 dstX = 6736 dstY = 3514 } + triangulation_pair = { srcX = 5623 srcY = 1914 dstX = 7388 dstY = 3584 } + triangulation_pair = { srcX = 5742 srcY = 1916 dstX = 7450 dstY = 3672 } + triangulation_pair = { srcX = 5838 srcY = 1748 dstX = 7653 dstY = 3687 } + triangulation_pair = { srcX = 5415 srcY = 1564 dstX = 7655 dstY = 3268 } + triangulation_pair = { srcX = 5320 srcY = 1520 dstX = 7641 dstY = 3173 } + triangulation_pair = { srcX = 5523 srcY = 1450 dstX = 7823 dstY = 3310 } + triangulation_pair = { srcX = 6070 srcY = 1198 dstX = 8209 dstY = 3636 } + triangulation_pair = { srcX = 6038 srcY = 1437 dstX = 8001 dstY = 3700 } + triangulation_pair = { srcX = 5935 srcY = 1515 dstX = 7930 dstY = 3693 } + triangulation_pair = { srcX = 6125 srcY = 1088 dstX = 8316 dstY = 3645 } + triangulation_pair = { srcX = 6148 srcY = 1124 dstX = 8276 dstY = 3673 } + triangulation_pair = { srcX = 6171 srcY = 1074 dstX = 8342 dstY = 3679 } + triangulation_pair = { srcX = 6832 srcY = 435 dstX = 8979 dstY = 4054 } + triangulation_pair = { srcX = 6275 srcY = 1778 dstX = 7796 dstY = 4023 } + triangulation_pair = { srcX = 6310 srcY = 2054 dstX = 7608 dstY = 4169 } + triangulation_pair = { srcX = 6172 srcY = 2187 dstX = 7429 dstY = 4133 } + triangulation_pair = { srcX = 6037 srcY = 2326 dstX = 7249 dstY = 4103 } + triangulation_pair = { srcX = 5994 srcY = 2397 dstX = 7181 dstY = 4112 } + triangulation_pair = { srcX = 5524 srcY = 2765 dstX = 6649 dstY = 4039 } + triangulation_pair = { srcX = 5162 srcY = 2888 dstX = 6336 dstY = 3919 } + triangulation_pair = { srcX = 5022 srcY = 2842 dstX = 6263 dstY = 3804 } + triangulation_pair = { srcX = 4952 srcY = 2802 dstX = 6236 dstY = 3732 } + triangulation_pair = { srcX = 4909 srcY = 2871 dstX = 6160 dstY = 3750 } + triangulation_pair = { srcX = 4681 srcY = 2799 dstX = 6031 dstY = 3565 } + triangulation_pair = { srcX = 4505 srcY = 2782 dstX = 5913 dstY = 3476 } + triangulation_pair = { srcX = 4589 srcY = 2810 dstX = 5957 dstY = 3532 } + triangulation_pair = { srcX = 4404 srcY = 2733 dstX = 5866 dstY = 3398 } + triangulation_pair = { srcX = 4433 srcY = 1719 dstX = 6765 dstY = 2598 } + triangulation_pair = { srcX = 4268 srcY = 1463 dstX = 6833 dstY = 2301 } + triangulation_pair = { srcX = 4251 srcY = 1396 dstX = 6890 dstY = 2191 } + triangulation_pair = { srcX = 4204 srcY = 1493 dstX = 6720 dstY = 2258 } + triangulation_pair = { srcX = 4095 srcY = 1673 dstX = 6458 dstY = 2327 } + triangulation_pair = { srcX = 4118 srcY = 1677 dstX = 6472 dstY = 2349 } + triangulation_pair = { srcX = 3180 srcY = 1507 dstX = 5615 dstY = 1356 } + triangulation_pair = { srcX = 3143 srcY = 1539 dstX = 5532 dstY = 1360 } + triangulation_pair = { srcX = 3092 srcY = 1633 dstX = 5397 dstY = 1417 } + triangulation_pair = { srcX = 3069 srcY = 950 dstX = 5870 dstY = 666 } + triangulation_pair = { srcX = 3033 srcY = 1054 dstX = 5723 dstY = 745 } + triangulation_pair = { srcX = 3249 srcY = 1111 dstX = 6017 dstY = 993 } + triangulation_pair = { srcX = 2674 srcY = 1378 dstX = 5001 dstY = 902 } + triangulation_pair = { srcX = 2708 srcY = 1624 dstX = 4871 dstY = 1140 } + triangulation_pair = { srcX = 2972 srcY = 1827 dstX = 5098 dstY = 1558 } + triangulation_pair = { srcX = 2224 srcY = 2729 dstX = 3623 dstY = 2271 } + triangulation_pair = { srcX = 2356 srcY = 2674 dstX = 3806 dstY = 2260 } + triangulation_pair = { srcX = 2634 srcY = 2444 dstX = 4241 dstY = 2112 } + triangulation_pair = { srcX = 2863 srcY = 2367 dstX = 4560 dstY = 2143 } + triangulation_pair = { srcX = 2904 srcY = 2337 dstX = 4626 dstY = 2128 } + triangulation_pair = { srcX = 3152 srcY = 2415 dstX = 4862 dstY = 2360 } + triangulation_pair = { srcX = 3098 srcY = 2579 dstX = 4711 dstY = 2489 } + triangulation_pair = { srcX = 3101 srcY = 2605 dstX = 4696 dstY = 2538 } + triangulation_pair = { srcX = 3108 srcY = 2670 dstX = 4665 dstY = 2613 } + triangulation_pair = { srcX = 3103 srcY = 2691 dstX = 4645 dstY = 2627 } + triangulation_pair = { srcX = 3125 srcY = 2923 dstX = 4545 dstY = 2905 } + triangulation_pair = { srcX = 3099 srcY = 2041 dstX = 5227 dstY = 1847 } + triangulation_pair = { srcX = 3462 srcY = 1975 dstX = 5529 dstY = 2105 } + triangulation_pair = { srcX = 3406 srcY = 1976 dstX = 5461 dstY = 2066 } + triangulation_pair = { srcX = 3420 srcY = 1930 dstX = 5519 dstY = 2030 } + triangulation_pair = { srcX = 3648 srcY = 2458 dstX = 5377 dstY = 2717 } + triangulation_pair = { srcX = 3669 srcY = 2446 dstX = 5397 dstY = 2718 } + triangulation_pair = { srcX = 3671 srcY = 2332 dstX = 5492 dstY = 2607 } + triangulation_pair = { srcX = 3655 srcY = 2284 dstX = 5504 dstY = 2555 } + triangulation_pair = { srcX = 3564 srcY = 2259 dstX = 5428 dstY = 2465 } + triangulation_pair = { srcX = 3508 srcY = 2258 dstX = 5369 dstY = 2426 } + triangulation_pair = { srcX = 3574 srcY = 2146 dstX = 5522 dstY = 2360 } + triangulation_pair = { srcX = 3596 srcY = 2125 dstX = 5565 dstY = 2358 } + triangulation_pair = { srcX = 3676 srcY = 2111 dstX = 5662 dstY = 2403 } + triangulation_pair = { srcX = 3565 srcY = 2065 dstX = 5574 dstY = 2274 } + triangulation_pair = { srcX = 3652 srcY = 2061 dstX = 5676 dstY = 2337 } + triangulation_pair = { srcX = 3563 srcY = 2039 dstX = 5595 dstY = 2248 } + triangulation_pair = { srcX = 3620 srcY = 1956 dstX = 5723 dstY = 2208 } + triangulation_pair = { srcX = 3651 srcY = 1881 dstX = 5835 dstY = 2167 } + triangulation_pair = { srcX = 3709 srcY = 1789 dstX = 5976 dstY = 2125 } + triangulation_pair = { srcX = 3692 srcY = 1672 dstX = 6068 dstY = 2000 } + triangulation_pair = { srcX = 3727 srcY = 1661 dstX = 6112 dstY = 2015 } + triangulation_pair = { srcX = 4502 srcY = 1998 dstX = 6539 dstY = 2913 } + triangulation_pair = { srcX = 4466 srcY = 1928 dstX = 6552 dstY = 2825 } + triangulation_pair = { srcX = 4392 srcY = 1710 dstX = 6717 dstY = 2569 } + triangulation_pair = { srcX = 4382 srcY = 1716 dstX = 6705 dstY = 2562 } + triangulation_pair = { srcX = 4219 srcY = 1719 dstX = 6528 dstY = 2466 } + triangulation_pair = { srcX = 4129 srcY = 1720 dstX = 6448 dstY = 2393 } + triangulation_pair = { srcX = 4009 srcY = 1426 dstX = 6607 dstY = 2015 } + triangulation_pair = { srcX = 4134 srcY = 964 dstX = 7300 dstY = 1712 } + triangulation_pair = { srcX = 4148 srcY = 978 dstX = 7296 dstY = 1749 } + triangulation_pair = { srcX = 4151 srcY = 1055 dstX = 7202 dstY = 1820 } + triangulation_pair = { srcX = 3968 srcY = 1092 dstX = 6990 dstY = 1692 } + triangulation_pair = { srcX = 3784 srcY = 1278 dstX = 6492 dstY = 1670 } + triangulation_pair = { srcX = 3845 srcY = 1279 dstX = 6562 dstY = 1724 } + triangulation_pair = { srcX = 3265 srcY = 1341 dstX = 5848 dstY = 1244 } + triangulation_pair = { srcX = 3334 srcY = 1126 dstX = 6114 dstY = 1089 } + triangulation_pair = { srcX = 3238 srcY = 998 dstX = 6090 dstY = 847 } + triangulation_pair = { srcX = 3541 srcY = 787 dstX = 6813 dstY = 1014 } + triangulation_pair = { srcX = 3561 srcY = 842 dstX = 6772 dstY = 1074 } + triangulation_pair = { srcX = 3750 srcY = 742 dstX = 7159 dstY = 1168 } + triangulation_pair = { srcX = 3830 srcY = 738 dstX = 7263 dstY = 1235 } + triangulation_pair = { srcX = 3983 srcY = 909 dstX = 7206 dstY = 1541 } + triangulation_pair = { srcX = 4081 srcY = 852 dstX = 7405 dstY = 1566 } + triangulation_pair = { srcX = 3968 srcY = 923 dstX = 7164 dstY = 1532 } + triangulation_pair = { srcX = 4022 srcY = 966 dstX = 7168 dstY = 1614 } + triangulation_pair = { srcX = 4055 srcY = 984 dstX = 7167 dstY = 1662 } + triangulation_pair = { srcX = 3991 srcY = 1032 dstX = 7073 dstY = 1656 } + triangulation_pair = { srcX = 4113 srcY = 1440 dstX = 6682 dstY = 2129 } + triangulation_pair = { srcX = 4151 srcY = 1431 dstX = 6723 dstY = 2148 } + triangulation_pair = { srcX = 4199 srcY = 1637 dstX = 6580 dstY = 2377 } + triangulation_pair = { srcX = 4131 srcY = 1646 dstX = 6514 dstY = 2332 } + triangulation_pair = { srcX = 4405 srcY = 1728 dstX = 6710 dstY = 2594 } + triangulation_pair = { srcX = 4344 srcY = 1786 dstX = 6597 dstY = 2595 } + triangulation_pair = { srcX = 4406 srcY = 1804 dstX = 6637 dstY = 2661 } + triangulation_pair = { srcX = 4484 srcY = 1807 dstX = 6702 dstY = 2733 } + triangulation_pair = { srcX = 4506 srcY = 1627 dstX = 6912 dstY = 2613 } + triangulation_pair = { srcX = 4603 srcY = 1781 dstX = 6821 dstY = 2809 } + triangulation_pair = { srcX = 4710 srcY = 2136 dstX = 6582 dstY = 3161 } + triangulation_pair = { srcX = 4761 srcY = 2172 dstX = 6586 dstY = 3230 } + triangulation_pair = { srcX = 4756 srcY = 2232 dstX = 6535 dstY = 3264 } + triangulation_pair = { srcX = 4876 srcY = 2221 dstX = 6641 dstY = 3356 } + triangulation_pair = { srcX = 4870 srcY = 2330 dstX = 6537 dstY = 3420 } + triangulation_pair = { srcX = 4740 srcY = 2314 dstX = 6453 dstY = 3310 } + triangulation_pair = { srcX = 4689 srcY = 2325 dstX = 6405 dstY = 3275 } + triangulation_pair = { srcX = 4593 srcY = 2356 dstX = 6304 dstY = 3231 } + triangulation_pair = { srcX = 4672 srcY = 2517 dstX = 6237 dstY = 3379 } + triangulation_pair = { srcX = 3710 srcY = 1527 dstX = 6245 dstY = 1852 } + triangulation_pair = { srcX = 3833 srcY = 1734 dstX = 6155 dstY = 2172 } + triangulation_pair = { srcX = 3804 srcY = 1605 dstX = 6241 dstY = 2026 } + triangulation_pair = { srcX = 3815 srcY = 1542 dstX = 6309 dstY = 1966 } + triangulation_pair = { srcX = 4219 srcY = 1276 dstX = 7003 dstY = 2072 } + triangulation_pair = { srcX = 4317 srcY = 1345 dstX = 7021 dstY = 2224 } + triangulation_pair = { srcX = 4220 srcY = 1136 dstX = 7197 dstY = 1952 } + triangulation_pair = { srcX = 3116 srcY = 544 dstX = 6264 dstY = 285 } + triangulation_pair = { srcX = 3062 srcY = 718 dstX = 6003 dstY = 398 } + triangulation_pair = { srcX = 5141 srcY = 2622 dstX = 6488 dstY = 3725 } + triangulation_pair = { srcX = 5037 srcY = 2540 dstX = 6474 dstY = 3590 } + triangulation_pair = { srcX = 4929 srcY = 2633 dstX = 6326 dstY = 3586 } + triangulation_pair = { srcX = 4700 srcY = 2608 dstX = 6187 dstY = 3457 } + triangulation_pair = { srcX = 4147 srcY = 2419 dstX = 5879 dstY = 3012 } + triangulation_pair = { srcX = 4312 srcY = 2605 dstX = 5880 dstY = 3263 } + triangulation_pair = { srcX = 3274 srcY = 861 dstX = 6256 dstY = 748 } + triangulation_pair = { srcX = 3247 srcY = 976 dstX = 6117 dstY = 828 } + triangulation_pair = { srcX = 3235 srcY = 1144 dstX = 5980 dstY = 1014 } + triangulation_pair = { srcX = 1620 srcY = 1342 dstX = 2686 dstY = 128 } + triangulation_pair = { srcX = 1248 srcY = 1332 dstX = 2269 dstY = 88 } + triangulation_pair = { srcX = 20 srcY = 1504 dstX = 206 dstY = 133 } + triangulation_pair = { srcX = 996 srcY = 2062 dstX = 1859 dstY = 917 } + triangulation_pair = { srcX = 1041 srcY = 2267 dstX = 1926 dstY = 1227 } + triangulation_pair = { srcX = 1476 srcY = 2284 dstX = 2580 dstY = 1355 } + triangulation_pair = { srcX = 1425 srcY = 2340 dstX = 2503 dstY = 1424 } + triangulation_pair = { srcX = 2032 srcY = 2909 dstX = 3341 dstY = 2442 } + triangulation_pair = { srcX = 2020 srcY = 2877 dstX = 3335 dstY = 2400 } + triangulation_pair = { srcX = 1928 srcY = 2947 dstX = 3201 dstY = 2466 } + triangulation_pair = { srcX = 1820 srcY = 2802 dstX = 3106 dstY = 2241 } + triangulation_pair = { srcX = 1892 srcY = 2687 dstX = 3224 dstY = 2100 } + triangulation_pair = { srcX = 1926 srcY = 2637 dstX = 3283 dstY = 2043 } + triangulation_pair = { srcX = 1870 srcY = 2623 dstX = 3209 dstY = 2005 } + triangulation_pair = { srcX = 1879 srcY = 2652 dstX = 3213 dstY = 2045 } + triangulation_pair = { srcX = 1689 srcY = 2701 dstX = 2950 dstY = 2061 } + triangulation_pair = { srcX = 1645 srcY = 2741 dstX = 2878 dstY = 2108 } + triangulation_pair = { srcX = 1717 srcY = 2712 dstX = 2990 dstY = 2083 } + triangulation_pair = { srcX = 1573 srcY = 2594 dstX = 2779 dstY = 1862 } + triangulation_pair = { srcX = 1370 srcY = 2847 dstX = 2456 dstY = 2218 } + triangulation_pair = { srcX = 1409 srcY = 3062 dstX = 2483 dstY = 2550 } + triangulation_pair = { srcX = 572 srcY = 2779 dstX = 1135 dstY = 2049 } + triangulation_pair = { srcX = 466 srcY = 2815 dstX = 968 dstY = 2110 } + triangulation_pair = { srcX = 482 srcY = 2849 dstX = 1002 dstY = 2159 } + triangulation_pair = { srcX = 451 srcY = 2936 dstX = 975 dstY = 2300 } + triangulation_pair = { srcX = 492 srcY = 2944 dstX = 1042 dstY = 2312 } + triangulation_pair = { srcX = 550 srcY = 2926 dstX = 1132 dstY = 2284 } + triangulation_pair = { srcX = 593 srcY = 2885 dstX = 1192 dstY = 2220 } + triangulation_pair = { srcX = 754 srcY = 2947 dstX = 1465 dstY = 2334 } + triangulation_pair = { srcX = 109 srcY = 2968 dstX = 457 dstY = 2386 } + triangulation_pair = { srcX = 203 srcY = 2668 dstX = 503 dstY = 1912 } + triangulation_pair = { srcX = 1346 srcY = 2632 dstX = 2429 dstY = 1872 } + triangulation_pair = { srcX = 1383 srcY = 2593 dstX = 2487 dstY = 1815 } + triangulation_pair = { srcX = 1356 srcY = 2660 dstX = 2446 dstY = 1917 } + triangulation_pair = { srcX = 1049 srcY = 2648 dstX = 1947 dstY = 1855 } + triangulation_pair = { srcX = 1029 srcY = 2643 dstX = 1902 dstY = 1846 } + triangulation_pair = { srcX = 1025 srcY = 2594 dstX = 1896 dstY = 1766 } + triangulation_pair = { srcX = 1091 srcY = 2587 dstX = 2007 dstY = 1763 } + triangulation_pair = { srcX = 1094 srcY = 2624 dstX = 2010 dstY = 1823 } + triangulation_pair = { srcX = 1149 srcY = 2503 dstX = 2103 dstY = 1630 } + triangulation_pair = { srcX = 1080 srcY = 2517 dstX = 1987 dstY = 1645 } + triangulation_pair = { srcX = 939 srcY = 2300 dstX = 1745 dstY = 1265 } + triangulation_pair = { srcX = 849 srcY = 2046 dstX = 1616 dstY = 881 } + triangulation_pair = { srcX = 937 srcY = 2166 dstX = 1749 dstY = 1058 } + triangulation_pair = { srcX = 818 srcY = 2130 dstX = 1556 dstY = 992 } + triangulation_pair = { srcX = 749 srcY = 2113 dstX = 1447 dstY = 966 } + triangulation_pair = { srcX = 874 srcY = 2186 dstX = 1582 dstY = 1116 } + triangulation_pair = { srcX = 847 srcY = 1524 dstX = 1655 dstY = 230 } + triangulation_pair = { srcX = 748 srcY = 1752 dstX = 1493 dstY = 484 } + triangulation_pair = { srcX = 527 srcY = 1874 dstX = 997 dstY = 586 } + triangulation_pair = { srcX = 675 srcY = 1973 dstX = 1352 dstY = 760 } + triangulation_pair = { srcX = 819 srcY = 2047 dstX = 1567 dstY = 872 } + triangulation_pair = { srcX = 268 srcY = 2150 dstX = 514 dstY = 1026 } + triangulation_pair = { srcX = 202 srcY = 2292 dstX = 415 dstY = 1256 } + triangulation_pair = { srcX = 330 srcY = 2137 dstX = 622 dstY = 996 } + triangulation_pair = { srcX = 216 srcY = 2247 dstX = 438 dstY = 1186 } + triangulation_pair = { srcX = 299 srcY = 2282 dstX = 586 dstY = 1233 } + triangulation_pair = { srcX = 376 srcY = 2200 dstX = 709 dstY = 1091 } + triangulation_pair = { srcX = 449 srcY = 1972 dstX = 834 dstY = 728 } + triangulation_pair = { srcX = 454 srcY = 2099 dstX = 852 dstY = 923 } + triangulation_pair = { srcX = 465 srcY = 2125 dstX = 879 dstY = 964 } + triangulation_pair = { srcX = 511 srcY = 2213 dstX = 971 dstY = 1100 } + triangulation_pair = { srcX = 518 srcY = 2279 dstX = 978 dstY = 1204 } + triangulation_pair = { srcX = 528 srcY = 2372 dstX = 1006 dstY = 1359 } + triangulation_pair = { srcX = 346 srcY = 2302 dstX = 662 dstY = 1260 } + triangulation_pair = { srcX = 399 srcY = 2239 dstX = 758 dstY = 1150 } + triangulation_pair = { srcX = 368 srcY = 2262 dstX = 701 dstY = 1190 } + triangulation_pair = { srcX = 335 srcY = 2394 dstX = 654 dstY = 1411 } + triangulation_pair = { srcX = 336 srcY = 2486 dstX = 670 dstY = 1572 } + triangulation_pair = { srcX = 383 srcY = 1825 dstX = 681 dstY = 527 } + link = { imp = 5964 } # Burma Impassable -> DROPPED + link = { autogenerated = yes imp = 12822 imp = 12781 imp = 12813 imp = 12821 imp = 12826 ck3 = 990 } # Mare Septentrionalis, Mare Septentrionalis, Mare Septentrionalis, Mare Septentrionalis, Mare Septentrionalis -> North Sea + link = { autogenerated = yes imp = 9605 ck3 = 9879 } # Impassable -> Goryeo_Gyoju_Dongju + link = { autogenerated = yes imp = 9607 ck3 = 9875 ck3 = 9968 } # Impassable -> Goryeo_Gyoju_Nangcheon, GORYEO_TAEBAEK_MOUNTAINS + link = { autogenerated = yes imp = 12768 imp = 12804 imp = 12825 imp = 5020 ck3 = 986 } # Mare Septentrionalis, Mare Septentrionalis, Mare Septentrionalis, North Sea -> Coast of Norway + link = { autogenerated = yes imp = 8951 ck3 = 9842 } # Yue Jungle -> Lingnan_Taiping_Xialeizhen + link = { autogenerated = yes imp = 9187 ck3 = 9839 } # Yue Jungle -> Lingnan_Taiping_Taiping + link = { autogenerated = yes imp = 8851 ck3 = 9749 ck3 = 9756 } # Ba Mountains -> Wansui, Liangshan + link = { autogenerated = yes imp = 9377 ck3 = 9672 } # Impassable -> PLACEHOLDER_REGION_SOUTHEAST_COAST + link = { autogenerated = yes imp = 9104 ck3 = 9671 } # Impassable -> (Unknown) + link = { autogenerated = yes imp = 9382 ck3 = 9670 } # Impassable -> IMPASSABLE EASTERN GOBI 1 + link = { autogenerated = yes imp = 9387 ck3 = 9667 } # Impassable -> IMPASSABLE CENTRAL GOBI 2 + link = { autogenerated = yes imp = 9885 ck3 = 9664 } # Gaima Impassable -> PLACEHOLDER_REGION_KOREA + link = { autogenerated = yes imp = 9300 imp = 9580 ck3 = 9621 } # Impassable, Impassable -> Western Gobi + link = { autogenerated = yes imp = 9767 ck3 = 9614 } # Impassable -> Guma + link = { autogenerated = yes imp = 9378 ck3 = 9441 } # Impassable -> Hzo + link = { autogenerated = yes imp = 7290 ck3 = 9112 } # Impassable -> Tanahun + link = { autogenerated = yes imp = 7291 ck3 = 9104 ck3 = 9108 } # Upper Terrai -> Jagatipur, Dang + link = { autogenerated = yes imp = 5955 ck3 = 9095 ck3 = 9097 ck3 = 9098 } # Nepalese Impassable -> Doti, Askot, Baitadi + link = { autogenerated = yes imp = 7294 ck3 = 9093 } # Impassable -> Almora + link = { autogenerated = yes imp = 7289 ck3 = 906 } # Impassable -> Ambikapur + link = { autogenerated = yes imp = 5954 ck3 = 9048 ck3 = 9049 } # Nepalese Impassable -> Poo, Kalpa + link = { autogenerated = yes imp = 5110 ck3 = 894 } # Carpathia -> SOUTH CARPATHIANS + link = { autogenerated = yes imp = 9163 ck3 = 8929 } # Yue Jungle -> Jianshui + link = { autogenerated = yes imp = 8133 ck3 = 8816 } # Yue Mountains -> Shunchang + link = { autogenerated = yes imp = 5003 ck3 = 8753 } # Sila -> Catanzaro + link = { autogenerated = yes imp = 12360 imp = 12364 ck3 = 8710 } # Arzatam, Vamva -> Western Kazakh Steppe + link = { autogenerated = yes imp = 12452 imp = 12672 imp = 9770 ck3 = 8706 } # Sempelanke, Impassable, Impassable -> ALTAISHAN + link = { autogenerated = yes imp = 7854 ck3 = 8624 } # SEAZONE IMPASSABLE WASTELAND -> The Atlantic + link = { autogenerated = yes imp = 12787 ck3 = 8559 ck3 = 8617 } # Mare Septentrionalis -> Hardangerfjord, Coast of Norway + link = { autogenerated = yes imp = 12808 ck3 = 8558 } # Mare Septentrionalis -> Sognefjord + link = { autogenerated = yes imp = 5971 ck3 = 8554 ck3 = 8555 ck3 = 9167 ck3 = 9173 ck3 = 9174 ck3 = 9175 ck3 = 9176 ck3 = 9177 ck3 = 9178 ck3 = 9278 ck3 = 9280 ck3 = 9281 ck3 = 9282 ck3 = 9283 ck3 = 9285 ck3 = 9314 ck3 = 9315 ck3 = 9316 ck3 = 9318 ck3 = 9319 ck3 = 9321 ck3 = 9323 ck3 = 9324 ck3 = 9325 ck3 = 9327 ck3 = 9332 ck3 = 9336 ck3 = 9353 } # Impassable -> HIMALAYA, HIMALAYA, Kibithu, Dzayul, Zayu, Rima, Golag, Cawarong, Goyu, Rawu, Yiong, Baxoi, Zogang, Kagong, Kangyu, Markam, Jangpa, Deqen, Gyaitang, Derong, Qagcheng, Batang, Lenggu, Litang, Nyagqu, Shade, Nyagrong, Dewu + link = { autogenerated = yes imp = 5960 ck3 = 8551 ck3 = 8552 ck3 = 9161 } # Arunachal Impassable -> HIMALAYA, HIMALAYA, Mechuka + link = { autogenerated = yes imp = 5959 ck3 = 8549 ck3 = 9135 } # Bhutanese Impassable -> HIMALAYA, Dromo + link = { autogenerated = yes imp = 7293 ck3 = 8548 ck3 = 9129 ck3 = 9133 } # Impassable -> HIMALAYA, Daramdin, Chungthang + link = { autogenerated = yes imp = 7292 ck3 = 8547 } # Impassable -> HIMALAYA + link = { autogenerated = yes imp = 5957 ck3 = 8546 } # Nepalese Impassable -> HIMALAYA + link = { autogenerated = yes imp = 5956 ck3 = 8545 ck3 = 9085 } # Nepalese Impassable -> HIMALAYA, Dolpo + link = { autogenerated = yes imp = 5329 ck3 = 8541 ck3 = 8543 ck3 = 9520 ck3 = 9540 ck3 = 9541 ck3 = 9549 } # Central Asian Impassable -> GOBI DESERT, GOBI DESERT, Yabulai, Zhongcun, Wuliji, Tamusubulage + link = { autogenerated = yes imp = 8299 imp = 9581 ck3 = 8540 } # Shanma Desert, Bog -> GOBI DESERT + link = { autogenerated = yes imp = 5335 ck3 = 8449 } # IP 336 -> SEMIEN_MOUNTAINS + link = { autogenerated = yes imp = 8105 ck3 = 8443 } # Somali Impassable -> DANAKIL_DESERT + link = { autogenerated = yes imp = 5337 ck3 = 8442 } # Puntic Highlands -> DANAKIL_HILLS + link = { autogenerated = yes imp = 5942 ck3 = 8325 ck3 = 8327 ck3 = 8328 ck3 = 8329 ck3 = 8346 ck3 = 8347 ck3 = 8348 ck3 = 8351 ck3 = 8352 ck3 = 8353 ck3 = 8367 ck3 = 8392 ck3 = 8393 ck3 = 8394 ck3 = 8395 ck3 = 8396 ck3 = 8397 ck3 = 8407 ck3 = 8408 ck3 = 8410 ck3 = 8411 ck3 = 8441 ck3 = 8446 ck3 = 8448 ck3 = 8500 ck3 = 8513 } # Somalian Impassable -> EAST_AMHARA, GIDIM, WAGDA, WALAQA, MIDDLE_AWASH, IFAT, WARJIH, SARMAT, KATATA, DEBRE_LIBANOS, MUGAR, SITTI, ADAL, WEST_ADAL, BATE, GENDEBELO, GABAL, HARAR, HARGAYA, JEBEL_AHMAR, HARGAYA-WEST, OGADEN_DESERT, SHOA_HIGHLANDS, WOLLO_HIGHLANDS, FAFAN-SOUTH, MUDUG-NORTH + link = { autogenerated = yes imp = 5384 ck3 = 831 ck3 = 853 ck3 = 9657 } # IP 385 -> Tripura, Unakoti, Udaipur + link = { autogenerated = yes imp = 5965 ck3 = 822 ck3 = 827 ck3 = 854 ck3 = 9566 ck3 = 9567 ck3 = 9625 } # China Impassable -> Maibong, Khoupum, Tlawng, Arakan Mountains, Naga Hills, Chin + link = { autogenerated = yes imp = 9766 imp = 8140 ck3 = 807 } # Eastern Saka Steppe, Africa Impassable -> Tell Atlas Mountains 8 + link = { autogenerated = yes imp = 5153 ck3 = 803 } # IMPASSIBLE TERRAIN 153 -> Tell Atlas Mountains 4 + link = { autogenerated = yes imp = 5152 ck3 = 802 } # IMPASSIBLE TERRAIN 152 -> Tell Atlas Mountains 3 + link = { autogenerated = yes imp = 3138 ck3 = 801 } # BessemiumSeptentrionalis -> Tell Atlas Mountains 2 + link = { autogenerated = yes imp = 5378 ck3 = 7991 } # Tarim -> Tikenik + link = { autogenerated = yes imp = 5279 ck3 = 7963 ck3 = 7964 } # IMPASSIBLE TERRAIN 279 -> Akto, Muji + link = { autogenerated = yes imp = 5285 ck3 = 795 } # IMPASSIBLE TERRAIN 285 -> Atlas Mountains 6 + link = { autogenerated = yes imp = 5382 ck3 = 7948 ck3 = 7949 } # IP 383 -> Allai, Kaghan + link = { autogenerated = yes imp = 7295 ck3 = 7946 } # Impassable -> Campa2 + link = { autogenerated = yes imp = 5317 imp = 5318 imp = 6055 ck3 = 7943 } # IP 318, IP 319, Dandakaranya -> Eastern Ghats (W) + link = { autogenerated = yes imp = 5315 ck3 = 7942 } # Baglana -> Western Ghats (NN) + link = { autogenerated = yes imp = 5984 imp = 8084 ck3 = 794 } # High Atlas, Seiga -> Atlas Mountains 5 + link = { autogenerated = yes imp = 5308 ck3 = 7937 } # North Nilgiri -> Palakkad Pass + link = { autogenerated = yes imp = 5304 imp = 5305 imp = 5306 ck3 = 7936 } # IP 305, South Nilgiri, IP 307 -> Southwestern Ghats + link = { autogenerated = yes imp = 5986 imp = 10114 imp = 5985 ck3 = 793 } # Middle Atlas, Maghessel, Inner Mauritania -> Atlas Mountains 4 + link = { autogenerated = yes imp = 6483 ck3 = 792 } # More Middle Atlas -> Atlas Mountains 3 + link = { autogenerated = yes imp = 6493 ck3 = 790 ck3 = 791 } # Riff -> Atlas Mountains 1, Atlas Mountains 2 + link = { autogenerated = yes imp = 5009 ck3 = 788 } # IMPASSIBLE TERRAIN 009 -> Central Apennine Mountains 2 + link = { autogenerated = yes imp = 5012 imp = 5014 ck3 = 787 } # IMPASSIBLE TERRAIN 012, IMPASSIBLE TERRAIN 014 -> Central Apennine Mountains 1 + link = { autogenerated = yes imp = 5134 imp = 5135 ck3 = 784 } # IMPASSIBLE TERRAIN 134, IMPASSIBLE TERRAIN 135 -> German Mountains 11 + link = { autogenerated = yes imp = 5136 ck3 = 783 } # Abnoba Mons -> German Mountains 10 + link = { autogenerated = yes imp = 5137 ck3 = 782 } # IMPASSIBLE TERRAIN 137 -> German Mountains 9 + link = { autogenerated = yes imp = 5139 ck3 = 780 } # IMPASSIBLE TERRAIN 139 -> German Mountains 7 + link = { autogenerated = yes imp = 5316 ck3 = 7796 } # IP 317 -> Eastern Ghats (E) + link = { autogenerated = yes imp = 8110 imp = 9769 ck3 = 7784 } # Mountains, Impassable -> Khovsgod Mountains + link = { autogenerated = yes imp = 8117 ck3 = 7782 } # Mongolia Mountain -> Gobi-Altai + link = { autogenerated = yes imp = 3791 ck3 = 777 } # Chattuaria -> German Mountains 4 + link = { autogenerated = yes imp = 5141 ck3 = 774 } # Germanic Upland -> German Mountains 1 + link = { autogenerated = yes imp = 5142 ck3 = 767 } # IMPASSIBLE TERRAIN 142 -> Czech Mountains 5 + link = { autogenerated = yes imp = 5143 ck3 = 766 } # IMPASSIBLE TERRAIN 143 -> Czech Mountains 4 + link = { autogenerated = yes imp = 5145 ck3 = 765 } # Bohaemeian Forest -> Czech Mountains 3 + link = { autogenerated = yes imp = 6354 ck3 = 7627 ck3 = 7634 } # Borysthenes -> Khindigtik Khol, Tsagaan Gazar + link = { autogenerated = yes imp = 9509 ck3 = 7562 ck3 = 7563 ck3 = 7580 ck3 = 7783 } # Impassable -> Bombogor, Boon Tsagaan, Otgontenger, Khangai + link = { autogenerated = yes imp = 9473 ck3 = 7478 ck3 = 7480 ck3 = 7503 ck3 = 7504 ck3 = 7512 ck3 = 8708 } # Impassable -> Qinggil, Zagan-gol, Sugi, Kabtag, Gurbantünggüt desert, ALTAISHAN + link = { autogenerated = yes imp = 9474 ck3 = 7462 ck3 = 7463 ck3 = 7464 ck3 = 7500 ck3 = 7501 } # Impassable -> Jimsar, Beilu, Pilu, Sulugu, Cheko + link = { autogenerated = yes imp = 12345 imp = 12343 ck3 = 7353 } # Palaka, Chelkar -> Central Kazakh Steppe + link = { autogenerated = yes imp = 12367 ck3 = 7352 } # Zamri -> Western Kazakh Steppe + link = { autogenerated = yes imp = 5177 ck3 = 734 } # IMPASSIBLE TERRAIN 177 -> SOUTHEASTERN TAURUS + link = { autogenerated = yes imp = 5946 imp = 5340 imp = 5341 imp = 5514 imp = 5524 imp = 5526 imp = 5990 imp = 8067 ck3 = 730 } # West Nile Impassable, IP 341, Desert of Kharga, Farafra, Bishaya, Minqar, Garamantian Sahara, Kalas -> Eastern Sahara + link = { autogenerated = yes imp = 5966 ck3 = 7214 } # Steppe Impassable -> Southern Balkash wasteland + link = { autogenerated = yes imp = 5974 imp = 12251 imp = 12252 imp = 12253 imp = 12254 ck3 = 7213 } # Sudan Impassable, Kokozek, Oktyabr, Uzynaral, Taylyak -> Saryesik-Atyrau Desert + link = { autogenerated = yes imp = 6793 imp = 11551 imp = 11554 ck3 = 7212 } # Otrar, Impassable, Impassable -> Chimmkent mountains + link = { autogenerated = yes imp = 12311 imp = 11365 imp = 11367 imp = 11371 imp = 11373 imp = 11374 imp = 11383 imp = 11384 imp = 11386 imp = 11397 imp = 11398 imp = 11399 imp = 12294 imp = 12295 imp = 12296 imp = 12297 imp = 12298 imp = 12299 imp = 12300 imp = 12303 imp = 12304 imp = 12305 ck3 = 7211 } # Hrawma, Suyktobe, Tulya, Axsini, Tigdi, Kafkasos, Chagri, Arim, Ganu, Asxi, Arar, Gensa, Hawyam, Parnam, Jambhas, Jhrdayam, Hatsti, Cwaytas, Tigmas, Haps, Hsta, Scinatsti -> Betpak-Dala + link = { autogenerated = yes imp = 5999 ck3 = 718 } # Carpathian Impassable -> HUNGARIAN-MORAVIAN MOUNTAINS + link = { autogenerated = yes imp = 5298 ck3 = 717 } # Carpathia -> HUNGARIAN-MORAVIAN MOUNTAINS + link = { autogenerated = yes imp = 7280 ck3 = 7124 ck3 = 7125 ck3 = 7130 ck3 = 7210 } # Wasteland -> Oktyabr, Uzgend, Sary-Ozek, Kyzylkum + link = { autogenerated = yes imp = 12409 ck3 = 7056 } # Level -> Altin Wasteland + link = { autogenerated = yes imp = 8065 imp = 9966 imp = 9967 ck3 = 6607 } # Kurmut, Tamshin, Mughattah -> JUFRA + link = { autogenerated = yes imp = 8091 ck3 = 6596 } # Biyar -> IDEHAN_MURZUQ + link = { autogenerated = yes imp = 8078 ck3 = 6594 ck3 = 6595 } # Tuyur -> HAMADAT_HAMRA, JEBEL_NAFUSA + link = { autogenerated = yes imp = 8088 imp = 10139 imp = 10140 imp = 10143 imp = 10144 imp = 10145 imp = 10146 imp = 8085 ck3 = 6593 } # Eigat, Guir, Bechar, Abadla, Taghit, Goumi, Fendi, Shoshoba -> ERG_TOUATI + link = { autogenerated = yes imp = 5187 imp = 5186 ck3 = 659 } # IMPASSIBLE TERRAIN 187, IMPASSIBLE TERRAIN 186 -> IBERIAN IMPASSABLE TERRAIN 8 + link = { autogenerated = yes imp = 5943 ck3 = 6431 ck3 = 6433 ck3 = 6435 ck3 = 8315 ck3 = 8316 ck3 = 8317 ck3 = 8318 ck3 = 8319 ck3 = 8320 ck3 = 8321 ck3 = 8322 ck3 = 8323 ck3 = 8324 ck3 = 8365 ck3 = 8366 ck3 = 8370 ck3 = 8371 ck3 = 8372 ck3 = 8375 ck3 = 8376 ck3 = 8386 ck3 = 8387 ck3 = 8388 ck3 = 8439 ck3 = 8447 ck3 = 8514 ck3 = 8515 ck3 = 8516 } # Sudanese Impassable -> TAGALI_SOUTH, FAZUGHLI, FAZUGHLI-EAST, DINDER, BAD, KIBRAN, BASHILA, GISHE, BAHIR _GIYORGIS, GOJJAM, WARQ, DIMA, AMHARA, BIZAMO, GAFAT, DAMOT-WEST, AGAW_MEDER, WEST_GOJJAM, ABBAY-AGAW, BERTA, INDEGABTAN, GAMBO, BOSHA, METEKEL_DESERT, GOJJAM_HIGHLANDS, GUMUZ-NORTH, GUMUZ-WEST, GUMUZ-SOUTH + link = { autogenerated = yes imp = 5333 imp = 5334 imp = 5342 imp = 5515 imp = 5517 imp = 5518 imp = 5520 ck3 = 6425 } # Desert of Aswan, Desert of Luxor, IP 343, Sykaminia, Precariton, Hameka, Cataphri -> WAHAT-DESERT-SOUTH + link = { autogenerated = yes imp = 5332 imp = 9915 imp = 9919 imp = 9920 ck3 = 6421 } # IP 333, Duweb, Doum, Gabgaba -> NUBIAN_DESERT_EAST + link = { autogenerated = yes imp = 8097 imp = 10405 imp = 10407 imp = 10412 imp = 7589 imp = 8096 ck3 = 6418 } # Sudan Impassable, Kawahilah, Qigi, Qadarif, Abliata, Sudan Impassable -> BUTANA + link = { autogenerated = yes imp = 5330 imp = 9891 ck3 = 6417 } # IP 331, Halfa -> BAYUDA_EAST + link = { autogenerated = yes imp = 5944 ck3 = 6416 ck3 = 6426 ck3 = 6430 ck3 = 6882 ck3 = 6883 ck3 = 6897 ck3 = 6898 ck3 = 6899 ck3 = 6900 ck3 = 6901 ck3 = 731 } # Nubian Impassable -> BAYUDA_WEST, DAR_HAMID, TAGALI, WEST_KORDOFAN, EL-OBEID, LAGOWA, SHATT, LIGURI, CENTRAL_KORDOFAN, SIDRAH, Central Africa + link = { autogenerated = yes imp = 5945 ck3 = 6415 ck3 = 6424 ck3 = 6427 ck3 = 6428 ck3 = 6896 } # Nubian Impassable -> WADI_EL-MILK, WESTERN_NUB_DESERT, JEBEL_ABU_NEGILA, BIR_EL-KAI, UPPER_MILK + link = { autogenerated = yes imp = 5354 ck3 = 6413 ck3 = 6414 ck3 = 6419 ck3 = 6423 ck3 = 6440 } # IP 355 -> KHAWR_BARAKA, DJARIN, BUTANA_NORTH, JEBEL_BEJA, DHERBE + link = { autogenerated = yes imp = 5331 ck3 = 6341 ck3 = 6422 } # IP 332 -> TUMBUS, NUBIAN_DESERT_WEST + link = { autogenerated = yes imp = 6498 imp = 5528 imp = 5542 imp = 5543 imp = 5545 imp = 5553 imp = 5994 imp = 5995 ck3 = 6328 } # More Libyan Desert, Elassa, Murta, Magrab, Thumat, Graias, Desert of Philoteris, Oasis Parva -> WESTERN_DESERT + link = { autogenerated = yes imp = 6497 imp = 5338 imp = 5502 imp = 5522 ck3 = 6327 } # More Egyptian Desert, Farafra, Gebara, Debiri -> WAHAT-DESERT + link = { autogenerated = yes imp = 6048 ck3 = 6319 } # Hejaz -> JIBAL-AL-HIJAZI + link = { autogenerated = yes imp = 5936 imp = 11234 imp = 12675 imp = 12676 imp = 5937 imp = 5969 imp = 5970 ck3 = 6318 } # Arabian Impassable, Iram, Arabia Impassable, Arabia Impassable, Arabian Impassable, mpassable, Impassable -> RUB-AL-KHALI + link = { autogenerated = yes imp = 5938 ck3 = 6302 ck3 = 6303 } # Arabian Impassable -> AL-AHQAF, THAMUD + link = { autogenerated = yes imp = 5302 ck3 = 6301 } # IP 303 -> HISN_AL-ABR + link = { autogenerated = yes imp = 5301 ck3 = 6256 } # Omani Desert -> NUFUD-AD-DIHI + link = { autogenerated = yes imp = 5883 ck3 = 625 ck3 = 7082 ck3 = 7084 ck3 = 7209 } # Fors -> Bailjar, Busaga, Sai-Kule, Ustyurt Plateau + link = { autogenerated = yes imp = 5300 ck3 = 6231 ck3 = 6232 ck3 = 6233 ck3 = 6247 } # Arabia Felix -> RANYA, WADI_GHAMID, TURABA, SARBA + link = { autogenerated = yes imp = 6046 ck3 = 6213 } # Arabian Desert -> BATN_NAKHL + link = { autogenerated = yes imp = 12677 ck3 = 6205 } # Arabia Impassable -> TUZ + link = { autogenerated = yes imp = 5935 ck3 = 6179 ck3 = 6189 ck3 = 6202 } # Arabian Impassable -> QASR_AT-TUBA, FAJR, AN-NAFUD + link = { autogenerated = yes imp = 12673 ck3 = 6173 } # Arabia Impassable -> NUFUD-AS-SIRR + link = { autogenerated = yes imp = 5940 imp = 6049 ck3 = 6167 } # Arabian Impassable, Arabia Deserta Ulterior -> AD-DAHNA DESERT + link = { autogenerated = yes imp = 5158 imp = 5156 ck3 = 6123 } # IMPASSIBLE TERRAIN 158, IMPASSIBLE TERRAIN 156 -> SINAI DESERT + link = { autogenerated = yes imp = 5293 imp = 5294 imp = 565 ck3 = 6114 } # Troikon Oros, Desert of Klysma, Ghuzza -> EASTERN DESERT + link = { autogenerated = yes imp = 5351 ck3 = 6100 ck3 = 6115 } # IP 352 -> WADI_MAKHIL, LIBYAN DESERT + link = { autogenerated = yes imp = 5292 ck3 = 6075 } # IMPASSIBLE TERRAIN 292 -> FAW + link = { autogenerated = yes imp = 5339 ck3 = 6059 } # IP 340 -> TIRSA + link = { autogenerated = yes imp = 5941 ck3 = 6024 ck3 = 6164 ck3 = 6165 ck3 = 6168 ck3 = 6169 ck3 = 6170 ck3 = 6175 ck3 = 6320 } # Arabian Impassable -> AR-RUKHAIL, HAFAR, AL-MAWIYA, ATH-THALABIYA, ZUBALA, LINA, BITAN, AL-HAJRA + link = { autogenerated = yes imp = 5303 ck3 = 6023 } # Mesopotamian Desert -> AIN_SAID + link = { autogenerated = yes imp = 6044 ck3 = 5990 ck3 = 5991 ck3 = 5996 ck3 = 6124 ck3 = 6176 } # Syrian Desert -> AIN AT-TAMR, SAFATA, KHAFFAN, SYRIAN DESERT, SAKAKA + link = { autogenerated = yes imp = 6045 ck3 = 5976 ck3 = 5977 ck3 = 5988 } # Nabatean Desert -> MAAN, ADRUH, AL-JILAT + link = { autogenerated = yes imp = 7646 ck3 = 5955 ck3 = 5982 ck3 = 5984 ck3 = 5986 ck3 = 5987 } # Syrian Desert -> BUSRA, ZAIZA, AMMAN, AZ-ZARQA, AL-AZRAQ + link = { autogenerated = yes imp = 5934 ck3 = 5951 ck3 = 5952 } # Agraeia -> JUWAIR, MARJ-RAHIT + link = { autogenerated = yes imp = 783 ck3 = 5914 } # Bargylus Mons -> Masyaf + link = { autogenerated = yes imp = 5181 ck3 = 5909 } # IMPASSIBLE TERRAIN 181 -> AS-SUWAYDIYA + link = { autogenerated = yes imp = 5210 ck3 = 5797 } # Bamni Volcano -> Dvin range + link = { autogenerated = yes imp = 5208 ck3 = 5796 } # Aragats Volcano -> Mount Aragats + link = { autogenerated = yes imp = 5212 ck3 = 5795 } # Ararat Volcano -> Mount Ararat + link = { autogenerated = yes imp = 1543 imp = 1537 imp = 1545 imp = 1546 ck3 = 5755 } # Avarayr, Nuarsak, Barun Qal'eh, Shawarshan -> Marakan + link = { autogenerated = yes imp = 5323 ck3 = 5750 ck3 = 8557 } # Caucasus Mons Volcano -> Tsageri, CAUCASUS MOUNTAINS + link = { autogenerated = yes imp = 5196 imp = 5197 ck3 = 5737 } # IMPASSIBLE TERRAIN 196, IMPASSIBLE TERRAIN 197 -> Tortomi + link = { autogenerated = yes imp = 5174 ck3 = 5691 } # IMPASSIBLE TERRAIN 174 -> Koralla + link = { autogenerated = yes imp = 5170 ck3 = 5688 } # Argaeus Mons Volcano -> Mount Argaeus + link = { autogenerated = yes imp = 5169 ck3 = 5687 } # IMPASSIBLE TERRAIN 169 -> Mount Demirkazik + link = { autogenerated = yes imp = 5167 imp = 5166 ck3 = 5686 } # IMPASSIBLE TERRAIN 167, IMPASSIBLE TERRAIN 166 -> Eastern Taurus Mountains + link = { autogenerated = yes imp = 5164 ck3 = 5685 } # IMPASSIBLE TERRAIN 164 -> Western Taurus Mountains + link = { autogenerated = yes imp = 5327 imp = 5324 imp = 5325 imp = 5326 ck3 = 5515 } # IP 328, Iberia Mons Volcano, IP 326, IP 327 -> Caucasus Mountains + link = { autogenerated = yes imp = 5900 imp = 5892 imp = 5893 imp = 5894 imp = 5895 imp = 5896 imp = 5897 imp = 5898 imp = 5901 imp = 5917 imp = 5920 imp = 5922 imp = 6204 imp = 6208 ck3 = 5514 } # Dryna, Sechem, Creasch, Kyta, Vynikka, Sarden, Yrbent, Shachel, Porach, Yonnav, Ermel, Kumetta, Urghalat, Khochy -> Caucasus Wasteland + link = { autogenerated = yes imp = 11320 imp = 11317 imp = 11319 imp = 11321 imp = 11322 imp = 11323 imp = 11324 imp = 11325 imp = 11326 imp = 11327 imp = 11329 imp = 11330 imp = 11462 imp = 11471 imp = 6231 imp = 6232 ck3 = 5513 } # Kazanka, Ardembey, Zhanaqala, Dymar, Sasyktau, Zhanashu, Burli, Nausha, Sapak, Sapargali, Kokkamys, Sasan, Tabiti, Skula, Ashina, Schelats -> Ryn Desert + link = { autogenerated = yes imp = 5972 ck3 = 5432 ck3 = 5478 ck3 = 5483 } # Ona Mountains -> Kumertau, Inzer, Sakmara + link = { autogenerated = yes imp = 5297 ck3 = 4898 ck3 = 716 } # Carpathia -> HUNGARIAN-MORAVIAN MOUNTAINS, HUNGARIAN-MORAVIAN MOUNTAINS + link = { autogenerated = yes imp = 5226 ck3 = 4879 } # Syrian Desert -> ARABAN + link = { autogenerated = yes imp = 5193 ck3 = 4864 } # IMPASSIBLE TERRAIN 193 -> QULB + link = { autogenerated = yes imp = 5227 ck3 = 4848 ck3 = 4849 } # IMPASSIBLE TERRAIN 227 -> SINJAR, AL-HAYYAL + link = { autogenerated = yes imp = 5225 ck3 = 4817 } # IMPASSIBLE TERRAIN 225 -> JUZA + link = { autogenerated = yes imp = 5223 ck3 = 4776 } # IMPASSIBLE TERRAIN 223 -> BAMARDANI + link = { autogenerated = yes imp = 8087 ck3 = 4751 } # Fas -> MECHERIA + link = { autogenerated = yes imp = 5353 ck3 = 4742 ck3 = 6325 } # Pendactylos Mons -> GHAZWAN, ATLAS-AS-SAHRI + link = { autogenerated = yes imp = 5951 ck3 = 4728 ck3 = 4729 ck3 = 4730 ck3 = 4740 ck3 = 4741 ck3 = 4756 ck3 = 4757 ck3 = 4758 ck3 = 4759 ck3 = 6470 ck3 = 6471 ck3 = 6587 ck3 = 6588 ck3 = 6651 ck3 = 796 ck3 = 797 ck3 = 798 ck3 = 799 } # Mauri Impassable -> NUL LAMTA, TAGHMUT, ASSA, AL-TALHA, AQQA, TIDRI, TAGAWST, ILIGH, TAOUZ, TINDOUF, SEQIUET_EL-HAMRA, ERG_IGUIDI, HAMADAT_DRAA, IGUIDI_WEST, Atlas Mountains 7, Atlas Mountains 8, Atlas Mountains 9, Atlas Mountains 10 + link = { autogenerated = yes imp = 5321 ck3 = 4647 } # Western Gaetulia -> ASHIR-YASHIR + link = { autogenerated = yes imp = 5950 ck3 = 4616 ck3 = 4754 ck3 = 6326 } # Gaetuli Impassable -> GHARDAIA, WAGHLANAT, ERG-GHARBI + link = { autogenerated = yes imp = 5949 ck3 = 4609 ck3 = 4610 ck3 = 4611 ck3 = 4613 ck3 = 4614 ck3 = 4615 ck3 = 6324 } # Musulami Impassable -> ARIGH, TUGGURT, TAGHYART, SADRATA, KARIMA, WARGLA, ERG-MZABI + link = { autogenerated = yes imp = 5988 ck3 = 4570 ck3 = 6323 ck3 = 6597 ck3 = 6602 } # Sahara -> GHADAMES, ERG-SHARQI, SAHARAT_HAGGAR, ERG_GHATI + link = { autogenerated = yes imp = 8077 ck3 = 4567 } # Ghaloa -> FURSATA + link = { autogenerated = yes imp = 3316 ck3 = 4518 } # Sindhian Mountains -> KOHLU + link = { autogenerated = yes imp = 5346 ck3 = 4505 ck3 = 4521 ck3 = 4522 } # IP 347 -> SHARAN, Urgun, Shakin + link = { autogenerated = yes imp = 5260 ck3 = 4470 ck3 = 4471 ck3 = 4472 ck3 = 4473 } # IMPASSIBLE TERRAIN 260 -> JALK, BANNAJBUR, MASHKI, RODKHAN + link = { autogenerated = yes imp = 7283 ck3 = 4468 ck3 = 4469 } # Impassable -> SAINDAK, CHAGAI + link = { autogenerated = yes imp = 5368 ck3 = 4465 } # IP 369 -> RUDBAR + link = { autogenerated = yes imp = 7284 ck3 = 4463 } # Impassable -> KISH-RUDBAR + link = { autogenerated = yes imp = 5249 ck3 = 4292 ck3 = 4293 } # Pactyan Desert -> Karkuya, Juwain + link = { autogenerated = yes imp = 7282 ck3 = 4287 } # Impassable -> Dizak Makrani + link = { autogenerated = yes imp = 5961 ck3 = 4281 ck3 = 5913 ck3 = 5997 ck3 = 7787 ck3 = 7941 ck3 = 8526 ck3 = 8527 ck3 = 8528 ck3 = 8529 ck3 = 8530 ck3 = 8531 ck3 = 9032 ck3 = 9042 ck3 = 9043 ck3 = 9062 ck3 = 9063 ck3 = 9064 ck3 = 9065 ck3 = 9212 ck3 = 9213 ck3 = 9215 ck3 = 9216 ck3 = 9218 ck3 = 9219 ck3 = 9220 ck3 = 9252 ck3 = 9253 ck3 = 9254 ck3 = 9258 ck3 = 9259 ck3 = 9260 ck3 = 9261 ck3 = 9262 ck3 = 9263 ck3 = 9264 ck3 = 9297 ck3 = 9307 ck3 = 9348 ck3 = 9350 ck3 = 9351 ck3 = 9355 ck3 = 9356 ck3 = 9357 ck3 = 9358 ck3 = 9359 ck3 = 9360 ck3 = 9361 ck3 = 9362 ck3 = 9363 ck3 = 9364 ck3 = 9365 ck3 = 9366 ck3 = 9368 ck3 = 9369 ck3 = 9370 ck3 = 9371 ck3 = 9372 ck3 = 9373 ck3 = 9374 ck3 = 9375 ck3 = 9376 ck3 = 9377 ck3 = 9378 ck3 = 9379 ck3 = 9380 ck3 = 9381 ck3 = 9382 ck3 = 9383 ck3 = 9384 ck3 = 9385 ck3 = 9386 ck3 = 9387 ck3 = 9401 ck3 = 9429 ck3 = 9430 ck3 = 9431 ck3 = 9448 ck3 = 971 } # Tibetan Plateau Impassable -> KUNLUNSHAN, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, Sumna, Bangdag, Bairab, Dongco, Gomoco, Chagboco, Burogco, Xainza, Shyungme, Nyima, Aso, Ngoqu, Garkung, Margai, Xenkyer, Pukpa, Balla, Qangma, Parling, Xibde, Cozhelhoma, Garco, Dorsoidong, Cozhedangma, Baqen, Longbaoco, Serxu, Ariksar, Tromsa_Genma, Amdo, Gangnyi, Sibnak_Chenchungo, Marrong, Changco, Yenshipin, Quemoco, Marchu, Sewa, Ulenulaco, Dokecoring, Dokecoring_Qangco, Aqenganggyai, Hohaseco, Dangla, Nengyi, Drakbuk, Chumarho, Toma, Trandam, Damzhung, Ato, Qapugtang, Mukzhung, Zokya, Drakgur, Gyaijepozhangge, Triwang, Damda, Qumarleb, Mato, Chikdril, Ngoring, Madoi, Dzogenrabar, Machu, Gyumai, TIBET IMPASSABLE + link = { autogenerated = yes imp = 6062 ck3 = 4273 ck3 = 4284 } # Parecania -> Fahraj, Rasak + link = { autogenerated = yes imp = 7643 ck3 = 4255 ck3 = 8532 ck3 = 8533 ck3 = 8534 ck3 = 8537 ck3 = 8538 ck3 = 9395 ck3 = 9397 ck3 = 9408 ck3 = 9409 ck3 = 9410 ck3 = 9469 ck3 = 9470 ck3 = 9471 ck3 = 9480 ck3 = 9497 ck3 = 9511 } # Fennia -> KUNLUNSHAN, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, TIBET IMPASSABLE, Lenghu, Qaidam, Ngor, Yagkeng, Gangca, Haltang, Takoerpasitao, Hahaeci, Yanchiwan, Yeniugou, Babao + link = { autogenerated = yes imp = 5258 ck3 = 4202 ck3 = 4203 ck3 = 4209 } # IMPASSIBLE TERRAIN 258 -> Shahrakht, Abiz, Khawaf + link = { autogenerated = yes imp = 5243 ck3 = 4122 } # IMPASSIBLE TERRAIN 243 -> Lurijan + link = { autogenerated = yes imp = 5241 ck3 = 4113 ck3 = 4259 } # IMPASSIBLE TERRAIN 241 -> Juy-e-Sard, Dizful + link = { autogenerated = yes imp = 5242 ck3 = 4112 ck3 = 4123 } # IMPASSIBLE TERRAIN 242 -> Asbid-Dasht, Aruj + link = { autogenerated = yes imp = 5255 ck3 = 4082 ck3 = 4083 ck3 = 4276 } # IMPASSIBLE TERRAIN 255 -> Kashid, Bamm, Kurk + link = { autogenerated = yes imp = 8305 ck3 = 4059 ck3 = 4282 ck3 = 9221 ck3 = 9367 ck3 = 9391 } # Roqiang -> KUNLUNSHAN, KUNLUNSHAN, Yurba, Yuyico, Kytkol + link = { autogenerated = yes imp = 7288 ck3 = 3998 } # Impassable -> Bikramkhol + link = { autogenerated = yes imp = 7285 ck3 = 3970 } # Impassable -> Thar Desert 2 + link = { autogenerated = yes imp = 5299 ck3 = 3950 ck3 = 719 ck3 = 720 ck3 = 732 } # IMPASSIBLE TERRAIN 299 -> BALKAN IMPASSABLE TERRAIN 7, CARPATHIANS, CARPATHIANS, CARPATHIANS + link = { autogenerated = yes imp = 5115 imp = 5114 ck3 = 3949 } # IMPASSIBLE TERRAIN 115, Caucoenia -> BALKAN IMPASSABLE TERRAIN 6 + link = { autogenerated = yes imp = 5098 ck3 = 3649 } # IMPASSIBLE TERRAIN 098 -> Maleshevo + link = { autogenerated = yes imp = 9768 ck3 = 3612 ck3 = 9033 ck3 = 9606 ck3 = 9607 ck3 = 9608 ck3 = 9610 ck3 = 9611 ck3 = 9612 } # Kunlun -> KUNLUNSHAN, Thaldat, Keriya, Lafak, Dondan_Oilik, Laodamogou, Mahas, Domoko + link = { autogenerated = yes imp = 5079 ck3 = 3585 } # Dalmatian Mountains -> Breznica + link = { autogenerated = yes imp = 5090 ck3 = 3564 } # IMPASSIBLE TERRAIN 090 -> Olovo + link = { autogenerated = yes imp = 7296 ck3 = 3433 } # Impassable -> Kahlur + link = { autogenerated = yes imp = 5374 ck3 = 3415 } # IP 375 -> Mankera + link = { autogenerated = yes imp = 7286 ck3 = 3390 } # Impassable -> Thar Desert 1 + link = { autogenerated = yes imp = 6057 ck3 = 3386 } # Marudesa -> Kiratakupa + link = { autogenerated = yes imp = 5033 ck3 = 3314 } # IMPASSIBLE TERRAIN 033 -> ALPS 8 + link = { autogenerated = yes imp = 5125 ck3 = 3312 } # IMPASSIBLE TERRAIN 125 -> ALPS 6 + link = { autogenerated = yes imp = 5120 imp = 5030 imp = 5116 ck3 = 3311 } # IMPASSIBLE TERRAIN 120, Alpes Carnicae, Alpes Iuliae -> ALPS 5 + link = { autogenerated = yes imp = 5121 imp = 12887 imp = 3657 imp = 5029 imp = 5124 ck3 = 3310 } # IMPASSIBLE TERRAIN 121, Camuni, Alpis Inferior, Alpes Rhaeticae, IMPASSIBLE TERRAIN 124 -> ALPS 4 + link = { autogenerated = yes imp = 5028 imp = 3612 imp = 3613 imp = 3615 imp = 5027 imp = 5042 imp = 5122 ck3 = 3309 } # Alpes Lepontinae, Eudracinum, Octodurus, Mons Alpinus, IMPASSIBLE TERRAIN 027, IMPASSIBLE TERRAIN 042, IMPASSIBLE TERRAIN 122 -> ALPS 3 + link = { autogenerated = yes imp = 5026 imp = 5043 ck3 = 3308 } # Alpes Graiae, IMPASSIBLE TERRAIN 043 -> ALPS 2 + link = { autogenerated = yes imp = 5132 ck3 = 3306 } # IMPASSIBLE TERRAIN 132 -> IBERIAN IMPASSIBLE TERRAIN 7 + link = { autogenerated = yes imp = 5133 imp = 5051 imp = 5052 imp = 5053 ck3 = 3305 } # IMPASSIBLE TERRAIN 133, IMPASSIBLE TERRAIN 051, IMPASSIBLE TERRAIN 052, IMPASSIBLE TERRAIN 053 -> IBERIAN IMPASSIBLE TERRAIN 6 + link = { autogenerated = yes imp = 1116 imp = 8147 ck3 = 3304 } # Lucus Asturum, Hispania Impassable -> IBERIAN IMPASSIBLE TERRAIN 5 + link = { autogenerated = yes imp = 5182 ck3 = 3303 } # IMPASSIBLE TERRAIN 182 -> IBERIAN IMPASSIBLE TERRAIN 4 + link = { autogenerated = yes imp = 1205 imp = 8149 imp = 8150 ck3 = 3302 } # Carpetana Luga, Hispania Impassable, Hispania Impassable -> IBERIAN IMPASSIBLE TERRAIN 3 + link = { autogenerated = yes imp = 5188 ck3 = 3300 } # IMPASSIBLE TERRAIN 188 -> IBERIAN IMPASSIBLE TERRAIN 1 + link = { autogenerated = yes imp = 5067 ck3 = 3299 } # IMPASSIBLE TERRAIN 067 -> BALKAN IMPASSABLE TERRAIN 5 + link = { autogenerated = yes imp = 5074 ck3 = 3298 } # IMPASSIBLE TERRAIN 074 -> BALKAN IMPASSABLE TERRAIN 4 + link = { autogenerated = yes imp = 5106 ck3 = 3297 } # IMPASSIBLE TERRAIN 106 -> BALKAN IMPASSABLE TERRAIN 3 + link = { autogenerated = yes imp = 5084 ck3 = 3296 ck3 = 3501 } # IMPASSIBLE TERRAIN 084 -> BALKAN IMPASSABLE TERRAIN 2, Hlivno + link = { autogenerated = yes imp = 5111 imp = 4821 imp = 5112 ck3 = 3295 } # IMPASSIBLE TERRAIN 111, Ardeiscus, IMPASSIBLE TERRAIN 112 -> BALKAN IMPASSABLE TERRAIN 1 + link = { autogenerated = yes imp = 8086 ck3 = 3294 ck3 = 4662 ck3 = 6592 } # Allaqi -> Tell Atlas Mountains 9, HISN LAWATA, ERG_ATLASI + link = { autogenerated = yes imp = 5266 imp = 5267 imp = 5392 imp = 5393 imp = 5394 imp = 5395 imp = 5396 imp = 6796 imp = 6798 ck3 = 3292 } # IMPASSIBLE TERRAIN 266, IMPASSIBLE TERRAIN 267, Kurah, Artessia, Khiva, Dharakh, Ghore, Qanga, Shahsenem -> PERSIAN IMPASSABLE TERRAIN 4 + link = { autogenerated = yes imp = 5259 ck3 = 3290 } # IMPASSIBLE TERRAIN 259 -> PERSIAN IMPASSABLE TERRAIN 2 + link = { autogenerated = yes imp = 5237 ck3 = 3289 } # Qumis Highland -> PERSIAN IMPASSABLE TERRAIN 1 + link = { autogenerated = yes imp = 7858 ck3 = 3265 ck3 = 8613 ck3 = 8614 ck3 = 982 } # SEAZONE IMPASSABLE WASTELAND -> ICELANDIC LAKES, Coast of Iceland, Coast of Iceland, Coast of Iceland + link = { autogenerated = yes imp = 5019 ck3 = 3259 } # IMPASSIBLE TERRAIN 019 -> Northern Apennine Mountains 2 + link = { autogenerated = yes imp = 5023 imp = 3530 imp = 5131 ck3 = 3256 } # Alpes Cottiae, Mustiae Calmes, Alpes Maritimae -> ALPS 1 + link = { autogenerated = yes imp = 5385 ck3 = 3179 ck3 = 3255 ck3 = 9016 ck3 = 9045 ck3 = 9046 ck3 = 9047 } # IP 386 -> KUNLUNSHAN, KUNLUNSHAN, Darcha, Tabo, Dhankar, Kardang + link = { autogenerated = yes imp = 5037 ck3 = 3129 ck3 = 3130 ck3 = 3135 } # IMPASSIBLE TERRAIN 037 -> IRDNING, LIEZEN, HALLSTATT + link = { autogenerated = yes imp = 5126 ck3 = 3127 ck3 = 3128 } # IMPASSIBLE TERRAIN 126 -> FELDKIRCHEN, KAMMERSBERG + link = { autogenerated = yes imp = 5127 ck3 = 3120 } # IMPASSIBLE TERRAIN 127 -> OBERWART + link = { autogenerated = yes imp = 5962 imp = 5595 imp = 5596 ck3 = 3104 } # Karakoram, Hunza, Druzhiya -> KUNLUNSHAN + link = { autogenerated = yes imp = 5036 ck3 = 3091 ck3 = 3092 ck3 = 3121 ck3 = 3122 ck3 = 3257 } # IMPASSIBLE TERRAIN 036 -> PADUN, PITTEN, MURZZUSCHLAG, MARIAZELL, German Mountains 13 + link = { autogenerated = yes imp = 5345 ck3 = 3022 ck3 = 4509 ck3 = 4510 ck3 = 4517 } # IP 346 -> PERSIAN IMPASSABLE, MAPAN, ASFANJAY, LORALAI + link = { autogenerated = yes imp = 7297 ck3 = 3011 ck3 = 3026 ck3 = 4519 ck3 = 4520 } # Impassable -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, MEKHTAR, ZHOB + link = { autogenerated = yes imp = 5344 ck3 = 3002 } # IP 345 -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5275 imp = 6633 ck3 = 2996 } # IMPASSIBLE TERRAIN 275, Kora -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5038 ck3 = 2951 ck3 = 2977 ck3 = 2985 ck3 = 3313 } # Alpes Noricae -> MATREI, BERCHTESGADEN, LAUKENTAL, ALPS 7 + link = { autogenerated = yes imp = 5261 ck3 = 2929 ck3 = 2930 ck3 = 2944 } # IMPASSIBLE TERRAIN 261 -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5262 ck3 = 2908 } # IMPASSIBLE TERRAIN 262 -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5268 ck3 = 2884 } # IMPASSIBLE TERRAIN 268 -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5274 ck3 = 2881 } # Bactrian Highland -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5952 ck3 = 282 ck3 = 291 ck3 = 294 ck3 = 295 ck3 = 296 ck3 = 297 ck3 = 3261 ck3 = 3263 ck3 = 365 ck3 = 366 ck3 = 367 ck3 = 368 ck3 = 373 ck3 = 374 ck3 = 375 ck3 = 376 ck3 = 377 ck3 = 378 ck3 = 379 ck3 = 380 ck3 = 381 ck3 = 382 ck3 = 384 ck3 = 386 ck3 = 389 ck3 = 421 ck3 = 422 ck3 = 423 ck3 = 427 ck3 = 428 ck3 = 429 ck3 = 430 ck3 = 431 ck3 = 432 ck3 = 435 ck3 = 436 ck3 = 437 ck3 = 438 ck3 = 439 ck3 = 441 ck3 = 653 ck3 = 654 ck3 = 655 ck3 = 656 ck3 = 8781 ck3 = 8782 ck3 = 8783 ck3 = 8784 } # Swedish Impassable -> GRAFTAVALLEN, TANNA, ARDDA, KROKAR, SKALSTUGAN, STORSJO, SWEDISH IMPASSIBLE TERRAIN 1, SWEDISH IMPASSIBLE TERRAIN 2, SIOBORADH, SOLATUMUM, NETERU, GRUNDASUND, JAHKAMAKKE, LUOKTA, ARVIESJAVRRIE, TUORPON, SEMISJAUR, SJOKKSJOKK, SIRKAS, SIGGEVARA, LAIS, UBMEJE, SUONDAVARA, FROSO, MORARNA, JULEVU, BITON, GALASEATNU, ARJEPLUOVVE, UDDJAUR, LUSSPIE, SJELTIE, GAALTOE, VUALTJERE, OSTAVALL, RAGUNDA, FOLLINGE, FINNFORSAR, HELGUM, INDAL, NORWEGIAN IMPASSABLE 2, NORWEGIAN IMPASSABLE 3, NORWEGIAN IMPASSABLE 4, NORWEGIAN IMPASSABLE 5, Ume, Vettanen, Ylikainuu, Kangos + link = { autogenerated = yes imp = 5273 ck3 = 2754 } # IMPASSIBLE TERRAIN 273 -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5138 ck3 = 2720 ck3 = 781 } # IMPASSIBLE TERRAIN 138 -> FERRETTE, German Mountains 8 + link = { autogenerated = yes imp = 5963 ck3 = 2718 ck3 = 2734 ck3 = 3037 ck3 = 3071 ck3 = 4358 ck3 = 4515 ck3 = 7953 ck3 = 7954 ck3 = 7955 } # Badakshan Impassable -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, KUNLUNSHAN, KUNLUNSHAN, Sanglich, CHITRAL, Golaghmuli, Yasin, Naltar + link = { autogenerated = yes imp = 5278 ck3 = 2667 ck3 = 2668 ck3 = 3291 ck3 = 4366 } # IMPASSIBLE TERRAIN 278 -> PERSIAN IMPASSABLE, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE TERRAIN 3, Upper Karran + link = { autogenerated = yes imp = 5270 imp = 5271 imp = 5272 imp = 5276 imp = 6720 imp = 6774 ck3 = 2601 } # Sogdian Mountains, IMPASSIBLE TERRAIN 271, IMPASSIBLE TERRAIN 272, IMPASSIBLE TERRAIN 276, Baskata, Karamyk -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5281 imp = 5280 ck3 = 2580 } # IMPASSIBLE TERRAIN 281, Talas Highland -> PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5381 ck3 = 250 } # Thule -> RAABOIGDE + link = { autogenerated = yes imp = 5967 ck3 = 2486 ck3 = 9660 } # More Steppe Impassable -> TIANSHAN, TIANSHAN + link = { autogenerated = yes imp = 5130 ck3 = 2484 } # IMPASSIBLE TERRAIN 130 -> Northern Apennine Mountains 1 + link = { autogenerated = yes imp = 5041 imp = 5123 ck3 = 2461 } # IMPASSIBLE TERRAIN 041, IMPASSIBLE TERRAIN 123 -> SCHWYZ + link = { autogenerated = yes imp = 5047 ck3 = 2224 ck3 = 2290 ck3 = 2292 } # Arverni Highland -> SAINT-FLOUR, MERCAEUR, MURAT + link = { autogenerated = yes imp = 5022 ck3 = 2020 ck3 = 8721 } # Alpes Maritimae -> GRASSE, Puget + link = { autogenerated = yes imp = 5184 ck3 = 2004 } # Mons Orospeda -> REOLID + link = { autogenerated = yes imp = 5976 ck3 = 185 ck3 = 186 ck3 = 188 ck3 = 189 ck3 = 190 ck3 = 203 ck3 = 204 ck3 = 207 ck3 = 209 ck3 = 210 ck3 = 211 ck3 = 212 ck3 = 213 ck3 = 214 ck3 = 215 ck3 = 385 ck3 = 387 ck3 = 388 ck3 = 390 ck3 = 391 ck3 = 400 ck3 = 420 ck3 = 424 ck3 = 425 ck3 = 426 ck3 = 442 ck3 = 443 ck3 = 444 ck3 = 445 ck3 = 446 ck3 = 447 ck3 = 448 ck3 = 449 ck3 = 450 ck3 = 650 ck3 = 651 ck3 = 8785 ck3 = 8786 ck3 = 8788 } # Finland Impassable -> ULVILA, PIRKKALA, MIKKELI, SULKAVA, OLAVINLINNA, SUOPARSAARI, TOHMAJARVI, SYSMA, PAIJALA, VUOHIJARVI, MESSUKYLA, RUOVESI, MUSTASAARI, MERIKARVIA, LEVANLUHTA, KITTAL, SUADIGIL, KEMIJAVRI, SOMBIO, AANAARJAVRI, PEACCAM, MAANSELKA, DUORTNUS, GIEPMA, IIJOKI, PEDERSORE, VETELI, OULU, LIMINKA, PUOLANKA, KONNEVESI, KEITELE, PIELINEN, KAJAANI, FINNISH IMPASSABLE 2, FINNISH IMPASSABLE 3, Roavvenjarga, Kuusama, Suenekele + link = { autogenerated = yes imp = 5283 ck3 = 1723 ck3 = 1743 ck3 = 1744 } # Caledonian Highland -> MAR, DUNKELD, ABERFELDY + link = { autogenerated = yes imp = 12671 ck3 = 1495 ck3 = 7405 } # Impassable -> ALTAISHAN, Korgon + link = { autogenerated = yes imp = 5882 ck3 = 1489 ck3 = 7077 ck3 = 7080 } # Multen -> Ustyurt Plateau, Fort Novoaleksandrovkiy, Karasye + link = { autogenerated = yes imp = 7860 ck3 = 1474 ck3 = 1475 ck3 = 5855 ck3 = 647 ck3 = 648 ck3 = 649 ck3 = 660 ck3 = 661 ck3 = 662 ck3 = 663 ck3 = 664 ck3 = 665 ck3 = 964 ck3 = 985 ck3 = 987 ck3 = 998 } # (Unknown) -> SOUTH NORWAY LAKES, NORTH SWEDEN LAKES, Dvina River, White Sea, White Sea, White Sea, Coast of Siberia, Northern Atlantic, North Sea, Coast of Norway, Coast of Norway, Coast of Norway, White Sea, Northern Atlantic, North Sea, North Sea + link = { autogenerated = yes imp = 5256 ck3 = 1471 } # IMPASSIBLE TERRAIN 256 -> PERSIAN IMPASSABLE TERRAIN + link = { autogenerated = yes imp = 5253 imp = 5251 ck3 = 1437 } # IMPASSIBLE TERRAIN 254, IMPASSIBLE TERRAIN 251 -> PERSIAN IMPASSABLE TERRAIN + link = { autogenerated = yes imp = 5231 ck3 = 1436 } # IMPASSIBLE TERRAIN 231 -> AZERBAIJAN MOUNTAINS + link = { autogenerated = yes imp = 5230 ck3 = 1429 ck3 = 4766 ck3 = 4768 } # IMPASSIBLE TERRAIN 230 -> AZERBAIJAN MOUNTAINS, BARZA, DARBAND QARABULI + link = { autogenerated = yes imp = 5224 ck3 = 1428 } # Kelishin -> AZERBAIJAN MOUNTAINS + link = { autogenerated = yes imp = 11552 ck3 = 1424 } # Impassable -> Suyab + link = { autogenerated = yes imp = 5222 ck3 = 1417 ck3 = 4815 } # IMPASSIBLE TERRAIN 222 -> AZERBAIJAN MOUNTAINS, HAKKARI + link = { autogenerated = yes imp = 9510 imp = 8302 imp = 9476 imp = 9500 ck3 = 1408 } # Impassable, Dunhuang Desert, Impassable, Zhuoye -> Anxi + link = { autogenerated = yes imp = 768 ck3 = 1379 } # Libanus Mons -> SYRIAN IMPASSABLE + link = { autogenerated = yes imp = 5228 imp = 5229 ck3 = 1373 } # IMPASSIBLE TERRAIN 228, IMPASSIBLE TERRAIN 229 -> SYRIAN DESERT + link = { autogenerated = yes imp = 5358 ck3 = 1349 ck3 = 1350 ck3 = 3478 } # IP 359 -> Vikramapura, Reni, Ladnu + link = { autogenerated = yes imp = 5295 ck3 = 1344 } # Syrian Desert -> SYRIAN DESERT + link = { autogenerated = yes imp = 5973 ck3 = 1335 } # Impassable -> AD-DAHNA DESERT + link = { autogenerated = yes imp = 5336 ck3 = 1334 ck3 = 8333 ck3 = 8334 ck3 = 8335 } # IP 337 -> DANAKIL_HILLS, RAGALI, AMARTA, AFERA + link = { autogenerated = yes imp = 5939 ck3 = 1330 ck3 = 6206 ck3 = 6214 ck3 = 6215 ck3 = 6228 ck3 = 6229 ck3 = 6230 ck3 = 6257 ck3 = 6263 ck3 = 6265 ck3 = 6266 ck3 = 6267 } # Arabian Impassable -> JIBAL-AL-HIJAZI, HAJIR, RABADHA, MADIN-AN-NAQIRA, MARRAN, AD-DATHINA, SUBAY, NUFUD-AS-SURRAH, RAMA, DARIYA, JADILA, FALJA + link = { autogenerated = yes imp = 9220 ck3 = 13269 } # Impassable -> (Unknown) + link = { autogenerated = yes imp = 9162 ck3 = 13261 } # Yue Jungle -> (Unknown) + link = { autogenerated = yes imp = 8949 ck3 = 13260 } # Yue Jungle -> (Unknown) + link = { autogenerated = yes imp = 5290 ck3 = 1326 } # Qal'eh -> JIBAL-AL-HIJAZI + link = { autogenerated = yes imp = 9148 ck3 = 13259 } # Yue Jungle -> (Unknown) + link = { autogenerated = yes imp = 9147 ck3 = 13257 } # Yue Jungle -> (Unknown) + link = { autogenerated = yes imp = 9161 ck3 = 13256 } # Yue Jungle -> (Unknown) + link = { autogenerated = yes imp = 9139 ck3 = 13249 ck3 = 9545 } # Yue Jungle -> (Unknown), Dayu + link = { autogenerated = yes imp = 9017 ck3 = 13248 } # Sanmiao Jungle -> (Unknown) + link = { autogenerated = yes imp = 9034 ck3 = 13247 ck3 = 8958 } # Impassable -> (Unknown), Dali + link = { autogenerated = yes imp = 8138 ck3 = 13243 ck3 = 13244 } # Fujian Mountains -> (Unknown), (Unknown) + link = { autogenerated = yes imp = 9048 ck3 = 13241 ck3 = 13253 } # Impassable -> (Unknown), (Unknown) + link = { autogenerated = yes imp = 9117 ck3 = 13240 } # Impassable -> (Unknown) + link = { autogenerated = yes imp = 9016 ck3 = 13236 ck3 = 8954 } # Sanmiao Jungle -> (Unknown), Wugang + link = { autogenerated = yes imp = 8137 ck3 = 13235 } # Fujian Mountains -> (Unknown) + link = { autogenerated = yes imp = 9136 ck3 = 13232 } # Yue Jungle -> (Unknown) + link = { autogenerated = yes imp = 8881 ck3 = 13231 ck3 = 9328 ck3 = 9331 } # Zuo Mountains -> (Unknown), Gyezil, Lhagang + link = { autogenerated = yes imp = 9424 ck3 = 13228 } # Impassable -> (Unknown) + link = { autogenerated = yes imp = 9110 imp = 9114 imp = 9115 imp = 9134 ck3 = 13224 } # Zhaowu, Impassable, Impassable, Yue Jungle -> (Unknown) + link = { autogenerated = yes imp = 9113 ck3 = 13223 ck3 = 13229 } # Impassable -> (Unknown), (Unknown) + link = { autogenerated = yes imp = 9135 ck3 = 13221 } # Yue Jungle -> (Unknown) + link = { autogenerated = yes imp = 5155 ck3 = 1322 } # IMPASSIBLE TERRAIN 155 -> SINAI DESERT + link = { autogenerated = yes imp = 9392 ck3 = 13219 } # Impassable -> (Unknown) + link = { autogenerated = yes imp = 8882 imp = 9838 ck3 = 13218 } # Di Qiang Mountains, Impassable -> (Unknown) + link = { autogenerated = yes imp = 8134 ck3 = 13217 } # Yue Mountains -> (Unknown) + link = { autogenerated = yes imp = 8852 ck3 = 13216 ck3 = 13222 } # Ba Mountains -> (Unknown), (Unknown) + link = { autogenerated = yes imp = 9014 ck3 = 13215 ck3 = 13234 } # Sanmiao Jungle -> (Unknown), (Unknown) + link = { autogenerated = yes imp = 9095 ck3 = 13213 } # Impassable -> (Unknown) + link = { autogenerated = yes imp = 9103 ck3 = 13208 ck3 = 13211 } # Impassable -> (Unknown), (Unknown) + link = { autogenerated = yes imp = 8989 ck3 = 13207 } # Yangtze Mountains -> (Unknown) + link = { autogenerated = yes imp = 8850 imp = 8837 ck3 = 13206 } # Ba Mountains, Ba Mountains -> (Unknown) + link = { autogenerated = yes imp = 9391 ck3 = 13204 ck3 = 9454 } # Impassable -> (Unknown), Yunglro + link = { autogenerated = yes imp = 8849 ck3 = 13202 ck3 = 9771 } # Ba Mountains -> (Unknown), Nanjiang + link = { autogenerated = yes imp = 8835 ck3 = 13201 } # Ba Mountains -> (Unknown) + link = { autogenerated = yes imp = 8822 ck3 = 13200 } # Di Qiang Mountains -> (Unknown) + link = { autogenerated = yes imp = 5288 ck3 = 1320 } # IMPASSIBLE TERRAIN 288 -> SINAI DESERT + link = { autogenerated = yes imp = 9062 ck3 = 13197 } # Impassable -> (Unknown) + link = { autogenerated = yes imp = 8823 ck3 = 13189 } # Di Qiang Mountains -> (Unknown) + link = { autogenerated = yes imp = 8836 ck3 = 13187 ck3 = 13190 } # Ba Mountains -> (Unknown), (Unknown) + link = { autogenerated = yes imp = 8366 ck3 = 13184 ck3 = 13192 } # Qin Mountains -> (Unknown), (Unknown) + link = { autogenerated = yes imp = 8365 ck3 = 13178 ck3 = 13180 } # Zhongyuan Mountains -> (Unknown), (Unknown) + link = { autogenerated = yes imp = 8602 ck3 = 13169 } # Jin HIlls -> (Unknown) + link = { autogenerated = yes imp = 9568 imp = 9569 ck3 = 13162 } # Impassable, Impassable -> (Unknown) + link = { autogenerated = yes imp = 9032 ck3 = 13143 ck3 = 8953 } # Impassable -> Quanshan, Tanzhou + link = { autogenerated = yes imp = 9399 ck3 = 13110 ck3 = 13163 } # Impassable -> Mayi East, (Unknown) + link = { autogenerated = yes imp = 5356 ck3 = 1304 ck3 = 3387 ck3 = 3389 } # IP 357 -> Ludrava, Jaisalmer, Juna_Barmer + link = { autogenerated = yes imp = 5369 ck3 = 1296 } # IP 370 -> Dimapur + link = { autogenerated = yes imp = 5282 ck3 = 12925 ck3 = 2539 ck3 = 7151 ck3 = 7152 ck3 = 7972 } # IMPASSIBLE TERRAIN 282 -> TIANSHAN, TIANSHAN, Cherik, Narin, Uch_TARIM + link = { autogenerated = yes imp = 5376 imp = 5377 imp = 6742 imp = 6746 ck3 = 12924 } # IP 377, IP 378, Pishan, Shaju -> TAKLAMAKAN DESERT + link = { autogenerated = yes imp = 5379 ck3 = 12923 ck3 = 1347 ck3 = 7992 ck3 = 7993 } # IP 380 -> TAKLAMAKAN DESERT, TAKLAMAKAN DESERT, Argan, Chelik + link = { autogenerated = yes imp = 5380 ck3 = 12922 ck3 = 2740 } # IP 381 -> kabulistan_mountains, PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 9606 ck3 = 12920 } # Impassable -> korea_mountains + link = { autogenerated = yes imp = 9603 ck3 = 12919 ck3 = 9930 } # Impassable -> korea_mountains, Goryeo_Yanggwan_Pyeongchang + link = { autogenerated = yes imp = 9289 ck3 = 12918 } # Nangno -> korea_mountains + link = { autogenerated = yes imp = 8113 ck3 = 12913 } # Japan Mountain -> mutsu_mountains + link = { autogenerated = yes imp = 9764 ck3 = 12909 ck3 = 12910 } # Toukai Mountains -> shinano_mountains, shinano_mountains + link = { autogenerated = yes imp = 9760 ck3 = 12908 ck3 = 12911 } # Tousan Mountains -> shinano_mountains, shinano_mountains + link = { autogenerated = yes imp = 9761 ck3 = 12907 } # Tousan Mountains -> shinano_mountains + link = { autogenerated = yes imp = 9762 ck3 = 12905 } # Tousan Mountains -> shinano_mountains + link = { autogenerated = yes imp = 9763 ck3 = 12904 } # Hokuriku Mountains -> shinano_mountains + link = { autogenerated = yes imp = 9847 ck3 = 12903 } # Impassable -> Viet_Mountains_8 + link = { autogenerated = yes imp = 5347 ck3 = 12899 ck3 = 3029 ck3 = 3031 } # IP 348 -> persia_mountains, PERSIAN IMPASSABLE, PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 5247 ck3 = 12898 } # Utian Plain -> zagros_mountains + link = { autogenerated = yes imp = 5246 ck3 = 12897 ck3 = 4093 ck3 = 4094 } # IMPASSIBLE TERRAIN 246 -> zagros_mountains, Lar, Kariyan + link = { autogenerated = yes imp = 5245 ck3 = 12895 } # IMPASSIBLE TERRAIN 245 -> zagros_mountains + link = { autogenerated = yes imp = 5257 ck3 = 12894 ck3 = 4068 ck3 = 4071 } # IMPASSIBLE TERRAIN 257 -> persia_mountains, Tun, Raqe + link = { autogenerated = yes imp = 5264 ck3 = 12891 } # IMPASSIBLE TERRAIN 264 -> alborz_mountains + link = { autogenerated = yes imp = 5265 ck3 = 12889 ck3 = 4032 ck3 = 4034 ck3 = 4038 } # IMPASSIBLE TERRAIN 265 -> alborz_mountains, Kerend, Khodzhakala, Jarmaqan + link = { autogenerated = yes imp = 5236 ck3 = 12887 } # IMPASSIBLE TERRAIN 236 -> alborz_mountains + link = { autogenerated = yes imp = 5239 ck3 = 12885 } # IMPASSIBLE TERRAIN 239 -> alborz_mountains + link = { autogenerated = yes imp = 5238 ck3 = 12884 ck3 = 4005 ck3 = 4006 } # IMPASSIBLE TERRAIN 238 -> alborz_mountains, Ruyan, Alamut + link = { autogenerated = yes imp = 5220 ck3 = 12882 ck3 = 12883 } # IMPASSIBLE TERRAIN 220 -> alborz_mountains, alborz_mountains + link = { autogenerated = yes imp = 8114 ck3 = 12881 ck3 = 9662 } # Hokkaido Mountains -> east_hokkaido_mountains, west_hokkaido_mountains + link = { autogenerated = yes imp = 9407 ck3 = 12878 ck3 = 8556 } # Impassable -> Yunnan Range, HIMALAYA + link = { autogenerated = yes imp = 9409 ck3 = 12877 } # Impassable -> Yunnan Range + link = { autogenerated = yes imp = 9844 ck3 = 12860 ck3 = 12861 } # Impassable -> Tonchai Range, Daen Lao Range + link = { autogenerated = yes imp = 9841 ck3 = 12859 } # Impassable -> Khun Tan Range + link = { autogenerated = yes imp = 10875 imp = 11679 ck3 = 12833 } # Sinus Arafura, Sinus Arafura -> Arafura Sea + link = { autogenerated = yes imp = 8202 ck3 = 12832 ck3 = 12834 } # Sinus Arafura -> Arafura Sea, Arafura Sea + link = { autogenerated = yes imp = 8157 imp = 11618 imp = 9859 ck3 = 12831 } # Sinus Arafura, Sinus Arafura, Sinus Arafura -> Arafura Sea + link = { autogenerated = yes imp = 11609 imp = 10937 ck3 = 12829 } # Mare Molucca, Mare Molucca -> Ceram Sea + link = { autogenerated = yes imp = 11615 ck3 = 12828 } # Mare Molucca -> Ceram Sea + link = { autogenerated = yes imp = 8160 imp = 10886 imp = 11626 imp = 11670 imp = 12158 ck3 = 12827 } # Mare Molucca, Mare Molucca, Mare Molucca, Mare Molucca, Mare Molucca -> Halmahera Sea + link = { autogenerated = yes imp = 9380 ck3 = 12820 } # Impassable -> Kuril-Etuworop-sir/Iturup + link = { autogenerated = yes imp = 8080 ck3 = 1280 } # Hairiri -> EASTERN DESERT + link = { autogenerated = yes imp = 11772 imp = 10891 imp = 10944 imp = 11738 imp = 11779 imp = 12028 imp = 12129 ck3 = 12757 } # Mare Nanfang Hai, Mare Nanfang Hai, Mare Nanfang Hai, Mare Luzon, Mare Nanfang Hai, Mare Nanfang Hai, Mare Nanfang Hai -> South China Sea + link = { autogenerated = yes imp = 11737 imp = 11601 imp = 11802 imp = 11995 imp = 12043 ck3 = 12756 } # Mare Nanfang Hai, Mare Nanfang Hai, Mare Nanfang Hai, Mare Nanfang Hai, Mare Nanfang Hai -> South China Sea + link = { autogenerated = yes imp = 12121 imp = 10933 imp = 11624 imp = 12046 imp = 12185 ck3 = 12745 } # Mare Timor, Mare Timor, Mare Timor, Mare Timor, Mare Timor -> the Indian Ocean + link = { autogenerated = yes imp = 10919 imp = 11600 ck3 = 12744 } # Mare Timor, Mare Timor -> the Indian Ocean + link = { autogenerated = yes imp = 8205 imp = 11590 ck3 = 12743 } # Mare Timor, Mare Timor -> the Indian Ocean + link = { autogenerated = yes imp = 10949 imp = 9858 ck3 = 12741 } # Sinus Gangeticus, Sinus Gangeticus -> Sunda strait + link = { autogenerated = yes imp = 11797 imp = 11597 imp = 11957 imp = 12065 imp = 12206 imp = 12209 imp = 8182 ck3 = 12736 } # Mare Nanfang Hai, Mare Nanfang Hai, Mare Nanfang Hai, Mare Nanfang Hai, Mare Nanfang Hai, Mare Nanfang Hai, Mare Nanfang Hai -> North Natuna Sea + link = { autogenerated = yes imp = 11882 imp = 12104 imp = 12171 ck3 = 12735 } # Mare Nanfang Hai, Freti Karimata, Freti Karimata -> Natuna Sea + link = { autogenerated = yes imp = 11923 ck3 = 12733 } # Freti Karimata -> Natuna Sea + link = { autogenerated = yes imp = 12196 imp = 10877 imp = 11579 ck3 = 12722 } # Freti Karimata, Freti Karimata, Freti Karimata -> Bangka Strait + link = { autogenerated = yes imp = 12021 imp = 11574 imp = 11801 imp = 12238 ck3 = 12721 } # Freti Karimata, Freti Karimata, Freti Karimata, Freti Karimata -> Karimata Strait + link = { autogenerated = yes imp = 11667 imp = 10955 imp = 11843 ck3 = 12720 } # Freti Karimata, Freti Karimata, Freti Karimata -> Karimata Strait + link = { autogenerated = yes imp = 11642 imp = 11582 ck3 = 12719 } # Mare Taiheiyo, Mare Taiheiyo -> Sea of Bali + link = { autogenerated = yes imp = 10947 imp = 11591 ck3 = 12718 } # Mare Taiheiyo, Mare Taiheiyo -> Sea of Bali + link = { autogenerated = yes imp = 11753 imp = 11572 ck3 = 12717 } # Mare Taiheiyo, Freti Karimata -> Java Sea + link = { autogenerated = yes imp = 11716 imp = 10948 imp = 12033 imp = 9869 ck3 = 12716 } # Mare Taiheiyo, Mare Taiheiyo, Mare Taiheiyo, Mare Taiheiyo -> Java Sea + link = { autogenerated = yes imp = 12222 imp = 11562 imp = 11648 imp = 11725 imp = 11787 imp = 12214 ck3 = 12715 } # Mare Taiheiyo, Mare Taiheiyo, Mare Taiheiyo, Mare Taiheiyo, Mare Taiheiyo, Mare Taiheiyo -> Java Sea + link = { autogenerated = yes imp = 11916 imp = 11963 imp = 11977 imp = 12157 imp = 8187 imp = 9355 ck3 = 12714 } # Mare Taiheiyo, Freti Karimata, Mare Taiheiyo, Mare Taiheiyo, Freti Karimata, Mare Taiheiyo -> Java Sea + link = { autogenerated = yes imp = 11723 imp = 11594 imp = 12113 ck3 = 12713 } # Mare Taiheiyo, Mare Taiheiyo, Mare Taiheiyo -> Java Sea + link = { autogenerated = yes imp = 11804 imp = 10895 imp = 11941 imp = 8172 ck3 = 12712 } # Mare Taiheiyo, Mare Taiheiyo, Mare Taiheiyo, Mare Taiheiyo -> Java Sea + link = { autogenerated = yes imp = 11890 imp = 12119 imp = 8196 ck3 = 12711 } # Mare Taiheiyo, Mare Taiheiyo, Mare Taiheiyo -> Java Sea + link = { autogenerated = yes imp = 12175 imp = 11561 imp = 11628 imp = 11726 imp = 12076 ck3 = 12710 } # Mare Taiheiyo, Mare Taiheiyo, Freti Makassar, Mare Taiheiyo, Freti Makassar -> Java Sea + link = { autogenerated = yes imp = 11705 imp = 11799 ck3 = 12709 } # Mare Taiheiyo, Mare Taiheiyo -> Java Sea + link = { autogenerated = yes imp = 11972 imp = 11759 imp = 9854 ck3 = 12708 } # Freti Makassar, Mare Taiheiyo, Freti Makassar -> Java Sea + link = { autogenerated = yes imp = 11715 imp = 10869 imp = 11583 imp = 11638 imp = 12228 imp = 12245 ck3 = 12707 } # Freti Makassar, Freti Makassar, Freti Makassar, Freti Makassar, Freti Makassar, Freti Makassar -> Makassar Strait + link = { autogenerated = yes imp = 11717 imp = 12101 imp = 8156 imp = 9343 ck3 = 12706 } # Freti Makassar, Freti Makassar, Freti Makassar, Freti Makassar -> Makassar Strait + link = { autogenerated = yes imp = 11813 imp = 11987 imp = 8197 ck3 = 12705 } # Mare Flos, Mare Flos, Mare Flos -> Flores Sea + link = { autogenerated = yes imp = 11994 imp = 8173 ck3 = 12704 } # Mare Flos, Mare Flos -> Flores Sea + link = { autogenerated = yes imp = 11839 imp = 11860 imp = 12239 imp = 8162 ck3 = 12703 } # Mare Flos, Mare Flos, Mare Flos, Mare Flos -> Flores Sea + link = { autogenerated = yes imp = 10916 ck3 = 12702 } # Mare Flos -> Gulf of Boni + link = { autogenerated = yes imp = 11593 imp = 8166 ck3 = 12701 } # Mare Flos, Mare Flos -> Gulf of Boni + link = { autogenerated = yes imp = 8175 imp = 10898 imp = 11625 ck3 = 12700 } # Mare Timor, Mare Timor, Mare Timor -> Savu Sea + link = { autogenerated = yes imp = 10942 imp = 10906 imp = 12139 imp = 12243 ck3 = 12699 } # Mare Flos, Mare Timor, Mare Timor, Mare Flos -> Savu Sea + link = { autogenerated = yes imp = 11565 imp = 9866 ck3 = 12698 } # Mare Timor, Mare Timor -> Timor Sea + link = { autogenerated = yes imp = 11733 imp = 11847 imp = 11854 imp = 12014 imp = 12152 imp = 12213 imp = 8201 ck3 = 12697 } # Mare Banda, Mare Timor, Mare Timor, Mare Timor, Mare Timor, Mare Banda, Mare Banda -> Timor Sea + link = { autogenerated = yes imp = 11728 imp = 11577 imp = 11712 imp = 11734 imp = 11856 imp = 11877 imp = 11920 imp = 12002 imp = 12159 ck3 = 12696 } # Sinus Arafura, Sinus Arafura, Sinus Arafura, Mare Timor, Mare Banda, Mare Banda, Sinus Arafura, Sinus Arafura, Mare Banda -> Arafura Sea + link = { autogenerated = yes imp = 10896 imp = 12107 ck3 = 12695 } # Sinus Arafura, Sinus Arafura -> Arafura Sea + link = { autogenerated = yes imp = 11729 imp = 10872 imp = 11611 imp = 11880 imp = 11989 imp = 12166 ck3 = 12694 } # Mare Banda, Mare Banda, Mare Banda, Mare Banda, Mare Banda, Mare Banda -> Banda Sea + link = { autogenerated = yes imp = 11930 imp = 11751 imp = 11898 imp = 11971 imp = 12100 ck3 = 12693 } # Mare Banda, Mare Banda, Mare Banda, Mare Banda, Mare Banda -> Banda Sea + link = { autogenerated = yes imp = 11985 imp = 11756 imp = 12023 imp = 12149 ck3 = 12692 } # Mare Banda, Mare Banda, Mare Banda, Mare Banda -> Banda Sea + link = { autogenerated = yes imp = 12055 imp = 11752 imp = 11871 imp = 11900 imp = 12077 imp = 12103 ck3 = 12691 } # Mare Banda, Mare Banda, Mare Banda, Mare Banda, Mare Banda, Mare Banda -> Banda Sea + link = { autogenerated = yes imp = 12051 imp = 11623 imp = 11911 imp = 8200 ck3 = 12690 } # Mare Flos, Mare Banda, Mare Flos, Mare Flos -> Banda Sea + link = { autogenerated = yes imp = 12063 imp = 10876 imp = 11560 imp = 12092 ck3 = 12689 } # Mare Banda, Mare Banda, Mare Banda, Mare Banda -> Banda Sea + link = { autogenerated = yes imp = 12006 imp = 8167 ck3 = 12688 } # Mare Banda, Mare Banda -> Banda Sea + link = { autogenerated = yes imp = 12090 imp = 11580 imp = 11810 imp = 12094 ck3 = 12687 } # Mare Banda, Mare Banda, Mare Banda, Mare Banda -> Banda Sea + link = { autogenerated = yes imp = 11564 imp = 8161 ck3 = 12686 } # Mare Banda, Mare Banda -> Gulf of Tomini + link = { autogenerated = yes imp = 11575 imp = 9855 ck3 = 12685 } # Mare Banda, Mare Banda -> Gulf of Tomini + link = { autogenerated = yes imp = 11689 imp = 11899 imp = 12044 imp = 12083 imp = 12223 ck3 = 12684 } # Mare Banda, Mare Banda, Mare Banda, Mare Banda, Mare Celebes -> Ceram Sea + link = { autogenerated = yes imp = 10908 imp = 10868 imp = 11599 ck3 = 12683 } # Mare Molucca, Mare Molucca, Mare Molucca -> Ceram Sea + link = { autogenerated = yes imp = 10900 imp = 11643 ck3 = 12682 } # Mare Molucca, Mare Molucca -> Ceram Sea + link = { autogenerated = yes imp = 11827 imp = 11766 imp = 11790 imp = 11829 imp = 11831 ck3 = 12681 } # Mare Molucca, Mare Molucca, Mare Molucca, Mare Molucca, Mare Molucca -> Maluku Sea + link = { autogenerated = yes imp = 11962 imp = 12074 imp = 12114 imp = 8204 ck3 = 12680 } # Mare Celebes, Mare Celebes, Mare Celebes, Mare Celebes -> Maluku Sea + link = { autogenerated = yes imp = 11683 imp = 11727 imp = 11825 ck3 = 12679 } # Mare Celebes, Mare Celebes, Mare Celebes -> Maluku Sea + link = { autogenerated = yes imp = 11892 imp = 12216 ck3 = 12678 } # Mare Celebes, Mare Celebes -> Celebes Sea + link = { autogenerated = yes imp = 11659 ck3 = 12677 } # Mare Celebes -> Celebes Sea + link = { autogenerated = yes imp = 12080 imp = 11924 imp = 11966 ck3 = 12676 } # Mare Celebes, Mare Celebes, Mare Celebes -> Celebes Sea + link = { autogenerated = yes imp = 11808 imp = 10578 imp = 10945 imp = 11569 imp = 12041 ck3 = 12675 } # Mare Celebes, Mare Celebes, Mare Celebes, Mare Celebes, Mare Celebes -> Celebes Sea + link = { autogenerated = yes imp = 11613 imp = 10910 imp = 11711 imp = 12190 imp = 9862 ck3 = 12674 } # Mare Celebes, Mare Celebes, Mare Celebes, Mare Celebes, Mare Celebes -> Celebes Sea + link = { autogenerated = yes imp = 11999 imp = 11633 imp = 11720 ck3 = 12673 } # Mare Celebes, Mare Celebes, Mare Celebes -> Celebes Sea + link = { autogenerated = yes imp = 11857 imp = 10885 imp = 10917 imp = 11793 imp = 12098 imp = 12189 ck3 = 12672 } # Mare Sulu, Mare Sulu, Mare Celebes, Mare Sulu, Mare Sulu, Mare Sulu -> Sulu Sea + link = { autogenerated = yes imp = 8165 imp = 11867 imp = 12215 imp = 9352 ck3 = 12671 } # Mare Sulu, Mare Sulu, Mare Sulu, Mare Sulu -> Sulu Sea + link = { autogenerated = yes imp = 11841 imp = 8168 imp = 8176 ck3 = 12669 } # Mare Sulu, Mare Sulu, Mare Sulu -> Sulu Sea + link = { autogenerated = yes imp = 8195 imp = 11988 ck3 = 12668 } # Mare Celebes, Mare Celebes -> Moro Gulf + link = { autogenerated = yes imp = 11889 imp = 10879 imp = 10915 imp = 12081 imp = 12146 ck3 = 12667 } # Mare Celebes, Mare Luzon, Mare Celebes, Mare Celebes, Mare Celebes -> Davao Gulf + link = { autogenerated = yes imp = 11965 imp = 11706 imp = 12182 ck3 = 12665 } # Mare Molucca, Mare Molucca, Mare Molucca -> Pacific Ocean + link = { autogenerated = yes imp = 11632 ck3 = 12664 } # Mare Luzon -> Bohol Sea + link = { autogenerated = yes imp = 10902 imp = 11608 ck3 = 12663 } # Mare Luzon, Mare Luzon -> Bohol Sea + link = { autogenerated = yes imp = 12005 imp = 10956 imp = 11794 imp = 12173 ck3 = 12642 } # Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon -> Philippine Sea + link = { autogenerated = yes imp = 11997 imp = 10862 ck3 = 12640 } # Mare Luzon, Mare Luzon -> Philippine Sea + link = { autogenerated = yes imp = 11616 imp = 12031 imp = 12068 ck3 = 12639 } # Mare Luzon, Mare Luzon, Mare Luzon -> Philippine Sea + link = { autogenerated = yes imp = 9867 ck3 = 12630 ck3 = 12632 ck3 = 12652 } # Impassable -> Philippine Sea, Philippine Sea, Pacific Ocean + link = { autogenerated = yes imp = 9301 ck3 = 12567 ck3 = 12568 ck3 = 12569 ck3 = 9665 } # Impassable -> GOBI_Bayanzag, GOBI_Ochikhi, GOBI_Burgasutai, IMPASSABLE CENTRAL GOBI 1 + link = { autogenerated = yes imp = 9381 ck3 = 12565 ck3 = 12566 ck3 = 9668 } # Impassable -> GOBI_Dood_Ongi, GOBI_Ulaan_Nuur, IMPASSABLE CENTRAL GOBI 3 + link = { autogenerated = yes imp = 9842 ck3 = 12524 } # Impassable -> Viet_Mountains_5 + link = { autogenerated = yes imp = 9849 ck3 = 12523 } # Impassable -> Viet_Mountains_4 + link = { autogenerated = yes imp = 8136 ck3 = 12492 } # Philippines Mountains -> IMPASSABLE Philippines Luzon Mountains 4 + link = { autogenerated = yes imp = 8135 ck3 = 12490 } # Philippines Mountains -> IMPASSABLE Philippines Luzon Mountains 2 + link = { autogenerated = yes imp = 7852 ck3 = 12487 ck3 = 12638 ck3 = 12641 ck3 = 12666 ck3 = 12764 } # SEAZONE IMPASSABLE WASTELAND -> LAKE Philippines lakes north, Philippine Sea, Philippine Sea, Pacific Ocean, Pacific Ocean + link = { autogenerated = yes imp = 5981 ck3 = 1205 ck3 = 12432 ck3 = 12433 ck3 = 12469 ck3 = 12471 ck3 = 12472 ck3 = 1329 ck3 = 1462 ck3 = 1463 ck3 = 1464 ck3 = 1466 ck3 = 174 ck3 = 191 ck3 = 192 ck3 = 193 ck3 = 194 ck3 = 195 ck3 = 196 ck3 = 198 ck3 = 199 ck3 = 200 ck3 = 201 ck3 = 202 ck3 = 218 ck3 = 219 ck3 = 3262 ck3 = 3264 ck3 = 401 ck3 = 402 ck3 = 403 ck3 = 404 ck3 = 405 ck3 = 406 ck3 = 407 ck3 = 408 ck3 = 409 ck3 = 410 ck3 = 411 ck3 = 412 ck3 = 413 ck3 = 414 ck3 = 415 ck3 = 416 ck3 = 417 ck3 = 418 ck3 = 419 ck3 = 451 ck3 = 452 ck3 = 453 ck3 = 454 ck3 = 455 ck3 = 5159 ck3 = 5250 ck3 = 5251 ck3 = 5252 ck3 = 5455 ck3 = 5456 ck3 = 5461 ck3 = 5462 ck3 = 5474 ck3 = 5516 ck3 = 5518 ck3 = 5798 ck3 = 5799 ck3 = 5800 ck3 = 5801 ck3 = 5802 ck3 = 5803 ck3 = 5804 ck3 = 5805 ck3 = 5806 ck3 = 5807 ck3 = 5808 ck3 = 5809 ck3 = 5810 ck3 = 5811 ck3 = 5812 ck3 = 5813 ck3 = 5814 ck3 = 5815 ck3 = 5816 ck3 = 5817 ck3 = 5818 ck3 = 5819 ck3 = 5820 ck3 = 5821 ck3 = 5822 ck3 = 5823 ck3 = 5824 ck3 = 5826 ck3 = 5827 ck3 = 5828 ck3 = 5829 ck3 = 5830 ck3 = 5831 ck3 = 5832 ck3 = 5833 ck3 = 5834 ck3 = 5835 ck3 = 5836 ck3 = 5837 ck3 = 5838 ck3 = 5839 ck3 = 5840 ck3 = 5841 ck3 = 5842 ck3 = 5843 ck3 = 5844 ck3 = 5845 ck3 = 5846 ck3 = 5847 ck3 = 5848 ck3 = 5849 ck3 = 5850 ck3 = 5851 ck3 = 5852 ck3 = 5853 ck3 = 5859 ck3 = 586 ck3 = 5860 ck3 = 5862 ck3 = 5865 ck3 = 5866 ck3 = 5867 ck3 = 5868 ck3 = 5869 ck3 = 5870 ck3 = 5871 ck3 = 5872 ck3 = 5873 ck3 = 5875 ck3 = 5876 ck3 = 5877 ck3 = 5878 ck3 = 5879 ck3 = 5880 ck3 = 5896 ck3 = 5897 ck3 = 5898 ck3 = 5899 ck3 = 612 ck3 = 652 ck3 = 7000 ck3 = 7001 ck3 = 7002 ck3 = 7003 ck3 = 7004 ck3 = 7005 ck3 = 7006 ck3 = 7007 ck3 = 7008 ck3 = 7009 ck3 = 7010 ck3 = 7011 ck3 = 7015 ck3 = 7016 ck3 = 7027 ck3 = 7028 ck3 = 7029 ck3 = 7055 ck3 = 7360 ck3 = 7361 ck3 = 7362 ck3 = 7363 ck3 = 7364 ck3 = 7365 ck3 = 7366 ck3 = 7367 ck3 = 7368 ck3 = 7369 ck3 = 7370 ck3 = 7371 ck3 = 7372 ck3 = 7375 ck3 = 7376 ck3 = 7377 ck3 = 7378 ck3 = 7379 ck3 = 7380 ck3 = 7424 ck3 = 7425 ck3 = 7431 ck3 = 7432 ck3 = 7433 ck3 = 7434 ck3 = 7435 ck3 = 7436 ck3 = 7437 ck3 = 7438 ck3 = 7439 ck3 = 7440 ck3 = 7441 ck3 = 7442 ck3 = 7443 ck3 = 7444 ck3 = 7445 ck3 = 7446 ck3 = 7447 ck3 = 7448 ck3 = 7449 ck3 = 7450 ck3 = 7451 ck3 = 7452 ck3 = 7453 ck3 = 7643 ck3 = 7644 ck3 = 7645 ck3 = 7648 ck3 = 7649 ck3 = 7650 ck3 = 7652 ck3 = 7653 ck3 = 7654 ck3 = 7655 ck3 = 7661 ck3 = 7670 ck3 = 7671 ck3 = 7672 ck3 = 7673 ck3 = 7674 ck3 = 7679 ck3 = 7680 ck3 = 7681 ck3 = 7682 ck3 = 7683 ck3 = 7685 ck3 = 7686 ck3 = 7687 ck3 = 7707 ck3 = 7708 ck3 = 7709 ck3 = 7710 ck3 = 7711 ck3 = 7712 ck3 = 7713 ck3 = 7714 ck3 = 7715 ck3 = 7716 ck3 = 7717 ck3 = 7718 ck3 = 7719 ck3 = 7720 ck3 = 7721 ck3 = 7722 ck3 = 7723 ck3 = 7724 ck3 = 7725 ck3 = 7726 ck3 = 7727 ck3 = 7728 ck3 = 7729 ck3 = 7730 ck3 = 7731 ck3 = 7732 ck3 = 7733 ck3 = 7734 ck3 = 7735 ck3 = 7736 ck3 = 7737 ck3 = 7738 ck3 = 7739 ck3 = 7740 ck3 = 7741 ck3 = 7742 ck3 = 7743 ck3 = 7744 ck3 = 7745 ck3 = 7746 ck3 = 7747 ck3 = 7748 ck3 = 7749 ck3 = 7750 ck3 = 7751 ck3 = 7752 ck3 = 7753 ck3 = 7754 ck3 = 7755 ck3 = 7756 ck3 = 7757 ck3 = 7758 ck3 = 7759 ck3 = 7760 ck3 = 7761 ck3 = 7762 ck3 = 7763 ck3 = 7764 ck3 = 7765 ck3 = 7766 ck3 = 7767 ck3 = 7768 ck3 = 7770 ck3 = 7771 ck3 = 7772 ck3 = 7773 ck3 = 7774 ck3 = 7775 ck3 = 7777 ck3 = 8703 ck3 = 8704 ck3 = 8705 ck3 = 8787 ck3 = 8789 ck3 = 8790 ck3 = 8791 ck3 = 8792 ck3 = 887 ck3 = 890 ck3 = 892 ck3 = 893 ck3 = 898 ck3 = 935 } # Russian Impassable -> Narim, FIC_Amur_Birigugda, FIC_Amur_Birija, FIC_EMan_Tugur, FIC_EMan_Imelen, FIC_EMan_Yam_Alin, Ket, Krasnoyarsk, Erchis, Siberian Wastes, (Unknown), SORTAVALA, KIDILA, SALINIS, AUNUS, SEESJARVI, ONEGABORG, SOUTJARVI, KONTUPOHJA, LIZMAJARVI, TOVAJARVI, SUOJARVI, VATSELANJARVI, SOMA, KEM, FINNISH IMPASSIBLE TERRAIN 1, KOLA IMPASSIBLE TERRAIN, SUONNJEL, MUETKK, NUOTTJAURR, KIILT, KOARDEGK, MASELK, CUKKSUAL, SAARVESJAURR, AKKEL, LUJAVVR, LEJJAVVR, ARSJOGK, GUODDEMJAVVR, KINTUS, JOVVKUJ, PENNE, SOSNEVKE, KOULAJARVI, KITKA, NUOKKIJARVI, TUNGUT, KUUSEMA, KOUTAJOKI, TIIKSJARVI, Vyangi, Manturovo, Kostroma, Chukhloma, Kerken, Shimal, Palniki, Lolog, Vokhma, Northern Urals, Northern Urals, Kholmogory, Arkhangelsk, Brin Navolok, Pertominsk, Lopshenga, Onega, Pole, Korelskoye, Malashuyka, Povenets, Malenga, Yangary, Kustranda, Pudozh, Vershinino, Yarnema, Kargopol, Vitzgora, Ostrov_BJA, Kirillov, Dvinitza, Pelsina, Totma, Tasta, Tischna, Kadnikov, Vologda, Gryazovets, Danilov, Vyatskoye, Lyubim, Razlivnoye, Soligalich, Onsthia, Karitsa, Suday, Choklema, Gorodek, Boborossa, Veliky Ustyug, Nyuksenitsa, Kotlas, Usyorga, Shenkursk, Krasny Bor, Bereznik, Velsk, Verkhovazhye, Ous Vaga, Yemetsk, Kevrola, Verkola, Osmova, Velsk wasteland, Ustyug wasteland, Sosvan wasteland, Galich Mersky, Samoyed wasteland, Tara wasteland, Sukhorukova, Belogorye, Kari Pospat Vosh, Arant, Kandiskaya, Kartauzh, Pelym, Sosva, Totkarak, Alymka, Chalbych, Chukas Vosh, Topar Vosh, Neramkary, Verkhoturye, Yugan, Nizyani, Atlym, Karymkary, Kai, FINNISH IMPASSABLE 4, Demiianka, Bardak, Koshley Vosh, Uluskate, Liniek, Selinga, Sibir, Berisiy, Asmaak, Yorgaet, Vagaiskoy, Kulema, Dolgujar, Ust-Ishim, Omgul, Zavialova, Vikulova, Ishim wasteland, Chich, Olyn, Kargalin, Tartas_SIB, Gulyus, Om, Sayak, Umiai, Vasyugan, Yugar, Chergana, Yonoir, Parabel, Igaran, Iau, Chegarka, Konda_ob, Toya, Baksa, Kalym, Iaya, Salim, Kiia, Yaia, Krolu, Perasku, Taskyl, Yogoran, Kitat, Chulym_bis, Chet, Biriku, Shurysh, Kojuk, Tym, Keljiga, Yutur, Jorugul, Sochur, Yenisei, Yahtin, Belska, Vasyugan Mire N, Vasyugan Mire S, Julym, Yezagash, Uchum, Jerjul, Argyjek, Sisim, Shinda, Kizir, Anja_TUV, Tofa Nuruud, Kuztom, Tofalaria, Miirchun, Ikh Orgil, Kandat Uul, Kazyr, Karauda, Iya_TUV, Doloon Nuur, Shityy, Tsagaan Kropot, Kropot, Urik, Setgel Uul, Muya, Kotera, Gants Khondii, Mamakhondii, Shugel Ondor, Vitimkhad, Karamuya, Vitim, Chuulunuruu, Chonoshud, Karaoi, Alskholoi, Chuya, Kirenga, Nogoon-naluu, Cherskogo, Baigalan Chaya, Daoroouul, Khilgazar, Khuldursgal, Ryty, Berikul, Chikan, Kutukan Ondort, Ichikta, Lena, Kem_MON, Kemchug, Stolby, Mana_MON, Kyzyl-Kan, Shishina, Taseya, Nemkina, Biriusa, Kansk, Khoidkhiliin, Tagul, Agul, Narsgol, Moson Kholtos, Chuna, Tsartsanmod, Biryusa, Khereeoi, Tsasengiin, Bratsk, Bugyntalbar, Kaduy, Tulun, Kirei, Angaragiin Degee, Kymyl'Tey, Zima_MON, Okangara, Bisha_MON, Mori Kliringiin, Kada_MON, Alyaty, Kurkat, Noty, Kitoi, Gatsuurgazar, Khoosonoi, Ilim_MON, Ilga, Ivda, Osa_MON, Manzurka, NORTHERN URALS, ALTAISHAN, ALTAISHAN, Kaddlhutt, Skolt, Peliza, Varsiga, Cascarena, Kharom-Vosh, Khanty-Mansiisk, Tselym-Balyn, Surgut, Tobol, KOLA IMPASSIBLE TERRAIN + link = { autogenerated = yes imp = 9575 ck3 = 11948 } # Impassable -> IMPASSABLE Inner Mongolia mountains 2 + link = { autogenerated = yes imp = 7281 ck3 = 1181 ck3 = 7134 } # Wasteland -> Sutkend, Akkum + link = { autogenerated = yes imp = 5357 ck3 = 1176 ck3 = 1354 ck3 = 3388 ck3 = 3476 ck3 = 3480 } # IP 358 -> Medantaka, Nagauda, Phalavardhika, Kolayat, Makrana + link = { autogenerated = yes imp = 9775 ck3 = 11636 ck3 = 11639 ck3 = 11640 ck3 = 11642 ck3 = 11644 } # Impassable -> IMPASSABLE Nenjiang heights, FIC_Amur_Caoqiu, FIC_Amur_Xinener, FIC_Amur_Xianbeishan, FIC_Amur_Bailangtudi + link = { autogenerated = yes imp = 9774 ck3 = 11526 ck3 = 11671 } # Impassable -> IMPASSABLE Amur-Songhua pincer field, Amur_Puyu + link = { autogenerated = yes imp = 12881 imp = 12720 imp = 12721 imp = 9333 imp = 9334 ck3 = 11521 } # Gobi, Kunei, Tial, Maazix, Duulax -> IMPASSABLE eastern Gobi + link = { autogenerated = yes imp = 9383 ck3 = 11518 ck3 = 11519 } # Impassable -> IMPASSABLE Sikhote mountains north 1, IMPASSABLE Sikhote mountains north 2 + link = { autogenerated = yes imp = 9386 ck3 = 11513 ck3 = 12929 } # Impassable -> IMPASSABLE Changbai mountains east, korea_mountains + link = { autogenerated = yes imp = 9773 ck3 = 11507 ck3 = 11508 ck3 = 11509 ck3 = 11510 ck3 = 11606 ck3 = 11607 ck3 = 11608 ck3 = 11609 ck3 = 11610 ck3 = 11611 ck3 = 11627 ck3 = 11628 ck3 = 11629 ck3 = 11630 ck3 = 11631 ck3 = 11632 ck3 = 11633 ck3 = 11634 ck3 = 11672 ck3 = 11674 ck3 = 11675 ck3 = 11676 ck3 = 11677 ck3 = 11685 ck3 = 11686 ck3 = 11687 ck3 = 11688 ck3 = 11690 ck3 = 11698 ck3 = 12435 ck3 = 12436 ck3 = 12437 ck3 = 12438 ck3 = 12439 ck3 = 9666 } # Impassable -> IMPASSABLE Greater Khingan north 2, IMPASSABLE Greater Khingan north 3, IMPASSABLE Greater Khingan north 4, IMPASSABLE Lesser Khingan, FIC_Mong_Oyuulvzar, FIC_Mong_Emurgol, FIC_Mong_Huraalin, FIC_Mong_Banukhol, FIC_Mong_Banouhe, FIC_Mong_Kamaraekh, FIC_Amur_Beihelin, FIC_Amur_Humari, FIC_Amur_Yuancao, FIC_Amur_Hurka, FIC_Amur_Jialingxi, FIC_Amur_Jiapowo, FIC_Amur_Iskenhe, FIC_Amur_Ganyijiang, FIC_Amur_Fulunshan, FIC_Amur_Heisenlin, FIC_Amur_Linyuan, FIC_Amur_Yuanlin, FIC_Amur_Luhean, FIC_Amur_Yemantudi, FIC_Amur_Yerencao, FIC_Amur_Longcaoan, FIC_Amur_Heilonglin, Amur_Suihua, FIC_Amur_Yingcao, FIC_Amur_Turma, FIC_Amur_Oronmu, FIC_Amur_Nimen, FIC_Amur_Hara, FIC_Amur_Vandarin, (Unknown) + link = { autogenerated = yes imp = 9384 ck3 = 11505 ck3 = 11656 ck3 = 11723 } # Impassable -> IMPASSABLE Greater Khingan south, FIC_Amur_Shangwulu, FIC_Liao_Liquan + link = { autogenerated = yes imp = 5975 ck3 = 11503 ck3 = 11504 ck3 = 11548 ck3 = 11552 ck3 = 11554 ck3 = 11601 ck3 = 11603 ck3 = 11604 ck3 = 11605 ck3 = 11930 ck3 = 11931 ck3 = 11932 ck3 = 1460 ck3 = 7540 ck3 = 7692 ck3 = 7693 ck3 = 7695 ck3 = 7696 ck3 = 7698 ck3 = 7699 ck3 = 7700 ck3 = 7701 ck3 = 7702 ck3 = 7703 ck3 = 7704 ck3 = 7705 ck3 = 7706 } # Sudan Impassable -> IMPASSABLE Yablonoi north, IMPASSABLE Yablonoi northeast, FIC_Mong_Khaldun, FIC_Mong_Ingedei, FIC_Mong_Shitagol, FIC_Mong_Gasimur, FIC_Mong_Gasunur, FIC_Mong_Shilkagol, FIC_Mong_Arguntokhoi, IMPASSABLE Mongolian wasteland 1, IMPASSABLE Mongolian wasteland 2, IMPASSABLE Mongolian wasteland 3, Khilem Khamar, Burkal, Khudan_BUR, Saranka, Khilok, Oungo, Itantsa, Kotokel, Yera, Shilmuustoi, Zuunbaykal, Vitimkan, Bargajan, Frolikha, Jergin + link = { autogenerated = yes imp = 9772 ck3 = 11502 } # Impassable -> IMPASSABLE Yablonoi middle + link = { autogenerated = yes imp = 8930 ck3 = 11489 } # Nanzhong Jungle -> Xiushan_West + link = { autogenerated = yes imp = 9373 ck3 = 11484 ck3 = 12871 } # Impassable -> Muang U, Yunnan Range + link = { autogenerated = yes imp = 9413 ck3 = 11472 ck3 = 12873 } # Impassable -> Moeng Laem, Yunnan Range + link = { autogenerated = yes imp = 9846 ck3 = 11460 ck3 = 12901 } # Impassable -> Salavan, Viet_Mountains_6 + link = { autogenerated = yes imp = 9374 ck3 = 11446 ck3 = 11492 ck3 = 12900 ck3 = 13268 } # Impassable -> Sam_Nuea, Lam Son, Annamite Range, (Unknown) + link = { autogenerated = yes imp = 9850 ck3 = 11395 ck3 = 11396 } # Impassable -> IMPASSABLE Kra Isthmus mountains 1, IMPASSABLE Kra Isthmus mountains 2 + link = { autogenerated = yes imp = 8128 ck3 = 11394 } # Malayan Mountain -> IMPASSABLE Malay Peninsula mountains 5 + link = { autogenerated = yes imp = 8129 ck3 = 11393 } # Malayan Mountain -> IMPASSABLE Malay Peninsula mountains 4 + link = { autogenerated = yes imp = 8130 ck3 = 11392 } # Malayan Mountain -> IMPASSABLE Malay Peninsula mountains 3 + link = { autogenerated = yes imp = 8132 ck3 = 11390 } # Malayan Mountain -> IMPASSABLE Malay Peninsula mountains 1 + link = { autogenerated = yes imp = 9116 ck3 = 11278 ck3 = 12526 ck3 = 9681 } # Impassable -> SUM_Lingga, Riau, Siantan Island + link = { autogenerated = yes imp = 7851 ck3 = 11249 } # SEAZONE IMPASSABLE WASTELAND -> IMPASSABLE Sumatra lakes 1 + link = { autogenerated = yes imp = 11059 ck3 = 11237 ck3 = 11238 } # Sumatra Mountain -> IMPASSABLE Sumatra mountains 2, IMPASSABLE Sumatra mountains 3 + link = { autogenerated = yes imp = 11057 imp = 11053 imp = 11058 ck3 = 11236 } # Sumatra Mountain, Alas, Sumatra Mountain -> IMPASSABLE Sumatra mountains 1 + link = { autogenerated = yes imp = 9870 ck3 = 11234 } # Impassable -> Sulawesi Lakes central + link = { autogenerated = yes imp = 8082 imp = 583 imp = 584 imp = 585 imp = 587 imp = 9896 ck3 = 1108 } # Heimur, Berenike, Vetus Hydreuma, Lahami, Nechesia, Ileigha -> EASTERN DESERT + link = { autogenerated = yes imp = 8079 imp = 5286 imp = 9898 ck3 = 1107 } # Contra Pselchis, IMPASSIBLE TERRAIN 286, Hudi -> EASTERN DESERT + link = { autogenerated = yes imp = 9379 ck3 = 11042 ck3 = 11045 ck3 = 11046 ck3 = 11047 ck3 = 11048 ck3 = 11049 ck3 = 11050 ck3 = 11051 ck3 = 11052 ck3 = 11053 ck3 = 11054 ck3 = 11055 ck3 = 11057 ck3 = 11058 ck3 = 11059 ck3 = 11060 ck3 = 11061 ck3 = 11065 ck3 = 11066 ck3 = 11067 ck3 = 11068 ck3 = 11069 ck3 = 11070 ck3 = 11071 ck3 = 11072 ck3 = 11073 ck3 = 11074 ck3 = 11075 ck3 = 11076 ck3 = 11077 ck3 = 11078 ck3 = 11079 ck3 = 11080 ck3 = 11081 ck3 = 11082 ck3 = 11083 ck3 = 11084 ck3 = 11085 ck3 = 11086 ck3 = 11088 ck3 = 11089 ck3 = 11090 ck3 = 11091 ck3 = 11092 ck3 = 11094 ck3 = 11095 ck3 = 11096 ck3 = 11097 ck3 = 12494 ck3 = 12495 ck3 = 12496 ck3 = 12498 ck3 = 12499 ck3 = 12500 } # Impassable -> PHI_Cuyo, PHI_Pala_wan, PHI_Balabac, PHI_Catarman, PHI_Catbalogan, PHI_Borongan, PHI_Panamao, PHI_Kankabatok, PHI_Baybay, PHI_Bool, PHI_Sugbu, PHI_Siaro, PHI_Dananguet, PHI_Ilog, PHI_Nabingkalan, PHI_Binalbagan, PHI_Himal-os, PHI_Dinagat, PHI_Siargao, PHI_Surigao, PHI_Tandag, PHI_Cabadbaran, PHI_Baganga, PHI_Mati, PHI_Kuambog, PHI_Magugpo, PHI_Agusan, PHI_Butuan, PHI_Tagoloan, PHI_Malaybalay, PHI_Idalemen, PHI_Masiu, PHI_Tubok, PHI_Marahui, PHI_Tukuran, PHI_Kumalarang, PHI_Bolong, PHI_Matangal, PHI_Sulug, PHI_Tawi_Tawi, PHI_Tamontaka, PHI_Lebak, PHI_Sapakan, PHI_Bagua_Inged, PHI_Malita, PHI_Makar, PHI_Glan, PHI_Sarangani, IMPASSABLE Philippines Mindanao Mountains 1, IMPASSABLE Philippines Mindanao Mountains 2, IMPASSABLE Philippines Mindanao Mountains 3, IMPASSABLE Philippines Mindanao Mountains 4, IMPASSABLE Philippines Mindanao Mountains 5, IMPASSABLE Philippines Mindanao Mountains 6 + link = { autogenerated = yes imp = 9375 ck3 = 10967 ck3 = 11467 ck3 = 11485 ck3 = 12858 ck3 = 12864 ck3 = 12865 ck3 = 12866 ck3 = 12867 ck3 = 12868 } # Impassable -> Muang Souy, Muang Ngoi, Chiang Khaeng, Luang Prabang Range, Annamite Range, Annamite Range, Yunnan Range, Yunnan Range, Yunnan Range + link = { autogenerated = yes imp = 9843 ck3 = 10960 ck3 = 10965 ck3 = 10970 ck3 = 10971 ck3 = 10972 ck3 = 10973 ck3 = 11479 ck3 = 11493 ck3 = 11494 ck3 = 11496 ck3 = 12862 ck3 = 12869 ck3 = 12872 ck3 = 9594 ck3 = 9638 } # Impassable -> Mae_Hong_Song, Taunggyi, Mongnai, Laikha, Mongnawn, Mawkmai, Keng_Tung, Taunggyi_South, Pai, Mae_Hong_Song_4, Dawna Range, Yunnan Range, Yunnan Range, Mong_Pai, Shwegyin + link = { autogenerated = yes imp = 9376 ck3 = 10925 ck3 = 11465 ck3 = 12520 ck3 = 12521 ck3 = 12902 } # Impassable -> Pleiku, Salo_Tai, Annamite Range, Viet_Mountains_2, Viet_Mountains_7 + link = { autogenerated = yes imp = 8098 ck3 = 1089 } # Ethiopia Mountains -> WOLLO_HIGHLANDS + link = { autogenerated = yes imp = 9198 ck3 = 10854 ck3 = 13266 } # Impassable -> Thuong_Nguyen, (Unknown) + link = { autogenerated = yes imp = 8103 ck3 = 1068 ck3 = 6389 ck3 = 6420 } # Sudan Impassable -> NUBIAN_DESERT_SOUTH, SHUNQAYR, NUBIAN_DESERT_SOUTH + link = { autogenerated = yes imp = 9327 ck3 = 10648 ck3 = 12921 } # Impassable -> IMPASSABLE_WEST_HONSHU, shinano_mountains + link = { autogenerated = yes imp = 9317 ck3 = 10588 ck3 = 12915 } # Impassable -> IMPASSABLE SHIKOKU, shikoku_mountains + link = { autogenerated = yes imp = 8112 ck3 = 10582 ck3 = 10586 ck3 = 12912 } # Japan Mountain -> IMPASSABLE_IWASHIRO, IMPASSABLE_MUTSU, mutsu_mountains + link = { autogenerated = yes imp = 9765 ck3 = 10577 ck3 = 10580 ck3 = 10581 ck3 = 10585 } # Kii Mountains -> Takada, Kōnu, Mikami, Tetta + link = { autogenerated = yes imp = 9312 ck3 = 10562 ck3 = 12916 } # Impassable -> IMPASSABLE KYUSHU, kyushu_mountains + link = { autogenerated = yes imp = 5328 ck3 = 1050 ck3 = 6372 ck3 = 6373 ck3 = 6374 ck3 = 6375 ck3 = 6384 } # Eastern Desert Impassable -> JEBEL_BEJA, WADI_ODIB, GEBEIT, NAQIS-NORTH, KHAWR_NUBT, NAQIS-SOUTH + link = { autogenerated = yes imp = 8109 ck3 = 1049 } # Somali Impassable -> OGADEN_DESERT + link = { autogenerated = yes imp = 9385 ck3 = 10489 ck3 = 10490 ck3 = 10497 ck3 = 10498 ck3 = 10499 ck3 = 10500 ck3 = 11689 ck3 = 12431 ck3 = 12434 ck3 = 12462 ck3 = 12470 ck3 = 12473 ck3 = 12474 ck3 = 12475 ck3 = 12476 ck3 = 12484 ck3 = 12485 } # Impassable -> FIC_Amur_Konnovanda, FIC_Amur_Hulavanda, FIC_Amur_Umilimo, IMPASSABLE MANCHURIA, FIC_Amur_Molamu, FIC_Amur_Kulikansiggu, FIC_Amur_Lindu, IMPASSABLE MANCHURIA, FIC_Amur_Uroure, FIC_EMan_Orel, FIC_EMan_Ymila, FIC_EMan_Dusse_Alin, FIC_EMan_Khadul, FIC_EMan_Chayatin, FIC_EMan_Evoron, IMPASSABLE North East Manchuria mountain 2, IMPASSABLE North East Manchuria mountain 3 + link = { autogenerated = yes imp = 8928 ck3 = 10487 ck3 = 9317 } # Tibet Impassable -> north_dali_impassable_1, Balung + link = { autogenerated = yes imp = 8990 ck3 = 10440 ck3 = 13050 ck3 = 13051 ck3 = 9826 ck3 = 9827 } # Yangtze Mountains -> Jianshi, Qingjiang Northwest, Qingjiang West, Qingjiang, Qianjiang + link = { autogenerated = yes imp = 5101 ck3 = 1044 } # IMPASSIBLE TERRAIN 101 -> BALKAN MOUNTAINS + link = { autogenerated = yes imp = 5104 ck3 = 1043 ck3 = 3616 ck3 = 3625 } # IMPASSIBLE TERRAIN 104 -> BALKAN MOUNTAINS, Kavurskoto Kale, Krichim + link = { autogenerated = yes imp = 5070 ck3 = 1042 ck3 = 3716 } # IMPASSIBLE TERRAIN 070 -> BALKAN MOUNTAINS, Klisura + link = { autogenerated = yes imp = 9015 ck3 = 10408 ck3 = 10427 ck3 = 13246 ck3 = 13251 } # Sanmiao Jungle -> Hongzhou, Rongjiang, (Unknown), (Unknown) + link = { autogenerated = yes imp = 5076 ck3 = 1040 ck3 = 3646 } # Upper Macedonia -> BALKAN MOUNTAINS, Kicevo + link = { autogenerated = yes imp = 5077 ck3 = 1039 } # IMPASSIBLE TERRAIN 077 -> BALKAN MOUNTAINS + link = { autogenerated = yes imp = 9186 ck3 = 10246 ck3 = 10391 ck3 = 13264 } # Yue Jungle -> Langcangdong, Raomian, (Unknown) + link = { autogenerated = yes imp = 8948 ck3 = 10193 ck3 = 13151 } # Yue Jungle -> Long, Sanbang + link = { autogenerated = yes imp = 8321 ck3 = 10148 } # Qin Hills -> Hu + link = { autogenerated = yes imp = 5207 ck3 = 1013 ck3 = 5761 } # IMPASSIBLE TERRAIN 207 -> Lori, Bolnisi + link = { autogenerated = yes imp = 9302 ck3 = 10096 ck3 = 10098 ck3 = 12976 ck3 = 13096 } # Impassable -> b_youzhou_yanen, Guiren, XYZ, Guiren South + link = { autogenerated = yes imp = 12780 imp = 12797 imp = 12815 imp = 12824 imp = 12839 imp = 12841 ck3 = 1007 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus -> Gulf of Bothnia + link = { autogenerated = yes imp = 8894 ck3 = 10010 ck3 = 13230 } # Nanzhong Jungle -> Rongyi, (Unknown) + link = { autogenerated = yes imp = 5953 ck3 = 1 ck3 = 2 ck3 = 233 ck3 = 235 ck3 = 236 ck3 = 237 ck3 = 238 ck3 = 239 ck3 = 240 ck3 = 241 ck3 = 242 ck3 = 243 ck3 = 244 ck3 = 245 ck3 = 247 ck3 = 255 ck3 = 257 ck3 = 258 ck3 = 259 ck3 = 260 ck3 = 261 ck3 = 262 ck3 = 263 ck3 = 264 ck3 = 265 ck3 = 266 ck3 = 267 ck3 = 268 ck3 = 269 ck3 = 270 ck3 = 271 ck3 = 272 ck3 = 273 ck3 = 274 ck3 = 275 ck3 = 276 ck3 = 277 ck3 = 278 ck3 = 279 ck3 = 280 ck3 = 281 ck3 = 283 ck3 = 284 ck3 = 293 ck3 = 299 ck3 = 3 ck3 = 3260 ck3 = 3307 ck3 = 383 ck3 = 392 ck3 = 393 ck3 = 394 ck3 = 395 ck3 = 396 ck3 = 397 ck3 = 398 ck3 = 399 ck3 = 4 ck3 = 5 ck3 = 657 ck3 = 658 ck3 = 8771 ck3 = 8772 ck3 = 8773 ck3 = 8774 ck3 = 899 ck3 = 902 } # Norwegian Impassable -> VESTFIRDIR, REYKJAVIK, RINGARIKI, VALDRES, HEDMARK, NORTHRI GUDBRANDSDALI, SUTHRI GUDBRANDSDALI, NORTHRI EYSTRIDALI, SUTHRI EYSTRIDALI, GAULDALA, STJORDALA, VERDALA, INNAN NAMDALFYLKI, UTAN NAMDALFYLKI, NUMEDAL, HARDANGER, MITHRHORDALAND, NORTHRIHORDALAND, VOSS, SOGNFYLKI, BREMANGER, STOLSHEIMEN, FJARLAND, DALE, FIRDAFYLKI, JOLSTER, SUNNMORE, ROMSDALI, NORTHRIMORE, STRIND, ORKDALA, HITRAR, EYNAFYLKI, TORGAR, RODOY, SANDNES, BODIN, VAGAN, BJARKOY, VESTVAGBORG, NORWEGIAN IMPASSABLE 1, GRONG, AARBORTE, DOVRE, NORWEGIAN IMPASSABLE 9, STOKKSEYRI, NORWEGIAN MOUNTAINS, ICELANDIC IMPASSIBLE TERRAIN, TINGEVARA, PELDOJAVRI, ROUNALA, GUOVDAGEAIDNU, IESJAVRI, KARASJOHKA, AVIOVARA, LAGGUJAKKA, OHCEJOHKA, REYDARFJALL, HUSAVIK, NORWEGIAN IMPASSABLE 6, NORWEGIAN IMPASSABLE 7, Olafsvik, Hofn, Vopnafjordur, Klaustur, KOLA IMPASSIBLE TERRAIN, KOLA IMPASSIBLE TERRAIN + link = { autogenerated = yes imp = 12690 ck3 = 9466 } # Nant -> Zainlha + link = { autogenerated = yes imp = 8294 ck3 = 9442 ck3 = 13179 } # Daxia -> Linten, (Unknown) + link = { autogenerated = yes imp = 8306 ck3 = 9389 ck3 = 9390 } # Xiaowan -> Ayakkum, Aqqikkol + link = { autogenerated = yes imp = 5442 imp = 5448 imp = 6053 ck3 = 924 } # Tummana, IMPASSABLE, Dakshina Koshala -> Moti_Mahal + link = { autogenerated = yes imp = 5557 ck3 = 9089 ck3 = 9091 ck3 = 8544 } # Khyunglung -> Srinagar, Kartikeyapura, HIMALAYA + link = { autogenerated = yes imp = 7385 ck3 = 9087 } # Devaprayaga -> Dehradun + link = { autogenerated = yes imp = 5571 ck3 = 9067 } # Nghulmo Khar -> Simbiling + link = { autogenerated = yes imp = 5617 ck3 = 9061 } # Chunak -> Gerze + link = { autogenerated = yes imp = 5614 ck3 = 9058 } # Ormogang -> Gegyai + link = { autogenerated = yes imp = 5568 ck3 = 9007 ck3 = 3293 } # Mune -> Hanle, KUNLUNSHAN + link = { autogenerated = yes imp = 7543 ck3 = 8337 } # Kebranitia -> SOUTH_DANAKIL + link = { autogenerated = yes imp = 6775 imp = 5277 ck3 = 7967 } # Kabyk, Ferghanan Mountains -> Terek + link = { autogenerated = yes imp = 5599 ck3 = 7952 } # Teclas -> Shandur + link = { autogenerated = yes imp = 5597 ck3 = 7950 } # Kargah -> Chilas + link = { autogenerated = yes imp = 9436 ck3 = 7651 ck3 = 7656 } # Burkut -> Tuba_TUV, Tiberkul + link = { autogenerated = yes imp = 10820 ck3 = 7632 } # Chulyshman -> Katu-Yaryk + link = { autogenerated = yes imp = 9470 ck3 = 7473 ck3 = 7479 } # Tolbo -> Kulris, Chungul + link = { autogenerated = yes imp = 8304 ck3 = 7153 } # Beishan -> Barskhan + link = { autogenerated = yes imp = 6736 ck3 = 7150 } # Osh -> Bagish + link = { autogenerated = yes imp = 9940 ck3 = 6884 } # Santah -> EAST_KORDOFAN + link = { autogenerated = yes imp = 9972 imp = 9971 imp = 8069 imp = 8075 ck3 = 6459 } # Brak, Umm Abid, Khafur, Karim -> TAMZAWA + link = { autogenerated = yes imp = 9960 imp = 9961 ck3 = 6446 } # Jufrah, Fuqaha -> ZALHA + link = { autogenerated = yes imp = 10511 ck3 = 6439 ck3 = 1051 } # Afabet -> MARYA, JEBEL_BEJA + link = { autogenerated = yes imp = 9917 imp = 9916 imp = 9918 imp = 8083 ck3 = 6354 } # Murrat, Hidiglib, Sufar, Garaiyat -> KOROSKO-ROAD + link = { autogenerated = yes imp = 11256 ck3 = 6234 ck3 = 6235 } # Gaabah -> TABALA-HIJAZ, BISHA + link = { autogenerated = yes imp = 4717 ck3 = 6192 } # Gaiapolis -> TAYMA + link = { autogenerated = yes imp = 7555 ck3 = 6180 } # Arabia Deserta -> SIRHAN + link = { autogenerated = yes imp = 7558 imp = 4721 ck3 = 6178 } # Arabia Deserta, Durnatha -> AL-JAWF + link = { autogenerated = yes imp = 5535 ck3 = 6089 } # Colira -> AL-BAHRIYA + link = { autogenerated = yes imp = 5525 imp = 5523 ck3 = 6088 } # Tawar, Farafra -> AL-FARAFRA + link = { autogenerated = yes imp = 5509 ck3 = 6085 } # Kellis -> MUT + link = { autogenerated = yes imp = 703 ck3 = 6030 } # Gypsaria -> FIRAUN + link = { autogenerated = yes imp = 1750 ck3 = 5748 } # Klukhor Pass -> Seti + link = { autogenerated = yes imp = 271 imp = 7923 ck3 = 5536 } # Attea, Synaios Mountains -> Hadrianeia + link = { autogenerated = yes imp = 12641 ck3 = 5156 ck3 = 5157 ck3 = 5512 } # Korpi -> Beloozero, Cherepovets, Vepsian Wasteland + link = { autogenerated = yes imp = 10092 ck3 = 4755 } # Zaouia -> TAGMADART + link = { autogenerated = yes imp = 10177 ck3 = 4672 ck3 = 4673 ck3 = 4676 } # Timlilt -> TLEMCEN, TAFRAOUA-SEBDOU, DEBDOU + link = { autogenerated = yes imp = 10149 imp = 10148 ck3 = 4661 } # Aflou, Laghouat -> ASKEDAL + link = { autogenerated = yes imp = 10042 imp = 9989 ck3 = 4571 } # Cydamus, Harakat -> DARADJ + link = { autogenerated = yes imp = 6624 imp = 6615 ck3 = 4506 } # Liman, Gauzaka -> MOQOR + link = { autogenerated = yes imp = 6640 imp = 6641 ck3 = 4502 } # Alkon, Naulibis -> ISTAKH + link = { autogenerated = yes imp = 6612 ck3 = 4501 } # Kophen -> GARDIZ + link = { autogenerated = yes imp = 6572 ck3 = 4496 ck3 = 4497 } # Cotrica -> BAKRAWATH, PUL + link = { autogenerated = yes imp = 6553 ck3 = 4493 } # Carura -> BAGNIN + link = { autogenerated = yes imp = 6551 ck3 = 4464 ck3 = 1485 } # Etymandria -> MOFD AFDZALKHAN, PERSIAN IMPASSABLE TERRAIN + link = { autogenerated = yes imp = 6722 ck3 = 4422 } # Imarash -> VARUKH + link = { autogenerated = yes imp = 6762 ck3 = 4359 ck3 = 4360 } # Kaahka Pamir -> Zaybak, Ishkamish + link = { autogenerated = yes imp = 6626 ck3 = 4357 } # Kham -> Munjan + link = { autogenerated = yes imp = 3402 ck3 = 4095 ck3 = 4171 ck3 = 12896 } # Darabgird -> Jahrum, Darabjerd, zagros_mountains + link = { autogenerated = yes imp = 5436 imp = 5252 ck3 = 4060 } # Great Kavir, Lut -> Mihrijan + link = { autogenerated = yes imp = 4825 ck3 = 3945 ck3 = 733 } # Montibus -> Kovaszna, CARPATHIANS + link = { autogenerated = yes imp = 4283 ck3 = 3932 } # Iscronia -> Harszoc + link = { autogenerated = yes imp = 4942 ck3 = 3918 ck3 = 3951 } # Acrium -> Okormezo, EASTERN EUROPE IMPASSABLE TERRAIN 1 + link = { autogenerated = yes imp = 4047 imp = 5035 ck3 = 3108 } # Luena, IMPASSIBLE TERRAIN 035 -> WOLFSBERG + link = { autogenerated = yes imp = 3663 imp = 3665 ck3 = 2955 } # Sublavione, Vipitenum -> BRIXEN + link = { autogenerated = yes imp = 3618 ck3 = 2478 } # Summus Lacus -> BELLINZONA + link = { autogenerated = yes imp = 2297 ck3 = 2218 ck3 = 786 } # Cebennia -> CEVENNES, French Mountains 2 + link = { autogenerated = yes imp = 3536 ck3 = 2027 } # Eburodunum -> EMBRUN + link = { autogenerated = yes imp = 9506 imp = 9511 ck3 = 12562 } # Ongon, Impassable -> GOBI_Gurvan_Saikhan + link = { autogenerated = yes imp = 9512 imp = 9515 ck3 = 12560 } # Shouxiang, Nuoshui -> GOBI_Aibakha + link = { autogenerated = yes imp = 9514 ck3 = 12559 } # Tabu -> GOBI_Altan_Uul + link = { autogenerated = yes imp = 9814 ck3 = 12505 } # Khao Leim -> Uthai_Thani + link = { autogenerated = yes imp = 8810 ck3 = 11844 ck3 = 11512 } # Paesu -> Liao_Fengzhou4, IMPASSABLE Changbai mountains west + link = { autogenerated = yes imp = 8783 imp = 9531 ck3 = 11765 } # Wangping, Impassable -> Liao_Liaozhou + link = { autogenerated = yes imp = 11072 imp = 9408 ck3 = 10982 } # Kettha, Impassable -> Monyin + link = { autogenerated = yes imp = 8646 imp = 9400 ck3 = 10063 } # Dai, Impassable -> b_yuzhou_lingqiu + link = { autogenerated = yes imp = 9994 ck3 = 6450 } # Dujal -> TASSAWA + link = { autogenerated = yes imp = 9990 imp = 9991 imp = 9998 imp = 8093 ck3 = 6447 } # Tmessa, Zuwila, Majdul, Hidiglib -> ZAWILA + link = { autogenerated = yes imp = 9954 imp = 9956 imp = 9957 imp = 9958 imp = 9959 ck3 = 4553 } # Maradah, Talhah, Tagrifet, Meduin, Zala -> TAJRIFT + link = { autogenerated = yes imp = 9953 ck3 = 6106 } # Jabbanah -> AWJILA + link = { autogenerated = yes imp = 991 ck3 = 5721 } # Arest -> Berkri + link = { autogenerated = yes imp = 9903 imp = 9912 ck3 = 6111 } # Tuyur, Berenike Pancrysia -> DERAHIB + link = { autogenerated = yes imp = 990 imp = 5199 ck3 = 5719 } # Arsissa, IMPASSIBLE TERRAIN 199 -> Arjesh + link = { autogenerated = yes imp = 9899 imp = 9900 imp = 5352 ck3 = 6120 } # Shabbabah, Karim, Troglodytica -> SOUTH_JBL_QUZLUM + link = { autogenerated = yes imp = 9861 ck3 = 12655 ck3 = 12654 } # Mare Yavadvipa -> Pacific Ocean, Pacific Ocean + link = { autogenerated = yes imp = 985 ck3 = 4778 } # Ishkewt -> KHUFTIDKAN + link = { autogenerated = yes imp = 9822 ck3 = 10936 } # Shrestrapura -> Choam_Khsant + link = { autogenerated = yes imp = 982 imp = 5232 ck3 = 4782 } # Yazdigird, Zagros -> KEREND-KERMANSHAH + link = { autogenerated = yes imp = 9776 ck3 = 10488 ck3 = 9168 } # PASS -> Patkai Hills, Hawai + link = { autogenerated = yes imp = 9757 ck3 = 9394 ck3 = 9392 } # Nalingele -> Urtmoron, Bokalik + link = { autogenerated = yes imp = 9752 imp = 9753 ck3 = 9402 } # Keer, Talitaliha -> Balung + link = { autogenerated = yes imp = 9750 ck3 = 9403 } # Dalitaliha -> Tuulain + link = { autogenerated = yes imp = 968 ck3 = 6001 } # Eridu -> AS-SALMAN + link = { autogenerated = yes imp = 9666 ck3 = 11789 } # Wen -> Liao_Tongzhou + link = { autogenerated = yes imp = 9662 ck3 = 13097 } # Haihun -> XYZ + link = { autogenerated = yes imp = 9636 imp = 9137 ck3 = 10434 } # Ancheng, Yue Jungle -> Yongxin + link = { autogenerated = yes imp = 9627 ck3 = 10396 ck3 = 10401 } # Xiazhi -> Wuchang, Yongxin + link = { autogenerated = yes imp = 9612 ck3 = 9760 } # Pingdu -> Guixi + link = { autogenerated = yes imp = 9589 imp = 9567 ck3 = 13018 } # Feiru, Impassable -> Lulong Northwest + link = { autogenerated = yes imp = 955 ck3 = 4806 } # Kar Tukulti Ninurta -> JABALTA + link = { autogenerated = yes imp = 953 imp = 954 ck3 = 4886 } # Bijan, Haditha -> AL-HADITHA-FURAT + link = { autogenerated = yes imp = 951 ck3 = 4258 ck3 = 4124 } # Elymais -> Bazoh, Samshiborid + link = { autogenerated = yes imp = 950 ck3 = 4257 } # Sostrate -> Gondishapur + link = { autogenerated = yes imp = 9463 ck3 = 7498 } # Tuanchang -> Olon-bulak + link = { autogenerated = yes imp = 9459 ck3 = 7468 ck3 = 7465 } # Heishui -> Wusu, Yangjibalik + link = { autogenerated = yes imp = 9456 imp = 12668 ck3 = 7170 } # Yilihe, Impassable -> Altyn-Emel + link = { autogenerated = yes imp = 9397 ck3 = 12961 ck3 = 12974 } # PASS -> Dingyuan North, b_youzhou_yanen_west + link = { autogenerated = yes imp = 933 imp = 973 ck3 = 4822 } # Apamea ad Tigridem, Bakusaya -> KASKAR + link = { autogenerated = yes imp = 9314 ck3 = 10502 ck3 = 10501 } # Tosu -> Kami, Nagaoka + link = { autogenerated = yes imp = 9311 ck3 = 9393 } # Mangya -> Mangnai + link = { autogenerated = yes imp = 9295 ck3 = 9976 } # Bulsa -> Goryeo_Gyeongsang_Cheongdo + link = { autogenerated = yes imp = 9228 ck3 = 10458 } # Jiang -> Yangtze River + link = { autogenerated = yes imp = 9223 ck3 = 10460 } # Jiang -> Yangtze River + link = { autogenerated = yes imp = 9219 ck3 = 12933 ck3 = 12934 } # Shanan -> Hainan, Hainan + link = { autogenerated = yes imp = 9213 ck3 = 12944 ck3 = 12932 ck3 = 12943 } # Gouzhong -> Hainan, Hainan, Hainan + link = { autogenerated = yes imp = 9200 imp = 9201 imp = 9205 ck3 = 10840 } # Tu Pho, Cu Phong, Vo Bien -> Dien_Chau + link = { autogenerated = yes imp = 920 ck3 = 5993 } # Dilbat -> AN-NAJAF + link = { autogenerated = yes imp = 9190 imp = 9192 imp = 9197 ck3 = 10861 } # Bac Dai, Ke Tu, Tay Vu -> Thang_Long + link = { autogenerated = yes imp = 9188 imp = 9194 ck3 = 10858 } # Luy Lau, Chu Dien -> Hoang_Giang + link = { autogenerated = yes imp = 9180 ck3 = 9837 ck3 = 13091 ck3 = 13092 } # Guangyu -> Lingnan_Guishunzhou_Jingxi, Wenzhou Southwest, Southeast + link = { autogenerated = yes imp = 9176 ck3 = 10285 } # Lingfang -> Shukunzhou + link = { autogenerated = yes imp = 9171 imp = 9422 ck3 = 8917 } # Ningpu, Liandao -> Panshui + link = { autogenerated = yes imp = 9156 ck3 = 10279 ck3 = 10276 ck3 = 10277 } # Lipu -> Cou'e, Pingle, Longping + link = { autogenerated = yes imp = 9155 imp = 9160 ck3 = 10426 } # Fuchuan, Yue Jungle -> Yongping + link = { autogenerated = yes imp = 9154 ck3 = 10273 ck3 = 10272 } # Linhe -> Fuchuan, Linhe + link = { autogenerated = yes imp = 9152 ck3 = 8924 } # Gaoyao -> Gaoyao + link = { autogenerated = yes imp = 9151 imp = 9164 ck3 = 8925 } # Duanxi, Yue Jungle -> Duanxi + link = { autogenerated = yes imp = 9149 imp = 9153 ck3 = 10274 } # Guangxin, Fengyang -> Cangwu + link = { autogenerated = yes imp = 9142 ck3 = 12983 } # Zhongsu -> Jianshui + link = { autogenerated = yes imp = 909 ck3 = 4833 } # Naarda -> HIT + link = { autogenerated = yes imp = 9070 imp = 9055 ck3 = 10252 } # Qian, Boxiang -> Huoshan + link = { autogenerated = yes imp = 906 ck3 = 4887 } # Anatho -> ANA + link = { autogenerated = yes imp = 9058 ck3 = 8937 } # Quanjiao -> Quanjiao + link = { autogenerated = yes imp = 905 imp = 907 ck3 = 4885 } # Bechchouphrein, Haradu -> HADITHAT-ANA + link = { autogenerated = yes imp = 9040 ck3 = 8968 } # Yinshan -> Changning + link = { autogenerated = yes imp = 9038 imp = 9035 ck3 = 8966 } # Linwu, Impassable -> Yichang + link = { autogenerated = yes imp = 9025 ck3 = 8957 ck3 = 13141 ck3 = 8959 } # Lingling -> Xiangyuan, Chema, Hongdao + link = { autogenerated = yes imp = 9011 ck3 = 9996 ck3 = 9999 } # Wuyang -> Chenxi, Tanyang + link = { autogenerated = yes imp = 8988 ck3 = 10453 ck3 = 10014 } # Wu -> Something_3, Badong + link = { autogenerated = yes imp = 8918 ck3 = 11490 } # Yunnan -> Yuepan_North + link = { autogenerated = yes imp = 8887 ck3 = 9725 } # Niubi -> Neijiang + link = { autogenerated = yes imp = 8869 ck3 = 9726 } # Guangdu -> Renshou + link = { autogenerated = yes imp = 8868 ck3 = 10218 } # Jiangyuan -> Shuangliu + link = { autogenerated = yes imp = 8845 ck3 = 10447 ck3 = 9755 } # Quren -> Something_2, Nanpu + link = { autogenerated = yes imp = 8844 ck3 = 9758 ck3 = 9754 ck3 = 9759 } # Linjiang -> Nanbin, Wuning, Linjiang + link = { autogenerated = yes imp = 8840 ck3 = 9828 ck3 = 13024 } # Fuling -> Pengshui, Fengjie West + link = { autogenerated = yes imp = 8831 imp = 9623 ck3 = 9767 } # Nanzheng, Mianyang -> Nanzheng + link = { autogenerated = yes imp = 8828 ck3 = 13061 } # Wuling -> Zhushan Southwest + link = { autogenerated = yes imp = 8825 ck3 = 13063 ck3 = 10053 } # Xunyang -> Shiquan East, b_something_qianyuan + link = { autogenerated = yes imp = 8824 ck3 = 13065 ck3 = 10049 ck3 = 10050 } # Xicheng -> Pingli East, Pingli, Shiquan + link = { autogenerated = yes imp = 8820 ck3 = 10268 } # Hechi -> Hechi + link = { autogenerated = yes imp = 8753 ck3 = 9698 } # Goucheng -> Sanhe + link = { autogenerated = yes imp = 8745 imp = 9401 imp = 9402 ck3 = 12405 } # Yiyu, Impassable, Impassable -> CirLXJ_Jinshan + link = { autogenerated = yes imp = 8680 imp = 8681 imp = 9394 ck3 = 10354 } # Lieren, Handan, Impassable -> Neihuang + link = { autogenerated = yes imp = 8659 ck3 = 12386 } # Luo -> CirLXJ_Dongshengzhou + link = { autogenerated = yes imp = 8643 imp = 8119 ck3 = 13070 } # Luti, Shanxi Impassable -> Daizhou East + link = { autogenerated = yes imp = 8630 ck3 = 13041 ck3 = 13172 } # Yuwu -> Tunliu South, (Unknown) + link = { autogenerated = yes imp = 8622 imp = 8624 imp = 8596 ck3 = 13075 } # Manbai, Wudu, Meiji -> b_shengzhou_yulin_northeast + link = { autogenerated = yes imp = 8609 imp = 8611 ck3 = 9539 } # Linrong, Sanfeng -> Dengkou + link = { autogenerated = yes imp = 8598 imp = 8612 ck3 = 12975 } # Dacheng, Xiudou -> b_youzhou_yanen_south + link = { autogenerated = yes imp = 8587 ck3 = 10072 } # Xicheng -> Dinghu + link = { autogenerated = yes imp = 8585 ck3 = 10142 } # Dingyang -> Yanchuan + link = { autogenerated = yes imp = 854 ck3 = 4853 } # Ganaba -> RAS_AL-AIN + link = { autogenerated = yes imp = 853 ck3 = 4877 } # Ichnae -> BAJARWAN + link = { autogenerated = yes imp = 8510 imp = 8525 imp = 8531 ck3 = 8858 } # Pingshou, Gumu, Qi Forest -> Futang + link = { autogenerated = yes imp = 8471 imp = 8486 ck3 = 8881 } # Juye, Gang -> Xiaqiu + link = { autogenerated = yes imp = 8455 ck3 = 9824 } # Weishi -> Yongqiu + link = { autogenerated = yes imp = 842 imp = 992 ck3 = 4858 } # Tigranocerta, Balaleisa -> ARZAN + link = { autogenerated = yes imp = 8395 imp = 8970 imp = 8394 ck3 = 9796 } # Wuyang, Ye, Kunyang -> Wuyang + link = { autogenerated = yes imp = 8363 ck3 = 10052 ck3 = 13185 } # Shang -> b_something_something, (Unknown) + link = { autogenerated = yes imp = 8356 ck3 = 9789 } # Hongnong -> b_he_nan_mianchi + link = { autogenerated = yes imp = 8347 imp = 8349 imp = 8378 imp = 8391 ck3 = 10405 } # Gaoluo, Yuan, Zhi, Hedong Mountains -> b_something_wangwu + link = { autogenerated = yes imp = 8343 imp = 8389 ck3 = 10257 } # Hu, Qin Hills -> Hongnong + link = { autogenerated = yes imp = 8342 ck3 = 10418 } # Chuansikong -> b_huazhou_huayin + link = { autogenerated = yes imp = 8330 ck3 = 10147 } # Jingyang -> Yunyang + link = { autogenerated = yes imp = 8320 ck3 = 10140 } # Xunyi -> Shengping + link = { autogenerated = yes imp = 8311 imp = 8322 ck3 = 10132 } # Guo, Qin Hills -> Tianxing + link = { autogenerated = yes imp = 8286 ck3 = 10130 ck3 = 13177 } # Long -> Huating, (Unknown) + link = { autogenerated = yes imp = 8281 imp = 8292 ck3 = 12359 } # Pingxiang, Xiangwu -> CirQF_Tianshui + link = { autogenerated = yes imp = 828 imp = 908 ck3 = 4884 } # Terqa, Hindanu -> SUKAYR AL-ABBAS + link = { autogenerated = yes imp = 825 ck3 = 4881 } # Magdalu -> ASH-SHAMSANIYA + link = { autogenerated = yes imp = 8249 imp = 8301 ck3 = 9533 } # Guzang, Shajing Desert -> Chaganbulage + link = { autogenerated = yes imp = 8235 ck3 = 9492 } # Yumen -> Huahai + link = { autogenerated = yes imp = 8225 ck3 = 1443 } # Yuanqu -> Karashar + link = { autogenerated = yes imp = 8219 imp = 8220 ck3 = 7460 } # Houcheng, Dong Qiemi -> Fukang + link = { autogenerated = yes imp = 8215 ck3 = 7456 ck3 = 7985 ck3 = 7986 } # Gaochangbi -> Turpan, Toksun, Bezeklik + link = { autogenerated = yes imp = 8213 ck3 = 7999 } # Miran -> Miran + link = { autogenerated = yes imp = 8211 ck3 = 7989 ck3 = 1614 } # Weili -> Kongque, TIANSHAN + link = { autogenerated = yes imp = 820 ck3 = 4878 } # Sahlala -> TALL_MAHRA + link = { autogenerated = yes imp = 808 ck3 = 5907 } # Beselatha -> AZAZ + link = { autogenerated = yes imp = 8024 imp = 8025 ck3 = 3787 } # Boloustana Pass, Petra Pass -> Servia + link = { autogenerated = yes imp = 7845 imp = 5190 ck3 = 5710 } # Ani, IMPASSIBLE TERRAIN 190 -> Camacha + link = { autogenerated = yes imp = 7828 ck3 = 5110 } # Manoia -> Stepan + link = { autogenerated = yes imp = 7818 ck3 = 121 } # Careotaia Borealis -> NEUENBURG + link = { autogenerated = yes imp = 775 imp = 816 ck3 = 5931 } # Heliaramia, Theleda -> SALAMIYA + link = { autogenerated = yes imp = 7660 imp = 7287 ck3 = 1303 } # Abad Sauvira, Impassable -> Ranikot + link = { autogenerated = yes imp = 766 imp = 767 imp = 769 imp = 763 ck3 = 5918 } # Byblos, Botrys, Tripolis, Heliopolis -> TRIPOLIS + link = { autogenerated = yes imp = 760 imp = 764 imp = 5997 ck3 = 5926 } # Iabrouda, Chamon, Antilibanus Mons -> BAALBAK + link = { autogenerated = yes imp = 7586 ck3 = 6348 } # Kuru -> KAREIMA + link = { autogenerated = yes imp = 7567 imp = 7649 ck3 = 5995 } # Arabia Deserta, (Unknown) -> AL-UDHAIB + link = { autogenerated = yes imp = 7566 ck3 = 5998 } # Arabia Deserta -> AL-QARA + link = { autogenerated = yes imp = 7564 ck3 = 6000 } # Arabia Deserta -> WAQISA + link = { autogenerated = yes imp = 7565 ck3 = 5999 } # Arabia Deserta -> AS-SUBIA + link = { autogenerated = yes imp = 7546 ck3 = 8338 } # Beilul -> NORTH_AFAR + link = { autogenerated = yes imp = 7544 ck3 = 8336 } # Karmille -> DABAHU + link = { autogenerated = yes imp = 7541 ck3 = 8391 } # Handoga -> ABBE + link = { autogenerated = yes imp = 7539 ck3 = 8304 } # D'bark -> SEMIEN + link = { autogenerated = yes imp = 7535 ck3 = 8401 } # Maphoris -> AMUD + link = { autogenerated = yes imp = 7524 ck3 = 8426 } # Macajilayn -> LAAS_QORAY + link = { autogenerated = yes imp = 7519 ck3 = 8339 } # Abasenia -> AFAR + link = { autogenerated = yes imp = 7499 ck3 = 840 } # Porsha -> Ramavati + link = { autogenerated = yes imp = 7468 imp = 5362 ck3 = 3966 } # Deori, IP 363 -> Nohta + link = { autogenerated = yes imp = 7418 ck3 = 3374 } # Brahampuri -> Jhalod + link = { autogenerated = yes imp = 7402 ck3 = 7944 ck3 = 9088 } # Kalesar -> Sadhaura, Uttarkashi + link = { autogenerated = yes imp = 7381 ck3 = 1279 } # Badaun -> Hardoi + link = { autogenerated = yes imp = 7379 ck3 = 3955 } # Brahmarchi -> Bahraich + link = { autogenerated = yes imp = 7373 ck3 = 1284 } # Sringivera -> Manikpur + link = { autogenerated = yes imp = 7366 ck3 = 3982 ck3 = 3984 } # Puskarna -> Raibania, Bahalda + link = { autogenerated = yes imp = 7352 ck3 = 810 ck3 = 821 } # Turupa -> Charaideo, Herombial + link = { autogenerated = yes imp = 7339 ck3 = 819 ck3 = 820 } # Pragjyotishpura -> Sri_Surya_Pahar, Kamakhya + link = { autogenerated = yes imp = 7338 imp = 5370 imp = 5371 ck3 = 1234 } # Deoghar, IP 371, IP 372 -> Deogarh2 + link = { autogenerated = yes imp = 7320 imp = 5364 ck3 = 907 } # Bandhavgarh, IP 365 -> Beohari + link = { autogenerated = yes imp = 7317 imp = 5359 ck3 = 1286 } # Deogarh, Vindhya -> Kherla + link = { autogenerated = yes imp = 7312 imp = 5360 ck3 = 917 } # Tundikera, IP 361 -> Barman + link = { autogenerated = yes imp = 7307 imp = 7446 ck3 = 3339 } # Sripatha, Sabalgarh -> Narwar + link = { autogenerated = yes imp = 7272 imp = 7273 imp = 7269 ck3 = 1431 } # Khanus, Poshkar, Jaxartia -> Otrar + link = { autogenerated = yes imp = 7268 imp = 7270 ck3 = 7136 } # Osht, Kashram -> Chimkent + link = { autogenerated = yes imp = 7267 ck3 = 7135 } # Araq -> Sayram + link = { autogenerated = yes imp = 7252 imp = 7255 imp = 7279 ck3 = 900 } # Lek, Palisha, Masht -> Yangikent + link = { autogenerated = yes imp = 7251 ck3 = 7126 } # Besta -> Sawran + link = { autogenerated = yes imp = 7247 imp = 7248 ck3 = 7118 } # Altinasar, Janaqala -> Telegul + link = { autogenerated = yes imp = 7246 ck3 = 901 } # Yangikent -> Jend + link = { autogenerated = yes imp = 7244 ck3 = 4392 } # Amu -> BEZDA + link = { autogenerated = yes imp = 7241 imp = 7242 ck3 = 4245 } # Artamis, Lebap -> Sayat + link = { autogenerated = yes imp = 7231 imp = 5269 ck3 = 4246 } # Burguchi, IMPASSIBLE TERRAIN 269 -> Niyaz + link = { autogenerated = yes imp = 720 imp = 721 ck3 = 5958 } # Asophon, Gerasa -> IRBID + link = { autogenerated = yes imp = 7194 ck3 = 5258 } # Konae -> Birzula + link = { autogenerated = yes imp = 7167 ck3 = 3987 ck3 = 1229 } # Yajatinagara -> Bajrakot, Khinjali + link = { autogenerated = yes imp = 7162 ck3 = 7927 } # Yetavana -> Wun + link = { autogenerated = yes imp = 7156 ck3 = 7906 } # Sripratava -> Indur + link = { autogenerated = yes imp = 7137 imp = 5319 ck3 = 1228 } # Surada, IP 320 -> Swetakapura + link = { autogenerated = yes imp = 7136 ck3 = 9653 } # Bhawanipatna -> Asurgarh + link = { autogenerated = yes imp = 7135 ck3 = 3999 } # Atavi -> Umerkote + link = { autogenerated = yes imp = 7099 imp = 7133 ck3 = 7908 } # Goddvara, Kotilingala -> Palampet + link = { autogenerated = yes imp = 7067 ck3 = 7930 } # Ramagiri -> Bhandara + link = { autogenerated = yes imp = 7064 ck3 = 7900 } # Pitangalva -> Jhodga + link = { autogenerated = yes imp = 7053 ck3 = 7887 } # Sannathi -> Kembavi + link = { autogenerated = yes imp = 7017 ck3 = 7848 } # Ganga -> Moyar + link = { autogenerated = yes imp = 7011 ck3 = 7866 } # Triparvata -> Shravana_Belgola + link = { autogenerated = yes imp = 7007 ck3 = 7864 } # Nandagiri -> Parivi + link = { autogenerated = yes imp = 6941 imp = 6943 ck3 = 1116 } # Selour, Kathan -> Tenkasi + link = { autogenerated = yes imp = 6826 imp = 6850 imp = 6852 imp = 7220 imp = 6059 ck3 = 3398 } # Andhau, Sura, Samarabriva, Saraswata, Abhiria -> Amarkot + link = { autogenerated = yes imp = 6783 imp = 6787 ck3 = 7146 } # Kulan, Narin -> Merke + link = { autogenerated = yes imp = 6782 ck3 = 7147 ck3 = 7145 } # Ashpara -> Pishkek, Ashpara + link = { autogenerated = yes imp = 6778 imp = 6781 ck3 = 7154 } # Balasaghun, Yul -> Balasaghun + link = { autogenerated = yes imp = 6777 imp = 6792 ck3 = 7140 } # Uvikat, Isfijab -> Awliya-Ata + link = { autogenerated = yes imp = 6772 ck3 = 7962 ck3 = 7961 } # Irkeshtam -> Kona_Xahar, Yengi_Xahar + link = { autogenerated = yes imp = 6768 ck3 = 4355 ck3 = 4356 } # Kokcha -> Badakhshan, Jerm + link = { autogenerated = yes imp = 6763 ck3 = 4365 ck3 = 2702 } # Bulaq -> Murghab, PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 6752 ck3 = 9601 } # Endere -> Waxxari + link = { autogenerated = yes imp = 6726 imp = 5391 ck3 = 4037 } # Mansur, Kalana -> Hesare Taq + link = { autogenerated = yes imp = 6724 ck3 = 4237 } # Teyen -> Shawashkan + link = { autogenerated = yes imp = 6699 ck3 = 4379 ck3 = 4367 } # Marouka -> Hulbuk, Lower Karran + link = { autogenerated = yes imp = 6685 ck3 = 4234 ck3 = 4235 } # Alan -> Sinj, Jiranj + link = { autogenerated = yes imp = 6684 ck3 = 4238 ck3 = 4236 } # Haroba -> Merv, Kharad + link = { autogenerated = yes imp = 6671 imp = 7226 imp = 5263 ck3 = 4008 } # Antentia, Sirake, Sogdian Steppe -> Dandanqan + link = { autogenerated = yes imp = 6668 imp = 6683 ck3 = 4239 } # Alexandria Margiana, Erbend -> Kushmaihan + link = { autogenerated = yes imp = 6661 ck3 = 4011 } # Dara -> Maihana + link = { autogenerated = yes imp = 6653 ck3 = 4221 } # Komiana -> Marv-ar-Rud + link = { autogenerated = yes imp = 6645 ck3 = 4228 } # Tamazan -> Darmashan + link = { autogenerated = yes imp = 6644 ck3 = 4226 ck3 = 4229 } # Artousia -> Ahanjaran, Bashin + link = { autogenerated = yes imp = 6643 ck3 = 4224 ck3 = 4227 } # Barzaura -> Khasht, Ghur + link = { autogenerated = yes imp = 6636 imp = 6631 ck3 = 4231 } # Tambyziana, Daroideia -> Dih-e-Khalaf + link = { autogenerated = yes imp = 6628 imp = 6642 ck3 = 4232 } # Nysa Paropamisadarum, Paropamisia -> Ribat-e-Karyan + link = { autogenerated = yes imp = 6585 ck3 = 4279 } # Taftan -> Ladhir + link = { autogenerated = yes imp = 6582 imp = 5248 ck3 = 4263 } # Tarucano, Karmanian Mountains -> Manujan + link = { autogenerated = yes imp = 6578 imp = 6583 ck3 = 4267 } # Parsicia, Cabulia -> South Jaz Murian + link = { autogenerated = yes imp = 6575 imp = 6576 imp = 6577 ck3 = 4275 } # Basma, Abis, Parira -> North Jaz Murian + link = { autogenerated = yes imp = 6569 ck3 = 4290 ck3 = 4291 } # Gari -> Qarnin, Khawaj + link = { autogenerated = yes imp = 6564 ck3 = 4207 } # Chaurina -> Pushang + link = { autogenerated = yes imp = 6559 ck3 = 4225 } # Artacabane -> Firuzkuh + link = { autogenerated = yes imp = 6548 ck3 = 4494 } # Itua -> RUDAN + link = { autogenerated = yes imp = 6527 ck3 = 3403 } # Morontobara -> Kolachi + link = { autogenerated = yes imp = 6522 imp = 6523 imp = 6061 ck3 = 4285 } # Mosarna, Bagisara, Gedrosia -> Kiz + link = { autogenerated = yes imp = 6520 imp = 6521 imp = 6063 ck3 = 4286 } # Mephas, Barna, Parecaniana -> Jiwani + link = { autogenerated = yes imp = 6513 imp = 6530 ck3 = 4272 } # Pura, Paesi -> Bampur + link = { autogenerated = yes imp = 6511 ck3 = 4097 } # Naserge -> Muralzijan + link = { autogenerated = yes imp = 6508 imp = 5447 ck3 = 4051 } # Pyctis, IMPASSABLE -> Nain + link = { autogenerated = yes imp = 6503 ck3 = 4061 } # Pagros -> Biyadaq + link = { autogenerated = yes imp = 6500 imp = 5250 ck3 = 4058 } # Ange, IMPASSIBLE TERRAIN 250 -> Wandah + link = { autogenerated = yes imp = 6484 ck3 = 4706 ck3 = 4698 ck3 = 4707 } # Ifran -> MRIRA, TAGRAGRA, WAZEQQUR + link = { autogenerated = yes imp = 6481 imp = 6486 imp = 6487 imp = 6489 imp = 6488 ck3 = 4747 } # Haouzia, Ziaida, Mdakra, Mzamza, Middle Atlas -> TIT-AN-WAGURRAMT + link = { autogenerated = yes imp = 6470 ck3 = 4710 } # Rob'a -> DAI + link = { autogenerated = yes imp = 6343 imp = 6452 imp = 6453 imp = 6454 ck3 = 1472 } # LAKE, LAKE, LAKE, LAKE -> MIDDLE SWEDEN LAKES + link = { autogenerated = yes imp = 6295 ck3 = 5053 } # Orona -> Klevan + link = { autogenerated = yes imp = 6255 ck3 = 5081 } # Donar -> Lizhensk + link = { autogenerated = yes imp = 624 imp = 9922 imp = 9923 ck3 = 6346 } # Mambil, Meragh, Hosh -> GRNETTI + link = { autogenerated = yes imp = 620 imp = 621 imp = 623 ck3 = 6360 } # Arcas, Tergendum, Dumuna -> DIFFAR + link = { autogenerated = yes imp = 614 imp = 617 ck3 = 6344 } # Bagada, Breues -> OLD-DONGOLA + link = { autogenerated = yes imp = 612 imp = 613 ck3 = 6342 } # Direla, Patigga -> KEMNA + link = { autogenerated = yes imp = 608 imp = 7582 imp = 7583 ck3 = 6340 } # Paroa, Soleb, Kedurma -> DELGO + link = { autogenerated = yes imp = 601 ck3 = 6334 } # Serra -> QASR_IBRIM + link = { autogenerated = yes imp = 597 ck3 = 6332 } # Tene -> KOROSKO + link = { autogenerated = yes imp = 595 ck3 = 6329 ck3 = 6330 } # Kortia -> QURTA, IKHMINDI + link = { autogenerated = yes imp = 594 imp = 596 ck3 = 6331 } # Tachampso, Aramum -> SAYALA + link = { autogenerated = yes imp = 590 ck3 = 6119 } # Novum Hydreuma -> CENTRAL_JBL_QUZLUM + link = { autogenerated = yes imp = 5845 ck3 = 643 } # Oceanus Sarmaticus -> Arkona Basin + link = { autogenerated = yes imp = 5726 imp = 5727 imp = 5728 imp = 5749 imp = 5751 imp = 5752 imp = 5753 ck3 = 715 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Galway Bay + link = { autogenerated = yes imp = 5725 imp = 5747 imp = 5748 imp = 5750 ck3 = 722 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Dingle Bay + link = { autogenerated = yes imp = 5694 imp = 5704 ck3 = 726 } # Mare Britannicum, Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 5690 imp = 5692 imp = 5695 imp = 5702 imp = 5746 imp = 7856 ck3 = 991 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Mare Verginium, Oceanus Atlanticus, SEAZONE IMPASSABLE WASTELAND -> Celtic Sea + link = { autogenerated = yes imp = 568 imp = 569 imp = 572 ck3 = 6077 } # Petemout, Diospolis Magna, Hermonthis -> QUS + link = { autogenerated = yes imp = 5629 ck3 = 9187 ck3 = 9185 } # Koryi -> Dinggye, Tingri + link = { autogenerated = yes imp = 5624 imp = 5958 ck3 = 9186 } # Nyentse, Himalayan Highland -> Shelkar + link = { autogenerated = yes imp = 5609 ck3 = 9066 } # Tarok -> Coqen + link = { autogenerated = yes imp = 5608 ck3 = 9204 ck3 = 9217 ck3 = 9222 } # Dangra -> Kunglung, Ladoi, Gyagog + link = { autogenerated = yes imp = 5604 ck3 = 1440 } # Gondogoro Pass -> Khotan + link = { autogenerated = yes imp = 5603 ck3 = 9609 } # Gondogoro Pass -> Bugaiwilik + link = { autogenerated = yes imp = 5602 ck3 = 9613 ck3 = 9034 } # Gondogoro Pass -> Yuetgan, Sumnal + link = { autogenerated = yes imp = 5600 imp = 6751 imp = 4490 ck3 = 7951 } # Parsni, Varana Gandhara, Baziria -> Kalam_TARIM + link = { autogenerated = yes imp = 557 imp = 559 ck3 = 6072 } # Panopolis, Ptolemais Hermeiou -> IKHMIN + link = { autogenerated = yes imp = 5538 imp = 5539 ck3 = 6093 } # Gargara, Zethin -> SIWA + link = { autogenerated = yes imp = 5504 imp = 5503 ck3 = 6083 } # Hibis, Gibra -> KHARGA + link = { autogenerated = yes imp = 5495 imp = 5916 ck3 = 7075 } # Gyranchi, Chevka -> Sam + link = { autogenerated = yes imp = 5466 imp = 5470 ck3 = 7083 } # Shakthara, Vyenim -> Porsu-Burun + link = { autogenerated = yes imp = 5449 imp = 5450 imp = 4406 ck3 = 3968 } # Maru Desert, Maru Desert, Rohtak -> Sakarai + link = { autogenerated = yes imp = 5444 ck3 = 4064 } # Lut Desert -> Khusf + link = { autogenerated = yes imp = 5439 imp = 6501 imp = 6502 imp = 6505 ck3 = 4057 } # Kavir Desert, Palitas, Khur, Bazyab -> Jarmaq + link = { autogenerated = yes imp = 5437 ck3 = 4042 } # Pylai Parthias -> Nasa + link = { autogenerated = yes imp = 543 ck3 = 6065 } # Neiloupolis -> ATFIH + link = { autogenerated = yes imp = 5413 ck3 = 6149 } # Liwa -> AL-JIWA + link = { autogenerated = yes imp = 5406 ck3 = 6154 ck3 = 6153 } # Urayarah -> AL-HASA, AL-MUSHAQQAR + link = { autogenerated = yes imp = 5400 imp = 5401 ck3 = 6162 } # Mahzul, Hamatiyat -> AR-RUQAII + link = { autogenerated = yes imp = 5399 imp = 944 ck3 = 6025 } # Hawmah, Akkaz -> HIFAIR + link = { autogenerated = yes imp = 539 imp = 540 ck3 = 6060 } # Krokodilopolis, Dionysias -> AL-FAYYUM + link = { autogenerated = yes imp = 535 ck3 = 6036 } # Ostrakine -> WARRADA + link = { autogenerated = yes imp = 533 ck3 = 6048 } # Chemmis -> BURULLUS + link = { autogenerated = yes imp = 514 imp = 527 ck3 = 6056 } # Nikiou, Atarbechis-Aphroditopolis -> ABU_GHALIB + link = { autogenerated = yes imp = 512 imp = 536 ck3 = 6057 } # Letopolis, Babylon -> GIZA + link = { autogenerated = yes imp = 51 ck3 = 8752 } # Laus -> Belvedere + link = { autogenerated = yes imp = 502 imp = 505 ck3 = 6039 } # Heroopolis, Klysma -> QUZLUM + link = { autogenerated = yes imp = 501 imp = 507 ck3 = 6042 } # Heliopolis, Leonton Polis -> CAIRO + link = { autogenerated = yes imp = 500 imp = 537 imp = 538 ck3 = 6066 } # Memphis, Panarachthis, Aphroditopolis -> HULWAN-CAIRO + link = { autogenerated = yes imp = 4998 ck3 = 4317 } # Shirga -> Uram + link = { autogenerated = yes imp = 4992 ck3 = 4316 } # Portae -> Firrim + link = { autogenerated = yes imp = 4991 ck3 = 4318 ck3 = 4315 ck3 = 12886 } # Rhagai -> Dumbawand, Larijan, alborz_mountains + link = { autogenerated = yes imp = 4988 imp = 5221 ck3 = 4325 } # Aganzana, IMPASSIBLE TERRAIN 221 -> Zanjan + link = { autogenerated = yes imp = 498 ck3 = 3674 ck3 = 3652 } # Scaptopara -> Rila, Scaptopara + link = { autogenerated = yes imp = 4976 imp = 4979 ck3 = 4114 } # Paraetecene, Sidices -> Abta'a + link = { autogenerated = yes imp = 4971 imp = 5233 ck3 = 4262 } # Sabatika, Kossioia -> Alishtar + link = { autogenerated = yes imp = 4970 ck3 = 4785 ck3 = 4787 } # Zaranis -> ARIVAJAN, SIRAVAN + link = { autogenerated = yes imp = 4969 ck3 = 4789 ck3 = 4786 } # Andamaska -> BAKUSAYA, AS-SAIMARA + link = { autogenerated = yes imp = 4967 imp = 5235 ck3 = 4260 } # Sabandan, IMPASSIBLE TERRAIN 235 -> Andamish + link = { autogenerated = yes imp = 4966 ck3 = 4261 } # Khaydalu -> Saburkhawasht + link = { autogenerated = yes imp = 4964 imp = 5240 ck3 = 4115 } # Malaver, IMPASSIBLE TERRAIN 240 -> Karaj Abu Dulaf + link = { autogenerated = yes imp = 4951 ck3 = 4119 } # Pasargadai -> Mayin + link = { autogenerated = yes imp = 4950 imp = 4953 ck3 = 4304 } # Persides, Croatis -> Khubadan + link = { autogenerated = yes imp = 4949 ck3 = 4120 } # Kaupirrish -> Abraj + link = { autogenerated = yes imp = 493 ck3 = 3634 } # Hyperperakion -> Haskovo + link = { autogenerated = yes imp = 4928 ck3 = 5023 } # Leptidava -> Ungheni + link = { autogenerated = yes imp = 4906 ck3 = 3915 } # Petrodava -> Borsa + link = { autogenerated = yes imp = 4884 ck3 = 3912 } # Acronodumia -> Nagykaroly + link = { autogenerated = yes imp = 486 ck3 = 3637 } # Viamata -> Kopsis + link = { autogenerated = yes imp = 4797 ck3 = 4178 } # Shirajish -> Kubanjan + link = { autogenerated = yes imp = 4745 imp = 4746 imp = 4747 imp = 5683 imp = 5685 imp = 5688 imp = 5689 imp = 7855 ck3 = 8623 } # Mare Cantabrum, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, SEAZONE IMPASSABLE WASTELAND -> The Atlantic + link = { autogenerated = yes imp = 4727 imp = 4730 imp = 4731 imp = 4732 imp = 4734 imp = 4735 ck3 = 980 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Coast of Portugal + link = { autogenerated = yes imp = 4713 imp = 6496 ck3 = 6190 } # Achroua, South Nabatean Desert -> AL-AQRA + link = { autogenerated = yes imp = 4672 imp = 4673 imp = 4674 ck3 = 6300 } # Labaeta, Cardava, Karna -> WABAR + link = { autogenerated = yes imp = 4670 imp = 4671 ck3 = 6243 } # Phoda, Anagrana -> NAJRAN + link = { autogenerated = yes imp = 4667 imp = 4668 ck3 = 6299 } # Athroula, Caminacum -> MAIN + link = { autogenerated = yes imp = 4661 imp = 4676 imp = 4677 ck3 = 6296 } # Marimatha, Shabwa, Harai -> SHABWA + link = { autogenerated = yes imp = 466 ck3 = 3705 } # Oichalia Aitolias -> Agrafa + link = { autogenerated = yes imp = 4637 ck3 = 6271 } # Devada -> KAMARAN + link = { autogenerated = yes imp = 4623 imp = 4624 ck3 = 6212 } # Iathrippa, Aloure -> AL-MADINA + link = { autogenerated = yes imp = 4617 imp = 4618 ck3 = 6208 } # Mochoura, Thumna -> DHUL-MARWA + link = { autogenerated = yes imp = 4612 imp = 7647 ck3 = 6186 } # Relicta, Impassable -> SARJ + link = { autogenerated = yes imp = 4592 imp = 4725 imp = 4726 imp = 4728 imp = 4729 ck3 = 8619 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Coast of Portugal + link = { autogenerated = yes imp = 459 ck3 = 3701 } # Leukas -> Vonitsa + link = { autogenerated = yes imp = 458 imp = 7801 ck3 = 3698 } # Chaleion, Corax Mons -> Lidoriki + link = { autogenerated = yes imp = 4568 imp = 7616 ck3 = 5298 } # Palaia Achaia, Tmakrat -> Ulmi + link = { autogenerated = yes imp = 455 imp = 5075 ck3 = 3520 } # Dimalion, IMPASSIBLE TERRAIN 075 -> Valamara + link = { autogenerated = yes imp = 4523 ck3 = 5012 } # Kremniskoi -> Chilia + link = { autogenerated = yes imp = 4506 ck3 = 3926 } # Napoca -> Koloszvar + link = { autogenerated = yes imp = 4450 ck3 = 1421 } # Kapilavastu -> Sravasti + link = { autogenerated = yes imp = 4428 ck3 = 905 } # Prayaga -> Kantit + link = { autogenerated = yes imp = 4415 ck3 = 3477 } # Sirsa -> Dadrewa + link = { autogenerated = yes imp = 4412 ck3 = 3449 } # Karnal -> Mirath + link = { autogenerated = yes imp = 4407 ck3 = 3456 } # Isukara -> Narabhata + link = { autogenerated = yes imp = 4375 ck3 = 1374 } # Mesai -> Rojhan + link = { autogenerated = yes imp = 4374 ck3 = 3391 ck3 = 1336 } # Mousikanoi -> Bhatiya, Vijnot + link = { autogenerated = yes imp = 4368 ck3 = 4487 } # Avanta -> QANDABIL + link = { autogenerated = yes imp = 4366 imp = 6060 ck3 = 1372 } # Kokondai, Siwi -> Badah + link = { autogenerated = yes imp = 4360 ck3 = 1333 } # Sarophages -> Siwistan + link = { autogenerated = yes imp = 436 imp = 5058 ck3 = 3733 } # Megalopolis, IMPASSIBLE TERRAIN 058 -> Karytaina + link = { autogenerated = yes imp = 4355 ck3 = 3404 } # Sindhumana -> Sharusan + link = { autogenerated = yes imp = 4352 ck3 = 1175 } # Roruka -> Aror + link = { autogenerated = yes imp = 4341 imp = 4345 imp = 5348 ck3 = 1190 } # Akhnur, Jhelum, Carmanian Highland -> Gurjaratra + link = { autogenerated = yes imp = 4334 imp = 4338 imp = 4343 ck3 = 3445 } # Harvan, Anantanaga, Budia -> Amaresvara + link = { autogenerated = yes imp = 4332 imp = 4333 imp = 4339 ck3 = 1161 } # Puranadisthana, Huskapura, Nandi -> Srinagara + link = { autogenerated = yes imp = 4330 imp = 4384 ck3 = 3416 } # Gogaraioi, Kekayai -> Wan_Bhachran + link = { autogenerated = yes imp = 4318 ck3 = 4523 } # Apritas -> Khost + link = { autogenerated = yes imp = 4310 imp = 5103 ck3 = 3618 } # Gelbous, Upper Thrace -> Zherkovo + link = { autogenerated = yes imp = 4301 ck3 = 4514 ck3 = 4516 } # Nagarahara -> KUNAR, NAGARAHARA + link = { autogenerated = yes imp = 43 ck3 = 2615 ck3 = 789 } # Compsa -> MELFI, Southern Apennine Mountains + link = { autogenerated = yes imp = 4286 ck3 = 3938 } # Blandiana -> Alvinc + link = { autogenerated = yes imp = 4285 ck3 = 3933 } # Petris -> Deva + link = { autogenerated = yes imp = 4262 imp = 5109 ck3 = 4976 } # Ad Pannonios, IMPASSIBLE TERRAIN 109 -> Mehadia + link = { autogenerated = yes imp = 4247 imp = 4251 ck3 = 3690 } # Erite, Parthenopolis -> Provadiya + link = { autogenerated = yes imp = 4244 imp = 5107 ck3 = 3684 } # Tylis, IMPASSIBLE TERRAIN 107 -> Gabrovo + link = { autogenerated = yes imp = 4241 ck3 = 3687 } # Appiara -> Hrazgrad + link = { autogenerated = yes imp = 4229 ck3 = 3681 } # Longinopara -> Samundzhievo + link = { autogenerated = yes imp = 4222 imp = 5095 ck3 = 3662 } # Turres, IMPASSIBLE TERRAIN 095 -> Pirot + link = { autogenerated = yes imp = 4202 ck3 = 3669 } # Dasminium -> Petrus + link = { autogenerated = yes imp = 4185 imp = 4187 ck3 = 3608 } # Stravianis, Mursella -> Orahovica + link = { autogenerated = yes imp = 4143 ck3 = 3119 } # Confluentia Latobicorum -> FURSTENFELD + link = { autogenerated = yes imp = 4133 ck3 = 3977 } # Salla -> Szentgotthard + link = { autogenerated = yes imp = 4116 imp = 5096 ck3 = 3663 } # Ballanstra, IMPASSIBLE TERRAIN 096 -> Breznik + link = { autogenerated = yes imp = 4113 ck3 = 3659 ck3 = 3593 } # Vindenis -> Novo Brdo, Podujevo + link = { autogenerated = yes imp = 4109 ck3 = 3654 ck3 = 3658 } # Anausaro -> Bosilegrad, Vranje + link = { autogenerated = yes imp = 4105 ck3 = 3582 ck3 = 3559 ck3 = 3583 } # Pecina -> Gorazde, Obalj, Hotca + link = { autogenerated = yes imp = 4094 ck3 = 3722 ck3 = 3723 } # Gabuleum -> Kukes, Peshkopi + link = { autogenerated = yes imp = 4092 ck3 = 3579 } # Ad Picarias -> Danj + link = { autogenerated = yes imp = 4089 ck3 = 469 } # Meteon -> Zeta + link = { autogenerated = yes imp = 408 imp = 5073 ck3 = 3640 } # Arnisa, IMPASSIBLE TERRAIN 073 -> Kastoria + link = { autogenerated = yes imp = 4079 ck3 = 3525 ck3 = 3527 } # Stanecli -> Bobovac, Visoki + link = { autogenerated = yes imp = 4078 ck3 = 3526 ck3 = 3524 } # Bercellum -> Travnik, Vranduk + link = { autogenerated = yes imp = 4072 imp = 4074 imp = 5088 ck3 = 3516 } # Aemate, Servitium, IMPASSIBLE TERRAIN 088 -> Vrbaski Grad + link = { autogenerated = yes imp = 4044 ck3 = 3534 ck3 = 3098 } # Crucium -> Samobor, RUDOLFSWERDE + link = { autogenerated = yes imp = 4023 ck3 = 2523 ck3 = 3095 } # Tarsatica -> RIJEKA, RIBNICA + link = { autogenerated = yes imp = 397 ck3 = 3651 } # Stobi -> Prosek + link = { autogenerated = yes imp = 396 imp = 5069 ck3 = 3796 } # Pelinna, IMPASSIBLE TERRAIN 069 -> Stagoi + link = { autogenerated = yes imp = 3914 imp = 3939 ck3 = 4161 } # Coridorgis, Budorgis -> Caslav + link = { autogenerated = yes imp = 3888 ck3 = 2805 } # Leuphana -> AHRENSBURG + link = { autogenerated = yes imp = 3886 ck3 = 69 } # Herulia Borealis -> SLAGELSE + link = { autogenerated = yes imp = 384 ck3 = 3781 } # Gortynia -> Maglen + link = { autogenerated = yes imp = 3723 ck3 = 2695 } # Bingium -> BOPPARD + link = { autogenerated = yes imp = 371 ck3 = 3770 } # Euporia -> Siderokastron + link = { autogenerated = yes imp = 3677 ck3 = 2115 } # Asse -> BRUGES + link = { autogenerated = yes imp = 3672 ck3 = 3105 ck3 = 3113 } # Noreia -> KLAGENFURT, SANKT VEIT + link = { autogenerated = yes imp = 3668 imp = 3671 ck3 = 3099 } # Teurnia, Virunum -> VILLACH + link = { autogenerated = yes imp = 3667 ck3 = 3137 } # Aguntum -> OBERVELLACH + link = { autogenerated = yes imp = 3666 ck3 = 2976 ck3 = 2948 ck3 = 2953 } # Mastiacum -> KITZBUHEL, TOLZ, KUFSTEIN + link = { autogenerated = yes imp = 3659 ck3 = 2498 } # Vadena -> BOLZANO + link = { autogenerated = yes imp = 3658 imp = 3656 ck3 = 2954 } # Statio Maiensis, Alpis Superior -> BOZEN + link = { autogenerated = yes imp = 3655 ck3 = 2950 ck3 = 2790 } # Tiralia -> INNSBRUCK, HOHENSCHWANGAU + link = { autogenerated = yes imp = 3646 ck3 = 3133 } # Tergolape -> WELS + link = { autogenerated = yes imp = 3636 ck3 = 2053 ck3 = 2787 } # Brigantium -> SANKT GALLEN, BREGENZ + link = { autogenerated = yes imp = 3621 imp = 3623 imp = 5044 ck3 = 2034 } # Venetonimagus, Boutae, IMPASSIBLE TERRAIN 044 -> ANNECY + link = { autogenerated = yes imp = 3619 ck3 = 2052 ck3 = 2788 } # Clunia Raetia -> FARDUZES, WERDENBURG + link = { autogenerated = yes imp = 3617 ck3 = 2055 } # Clavenna -> CHUR + link = { autogenerated = yes imp = 3614 ck3 = 2048 ck3 = 2047 ck3 = 3107 } # Brenodunum -> LUCERNE, THUN, ENGELBERG + link = { autogenerated = yes imp = 3590 imp = 5119 ck3 = 2502 } # Auraei, IMPASSIBLE TERRAIN 119 -> LESSINIA + link = { autogenerated = yes imp = 3574 ck3 = 2488 ck3 = 2487 } # Clastidium -> PIACENZA, VOGHERA + link = { autogenerated = yes imp = 3567 ck3 = 2479 } # Plumbia -> VARESE + link = { autogenerated = yes imp = 3560 imp = 3611 ck3 = 2040 } # Bodincomagos, Salassia -> IVREA + link = { autogenerated = yes imp = 3534 imp = 3537 imp = 5025 ck3 = 2029 } # Scingomagus, Maurienna, IMPASSIBLE TERRAIN 025 -> SAINT-MICHEL-DE-MAURIENNE + link = { autogenerated = yes imp = 3532 imp = 5024 ck3 = 8718 } # Catorissium, IMPASSIBLE TERRAIN 024 -> Briancon + link = { autogenerated = yes imp = 3510 imp = 3511 imp = 3512 imp = 5054 ck3 = 2649 } # Saone, Alouka, Rhopikon, IMPASSIBLE TERRAIN 054 -> CALVI + link = { autogenerated = yes imp = 3509 ck3 = 2650 } # Pauka -> AJACCIO + link = { autogenerated = yes imp = 3498 imp = 3501 imp = 3502 imp = 5055 ck3 = 2663 } # Makopsis, Luguido, Lesa, IMPASSIBLE TERRAIN 055 -> ARDARA + link = { autogenerated = yes imp = 3495 ck3 = 2661 } # Hydata -> ISILI + link = { autogenerated = yes imp = 3471 imp = 3472 ck3 = 4072 } # Nayband, Denband -> Naband + link = { autogenerated = yes imp = 347 ck3 = 3764 } # Bisanthe -> Raidestos + link = { autogenerated = yes imp = 3464 imp = 6542 ck3 = 4015 } # Taua, Aktene -> Zawa + link = { autogenerated = yes imp = 3461 imp = 6602 ck3 = 4067 } # Eshgabad, Choana -> Bejestan + link = { autogenerated = yes imp = 3456 imp = 3457 imp = 4995 ck3 = 4026 } # Tiras, Choatras, Thara -> Damghan + link = { autogenerated = yes imp = 3455 ck3 = 4025 ck3 = 4024 } # Deshrae -> Bistum, Biyar + link = { autogenerated = yes imp = 3443 imp = 6509 ck3 = 4047 } # Siacus, Badroud -> Qashan + link = { autogenerated = yes imp = 3422 imp = 5244 ck3 = 4096 } # Nepista, IMPASSIBLE TERRAIN 244 -> Shahr-e-Babak + link = { autogenerated = yes imp = 3420 ck3 = 4099 } # Kalmand -> Qaryat al-Asad + link = { autogenerated = yes imp = 3411 ck3 = 4091 } # Farsir -> Ruyan Jirufti + link = { autogenerated = yes imp = 3407 ck3 = 4173 } # Shiragan -> Nariz + link = { autogenerated = yes imp = 3403 imp = 3404 ck3 = 4175 } # Batthinia, Tashk -> Abade-Darabjerd + link = { autogenerated = yes imp = 3391 imp = 4983 ck3 = 4110 } # Anarus, Ushke -> Aba-Qomi + link = { autogenerated = yes imp = 3389 ck3 = 4001 } # Shiram -> Daylam + link = { autogenerated = yes imp = 3376 imp = 3377 imp = 3378 imp = 3379 ck3 = 6096 } # Selenis, Apis, Paraetonium, Kallias -> KANAIS_AL-HADID + link = { autogenerated = yes imp = 3374 imp = 3375 imp = 5350 ck3 = 6097 } # Nesus, Chettaia, IP 351 -> SULLUM + link = { autogenerated = yes imp = 3368 imp = 3369 imp = 3370 imp = 3371 imp = 3372 imp = 3373 imp = 9970 imp = 6499 ck3 = 6098 } # Batrachos, Gonia, Antipyrgos, Kyrthanion, Menelaos, Catabathmus Maior, Shaqiq, More Libyan Desert -> TOBRUK + link = { autogenerated = yes imp = 3345 imp = 5993 ck3 = 6102 } # Chorotus, Cyrenaica -> WADI MASUS + link = { autogenerated = yes imp = 3343 imp = 9950 imp = 9951 imp = 8064 ck3 = 6108 } # Corniclanum, Bu Athla, Sahabi, Fura -> JAKHARRAD + link = { autogenerated = yes imp = 3340 imp = 3341 imp = 3342 ck3 = 4551 } # Mendrion, Astrochonda, Kainon -> AJADABIYA + link = { autogenerated = yes imp = 3337 imp = 3338 imp = 3339 imp = 9955 imp = 5992 ck3 = 4550 } # Digdida Selorum, Arae Philaenorum, Automalax, Jafr, Desert -> AL-AGHAILA + link = { autogenerated = yes imp = 3321 imp = 632 ck3 = 6356 } # Rocat, Abale -> ATBARA + link = { autogenerated = yes imp = 3317 ck3 = 6397 } # Attrah -> KAMLIN + link = { autogenerated = yes imp = 3310 imp = 8063 ck3 = 6366 } # Ameta, Tulih -> WAD_HAMID + link = { autogenerated = yes imp = 3309 ck3 = 2226 ck3 = 2227 } # Canniaco -> RODEZ, MARVEJOLS + link = { autogenerated = yes imp = 3301 ck3 = 4568 } # Sabratha -> SABRATHA + link = { autogenerated = yes imp = 3298 imp = 3299 imp = 3300 ck3 = 4561 } # Zouchis, Pisida, Locri -> ZUWARA + link = { autogenerated = yes imp = 3236 imp = 3238 imp = 3239 imp = 3240 imp = 3241 imp = 8142 ck3 = 4592 } # Assuras, Zama Regia, Uzappa, Seressi, Furnos Maius, Africa Impassable -> JALULA + link = { autogenerated = yes imp = 3218 imp = 3231 imp = 7640 ck3 = 4629 } # Tipasa, Pagus Malarensium, Caspica -> TUBURSHIQ + link = { autogenerated = yes imp = 3212 imp = 3273 imp = 8146 ck3 = 4595 } # Aquae Regiae, Aquae Casae, Africa Impassable -> RAQQADA + link = { autogenerated = yes imp = 32 imp = 5006 ck3 = 2607 } # Bovianum, IMPASSIBLE TERRAIN 006 -> ISERNIA + link = { autogenerated = yes imp = 3169 imp = 3187 imp = 3176 imp = 5366 ck3 = 4622 } # Badias, Midili, Aurasius Inferior, Western Musalamia -> BADIS + link = { autogenerated = yes imp = 3136 imp = 3137 imp = 5154 ck3 = 4648 } # Ausum, Bessemium, IMPASSIBLE TERRAIN 154 -> MEDEA + link = { autogenerated = yes imp = 3128 imp = 3129 imp = 3130 imp = 3131 ck3 = 4762 } # Phruraesius Mons, Thanaramusa Castra, Rapidum, Auzia -> SERSOU + link = { autogenerated = yes imp = 3112 imp = 3114 imp = 3115 imp = 3117 imp = 3119 ck3 = 4654 } # Castra Germanorum, Oppidum Definum, Zucchabar, Sufasar, Lambdia -> MILIYANA + link = { autogenerated = yes imp = 3105 imp = 3127 imp = 5151 ck3 = 4658 } # Columnata, Cinnaba Mons, Atlas -> AL-'UBBAD + link = { autogenerated = yes imp = 3103 ck3 = 4660 } # Breucorum -> QALA'A IBN SALAMA + link = { autogenerated = yes imp = 3098 ck3 = 4657 } # Aquae Sirenses -> AL-GABAL + link = { autogenerated = yes imp = 3096 imp = 3097 imp = 3099 imp = 5987 ck3 = 4663 } # Tasaccora, Lucu, Ala Miliaria, Maurian Plateau -> MUASKAR + link = { autogenerated = yes imp = 3081 ck3 = 4696 } # Visum Montis -> SUBU + link = { autogenerated = yes imp = 3053 ck3 = 2724 } # Concordia -> WEISSENBURG + link = { autogenerated = yes imp = 3019 ck3 = 2717 } # Argentovaria -> COLMAR + link = { autogenerated = yes imp = 3014 ck3 = 2077 } # Portus Albucinus -> VESOUL + link = { autogenerated = yes imp = 2945 imp = 2951 imp = 2952 ck3 = 1403 } # Sinus Gangeticus, Mare Erythraeum, Sinus Gangeticus -> Bay of Bengal + link = { autogenerated = yes imp = 292 imp = 293 imp = 295 imp = 7752 ck3 = 5545 } # Sardis, Myloukome, Hypaipa, Tmolus Mons -> Sardes + link = { autogenerated = yes imp = 2824 imp = 2828 imp = 2831 imp = 2833 imp = 2834 imp = 2835 imp = 2837 imp = 2838 imp = 2840 imp = 2841 imp = 2843 imp = 2844 imp = 2869 imp = 2871 imp = 2872 imp = 2873 imp = 2874 imp = 2875 imp = 2876 imp = 2877 imp = 2878 imp = 2879 imp = 2880 imp = 2881 imp = 2882 imp = 2883 imp = 2884 imp = 2885 imp = 2886 imp = 2887 imp = 2888 imp = 2889 imp = 2890 imp = 2891 imp = 2892 imp = 2894 imp = 2903 imp = 2904 imp = 2905 imp = 2906 imp = 2907 imp = 2908 imp = 2909 imp = 2910 imp = 2911 imp = 2913 imp = 2914 imp = 2915 imp = 2917 imp = 2918 imp = 2920 imp = 2921 imp = 2922 imp = 2923 imp = 2925 imp = 2929 imp = 2930 imp = 2931 imp = 2932 imp = 7847 imp = 7848 imp = 7849 ck3 = 1467 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, SEAZONE IMPASSABLE WASTELAND, SEAZONE IMPASSABLE WASTELAND, SEAZONE IMPASSABLE WASTELAND -> INDIAN OCEAN TI + link = { autogenerated = yes imp = 279 imp = 285 imp = 298 imp = 7924 ck3 = 5531 } # Elaea, Kyme, Aigai, Pergamon Mountains -> Phocaea + link = { autogenerated = yes imp = 2780 imp = 4591 imp = 4598 imp = 4599 imp = 7853 ck3 = 981 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, SEAZONE IMPASSABLE WASTELAND -> Gulf of Cadiz + link = { autogenerated = yes imp = 2615 imp = 2622 imp = 6418 imp = 6436 ck3 = 8666 } # Sinus Thermaeus, Mare Aegaeum, Sinus Thermaeus, Mare Aegaeum -> Aegean Sea + link = { autogenerated = yes imp = 2587 ck3 = 946 } # Mare Lycium -> Gulf of Antalya + link = { autogenerated = yes imp = 2497 ck3 = 2387 } # Nasium -> VAUCOULEURS + link = { autogenerated = yes imp = 2486 ck3 = 2363 } # Lucia -> PROVINS + link = { autogenerated = yes imp = 2465 ck3 = 2328 } # Breviodurum -> VERNEUIL + link = { autogenerated = yes imp = 2458 ck3 = 2321 } # Vindocinium -> CHATEAUDUN + link = { autogenerated = yes imp = 2456 ck3 = 2270 } # Labrinum -> LE MANS + link = { autogenerated = yes imp = 2443 ck3 = 2179 } # Rotomagus -> ROUEN + link = { autogenerated = yes imp = 2431 ck3 = 2351 } # Vertillium -> TONNERRE + link = { autogenerated = yes imp = 2415 ck3 = 2341 } # Intaranum -> CHATEAU-RENARD + link = { autogenerated = yes imp = 2339 ck3 = 2293 } # Uxellodunum -> CARLAT + link = { autogenerated = yes imp = 2311 ck3 = 2063 } # Alba Helviorum -> VIVIERS + link = { autogenerated = yes imp = 2306 imp = 5046 ck3 = 3258 } # Figlinae, IMPASSIBLE TERRAIN 046 -> Annonay + link = { autogenerated = yes imp = 2300 ck3 = 2297 ck3 = 2298 } # Aquae Segetae -> FEURS, MONTBRISON + link = { autogenerated = yes imp = 2273 ck3 = 2203 } # Eleusa -> FESENSAC + link = { autogenerated = yes imp = 2264 ck3 = 3721 } # Parthos -> Hiskampis + link = { autogenerated = yes imp = 2263 imp = 5050 ck3 = 2215 } # Albiga, IMPASSIBLE TERRAIN 050 -> ALBI + link = { autogenerated = yes imp = 2169 ck3 = 8746 } # Autenia Australis -> Tuam + link = { autogenerated = yes imp = 2166 ck3 = 8749 } # Gangania -> Kincora + link = { autogenerated = yes imp = 2120 ck3 = 1709 ck3 = 1703 ck3 = 1710 ck3 = 8775 } # Caledonii -> INVERNESS, DINGWALL, BADENOCH, Urquhart + link = { autogenerated = yes imp = 2059 ck3 = 1646 } # Viroconium -> SHREWSBURY + link = { autogenerated = yes imp = 199 imp = 7920 ck3 = 5585 } # Kandara, Kandara Mountains -> Castamon + link = { autogenerated = yes imp = 1979 ck3 = 736 ck3 = 5626 } # Baka -> Lykandos, Faustinopolis + link = { autogenerated = yes imp = 1919 imp = 7962 ck3 = 5637 } # Isaura, Ano Kotradis -> Adrasos + link = { autogenerated = yes imp = 1897 imp = 1901 imp = 1904 imp = 1917 imp = 5165 ck3 = 5638 } # Kelenderis, Anemourion, Selinous Kilikias, Lakaine, IMPASSIBLE TERRAIN 165 -> Anemurium + link = { autogenerated = yes imp = 1895 imp = 1976 imp = 5176 ck3 = 5611 } # Oulnia, Kokousos, IMPASSIBLE TERRAIN 176 -> Arabissus + link = { autogenerated = yes imp = 1795 imp = 1798 imp = 1801 ck3 = 705 } # Kotyora, Kerasous, Matouasko -> Cerasus + link = { autogenerated = yes imp = 1782 imp = 1842 imp = 7980 ck3 = 5701 } # Dasteira, Zara, Pedachthoe Mountains -> Nicopolis_ARM + link = { autogenerated = yes imp = 1779 imp = 8004 ck3 = 5702 } # Olotoedariza, Analibna Mountains -> Kheranion + link = { autogenerated = yes imp = 1771 imp = 8005 ck3 = 5704 } # Analibna, Pisingara Mountains -> Kamisa + link = { autogenerated = yes imp = 1759 ck3 = 5709 } # Sper -> Speri + link = { autogenerated = yes imp = 1754 imp = 1756 imp = 5200 ck3 = 5740 } # Artahan, Artanuji, IMPASSIBLE TERRAIN 200 -> Arthanuji + link = { autogenerated = yes imp = 1752 ck3 = 5733 ck3 = 5734 } # Chorzene -> Zariskat, Kars + link = { autogenerated = yes imp = 1747 ck3 = 5713 ck3 = 680 } # Gymnias -> Mardali, Oltisi + link = { autogenerated = yes imp = 1745 imp = 5322 ck3 = 600 } # Masaitike, IP 323 -> Nicopsia + link = { autogenerated = yes imp = 1743 ck3 = 5744 } # Pityous -> Bichvinta + link = { autogenerated = yes imp = 1741 imp = 1742 ck3 = 5745 } # Dioscurias, Anakopia -> Anacopia + link = { autogenerated = yes imp = 1731 imp = 1732 imp = 5175 ck3 = 5692 } # Ophis, Hyssos, IMPASSIBLE TERRAIN 175 -> Rhizus + link = { autogenerated = yes imp = 1729 imp = 1730 imp = 1757 imp = 5192 ck3 = 5696 } # Athenai Pontikai, Rhizaion, Kaballa, IMPASSIBLE TERRAIN 192 -> Archabis + link = { autogenerated = yes imp = 1726 imp = 1727 imp = 1728 imp = 1758 ck3 = 5697 } # Apsaros, Kissa, Morthoula, Pharangion -> Petra + link = { autogenerated = yes imp = 1709 imp = 5157 ck3 = 6037 } # Naqb Jedid, Sinai -> TIH + link = { autogenerated = yes imp = 1703 imp = 1704 ck3 = 5757 } # Bori, Sarapanis -> Shorapann + link = { autogenerated = yes imp = 1691 imp = 1694 ck3 = 5742 } # Dedoplis, Surium -> Tskhinvali + link = { autogenerated = yes imp = 1683 imp = 1689 imp = 1692 ck3 = 5743 } # Aghaiani, Urbnisi, Tskhinvali -> Uplistsikhe + link = { autogenerated = yes imp = 1677 ck3 = 5758 } # Algeti -> Dmanisi + link = { autogenerated = yes imp = 1657 imp = 5435 ck3 = 676 } # Telavi, Kurus -> Telavi + link = { autogenerated = yes imp = 1646 imp = 5209 ck3 = 5781 } # Gardman, IMPASSIBLE TERRAIN 209 -> Shamkur + link = { autogenerated = yes imp = 1629 imp = 5216 ck3 = 4542 } # Shorbulaq, IMPASSIBLE TERRAIN 216 -> UNAR + link = { autogenerated = yes imp = 1626 imp = 5217 ck3 = 4544 } # Mishkinshahr, Cadusian Highland -> SARAT + link = { autogenerated = yes imp = 1620 imp = 1621 imp = 1625 imp = 5218 ck3 = 4540 } # Aharawan, Arvandj, Kuh-i Bolagh, IMPASSIBLE TERRAIN 218 -> AHAR + link = { autogenerated = yes imp = 1612 imp = 1686 imp = 5206 ck3 = 5759 } # Tbilisi, Samshvilde, IMPASSIBLE TERRAIN 206 -> Tbilisi + link = { autogenerated = yes imp = 1600 imp = 1604 imp = 506 ck3 = 6035 } # Marah, Phoinikon, Cleopatris -> QALAT_JUNDI + link = { autogenerated = yes imp = 1598 ck3 = 4784 } # Bagistana -> BISUTUN + link = { autogenerated = yes imp = 1597 imp = 4963 imp = 4968 ck3 = 4116 } # Konkobar, Nithavanta, Thebarga -> Nihawand + link = { autogenerated = yes imp = 1592 imp = 1663 imp = 1666 ck3 = 5782 } # Akunk, Vaykunik, Koght -> Gardman + link = { autogenerated = yes imp = 1590 ck3 = 5727 } # Dzhrarat -> Kumayri + link = { autogenerated = yes imp = 1574 imp = 1578 ck3 = 4773 } # Pylai Kelishinias, Orontes -> KHUFTIYAN + link = { autogenerated = yes imp = 1567 ck3 = 5732 } # Bagauna -> Patnos + link = { autogenerated = yes imp = 1564 imp = 1566 ck3 = 5731 } # Kolchion, Didima -> Valashkert + link = { autogenerated = yes imp = 1563 imp = 5194 imp = 5195 ck3 = 5714 } # Acachia, IMPASSIBLE TERRAIN 194, IMPASSIBLE TERRAIN 195 -> Khinisi + link = { autogenerated = yes imp = 1525 imp = 1624 ck3 = 4539 } # Gurqal'eh, Chaharla -> UJAN + link = { autogenerated = yes imp = 1520 imp = 1521 imp = 1523 imp = 5219 ck3 = 4545 } # Bonab Qal'eh, Akra-rudh, Phraaspa, IMPASSIBLE TERRAIN 219 -> MARAGHA + link = { autogenerated = yes imp = 146 imp = 5129 ck3 = 2550 } # Bononia, IMPASSIBLE TERRAIN 129 -> MONTE SOLE + link = { autogenerated = yes imp = 140 imp = 5018 imp = 5128 ck3 = 2553 } # Faesulae, IMPASSIBLE TERRAIN 018, IMPASSIBLE TERRAIN 128 -> CASENTINO + link = { autogenerated = yes imp = 12802 imp = 7859 ck3 = 984 } # Mare Septentrionalis, SEAZONE IMPASSABLE WASTELAND -> North Sea + link = { autogenerated = yes imp = 1279 ck3 = 1974 ck3 = 1973 } # Tutugi -> BAZA, HUESCAR + link = { autogenerated = yes imp = 12778 imp = 7857 ck3 = 978 } # Oceanus Atlanticus, SEAZONE IMPASSABLE WASTELAND -> Atlantic + link = { autogenerated = yes imp = 12773 imp = 12784 imp = 12793 imp = 12799 imp = 12830 ck3 = 8615 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Sea of Faereyar + link = { autogenerated = yes imp = 12757 ck3 = 12812 } # Exan -> Sakhalin-Keton/Smirnykh + link = { autogenerated = yes imp = 12729 ck3 = 12553 ck3 = 12552 } # Yaguk -> GOBI_Khulugur, GOBI_Ikh_Nart + link = { autogenerated = yes imp = 12697 ck3 = 9340 ck3 = 9345 ck3 = 9346 ck3 = 9347 } # Snip -> Garze, Dzogchen, Manigango, Axu + link = { autogenerated = yes imp = 12682 ck3 = 9446 ck3 = 9447 } # Tyam -> Maqen, Gade + link = { autogenerated = yes imp = 12680 ck3 = 9427 ck3 = 9428 } # Mran -> Xigortang, Namtang + link = { autogenerated = yes imp = 12576 ck3 = 5231 } # Udar -> Tula + link = { autogenerated = yes imp = 12533 ck3 = 5368 } # Menel -> Chechkeiev + link = { autogenerated = yes imp = 12513 ck3 = 608 } # Pors -> Ukek + link = { autogenerated = yes imp = 12362 imp = 12363 ck3 = 896 } # Ipasyam, Dahyuupati -> Aqtobe + link = { autogenerated = yes imp = 12250 ck3 = 7157 ck3 = 7159 } # Topar -> Aksuyek, Akzhar + link = { autogenerated = yes imp = 12188 imp = 11748 imp = 12007 ck3 = 12653 } # Mare Yavadvipa, Mare Yavadvipa, Mare Yavadvipa -> Pacific Ocean + link = { autogenerated = yes imp = 12086 ck3 = 12635 } # Mare Luzon -> Philippine Sea + link = { autogenerated = yes imp = 11954 imp = 8188 imp = 11904 imp = 12099 ck3 = 12651 } # Mare Yavadvipa, Mare Yavadvipa, Mare Yavadvipa, Mare Yavadvipa -> Suruga Bay + link = { autogenerated = yes imp = 11741 ck3 = 12624 } # Mare Formosa -> Taiwan Strait + link = { autogenerated = yes imp = 11732 imp = 11778 imp = 12024 ck3 = 12637 } # Mare Luzon, Mare Luzon, Mare Luzon -> Philippine Sea + link = { autogenerated = yes imp = 11722 imp = 10920 imp = 10921 imp = 10951 imp = 10952 imp = 11584 imp = 11586 imp = 11588 imp = 11602 imp = 11603 imp = 11637 imp = 11744 imp = 11747 imp = 11763 imp = 11851 imp = 11853 imp = 11865 imp = 11869 imp = 11878 imp = 11908 imp = 11915 imp = 11931 imp = 11939 imp = 11952 imp = 12059 imp = 12084 imp = 12125 imp = 12130 imp = 12138 imp = 12179 imp = 12220 imp = 9342 ck3 = 12763 } # Sinus Gangeticus, Mare Melanesia, Mare Melanesia, $PROV9854$, Mare Corallium, Mare Melanesia, Mare Melanesia, Sinus Arafura, Mare Melanesia, Mare Corallium, Mare Corallium, Sinus Arafura, Sinus Arafura, Sinus Gangeticus, Mare Melanesia, Sinus Gangeticus, Mare Corallium, Sinus Arafura, Sinus Carpentaria, Sinus Arafura, Mare Melanesia, Sinus Arafura, Mare Melanesia, Sinus Arafura, Mare Corallium, Sinus Carpentaria, Mare Melanesia, Mare Melanesia, Sinus Arafura, Mare Corallium, Sinus Arafura, Sinus Carpentaria -> the Indian Ocean + link = { autogenerated = yes imp = 11653 imp = 11755 imp = 11809 imp = 12038 imp = 8190 ck3 = 12659 } # Mare Yavadvipa, Mare Yavadvipa, Mare Yavadvipa, Mare Yavadvipa, Mare Yavadvipa -> Nemuro Bay + link = { autogenerated = yes imp = 11635 imp = 11935 imp = 12134 imp = 12231 imp = 9865 ck3 = 12550 } # Mare Mishihase, Mare Mishihase, Mare Mishihase, Mare Mishihase, Impassable -> Pacific Ocean + link = { autogenerated = yes imp = 11530 ck3 = 912 } # Shikharji -> Shikarji + link = { autogenerated = yes imp = 11508 imp = 5968 ck3 = 4460 } # Nazarkhan, Karakum Dessert Impassable -> KURDAR + link = { autogenerated = yes imp = 11387 ck3 = 7142 } # Agaie -> Shelji + link = { autogenerated = yes imp = 1137 ck3 = 1786 } # Artabron Limen -> BETANZOS + link = { autogenerated = yes imp = 11314 ck3 = 7224 } # Kamekol -> Jaksybai + link = { autogenerated = yes imp = 1128 ck3 = 1821 } # Uttaris -> ASTORGA + link = { autogenerated = yes imp = 11274 ck3 = 7098 } # Shagar -> Chushka-Kol + link = { autogenerated = yes imp = 11264 ck3 = 6216 ck3 = 6217 } # Mahd al Thahab -> AS-SALILA, MADINAT_SULAYM + link = { autogenerated = yes imp = 11263 imp = 5404 ck3 = 6160 } # Ulya, Mulayjah -> THAJ + link = { autogenerated = yes imp = 11262 imp = 5402 imp = 5403 ck3 = 6166 } # Shayyit, Kabrit, Niqirah -> AS-SAMMAN + link = { autogenerated = yes imp = 11258 imp = 11259 ck3 = 6258 } # Tibrak, Labkhah -> JIBAL-AL-URD + link = { autogenerated = yes imp = 11257 ck3 = 6251 } # Muzahmiya -> AL-KHADARIM + link = { autogenerated = yes imp = 11237 imp = 11238 imp = 11239 imp = 4711 imp = 5296 imp = 5373 ck3 = 6304 } # Tena, Marakhai, Breigha, Mhrta, Mahria, IP 374 -> BARHUT + link = { autogenerated = yes imp = 11229 imp = 11230 imp = 11232 ck3 = 6163 } # Tawdihiyah, Haradh, Yabrin -> YABRIN + link = { autogenerated = yes imp = 11228 imp = 11226 imp = 12674 ck3 = 6182 } # Mawqaq, Qamra, Arabia Impassable -> MAWQAQ + link = { autogenerated = yes imp = 11227 imp = 4720 ck3 = 6203 } # Dharghat, Eroe -> FADAK + link = { autogenerated = yes imp = 11224 imp = 11225 ck3 = 6244 } # Tathleeth, Subaykhah -> WADI_TATHLITH + link = { autogenerated = yes imp = 11218 imp = 11222 imp = 11219 ck3 = 6245 } # Dawasir, Qirah, Kahl -> DAM + link = { autogenerated = yes imp = 11214 imp = 11215 ck3 = 6249 } # Aflaj, Janobi -> QASR-AL-ADI + link = { autogenerated = yes imp = 11213 ck3 = 6248 } # Layla -> AL-HADDAR + link = { autogenerated = yes imp = 11205 imp = 11203 imp = 11204 ck3 = 6255 } # Huraymila, Zulfi, Jalajil -> UBAD + link = { autogenerated = yes imp = 11199 ck3 = 6171 ck3 = 6204 } # Shari -> AL-KHUZAIMIYA, FAYD + link = { autogenerated = yes imp = 11198 ck3 = 6172 } # Baqaa -> HAIL + link = { autogenerated = yes imp = 11134 ck3 = 12650 } # Kiso -> Enshu Sea + link = { autogenerated = yes imp = 11122 imp = 4590 imp = 4596 imp = 4614 imp = 6506 ck3 = 953 } # Mater Vernis, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Coast of Morocco + link = { autogenerated = yes imp = 11117 ck3 = 12529 } # $PROV10809$ -> Mekong River + link = { autogenerated = yes imp = 11109 imp = 8139 ck3 = 8806 } # Jiulong, Fujian Mountains -> Longxi + link = { autogenerated = yes imp = 11103 ck3 = 10895 ck3 = 12879 ck3 = 12870 } # Muang Sing -> Mong La, Moeng Phong / Meng Peng, Yunnan Range + link = { autogenerated = yes imp = 11070 imp = 9784 ck3 = 9591 } # Mayo, PASS -> Hinthada + link = { autogenerated = yes imp = 1104 imp = 1105 imp = 8151 ck3 = 1812 } # Segontia Paramika, Ouxama Barka, Hispania Impassable -> MEDINA DE POMAR + link = { autogenerated = yes imp = 11018 ck3 = 11435 } # Prachuap -> THAI_Singkhon + link = { autogenerated = yes imp = 10986 ck3 = 12543 } # Phonsavan -> Muang Khoun + link = { autogenerated = yes imp = 10968 imp = 9819 ck3 = 10932 } # Stoeng Dountri, Si Yat -> Battambang + link = { autogenerated = yes imp = 10954 imp = 11581 ck3 = 12822 } # Mare Mishihase, Mare Mishihase -> Sea of Okhotsk + link = { autogenerated = yes imp = 10911 imp = 11775 imp = 11937 imp = 12168 ck3 = 12657 } # Mare Yavadvipa, Mare Yavadvipa, Mare Yavadvipa, Mare Yavadvipa -> Sendai Bay + link = { autogenerated = yes imp = 10907 imp = 11567 imp = 11768 imp = 12184 ck3 = 12656 } # Mare Yavadvipa, Mare Yavadvipa, Mare Yavadvipa, Mare Yavadvipa -> Pacific Ocean + link = { autogenerated = yes imp = 10681 ck3 = 1053 } # $PROV10679$ -> Vistula River + link = { autogenerated = yes imp = 10611 ck3 = 7561 } # Buuntsagaan -> Taigan + link = { autogenerated = yes imp = 1056 ck3 = 8801 } # Setelsis -> Seu d'Urgell + link = { autogenerated = yes imp = 10554 ck3 = 7778 ck3 = 7779 } # Elga -> Olkhon, Bugulde + link = { autogenerated = yes imp = 10533 ck3 = 7691 ck3 = 7690 ck3 = 7694 } # Ivolga -> Altaichei, Ulan-Ude, Chikoy + link = { autogenerated = yes imp = 10527 imp = 11742 imp = 11745 imp = 11852 imp = 11978 imp = 12071 imp = 11709 imp = 11785 imp = 11815 imp = 11822 imp = 11870 imp = 11940 imp = 11974 imp = 12036 imp = 12048 imp = 12126 imp = 12141 imp = 12144 imp = 7850 ck3 = 1293 } # Mare Lacadive, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, SEAZONE IMPASSABLE WASTELAND -> EAST INDIAN OCEAN TI + link = { autogenerated = yes imp = 10507 imp = 10508 ck3 = 8326 } # Weki, Weama -> HAYQ + link = { autogenerated = yes imp = 10506 imp = 10505 ck3 = 8345 } # Mille, Logiya -> AWASH + link = { autogenerated = yes imp = 10504 imp = 7542 ck3 = 8344 } # Gehar, Rhammanitai -> AWSSA + link = { autogenerated = yes imp = 10502 ck3 = 8307 } # Gondar -> DEMBIYA + link = { autogenerated = yes imp = 10498 imp = 10499 imp = 10500 ck3 = 8505 } # Bililicweyn, Garowe, Laanle -> UPPER_NUGAAL + link = { autogenerated = yes imp = 10491 imp = 10492 imp = 10495 imp = 10496 imp = 10497 ck3 = 8506 } # Dalmoxor, Qarxis, Moqor Yar, Mulug, Afdugweyne -> LOWER_NUGAAL + link = { autogenerated = yes imp = 10489 ck3 = 8507 } # Raas Xoor -> DHUUDO + link = { autogenerated = yes imp = 10486 imp = 10488 imp = 10501 ck3 = 8504 } # Bohol, Jidbaaley, Sool -> LOWER_TOGDHEER + link = { autogenerated = yes imp = 10481 imp = 10483 imp = 10485 imp = 10487 imp = 10484 ck3 = 8503 } # Aelal, Danano, Gar Adag, Afweyn, Qoridheere -> TOGDHEER + link = { autogenerated = yes imp = 10480 ck3 = 8508 } # Hodmane -> JACEYL_BID + link = { autogenerated = yes imp = 10477 imp = 10479 ck3 = 8428 } # Mindigale, Kob Dehad -> QUMBUCUL + link = { autogenerated = yes imp = 10474 imp = 10475 ck3 = 8427 } # Jidali, Hadaaftimo -> HAYLAN + link = { autogenerated = yes imp = 10472 imp = 7527 imp = 8106 ck3 = 8424 } # Shalcaw, Khoor Shoora, Somali Impassable -> MAKHIR + link = { autogenerated = yes imp = 10471 imp = 7532 imp = 8108 ck3 = 8430 } # Qandala, Mosylon, Somali Impassable -> BOSASO + link = { autogenerated = yes imp = 10460 ck3 = 8403 } # Barkhadle -> GOGESA + link = { autogenerated = yes imp = 10458 imp = 7522 imp = 7534 ck3 = 8404 } # Isis, Malao, Amaitaia -> BERBERA + link = { autogenerated = yes imp = 10454 ck3 = 6438 } # Akordat -> QATAA + link = { autogenerated = yes imp = 10429 imp = 10457 ck3 = 6442 } # Hambok, Tokolay -> TO_LUS + link = { autogenerated = yes imp = 10420 imp = 10421 imp = 10422 imp = 10423 imp = 10427 imp = 3328 ck3 = 6412 } # Matamir, Kassala, Hagiz, Gash, Haykota, Thana -> KASSALA + link = { autogenerated = yes imp = 10417 ck3 = 6434 } # Gisi -> AL-RUSAYRISI + link = { autogenerated = yes imp = 10409 ck3 = 6406 } # Ghorani -> BASHARGA + link = { autogenerated = yes imp = 10396 imp = 10397 imp = 10426 ck3 = 6386 } # Mahaneit, Qoqay, Kalakoy -> BAQLIN-WEST + link = { autogenerated = yes imp = 10394 imp = 10395 ck3 = 6387 } # Tohamiyam, Talguharai -> BAQLIN-EAST + link = { autogenerated = yes imp = 10391 ck3 = 6383 ck3 = 6385 } # Tabot -> UPPER_AMUR, BAQLIN-NORTH + link = { autogenerated = yes imp = 10324 ck3 = 934 } # Lepiel -> Lukoml + link = { autogenerated = yes imp = 10278 ck3 = 161 } # Wigierski -> GRODNO + link = { autogenerated = yes imp = 10223 ck3 = 5116 } # Vygonoschanskoye -> Mikashevichy + link = { autogenerated = yes imp = 10179 ck3 = 4712 } # Atlas Pass -> AIT ITAB + link = { autogenerated = yes imp = 10172 imp = 10173 imp = 6482 ck3 = 4697 } # Brazzia, Agourai, More Middle Atlas -> SEFROU + link = { autogenerated = yes imp = 10170 imp = 10141 imp = 10142 imp = 10176 ck3 = 4749 } # Sfissifa, Lahmar, Figuig, Gafait -> FIGUIG + link = { autogenerated = yes imp = 10166 ck3 = 4646 } # Djelfa -> ASHIR-BANYA + link = { autogenerated = yes imp = 10159 imp = 10168 imp = 3132 imp = 3133 ck3 = 4641 } # Khoubana, Teboucha, Tatiliti, Zabi -> AL-MASILA + link = { autogenerated = yes imp = 10156 ck3 = 4619 ck3 = 4618 } # Messaad -> AL-AGHWAT, TILGHEMT + link = { autogenerated = yes imp = 10154 imp = 10147 ck3 = 4750 } # Sefra, Bourzeg -> AIN SEFRA + link = { autogenerated = yes imp = 10126 imp = 10125 ck3 = 4737 } # Ouzina, Merzouga -> SIJILMASA + link = { autogenerated = yes imp = 10124 imp = 8089 ck3 = 4738 } # Sijilmasa, Berenike Pancrysia -> TAFILALT + link = { autogenerated = yes imp = 10118 imp = 3084 imp = 6495 ck3 = 4670 } # Laatamna, Syrorum, Even More Riff -> NADRUMA + link = { autogenerated = yes imp = 10112 imp = 10116 imp = 10135 imp = 10113 imp = 6494 ck3 = 4677 } # Guercif, Ouidane, Mnoud Nekkour, Taddart, More Riff -> TAZA + link = { autogenerated = yes imp = 10109 imp = 10110 ck3 = 4745 } # Orjane, Tindite -> MISSOUR + link = { autogenerated = yes imp = 10108 ck3 = 4743 } # Missour -> TIKOUTAMINE + link = { autogenerated = yes imp = 10106 imp = 10107 imp = 6300 ck3 = 4744 } # Izdeg, Ksabi, Talzemt -> EL-KSABI + link = { autogenerated = yes imp = 10102 imp = 10103 imp = 10105 imp = 10104 ck3 = 4711 } # Aghbala, Zarhour, Boumia, Tounfit -> AFZA + link = { autogenerated = yes imp = 10099 imp = 10100 ck3 = 4725 } # Taliouine, Larbaa Magnoun -> IGILLIZ + link = { autogenerated = yes imp = 10096 imp = 10097 imp = 10119 imp = 10120 imp = 10121 imp = 10178 ck3 = 4736 } # Skoura, Toundoute, Ifri, Tinghir, Goulmima, Atlas Pass -> TUDGHA + link = { autogenerated = yes imp = 10093 imp = 10095 imp = 10169 ck3 = 4733 } # Isli, Iguernane, Atlas Pass -> TASAGDAH + link = { autogenerated = yes imp = 10090 imp = 10091 ck3 = 4735 } # Tamezmoute, Zagora -> TAZAGOURT + link = { autogenerated = yes imp = 10087 imp = 10088 imp = 10089 ck3 = 4734 } # Agdz, Ouarzazate, Bou Azzer -> WARZAZAT + link = { autogenerated = yes imp = 10086 imp = 10175 ck3 = 4722 } # Tamanar, Guigou -> IGIR AD YATUF + link = { autogenerated = yes imp = 10068 imp = 10071 imp = 10072 ck3 = 4726 } # Ouassay, Baha, Imighzer -> MASSA + link = { autogenerated = yes imp = 10058 imp = 3295 imp = 3296 imp = 3297 ck3 = 4565 } # Naffatiyah, Gergis, Zitha, Putea Pallene -> JARJIS + link = { autogenerated = yes imp = 10047 imp = 10048 imp = 10049 imp = 10053 imp = 10054 imp = 10046 imp = 8073 ck3 = 4572 } # Tillibari, Dekrlet, Jebil, Mahalla, Tisavar, Bourma, Hudi -> BIR AMIR + link = { autogenerated = yes imp = 10044 imp = 10045 imp = 5948 ck3 = 4560 } # Praesidium, Zar, Desert -> NALUT + link = { autogenerated = yes imp = 10038 imp = 10039 imp = 5989 ck3 = 4559 } # Giosc, Tabuinati, Desert -> DJADO + link = { autogenerated = yes imp = 10028 imp = 3306 imp = 3324 imp = 8071 ck3 = 4556 } # Subututtu, Leptis Magna, Kinyps, Ileigha -> LABDA + link = { autogenerated = yes imp = 10023 ck3 = 4558 } # Thenteos -> TIRI + link = { autogenerated = yes imp = 10008 imp = 10009 imp = 10010 imp = 10011 imp = 3329 imp = 3330 imp = 3332 imp = 3333 imp = 3334 imp = 3335 imp = 3336 imp = 9968 ck3 = 4552 } # Manfuchia, Nagdiyah, Qarinah, Majdubiyah, Annesel, Auxiu, Dysopon, Euphranta, Iscina, Aulazon, Ad Palmam, Harawa -> SURT + link = { autogenerated = yes imp = 10006 imp = 10007 imp = 10012 imp = 10013 imp = 10014 imp = 10015 imp = 10016 imp = 10017 imp = 10018 imp = 10019 imp = 10020 imp = 10021 imp = 10029 imp = 10031 imp = 10032 imp = 10033 imp = 10034 imp = 5947 imp = 8074 ck3 = 4564 } # Zayden, Auxiqua, Faschia, Ghirza, Scedeua, Duraybikah, Gharbya, Tabaqah, Sherbia, Schiueref, Shawi, Mizda, Banat, Khnafes, Bularkan, Lebr, Scemech, Sahara Impassable, Shabbabah -> TININAI + link = { autogenerated = yes imp = 10004 imp = 10005 imp = 9964 imp = 9962 imp = 9963 imp = 9965 imp = 9987 imp = 5991 imp = 8070 ck3 = 4563 } # Jashalam, Gholaia, Socna, Waddan, Hun, Wilyan, Ninah, Jungle, Barkol -> WADDAN + link = { autogenerated = yes imp = 10003 imp = 9993 ck3 = 6451 } # Mastutah, Murzuq -> MURZUK + link = { autogenerated = yes imp = 9001 ck3 = 9997 } # Yuanyang -> Longbiao + link = { autogenerated = yes imp = 9286 imp = 9291 ck3 = 9995 } # Mirimidong, Guya -> Goryeo_Gyeongsang_Chirwon + link = { autogenerated = yes imp = 9601 ck3 = 9993 } # Gulbal -> Goryeo_Gyeongsang_Yeongju + link = { autogenerated = yes imp = 5836 imp = 5837 imp = 5839 ck3 = 999 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus -> The Sound + link = { autogenerated = yes imp = 9288 ck3 = 9989 ck3 = 9988 } # Ballo -> Goryeo_Gyeongsang_Gyeongsanbu, Goryeo_Gyeongsang_Geochang + link = { autogenerated = yes imp = 9297 ck3 = 9985 ck3 = 9991 } # Horo -> Goryeo_Gyeongsang_Dian, Goryeo_Gyeongsang_Ilseon + link = { autogenerated = yes imp = 9290 ck3 = 9984 ck3 = 9992 ck3 = 9959 } # Gamno -> Goryeo_Gyeongsang_Sangju, Goryeo_Gyeongsang_Gaeryeong, Goryeo_Jeolla_Mupung + link = { autogenerated = yes imp = 9287 imp = 9292 ck3 = 9982 } # Gojamidong, Dongno -> Goryeo_Gyeongsang_Geoje + link = { autogenerated = yes imp = 9600 ck3 = 9981 ck3 = 9994 } # Anya -> Goryeo_Gyeongsang_Jinju, Goryeo_Gyeongsang_Yeongsan + link = { autogenerated = yes imp = 9604 ck3 = 9977 ck3 = 9979 } # Somun -> Goryeo_Gyeongsang_Jaesan, Goryeo_Gyeongsang_Andong + link = { autogenerated = yes imp = 9602 ck3 = 9974 ck3 = 9975 } # Yeomhae -> Goryeo_Gyeongsang_Ulju, Goryeo_Gyeongsang_Gijang + link = { autogenerated = yes imp = 9296 ck3 = 9972 } # Geun gi -> Goryeo_Gyeongsang_Yeju + link = { autogenerated = yes imp = 9293 ck3 = 9970 ck3 = 9973 } # Saro -> Goryeo_Gyeongsang_Janggi, Goryeo_Gyeongsang_Gyeongju + link = { autogenerated = yes imp = 9598 ck3 = 9964 } # Wonji -> Goryeo_Jeolla_Boseong + link = { autogenerated = yes imp = 9599 ck3 = 9963 ck3 = 9980 ck3 = 9990 ck3 = 9987 } # Gunmi -> Goryeo_Jeolla_Seungpyeong, Goryeo_Gyeongsang_Hadong, Goryeo_Gyeongsang_Hapcheon, Goryeo_Gyeongsang_Hamyang + link = { autogenerated = yes imp = 5789 imp = 5790 imp = 5791 imp = 5794 ck3 = 996 } # Mare Germanicum, Mare Germanicum, Mare Germanicum, Mare Germanicum -> Dogger Bank + link = { autogenerated = yes imp = 9591 ck3 = 9958 ck3 = 9960 ck3 = 9961 ck3 = 9962 } # Gorap -> Goryeo_Jeolla_Jillye, Goryeo_Jeolla_Jinan, Goryeo_Jeolla_Namwon, Goryeo_Jeolla_Imsil + link = { autogenerated = yes imp = 9593 ck3 = 9955 ck3 = 9956 } # Ilnan -> Goryeo_Jeolla_Donggang, Goryeo_Jeolla_Jindo + link = { autogenerated = yes imp = 9594 ck3 = 9954 ck3 = 9965 ck3 = 9966 } # Burun -> Goryeo_Jeolla_Jangheung, Goryeo_Jeolla_Heungyang, Goryeo_Jeolla_Neungseong + link = { autogenerated = yes imp = 9278 ck3 = 9951 ck3 = 9952 } # Gobiri -> Goryeo_Jeolla_Yeonggwang, Goryeo_Jeolla_Gangseong + link = { autogenerated = yes imp = 9282 ck3 = 9949 } # Morobiri -> Goryeo_Jeolla_Hampyeong + link = { autogenerated = yes imp = 9280 ck3 = 9950 ck3 = 9967 } # Gusaodan -> Goryeo_Jeolla_Mokpo, Goryeo_Jeolla_Haeyang + link = { autogenerated = yes imp = 9597 ck3 = 9945 ck3 = 9907 } # Soknobulsa -> Goryeo_Yanggwan_Ganghwa, Goryeo_Gaeseong_Chuiljeon + link = { autogenerated = yes imp = 9281 ck3 = 9941 } # Guro -> Goryeo_Yanggwan_Nampo + link = { autogenerated = yes imp = 9592 ck3 = 9940 } # Arim -> Goryeo_Yanggwan_Seorim + link = { autogenerated = yes imp = 5772 ck3 = 994 } # Mare Septentrionale -> Firth of Forth + link = { autogenerated = yes imp = 9590 ck3 = 9938 ck3 = 9953 ck3 = 9957 } # Geunma -> Goryeo_Yanggwan_Yeonsan, Goryeo_Jeolla_Jeonju, Goryeo_Jeolla_Jindong + link = { autogenerated = yes imp = 9294 ck3 = 9935 ck3 = 9978 ck3 = 9986 ck3 = 9931 ck3 = 9932 } # Gijeo -> Goryeo_Yanggwan_Jangyeon, Goryeo_Gyeongsang_Sunan, Goryeo_Gyeongsang_Giju, Goryeo_Yanggwan_Yeongwol, Goryeo_Yanggwan_Jecheon + link = { autogenerated = yes imp = 9279 ck3 = 9934 ck3 = 9936 ck3 = 9937 ck3 = 9983 } # Gopo -> Goryeo_Yanggwan_Goeju, Goryeo_Yanggwan_Cheongju, Goryeo_Yanggwan_Gongju, Goryeo_Gyeongsang_Boryeong + link = { autogenerated = yes imp = 5768 imp = 5769 imp = 5770 imp = 6309 ck3 = 993 } # Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, LAKE -> Moray Firth + link = { autogenerated = yes imp = 9595 ck3 = 9929 ck3 = 9933 ck3 = 9947 ck3 = 9948 } # Mokji -> Goryeo_Yanggwan_Cheonyeong, Goryeo_Yanggwan_Chungju, Goryeo_Yanggwan_Anseong, Goryeo_Yanggwan_Jukju + link = { autogenerated = yes imp = 9596 ck3 = 9928 ck3 = 9880 ck3 = 9881 ck3 = 9882 ck3 = 9923 ck3 = 9926 } # Gori -> Goryeo_Yanggwan_Yanggeun, Goryeo_Gyoju_Chunju, Goryeo_Gyoju_Hoengcheon, Goryeo_Gyoju_Hongcheon, Goryeo_Yanggwan_Bukju, Goryeo_Yanggwan_Wonju + link = { autogenerated = yes imp = 9284 ck3 = 9927 ck3 = 9942 ck3 = 9943 ck3 = 9944 } # Jichim -> Goryeo_Yanggwan_Cheonan, Goryeo_Yanggwan_Buseong, Goryeo_Yanggwan_Guseong, Goryeo_Yanggwan_Yesan + link = { autogenerated = yes imp = 9283 ck3 = 9925 ck3 = 9939 ck3 = 9946 } # Mosu -> Goryeo_Yanggwan_Haengju, Goryeo_Yanggwan_Gwangju, Goryeo_Yanggwan_Dangseong + link = { autogenerated = yes imp = 9608 ck3 = 9924 } # Baekje -> Goryeo_Yanggwan_Namyeong + link = { autogenerated = yes imp = 5765 ck3 = 992 } # Oceanus Atlanticus -> The Minch + link = { autogenerated = yes imp = 8805 ck3 = 9916 ck3 = 9917 ck3 = 9918 } # Yeolgu -> Goryeo_Seohae_Pungju, Goryeo_Seohae_Jangyeon, Goryeo_Seohae_Cheongsong + link = { autogenerated = yes imp = 9671 ck3 = 9914 ck3 = 9915 } # Hamja -> Goryeo_Seohae_Bongju, Goryeo_Seohae_Dongju + link = { autogenerated = yes imp = 8806 ck3 = 9913 ck3 = 9919 ck3 = 9920 } # Daebang -> Goryeo_Seohae_Anak, Goryeo_Seohae_Haeju, Goryeo_Seohae_Ongjin + link = { autogenerated = yes imp = 9670 ck3 = 9912 } # Dunyu -> Goryeo_Seohae_Hwangju + link = { autogenerated = yes imp = 8809 ck3 = 9905 ck3 = 9906 ck3 = 9921 ck3 = 9922 } # Jehae -> Goryeo_Gaeseong_Tosan, Goryeo_Gaeseong_Jeongju, Goryeo_Seohae_Ubong, Goryeo_Seohae_Pyeongju + link = { autogenerated = yes imp = 9669 ck3 = 9903 ck3 = 9904 ck3 = 9909 ck3 = 9910 ck3 = 9911 } # Nubang -> Goryeo_Bukgye_Yangam, Goryeo_Bukgye_Isan, Goryeo_Seohae_Suan, Goryeo_Seohae_Sineun, Goryeo_Seohae_Gokju + link = { autogenerated = yes imp = 9668 ck3 = 9901 ck3 = 9902 } # Samang -> Goryeo_Bukgye_Jaju, Goryeo_Bukgye_Seongju + link = { autogenerated = yes imp = 8803 ck3 = 9900 } # Ganggam -> Goryeo_Bukgye_Tonghae + link = { autogenerated = yes imp = 8801 ck3 = 9899 ck3 = 9908 } # Wanggeom -> Goryeo_Bukgye_Seogyeong, Goryeo_Seohae_Tosan + link = { autogenerated = yes imp = 8804 ck3 = 9897 ck3 = 9898 } # Jeomseon -> Goryeo_Bukgye_Samhwa, Goryeo_Bukgye_Yonggang + link = { autogenerated = yes imp = 8792 ck3 = 9891 ck3 = 9892 ck3 = 9893 ck3 = 9894 } # Fanhan -> Goryeo_Bukgye_Gwiju, Goryeo_Bukgye_Seonju, Goryeo_Bukgye_Gaju, Goryeo_Bukgye_Taeju + link = { autogenerated = yes imp = 5812 imp = 12769 imp = 12818 imp = 12838 imp = 5799 imp = 5811 imp = 5813 imp = 5821 imp = 5822 ck3 = 989 } # Mare Septentrionale, Mare Septentrionalis, Mare Septentrionalis, Mare Septentrionalis, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale -> North Sea + link = { autogenerated = yes imp = 9886 ck3 = 9889 ck3 = 9890 } # Zishui -> Goryeo_Bukgye_Uiju, Goryeo_Bukgye_Cheolju + link = { autogenerated = yes imp = 8802 ck3 = 9885 ck3 = 9895 } # Jeungji -> Goryeo_Bukgye_Deokju, Goryeo_Bukgye_Sukju + link = { autogenerated = yes imp = 8799 ck3 = 9884 ck3 = 9887 ck3 = 9896 ck3 = 11520 } # Beipeishui -> Goryeo_Bukgye_Muju, Goryeo_Bukgye_Jangjeong, Goryeo_Bukgye_Wiju, IMPASSABLE Sikhote mountains north 3 + link = { autogenerated = yes imp = 8811 ck3 = 9883 ck3 = 9886 ck3 = 11841 } # Tallyeol -> Goryeo_Bukgye_Yeongwon, Goryeo_Bukgye_Maengju, Liao_Tianqing + link = { autogenerated = yes imp = 5818 imp = 5798 imp = 5803 imp = 5804 imp = 5805 imp = 5807 imp = 5810 imp = 5814 imp = 5816 imp = 5817 imp = 5825 imp = 5826 ck3 = 988 } # Mare Septentrionale, Mare Germanicum, Mare Germanicum, Mare Germanicum, Mare Septentrionale, Mare Germanicum, Mare Germanicum, Mare Germanicum, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale -> North Sea + link = { autogenerated = yes imp = 8813 ck3 = 9866 ck3 = 9867 } # Hwaryeo -> Goryeo_Donggye_Uiju, Goryeo_Donggye_Hwaju + link = { autogenerated = yes imp = 8814 ck3 = 9864 ck3 = 9865 ck3 = 9873 ck3 = 9876 ck3 = 9877 ck3 = 9878 } # Bullae -> Goryeo_Donggye_Heupgok, Goryeo_Donggye_Deungju, Goryeo_Gyoju_Gyoju, Goryeo_Gyoju_Pyeonggang, Goryeo_Gyoju_Icheon, Goryeo_Gyoju_Anhyeop + link = { autogenerated = yes imp = 8815 ck3 = 9862 ck3 = 9863 ck3 = 9874 ck3 = 12917 } # Sadumal -> Goryeo_Donggye_Goseong, Goryeo_Donggye_Tongcheon, Goryeo_Gyoju_Geumseong, korea_mountains + link = { autogenerated = yes imp = 8807 ck3 = 9861 ck3 = 9870 ck3 = 9872 } # Jamdae -> Goryeo_Donggye_Ganseong, Goryeo_Gyoju_Inje, Goryeo_Gyoju_Yanggu + link = { autogenerated = yes imp = 9298 ck3 = 9859 ck3 = 9971 } # U yu -> Goryeo_Donggye_Samcheok, Goryeo_Gyeongsang_Pyeonghae + link = { autogenerated = yes imp = 9299 ck3 = 9858 } # Siljig -> Goryeo_Donggye_Myeongju + link = { autogenerated = yes imp = 8808 ck3 = 9860 ck3 = 9871 } # Dongi -> Goryeo_Donggye_Ingnyeong, Goryeo_Gyoju_Girin + link = { autogenerated = yes imp = 8999 ck3 = 9857 ck3 = 13148 } # Xupu -> Luxi, Baofeng + link = { autogenerated = yes imp = 9285 ck3 = 9856 ck3 = 9969 } # Tamna -> Goryeo_Tamna_Tamna, Goryeo_Tamna_WestTamna + link = { autogenerated = yes imp = 9003 ck3 = 9852 } # Youyang -> Yuanling + link = { autogenerated = yes imp = 10825 ck3 = 9851 ck3 = 10473 } # Shihsanhang -> Taiwan_Taipei, Taiwan_New_4 + link = { autogenerated = yes imp = 10826 ck3 = 9850 } # Chihwuyuen -> Taiwan_Miaoli + link = { autogenerated = yes imp = 10832 imp = 10833 ck3 = 9849 } # Fengbitou, Jiuxianlan -> Taiwan_Pingtung + link = { autogenerated = yes imp = 10831 ck3 = 9848 } # Tahu -> Taiwan_Kaohsiung + link = { autogenerated = yes imp = 10827 imp = 10828 ck3 = 9847 } # Fanzaiyuan, Nanshikeng -> Taiwan_Changhua + link = { autogenerated = yes imp = 10830 imp = 10829 imp = 10839 ck3 = 9846 } # Wushantou, Daqiuyuan, Pinghu -> Taiwan_Chiayi + link = { autogenerated = yes imp = 9002 ck3 = 9833 ck3 = 9834 ck3 = 9835 } # Chenyang -> Luyang, Weiyang, Changfeng + link = { autogenerated = yes imp = 6413 ck3 = 983 } # Asphaltites -> Dead Sea + link = { autogenerated = yes imp = 8446 ck3 = 9825 } # Daliang -> Chenliu + link = { autogenerated = yes imp = 8453 imp = 8454 ck3 = 9823 } # Pingqiu, Suanzao -> Fengqiu + link = { autogenerated = yes imp = 8386 imp = 8396 ck3 = 9822 } # Qifeng, Yanling -> Kaifeng + link = { autogenerated = yes imp = 8384 imp = 8385 imp = 8388 ck3 = 9821 } # Zheng, Xingyang, Jing -> Guancheng + link = { autogenerated = yes imp = 8387 ck3 = 9820 } # Juan -> Yangwu + link = { autogenerated = yes imp = 8669 imp = 8370 ck3 = 9819 } # Zhenglu, Chaoge -> Baima + link = { autogenerated = yes imp = 8415 imp = 8403 imp = 8405 ck3 = 9818 } # Dun, Zhaoling, Ruyang -> Xiangcheng + link = { autogenerated = yes imp = 8457 ck3 = 9814 } # Chen -> Wanqiu + link = { autogenerated = yes imp = 8461 imp = 8460 ck3 = 9813 } # Yu, Yangxia -> Taikang + link = { autogenerated = yes imp = 8456 imp = 8447 imp = 8448 ck3 = 9812 } # Yongqiu, Yan, Ningling -> b_singzhou_xiangyi + link = { autogenerated = yes imp = 8458 imp = 8459 ck3 = 9811 } # Ku, Zhe -> Songcheng + link = { autogenerated = yes imp = 8433 ck3 = 9810 } # Suiyang -> Yucheng + link = { autogenerated = yes imp = 8475 ck3 = 9809 } # Danfu -> Chuqiu + link = { autogenerated = yes imp = 8430 imp = 8431 ck3 = 9808 } # Mang, Qiao -> b_bozhou_yongcheng + link = { autogenerated = yes imp = 8412 ck3 = 9807 } # Xinyang -> Luyi + link = { autogenerated = yes imp = 8422 ck3 = 9806 } # Xiacai -> Zhenyuan + link = { autogenerated = yes imp = 8423 ck3 = 9804 ck3 = 9805 } # Shansang -> Chengfu, Mengcheng + link = { autogenerated = yes imp = 8432 ck3 = 9801 } # Chengfu -> Qiao + link = { autogenerated = yes imp = 8414 ck3 = 9800 } # Qin -> Shenqiu + link = { autogenerated = yes imp = 8413 imp = 9643 imp = 9644 ck3 = 9798 } # Nyuyin, Shen, Fubo -> Ruyin + link = { autogenerated = yes imp = 8411 imp = 8409 imp = 8410 ck3 = 9797 } # Shen, Yang an, Chengyang -> Ruyang + link = { autogenerated = yes imp = 8397 imp = 8398 imp = 8404 ck3 = 9795 } # Xu, Changshe, Changping -> Fugou + link = { autogenerated = yes imp = 9645 imp = 8418 ck3 = 9793 } # Xinxi, Qisi -> Changshe + link = { autogenerated = yes imp = 8393 ck3 = 9792 ck3 = 9794 } # Yangdi -> Xiangcheng, Yangzhai + link = { autogenerated = yes imp = 8969 ck3 = 9791 } # Luyang -> Jiacheng + link = { autogenerated = yes imp = 8971 imp = 8382 ck3 = 9790 } # Xuanyuanguan, Liang -> Liang + link = { autogenerated = yes imp = 8361 imp = 8358 ck3 = 9788 } # Yiyang, Mianchi -> b_he_nan_yongning + link = { autogenerated = yes imp = 8383 imp = 8399 imp = 8400 ck3 = 9786 } # Xincheng, Fushu, Yangcheng -> Gaocheng + link = { autogenerated = yes imp = 9183 ck3 = 9785 ck3 = 10282 } # Anguang -> Lingnan_Nanning_Fu_Yongchun, Xincheng + link = { autogenerated = yes imp = 9178 ck3 = 9783 ck3 = 9784 ck3 = 9843 ck3 = 9844 } # Linchen -> Lingnan_Nanning_Fu_Shangsi, Lingnan_Nanning_Fu_Wuxuzhen, Lingnan_Siming_Siming, Lingnan_Siming_Longzhou + link = { autogenerated = yes imp = 8380 imp = 8379 ck3 = 9782 } # Wangcheng, Chengzhou -> Goushi + link = { autogenerated = yes imp = 8359 ck3 = 9780 } # Xin an -> Luoyang + link = { autogenerated = yes imp = 8854 ck3 = 9778 ck3 = 9779 } # Zitong -> Yinping, Linjin + link = { autogenerated = yes imp = 8855 ck3 = 9777 } # Baishui -> Jianmen + link = { autogenerated = yes imp = 9614 ck3 = 9776 } # Diandi -> Qingchuan + link = { autogenerated = yes imp = 5701 imp = 5686 imp = 5687 imp = 5696 imp = 6313 ck3 = 977 } # Mare Verginium, Mare Verginium, Mare Verginium, Mare Verginium, LAKE -> Bretagne Coast + link = { autogenerated = yes imp = 8832 ck3 = 9766 ck3 = 13066 } # Chenggu -> Xingdao, Pingli West + link = { autogenerated = yes imp = 8834 ck3 = 9765 ck3 = 9751 } # Xugu -> Xixiang, Baishi + link = { autogenerated = yes imp = 8846 ck3 = 9761 ck3 = 9763 } # Yufu -> Wushan, Fengjie + link = { autogenerated = yes imp = 5754 imp = 5741 imp = 5742 imp = 5755 ck3 = 975 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Donegal Bay + link = { autogenerated = yes imp = 8848 ck3 = 9748 ck3 = 9764 ck3 = 13023 ck3 = 9750 } # Qurenbei -> Baqu, Yun'an, Fengjie East, Kaijiang + link = { autogenerated = yes imp = 8842 ck3 = 9745 ck3 = 9746 ck3 = 9747 } # Dangqu -> Linshui, Liujiang, Tongchuan + link = { autogenerated = yes imp = 8843 ck3 = 9740 ck3 = 9741 } # Langzhong -> Langzhong, Fangguo + link = { autogenerated = yes imp = 4743 imp = 4742 imp = 4952 imp = 4954 imp = 6315 ck3 = 974 } # Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, LAKE -> Bay of Biscay + link = { autogenerated = yes imp = 9610 ck3 = 9739 ck3 = 9744 } # Anhan -> Nanchong, Linshan + link = { autogenerated = yes imp = 8841 ck3 = 9736 ck3 = 9737 } # Dianjiang -> Shijing, Hanchu + link = { autogenerated = yes imp = 8888 ck3 = 9730 ck3 = 9733 ck3 = 10206 ck3 = 13057 } # Jiangyang -> Luchuan, Yongchuan, Shunzhou, Sie'e Northeast + link = { autogenerated = yes imp = 5781 imp = 5784 ck3 = 973 } # Mare Germanicum, Mare Germanicum -> Wadden Sea + link = { autogenerated = yes imp = 9415 ck3 = 9724 ck3 = 9729 ck3 = 9732 } # Haan -> Panshi, Gongjing, Jingnan + link = { autogenerated = yes imp = 8858 imp = 8859 imp = 8860 ck3 = 9721 } # Xindou, Luo, Shifang -> Jinshui + link = { autogenerated = yes imp = 8863 ck3 = 9720 ck3 = 9734 ck3 = 9735 } # Guanghan -> Feiniao, Fangyi, Pukang + link = { autogenerated = yes imp = 8865 ck3 = 9719 } # Chanting -> Yongtai + link = { autogenerated = yes imp = 8864 ck3 = 9716 ck3 = 9717 ck3 = 9718 } # Fu -> Shifang, Weicheng, Qi + link = { autogenerated = yes imp = 8876 ck3 = 9713 ck3 = 10321 } # Guangrou -> Wenshan, Ehe + link = { autogenerated = yes imp = 8738 imp = 8723 ck3 = 9712 } # Guo, Wenan -> Boye + link = { autogenerated = yes imp = 8739 ck3 = 9711 } # Ewu -> Leshou + link = { autogenerated = yes imp = 8735 imp = 8711 imp = 8713 ck3 = 9710 } # Guangwang, Anguo, Xinchu -> Hejian + link = { autogenerated = yes imp = 8736 ck3 = 9709 } # Yichang -> Wen'an + link = { autogenerated = yes imp = 8716 imp = 8715 ck3 = 9708 } # Beiping, Quni -> Qingyuan + link = { autogenerated = yes imp = 8734 imp = 8737 ck3 = 9706 } # Rongcheng, Yi -> Mo + link = { autogenerated = yes imp = 8742 ck3 = 9705 } # Ji -> Guiyi + link = { autogenerated = yes imp = 8731 ck3 = 9703 ck3 = 9704 } # Zhuo -> Fanyang, Xincheng + link = { autogenerated = yes imp = 8748 ck3 = 9702 ck3 = 12172 } # Changping -> Ji, CirLNJ_Changping + link = { autogenerated = yes imp = 8755 imp = 8754 ck3 = 9701 } # Yongnu, Quanzhou -> Wuqing + link = { autogenerated = yes imp = 8756 ck3 = 9700 } # Lu -> Lu + link = { autogenerated = yes imp = 4739 imp = 4733 imp = 4736 imp = 4737 imp = 4738 imp = 4744 ck3 = 970 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Cape Finisterre + link = { autogenerated = yes imp = 12615 ck3 = 97 ck3 = 98 } # Ohut -> WESENBURG, NARVA + link = { autogenerated = yes imp = 8761 imp = 8762 imp = 8764 ck3 = 9697 } # Wuzhong, Xuwu, Changcheng -> Yutian + link = { autogenerated = yes imp = 8778 imp = 8769 ck3 = 9696 } # Haiyang, Anping -> Macheng + link = { autogenerated = yes imp = 8770 imp = 8763 ck3 = 9695 } # Lingzhi, Xiyang -> Shicheng + link = { autogenerated = yes imp = 9646 ck3 = 9693 } # Xiaqiu -> Hong + link = { autogenerated = yes imp = 8420 ck3 = 9692 } # Hong -> Qi + link = { autogenerated = yes imp = 8429 imp = 8542 ck3 = 9691 } # Fuli, Wu -> Fuli + link = { autogenerated = yes imp = 9057 ck3 = 9690 } # Dongcheng -> Zhongli + link = { autogenerated = yes imp = 2750 imp = 2749 imp = 2751 imp = 2753 imp = 8042 ck3 = 969 } # Palus Maeotica, Palus Maeotica, Palus Maeotica, Palus Maeotica, Tanais -> Sea of Azov + link = { autogenerated = yes imp = 9647 ck3 = 9689 } # Huailing -> Linhuai + link = { autogenerated = yes imp = 8540 imp = 8541 ck3 = 9688 } # Pengcheng, Lyu -> Pengcheng + link = { autogenerated = yes imp = 8560 ck3 = 9687 } # Tong -> Xiapi + link = { autogenerated = yes imp = 8538 imp = 8428 imp = 8539 ck3 = 9686 } # Ni, Teng, Xue -> b_xuzhou_teng + link = { autogenerated = yes imp = 5720 imp = 5719 imp = 5724 ck3 = 968 } # Mare Verginium, Mare Verginium, Mare Verginium -> Saint George's Channel + link = { autogenerated = yes imp = 5699 imp = 5712 ck3 = 967 } # Mare Britannicum, Mare Verginium -> English Channel + link = { autogenerated = yes imp = 5705 imp = 5706 ck3 = 966 } # Mare Britannicum, Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 7139 ck3 = 9659 } # Kanker -> Kanker + link = { autogenerated = yes imp = 11073 ck3 = 9658 } # Mawlaik -> Thaungdut + link = { autogenerated = yes imp = 4462 imp = 7367 ck3 = 9656 } # Modgagiri, Bhagdatpuram -> Burhi_Gandak + link = { autogenerated = yes imp = 7383 imp = 7322 ck3 = 9655 } # Kishan, Purnia -> Jalalghar + link = { autogenerated = yes imp = 7480 imp = 7481 ck3 = 9654 } # Saharsa, Supaul -> Bangaon + link = { autogenerated = yes imp = 7138 ck3 = 9652 } # Rayagada -> Rayagada + link = { autogenerated = yes imp = 7172 ck3 = 9651 } # Salipetake -> Gopalpur + link = { autogenerated = yes imp = 7082 ck3 = 9650 } # Samapa -> Ganjam + link = { autogenerated = yes imp = 5710 ck3 = 965 } # Fretum Gallicum -> Strait of Dover + link = { autogenerated = yes imp = 7080 ck3 = 9649 } # Dantapura -> Srikakulam + link = { autogenerated = yes imp = 7081 ck3 = 9648 ck3 = 1224 } # Kalinganagara -> Kalinganagara, Mandasa + link = { autogenerated = yes imp = 9795 ck3 = 9645 ck3 = 9646 } # Dalhi -> Htigyaing, Myedu + link = { autogenerated = yes imp = 9794 ck3 = 9643 ck3 = 9644 } # Taguang -> Takon, Katha + link = { autogenerated = yes imp = 11075 ck3 = 9641 } # Pai -> Singu + link = { autogenerated = yes imp = 9790 ck3 = 9635 ck3 = 9636 } # Monyo -> Tharrawaddy, Phyu + link = { autogenerated = yes imp = 9743 ck3 = 9631 ck3 = 9632 ck3 = 9633 } # Nathabu -> Negrais, Kusumi, Myaungmya + link = { autogenerated = yes imp = 6351 ck3 = 963 } # LAKE -> Vanern + link = { autogenerated = yes imp = 9797 ck3 = 9627 ck3 = 9628 ck3 = 9630 ck3 = 9637 } # Sadhuim -> Thaton, Muttina, Taikkala, Sittaung + link = { autogenerated = yes imp = 9741 imp = 9742 imp = 9802 ck3 = 9626 } # Pathein, Bogale, Twantay -> Bogale + link = { autogenerated = yes imp = 11074 ck3 = 9622 ck3 = 9624 ck3 = 826 ck3 = 9623 } # Thanbauk -> Maukkadaw, Kale, Manipur, Mingiu + link = { autogenerated = yes imp = 6349 ck3 = 962 } # LAKE -> Vattern + link = { autogenerated = yes imp = 9583 imp = 9582 ck3 = 9619 } # Mazong, Pulei -> Urtu Bulak + link = { autogenerated = yes imp = 10584 imp = 10583 ck3 = 9618 } # Tougong, Yiwu -> Chalamtum + link = { autogenerated = yes imp = 10586 ck3 = 9617 ck3 = 8709 } # Naomaohuzhen -> Minggam, TIANSHAN + link = { autogenerated = yes imp = 5601 ck3 = 9616 ck3 = 9615 } # Kusta -> Karghalik, Kehan + link = { autogenerated = yes imp = 6348 ck3 = 961 } # LAKE -> Hjalmaren + link = { autogenerated = yes imp = 6747 ck3 = 9604 ck3 = 9605 } # Wumi -> Andir, Niya + link = { autogenerated = yes imp = 6745 ck3 = 9603 } # Keriya -> Endere + link = { autogenerated = yes imp = 6748 ck3 = 9602 } # Ronglu -> Saca + link = { autogenerated = yes imp = 6749 ck3 = 9600 ck3 = 1442 } # Cherchen -> Bashkoyumal, Charkliq + link = { autogenerated = yes imp = 12812 imp = 12774 imp = 12788 imp = 12806 imp = 12811 imp = 12837 imp = 12779 imp = 12823 ck3 = 960 } # Oceanus Atlanticus, Mare Septentrionalis, Mare Septentrionalis, Mare Septentrionalis, Mare Septentrionalis, Mare Septentrionalis, Mare Septentrionalis, Oceanus Atlanticus -> Sea of Faereyar + link = { autogenerated = yes imp = 9801 ck3 = 9599 } # Yangon -> Krapan + link = { autogenerated = yes imp = 9800 ck3 = 9596 ck3 = 9597 ck3 = 9598 } # Pegu -> Pegu, Syriam, Dagon + link = { autogenerated = yes imp = 6347 ck3 = 959 } # LAKE -> Malaren + link = { autogenerated = yes imp = 9789 ck3 = 9588 ck3 = 9589 } # Sri Ksetra -> Sriksetra, Myede + link = { autogenerated = yes imp = 11069 ck3 = 9583 ck3 = 9584 } # Mrauk U -> Thabeik_Taung, Matamuhuri + link = { autogenerated = yes imp = 9780 ck3 = 9581 ck3 = 9582 } # Dulahazara -> Ramu, Dianga + link = { autogenerated = yes imp = 9781 ck3 = 9580 } # Dayawadi -> Akyab + link = { autogenerated = yes imp = 12845 imp = 12843 ck3 = 958 } # Lake Aaltokas, Lake Aaltokas -> Ladoga + link = { autogenerated = yes imp = 9783 ck3 = 9577 ck3 = 9586 ck3 = 9587 ck3 = 9585 } # Arakan -> Launggyet, Ramree, An, Sandoway + link = { autogenerated = yes imp = 9782 ck3 = 9576 ck3 = 9578 ck3 = 9579 } # Waithali -> Vaisali, Mrauk_U, Mahamuni + link = { autogenerated = yes imp = 9787 ck3 = 9572 ck3 = 9575 ck3 = 9634 ck3 = 9593 ck3 = 9595 } # Beikthano -> Shwemyo, Magwe, Taungdwingyi, Toungoo, Swa + link = { autogenerated = yes imp = 9791 ck3 = 9569 } # Halin -> Halin + link = { autogenerated = yes imp = 9792 ck3 = 9568 ck3 = 9639 } # Hnaw Kan -> Sagaing, Myinmu + link = { autogenerated = yes imp = 9788 ck3 = 9562 ck3 = 9565 ck3 = 9590 ck3 = 9592 ck3 = 9564 } # Taledan -> Minbu, Shwesettaw, Thayetmyo, Myanaung, Ngape + link = { autogenerated = yes imp = 9786 ck3 = 9560 ck3 = 9571 ck3 = 9573 ck3 = 9570 } # Binnaka -> Maingmaw, Yamethin, Binnaka, Yawnghwe + link = { autogenerated = yes imp = 11076 ck3 = 9558 ck3 = 9640 ck3 = 9561 ck3 = 9642 } # Mytinge -> Taungbyon, Madaya, Mekkhaya, Momeik + link = { autogenerated = yes imp = 9793 ck3 = 9556 ck3 = 9557 ck3 = 9559 } # Taungthaman -> Ava, Pinya, Kyaukse + link = { autogenerated = yes imp = 9796 ck3 = 9555 ck3 = 9647 } # Nyaunggan -> Powundaung, Hanlan + link = { autogenerated = yes imp = 11080 ck3 = 9554 } # Wagan -> Myitche + link = { autogenerated = yes imp = 11081 ck3 = 9553 ck3 = 9563 } # Salin -> Tantkyitaung, Salin + link = { autogenerated = yes imp = 9785 ck3 = 9550 ck3 = 9551 ck3 = 9552 ck3 = 9574 } # Ywa Htin Kon -> Pagan, Popa, Nyaung_U, Peikthanomyo + link = { autogenerated = yes imp = 9696 ck3 = 9548 } # Emunagaule -> Gurinai + link = { autogenerated = yes imp = 9122 ck3 = 9544 ck3 = 13131 ck3 = 13252 } # Nanye -> Anyuan, Wengyuan South, (Unknown) + link = { autogenerated = yes imp = 2730 ck3 = 954 } # Fretum Gaditanum -> Strait of Gibraltar + link = { autogenerated = yes imp = 8614 imp = 8604 imp = 8605 ck3 = 9538 } # Xianyang, Hudao, Qusou -> Wuyuan + link = { autogenerated = yes imp = 9572 imp = 8608 imp = 8613 ck3 = 9537 } # Qingyanze, Woye, Henan -> Wuluhai + link = { autogenerated = yes imp = 8254 ck3 = 9530 } # Zhangye -> Gaolan + link = { autogenerated = yes imp = 8268 ck3 = 9529 ck3 = 9531 } # Aowei -> Jingtai, Baiyin + link = { autogenerated = yes imp = 8263 ck3 = 9526 } # Haomen -> Wushengyi + link = { autogenerated = yes imp = 8261 ck3 = 9527 } # Yunjie -> Anning + link = { autogenerated = yes imp = 8250 ck3 = 9525 ck3 = 9535 } # Puhuai -> Dajing, Chaogetuhure + link = { autogenerated = yes imp = 8262 ck3 = 9524 ck3 = 9528 } # Lingju -> Tianzhu, Yongdeng + link = { autogenerated = yes imp = 8253 ck3 = 9523 ck3 = 9522 } # Cangsong -> Gulang, Huangcheng + link = { autogenerated = yes imp = 4588 imp = 2993 imp = 2994 imp = 2995 imp = 2997 imp = 4572 imp = 4573 imp = 4574 imp = 4575 imp = 4576 imp = 4577 imp = 4584 ck3 = 952 } # Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum -> Caspian Sea + link = { autogenerated = yes imp = 8248 imp = 8251 ck3 = 9518 } # Wuwei, Xuanwei -> Zhenfan + link = { autogenerated = yes imp = 8252 ck3 = 9517 ck3 = 9519 } # Xiutu -> Jinchang, Jiahe + link = { autogenerated = yes imp = 8247 ck3 = 9516 ck3 = 9521 ck3 = 8542 } # Lijian -> Fanhe, Liangzhou, GOBI DESERT + link = { autogenerated = yes imp = 8246 ck3 = 9515 } # Dichi -> Minle + link = { autogenerated = yes imp = 8245 ck3 = 9514 ck3 = 9509 } # Shandan -> Shandan, Alxa + link = { autogenerated = yes imp = 8243 imp = 8300 ck3 = 9513 } # Lide, Qiang Hills -> Ganzhou + link = { autogenerated = yes imp = 2733 imp = 2755 imp = 2757 imp = 2758 imp = 2762 imp = 2763 ck3 = 951 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea + link = { autogenerated = yes imp = 8242 ck3 = 9506 ck3 = 9507 ck3 = 9508 ck3 = 9510 } # Lucheng -> Yijinai, Juyan, Saihantaolai, Wentugaole + link = { autogenerated = yes imp = 9878 ck3 = 9505 } # Ruoshui -> Hangtian + link = { autogenerated = yes imp = 8238 ck3 = 9504 } # Huishui -> Heihe + link = { autogenerated = yes imp = 8244 ck3 = 9501 ck3 = 9503 ck3 = 9500 } # Zhaowu -> Linze, Pingchuan, Ganjun + link = { autogenerated = yes imp = 2732 imp = 2767 imp = 2769 ck3 = 950 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea + link = { autogenerated = yes imp = 8239 ck3 = 9499 ck3 = 9502 } # Biaoshi -> Sunan, Gaotai + link = { autogenerated = yes imp = 8240 ck3 = 9498 ck3 = 8536 } # Leguan -> Qingshui, TIBET IMPASSABLE + link = { autogenerated = yes imp = 8237 ck3 = 9494 ck3 = 9496 } # Suimi -> Suzhou, Jinta + link = { autogenerated = yes imp = 8236 ck3 = 9493 ck3 = 9495 } # Lufu -> Jiayuguan, Xiba + link = { autogenerated = yes imp = 8257 ck3 = 9491 ck3 = 9490 ck3 = 8535 } # Tianyi -> Chijin, Yalong, TIBET IMPASSABLE + link = { autogenerated = yes imp = 2779 imp = 2740 imp = 2741 imp = 6391 ck3 = 949 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, LAKE -> Black Sea + link = { autogenerated = yes imp = 9578 ck3 = 9488 } # Mingze -> Qidun + link = { autogenerated = yes imp = 8234 imp = 8233 ck3 = 9487 } # Ganqi, Chitou -> Yumen + link = { autogenerated = yes imp = 8232 ck3 = 9485 ck3 = 9486 } # Yuanquan -> Changma, Hedong + link = { autogenerated = yes imp = 8229 ck3 = 9484 } # Xiaogu -> Xihu + link = { autogenerated = yes imp = 9579 ck3 = 9483 ck3 = 9620 ck3 = 9489 ck3 = 8539 } # Kunlunzhang -> Hongliuyuan, Burgasutai, Mazongshan, GOBI DESERT + link = { autogenerated = yes imp = 8230 ck3 = 9482 } # Guangzhi -> Anxi + link = { autogenerated = yes imp = 2737 imp = 2738 imp = 2771 imp = 2773 imp = 2777 ck3 = 948 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Gulf of Varna + link = { autogenerated = yes imp = 8231 ck3 = 9478 ck3 = 9481 } # Ming an -> Yulin, Guazhou + link = { autogenerated = yes imp = 8228 ck3 = 9476 ck3 = 9477 ck3 = 9479 } # Dunhuang -> Shazhou, Mogao, Subei + link = { autogenerated = yes imp = 8227 ck3 = 9473 ck3 = 9472 } # Longle -> Yangguan, Aksay + link = { autogenerated = yes imp = 2623 imp = 2618 ck3 = 947 } # Propontis, Hellespontus -> Sea of Marmara + link = { autogenerated = yes imp = 12693 ck3 = 9464 } # Snyun -> Quqen + link = { autogenerated = yes imp = 12694 ck3 = 9463 ck3 = 9467 ck3 = 9465 } # Slwan -> Barkam, Kharsa, Trashingling + link = { autogenerated = yes imp = 12689 ck3 = 9461 ck3 = 9462 ck3 = 9449 } # Kywan -> Zamtang, Rongbur, Seretang + link = { autogenerated = yes imp = 12686 ck3 = 9455 ck3 = 9456 ck3 = 9457 } # Dzay -> Khyungchu, Sungqu, Choqu + link = { autogenerated = yes imp = 12685 ck3 = 9453 ck3 = 9437 ck3 = 9444 } # Mwans -> Zoige, Maqu, Tewo + link = { autogenerated = yes imp = 12688 ck3 = 9452 } # Twal -> Soxiq + link = { autogenerated = yes imp = 12687 ck3 = 9451 ck3 = 9450 } # Kruk -> Ngawa, Jigzhi + link = { autogenerated = yes imp = 2680 imp = 2584 imp = 2585 imp = 2586 ck3 = 945 } # Mare Cilicium, Mare Phoenicium, Mare Cilicium, Mare Cilicium -> Gulf of Alexandretta + link = { autogenerated = yes imp = 6444 imp = 10734 imp = 10735 imp = 10736 imp = 10737 ck3 = 944 } # Mare Aralense, $PROV6444$, $PROV6444$, $PROV6444$, $PROV6444$ -> Aral Sea + link = { autogenerated = yes imp = 12683 ck3 = 9438 } # Plin -> Murje + link = { autogenerated = yes imp = 12684 ck3 = 9436 ck3 = 9439 } # Msin -> Yegainnyin, Luqu + link = { autogenerated = yes imp = 12681 ck3 = 9433 ck3 = 9435 } # Cyar -> Gabasumdo, Zekog + link = { autogenerated = yes imp = 12679 ck3 = 9432 } # Kruw -> Mangra + link = { autogenerated = yes imp = 12678 ck3 = 9424 ck3 = 9425 ck3 = 9434 } # Mlay -> Jainca, Triga, Rebgong + link = { autogenerated = yes imp = 8260 ck3 = 9420 ck3 = 9440 } # Heguan -> Yadzi, Sangqu + link = { autogenerated = yes imp = 2609 imp = 2605 imp = 2614 imp = 2620 imp = 6437 imp = 7906 imp = 7907 ck3 = 942 } # Mare Aegaeum, Fretum Carysteum, Fretum Artemisium, Mare Aegaeum, Mare Aegaeum, Pagasaeus Sinus, Sinus Malianus -> Aegean Sea + link = { autogenerated = yes imp = 8258 ck3 = 9417 ck3 = 9419 } # Yunwu -> Chuankou, Kuozhou + link = { autogenerated = yes imp = 8267 ck3 = 9416 ck3 = 9418 ck3 = 9512 } # Poqiang -> Ledu, Shanzhou, Semnyi + link = { autogenerated = yes imp = 8266 ck3 = 9415 ck3 = 9422 ck3 = 9413 } # Anyi -> Gonlung, Xining, Datong + link = { autogenerated = yes imp = 8265 ck3 = 9414 ck3 = 9421 ck3 = 9411 ck3 = 9412 ck3 = 9423 } # Linqiang -> Tongkor, Rusar, Haeyan, Serkok, Qabqa + link = { autogenerated = yes imp = 2679 imp = 2677 ck3 = 941 } # Mare Phoenicium, Mare Phoenicium -> Coast of Cyprus + link = { autogenerated = yes imp = 9747 ck3 = 9405 ck3 = 9406 ck3 = 9426 ck3 = 9407 } # Hongshanzuinanpo -> Cakha, Fuqi, Changzhi, Temqen + link = { autogenerated = yes imp = 9754 ck3 = 9400 ck3 = 9388 ck3 = 9398 } # Geermu -> Dagelhe, Ragbangadung, Zhiteu + link = { autogenerated = yes imp = 2669 imp = 2580 imp = 2581 ck3 = 940 } # Mare Phoenicium, Mare Phoenicium, Mare Phoenicium -> Coast of Jerusalem + link = { autogenerated = yes imp = 9758 ck3 = 9399 ck3 = 9404 ck3 = 9468 } # Delingha -> Derlenka, Ulam, Conak + link = { autogenerated = yes imp = 9755 ck3 = 9396 } # Kunlun -> Nagormo + link = { autogenerated = yes imp = 2667 imp = 2578 imp = 7673 imp = 7679 ck3 = 939 } # Mare Aegyptium, Delta Nili, Nile, the Pelusiac, Nile, the Phatnitic -> Nile Delta + link = { autogenerated = yes imp = 2662 imp = 2576 ck3 = 938 } # Mare Aegyptium, Mare Aegyptium -> Libyan Sea + link = { autogenerated = yes imp = 2663 imp = 2597 imp = 2601 imp = 2660 ck3 = 937 } # Mare Aegyptium, Mare Aegyptium, Mare Aegyptium, Mare Aegyptium -> Sea of Crete + link = { autogenerated = yes imp = 2594 imp = 2590 imp = 2592 imp = 2593 ck3 = 936 } # Mare Icarium, Mare Icarium, Mare Carpathium, Mare Icarium -> Aegean Sea + link = { autogenerated = yes imp = 12698 ck3 = 9343 ck3 = 9344 ck3 = 9326 ck3 = 9349 } # Rmat -> Dege, Palpung, Katok, Lingtsang + link = { autogenerated = yes imp = 12696 ck3 = 9338 ck3 = 9341 ck3 = 9342 } # Pryap -> Niba, Larung, Sertar + link = { autogenerated = yes imp = 12695 ck3 = 9337 ck3 = 9334 ck3 = 9335 ck3 = 9339 } # Skawn -> Draggo, Dawu, Nyatsho, Jalhaxi + link = { autogenerated = yes imp = 11497 ck3 = 933 } # Sirdis -> Roslavl + link = { autogenerated = yes imp = 9127 ck3 = 9329 ck3 = 9458 ck3 = 12994 ck3 = 13233 } # Yichun -> Yichun, Pingxiang, Anfu South, (Unknown) + link = { autogenerated = yes imp = 7174 ck3 = 932 } # Jajatipura -> Ratnagiri + link = { autogenerated = yes imp = 12699 ck3 = 9310 ck3 = 9312 ck3 = 9311 ck3 = 9313 } # Dum -> Bolo, Yendum, Bumgye, Rongzhub + link = { autogenerated = yes imp = 11512 ck3 = 931 } # Dhenka -> Athgarh + link = { autogenerated = yes imp = 12700 ck3 = 9308 ck3 = 9309 ck3 = 9352 } # Tsan -> Jomda, Derdoin, Pelyul + link = { autogenerated = yes imp = 12703 ck3 = 9304 } # Rnamwan -> Nangqen + link = { autogenerated = yes imp = 12701 ck3 = 9303 ck3 = 9305 ck3 = 9306 } # Glyank -> Lhatok, Nyangla, Gyegumdo + link = { autogenerated = yes imp = 12702 ck3 = 9300 ck3 = 9301 ck3 = 9302 ck3 = 9284 } # Muk -> Riwoqe, Karub, Qamdo, Yiqen + link = { autogenerated = yes imp = 12708 ck3 = 9293 ck3 = 9294 ck3 = 9296 } # Tsak -> Biru, Sog, Arxog + link = { autogenerated = yes imp = 12706 ck3 = 9292 ck3 = 9288 } # Mowt -> Xamqu, Jaggang + link = { autogenerated = yes imp = 12707 ck3 = 9291 ck3 = 9295 ck3 = 9298 } # Hyam -> Damdoi, Riwar, Lhaxi + link = { autogenerated = yes imp = 12704 ck3 = 9290 ck3 = 9299 } # Sdik -> Qizhu, Dengqen + link = { autogenerated = yes imp = 12705 ck3 = 9287 ck3 = 9289 } # Plyum -> Banbar, Lhorong + link = { autogenerated = yes imp = 7086 ck3 = 928 } # Tosali -> Konarak + link = { autogenerated = yes imp = 5652 ck3 = 9277 ck3 = 9279 ck3 = 9286 } # Pulong -> Zhamog, Bome, Qundo + link = { autogenerated = yes imp = 5646 ck3 = 9275 ck3 = 9276 } # Tsosong -> Nyingchi, Lunang + link = { autogenerated = yes imp = 5657 ck3 = 9274 } # Gong -> Pagsum + link = { autogenerated = yes imp = 5660 ck3 = 9273 ck3 = 8553 } # Supiyi -> Gongbo, HIMALAYA + link = { autogenerated = yes imp = 5643 ck3 = 9271 } # Buchu -> Burqug + link = { autogenerated = yes imp = 5662 ck3 = 9270 } # Tufan -> Lhari + link = { autogenerated = yes imp = 11509 ck3 = 927 ck3 = 929 } # Sisupalgarh -> Bhubaneswar, Dhauli + link = { autogenerated = yes imp = 5663 imp = 5661 ck3 = 9269 } # Naksho, Rabten -> Lingti + link = { autogenerated = yes imp = 5659 ck3 = 9267 ck3 = 9268 } # Fugo -> Paga, Codoi + link = { autogenerated = yes imp = 5656 ck3 = 9266 ck3 = 9272 } # Nyang -> Mila, Nyang + link = { autogenerated = yes imp = 5647 ck3 = 9265 } # Drena -> Gedang + link = { autogenerated = yes imp = 7455 ck3 = 926 } # Amrakuta -> Soubhagyapura + link = { autogenerated = yes imp = 5664 ck3 = 9255 ck3 = 9256 ck3 = 9257 ck3 = 9354 } # Ronglung -> Nagqu, Lhomar, Taksar, Nyainrong + link = { autogenerated = yes imp = 4471 imp = 4468 imp = 5363 ck3 = 925 } # Tigowa, Nachna-Kuthara, IP 364 -> Bahoriband + link = { autogenerated = yes imp = 5640 ck3 = 9246 ck3 = 9247 ck3 = 9250 } # Nyenchen -> Doilungdeqen, Nyemo, Yangpachen + link = { autogenerated = yes imp = 5641 ck3 = 9245 } # Yokang -> Quxu + link = { autogenerated = yes imp = 5620 ck3 = 9243 } # Katsel -> Ngarnang + link = { autogenerated = yes imp = 5619 ck3 = 9242 ck3 = 9244 ck3 = 9248 ck3 = 9249 } # Tanglha -> Lhunzhub, Reting, Damquka, Nyinhzhong + link = { autogenerated = yes imp = 5658 ck3 = 9240 ck3 = 9241 } # Lum -> Kunggar, Drigung + link = { autogenerated = yes imp = 5618 ck3 = 9237 ck3 = 9238 } # Lhasa -> Lhasa, Potala + link = { autogenerated = yes imp = 5649 ck3 = 9235 } # Tsangpo -> Nang + link = { autogenerated = yes imp = 5655 ck3 = 9234 ck3 = 9236 ck3 = 9239 } # Shingnak -> Daklha_Gampo, Sangri, Gyama + link = { autogenerated = yes imp = 5622 ck3 = 9232 } # Qoide -> Gonggar + link = { autogenerated = yes imp = 5648 ck3 = 9231 ck3 = 9233 } # Tandruk -> Qusum, Gyaca + link = { autogenerated = yes imp = 5621 ck3 = 9227 ck3 = 9228 ck3 = 9230 } # Samye -> Tradruk, Samye, Zetang + link = { autogenerated = yes imp = 5637 ck3 = 9226 } # Chimpyu -> Taktse + link = { autogenerated = yes imp = 5632 ck3 = 9224 ck3 = 8550 } # Khoting -> Lhozhag, HIMALAYA + link = { autogenerated = yes imp = 7068 ck3 = 922 ck3 = 1272 } # Bhurhikara -> Pali, Ratanpur + link = { autogenerated = yes imp = 7169 ck3 = 921 } # Pali -> Savarinarayana + link = { autogenerated = yes imp = 5630 ck3 = 9209 ck3 = 9210 } # Zhongzhong -> Namling, Tobgyai + link = { autogenerated = yes imp = 5626 ck3 = 9207 ck3 = 9211 } # Tsangdram -> Tongmoin, Qingtu + link = { autogenerated = yes imp = 5623 ck3 = 9206 ck3 = 9208 } # Trompagan -> Quog, Leba + link = { autogenerated = yes imp = 5607 ck3 = 9205 ck3 = 9214 } # Kyungchen Dzong -> Goingyibug, Sinya + link = { autogenerated = yes imp = 5610 ck3 = 9203 } # Kyangpu -> Rusar + link = { autogenerated = yes imp = 5613 ck3 = 9202 } # Nambo -> Qulho + link = { autogenerated = yes imp = 5605 ck3 = 9201 } # Tago -> Caze + link = { autogenerated = yes imp = 5589 ck3 = 9200 } # Bhoma -> Sangsang + link = { autogenerated = yes imp = 7318 ck3 = 920 } # Pandhurna -> Gawilgarh + link = { autogenerated = yes imp = 12612 ck3 = 92 ck3 = 94 ck3 = 95 } # Koski -> HAPSAL, REVAL, HARJUMAA + link = { autogenerated = yes imp = 5639 ck3 = 9196 ck3 = 9223 ck3 = 9251 } # Durbye -> Rinbung, Nagarze, Qewa + link = { autogenerated = yes imp = 5625 ck3 = 9194 ck3 = 9188 ck3 = 9191 } # Nesar -> Xigaze, Kamba, Se + link = { autogenerated = yes imp = 5638 ck3 = 9193 ck3 = 9197 ck3 = 9198 } # Kyungho -> Banam, Gyangze, Nyamo + link = { autogenerated = yes imp = 5635 ck3 = 9192 ck3 = 9195 } # Lhodrak -> Kamru, Kangmar + link = { autogenerated = yes imp = 7422 imp = 7313 ck3 = 919 } # Betul, Kalumukha -> Handia + link = { autogenerated = yes imp = 5627 ck3 = 9189 ck3 = 9199 ck3 = 9190 } # Dyuni -> Lhaze, Kagar, Sagya + link = { autogenerated = yes imp = 5586 ck3 = 9181 ck3 = 9180 ck3 = 9183 ck3 = 9184 } # Mangyul Takmo Dzong -> Gyirong, Kungtang, Tsongdu, Mainpu + link = { autogenerated = yes imp = 7457 ck3 = 918 } # Handia -> Hoshangabad + link = { autogenerated = yes imp = 5633 ck3 = 9179 ck3 = 9149 ck3 = 9154 } # Tsoho -> Kurtoed, Kurmaed, Tawang + link = { autogenerated = yes imp = 5650 ck3 = 9172 } # Dodong -> Medog + link = { autogenerated = yes imp = 5644 ck3 = 9171 } # Kongpo -> Bokthang + link = { autogenerated = yes imp = 5651 ck3 = 9170 } # Shyri -> Mainling + link = { autogenerated = yes imp = 5645 ck3 = 9169 } # Lishan -> Wolong + link = { autogenerated = yes imp = 5654 ck3 = 9163 ck3 = 9162 } # Kongyul -> Yingkiong, Tuting + link = { autogenerated = yes imp = 4477 ck3 = 916 } # Tripura -> Bohani + link = { autogenerated = yes imp = 5653 ck3 = 9152 ck3 = 9153 } # Soso -> Lhunze, Yumai + link = { autogenerated = yes imp = 5636 ck3 = 9151 ck3 = 9225 ck3 = 9229 } # Chongye -> Nariyong, Comai, Yumbu_Lakhang + link = { autogenerated = yes imp = 5642 ck3 = 9150 } # Ritang -> Cona + link = { autogenerated = yes imp = 7454 ck3 = 915 } # Mandla -> Banjar + link = { autogenerated = yes imp = 7347 ck3 = 9148 } # Bhallaka -> Pemagatsel + link = { autogenerated = yes imp = 5634 ck3 = 9145 ck3 = 9146 ck3 = 9147 } # Mon Shampo -> Bumthang, Lhuentse, Mongar + link = { autogenerated = yes imp = 7653 ck3 = 9144 } # Manasa Kamata -> Zhemgang + link = { autogenerated = yes imp = 7346 ck3 = 9142 ck3 = 9139 } # Bhargava -> Sarpang, Daga + link = { autogenerated = yes imp = 5631 ck3 = 9140 ck3 = 9141 ck3 = 9138 ck3 = 9143 } # Mon Bumtang -> Punakha, Gasa, Thimpu, Trongsa + link = { autogenerated = yes imp = 7487 ck3 = 9132 ck3 = 9119 } # Bijalpura -> Dhulikhel, Okhaldhunga + link = { autogenerated = yes imp = 4459 ck3 = 9131 ck3 = 9114 ck3 = 9130 } # Selanpura -> Lalitpur, Dolakha, Kirtipur + link = { autogenerated = yes imp = 7364 ck3 = 913 } # Manbhum -> Kashipur + link = { autogenerated = yes imp = 5628 ck3 = 9126 ck3 = 9136 ck3 = 9120 ck3 = 9121 } # Paro Kerchu -> Dhankuta, Yangwarok, Khotang, Bhojpur + link = { autogenerated = yes imp = 7656 ck3 = 9125 ck3 = 9127 ck3 = 9128 } # Damak -> Ilam, Panchthar, Darjeeling + link = { autogenerated = yes imp = 4464 ck3 = 9124 } # Devaprastha -> Gograha + link = { autogenerated = yes imp = 4460 ck3 = 9122 } # Sugauna -> Rajbiraj + link = { autogenerated = yes imp = 7486 ck3 = 9118 } # Mithila -> Janakpur + link = { autogenerated = yes imp = 5587 ck3 = 9116 ck3 = 9117 ck3 = 9113 } # Chomolangma -> Kathmandu, Bhaktapur, Gorkha + link = { autogenerated = yes imp = 7384 ck3 = 9115 ck3 = 9123 } # Rampurwa -> Hetauda, Bharatpur + link = { autogenerated = yes imp = 5584 ck3 = 9110 ck3 = 9109 } # Tshongdu -> Gulmi, Lumbini + link = { autogenerated = yes imp = 11517 imp = 11518 ck3 = 911 } # Rourkela, Rajgangpur -> Ratu + link = { autogenerated = yes imp = 5573 ck3 = 9107 ck3 = 9096 } # Terai -> Gulariya, Godawari + link = { autogenerated = yes imp = 5572 ck3 = 9103 ck3 = 9102 } # Upper Terai -> Dullu, Jumla + link = { autogenerated = yes imp = 5574 ck3 = 9100 ck3 = 9099 ck3 = 9101 } # Pumaring -> Simikot, Bajura, Sinja + link = { autogenerated = yes imp = 11537 ck3 = 910 } # Bokaro -> Kenduli + link = { autogenerated = yes imp = 7386 ck3 = 9090 } # Badari -> Devalgarh + link = { autogenerated = yes imp = 11535 imp = 7475 ck3 = 909 } # Parsodih, Mau -> Palamau + link = { autogenerated = yes imp = 5611 ck3 = 9084 } # Gyulo -> Gyesarco + link = { autogenerated = yes imp = 5590 imp = 5606 ck3 = 9083 } # Tsanghla, Yartsang -> Kyakyaru + link = { autogenerated = yes imp = 5588 ck3 = 9082 ck3 = 9182 } # Lhayul -> Lhagcang, Chagne + link = { autogenerated = yes imp = 5583 ck3 = 9081 } # Serip Drukmo Dzong -> Changgo + link = { autogenerated = yes imp = 5585 ck3 = 9080 ck3 = 9079 ck3 = 9105 ck3 = 9106 ck3 = 9111 } # Pakpa -> Muktinath, Manthang, Gautamkot, Rukum, Kaski + link = { autogenerated = yes imp = 11534 ck3 = 908 } # Daltonganj -> Betla + link = { autogenerated = yes imp = 5580 ck3 = 9078 } # Mapam -> Yagra + link = { autogenerated = yes imp = 5578 ck3 = 9076 ck3 = 9077 } # Khakyor -> Baryang, Penchi + link = { autogenerated = yes imp = 5579 ck3 = 9075 } # Tsina -> Labrang + link = { autogenerated = yes imp = 5612 ck3 = 9073 ck3 = 9074 } # Supima -> Barma, Lunggar + link = { autogenerated = yes imp = 5616 ck3 = 9072 } # Jangteng -> Ringtor + link = { autogenerated = yes imp = 5581 ck3 = 9071 } # Yumtso -> Argogco + link = { autogenerated = yes imp = 5575 ck3 = 9068 ck3 = 9069 } # Gyangri -> Teglakar, Hor + link = { autogenerated = yes imp = 5615 ck3 = 9059 ck3 = 9070 ck3 = 9060 } # Barma -> Xungba, Cuonaco, Chaka + link = { autogenerated = yes imp = 5582 ck3 = 9057 } # Sangya -> Zoco + link = { autogenerated = yes imp = 5576 ck3 = 9055 ck3 = 9086 } # Kailash -> Kyunglung, Monicer + link = { autogenerated = yes imp = 5570 ck3 = 9054 ck3 = 9056 ck3 = 9006 } # Khayu -> Busin, Gar, Demchok + link = { autogenerated = yes imp = 5577 ck3 = 9053 } # Nguot -> Tholing + link = { autogenerated = yes imp = 5569 ck3 = 9051 ck3 = 9052 ck3 = 9044 ck3 = 9050 } # Tsaparang -> Trashigang, Tsaparang, Nako, Kamru + link = { autogenerated = yes imp = 4457 ck3 = 904 } # Lumbini -> Amorha + link = { autogenerated = yes imp = 5562 ck3 = 9038 ck3 = 9039 } # Rutok -> Risum, Rebang + link = { autogenerated = yes imp = 5563 ck3 = 9037 ck3 = 9040 ck3 = 9041 } # Rabzhi Senge Dzong -> Rutog, Changmar, Memar + link = { autogenerated = yes imp = 5591 ck3 = 9036 ck3 = 3150 } # Leh -> Chungtash, KUNLUNSHAN + link = { autogenerated = yes imp = 7276 ck3 = 903 } # Ust -> Afrasiyab + link = { autogenerated = yes imp = 5566 imp = 5375 ck3 = 9029 } # Lashang, IP 376 -> Haldi + link = { autogenerated = yes imp = 5592 ck3 = 9026 ck3 = 9027 } # Skardo -> Shigar, Askole + link = { autogenerated = yes imp = 5559 ck3 = 9022 ck3 = 9028 } # Tachok Dzong -> Tolti, Khaplu + link = { autogenerated = yes imp = 5593 ck3 = 9021 ck3 = 9024 } # Darada -> Roundu, Astore + link = { autogenerated = yes imp = 5598 ck3 = 9020 ck3 = 9023 ck3 = 9025 } # Mulbek -> Skardu, Gultari, Minimarg + link = { autogenerated = yes imp = 5558 ck3 = 9018 ck3 = 9019 ck3 = 9004 ck3 = 9011 ck3 = 9013 ck3 = 9015 } # Achuk -> Purig, Dras, Khalatse, Turtuk, Padum, Lingshet + link = { autogenerated = yes imp = 5565 ck3 = 9012 ck3 = 9035 } # Aparing -> Dipsang, Sumdo + link = { autogenerated = yes imp = 5567 ck3 = 9008 ck3 = 9030 } # Tiret -> Chusul, Khurnak + link = { autogenerated = yes imp = 5561 ck3 = 9005 ck3 = 9010 ck3 = 9031 } # Ladakh -> Tangtse, Panamik, Nischu + link = { autogenerated = yes imp = 5564 ck3 = 9003 ck3 = 9014 ck3 = 9017 } # Echen Khar -> Shey, Zangla, Karzok + link = { autogenerated = yes imp = 5560 ck3 = 9002 ck3 = 9009 ck3 = 3123 } # Sindhu -> Leh, Diskit, KUNLUNSHAN + link = { autogenerated = yes imp = 11167 ck3 = 9000 } # LAKE -> Lop Nur Lake + link = { autogenerated = yes imp = 12610 ck3 = 90 ck3 = 93 ck3 = 99 } # Anoppi -> MUHU, LEAL, PARNU + link = { autogenerated = yes imp = 2175 ck3 = 9 } # Venicnia Australis -> DONEGAL + link = { autogenerated = yes imp = 9130 ck3 = 8990 ck3 = 13042 } # Nanchang -> Nanchang, Xinwu Southeast + link = { autogenerated = yes imp = 9124 ck3 = 8988 ck3 = 8989 } # Poyi -> Jingde, Yugan + link = { autogenerated = yes imp = 9123 ck3 = 8987 } # Qiaoyang -> Duchang + link = { autogenerated = yes imp = 9126 ck3 = 8986 } # Chaisang -> Xunyang + link = { autogenerated = yes imp = 8993 imp = 9642 ck3 = 8985 } # Meng, Dai -> Luoshan + link = { autogenerated = yes imp = 9641 ck3 = 8983 ck3 = 8984 ck3 = 13196 ck3 = 13198 } # Zhongwu -> Yiyang, Zhongshan, (Unknown), (Unknown) + link = { autogenerated = yes imp = 8996 ck3 = 8976 ck3 = 8977 } # Zhu -> Qishui, Qichun + link = { autogenerated = yes imp = 8991 ck3 = 8973 ck3 = 8974 ck3 = 13195 } # Xiling -> Huanggang, Macheng, (Unknown) + link = { autogenerated = yes imp = 12497 ck3 = 897 } # Bobuv -> Iletsk + link = { autogenerated = yes imp = 9036 ck3 = 8967 } # Chen -> Zixing + link = { autogenerated = yes imp = 9639 ck3 = 8965 ck3 = 13142 ck3 = 8964 } # Nanping -> Chen, Ningxiang, Linwu + link = { autogenerated = yes imp = 9042 ck3 = 8962 ck3 = 13258 } # Guiyang -> Lianshan, (Unknown) + link = { autogenerated = yes imp = 9037 ck3 = 8961 ck3 = 8963 } # Yizhang -> Guiyang, Yangshan + link = { autogenerated = yes imp = 9158 imp = 9033 ck3 = 8960 } # Xiemu, Impassable -> Jianghua + link = { autogenerated = yes imp = 9030 imp = 9024 ck3 = 8956 } # Quanling, Taoyang -> Lingling + link = { autogenerated = yes imp = 9022 ck3 = 8952 } # Zhaoling -> Shaoyang + link = { autogenerated = yes imp = 8562 ck3 = 8950 } # Huaipu -> Shanyang + link = { autogenerated = yes imp = 12389 ck3 = 895 } # Urunkwe -> Kurgan + link = { autogenerated = yes imp = 9648 ck3 = 8949 } # Fuling -> Xuyi + link = { autogenerated = yes imp = 9659 ck3 = 8946 } # Wan -> Wangjiang + link = { autogenerated = yes imp = 9064 ck3 = 8944 } # Juchao -> Huaining + link = { autogenerated = yes imp = 9065 imp = 9660 ck3 = 8943 } # Songyang, Longshu -> Tongcheng + link = { autogenerated = yes imp = 9658 ck3 = 8941 } # Junqiu -> Zhen + link = { autogenerated = yes imp = 9063 imp = 9067 ck3 = 8940 } # Shu, Xiangan -> Lujiang + link = { autogenerated = yes imp = 9053 ck3 = 8938 } # Liyang -> Liyang + link = { autogenerated = yes imp = 9052 ck3 = 8936 } # Jianyang -> Qingliu + link = { autogenerated = yes imp = 8558 ck3 = 8935 ck3 = 9707 } # Dongyang -> Qingliu, Chuzhou2_Chuzhou + link = { autogenerated = yes imp = 9649 ck3 = 8934 ck3 = 8948 ck3 = 8951 } # Gaoyou -> Tianchang, Baoying, Huaiyin + link = { autogenerated = yes imp = 8555 ck3 = 8933 } # Guangling -> Hangyang + link = { autogenerated = yes imp = 8557 ck3 = 8932 ck3 = 8947 } # Yan -> Hailing, Yancheng + link = { autogenerated = yes imp = 9043 ck3 = 8903 } # Hankuang -> Hankuang + link = { autogenerated = yes imp = 9045 ck3 = 8902 ck3 = 8904 } # Zhenyang -> Zhenyang, Wengyuan + link = { autogenerated = yes imp = 9777 ck3 = 8896 ck3 = 13132 } # Huaian -> Haifeng, Leixiang + link = { autogenerated = yes imp = 8721 ck3 = 8891 } # Zhongyi -> Qingchi + link = { autogenerated = yes imp = 8452 imp = 8450 imp = 8451 ck3 = 8890 } # Shouyuan, Jiyang, Pu -> Yuanju + link = { autogenerated = yes imp = 12468 ck3 = 889 } # Olan -> Ural + link = { autogenerated = yes imp = 8467 imp = 8466 ck3 = 8889 } # Judu, Zhuzao -> Nanhua + link = { autogenerated = yes imp = 8476 imp = 8462 imp = 8463 ck3 = 8888 } # Anyang, Dingtao, Jiyin -> Jiyin + link = { autogenerated = yes imp = 8449 ck3 = 8887 } # Waihuang -> Kaocheng + link = { autogenerated = yes imp = 8435 ck3 = 8886 } # Puyang -> Puyang + link = { autogenerated = yes imp = 8443 imp = 8437 imp = 8439 imp = 8671 imp = 8673 ck3 = 8885 } # Dong Wuyang, Guan, Pingyi, Yuancheng, Yinan -> Juancheng + link = { autogenerated = yes imp = 8445 imp = 8444 ck3 = 8884 } # Liaocheng, Qingshi -> Shouzhang + link = { autogenerated = yes imp = 8442 ck3 = 8883 } # E -> Xuchang + link = { autogenerated = yes imp = 8468 imp = 8464 ck3 = 8882 } # Chengyang, Cheng -> Juye + link = { autogenerated = yes imp = 8533 imp = 8472 ck3 = 8880 } # Qufu, Pingyang -> Qufu + link = { autogenerated = yes imp = 8480 ck3 = 8879 ck3 = 13170 ck3 = 13171 } # Bo -> Qianfeng, (Unknown), (Unknown) + link = { autogenerated = yes imp = 8484 imp = 8494 ck3 = 8878 } # Lu, Lixia -> Laiwu + link = { autogenerated = yes imp = 8488 ck3 = 8877 } # Pingyuan -> Licheng + link = { autogenerated = yes imp = 8491 ck3 = 8876 } # Maiqiu -> Linyi + link = { autogenerated = yes imp = 8493 imp = 8492 ck3 = 8875 } # Shi, Pingling -> Jinan + link = { autogenerated = yes imp = 8489 ck3 = 8874 } # Gaotang -> Yucheng + link = { autogenerated = yes imp = 8727 ck3 = 8873 } # Zhongping -> Dihe + link = { autogenerated = yes imp = 8719 ck3 = 8872 } # Raoan -> Yanci + link = { autogenerated = yes imp = 8550 imp = 8548 imp = 8551 ck3 = 8870 } # Cheng, Lanling, Fuyang -> b_yizhou_cheng + link = { autogenerated = yes imp = 8556 ck3 = 8869 ck3 = 8931 } # Haiyang -> Linyi, Hai'an + link = { autogenerated = yes imp = 8547 imp = 8481 imp = 8534 imp = 8536 ck3 = 8868 } # Wucheng, Wuyang, Bian, Hexiang -> Fei + link = { autogenerated = yes imp = 8485 imp = 8487 ck3 = 8867 } # Qi, Chai -> Xintai + link = { autogenerated = yes imp = 8482 imp = 8535 imp = 8483 ck3 = 8866 } # Gai, Fei, Ying -> Yishui + link = { autogenerated = yes imp = 8490 ck3 = 8865 } # Leling -> Zouping + link = { autogenerated = yes imp = 8498 imp = 8501 ck3 = 8864 } # Qiansheng, Di -> Changshan + link = { autogenerated = yes imp = 8496 imp = 8495 imp = 8503 ck3 = 8863 } # Yuling, Liangzou, Gaowan -> Zichuan + link = { autogenerated = yes imp = 8499 imp = 8500 ck3 = 8862 } # Liao, Lean -> Bochang + link = { autogenerated = yes imp = 8506 imp = 8505 ck3 = 8861 } # Juding, Ju -> Shouguang + link = { autogenerated = yes imp = 8507 imp = 8504 imp = 8508 imp = 8497 ck3 = 8860 } # Linqu, Linzi, Changcheng, Banyang -> Linqu + link = { autogenerated = yes imp = 12463 ck3 = 886 } # Kor -> Perm + link = { autogenerated = yes imp = 8502 ck3 = 8859 } # Bochang -> Beihai + link = { autogenerated = yes imp = 8479 ck3 = 8857 } # Chengyang -> Ju + link = { autogenerated = yes imp = 8526 ck3 = 8856 } # Ji -> Zhucheng + link = { autogenerated = yes imp = 8509 imp = 8513 imp = 8520 imp = 8511 ck3 = 8855 } # Gaomi, Chunyu, Xiami, Duchang -> Gaomi + link = { autogenerated = yes imp = 8519 imp = 8530 ck3 = 8854 } # Jimo, Gaoyu -> Jimo + link = { autogenerated = yes imp = 8515 ck3 = 8853 } # Huang -> Ye + link = { autogenerated = yes imp = 8529 imp = 8521 imp = 8522 ck3 = 8852 } # Changguang, Guanyang, Zoulu -> Changyang + link = { autogenerated = yes imp = 8517 ck3 = 8850 } # Dongmou -> b_something_muping + link = { autogenerated = yes imp = 4433 imp = 7476 ck3 = 885 } # Kitagiri, Bhadohi -> Bhadohi + link = { autogenerated = yes imp = 8518 ck3 = 8849 } # Changyang -> b_something_wendeng + link = { autogenerated = yes imp = 9077 ck3 = 8846 ck3 = 8847 ck3 = 8848 } # Guzhang -> Liyang, Ningguo, Taiping + link = { autogenerated = yes imp = 9099 imp = 9097 ck3 = 8845 } # Linhai, Huipu -> Songxi + link = { autogenerated = yes imp = 11068 ck3 = 8844 ck3 = 12996 } # Nanpu -> An, Yanshan + link = { autogenerated = yes imp = 9109 ck3 = 8843 ck3 = 13220 } # Wuxing -> Pucheng, (Unknown) + link = { autogenerated = yes imp = 11066 ck3 = 8837 ck3 = 8838 } # Minzhong -> Wucheng, Dongyang + link = { autogenerated = yes imp = 9102 ck3 = 8832 ck3 = 8835 } # Luoyang -> Yongjia, Xujiang + link = { autogenerated = yes imp = 9101 ck3 = 8830 ck3 = 8831 ck3 = 10291 ck3 = 13214 } # Dong'ou -> Huangyan, Yuecheng, Linhai, (Unknown) + link = { autogenerated = yes imp = 7370 ck3 = 883 } # Garzapur -> Gadhipuri + link = { autogenerated = yes imp = 9091 ck3 = 8829 ck3 = 8839 } # Juwu -> Zhuji, Puyang + link = { autogenerated = yes imp = 9089 ck3 = 8828 } # Kuaiji -> Kuaiji + link = { autogenerated = yes imp = 11082 ck3 = 8827 ck3 = 10262 } # Zhuji -> Yuyao, Taining + link = { autogenerated = yes imp = 9092 imp = 9096 ck3 = 8826 } # Yin, Impassable -> Xiangshan + link = { autogenerated = yes imp = 11064 ck3 = 8823 ck3 = 8824 } # Jianshan -> Ningde, Lianjiang + link = { autogenerated = yes imp = 7478 ck3 = 882 ck3 = 884 } # Rivilganj -> Chapra, Haldi2 + link = { autogenerated = yes imp = 9106 imp = 9108 ck3 = 8818 } # Jianan, Nanping -> Jian'an + link = { autogenerated = yes imp = 11114 ck3 = 8813 ck3 = 8842 } # Yongyan -> Sha, Zhenghe + link = { autogenerated = yes imp = 11115 ck3 = 8812 ck3 = 8810 } # Liancheng -> Ninghua, Changting + link = { autogenerated = yes imp = 7477 ck3 = 881 } # Saran -> Pava + link = { autogenerated = yes imp = 11110 ck3 = 8808 ck3 = 13250 } # Chengxiang -> Shanghang, (Unknown) + link = { autogenerated = yes imp = 11108 ck3 = 8807 ck3 = 8803 ck3 = 8814 ck3 = 13239 } # Minxi -> Longyan, Anxi, Youxi, (Unknown) + link = { autogenerated = yes imp = 4448 ck3 = 880 } # Vaishali -> Kesaria + link = { autogenerated = yes imp = 12606 ck3 = 88 ck3 = 89 ck3 = 91 } # Soodak -> ARENSBURG, SONEBURG, DAGO + link = { autogenerated = yes imp = 1060 ck3 = 8798 } # Ioulia Libika -> Prades in Rossello + link = { autogenerated = yes imp = 1059 ck3 = 8797 } # Urgellum -> Llivia + link = { autogenerated = yes imp = 1057 ck3 = 8796 } # Lesos -> Agramunt + link = { autogenerated = yes imp = 1066 ck3 = 8795 } # Mendiculeia -> Monzon + link = { autogenerated = yes imp = 1075 ck3 = 8794 } # Fibularia -> Biescas + link = { autogenerated = yes imp = 1080 ck3 = 8793 } # Segia -> Uncastillo + link = { autogenerated = yes imp = 4443 ck3 = 879 } # Nadikagama -> Hajipur + link = { autogenerated = yes imp = 2083 ck3 = 8780 } # Luguvalium -> Wigton + link = { autogenerated = yes imp = 7360 ck3 = 878 } # Sita -> Darbhanga + link = { autogenerated = yes imp = 2119 ck3 = 8776 ck3 = 8778 } # Carnonacae -> Glenelg, Applecross + link = { autogenerated = yes imp = 7479 ck3 = 877 } # Samastipur -> Sugauna + link = { autogenerated = yes imp = 6037 ck3 = 8768 ck3 = 234 ck3 = 246 } # Raumariki -> Ski, OSLOSYSLAR, DRAFN + link = { autogenerated = yes imp = 3561 ck3 = 8764 } # Eporedia -> Santhia + link = { autogenerated = yes imp = 12885 ck3 = 8761 } # Trumpili -> Tirano + link = { autogenerated = yes imp = 4441 ck3 = 876 } # Asthagora -> Arrah + link = { autogenerated = yes imp = 34 imp = 28 imp = 30 imp = 5010 ck3 = 8759 } # Iuvanum, Corfinium, Aufidena, IMPASSIBLE TERRAIN 010 -> Agnone + link = { autogenerated = yes imp = 50 imp = 36 ck3 = 8758 } # Urium, Teanum Apulum -> Vieste + link = { autogenerated = yes imp = 33 imp = 44 ck3 = 8757 } # Corneliani, Tuticum -> Ariano + link = { autogenerated = yes imp = 40 ck3 = 8756 } # Nola -> Aversa + link = { autogenerated = yes imp = 62 ck3 = 8755 } # Menturia -> Lecce + link = { autogenerated = yes imp = 12 imp = 59 ck3 = 8754 } # Velia, Consilinum -> Policastro + link = { autogenerated = yes imp = 75 ck3 = 8751 } # Hipponium -> Tropea + link = { autogenerated = yes imp = 2182 imp = 2163 ck3 = 8750 } # Velaboria, Velaboria Australis -> Kilmallock + link = { autogenerated = yes imp = 4465 ck3 = 875 } # Bhabua -> Jaund + link = { autogenerated = yes imp = 2197 ck3 = 8748 } # Autenia Borealis -> Killala + link = { autogenerated = yes imp = 2201 ck3 = 8745 } # Nagnatia Australis -> Cruachu + link = { autogenerated = yes imp = 2194 ck3 = 8744 } # Caucia Occidentalis -> Adragh + link = { autogenerated = yes imp = 2170 imp = 2205 ck3 = 8742 } # Voluntia Australis, Voluntia Occidentalis -> Clogher + link = { autogenerated = yes imp = 7748 imp = 7747 ck3 = 8740 } # Sinus Corinthius, Sinus Patraicus -> Gulf of Lepanto + link = { autogenerated = yes imp = 11532 ck3 = 874 } # Barakar -> Kukkutapada + link = { autogenerated = yes imp = 6443 ck3 = 8738 } # Sarygamysh -> Sarygamysh Lake + link = { autogenerated = yes imp = 1465 imp = 1466 ck3 = 8735 } # Palma, Guium -> Palma + link = { autogenerated = yes imp = 11533 imp = 4444 ck3 = 873 } # Kolhua, Gaya -> Bodh_Gaya + link = { autogenerated = yes imp = 12663 ck3 = 8728 ck3 = 8739 } # Samdaz -> Leksand, Farnebo + link = { autogenerated = yes imp = 3529 imp = 3522 ck3 = 8720 } # Rigomagus, Sanitium -> Barcelonnette + link = { autogenerated = yes imp = 3608 ck3 = 8719 ck3 = 2031 } # Mantala -> Faucigny, MOUTIERS + link = { autogenerated = yes imp = 2310 imp = 2308 imp = 2309 ck3 = 8717 } # Cerebelliaca, Valentia, Batiana -> Monteil + link = { autogenerated = yes imp = 4446 ck3 = 871 ck3 = 872 } # Campa -> Campa, Vikramasila + link = { autogenerated = yes imp = 8194 imp = 11571 imp = 11598 imp = 11850 imp = 11917 imp = 12201 imp = 12218 ck3 = 8691 } # Mare Andaman, Mare Andaman, Mare Andaman, Mare Andaman, Mare Andaman, Mare Andaman, Mare Andaman -> Andaman Sea + link = { autogenerated = yes imp = 12050 imp = 11662 imp = 11678 imp = 11680 imp = 11710 imp = 11761 imp = 11816 imp = 11832 imp = 11842 imp = 11858 imp = 11872 imp = 11934 imp = 11944 imp = 12105 imp = 12116 imp = 12123 imp = 12145 imp = 12181 imp = 12183 imp = 12197 imp = 12221 imp = 2986 ck3 = 8690 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal + link = { autogenerated = yes imp = 4440 ck3 = 869 } # Pataliputra -> Maner + link = { autogenerated = yes imp = 11906 imp = 11675 imp = 11676 imp = 12015 imp = 12042 imp = 12045 imp = 12204 ck3 = 8689 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal + link = { autogenerated = yes imp = 12127 imp = 11663 imp = 11692 imp = 11695 imp = 11836 ck3 = 8688 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal + link = { autogenerated = yes imp = 11669 imp = 11708 imp = 11777 imp = 11788 imp = 11859 imp = 12001 imp = 12034 imp = 12117 imp = 12205 imp = 12234 ck3 = 8687 } # Mare Andaman, Mare Andaman, Sinus Gangeticus, Mare Andaman, Mare Andaman, Sinus Gangeticus, Mare Andaman, Mare Andaman, Mare Andaman, Mare Andaman -> Andaman Sea + link = { autogenerated = yes imp = 8155 imp = 11921 ck3 = 8686 } # Mare Andaman, Mare Andaman -> Gulf of Martaban + link = { autogenerated = yes imp = 12118 imp = 10926 imp = 11665 imp = 9853 ck3 = 8685 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal + link = { autogenerated = yes imp = 2976 imp = 2975 imp = 2979 imp = 6457 imp = 6458 imp = 9852 ck3 = 8684 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, LAKE, LAKE, Sinus Gangeticus -> Bay of Bengal + link = { autogenerated = yes imp = 10515 imp = 10516 imp = 10517 imp = 10521 imp = 10522 imp = 10849 imp = 2895 imp = 2897 imp = 2899 imp = 2900 imp = 2901 imp = 2933 imp = 2935 imp = 2949 ck3 = 8683 } # Mare Lacadive, Mare Lacadive, Mare Lacadive, Mare Lacadive, Mare Lacadive, Mare Lacadive, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Laccadive Sea + link = { autogenerated = yes imp = 2926 imp = 2860 imp = 2861 imp = 2862 ck3 = 8682 } # Mare Erythraeum, Gulf of Minnagara, Mare Erythraeum, Mare Erythraeum -> Arabian Sea + link = { autogenerated = yes imp = 2857 imp = 2854 ck3 = 8681 } # Mare Erythraeum, Rann of Kutch -> Arabian Sea + link = { autogenerated = yes imp = 2845 imp = 2847 ck3 = 8680 } # Mare Erythraeum, Mare Erythraeum -> Arabian Sea + link = { autogenerated = yes imp = 4445 ck3 = 868 } # Rajagagriha -> Rajagrha + link = { autogenerated = yes imp = 2811 imp = 2810 ck3 = 8679 } # Sinus Persicus, Sinus Persicus -> Persian Gulf + link = { autogenerated = yes imp = 2822 imp = 2812 imp = 2820 ck3 = 8678 } # Sinus Persicus, Sinus Persicus, Sinus Persicus -> Persian Gulf + link = { autogenerated = yes imp = 2791 imp = 10512 imp = 10513 imp = 10514 imp = 2790 imp = 2792 imp = 2825 ck3 = 8676 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Somali Sea + link = { autogenerated = yes imp = 2788 imp = 2786 ck3 = 8675 } # Mare Erythraeum, Sinus Adenensis -> Gulf of Aden + link = { autogenerated = yes imp = 2784 imp = 2785 ck3 = 8674 } # Sinus Adenensis, Sinus Adenensis -> Gulf of Aden + link = { autogenerated = yes imp = 1498 imp = 1484 imp = 1485 imp = 1486 imp = 1487 imp = 1497 imp = 1499 ck3 = 8673 } # Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus -> Red Sea + link = { autogenerated = yes imp = 2754 imp = 2734 imp = 2735 imp = 2744 ck3 = 8672 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea + link = { autogenerated = yes imp = 2759 imp = 2745 imp = 2746 imp = 2756 imp = 2760 imp = 2761 ck3 = 8671 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea + link = { autogenerated = yes imp = 2752 imp = 2748 ck3 = 8670 } # Palus Maeotica, Bosporus Cimmerius -> Kerch Strait + link = { autogenerated = yes imp = 4463 ck3 = 867 } # Malini -> Odantapuri + link = { autogenerated = yes imp = 2768 imp = 2742 imp = 2743 imp = 2747 imp = 2764 imp = 2765 imp = 2766 ck3 = 8669 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea + link = { autogenerated = yes imp = 2731 imp = 2736 imp = 2770 imp = 8019 ck3 = 8668 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Bosporus + link = { autogenerated = yes imp = 2772 imp = 2774 imp = 2775 imp = 2776 imp = 2778 ck3 = 8667 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea + link = { autogenerated = yes imp = 2616 imp = 2621 imp = 8020 ck3 = 8665 } # Mare Thracum, Mare Aegaeum, Mare Thracum -> Dardanelles + link = { autogenerated = yes imp = 2672 imp = 2668 imp = 2671 imp = 2673 ck3 = 8664 } # Mare Phoenicium, Mare Aegyptium, Mare Phoenicium, Mare Aegyptium -> Levantine Sea + link = { autogenerated = yes imp = 2670 imp = 2664 imp = 2665 imp = 2666 ck3 = 8663 } # Mare Aegyptium, Mare Aegyptium, Mare Aegyptium, Mare Aegyptium -> Levantine Sea + link = { autogenerated = yes imp = 2678 imp = 2674 imp = 2675 imp = 2676 ck3 = 8662 } # Mare Lycium, Mare Internum, Mare Aegyptium, Mare Aegyptium -> Levantine Sea + link = { autogenerated = yes imp = 2596 imp = 2588 imp = 2589 imp = 2591 ck3 = 8661 } # Mare Aegyptium, Mare Lycium, Mare Lycium, Mare Lycium -> Levantine Sea + link = { autogenerated = yes imp = 2583 imp = 2582 ck3 = 8660 } # Mare Phoenicium, Mare Phoenicium -> Coast of Syria + link = { autogenerated = yes imp = 7392 imp = 11536 imp = 7363 ck3 = 866 } # Vajra, Ajodhya, Purulia -> Baghmundi + link = { autogenerated = yes imp = 2577 ck3 = 8659 } # Mare Aegyptium -> Levantine Sea + link = { autogenerated = yes imp = 2611 imp = 2600 imp = 2610 imp = 4723 ck3 = 8658 } # Mare Ionium, Mare Aegyptium, Mare Ionium, Sinus Messenius -> Messenian Sea + link = { autogenerated = yes imp = 2657 imp = 2650 imp = 2654 imp = 2658 imp = 2659 ck3 = 8657 } # Mare Ionium, Mare Ionium, Mare Libycum, Mare Aegyptium, Mare Aegyptium -> Ionian Sea + link = { autogenerated = yes imp = 2641 imp = 2635 imp = 2637 imp = 2639 imp = 2640 imp = 2652 imp = 2653 imp = 2655 ck3 = 8656 } # Mare Libycum, Mare Libycum, Mare Libycum, Mare Ionium, Mare Libycum, Mare Ionium, Mare Libycum, Mare Ionium -> Ionian Sea + link = { autogenerated = yes imp = 2642 imp = 2571 imp = 2572 imp = 2573 imp = 2643 imp = 2644 imp = 2645 ck3 = 8655 } # Mare Libycum, Syrtis Maior, Syrtis Maior, Syrtis Maior, Syrtis Maior, Syrtis Maior, Mare Libycum -> Gulf of Sidra + link = { autogenerated = yes imp = 2634 imp = 2569 imp = 2570 imp = 2632 imp = 2636 ck3 = 8654 } # Mare Libycum, Mare Libycum, Mare Libycum, Mare Libycum, Mare Libycum -> Coast of Tripoli + link = { autogenerated = yes imp = 2647 imp = 2501 imp = 2510 imp = 2514 imp = 2518 imp = 2638 imp = 2651 ck3 = 8653 } # Mare Ionium, Fretum Siculum, Mare Ionium, Mare Ionium, Mare Ionium, Mare Ionium, Mare Ionium -> Ionian Sea + link = { autogenerated = yes imp = 2545 imp = 2534 imp = 2535 imp = 2536 ck3 = 8652 } # Mare Superum, Mare Superum, Mare Superum, Mare Superum -> Adriatic Sea + link = { autogenerated = yes imp = 2531 imp = 2530 imp = 2532 imp = 2544 ck3 = 8651 } # Mare Superum, Sinus Sipontinus, Mare Superum, Mare Superum -> Adriatic Sea + link = { autogenerated = yes imp = 2540 imp = 2512 imp = 2526 imp = 2527 imp = 2528 imp = 6357 ck3 = 8650 } # Mare Superum, Sinus Liburnus, Sinus Liburnus, Mare Superum, Mare Superum, LAKE -> Adriatic Sea + link = { autogenerated = yes imp = 7177 ck3 = 865 } # Tamralipti -> Dantan + link = { autogenerated = yes imp = 2539 imp = 2508 imp = 2509 ck3 = 8649 } # Mare Superum, Mare Superum, Mare Superum -> Adriatic Sea + link = { autogenerated = yes imp = 2631 imp = 2565 imp = 2566 imp = 2567 imp = 2568 imp = 2626 imp = 2628 ck3 = 8648 } # Mare Libycum, Fretum Siculum, Sinus Neapolitanus, Mare Libycum, Syrtis Minor, Mare Libycum, Mare Libycum -> Gulf of Gabes + link = { autogenerated = yes imp = 2564 imp = 2624 imp = 2687 imp = 6319 ck3 = 8647 } # Sinus Uticensis, Fretum Siculum, Mare Tyrrhenum, LAKE -> Gulf of Tunis + link = { autogenerated = yes imp = 2683 imp = 2682 imp = 2684 imp = 2685 imp = 2686 ck3 = 8646 } # Mare Tyrrhenum, Mare Tyrrhenum, Mare Tyrrhenum, Mare Tyrrhenum, Mare Tyrrhenum -> Tyrrhenian Sea + link = { autogenerated = yes imp = 2681 imp = 2502 imp = 2505 ck3 = 8645 } # Mare Tyrrhenum, Sinus Paestanus, Mare Tyrrhenum -> Tyrrhenian Sea + link = { autogenerated = yes imp = 2701 imp = 2563 ck3 = 8644 } # Mare Internum, Sinus Hipponensis -> Punic Sea + link = { autogenerated = yes imp = 2688 ck3 = 8643 } # Mare Sardoum -> Coast of Sardinia + link = { autogenerated = yes imp = 2702 imp = 2703 ck3 = 8642 } # Mare Internum, Mare Sardoum -> Punic Sea + link = { autogenerated = yes imp = 2560 imp = 2724 imp = 2726 ck3 = 8641 } # Mare Hibericum, Mare Hibericum, Mare Hibericum -> Coast of Algier + link = { autogenerated = yes imp = 2711 imp = 2713 imp = 2720 ck3 = 8640 } # Mare Sardoum, Mare Sardoum, Mare Sardoum -> Balearic Sea + link = { autogenerated = yes imp = 7796 ck3 = 864 } # Bidyadhari -> Chandraketugarh + link = { autogenerated = yes imp = 2708 imp = 2706 imp = 2709 imp = 2712 imp = 2714 ck3 = 8639 } # Mare Sardoum, Mare Sardoum, Mare Sardoum, Mare Sardoum, Mare Sardoum -> Balearic Sea + link = { autogenerated = yes imp = 2692 ck3 = 8638 } # Mare Sardoum -> Ligurian Sea + link = { autogenerated = yes imp = 2691 ck3 = 8637 } # Mare Tyrrhenum -> Strait of Bonifacio + link = { autogenerated = yes imp = 2693 imp = 2546 ck3 = 8636 } # Mare Tyrrhenum, Mare Tyrrhenum -> Corsica Channel + link = { autogenerated = yes imp = 2694 imp = 2696 ck3 = 8635 } # Mare Ligusticum, Mare Ligusticum -> Ligurian Sea + link = { autogenerated = yes imp = 2715 imp = 2553 ck3 = 8634 } # Mare Balearium, Mare Internum -> Coast of Barcelona + link = { autogenerated = yes imp = 2523 imp = 2721 ck3 = 8633 } # Mare Hibericum, Mare Balearium -> Coast of Tarragona + link = { autogenerated = yes imp = 2719 ck3 = 8632 } # Mare Balearium -> Balearic Sea + link = { autogenerated = yes imp = 2718 ck3 = 8631 } # Mare Hibericum -> Balearic Sea + link = { autogenerated = yes imp = 2722 ck3 = 8630 } # Mare Balearium -> Balearic Sea + link = { autogenerated = yes imp = 2723 ck3 = 8629 } # Mare Hibericum -> Balearic Sea + link = { autogenerated = yes imp = 2525 imp = 2725 ck3 = 8628 } # Mare Hibericum, Mare Hibericum -> Coast of Murcia + link = { autogenerated = yes imp = 2554 ck3 = 8627 } # Mare Hibericum -> Alboran Sea + link = { autogenerated = yes imp = 2729 imp = 2555 imp = 2556 imp = 2557 ck3 = 8626 } # Mare Hibericum, Mare Hibericum, Mare Hibericum, Mare Hibericum -> Alboran Sea + link = { autogenerated = yes imp = 8094 imp = 8095 ck3 = 8621 } # Oceanus Atlanticus, Oceanus Atlanticus -> Coast of Morocco + link = { autogenerated = yes imp = 4722 imp = 4589 imp = 4593 imp = 4594 imp = 4595 imp = 4597 ck3 = 8620 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> Gulf of Cadiz + link = { autogenerated = yes imp = 7393 ck3 = 862 ck3 = 863 } # Kasipur -> Sagardwip, Chatrabhog + link = { autogenerated = yes imp = 5674 imp = 5670 imp = 5671 ck3 = 8618 } # Mare Cantabrum, Mare Cantabrum, Mare Cantabrum -> Bay of Biscay + link = { autogenerated = yes imp = 12798 imp = 12777 imp = 12794 imp = 12827 imp = 12840 imp = 12782 imp = 12795 ck3 = 8616 } # Mare Septentrionalis, Mare Septentrionalis, Mare Septentrionalis, Mare Septentrionalis, Mare Septentrionalis, Mare Septentrionalis, Mare Septentrionalis -> Sea of Shetland + link = { autogenerated = yes imp = 10806 imp = 10807 ck3 = 8611 } # $PROV10801$, $PROV10801$ -> Irrawaddy River + link = { autogenerated = yes imp = 10805 ck3 = 8610 } # $PROV10801$ -> Irrawaddy River + link = { autogenerated = yes imp = 7493 ck3 = 861 } # Varendra -> Pabna + link = { autogenerated = yes imp = 10804 ck3 = 8609 } # $PROV10801$ -> Irrawaddy River + link = { autogenerated = yes imp = 10803 ck3 = 8608 } # $PROV10801$ -> Irrawaddy River + link = { autogenerated = yes imp = 10801 ck3 = 8607 } # Irrawaddy -> Irrawaddy Delta + link = { autogenerated = yes imp = 10802 ck3 = 8606 } # $PROV10801$ -> Irrawaddy Delta + link = { autogenerated = yes imp = 10800 ck3 = 8605 } # $PROV7783$ -> Brahmaputra River + link = { autogenerated = yes imp = 10798 imp = 10799 ck3 = 8604 } # $PROV7783$, $PROV7783$ -> Brahmaputra River + link = { autogenerated = yes imp = 10796 imp = 10797 ck3 = 8603 } # $PROV7783$, $PROV7783$ -> Brahmaputra River + link = { autogenerated = yes imp = 10782 ck3 = 8602 } # $PROV7789$ -> Ganges River + link = { autogenerated = yes imp = 10780 ck3 = 8601 } # $PROV10779$ -> Mahanadi River + link = { autogenerated = yes imp = 6002 ck3 = 86 } # Guthisbo -> GOINGE + link = { autogenerated = yes imp = 10778 ck3 = 8599 } # $PROV10776$ -> Godavari River + link = { autogenerated = yes imp = 10777 ck3 = 8598 } # $PROV10776$ -> Godavari River + link = { autogenerated = yes imp = 10776 ck3 = 8597 } # Godavari -> Godavari River + link = { autogenerated = yes imp = 10771 imp = 10772 ck3 = 8596 } # $PROV10769$, $PROV10769$ -> Kaveri River + link = { autogenerated = yes imp = 10770 imp = 10769 ck3 = 8595 } # $PROV10769$, Kaveri -> Kaveri River + link = { autogenerated = yes imp = 10765 imp = 10766 ck3 = 8593 } # Tapti, $PROV10765$ -> Tapti River + link = { autogenerated = yes imp = 10754 imp = 10755 ck3 = 8592 } # $PROV10751$, $PROV10751$ -> Sutlej River + link = { autogenerated = yes imp = 10752 imp = 10753 ck3 = 8591 } # $PROV10751$, $PROV10751$ -> Sutlej River + link = { autogenerated = yes imp = 10751 imp = 10756 ck3 = 8590 } # Satadree, Asikni -> Sutlej River + link = { autogenerated = yes imp = 10749 imp = 10748 imp = 10750 ck3 = 8589 } # $PROV7693$, $PROV7693$, $PROV7693$ -> Indus River + link = { autogenerated = yes imp = 10747 imp = 7692 ck3 = 8588 } # $PROV7693$, Indus -> Indus River + link = { autogenerated = yes imp = 8043 ck3 = 8585 } # Tanais -> Don River + link = { autogenerated = yes imp = 10365 ck3 = 8584 } # $PROV8042$ -> Don River + link = { autogenerated = yes imp = 10368 ck3 = 8583 } # $PROV8042$ -> Don River + link = { autogenerated = yes imp = 12863 ck3 = 8581 } # Rha -> Volga River + link = { autogenerated = yes imp = 12866 ck3 = 8580 } # Rha -> Volga River + link = { autogenerated = yes imp = 7329 ck3 = 858 } # Chandraketugarh -> Kumarhati + link = { autogenerated = yes imp = 12869 ck3 = 8578 } # Rha -> Volga River + link = { autogenerated = yes imp = 12876 ck3 = 8577 } # Varu -> Kama River + link = { autogenerated = yes imp = 12871 ck3 = 8574 } # Galinda -> Oka River + link = { autogenerated = yes imp = 12870 ck3 = 8573 ck3 = 8579 } # Taplatikka -> Sheksna River, Volga River + link = { autogenerated = yes imp = 12844 ck3 = 8571 } # Lake Aaltokas -> Svir River + link = { autogenerated = yes imp = 12850 ck3 = 8570 } # Velho -> Lovat River + link = { autogenerated = yes imp = 7336 ck3 = 857 } # Selampoura -> Pandua + link = { autogenerated = yes imp = 12848 ck3 = 8569 } # Velho -> Volkhov River + link = { autogenerated = yes imp = 10362 imp = 10363 ck3 = 8568 } # $PROV10361$, $PROV10361$ -> Desna River + link = { autogenerated = yes imp = 12856 ck3 = 8567 } # $PROV7871$ -> Dnieper River + link = { autogenerated = yes imp = 10356 imp = 10355 ck3 = 8565 } # $PROV7871$, $PROV7871$ -> Dnieper River + link = { autogenerated = yes imp = 10353 ck3 = 8564 } # $PROV7871$ -> Dnieper River + link = { autogenerated = yes imp = 7875 imp = 7876 imp = 7877 ck3 = 8563 } # Borysthenes, Borysthenes, Borysthenes -> Dnieper River + link = { autogenerated = yes imp = 7882 ck3 = 8561 } # Tyras -> Dniester River + link = { autogenerated = yes imp = 10694 imp = 10706 ck3 = 8560 } # $PROV7773$, Dravus -> Danube River + link = { autogenerated = yes imp = 7397 imp = 7358 ck3 = 856 } # Jessore, Khulna -> Santipura + link = { autogenerated = yes imp = 1489 ck3 = 8525 } # Fretum Diodorus -> LAKE_GHOUBET + link = { autogenerated = yes imp = 7494 imp = 7495 ck3 = 852 } # Durgapur, Egarosindur -> Nasirabad + link = { autogenerated = yes imp = 6379 ck3 = 8519 ck3 = 8523 } # LAKE -> LAKE_TANA, LAKE_ABHE + link = { autogenerated = yes imp = 10490 ck3 = 8509 } # Apocopa -> BARBACADLE + link = { autogenerated = yes imp = 10464 imp = 10463 imp = 10465 imp = 10482 ck3 = 8502 } # Gidheys, Suuqsade, Seeto, Xood -> SHEIKH + link = { autogenerated = yes imp = 7496 ck3 = 850 } # Bhaluka -> Bokainagar + link = { autogenerated = yes imp = 7325 ck3 = 846 ck3 = 848 } # Pundra -> Mahasthangarh, Somapur + link = { autogenerated = yes imp = 7368 ck3 = 844 } # Yavana -> Kalyaneshwari + link = { autogenerated = yes imp = 7531 imp = 10469 imp = 10478 imp = 7528 ck3 = 8432 } # Pano, Bandarbeyla, Iskushuban, Opone -> RAS_HAFUN + link = { autogenerated = yes imp = 7526 imp = 10470 imp = 7525 imp = 7529 ck3 = 8431 } # Aromata, Mudun, Elephanton Limen, Yehta -> GARDAFUUL + link = { autogenerated = yes imp = 4447 ck3 = 843 } # Kajangala -> Agmahl + link = { autogenerated = yes imp = 10476 ck3 = 8429 } # Kalabeyr -> EL-AYO + link = { autogenerated = yes imp = 10473 imp = 7523 imp = 7533 imp = 8107 ck3 = 8425 } # Ceerigabo, Moundou, Salweyn, Somali Impassable -> MAIT + link = { autogenerated = yes imp = 10462 ck3 = 8420 ck3 = 8402 ck3 = 8406 } # Gebiilay -> FAFAN, AW_BARRE, DAKKAR + link = { autogenerated = yes imp = 7324 ck3 = 841 ck3 = 847 } # Balipura -> Devkot, Ghoraghat + link = { autogenerated = yes imp = 10459 imp = 10461 imp = 10468 ck3 = 8405 } # Bagan, Hargeysa, Goyar -> HARGEISA + link = { autogenerated = yes imp = 7521 ck3 = 8400 ck3 = 8398 } # Aualites -> ZAILA, ABASA + link = { autogenerated = yes imp = 3863 ck3 = 84 } # Avionia Minor -> HUSUMBRO + link = { autogenerated = yes imp = 7520 ck3 = 8399 } # Anchitaia -> GHOUBET + link = { autogenerated = yes imp = 7326 ck3 = 838 } # Kotivarsa -> Hazrat_Pandua + link = { autogenerated = yes imp = 7498 ck3 = 837 } # Malda -> Gaur + link = { autogenerated = yes imp = 7357 ck3 = 835 ck3 = 836 } # Kotta -> Bagerhat, Ishwaripur + link = { autogenerated = yes imp = 10503 ck3 = 8343 } # Yoboki -> MORA-AWSSA + link = { autogenerated = yes imp = 7518 ck3 = 8341 ck3 = 8342 } # Deire -> AWBUK, TADJOURA + link = { autogenerated = yes imp = 7516 imp = 7517 ck3 = 8340 } # Smyrnophoros Chora, Arsinoe -> ASSAB + link = { autogenerated = yes imp = 7547 ck3 = 8332 } # Undulli -> EDD + link = { autogenerated = yes imp = 7548 ck3 = 8331 } # Thio -> EDD-NORTH + link = { autogenerated = yes imp = 10440 ck3 = 8313 ck3 = 8314 } # Uacne -> GALILA, UPPER_DINDER + link = { autogenerated = yes imp = 10442 ck3 = 8312 } # Weyto -> GONDAR + link = { autogenerated = yes imp = 7538 ck3 = 8311 ck3 = 8309 ck3 = 8310 } # Agawe -> GOUZARA, BEGEMDIR, SANA + link = { autogenerated = yes imp = 7537 ck3 = 8306 } # Roza -> BELASA + link = { autogenerated = yes imp = 7540 ck3 = 8305 } # Shire -> FALASHA + link = { autogenerated = yes imp = 7536 ck3 = 8303 } # Gwara -> KOSOGE + link = { autogenerated = yes imp = 10437 imp = 10438 imp = 10436 imp = 10439 ck3 = 8302 } # Gherma, Haria, Tawirda, Maganan -> WEGERA + link = { autogenerated = yes imp = 7545 ck3 = 8301 } # Awash -> LALIBELA + link = { autogenerated = yes imp = 7514 ck3 = 8300 } # Esheta -> DOBA + link = { autogenerated = yes imp = 7401 ck3 = 830 } # Ramgati -> Pattikera + link = { autogenerated = yes imp = 7511 ck3 = 8299 ck3 = 8308 } # Roha -> ADAFA, ANGOT + link = { autogenerated = yes imp = 7512 ck3 = 8298 } # Muchera -> LASTA + link = { autogenerated = yes imp = 10446 ck3 = 8297 } # Gijet -> TEKEZE + link = { autogenerated = yes imp = 7505 ck3 = 8296 } # Yeha -> QIHA + link = { autogenerated = yes imp = 7508 ck3 = 8295 } # Uikra -> INTARTA + link = { autogenerated = yes imp = 7510 ck3 = 8294 } # Adi Gelamo -> WIQRO + link = { autogenerated = yes imp = 10447 imp = 10443 imp = 10444 imp = 10445 ck3 = 8293 } # Tembien, Enda Cherqos, Mai Adrasha, Seglamen -> JOHA + link = { autogenerated = yes imp = 10435 imp = 10434 imp = 7593 ck3 = 8292 } # Metemmeh, Boval, Tanachtala -> WALDABBA + link = { autogenerated = yes imp = 651 ck3 = 8291 } # Sumita -> TIGRE + link = { autogenerated = yes imp = 10455 imp = 8101 ck3 = 8290 } # Tucul, Ethiopia Impassable -> SOUTH_SERAYE + link = { autogenerated = yes imp = 7506 imp = 10451 imp = 7509 ck3 = 8289 } # Aksum, Adi Ugri, Sazila -> AKSUM + link = { autogenerated = yes imp = 7513 imp = 10449 ck3 = 8288 } # Matara, Mezber -> MATARA + link = { autogenerated = yes imp = 7549 ck3 = 8287 ck3 = 8330 } # Ras Andada -> BUR, SAHO + link = { autogenerated = yes imp = 7507 ck3 = 8286 } # Oreine -> BURI + link = { autogenerated = yes imp = 10452 imp = 10448 imp = 10450 imp = 8100 ck3 = 8285 } # Debarwa, Tsirhan, Sembel, Ethiopia Mountains -> SHIMAZANA + link = { autogenerated = yes imp = 7504 ck3 = 8284 } # Qohaito -> QOHAITO + link = { autogenerated = yes imp = 10456 imp = 8099 ck3 = 8283 } # Tokore, Ethiopia Mountains -> SERAYE + link = { autogenerated = yes imp = 7515 imp = 10453 imp = 10509 imp = 8104 ck3 = 8282 } # Naamen, Taille, Gher, Sudan Impassable -> HAMASEN + link = { autogenerated = yes imp = 7502 ck3 = 8280 ck3 = 8281 } # Alalaiou -> DAHLAK_KEBIR, GIMHILE + link = { autogenerated = yes imp = 7331 ck3 = 828 ck3 = 829 ck3 = 8722 } # Chittagong -> Chatigama, Candranatha, Karnaphuli + link = { autogenerated = yes imp = 7503 ck3 = 8279 } # Adouli -> DEHONO + link = { autogenerated = yes imp = 7550 ck3 = 8278 } # Imberimi -> MASSAWA + link = { autogenerated = yes imp = 7333 ck3 = 824 ck3 = 1245 } # Srihatta -> Jangalbari, Srihatta + link = { autogenerated = yes imp = 7655 imp = 7654 ck3 = 818 } # Siliguri, Thakurgaon -> Bhitagarh + link = { autogenerated = yes imp = 7652 ck3 = 817 ck3 = 9134 ck3 = 9137 } # Gosanimari -> Nalrajar_Garh, Kalimpong, Paro + link = { autogenerated = yes imp = 7343 ck3 = 816 } # Dhuburi -> Dhubri + link = { autogenerated = yes imp = 7348 ck3 = 815 ck3 = 823 } # Davaka -> Pragyotisapura, Oddiyana2 + link = { autogenerated = yes imp = 7342 ck3 = 814 } # Hajo -> Manikuta + link = { autogenerated = yes imp = 7349 ck3 = 813 } # Gramera -> Numaligarh + link = { autogenerated = yes imp = 7351 ck3 = 812 ck3 = 9158 } # Japa -> Narayanpur, Ziro + link = { autogenerated = yes imp = 11071 imp = 9406 ck3 = 811 } # Aung Myay, Impassable -> Carguya + link = { autogenerated = yes imp = 3878 ck3 = 81 } # Cimbria Centralis -> AALBORG + link = { autogenerated = yes imp = 7355 ck3 = 809 ck3 = 9160 ck3 = 9159 } # Donga -> Ghuguha_Dol, Along, Daporijo + link = { autogenerated = yes imp = 7353 ck3 = 808 } # Bengmara -> Tinsukia + link = { autogenerated = yes imp = 2132 ck3 = 8 } # Orcades -> KIRKWALL + link = { autogenerated = yes imp = 8214 ck3 = 7998 ck3 = 1447 } # Charklik -> Omotrunnaisse, Loulan + link = { autogenerated = yes imp = 8241 ck3 = 7996 ck3 = 7997 } # Bailongdui -> Dafang, Nanhu_TARIM + link = { autogenerated = yes imp = 9576 ck3 = 7994 ck3 = 7995 } # Puchanghai -> Kumtag, Shule_river + link = { autogenerated = yes imp = 8226 ck3 = 7990 } # Kroran -> Turin_TARIM + link = { autogenerated = yes imp = 8210 imp = 8209 ck3 = 7988 } # Wulei, Luntai -> Korla + link = { autogenerated = yes imp = 8212 ck3 = 7983 ck3 = 7984 ck3 = 1550 } # Weixu -> Bosten, Narinkira, TIANSHAN + link = { autogenerated = yes imp = 8208 ck3 = 7980 ck3 = 7981 ck3 = 7982 } # Yancheng -> Luntai, Shorchuk, Nasi_Erkule + link = { autogenerated = yes imp = 5665 ck3 = 7978 } # Hotan -> Bugur_TARIM + link = { autogenerated = yes imp = 7184 ck3 = 7979 } # Kuche -> Subashi + link = { autogenerated = yes imp = 5667 ck3 = 7977 } # Mount Popa -> Shayar + link = { autogenerated = yes imp = 8303 ck3 = 7975 ck3 = 1445 } # Chigu -> Duldulokur, Aksu + link = { autogenerated = yes imp = 6754 ck3 = 7973 } # Kagra -> Stwerap + link = { autogenerated = yes imp = 6753 ck3 = 7971 ck3 = 7970 } # Toksa -> Tumshuk, Barchuk + link = { autogenerated = yes imp = 5668 imp = 5666 imp = 6761 ck3 = 7969 } # Taklamakan, Taklamakan, Kasia -> Maralbeshi + link = { autogenerated = yes imp = 6744 ck3 = 7968 } # Kashgar -> Atus + link = { autogenerated = yes imp = 6773 ck3 = 7966 } # Gulka -> Ulugqat + link = { autogenerated = yes imp = 6764 ck3 = 7965 } # Miena -> Badakhshan_TARIM + link = { autogenerated = yes imp = 6757 imp = 6771 ck3 = 7960 } # Shachi, Kezhen -> Yopurga + link = { autogenerated = yes imp = 6770 ck3 = 7957 ck3 = 2716 } # Toquzbolaq -> Tashkurgan, PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 7361 imp = 3810 imp = 5349 ck3 = 7947 } # Salutara, Embadina, Sharhistan Desert -> Waihind + link = { autogenerated = yes imp = 7151 ck3 = 7934 ck3 = 7935 ck3 = 1254 } # Vairagara -> Nandgram, Gondia, Vairagara + link = { autogenerated = yes imp = 7132 imp = 6056 ck3 = 7933 } # Rapsakpur, Gondwana -> Mungeli + link = { autogenerated = yes imp = 7451 ck3 = 7931 } # Seoni -> Seoni + link = { autogenerated = yes imp = 7076 ck3 = 7929 } # Bhaddavati -> Nagpur + link = { autogenerated = yes imp = 7094 imp = 7456 ck3 = 7928 } # Fanindrapura, Kherla -> Kundina + link = { autogenerated = yes imp = 7157 ck3 = 7926 } # Mahur -> Kalam + link = { autogenerated = yes imp = 7121 imp = 7075 ck3 = 7925 } # Audabaravati, Bhojakata -> Amraoti + link = { autogenerated = yes imp = 7124 ck3 = 7923 } # Dhamna -> Mancherial + link = { autogenerated = yes imp = 7163 ck3 = 7921 ck3 = 7922 } # Aggathana -> Mahur, Kerimeri + link = { autogenerated = yes imp = 7158 ck3 = 7920 } # Indur -> Nirmal + link = { autogenerated = yes imp = 7165 ck3 = 7919 } # Minagana -> Bhainsa + link = { autogenerated = yes imp = 7164 ck3 = 7917 ck3 = 7918 } # Visakpura -> Jalna, Sindkhed + link = { autogenerated = yes imp = 7046 ck3 = 7916 } # Alosgyni -> Draksharama + link = { autogenerated = yes imp = 7122 ck3 = 7914 } # Jagdalpur -> Malkangiri + link = { autogenerated = yes imp = 7123 ck3 = 7913 ck3 = 7915 } # Alatnapura -> Bhadracala, Chutur + link = { autogenerated = yes imp = 7054 ck3 = 7911 } # Guntupalli -> Polavaram + link = { autogenerated = yes imp = 7056 ck3 = 7910 } # Gummididurru -> Palwancha + link = { autogenerated = yes imp = 7058 imp = 7055 ck3 = 7909 } # Kondapuram, Pravarapura -> Vinukonda + link = { autogenerated = yes imp = 7150 ck3 = 7907 } # Anumapala -> Kaulas + link = { autogenerated = yes imp = 7118 imp = 7049 ck3 = 7905 } # Rukmammapeta, Naconda -> Devarakonda + link = { autogenerated = yes imp = 7152 imp = 8122 ck3 = 7903 } # Mankal, India Jungle -> Golkonda + link = { autogenerated = yes imp = 6006 ck3 = 79 ck3 = 80 ck3 = 8726 } # Borgamo -> RONNEBY, AVASKAR, Torsas + link = { autogenerated = yes imp = 7093 imp = 7062 ck3 = 7897 } # Tiyagoura, Nevasa -> Seunapura + link = { autogenerated = yes imp = 7144 ck3 = 7896 } # Lattalura -> Qandhar + link = { autogenerated = yes imp = 7146 ck3 = 7894 ck3 = 7895 } # Asmakhala -> Bhid, Darur + link = { autogenerated = yes imp = 7074 ck3 = 7893 } # Pattithana -> Ahmadnagar + link = { autogenerated = yes imp = 7078 ck3 = 7892 } # Tagara -> Ausa + link = { autogenerated = yes imp = 7127 ck3 = 7890 ck3 = 7891 } # Trinagua -> Sholapur, Purnagiri + link = { autogenerated = yes imp = 7105 imp = 7102 ck3 = 7889 } # Siddhatek, Gurala -> Patkapur + link = { autogenerated = yes imp = 7101 ck3 = 7888 } # Maharatthalava -> Jirnanagara + link = { autogenerated = yes imp = 7110 ck3 = 7886 } # Vayapata -> Bagavadi + link = { autogenerated = yes imp = 7111 ck3 = 7885 } # Sonnolagi -> Vijayapura_bis + link = { autogenerated = yes imp = 7107 ck3 = 7884 } # Jayatnagar -> Hastikundi + link = { autogenerated = yes imp = 7112 imp = 8123 ck3 = 7883 } # Pandaprata, India Jungle -> Miraj + link = { autogenerated = yes imp = 7106 ck3 = 7881 } # Buravhala -> Pundarika + link = { autogenerated = yes imp = 7103 imp = 7060 imp = 7061 ck3 = 7880 } # Godavara, Kondane, Valuraka -> Bhimashankara + link = { autogenerated = yes imp = 7070 ck3 = 7877 } # Maski -> Mushangi + link = { autogenerated = yes imp = 7090 ck3 = 7872 ck3 = 7875 } # Panapala -> Hubli, Vankapura + link = { autogenerated = yes imp = 7108 ck3 = 7871 } # Athani -> Keladi + link = { autogenerated = yes imp = 7089 ck3 = 7870 ck3 = 7939 } # Hippokoura -> Belgaum, Western Ghats (M) + link = { autogenerated = yes imp = 7059 ck3 = 7868 ck3 = 7879 } # Karahataka -> Kurundaka, Karahataka + link = { autogenerated = yes imp = 7004 imp = 7018 ck3 = 7867 } # Andalapura, Kodava -> Sosavur + link = { autogenerated = yes imp = 7022 ck3 = 7865 } # Belgola -> Belapura + link = { autogenerated = yes imp = 7036 ck3 = 7863 } # Huliyar -> Honnavalli + link = { autogenerated = yes imp = 7010 ck3 = 7862 } # Paravipura -> Hemavati + link = { autogenerated = yes imp = 7005 ck3 = 7860 } # Brahmagiri -> Nidugallu + link = { autogenerated = yes imp = 7071 ck3 = 7859 ck3 = 7876 } # Gavimath -> Kampili, Anegandi + link = { autogenerated = yes imp = 7006 ck3 = 7858 } # Uccasrngi -> Vijayanagara + link = { autogenerated = yes imp = 7047 ck3 = 7857 } # Yerraguddi -> Gutti + link = { autogenerated = yes imp = 7021 imp = 9586 ck3 = 7856 } # Suvarnagiri, Impassable -> Adavani + link = { autogenerated = yes imp = 7069 ck3 = 7855 } # Rajula -> Adoni + link = { autogenerated = yes imp = 7091 ck3 = 7854 } # Bhakkuli -> Kandanavolu + link = { autogenerated = yes imp = 7038 ck3 = 7852 ck3 = 7861 } # Chandravalli -> Arka, Basavapattana + link = { autogenerated = yes imp = 7015 imp = 7023 ck3 = 7851 } # Vanavasi, Srnguri -> Shringeri + link = { autogenerated = yes imp = 7072 ck3 = 7850 } # Palkigunda -> Masur + link = { autogenerated = yes imp = 7016 ck3 = 7847 ck3 = 7938 } # Sriringapatna -> Mercara, Western Ghats (S) + link = { autogenerated = yes imp = 7039 ck3 = 7846 } # Kantakossyla -> Mutfili + link = { autogenerated = yes imp = 7050 imp = 8126 ck3 = 7845 } # Kuromolinava, Indian Jungle -> Bhairavunikonda + link = { autogenerated = yes imp = 7013 imp = 7048 ck3 = 7841 } # Srisailam, Sriparvata -> Sriparvata + link = { autogenerated = yes imp = 7051 ck3 = 7840 ck3 = 7843 } # Kadinava -> Ittagi, Mudivemu + link = { autogenerated = yes imp = 7043 ck3 = 7839 ck3 = 7842 } # Mallayapalam -> Pondugala, Addanki + link = { autogenerated = yes imp = 6935 imp = 6933 ck3 = 7838 } # Chaberis, Karmara -> Nagapattinam + link = { autogenerated = yes imp = 6936 imp = 6934 ck3 = 7837 } # Karige, Abour -> Gangaikondacolapuram + link = { autogenerated = yes imp = 6992 imp = 6928 ck3 = 7836 } # Argaru, Thanjavur -> Kannanur_2 + link = { autogenerated = yes imp = 6994 imp = 6988 ck3 = 7835 } # Nadhapura, Koval -> Tirukoilur + link = { autogenerated = yes imp = 6991 imp = 6930 imp = 5310 ck3 = 7834 } # Karoura, Karafur, IP 311 -> Srirangam + link = { autogenerated = yes imp = 6993 imp = 5312 ck3 = 7833 } # Kolinah, IP 313 -> Kelrayan + link = { autogenerated = yes imp = 6996 imp = 6987 ck3 = 7832 } # Tiruvannamalai, Colapattinam -> Jinji + link = { autogenerated = yes imp = 6986 imp = 6983 ck3 = 7831 } # Sopattinam, Arkatapura -> Uttaramerur + link = { autogenerated = yes imp = 6995 imp = 5313 ck3 = 7830 } # Chengam, Eastern Ghats -> Tiruvannamalai + link = { autogenerated = yes imp = 7032 ck3 = 7828 ck3 = 7829 } # Tiruperur -> Kuvalala, Kudalasangama_bis + link = { autogenerated = yes imp = 6984 imp = 6985 ck3 = 7827 } # Kancipuram, Mavilankai -> Mamallapuram + link = { autogenerated = yes imp = 7000 ck3 = 7826 } # Tondana -> Takkaloma + link = { autogenerated = yes imp = 7031 ck3 = 7823 ck3 = 7824 } # Kuvalalapura -> Nangali, Muluvagil + link = { autogenerated = yes imp = 7008 ck3 = 7822 } # Chintamani -> Nandi + link = { autogenerated = yes imp = 6998 ck3 = 7821 } # Gudimallam -> Kalahasti + link = { autogenerated = yes imp = 7028 ck3 = 7820 ck3 = 7825 } # Tirumala -> Melpadi, Padaividu + link = { autogenerated = yes imp = 7033 imp = 7025 imp = 8125 ck3 = 7819 } # Madana, Rayachoti, Indian Jungle -> Mangalavada + link = { autogenerated = yes imp = 7027 ck3 = 7818 } # Rapur -> Vallurapura + link = { autogenerated = yes imp = 7026 ck3 = 7817 ck3 = 7844 } # Kadapa -> Puspagiri, Ahobalam + link = { autogenerated = yes imp = 7034 ck3 = 7816 } # Kadiri -> Anantapur + link = { autogenerated = yes imp = 7024 ck3 = 7815 } # Mangalavada -> Togarakunta + link = { autogenerated = yes imp = 6911 imp = 6901 ck3 = 7814 } # Aykudi, Balita -> Kottar + link = { autogenerated = yes imp = 6903 imp = 6902 ck3 = 7813 } # Curana, Komari -> Kayal + link = { autogenerated = yes imp = 6912 imp = 6913 imp = 6922 ck3 = 7812 } # Kolkoi, Tamraparni, Vilath -> Korkai + link = { autogenerated = yes imp = 6920 imp = 6918 ck3 = 7811 } # Malayana, Karivala -> Sivakasi + link = { autogenerated = yes imp = 6923 ck3 = 7810 } # Kamai -> Virudhukkalvetti + link = { autogenerated = yes imp = 6915 imp = 6921 ck3 = 7809 } # Koti, Perinkari -> Rameshvaram + link = { autogenerated = yes imp = 6948 imp = 6925 ck3 = 7808 } # Codasi, Akour -> Sivaganga + link = { autogenerated = yes imp = 6926 imp = 6927 ck3 = 7807 } # Bata Pandiya, Urayur -> Uraiyur + link = { autogenerated = yes imp = 6947 imp = 6942 ck3 = 7806 } # Kodumbalur, Mohur -> Dindigul + link = { autogenerated = yes imp = 6938 imp = 6937 ck3 = 7805 } # Karur, Tennagora -> Tiruppur + link = { autogenerated = yes imp = 6940 imp = 6939 imp = 6949 ck3 = 7804 } # Korelloura, Chavadi, Kongu -> Kovai + link = { autogenerated = yes imp = 6898 imp = 6909 ck3 = 7803 } # Bacare, Tropiana -> Kollam + link = { autogenerated = yes imp = 6897 imp = 6896 imp = 6904 ck3 = 7802 } # Nelcynda, Pseudostomos, Aloe -> Kottayam + link = { autogenerated = yes imp = 6905 imp = 6895 imp = 6916 ck3 = 7801 } # Kalakaris, Muziris, Vanci -> Kunjakari + link = { autogenerated = yes imp = 6944 imp = 6907 imp = 6908 ck3 = 7800 } # Vellalore, Podoperoura, Paloura -> Palakkad + link = { autogenerated = yes imp = 6005 ck3 = 78 ck3 = 87 } # Vang -> BREGNE, LISTER + link = { autogenerated = yes imp = 6892 imp = 6893 imp = 6910 ck3 = 7799 } # Coula, Tyndis, Tandi -> Malappuram + link = { autogenerated = yes imp = 6889 imp = 6888 ck3 = 7798 } # Mousopalle, Nitra -> Kannanur + link = { autogenerated = yes imp = 6891 imp = 6886 ck3 = 7797 } # Basai, Olokhoira -> Mangalur + link = { autogenerated = yes imp = 6882 imp = 6883 ck3 = 7795 } # Toparon, Aegidi -> Hinawr + link = { autogenerated = yes imp = 6877 imp = 6879 imp = 6878 ck3 = 7794 } # Milzigeris, Pisauta, Yakaris -> Panaji + link = { autogenerated = yes imp = 6876 ck3 = 7793 } # Palaipatmai -> Kollapura + link = { autogenerated = yes imp = 6874 imp = 6875 ck3 = 7792 } # Mandagara, Etuca -> Chiplun + link = { autogenerated = yes imp = 6873 imp = 6872 ck3 = 7791 } # Semylla, Lonavli -> Dabhol + link = { autogenerated = yes imp = 6871 imp = 6870 ck3 = 7790 } # Dounga, Kalliena -> Chaul + link = { autogenerated = yes imp = 6867 imp = 7066 ck3 = 7789 } # Kalyana, Nasikya -> Ambaranatha + link = { autogenerated = yes imp = 6866 imp = 6869 ck3 = 7788 } # Nanaghat, Govardhana -> Suraparaka + link = { autogenerated = yes imp = 10535 ck3 = 7780 } # Sagan -> Irkutsk + link = { autogenerated = yes imp = 10536 ck3 = 7769 ck3 = 7776 } # Irkutsk -> Olkha, Kuda_MON + link = { autogenerated = yes imp = 6004 ck3 = 77 } # Burgundarholm -> RONNE + link = { autogenerated = yes imp = 9442 ck3 = 7677 ck3 = 7678 ck3 = 7675 } # Buka -> Orgogdon Rok, Baldyrgannyg, Kazas + link = { autogenerated = yes imp = 9434 ck3 = 7668 ck3 = 7669 ck3 = 7633 } # Efushui -> Abaza, Granuul, Kara-Khol_TUV + link = { autogenerated = yes imp = 9433 ck3 = 7666 } # Sarik -> Khartomor Uul + link = { autogenerated = yes imp = 12455 ck3 = 7664 ck3 = 7665 ck3 = 7667 } # Mektut -> Kondoma_MON, Mrassu, Shor + link = { autogenerated = yes imp = 9438 ck3 = 7659 ck3 = 7660 } # Torgay -> Amyl, Borus + link = { autogenerated = yes imp = 9437 ck3 = 7657 ck3 = 7658 } # Jianhe -> Bolsho Kyzylkul, Kop Golyn + link = { autogenerated = yes imp = 9432 ck3 = 7647 } # Jiankun -> Sosno + link = { autogenerated = yes imp = 9443 ck3 = 7640 ck3 = 7642 } # Kirguy -> Urbun, Arja + link = { autogenerated = yes imp = 9441 ck3 = 7639 ck3 = 7641 } # Qumanshan -> Stoyanka, Ulaan Gol + link = { autogenerated = yes imp = 9439 ck3 = 7638 ck3 = 7676 } # Boru -> Sayanchu, Ergaki + link = { autogenerated = yes imp = 9440 ck3 = 7637 ck3 = 7635 ck3 = 7636 } # Sut -> Kantegir, Gosudar, Sutkhol + link = { autogenerated = yes imp = 9435 ck3 = 7631 } # Arsilan -> Altyn Kol + link = { autogenerated = yes imp = 10541 ck3 = 7629 } # Dusdag -> Sagly + link = { autogenerated = yes imp = 9446 ck3 = 7621 ck3 = 7684 ck3 = 7689 ck3 = 7786 } # Bulin Nuur -> Ak-Altyg Khol, Dibi_TUV, Monkh Saridag, Eastern Sayan Mountains + link = { autogenerated = yes imp = 1882 imp = 5168 ck3 = 762 } # Adana, IMPASSIBLE TERRAIN 168 -> Adana + link = { autogenerated = yes imp = 9445 ck3 = 7619 ck3 = 7623 ck3 = 7624 } # Khuvsgul -> Tapsa, Eki-Khem, Azas + link = { autogenerated = yes imp = 10553 ck3 = 7617 ck3 = 7620 ck3 = 1459 } # Yanzeli -> Saryg-Sep, Ikh Nogoon, Arzhan + link = { autogenerated = yes imp = 9467 ck3 = 7616 } # Yumurtka -> Munkh-Khairkhan + link = { autogenerated = yes imp = 10545 ck3 = 7611 ck3 = 7614 ck3 = 7615 ck3 = 7626 ck3 = 7625 } # Baishint -> Achit Nuur, Tal-Tugal, Tsambagarau, Mungun Taiga, Turgen Uul_bis + link = { autogenerated = yes imp = 1887 ck3 = 761 } # Soloi -> Tarsus + link = { autogenerated = yes imp = 10610 ck3 = 7609 } # Durvuljin -> Elsen Tasarkhai + link = { autogenerated = yes imp = 9466 ck3 = 7607 ck3 = 7608 } # Ganweihe -> Setsen Sart, Durgun + link = { autogenerated = yes imp = 1951 imp = 1888 ck3 = 760 } # Tyana, Podandus -> Tyana + link = { autogenerated = yes imp = 9465 ck3 = 7599 ck3 = 7613 } # Heyun -> Khyarhgas, Turgen Uul + link = { autogenerated = yes imp = 10544 ck3 = 7598 } # Huryee -> Turgen + link = { autogenerated = yes imp = 10542 ck3 = 7597 ck3 = 7612 } # Ulangom -> Ulaangom, Tsagan Shibetu + link = { autogenerated = yes imp = 10543 ck3 = 7596 ck3 = 7600 } # Zuungovi -> Uvs Nuur, Tesiin Gol + link = { autogenerated = yes imp = 10608 ck3 = 7595 } # Bayanbulag -> Zarman + link = { autogenerated = yes imp = 10606 ck3 = 7594 ck3 = 7593 } # Khaliun -> Eej Khairkhan, Nutsgen Uul + link = { autogenerated = yes imp = 10604 ck3 = 7592 } # Sharga -> Tseel + link = { autogenerated = yes imp = 9464 ck3 = 7590 ck3 = 7610 } # Xihai -> Bumbag Hayrhan Uul, Khar Us + link = { autogenerated = yes imp = 1971 imp = 1916 imp = 1975 ck3 = 759 } # Soatra, Kanna, Barata -> Ikonion + link = { autogenerated = yes imp = 10550 ck3 = 7588 ck3 = 7622 ck3 = 7785 } # Gurvansaikhan -> Darkhad, Bilin, Darkhad Mountains + link = { autogenerated = yes imp = 10551 ck3 = 7587 ck3 = 7589 } # Altraga -> Ulaantaiga, Khoridol Saridag + link = { autogenerated = yes imp = 10552 ck3 = 7586 ck3 = 7618 } # Kungurtug -> Dood Tsagaan Nuur, Por-Bajin + link = { autogenerated = yes imp = 10546 ck3 = 7583 ck3 = 7601 ck3 = 7602 ck3 = 7630 } # Terekhol -> Karates, Bayan_UVS, Altan Els, Despen + link = { autogenerated = yes imp = 1890 ck3 = 758 } # Holmoi -> Seleukia + link = { autogenerated = yes imp = 9469 ck3 = 7578 ck3 = 7603 ck3 = 7605 ck3 = 7606 } # Yidge -> Ulaagchiin Khar, Khan Khokhii, Airag, Urgamal + link = { autogenerated = yes imp = 9468 ck3 = 7577 ck3 = 7604 ck3 = 7579 } # Yemilc -> Tsetsen Khairkhan, Khan Huhiin, Uliastai + link = { autogenerated = yes imp = 10548 ck3 = 7576 ck3 = 7584 ck3 = 7585 } # Burenhaan -> Ikh Uul, Sangiin Dalai, Tomorbulag + link = { autogenerated = yes imp = 10547 ck3 = 7574 ck3 = 7575 } # Haraa Boomiin -> Oigon, Telmen + link = { autogenerated = yes imp = 12709 ck3 = 7573 ck3 = 7567 ck3 = 7571 ck3 = 7572 } # Igac -> Tovkhon, Khuisiin Naiman Nuur, Guchin-Us, Arvaikheer + link = { autogenerated = yes imp = 330 imp = 331 ck3 = 757 } # Karpasia, Salamis Kyprias -> Famagusta + link = { autogenerated = yes imp = 9501 ck3 = 7569 ck3 = 7570 } # Guqie -> Myangan Yamaat, Ongi + link = { autogenerated = yes imp = 9508 ck3 = 7565 ck3 = 7566 ck3 = 7568 } # Bayankhongor -> Tuin, Orog, Taatsiin Tsagaan + link = { autogenerated = yes imp = 7990 ck3 = 756 } # Kourion -> Limisol + link = { autogenerated = yes imp = 10609 ck3 = 7559 ck3 = 7560 } # Taishir -> Khasagt Khairkhan, Gegeen + link = { autogenerated = yes imp = 9479 ck3 = 7556 ck3 = 7558 ck3 = 7688 } # Elgek -> Arshan, Dachi Gama, Khurel Uul + link = { autogenerated = yes imp = 9477 ck3 = 7555 ck3 = 7697 } # Ari -> Selenga, Kabans + link = { autogenerated = yes imp = 10537 ck3 = 7553 ck3 = 7554 } # Baykalsk -> Khamar-Daban, Galuut Nuur + link = { autogenerated = yes imp = 9478 ck3 = 7552 } # Konur -> Buteeliin Nuruu + link = { autogenerated = yes imp = 9481 ck3 = 7550 } # Zhijushui -> Karatsagaan + link = { autogenerated = yes imp = 166 imp = 165 imp = 7956 imp = 7952 ck3 = 755 } # Perge, Olbia Pamphylias, Ariassos, Kretopolis Mountains -> Attaleia + link = { autogenerated = yes imp = 10534 ck3 = 7548 ck3 = 7549 } # Tsakir -> Dayan-Deerkhiin, Khargal + link = { autogenerated = yes imp = 9482 ck3 = 7546 ck3 = 7547 ck3 = 7557 } # Yag -> Erkhel, Khokhoo, Kyngarga + link = { autogenerated = yes imp = 10530 ck3 = 7544 ck3 = 7545 } # Egiin Gol -> Namnan Uul, Airkhan + link = { autogenerated = yes imp = 10532 ck3 = 7542 } # Darkhan -> Naushki + link = { autogenerated = yes imp = 9480 ck3 = 7551 } # Sogan -> Jida + link = { autogenerated = yes imp = 1936 imp = 1930 imp = 1933 imp = 7759 ck3 = 754 } # Apamea Cibotus, Mordiaion, Konane, (Unknown) -> Sozopolis + link = { autogenerated = yes imp = 10531 ck3 = 7537 ck3 = 7541 ck3 = 7538 ck3 = 7539 } # Boroo -> Tuul Khentii, Chikoy_OGR, Gorkhii-Terelj, Khentii + link = { autogenerated = yes imp = 9483 ck3 = 7533 } # Guyan -> Moltsog Els + link = { autogenerated = yes imp = 10539 ck3 = 7532 } # Zuunmod -> Ulaanbaatar + link = { autogenerated = yes imp = 9493 ck3 = 7531 ck3 = 7581 ck3 = 7582 } # Tilku -> Bulgan Uul, Galt, Tariat + link = { autogenerated = yes imp = 10528 ck3 = 7530 ck3 = 7543 } # Astyn Gol -> Sharga_OTU, Baibalik + link = { autogenerated = yes imp = 195 imp = 194 imp = 196 ck3 = 753 } # Malos, Ankyra, Klossama -> Ankyra + link = { autogenerated = yes imp = 10538 ck3 = 7529 ck3 = 7534 ck3 = 7536 } # Bayannuur -> Ishgent, Hustai, Oarkhan Uul + link = { autogenerated = yes imp = 9489 ck3 = 7528 } # Anhou -> Erdenet + link = { autogenerated = yes imp = 9491 ck3 = 7527 } # Zhiju -> Khanjargalant + link = { autogenerated = yes imp = 10529 ck3 = 7524 ck3 = 7525 } # Longcheng -> Hanhai, Karabalgasun + link = { autogenerated = yes imp = 12710 ck3 = 7521 ck3 = 7522 ck3 = 7523 } # Cecek -> Khogno Khan, Batkhaan, Shankh + link = { autogenerated = yes imp = 12711 ck3 = 7520 ck3 = 11501 } # Teri -> Longcheng, IMPASSABLE Yablonoi south + link = { autogenerated = yes imp = 7981 imp = 1913 ck3 = 752 } # Androna, Sakoena -> Galatia + link = { autogenerated = yes imp = 9488 ck3 = 7518 ck3 = 7519 ck3 = 7535 } # Yuwu -> Khoyorgol, Bayan Nuur, Orkhontuul + link = { autogenerated = yes imp = 10824 imp = 10823 ck3 = 7516 } # Uujim, Baga Turgen -> Dayan + link = { autogenerated = yes imp = 10822 ck3 = 7515 } # Kokorya -> Khoton + link = { autogenerated = yes imp = 9444 imp = 10821 ck3 = 7514 } # Pazyryk, Berel -> Khuiten + link = { autogenerated = yes imp = 1814 imp = 7921 ck3 = 751 } # Stephane, Sinope Mountains -> Paphlagonia + link = { autogenerated = yes imp = 10601 ck3 = 7509 ck3 = 7510 ck3 = 7511 } # Altai Sum -> Boro Burgasu, Suchatu, Alak-Nor + link = { autogenerated = yes imp = 9472 ck3 = 7507 } # Bor Uzuur -> Morin Tolochai + link = { autogenerated = yes imp = 10602 ck3 = 7506 ck3 = 7508 ck3 = 7781 } # Bugat -> Kara Asirgan, Tegurik, Gobi-Altai South + link = { autogenerated = yes imp = 9471 ck3 = 7505 ck3 = 7502 } # Yayin -> Chumy-su, Balgun + link = { autogenerated = yes imp = 247 imp = 7919 ck3 = 750 } # Pythopolis, Pythopolis Mountains -> Nikaea + link = { autogenerated = yes imp = 9452 ck3 = 7495 ck3 = 7496 ck3 = 7497 ck3 = 7493 ck3 = 8707 } # Kul -> Kaerji, Ulan Chuzir, Bulun-Tok, Tiebuken, ALTAISHAN + link = { autogenerated = yes imp = 315 imp = 8061 ck3 = 749 } # Dorylaion, Dorylaion Mons -> Dorylaion + link = { autogenerated = yes imp = 9454 ck3 = 7489 } # Sinek -> Torangy Kul + link = { autogenerated = yes imp = 9448 ck3 = 7486 } # Jinshan -> Narym_DZU + link = { autogenerated = yes imp = 9447 ck3 = 7485 ck3 = 7490 ck3 = 7494 } # Hujie -> Belesek, Chaklym, Jeminay + link = { autogenerated = yes imp = 9450 ck3 = 7483 ck3 = 7484 ck3 = 7487 ck3 = 7488 ck3 = 7491 } # Yimurt -> Agairik, Bostal, Kurchum, Kurguni, Sarytau + link = { autogenerated = yes imp = 1952 imp = 1948 imp = 7941 imp = 7756 imp = 7757 ck3 = 748 } # Aphrodisias, Diospolis Lykou, Kranaos, Kadmons Mons, (Unknown) -> Laodikeia + link = { autogenerated = yes imp = 7935 imp = 1981 imp = 7934 imp = 7930 ck3 = 747 } # Bargylia, Halikarnassos, Keramos, Halikarnassos Mountains -> Halikarnassos + link = { autogenerated = yes imp = 9475 ck3 = 7469 ck3 = 7471 ck3 = 7472 } # Bo'erqiangjizhen -> Barkul, Pulei, Yizhi + link = { autogenerated = yes imp = 9458 ck3 = 7466 ck3 = 1449 ck3 = 7499 } # Yehe -> Manas, Luntai, Jie_DZU + link = { autogenerated = yes imp = 1969 imp = 1972 imp = 290 ck3 = 746 } # Magnesia pros Maiandro, Priene, Ephesos -> Ephesos + link = { autogenerated = yes imp = 8224 imp = 8221 imp = 8222 imp = 8223 ck3 = 7459 } # Manas, Xi Qiemi, Danhuan, Alagou -> Beshbalik + link = { autogenerated = yes imp = 8256 ck3 = 7458 } # Barkol -> Hami + link = { autogenerated = yes imp = 10585 ck3 = 7457 ck3 = 7987 } # Shichengzhicun -> Yidu, Sengim + link = { autogenerated = yes imp = 8217 imp = 8216 imp = 8218 ck3 = 7455 } # Cheshiliugu, Jiaohe, Wutugu -> Yarkhoto + link = { autogenerated = yes imp = 287 imp = 296 imp = 7754 ck3 = 745 } # Smyrna, Magnesia, Sipylos Mons -> Smyrna + link = { autogenerated = yes imp = 262 imp = 261 imp = 267 imp = 7910 ck3 = 744 } # Kolonai, Abydos, Kale Peuke, Markaion Mons -> Abydos + link = { autogenerated = yes imp = 252 imp = 7908 ck3 = 743 } # Kyzikos, Antigoneia Kyzikene -> Kyzikos + link = { autogenerated = yes imp = 12451 ck3 = 7429 } # Nakur -> Inia + link = { autogenerated = yes imp = 12449 ck3 = 7418 ck3 = 7419 } # Tuto -> Mus Tagh, Kyin + link = { autogenerated = yes imp = 12448 ck3 = 7416 ck3 = 7417 } # Moski -> Ojin, Bilbe + link = { autogenerated = yes imp = 12453 ck3 = 7415 ck3 = 7421 ck3 = 7422 ck3 = 7420 ck3 = 7423 } # Tatte -> Sary Chumych, Kondoma, Sorok, Kara Chumych, Our + link = { autogenerated = yes imp = 12454 ck3 = 7413 ck3 = 7428 ck3 = 7426 } # Neoj -> Chumych, Berd', Torema + link = { autogenerated = yes imp = 10819 ck3 = 7411 ck3 = 7412 } # Katun -> Ongutai, Terektai + link = { autogenerated = yes imp = 243 imp = 244 imp = 7761 ck3 = 741 } # Astakos, Nicaea, Sophon Mons -> Nikomedia + link = { autogenerated = yes imp = 12446 ck3 = 7408 ck3 = 7410 ck3 = 7409 } # Weti -> Anyu, Katun, Anuy + link = { autogenerated = yes imp = 12442 ck3 = 7403 ck3 = 7406 ck3 = 7407 } # Ajma -> Poperech, Aley, Charych + link = { autogenerated = yes imp = 12424 imp = 12286 ck3 = 7402 } # Domuz, Utebay -> Molibay + link = { autogenerated = yes imp = 12425 ck3 = 7400 ck3 = 7454 } # Minik -> Kachu, Kulyndy Steppe + link = { autogenerated = yes imp = 207 imp = 209 ck3 = 740 } # Herakleia Pontike, Tieion -> Herakleia + link = { autogenerated = yes imp = 6011 ck3 = 74 } # Feruiria -> HALMSTAD + link = { autogenerated = yes imp = 12443 ck3 = 7398 ck3 = 7399 } # Kalaa -> Barnaii, Gorkoalei + link = { autogenerated = yes imp = 12450 ck3 = 7397 ck3 = 7414 } # Kaoj -> Barnaul, Yeshil Chumych + link = { autogenerated = yes imp = 12444 ck3 = 7395 ck3 = 7396 } # Mona -> Gorko, Kasmala + link = { autogenerated = yes imp = 12445 ck3 = 7392 ck3 = 7393 ck3 = 7394 } # Epto -> Dolgo, Kulunda, Kuria + link = { autogenerated = yes imp = 12428 imp = 12427 ck3 = 7391 } # Adak, Kir -> Kuchuk + link = { autogenerated = yes imp = 1812 ck3 = 739 } # Sinope -> Sinope + link = { autogenerated = yes imp = 12429 ck3 = 7389 } # Tabilgan -> Kacharsku + link = { autogenerated = yes imp = 12457 ck3 = 7384 ck3 = 7387 } # Suksi -> Karasuk, Bagan + link = { autogenerated = yes imp = 12459 ck3 = 7383 ck3 = 7385 ck3 = 7373 ck3 = 7374 } # Hejkir -> Kayask, Chulym, Ubins, Kargat + link = { autogenerated = yes imp = 12458 ck3 = 7382 ck3 = 7430 ck3 = 7381 ck3 = 7427 } # Jika -> Chik, Obchikanak, Kolyvan, Ob + link = { autogenerated = yes imp = 1807 imp = 1804 ck3 = 738 } # Amisos, Boinasa -> Amisos + link = { autogenerated = yes imp = 1799 ck3 = 737 } # Mazaka -> Kaisereia + link = { autogenerated = yes imp = 12405 ck3 = 7358 } # Kedv -> Burluk + link = { autogenerated = yes imp = 12354 ck3 = 7356 } # Hazarausa -> Abugan + link = { autogenerated = yes imp = 158 ck3 = 735 } # Ablastha -> Ablastha + link = { autogenerated = yes imp = 12422 ck3 = 7347 ck3 = 7404 } # Ata -> Uba_KAZ, Korginia + link = { autogenerated = yes imp = 12423 ck3 = 7346 ck3 = 7401 } # Tonaz -> Semey, Dolons + link = { autogenerated = yes imp = 12267 ck3 = 7345 } # Ayagoz -> Aljan + link = { autogenerated = yes imp = 12421 ck3 = 7340 ck3 = 7341 } # Tuhta -> Sasyk Kul, Ayrtau + link = { autogenerated = yes imp = 12418 ck3 = 7338 ck3 = 7339 ck3 = 7355 } # Anda -> Arkat, Chulak-Terek, Tekar + link = { autogenerated = yes imp = 12420 ck3 = 7335 ck3 = 7336 } # Boz -> Mukhor, Arkalyk_KAZe + link = { autogenerated = yes imp = 12419 ck3 = 7334 ck3 = 7337 } # Yuz -> Ak-Taylak, Urta Tau + link = { autogenerated = yes imp = 12270 ck3 = 7332 } # Karaul -> Jinghiz + link = { autogenerated = yes imp = 12260 ck3 = 7330 } # Dzhuz -> Tulkulam + link = { autogenerated = yes imp = 12271 ck3 = 7329 } # Ayulyk -> Akjeku + link = { autogenerated = yes imp = 12269 ck3 = 7328 } # Nuraly -> Serek + link = { autogenerated = yes imp = 12272 ck3 = 7322 ck3 = 7323 ck3 = 7324 } # Baygabyl -> Koy-Bagar, Akcha-Adyr, Jiren Suat + link = { autogenerated = yes imp = 12280 ck3 = 7321 ck3 = 7325 ck3 = 7326 } # Ajyrtas -> Jildi, Kalmek-Imel, Jorga + link = { autogenerated = yes imp = 12292 ck3 = 7320 ck3 = 7327 } # Akbulak -> Kokchetau, Bakanas + link = { autogenerated = yes imp = 12293 ck3 = 7319 ck3 = 7333 } # Taylan -> Dogolan, Degelen + link = { autogenerated = yes imp = 12291 ck3 = 7318 } # Kiikkashkan -> Edreï + link = { autogenerated = yes imp = 12273 imp = 12279 ck3 = 7317 } # Balkhash, Kyzyltu -> Kara Urunkay + link = { autogenerated = yes imp = 12274 ck3 = 7316 } # Tasaral -> Targyl + link = { autogenerated = yes imp = 12275 imp = 12277 ck3 = 7315 } # Kashkanteniz, Turlybay -> Baykara + link = { autogenerated = yes imp = 12278 ck3 = 7314 } # Sokutash -> Bulat + link = { autogenerated = yes imp = 12306 ck3 = 7311 ck3 = 7313 } # Mriyatay -> Manaka, Asaybay + link = { autogenerated = yes imp = 12301 ck3 = 7310 } # Hsuskas -> Betpa + link = { autogenerated = yes imp = 12310 imp = 12302 ck3 = 7308 } # Nahsah, Dhuhmas -> Bos-Tau + link = { autogenerated = yes imp = 12290 ck3 = 7306 ck3 = 7307 } # Tomar -> Kyzyl Ray, Kent_KAZ + link = { autogenerated = yes imp = 12281 ck3 = 7301 ck3 = 7304 ck3 = 7305 ck3 = 7354 } # Shabanbai -> Bugaly, Tokumbay, Nurtay, Jumek waste + link = { autogenerated = yes imp = 12307 ck3 = 7300 ck3 = 7312 } # Castay -> Arkalyk, Kuntun Kul + link = { autogenerated = yes imp = 6003 ck3 = 73 ck3 = 76 } # Bergio -> HELSINGBORG, LAHOLM + link = { autogenerated = yes imp = 12284 imp = 12285 ck3 = 7297 } # Karaobah, Birlik -> Uch Katyn + link = { autogenerated = yes imp = 12283 ck3 = 7294 ck3 = 7295 ck3 = 7296 } # Taldy -> Ku-Jeku, Bayan Aulska, Bol Agach + link = { autogenerated = yes imp = 12289 ck3 = 7291 ck3 = 7292 ck3 = 7293 } # Kandykol -> Juzbay, Ulenty, Uliuty + link = { autogenerated = yes imp = 12288 ck3 = 7290 } # Zhanaaul -> Jasky Kart + link = { autogenerated = yes imp = 5698 ck3 = 729 } # Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 12410 ck3 = 7288 } # Mely -> Bulandy + link = { autogenerated = yes imp = 12309 ck3 = 7287 ck3 = 7309 } # Udaras -> Kulan Utmas, Tokobay + link = { autogenerated = yes imp = 12308 ck3 = 7286 ck3 = 7299 } # Janu -> Sopak Sor, Karabas + link = { autogenerated = yes imp = 12316 ck3 = 7284 ck3 = 7285 } # Jahtas -> Konek, Jaksy Kyzy Kurt + link = { autogenerated = yes imp = 12313 ck3 = 7282 ck3 = 7283 } # Trnam -> Eghiz Kara, Kara Sor + link = { autogenerated = yes imp = 12335 ck3 = 7280 ck3 = 7281 } # Csira -> Koja Kul, Nura + link = { autogenerated = yes imp = 5693 ck3 = 728 } # Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 12333 ck3 = 7278 } # Oldal -> Kokjetau + link = { autogenerated = yes imp = 12315 ck3 = 7276 ck3 = 7277 } # Pacu -> Jaman Arganaty, Chubar Kul + link = { autogenerated = yes imp = 12332 ck3 = 7275 } # Fazik -> Kaptadyr + link = { autogenerated = yes imp = 12336 ck3 = 7274 ck3 = 7279 } # Agyek -> Kaska, Junkur Kul + link = { autogenerated = yes imp = 12328 imp = 12331 ck3 = 7273 } # Dadahti, Alom -> Ajutasty + link = { autogenerated = yes imp = 12317 imp = 12314 imp = 12319 ck3 = 7272 } # Nagas, Bihjam, Caksus -> Ulytau + link = { autogenerated = yes imp = 12323 ck3 = 7271 } # Wamhati -> Tamdins + link = { autogenerated = yes imp = 5700 ck3 = 727 } # Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 12321 ck3 = 7269 ck3 = 7270 } # Hyakr -> Tuzdyn, Jilanjik + link = { autogenerated = yes imp = 12320 ck3 = 7268 } # Prsthas -> Kyzyl Cheku + link = { autogenerated = yes imp = 11416 imp = 12318 ck3 = 7267 } # Marane, Daru -> Achu + link = { autogenerated = yes imp = 12322 ck3 = 7266 } # Pibati -> Ulu Jitanjik + link = { autogenerated = yes imp = 12324 ck3 = 7265 } # Smayatay -> Sor Kuduk + link = { autogenerated = yes imp = 11417 imp = 11415 ck3 = 7263 } # Adage, Zazi -> Jilali + link = { autogenerated = yes imp = 11412 imp = 11411 ck3 = 7262 } # Ogenage, Gan -> Janai Cheku + link = { autogenerated = yes imp = 12326 ck3 = 7260 ck3 = 7264 } # Bhinatsti -> Jaman Akkul, Karalbak + link = { autogenerated = yes imp = 11414 ck3 = 7259 ck3 = 7261 } # Vega -> Tusum Kum, Chumkar Kia + link = { autogenerated = yes imp = 12346 imp = 12344 ck3 = 7258 } # Prtatavah, Hupaya -> Tatyr Kul + link = { autogenerated = yes imp = 12329 imp = 12353 ck3 = 7257 } # Dharati, Paralata -> Murun Tomis + link = { autogenerated = yes imp = 11410 ck3 = 7256 } # Bezin -> Tumar + link = { autogenerated = yes imp = 12330 ck3 = 7254 } # Abhras -> Tibis Sor + link = { autogenerated = yes imp = 12349 ck3 = 7253 } # Abruxsaya -> Kamichly Kul + link = { autogenerated = yes imp = 12368 imp = 12352 ck3 = 7252 } # Sim, Danu -> Kosh Kurbay + link = { autogenerated = yes imp = 5708 ck3 = 725 } # Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 12369 ck3 = 7249 ck3 = 7250 } # Crva -> Dantenkul, Jarli Butak + link = { autogenerated = yes imp = 12371 ck3 = 7247 } # Cata -> Atamansku + link = { autogenerated = yes imp = 12370 ck3 = 7246 ck3 = 7248 } # Jhasra -> Suvunduk, Kbumak + link = { autogenerated = yes imp = 12356 ck3 = 7245 ck3 = 7251 } # Asper -> Jity Kul, Jitikul + link = { autogenerated = yes imp = 11413 ck3 = 7244 ck3 = 7255 } # Soma -> Chir Kala, Kyzyl Yar + link = { autogenerated = yes imp = 12355 ck3 = 7243 } # Diti -> Kum Saï + link = { autogenerated = yes imp = 12359 ck3 = 7241 ck3 = 7242 } # Patinasana -> Kos Biryuk, Karabutak + link = { autogenerated = yes imp = 11286 ck3 = 7240 } # Embi -> Airyk + link = { autogenerated = yes imp = 5713 imp = 5714 ck3 = 724 } # Mare Verginium, Mare Verginium -> Celtic Sea + link = { autogenerated = yes imp = 11281 ck3 = 7238 } # Kenkiyak -> Baisary + link = { autogenerated = yes imp = 11291 imp = 11282 ck3 = 7237 } # Ashchiy, Sagiz -> Tulugai Sor + link = { autogenerated = yes imp = 11283 ck3 = 7236 } # Koptogay -> Sorkul + link = { autogenerated = yes imp = 11285 ck3 = 7235 } # Babatay -> Ak Su + link = { autogenerated = yes imp = 12361 ck3 = 7234 ck3 = 7239 } # Vasnam -> Temir, Kos Uba + link = { autogenerated = yes imp = 11307 ck3 = 7232 } # Kuyandy -> Jarkul + link = { autogenerated = yes imp = 11303 imp = 11305 ck3 = 7231 } # Kenbay, Aksha -> Zarapan + link = { autogenerated = yes imp = 11306 ck3 = 7230 } # Mukur -> Kainar + link = { autogenerated = yes imp = 5723 imp = 5745 ck3 = 723 } # Mare Verginium, Mare Verginium -> Courtmacsherry Bay + link = { autogenerated = yes imp = 5913 imp = 5881 ck3 = 7229 } # Nassin, Gyechk -> Bakash-aul + link = { autogenerated = yes imp = 11308 imp = 11304 ck3 = 7228 } # Shoba, Makat -> Hyan + link = { autogenerated = yes imp = 11309 ck3 = 7226 ck3 = 7227 } # Zelshargan -> Ulu-Uil, Sagiz + link = { autogenerated = yes imp = 11284 ck3 = 7225 ck3 = 7233 } # Segizsay -> Isanbai, Basagha + link = { autogenerated = yes imp = 11480 imp = 11481 imp = 11488 ck3 = 7223 } # Opoin, Oitosyros, Dhokia -> Kyz Imchik + link = { autogenerated = yes imp = 11313 ck3 = 7222 } # Chokun -> Taisugan + link = { autogenerated = yes imp = 11479 ck3 = 7221 } # Oirpata -> Manatau + link = { autogenerated = yes imp = 12365 imp = 12366 ck3 = 7220 } # Mimvam, Mimrito -> Chubar_KAZ + link = { autogenerated = yes imp = 12498 ck3 = 7219 } # Ostny -> Barbastau + link = { autogenerated = yes imp = 11482 imp = 11487 ck3 = 7218 } # Raiwant, Bartatu -> Santas + link = { autogenerated = yes imp = 6737 ck3 = 7217 } # Andijan -> Sarybulak + link = { autogenerated = yes imp = 6788 ck3 = 7148 ck3 = 7149 } # Shura -> Sayaq, Tinimseyit + link = { autogenerated = yes imp = 4581 ck3 = 7208 } # Mare Hyrcanum -> Oghuz lakes + link = { autogenerated = yes imp = 10616 ck3 = 7203 ck3 = 7204 ck3 = 7206 } # Tekes -> Kash, Musari, Kunges + link = { autogenerated = yes imp = 10615 ck3 = 7202 ck3 = 7205 ck3 = 7207 } # Ili -> Ghulja, Iren-Chabirga, Avrautau + link = { autogenerated = yes imp = 10614 ck3 = 7200 ck3 = 7167 } # Aktogay -> Junzi, Kegen + link = { autogenerated = yes imp = 6001 ck3 = 72 } # Svimraros -> TOMMERUP + link = { autogenerated = yes imp = 9462 ck3 = 7194 ck3 = 7195 ck3 = 7196 ck3 = 7197 ck3 = 7185 ck3 = 7186 ck3 = 7193 ck3 = 7198 } # Shuanghe -> Ebi-nor, Kuytun, Dahyansi, Jinsko, Lepsink, Bole, Modo-Bartik, Koltun + link = { autogenerated = yes imp = 9460 ck3 = 7192 ck3 = 7467 } # Donglin -> Karamay, Wutanzili + link = { autogenerated = yes imp = 9461 ck3 = 7191 ck3 = 7215 } # Xilin -> Toli, Tarbagatai mountains + link = { autogenerated = yes imp = 12264 ck3 = 7190 ck3 = 7492 } # Danmu -> Baiyang, Hoboksar + link = { autogenerated = yes imp = 12263 ck3 = 7187 ck3 = 7189 } # Emin -> Emil, Sarychulsyn + link = { autogenerated = yes imp = 12261 ck3 = 7184 ck3 = 7188 } # Alakol -> Usharal, Ala-kul + link = { autogenerated = yes imp = 12265 ck3 = 7182 ck3 = 7183 ck3 = 7331 } # Koldar -> Ayagoz, Guzkol, Kyzyl Küskü + link = { autogenerated = yes imp = 9453 ck3 = 7179 ck3 = 7180 ck3 = 7181 } # Duotanling -> Cherga, Zatsan, Chuguchak + link = { autogenerated = yes imp = 12266 ck3 = 7178 } # Ushtobe -> Kokpekty + link = { autogenerated = yes imp = 12268 ck3 = 7177 ck3 = 7343 ck3 = 7344 } # Zaysan -> Bazarka, Kandygataï, Altyn-Kolekis + link = { autogenerated = yes imp = 9449 ck3 = 7176 ck3 = 7342 ck3 = 7348 ck3 = 7350 ck3 = 7351 ck3 = 7349 } # Sargan -> Kokpektinsk, Kalbin, Öskemen, Bukhtarma, Zyryan, Ridder + link = { autogenerated = yes imp = 12259 ck3 = 7175 ck3 = 1426 } # Kulbay -> Djusagach, Sarkand + link = { autogenerated = yes imp = 12257 imp = 12256 ck3 = 7174 } # Maylybay, Ul'gi -> Lyukum + link = { autogenerated = yes imp = 12258 ck3 = 7173 } # Uzyak -> Uchkul + link = { autogenerated = yes imp = 12255 ck3 = 7171 ck3 = 7172 } # Taldykorgan -> Taldiqorgan, Kopal + link = { autogenerated = yes imp = 10618 ck3 = 7169 } # Caspan -> Ichiwooq + link = { autogenerated = yes imp = 12247 imp = 12248 ck3 = 7168 } # Ily, Bakbakty -> Qayaliq + link = { autogenerated = yes imp = 10617 imp = 10613 ck3 = 7166 } # Bosteri, Chilpek -> Kyzyl Suu + link = { autogenerated = yes imp = 10612 imp = 9389 ck3 = 7165 } # Issyk, Impassable -> Talgar + link = { autogenerated = yes imp = 9455 ck3 = 7164 } # Jieshan -> Almaty + link = { autogenerated = yes imp = 11407 ck3 = 7163 } # Adrug -> Kopathal + link = { autogenerated = yes imp = 6779 ck3 = 7162 } # Suyab -> Kaskelen + link = { autogenerated = yes imp = 11391 imp = 6780 imp = 11405 imp = 11553 ck3 = 7161 } # Savu, Nevaket, Kas, Impassable -> Kurdai + link = { autogenerated = yes imp = 11406 imp = 12249 ck3 = 7160 } # Krou, Akzhar -> Tamgaly + link = { autogenerated = yes imp = 11404 ck3 = 7158 } # Komar -> Chu + link = { autogenerated = yes imp = 11402 imp = 11403 imp = 11401 ck3 = 7156 } # Vaca, Zloiar, Dena -> Mirnyy + link = { autogenerated = yes imp = 12276 imp = 11400 ck3 = 7155 } # Mynaral, Vadar -> Shyganak + link = { autogenerated = yes imp = 11390 imp = 11394 ck3 = 7144 } # Lanyar, Savan -> Nevaket + link = { autogenerated = yes imp = 11388 imp = 11389 imp = 11385 ck3 = 7143 } # Galage, Ecavu, Vau -> Itte-Kichu + link = { autogenerated = yes imp = 6784 imp = 6786 imp = 6785 ck3 = 7141 } # Barskhan, Tobe, Shelji -> Taraz + link = { autogenerated = yes imp = 5756 imp = 5743 imp = 5744 ck3 = 714 } # Oceanus Atlanticus, Oceanus Atlanticus, Mare Hibernicum -> Coast of Ailech + link = { autogenerated = yes imp = 7265 imp = 7271 imp = 7266 ck3 = 7139 } # Zintik, Kush, Qaram -> Chakpak + link = { autogenerated = yes imp = 7264 imp = 6791 ck3 = 7138 } # Maidanchach, Chach -> Isfijab + link = { autogenerated = yes imp = 7263 imp = 7245 ck3 = 7137 } # Jaxartes, Chinaz -> Nuket + link = { autogenerated = yes imp = 11379 imp = 11377 imp = 11378 ck3 = 7133 } # Cannabis, Val, Vurun -> Quriltay + link = { autogenerated = yes imp = 11380 imp = 11381 imp = 11376 ck3 = 7132 } # Iryk, Herros, Gik -> Talas + link = { autogenerated = yes imp = 11370 imp = 11375 imp = 11382 ck3 = 7131 } # Tigri, Maca, Ippa -> Karakul + link = { autogenerated = yes imp = 5731 ck3 = 713 } # Mare Hibernicum -> Irish Sea + link = { autogenerated = yes imp = 7262 ck3 = 7128 ck3 = 7129 } # Maidankuyryk -> Yasi, Shavgar + link = { autogenerated = yes imp = 6795 imp = 7261 imp = 6794 ck3 = 7127 } # Shavgar, Maidankoga, Kuyruk -> Shulak + link = { autogenerated = yes imp = 7250 imp = 7249 ck3 = 7123 } # Koga, Akkum -> Sighnaq + link = { autogenerated = yes imp = 11348 ck3 = 7122 } # Kumsuat -> Suzak + link = { autogenerated = yes imp = 11349 imp = 11369 imp = 11372 ck3 = 7121 } # Taldyk, Mazgi, Sturi -> Mushun + link = { autogenerated = yes imp = 11350 ck3 = 7120 } # Tuzkol -> Tashti + link = { autogenerated = yes imp = 5718 imp = 5717 ck3 = 712 } # Mare Verginium, Mare Verginium -> Bristol Channel + link = { autogenerated = yes imp = 11347 ck3 = 7119 } # Abay -> Aq-Masjid + link = { autogenerated = yes imp = 11351 imp = 11368 ck3 = 7117 } # Toghayy, Kassi -> Azez-kul + link = { autogenerated = yes imp = 11346 ck3 = 7116 } # Zharagash -> Beljan + link = { autogenerated = yes imp = 7256 ck3 = 7115 } # Zantak -> Koskul + link = { autogenerated = yes imp = 7257 imp = 7258 ck3 = 7114 } # Qala, Birim -> Buzai + link = { autogenerated = yes imp = 11352 ck3 = 7113 } # Kuduk -> Uzun-kul + link = { autogenerated = yes imp = 11345 imp = 11343 ck3 = 7112 } # Baikonur, Enbekshi -> Kara-Mugai + link = { autogenerated = yes imp = 11342 ck3 = 7111 } # Zhanatalap -> Raimskoe + link = { autogenerated = yes imp = 7254 imp = 7253 ck3 = 7110 } # Boot, Ziram -> Kazalinsk + link = { autogenerated = yes imp = 5715 imp = 5716 imp = 5722 ck3 = 711 } # Mare Verginium, Mare Verginium, Mare Verginium -> Celtic Sea + link = { autogenerated = yes imp = 11267 imp = 11344 ck3 = 7109 } # Tabankuduk, Orazbay -> Dzangent + link = { autogenerated = yes imp = 11354 imp = 11353 ck3 = 7108 } # Tatan, Berdaly -> Tailyak-kul + link = { autogenerated = yes imp = 11362 imp = 11355 imp = 11366 ck3 = 7107 } # Qalmaqqyrgan, Zhenishkekum, Lokyldak -> Arys-kum + link = { autogenerated = yes imp = 11364 imp = 11363 ck3 = 7106 } # Ush, Kyshtau -> Chubar + link = { autogenerated = yes imp = 11360 ck3 = 7105 } # Akirek -> Chalkar + link = { autogenerated = yes imp = 11361 ck3 = 7104 } # Saryapan -> Kalmas + link = { autogenerated = yes imp = 11357 imp = 11356 ck3 = 7103 } # Zhalauly, Kayta -> Terekli + link = { autogenerated = yes imp = 11269 ck3 = 7102 } # Saksaul -> Zhelanash + link = { autogenerated = yes imp = 11358 ck3 = 7101 } # Yrgyz -> Djelavi + link = { autogenerated = yes imp = 11359 ck3 = 7100 } # Balta -> Irgis + link = { autogenerated = yes imp = 5721 imp = 5730 ck3 = 710 } # Mare Verginium, Mare Hibernicum -> Irish Sea + link = { autogenerated = yes imp = 11408 imp = 11279 imp = 11409 ck3 = 7099 } # Zoza, Sapibulak, Edug -> Airyuk + link = { autogenerated = yes imp = 11270 ck3 = 7097 } # Kez Kara -> Agyspe + link = { autogenerated = yes imp = 11277 imp = 11275 ck3 = 7096 } # Shalkar, Baykadam -> Barsuki + link = { autogenerated = yes imp = 11278 imp = 11280 ck3 = 7095 } # Kaynbulak, Sel -> Emba + link = { autogenerated = yes imp = 11289 ck3 = 7094 } # Dzhaindy -> Djamantau + link = { autogenerated = yes imp = 11288 imp = 11287 ck3 = 7093 } # Karabulak, Chagan -> Kashkarata + link = { autogenerated = yes imp = 11276 ck3 = 7092 } # Quqyq -> Kugaral + link = { autogenerated = yes imp = 11272 imp = 11271 ck3 = 7091 } # Kektikshe, Bozoy -> Kulandy + link = { autogenerated = yes imp = 5488 imp = 5485 ck3 = 7090 } # Tirim, Gran -> Davlet-Girei + link = { autogenerated = yes imp = 5736 imp = 5733 imp = 5737 ck3 = 709 } # Mare Hibernicum, Mare Hibernicum, Mare Hibernicum -> Irish Sea + link = { autogenerated = yes imp = 5477 imp = 5476 ck3 = 7089 } # Kilich, Sthura -> Vezir + link = { autogenerated = yes imp = 5428 ck3 = 7088 } # Suna -> Oglamych + link = { autogenerated = yes imp = 5459 imp = 5458 ck3 = 7087 } # Azkoi, Dnem -> Kum-Sebszen + link = { autogenerated = yes imp = 5461 imp = 5460 ck3 = 7086 } # Khanash, Garam -> Sumbe + link = { autogenerated = yes imp = 5462 imp = 5463 ck3 = 7085 } # Yetteka, Ziri -> Bekdas + link = { autogenerated = yes imp = 5467 imp = 5468 imp = 5469 ck3 = 7081 } # Teike, Shachkra, Byrshchre -> Fort Aleksandrovkiy + link = { autogenerated = yes imp = 5732 imp = 5729 imp = 5735 ck3 = 708 } # Mare Hibernicum, Mare Hibernicum, Mare Hibernicum -> Irish Sea + link = { autogenerated = yes imp = 5457 imp = 5478 ck3 = 7079 } # Ustret, Zhanit -> Koizak + link = { autogenerated = yes imp = 5471 imp = 5493 ck3 = 7078 } # Tamaasan, Thurissa -> Kajdak + link = { autogenerated = yes imp = 5492 imp = 5491 ck3 = 7076 } # Erim, Gyoshach -> Churuk + link = { autogenerated = yes imp = 5494 imp = 5497 ck3 = 7074 } # Kurchina, Kylorica -> Beyneu + link = { autogenerated = yes imp = 5496 imp = 5498 ck3 = 7073 } # Donom, Vyoros -> Tengiz + link = { autogenerated = yes imp = 5915 ck3 = 7072 } # Alsita -> Kumstan + link = { autogenerated = yes imp = 11299 ck3 = 7071 } # Beyneu -> Chumishtikul + link = { autogenerated = yes imp = 11298 imp = 11295 imp = 11296 imp = 11297 ck3 = 7070 } # Shomishtikol, Qosbulaq, Matay, Turush -> Kos-Buwak + link = { autogenerated = yes imp = 6397 imp = 1865 imp = 1866 imp = 839 imp = 7983 ck3 = 707 } # Barzala, Miasena, Korne, Nymphaios, Nymphaios Mountains -> Melitene + link = { autogenerated = yes imp = 11292 ck3 = 7069 } # Qamysty -> Asheh-Atrik + link = { autogenerated = yes imp = 11290 ck3 = 7068 } # Tobusken -> Namastau + link = { autogenerated = yes imp = 11301 imp = 11293 ck3 = 7067 } # Azgyl, Karaoba -> Issenjau + link = { autogenerated = yes imp = 5914 imp = 11302 ck3 = 7066 } # Kholan, Imankara -> Azgyl + link = { autogenerated = yes imp = 5499 ck3 = 7065 } # Satticha -> Qoshagyl + link = { autogenerated = yes imp = 12432 ck3 = 7064 } # Otag -> Karaoba + link = { autogenerated = yes imp = 12433 ck3 = 7062 ck3 = 7063 } # Toprak -> Teke, Ertis + link = { autogenerated = yes imp = 12412 imp = 12414 ck3 = 7061 } # Akar, Enyv -> Seletyteniz + link = { autogenerated = yes imp = 12411 ck3 = 7060 } # Folyik -> Koksengrisor + link = { autogenerated = yes imp = 1783 imp = 1781 ck3 = 706 } # Anniaka, Basgoedariza -> Colonea + link = { autogenerated = yes imp = 12426 ck3 = 7054 } # Ordu -> Yamishevo + link = { autogenerated = yes imp = 12430 ck3 = 7053 ck3 = 7390 } # Ogul -> Pavlodar, Lamych + link = { autogenerated = yes imp = 12437 ck3 = 7052 ck3 = 7388 } # Tag -> Karasuk, Topolno + link = { autogenerated = yes imp = 12435 ck3 = 7051 } # Yagmur -> Tatarki + link = { autogenerated = yes imp = 12438 ck3 = 7049 ck3 = 7050 } # Yel -> Abyszkan, Chany + link = { autogenerated = yes imp = 12441 ck3 = 7047 ck3 = 7386 } # Kol -> Kainsk, Sartlan + link = { autogenerated = yes imp = 12439 ck3 = 7045 ck3 = 7046 } # Tepu -> Tiabis, Tatarka + link = { autogenerated = yes imp = 12436 ck3 = 7044 ck3 = 7048 } # Bodun -> Omsk, Sals Poveret + link = { autogenerated = yes imp = 12431 imp = 12287 ck3 = 7043 } # Kudegu, Zhamantuz -> Koriakovsky + link = { autogenerated = yes imp = 12334 ck3 = 7042 ck3 = 7289 } # Hizik -> Karu Samys, Ak Tasty + link = { autogenerated = yes imp = 12413 ck3 = 7041 ck3 = 5864 } # Altal -> Erementau, Kazakh wasteland + link = { autogenerated = yes imp = 12338 ck3 = 7040 } # Falu -> Astrakhanka + link = { autogenerated = yes imp = 1744 imp = 1698 imp = 1764 ck3 = 704 } # Karana, Sinara, Bizana -> Theodosiopolis + link = { autogenerated = yes imp = 12341 ck3 = 7039 ck3 = 7357 } # Kuzd -> Chargaldzin, Jangyztau + link = { autogenerated = yes imp = 12339 ck3 = 7038 } # Gyalu -> Atbasar + link = { autogenerated = yes imp = 12342 ck3 = 7037 ck3 = 7059 } # Marok -> Kokchetav, Shchuchinsk + link = { autogenerated = yes imp = 12407 ck3 = 7036 ck3 = 5863 } # Faraszt -> Kafa, Kushmurun wasteland + link = { autogenerated = yes imp = 12408 ck3 = 7035 } # Tolvaj -> Petropavl + link = { autogenerated = yes imp = 12415 ck3 = 7034 } # Ragad -> Ibeitei + link = { autogenerated = yes imp = 12416 ck3 = 7033 ck3 = 1306 ck3 = 7012 } # Tegez -> Sargatka, Tara, Kartaszevo + link = { autogenerated = yes imp = 12417 ck3 = 7030 ck3 = 7031 ck3 = 7032 } # Konnyu -> Kazanskoye, Tenis, Tukalinsk + link = { autogenerated = yes imp = 483 imp = 4037 imp = 8007 ck3 = 703 } # Artales, Kitharizon, Halouras -> Martyropolis + link = { autogenerated = yes imp = 12340 ck3 = 7026 } # Sotet -> Karasu + link = { autogenerated = yes imp = 12347 ck3 = 7025 } # Siraka -> Kush-Murun + link = { autogenerated = yes imp = 12348 ck3 = 7024 } # Varika -> Auliekol + link = { autogenerated = yes imp = 12406 imp = 12397 ck3 = 7023 } # Esik, Pawel -> Kak + link = { autogenerated = yes imp = 12399 ck3 = 7021 ck3 = 5861 } # Minan -> Mamlyutka, Tobol-Ishim wasteland + link = { autogenerated = yes imp = 12394 imp = 12398 ck3 = 7020 } # Xulem, Elmi -> Vargashi + link = { autogenerated = yes imp = 1856 imp = 1857 ck3 = 702 } # Anzita, Hierapolis Sophenias -> Tzimisca + link = { autogenerated = yes imp = 12402 ck3 = 7019 ck3 = 7058 ck3 = 1223 } # Jomas -> Uktuz, Shchuchye, Ishim + link = { autogenerated = yes imp = 12400 ck3 = 7018 } # Sat -> Mostovskoye + link = { autogenerated = yes imp = 12403 ck3 = 7017 ck3 = 7057 } # Pum -> Yalu Torovsk, Kurtan + link = { autogenerated = yes imp = 12434 imp = 12440 ck3 = 7013 } # Bolur, Orman -> Petropavolsk + link = { autogenerated = yes imp = 1562 ck3 = 701 } # Zombis -> Manzikert + link = { autogenerated = yes imp = 5757 imp = 5740 imp = 6304 ck3 = 700 } # Oceanus Atlanticus, Mare Hibernicum, LAKE -> Sea of Hebrides + link = { autogenerated = yes imp = 6000 ck3 = 70 ck3 = 71 } # Uppakra -> LUND, TRELLEBORG + link = { autogenerated = yes imp = 12761 ck3 = 7 } # Haemodia -> SCALLOWAY + link = { autogenerated = yes imp = 5739 ck3 = 699 } # Mare Hibernicum -> Firth of Clyde + link = { autogenerated = yes imp = 12792 imp = 12805 imp = 5766 ck3 = 698 } # Mare Septentrionalis, Oceanus Atlanticus, Oceanus Atlanticus -> The Minch + link = { autogenerated = yes imp = 5761 imp = 12829 imp = 5762 ck3 = 697 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> The Atlantic + link = { autogenerated = yes imp = 5760 imp = 5758 imp = 5759 imp = 6331 ck3 = 696 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, LAKE -> Sea of Hebrides + link = { autogenerated = yes imp = 12820 imp = 12770 imp = 12790 imp = 12796 imp = 5763 imp = 5764 ck3 = 695 } # Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus, Oceanus Atlanticus -> The Atlantic + link = { autogenerated = yes imp = 5806 imp = 12789 imp = 12791 imp = 5828 ck3 = 694 } # Mare Septentrionale, Mare Septentrionalis, Mare Septentrionalis, Mare Septentrionale -> North Sea + link = { autogenerated = yes imp = 12817 imp = 5767 ck3 = 693 } # Mare Septentrionalis, Mare Orcadum -> Sea of Orkney + link = { autogenerated = yes imp = 5771 ck3 = 692 } # Mare Septentrionale -> Eastern Coast of Scotland + link = { autogenerated = yes imp = 5796 imp = 5792 imp = 5793 imp = 5795 imp = 5797 imp = 5800 imp = 5801 imp = 5802 ck3 = 691 } # Mare Septentrionale, Mare Germanicum, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Germanicum -> North Sea + link = { autogenerated = yes imp = 5773 imp = 5774 ck3 = 690 } # Mare Septentrionale, Mare Septentrionale -> East English Coast + link = { autogenerated = yes imp = 8036 ck3 = 689 } # Abus -> Humber River + link = { autogenerated = yes imp = 5775 ck3 = 995 } # Mare Germanicum -> East English Coast + link = { autogenerated = yes imp = 5776 ck3 = 688 } # Mare Germanicum -> The Wash + link = { autogenerated = yes imp = 5777 ck3 = 687 } # Mare Germanicum -> Coast of Suffolk + link = { autogenerated = yes imp = 5778 ck3 = 686 } # Mare Germanicum -> Thames Estuary + link = { autogenerated = yes imp = 5780 imp = 5779 imp = 5783 imp = 7724 ck3 = 685 } # Mare Germanicum, Mare Germanicum, Mare Germanicum, Rhenus -> Coast of Zeeland + link = { autogenerated = yes imp = 5782 ck3 = 684 } # Lacus Flevo -> Zuiderzee + link = { autogenerated = yes imp = 10687 ck3 = 683 } # Limfjord -> Limfjord + link = { autogenerated = yes imp = 995 imp = 988 ck3 = 682 } # Molchia, Thospia -> Van + link = { autogenerated = yes imp = 1582 imp = 1583 ck3 = 681 } # Ani, Dzhrapi -> Ani + link = { autogenerated = yes imp = 3885 ck3 = 68 } # Herulia Centralis -> NAKSKOV + link = { autogenerated = yes imp = 1690 imp = 1676 imp = 1679 imp = 1685 imp = 1695 imp = 1699 ck3 = 679 } # Zghuderi, Meschistha-Harmozike, Kavtiskhevi, Uplistsikhe, Borjomi, Mzetamze -> Gori + link = { autogenerated = yes imp = 1734 imp = 1773 imp = 1775 imp = 1797 imp = 8000 ck3 = 678 } # Trapezous, Zigana, Magnana, Koralla, Trapezous Mountains -> Trebizond + link = { autogenerated = yes imp = 1701 imp = 1723 imp = 1724 imp = 1725 ck3 = 677 } # Goderdzi Pass, Pichvnari, Apasidam, Bathys Limen -> Batumi + link = { autogenerated = yes imp = 7604 ck3 = 674 } # Tzur -> Derbent + link = { autogenerated = yes imp = 1668 imp = 1550 imp = 1571 ck3 = 672 } # Vayots Dzor, Maravan, Artaxata -> Dvin + link = { autogenerated = yes imp = 1616 imp = 1614 imp = 1615 imp = 5213 ck3 = 671 } # Kapan, Sigan, Balaberd, IMPASSIBLE TERRAIN 213 -> Kapan + link = { autogenerated = yes imp = 1640 ck3 = 670 } # Tigranakert -> Gandzasar + link = { autogenerated = yes imp = 1634 ck3 = 669 } # Kamachia -> Shemakha + link = { autogenerated = yes imp = 5819 imp = 5787 imp = 5788 imp = 5815 imp = 5824 imp = 5830 ck3 = 667 } # Mare Septentrionale, Mare Septentrionale, Mare Septentrionale, Mare Germanicum, Mare Septentrionale, Mare Septentrionale -> Coast of Denmark + link = { autogenerated = yes imp = 10000 imp = 9992 imp = 9999 ck3 = 6669 } # Izam, Traghen, Terbu -> TRAGHAN + link = { autogenerated = yes imp = 10002 imp = 10001 ck3 = 6667 } # Tajhiri, Qatrun -> FEZZAN_ROUTE + link = { autogenerated = yes imp = 5820 imp = 5823 ck3 = 666 } # Mare Septentrionale, Mare Septentrionale -> Coast of Norway + link = { autogenerated = yes imp = 9997 ck3 = 6601 ck3 = 6661 } # Tisit -> WADI_IRAWAN, GHAT_ROUTE + link = { autogenerated = yes imp = 3881 ck3 = 66 } # Insula Anglorum -> SVENDBORG + link = { autogenerated = yes imp = 3883 ck3 = 65 } # Reudingia Minor -> ODENSE + link = { autogenerated = yes imp = 12810 imp = 12803 imp = 12809 imp = 12842 ck3 = 646 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus -> Gulf of Finland + link = { autogenerated = yes imp = 5831 imp = 5827 imp = 5829 imp = 5832 ck3 = 645 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus -> Skagerrak + link = { autogenerated = yes imp = 9995 imp = 9982 imp = 9983 imp = 9984 imp = 9996 imp = 8068 imp = 8092 ck3 = 6449 } # Sharraba, Gelah, Lecksair, Garama, Baghira, Kuweib, Duweb -> GERMA + link = { autogenerated = yes imp = 9986 imp = 9979 imp = 9980 imp = 9981 imp = 8066 ck3 = 6448 } # Gadduwah, Samnu, Sabha, Chlef, Halfa -> SABHA + link = { autogenerated = yes imp = 10432 imp = 10416 imp = 10418 imp = 10441 ck3 = 6445 } # Gabub, Rumaylah, Kura, Samtarru -> WAD_ABU_NAHL + link = { autogenerated = yes imp = 10433 ck3 = 6444 } # Barakit -> SHOWAK_SOUTH + link = { autogenerated = yes imp = 633 imp = 10428 imp = 10430 imp = 7591 imp = 8102 ck3 = 6443 } # Druka, Mareb, Durna, Acranoe, Sudan Impassable -> GASH + link = { autogenerated = yes imp = 7551 imp = 10510 ck3 = 6441 } # Gulbub, Nakfa -> KA'BIR + link = { autogenerated = yes imp = 5843 imp = 5838 imp = 5840 imp = 5841 imp = 5842 imp = 5844 imp = 6327 imp = 6328 ck3 = 644 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, LAKE, LAKE -> South Funen Archipelago + link = { autogenerated = yes imp = 3331 imp = 10419 imp = 7590 ck3 = 6437 } # Zithaa, Gamal, Demora -> SHOWAK + link = { autogenerated = yes imp = 10431 imp = 10406 ck3 = 6436 } # Baqbaqah, Thalathun -> WOLQAYT + link = { autogenerated = yes imp = 9938 imp = 9934 imp = 9935 ck3 = 6429 } # Surayj, Rabak, Kawah -> KOSTI + link = { autogenerated = yes imp = 10425 imp = 3322 imp = 3323 ck3 = 6411 } # Tuwesat, Borassa, Durai -> MIDDLE_ATBARA + link = { autogenerated = yes imp = 10402 imp = 10404 ck3 = 6410 } # Essayal, Shirayyet -> JEBEL_GEILI + link = { autogenerated = yes imp = 5849 imp = 5850 ck3 = 641 } # Oceanus Sarmaticus, Oceanus Sarmaticus -> Coast of Pomerania + link = { autogenerated = yes imp = 10401 imp = 10400 imp = 7587 imp = 7588 imp = 10403 ck3 = 6409 } # Bagarah, Hufrah, Anak, Dmut, Mirikh -> UMM_USUDA + link = { autogenerated = yes imp = 10399 imp = 10381 imp = 10382 imp = 10383 ck3 = 6408 } # Kakabi, Hamadab, Bafalil, Hatab -> BASA + link = { autogenerated = yes imp = 10386 imp = 10376 imp = 10377 imp = 10380 imp = 10384 imp = 10385 imp = 10387 ck3 = 6407 } # Zariba, Mahdood, Hissuna, Hejeilat, Suriba, Adabda, Keili -> NAGA + link = { autogenerated = yes imp = 10410 imp = 10411 imp = 10414 ck3 = 6405 } # Fao, Singda, Qalbi -> EL-ELEILA + link = { autogenerated = yes imp = 10413 imp = 9937 imp = 10415 ck3 = 6404 } # Dinder, Singa, Simsim -> ABU_GEILI + link = { autogenerated = yes imp = 9939 ck3 = 6402 ck3 = 6432 } # Sabbalo -> JEBEL_MOYA, RENK + link = { autogenerated = yes imp = 9933 ck3 = 6401 } # Jebel Moya -> SAQADI + link = { autogenerated = yes imp = 9941 ck3 = 6400 ck3 = 6403 } # Abal -> SENNAR, SINGA + link = { autogenerated = yes imp = 5863 imp = 5861 imp = 5864 ck3 = 640 } # Oceanus Sarmaticus, Mare Gothicum, Oceanus Sarmaticus -> Baltic Sea + link = { autogenerated = yes imp = 9931 imp = 9932 imp = 9936 ck3 = 6399 } # Amara, Sennar, Manaqil -> UM_SUNT + link = { autogenerated = yes imp = 3319 ck3 = 6398 } # Syuta -> ARBAJI + link = { autogenerated = yes imp = 3320 imp = 3318 ck3 = 6396 } # Korin, Kuria -> GETEINA + link = { autogenerated = yes imp = 3314 ck3 = 6395 } # Alwa -> ALTI + link = { autogenerated = yes imp = 10408 imp = 10388 ck3 = 6394 } # Azraq, Harazah -> SOBA + link = { autogenerated = yes imp = 3315 imp = 9928 imp = 9929 imp = 9930 ck3 = 6393 } # Gurnah, Muqaddam, Bana, Kigeira -> USHARA + link = { autogenerated = yes imp = 3313 imp = 10378 imp = 10379 ck3 = 6392 } # Soba, Surayriyah, Sayyidab -> KADERO + link = { autogenerated = yes imp = 3311 imp = 10375 ck3 = 6391 } # Toprate, Kasir -> GEILI + link = { autogenerated = yes imp = 9927 imp = 3312 imp = 9926 imp = 9925 ck3 = 6390 } # Fashfash, Petta, Samra, Baggura -> SHAHEINAB + link = { autogenerated = yes imp = 6469 imp = 5860 imp = 6519 ck3 = 639 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus -> Baltic Sea + link = { autogenerated = yes imp = 7598 imp = 9913 imp = 7597 ck3 = 6388 } # Sabaste, Gidmib, Erascum -> LOWER_ODIB + link = { autogenerated = yes imp = 10392 imp = 10398 ck3 = 6382 } # Misrar, Hashim -> WADI_AMUR + link = { autogenerated = yes imp = 7553 imp = 7552 ck3 = 6380 } # Aqiq, Deresa -> BADI + link = { autogenerated = yes imp = 5852 ck3 = 638 } # Oceanus Sarmaticus -> Coast of Lithuania + link = { autogenerated = yes imp = 7500 ck3 = 6379 ck3 = 6381 } # Ptolemais Theron -> AKIK, BAZIN + link = { autogenerated = yes imp = 7501 ck3 = 6378 } # Elephanton Chora -> TOKAR + link = { autogenerated = yes imp = 7599 ck3 = 6377 } # Setronon -> SUAKIN + link = { autogenerated = yes imp = 10390 imp = 10389 imp = 10393 ck3 = 6376 } # Sinkat, Kaweit, Hamdab -> SINKAT + link = { autogenerated = yes imp = 7596 imp = 7595 ck3 = 6371 } # Canarbis, Arachos -> DUNGUNAB + link = { autogenerated = yes imp = 9914 ck3 = 6370 ck3 = 6352 } # Biyar -> AL-HAJAR_NUBIA, ABU-HAMMAD + link = { autogenerated = yes imp = 5848 ck3 = 637 } # Mare Eovium -> Coast of Oland + link = { autogenerated = yes imp = 626 ck3 = 6368 ck3 = 6369 } # Napata -> REDAB, KUWEIB + link = { autogenerated = yes imp = 646 ck3 = 6367 } # Fourth Cataract -> SHEMKHIYA + link = { autogenerated = yes imp = 640 imp = 643 imp = 9888 ck3 = 6365 } # Epis, Araba, Tulih -> KELI + link = { autogenerated = yes imp = 644 imp = 10373 imp = 10374 ck3 = 6364 } # Wad ban Naqa, Aborepi, Nagaa -> SHENDI + link = { autogenerated = yes imp = 642 imp = 639 imp = 641 ck3 = 6363 } # Summarum, Tadu, Meroe -> AL-ABWAB + link = { autogenerated = yes imp = 592 ck3 = 6361 ck3 = 6362 } # Talmis -> SABAGURA, KALABSHA + link = { autogenerated = yes imp = 5856 ck3 = 636 } # Oceanus Sarmaticus -> Coast of Oland + link = { autogenerated = yes imp = 607 imp = 605 ck3 = 6359 } # Gugo, Noa -> KASSI-MARKOL + link = { autogenerated = yes imp = 7592 imp = 634 imp = 637 imp = 638 ck3 = 6358 } # Ganagaras, Darou, Mallo, Sakolche -> ED-DAMER + link = { autogenerated = yes imp = 635 imp = 629 imp = 631 imp = 636 imp = 9890 ck3 = 6357 } # Galim, Sankole, Gora, Seserem, Kurmut -> AL-BAWGA + link = { autogenerated = yes imp = 628 imp = 630 ck3 = 6355 } # Alana, Scammos -> BERBER + link = { autogenerated = yes imp = 7584 ck3 = 6353 } # Hashem -> TARFAYA + link = { autogenerated = yes imp = 627 imp = 645 ck3 = 6351 } # Marru, Kurgus -> KURGUS + link = { autogenerated = yes imp = 9895 imp = 9894 imp = 9889 imp = 9892 ck3 = 6350 } # Barkol, Khafur, Fura, Kalas -> AL-GHAZALI + link = { autogenerated = yes imp = 5859 imp = 5858 imp = 5862 ck3 = 635 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Mare Gothicum -> Baltic Sea + link = { autogenerated = yes imp = 7585 imp = 9893 ck3 = 6349 } # Nuri, Kuweib -> NURI + link = { autogenerated = yes imp = 625 ck3 = 6347 } # Cortum -> TANKASI + link = { autogenerated = yes imp = 616 imp = 615 imp = 618 imp = 619 imp = 622 ck3 = 6345 } # Mulon, Pago, Urbim, Segasa, Zamnes -> DEBBA + link = { autogenerated = yes imp = 611 imp = 610 imp = 609 ck3 = 6343 } # Orsum, Prummu, Acina -> DONGOLA + link = { autogenerated = yes imp = 12801 imp = 12828 imp = 12834 imp = 12836 ck3 = 634 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus -> Archipelago Sea + link = { autogenerated = yes imp = 606 ck3 = 6339 } # Saye -> SAI + link = { autogenerated = yes imp = 7580 imp = 7579 imp = 7581 ck3 = 6338 } # Tila, Firke, Pderme -> AKASHA + link = { autogenerated = yes imp = 604 ck3 = 6337 } # Semna Nubia -> SEMNA + link = { autogenerated = yes imp = 603 imp = 600 imp = 5521 ck3 = 6336 } # Boon, Pachora, Boron -> FARAS + link = { autogenerated = yes imp = 602 ck3 = 6335 } # Tamania -> SERRA + link = { autogenerated = yes imp = 599 imp = 598 imp = 5519 ck3 = 6333 } # Kambousis, Premis, Simbel -> SHEIKH_DAWUD + link = { autogenerated = yes imp = 12831 imp = 12775 imp = 12816 ck3 = 633 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus -> Gulf of Bothnia + link = { autogenerated = yes imp = 10040 imp = 10041 imp = 8076 ck3 = 6321 } # Sinawen, Derg, Asele -> SINAWIN + link = { autogenerated = yes imp = 7645 ck3 = 632 } # Oceanus Sarmaticus -> Gulf of Riga + link = { autogenerated = yes imp = 7569 imp = 4709 imp = 7568 ck3 = 6317 } # Watif, Sidh, Shuwaymiyyah -> HASIK + link = { autogenerated = yes imp = 11246 ck3 = 6316 } # Andhur -> MIRBA + link = { autogenerated = yes imp = 4707 imp = 11235 ck3 = 6315 } # Samharam, Thumrait -> DHUFAR + link = { autogenerated = yes imp = 4708 imp = 11244 imp = 11245 ck3 = 6314 } # Saliah, Dakharaib, Thinqayr -> RAYSUT + link = { autogenerated = yes imp = 4705 imp = 11242 imp = 11243 imp = 4706 imp = 11241 ck3 = 6313 } # Ausara Hadhramut, Ariqim, Qasawa, Neogilla, Muqarqar -> AL-ASA + link = { autogenerated = yes imp = 4703 imp = 4704 ck3 = 6312 } # Thialematt, Qishan -> ASH-SHIHR + link = { autogenerated = yes imp = 4675 ck3 = 6311 } # Tretos -> MUKALLA + link = { autogenerated = yes imp = 5426 imp = 5424 ck3 = 631 } # Yone, Venas -> Yangadzha + link = { autogenerated = yes imp = 4679 ck3 = 6308 ck3 = 6309 } # Sau -> QUTN, HURAYDA + link = { autogenerated = yes imp = 4678 ck3 = 6306 ck3 = 6307 } # Sabata -> SHIBAM, QABR_SALIH + link = { autogenerated = yes imp = 4710 imp = 11236 imp = 11240 ck3 = 6305 } # Rabun, Seiyun, Alsowm -> INAT + link = { autogenerated = yes imp = 4666 ck3 = 6298 } # Mariaba -> BARAQISH + link = { autogenerated = yes imp = 4662 imp = 4663 imp = 4664 imp = 4665 ck3 = 6297 } # Tamna, Caripeta, Nossa, Nagia -> BAYHAN + link = { autogenerated = yes imp = 4712 imp = 4659 ck3 = 6295 } # Hadrama, Sarouon -> NISAB + link = { autogenerated = yes imp = 4658 imp = 5291 ck3 = 6294 } # Maipha, Hadramut Desert -> AZZAN + link = { autogenerated = yes imp = 4685 ck3 = 6293 ck3 = 6310 } # Qana -> BALHAF, KHURAYBA + link = { autogenerated = yes imp = 4657 imp = 4655 imp = 4660 ck3 = 6292 } # Firai, Abisama, Maccua -> AHWAN + link = { autogenerated = yes imp = 4656 ck3 = 6291 } # Dela -> SAQRA + link = { autogenerated = yes imp = 4650 imp = 4654 ck3 = 6290 } # 'Adan, Mesala -> ADEN + link = { autogenerated = yes imp = 4692 imp = 4687 ck3 = 6289 } # Makeda, Qatabia -> MUSAYMIR + link = { autogenerated = yes imp = 4695 ck3 = 6288 } # Homeira -> LAWDAR + link = { autogenerated = yes imp = 4698 ck3 = 6287 } # Felicita -> RADA + link = { autogenerated = yes imp = 4693 imp = 4697 ck3 = 6286 } # Sabatia, Damar -> ZAFAR + link = { autogenerated = yes imp = 4694 imp = 4680 ck3 = 6285 } # Ocelia, Zafar -> AL-JANAD + link = { autogenerated = yes imp = 4684 imp = 4648 ck3 = 6284 } # Himiara, Saraka -> TAIZZ + link = { autogenerated = yes imp = 4652 imp = 4647 ck3 = 6283 } # Confluentia Qataba, Save -> AL-MAAFIR + link = { autogenerated = yes imp = 4646 imp = 4651 ck3 = 6282 } # Okelis, Caiwa -> AL-MANDAB + link = { autogenerated = yes imp = 4645 imp = 4649 ck3 = 6281 } # Mouza Emporion, Meda -> MAWZA + link = { autogenerated = yes imp = 4643 imp = 4644 imp = 4691 ck3 = 6280 } # Laupas, Aliou Kome, Harazia Vallis -> ZABID + link = { autogenerated = yes imp = 8035 ck3 = 628 ck3 = 629 } # Tamesis -> River Thames, River Thames + link = { autogenerated = yes imp = 4642 ck3 = 6278 ck3 = 6279 } # Adedou Kome -> FASHAL, GHALAFIQA + link = { autogenerated = yes imp = 4696 imp = 4682 imp = 4681 imp = 4689 ck3 = 6276 } # Hazma, Sanaa, Raida, Haraz -> SANAA + link = { autogenerated = yes imp = 4688 imp = 4686 ck3 = 6275 } # Amran, Sabiyah -> SHIBAM-SANAA + link = { autogenerated = yes imp = 4683 ck3 = 6274 } # Sirwa -> AR-RAYDA + link = { autogenerated = yes imp = 4700 imp = 4690 ck3 = 6273 } # Yathill, Nashaq -> HUTH + link = { autogenerated = yes imp = 4702 ck3 = 6272 } # Affa -> ASH-SHARAF + link = { autogenerated = yes imp = 4641 ck3 = 6270 } # Badeo -> AL-MAHJAM + link = { autogenerated = yes imp = 5425 ck3 = 627 } # Duri -> Kyzyl-Su + link = { autogenerated = yes imp = 7571 imp = 7570 imp = 7572 imp = 7573 ck3 = 6269 } # Madrakah, Quwayrah, Nafun, Khaluf -> DUQM + link = { autogenerated = yes imp = 11261 imp = 5421 imp = 7216 imp = 7217 ck3 = 6268 } # Juba, Acte, Sarapis, Ganta -> WAHIBA + link = { autogenerated = yes imp = 11202 ck3 = 6262 ck3 = 6264 } # Hadri -> UNAYZA, TIKHFA + link = { autogenerated = yes imp = 11201 ck3 = 6261 } # Buraydah -> AL-QARYATAN-QASIM + link = { autogenerated = yes imp = 11200 ck3 = 6260 ck3 = 6174 } # Asyah -> AN-NIBAJ, AS-SUMAINA + link = { autogenerated = yes imp = 10372 ck3 = 626 } # $PROV10369$ -> Daugava River + link = { autogenerated = yes imp = 11260 ck3 = 6259 } # Nakhlah -> JIBALA + link = { autogenerated = yes imp = 11206 ck3 = 6254 } # Hajir -> AL-ARID + link = { autogenerated = yes imp = 11210 imp = 11208 imp = 11209 ck3 = 6253 } # Khafs Daghra, Dila, Khadramah -> YAMAMA + link = { autogenerated = yes imp = 11207 ck3 = 6252 } # Rufaya -> AL-KHARJ + link = { autogenerated = yes imp = 11212 imp = 11211 ck3 = 6250 } # Wusayilah, Hulwah -> FALAJ + link = { autogenerated = yes imp = 11216 imp = 11217 ck3 = 6246 } # Ijliya, Sulayyil -> AQIQ_TAMRA + link = { autogenerated = yes imp = 4701 imp = 4669 ck3 = 6242 } # Haud, Marna Vallis -> SADA + link = { autogenerated = yes imp = 4640 imp = 4699 ck3 = 6241 } # Akme, Aksumia -> HARAD + link = { autogenerated = yes imp = 4638 imp = 4639 ck3 = 6240 } # Marma, Baitus -> ATTAR + link = { autogenerated = yes imp = 5465 imp = 5464 ck3 = 624 } # Mroshika, Karon -> Aktau + link = { autogenerated = yes imp = 4636 imp = 3479 ck3 = 6239 } # Cama, Abha -> ASH-SHUQAYQ + link = { autogenerated = yes imp = 4635 imp = 4634 imp = 7601 imp = 7578 ck3 = 6238 } # Raqeta, Ambe, Barek, Nemerah -> HALI + link = { autogenerated = yes imp = 11221 imp = 11220 imp = 11223 imp = 3480 ck3 = 6237 } # Kutnah, Jurash, Hubuna, Migayah -> KUTHBA + link = { autogenerated = yes imp = 11255 ck3 = 6236 } # Bishah -> JURASH + link = { autogenerated = yes imp = 11273 imp = 5489 imp = 6064 ck3 = 623 } # Kucherquduq, Vyache, Aral -> Kassarma + link = { autogenerated = yes imp = 7577 imp = 4633 ck3 = 6224 } # Attaba, Litha -> AS-SIRAYN + link = { autogenerated = yes imp = 7576 ck3 = 6223 ck3 = 6225 } # Ta'if -> MAKKA, AT-TAIF + link = { autogenerated = yes imp = 4630 imp = 4631 imp = 4632 ck3 = 6222 } # Baruka, Thebai Arabikai, Zaibram -> JIDDA + link = { autogenerated = yes imp = 7575 ck3 = 6221 ck3 = 6226 ck3 = 6227 } # Makarabah -> KHULAYS, USFAN, SUFAINA + link = { autogenerated = yes imp = 4629 ck3 = 6220 } # Rabigh -> RABIGH + link = { autogenerated = yes imp = 11268 ck3 = 622 } # Tokabay -> Ak-Dzulpas + link = { autogenerated = yes imp = 4653 imp = 4628 imp = 7574 imp = 5289 ck3 = 6219 } # Vaduma, Harbia, Kariya, IMPASSIBLE TERRAIN 289 -> AS-SAFRA + link = { autogenerated = yes imp = 11266 imp = 11265 ck3 = 6218 } # Badhan, Hegrieah -> AS-SAWARIQIYA + link = { autogenerated = yes imp = 4627 ck3 = 6210 ck3 = 6211 } # Rayyis -> AL-JAR, AS-SAYAA + link = { autogenerated = yes imp = 11300 imp = 11294 ck3 = 621 } # Tugarakchan, Tugyrakshan -> Akkityk + link = { autogenerated = yes imp = 4626 imp = 4625 ck3 = 6209 } # Arga, Charamithas -> YANBU + link = { autogenerated = yes imp = 4719 imp = 4716 imp = 7736 ck3 = 6207 } # Coloera, Tiamat, Ausara Volcano -> KHAYBAR + link = { autogenerated = yes imp = 4715 ck3 = 6201 ck3 = 6191 } # Demne -> AL-HIJR, AL-MUHDATHA + link = { autogenerated = yes imp = 4616 imp = 4615 imp = 4714 ck3 = 6200 } # Ausara, Dedan, Hegra -> AL-ULA + link = { autogenerated = yes imp = 6223 imp = 6224 imp = 6225 imp = 6226 imp = 6227 imp = 6230 ck3 = 620 } # Khorolats, Vhingad, Monok, Urmonok, Zale, Arkhonnt -> Itil + link = { autogenerated = yes imp = 3862 ck3 = 62 } # Anglia Borealis -> HEDEBY + link = { autogenerated = yes imp = 4622 imp = 4619 ck3 = 6199 } # Iuthra, Apudia Vallis -> AS-SUQYA + link = { autogenerated = yes imp = 4621 imp = 4620 ck3 = 6198 } # Harenae, Alaura -> AL-HAWRA + link = { autogenerated = yes imp = 4610 imp = 4608 ck3 = 6197 } # Raunathou Kome, Phoinikon Kome -> AL-WAJH + link = { autogenerated = yes imp = 4609 imp = 4607 ck3 = 6196 } # Egra, Badais -> BADA + link = { autogenerated = yes imp = 4606 ck3 = 6195 } # Hippou Kome -> AL-AWNID + link = { autogenerated = yes imp = 4604 imp = 4605 ck3 = 6194 } # Laba, Soaka -> AN-NABAK + link = { autogenerated = yes imp = 4603 ck3 = 6193 } # Modiana -> ZIBA + link = { autogenerated = yes imp = 11333 imp = 11334 imp = 11338 imp = 11339 imp = 11341 ck3 = 619 } # Akhtuba, Sary Su, Ilicha, Zhitkur, Bulukhta -> Saray + link = { autogenerated = yes imp = 4601 imp = 4611 ck3 = 6188 } # Baclanaza, Madiama Felix -> TABUK + link = { autogenerated = yes imp = 726 ck3 = 6187 } # Madiama -> MADYAN + link = { autogenerated = yes imp = 4600 ck3 = 6185 } # Ostama -> SHARAF AL-BAL + link = { autogenerated = yes imp = 4602 imp = 4613 ck3 = 6184 } # Leuke Kome, Aybara -> AINUN + link = { autogenerated = yes imp = 725 ck3 = 6183 } # Makna -> MAQNA + link = { autogenerated = yes imp = 11197 ck3 = 6181 } # Jubbah -> JUBBA-HAIL + link = { autogenerated = yes imp = 11310 imp = 5880 ck3 = 618 } # Tortkuduk, Ruta -> Atyrau + link = { autogenerated = yes imp = 7561 imp = 7562 ck3 = 6177 } # Sakaka, Arabia Deserta -> AL-QARA + link = { autogenerated = yes imp = 11469 imp = 11464 imp = 11466 imp = 11467 imp = 11470 ck3 = 617 } # Partu, Airma, Arya, Tavah, Datah -> Uzens + link = { autogenerated = yes imp = 7196 ck3 = 6161 } # Adros -> KAZIMA + link = { autogenerated = yes imp = 12502 ck3 = 616 } # Kodzuv -> Pecheneg + link = { autogenerated = yes imp = 7198 imp = 7197 ck3 = 6159 } # Istana, Itamos -> AL-JUBAYL + link = { autogenerated = yes imp = 7199 imp = 5405 ck3 = 6158 } # Gerrha, Thaj -> AL-QATIF + link = { autogenerated = yes imp = 7200 ck3 = 6157 } # Theppra -> AL-KHATT + link = { autogenerated = yes imp = 7202 ck3 = 6156 } # Tylos -> UWAL + link = { autogenerated = yes imp = 7201 ck3 = 6155 } # Atta -> AL-UQAYR + link = { autogenerated = yes imp = 5408 imp = 11231 imp = 5407 ck3 = 6152 } # Efa, Hawiyah, Agarum -> AL-HAJAR + link = { autogenerated = yes imp = 7204 imp = 5409 imp = 5410 ck3 = 6151 } # Sarkoi, Largis, Utea -> MASHQAR + link = { autogenerated = yes imp = 7203 imp = 11254 ck3 = 6150 } # Gylus, Khor -> MURWAB + link = { autogenerated = yes imp = 7205 imp = 5412 imp = 7206 imp = 5411 ck3 = 6148 } # Labrys Omana, Suwaytiyah, Attiaca, Ghirban -> AZ-DHAFRA + link = { autogenerated = yes imp = 7214 ck3 = 6146 ck3 = 6147 } # Artemidos -> SUR, JAALAN + link = { autogenerated = yes imp = 7215 ck3 = 6145 } # Metas -> QALHAT + link = { autogenerated = yes imp = 7212 ck3 = 6143 ck3 = 6144 } # Kryptos Limen -> MATRAH, MASQAT + link = { autogenerated = yes imp = 5420 ck3 = 6141 } # Zirne -> SAMAD + link = { autogenerated = yes imp = 11233 imp = 5419 imp = 11247 ck3 = 6140 } # Sharqiyah, Samad, Adam -> NIZWA + link = { autogenerated = yes imp = 11248 ck3 = 6139 } # Bahla -> BAHLA + link = { autogenerated = yes imp = 11252 imp = 5417 ck3 = 6138 } # Ibri, Ialla -> DHANK + link = { autogenerated = yes imp = 11251 ck3 = 6137 } # Dhank -> HAFIT + link = { autogenerated = yes imp = 5418 ck3 = 6136 ck3 = 6142 } # Vatum -> RUSTAQ-OMAN, JEBEL AKHDAR + link = { autogenerated = yes imp = 7213 imp = 11253 ck3 = 6135 } # Dirma Omana, Suwayq -> BATINA-EAST + link = { autogenerated = yes imp = 7209 imp = 5416 ck3 = 6134 } # Omana, Ecrune -> SUHAR + link = { autogenerated = yes imp = 5429 imp = 5430 imp = 7208 ck3 = 6133 } # Iepana, Trazel, Regna -> DABBA + link = { autogenerated = yes imp = 7210 ck3 = 6132 } # Heliou Limen -> MUSANDAM + link = { autogenerated = yes imp = 11249 ck3 = 6131 } # Dur -> JULFAR + link = { autogenerated = yes imp = 7207 imp = 5414 imp = 5415 imp = 7211 ck3 = 6130 } # Kanepsa, Murkhan, Saruq, Kalas -> TAWWAM-WEST + link = { autogenerated = yes imp = 11250 ck3 = 6129 } # Rumailah -> TAWWAM + link = { autogenerated = yes imp = 2816 imp = 6438 imp = 6440 imp = 7710 imp = 7717 ck3 = 6128 } # Sinus Persicus, LAKE, Tigris, Tigris, Euphrates -> Tigris River + link = { autogenerated = yes imp = 7714 imp = 10745 imp = 7713 ck3 = 6127 } # Tigris, $PROV7711$, Tigris -> Tigris River + link = { autogenerated = yes imp = 7716 imp = 7715 ck3 = 6126 } # Tigris, Tigris -> Tigris River + link = { autogenerated = yes imp = 10625 imp = 10626 imp = 10627 imp = 10628 ck3 = 6125 } # $PROV10619$, $PROV10619$, $PROV10619$, $PROV10619$ -> River Nile + link = { autogenerated = yes imp = 647 imp = 581 imp = 649 imp = 650 ck3 = 6122 } # Quei, Semna, Lykabettus-Porphyrites, Drepanum -> SAFAGA + link = { autogenerated = yes imp = 9901 imp = 9897 ck3 = 6121 } # Asele, Abraq -> UM SHASHOBA + link = { autogenerated = yes imp = 588 imp = 586 imp = 589 ck3 = 6118 } # Aristonis, Sukkari, Falacro -> NORTH_JBL_QUZLUM + link = { autogenerated = yes imp = 5550 imp = 5554 imp = 5552 imp = 5556 ck3 = 6117 } # Alexandrou Parembole, Sanus, Klimax, Abid -> QARA + link = { autogenerated = yes imp = 9908 imp = 9902 imp = 9909 imp = 9910 imp = 9911 imp = 8081 ck3 = 6113 } # Garaiyat, Ghaloa, Allaqi, Fas, Eigat, Dhahab -> ALLAQI + link = { autogenerated = yes imp = 9906 imp = 9904 imp = 9905 imp = 593 imp = 9907 imp = 9921 ck3 = 6112 } # Dhahab, Contra Pselchis, Hairiri, Pselkis, Heimur, Dayyub -> HAIMUR + link = { autogenerated = yes imp = 7594 ck3 = 6110 } # Sabraiton -> AYDHAB + link = { autogenerated = yes imp = 580 imp = 579 imp = 582 ck3 = 6109 } # Myos Hormos, Persou, Siqdit -> QUSAYR + link = { autogenerated = yes imp = 9949 imp = 9952 imp = 9947 imp = 9948 ck3 = 6107 } # Augila, Kalanshah, Gicherra, Gialo -> JALU + link = { autogenerated = yes imp = 3348 ck3 = 6105 } # Chersis -> BENGHAZI + link = { autogenerated = yes imp = 3353 imp = 3349 imp = 3350 imp = 3351 imp = 3352 imp = 3354 ck3 = 6104 } # Taucheira, Zau Taberna, Euesperides, Chairekla, Hadrianopolis, Ptolemais -> BARQA-AL-MARJ + link = { autogenerated = yes imp = 3347 imp = 3344 imp = 3346 ck3 = 6103 } # Talliamunera, Serapeion, Amastor -> JABAL_AL-GHARBI + link = { autogenerated = yes imp = 3357 imp = 3358 imp = 3359 imp = 3360 imp = 3361 imp = 3362 ck3 = 6101 } # Barke, Phykous, Balagrae, Kyrene, Apollonia Kyrenaike, Agabis -> MARAWA + link = { autogenerated = yes imp = 3865 ck3 = 61 } # Cimbrica Minor -> AABENRAA + link = { autogenerated = yes imp = 3366 imp = 3363 imp = 3364 imp = 3365 imp = 3367 ck3 = 6099 } # Paliouros, Darnis, Marandis, Aziris, Petras Mikros -> DERNA + link = { autogenerated = yes imp = 3380 imp = 3476 ck3 = 6095 } # Leuke Akte Kyrenaike, Pnigeus -> QASR_ASH_SHAMMAS + link = { autogenerated = yes imp = 445 imp = 3477 imp = 3478 ck3 = 6094 } # Dyme, Pedonia, Derras -> AL-HAMAM + link = { autogenerated = yes imp = 5540 imp = 5536 imp = 5537 imp = 5544 ck3 = 6092 } # Areg, Sitra, Ammon, Gerum -> AIN_AL-GHANBI + link = { autogenerated = yes imp = 5533 imp = 5534 ck3 = 6091 } # Berku, Varam -> AL-HARRA + link = { autogenerated = yes imp = 5530 imp = 5529 imp = 5527 imp = 5531 imp = 5541 ck3 = 6090 } # Mandish, Poka, Tablamum, Parva, Shunne -> BAWITI + link = { autogenerated = yes imp = 5511 imp = 5510 ck3 = 6087 } # Trimithis, Mothis -> AL-QASR-DAKHLA + link = { autogenerated = yes imp = 5513 imp = 5512 imp = 5505 imp = 5516 ck3 = 6086 } # Parammon, Thenete, Amura, Perusekh -> TUNAYDA + link = { autogenerated = yes imp = 5506 imp = 5507 imp = 5508 ck3 = 6084 } # Tchonemyris, Tabenesse, Kysis -> BARIS + link = { autogenerated = yes imp = 591 ck3 = 6081 ck3 = 6082 } # Syene -> ASWAN, ASWAN-WEST + link = { autogenerated = yes imp = 575 imp = 574 imp = 577 imp = 578 ck3 = 6080 } # Eileithyiopolis, Latopolis, Omboi, Dunqash -> ZARNIKH + link = { autogenerated = yes imp = 576 ck3 = 6079 } # Apollinopolis Megale -> UDFU + link = { autogenerated = yes imp = 573 imp = 567 imp = 570 imp = 571 ck3 = 6078 } # Pathyris, Apollinopolis Mikra, Memnonia, Terkythis -> ARMANT + link = { autogenerated = yes imp = 564 imp = 566 ck3 = 6076 } # Kaine, Koptos -> QINA + link = { autogenerated = yes imp = 562 imp = 563 ck3 = 6074 } # Diospolis, Tenthyris -> HUW + link = { autogenerated = yes imp = 560 imp = 561 ck3 = 6073 } # Thinis, Polybiane -> IBSHAYA + link = { autogenerated = yes imp = 556 imp = 553 ck3 = 6071 } # Antaiopolis, Lykopolis -> BAWIT + link = { autogenerated = yes imp = 5500 imp = 555 imp = 558 ck3 = 6070 } # Erebe, Hypsele, Tripheion -> ASYUT + link = { autogenerated = yes imp = 6202 imp = 6201 ck3 = 607 } # Irkant, Agharite -> Sarkel + link = { autogenerated = yes imp = 554 imp = 5501 ck3 = 6069 } # Pokis, Pohe -> MANFALUT + link = { autogenerated = yes imp = 548 imp = 551 imp = 552 ck3 = 6068 } # Alabastronpolis, Monkanei, Koussai -> ANSINA + link = { autogenerated = yes imp = 549 imp = 550 ck3 = 6067 } # Hermopolis Magna, Thynis -> AL-USHMUNAIN + link = { autogenerated = yes imp = 546 imp = 542 ck3 = 6064 } # Kynopolis, Ankyronpolis -> IHRIT + link = { autogenerated = yes imp = 545 imp = 547 imp = 5532 ck3 = 6063 } # Oxyrhynchus, Chysis, Kom Namrud -> AL-BAHNASA + link = { autogenerated = yes imp = 544 ck3 = 6062 } # Herakleopolis -> AHNAS + link = { autogenerated = yes imp = 5547 imp = 5546 imp = 5548 ck3 = 6061 } # Philoteris, Pseneros, Kerkethoris -> IQNA + link = { autogenerated = yes imp = 7631 imp = 7622 imp = 7630 ck3 = 606 } # Irkat, Skarin, Kaflur -> Petigoria + link = { autogenerated = yes imp = 5549 imp = 541 ck3 = 6058 } # Takyris, Karanis -> BUSIR + link = { autogenerated = yes imp = 515 imp = 517 ck3 = 6055 } # Naukratis, Hermopolis Mikra -> RAMSIS + link = { autogenerated = yes imp = 531 imp = 530 imp = 532 ck3 = 6054 } # Psenemphaia, Bolbitine, Chaireon -> DAMANHUR + link = { autogenerated = yes imp = 453 ck3 = 6053 ck3 = 6116 } # Taposiris -> ALEXANDRIA, WADI_NATRUN + link = { autogenerated = yes imp = 516 imp = 529 ck3 = 6052 } # Alexandria, Kanopos -> RASHID + link = { autogenerated = yes imp = 528 ck3 = 6051 } # Isieion -> MINUF + link = { autogenerated = yes imp = 520 imp = 518 imp = 519 ck3 = 6050 } # Xois, Buto, Sais -> IBYAR + link = { autogenerated = yes imp = 6213 imp = 6211 imp = 6216 imp = 6217 imp = 6212 ck3 = 605 } # Achkhacsh, Urgenarcha, Vyalke, Ogron, Ygrre -> Beksima + link = { autogenerated = yes imp = 7691 ck3 = 6049 } # Perseos Skope -> NASTARAWA + link = { autogenerated = yes imp = 523 imp = 521 imp = 522 ck3 = 6047 } # Pakhnemounis, Sebennytos, Diospolis Kato -> SAMANNUD + link = { autogenerated = yes imp = 7690 imp = 508 ck3 = 6046 } # Tamiathis, Tanis -> DUMIYAT + link = { autogenerated = yes imp = 510 imp = 7688 ck3 = 6045 } # Daphnai, Thenessos -> TINNIS + link = { autogenerated = yes imp = 511 imp = 655 ck3 = 6044 } # Phakoussai, Serapieion -> FAQUS + link = { autogenerated = yes imp = 534 imp = 7689 ck3 = 6043 } # Mendes, Hermopolis -> DAQAHLA + link = { autogenerated = yes imp = 504 imp = 513 imp = 524 imp = 526 ck3 = 6041 } # Leontopolis, Athribis, Pharbaithos, Onouphis Ano -> QALYUB + link = { autogenerated = yes imp = 7668 imp = 503 ck3 = 6040 } # Bilbeis, Bubastis -> BILBAYS + link = { autogenerated = yes imp = 5905 imp = 5903 imp = 5906 ck3 = 604 } # Iska, Gonnema, Vorena -> Khazaran + link = { autogenerated = yes imp = 509 imp = 525 ck3 = 6038 } # Pelusium, Sile -> FARAMA + link = { autogenerated = yes imp = 1675 imp = 5287 ck3 = 6034 } # Pharan, IMPASSIBLE TERRAIN 287 -> FARAN + link = { autogenerated = yes imp = 1682 ck3 = 6033 } # Rhaithou -> AT-TUR + link = { autogenerated = yes imp = 1710 imp = 1693 ck3 = 6032 } # Sina Meridionalis, Horeb Mons -> STCATHERINE + link = { autogenerated = yes imp = 1684 imp = 1688 imp = 1708 ck3 = 6031 } # Ain Hudera, Nuweiba, Tell el-Mashraba -> DAHAB + link = { autogenerated = yes imp = 7626 imp = 1674 imp = 7624 imp = 7625 ck3 = 603 } # Arukai, Cumania, Contani, Didai -> Cabarda + link = { autogenerated = yes imp = 10624 imp = 10622 imp = 10623 ck3 = 6029 } # $PROV10619$, $PROV10619$, $PROV10619$ -> River Nile + link = { autogenerated = yes imp = 7674 imp = 10620 imp = 10621 imp = 7687 ck3 = 6028 } # Nile, the Bolbitine, $PROV10619$, $PROV10619$, Nile -> River Nile + link = { autogenerated = yes imp = 7681 imp = 7682 imp = 7683 ck3 = 6027 } # Nile, the Bolbitine, Nile, the Bolbitine, Nile, the Bolbitine -> River Nile + link = { autogenerated = yes imp = 7677 imp = 7675 imp = 7676 imp = 7678 ck3 = 6026 } # Nile, the Phatnitic, Nile, the Phatnitic, Nile, the Phatnitic, Nile, the Phatnitic -> River Nile + link = { autogenerated = yes imp = 964 ck3 = 6022 } # Teredon -> AL-BASRA + link = { autogenerated = yes imp = 942 ck3 = 6020 } # Apologos -> AL-UBULLA + link = { autogenerated = yes imp = 11484 imp = 11476 imp = 11483 imp = 11485 imp = 11474 ck3 = 602 } # Uase, Hurasa, Levedi, Uluki, Batesa -> Tasqala + link = { autogenerated = yes imp = 965 ck3 = 6019 } # Apphana -> BALJAN + link = { autogenerated = yes imp = 969 ck3 = 6017 ck3 = 6018 } # Darak -> ABBADAN, BASIYAN + link = { autogenerated = yes imp = 941 imp = 971 ck3 = 6016 } # Forat, Ampe -> BAYAN + link = { autogenerated = yes imp = 972 ck3 = 6015 } # Arac -> JUBBA + link = { autogenerated = yes imp = 943 ck3 = 6014 } # Soloke -> DAWRAQ + link = { autogenerated = yes imp = 945 ck3 = 6011 ck3 = 6012 } # Taryana -> AHWAZ, HUWAIZA + link = { autogenerated = yes imp = 975 ck3 = 6010 } # Cissia -> BASINNA + link = { autogenerated = yes imp = 1714 imp = 1707 ck3 = 601 } # Onogouris, Kotais -> Kutaisi + link = { autogenerated = yes imp = 970 imp = 940 ck3 = 6009 } # Abara, Alexandria Susiana -> AL-MADHAR + link = { autogenerated = yes imp = 938 ck3 = 6006 ck3 = 6007 ck3 = 6008 } # Nina -> AL-FARUT, AL-QATR, NAHR_SIMMARA + link = { autogenerated = yes imp = 939 ck3 = 6004 } # Larsa -> AS-SALIQ + link = { autogenerated = yes imp = 935 ck3 = 6005 } # Girsu -> AR-RUSAFA-IRAQ + link = { autogenerated = yes imp = 932 imp = 930 imp = 936 imp = 937 ck3 = 6003 } # Dabrum, Kuara, Fara, Uruk -> NIFFAR + link = { autogenerated = yes imp = 7723 ck3 = 6002 ck3 = 6021 } # Durum -> AL-AKHADID, MATARA-IRAQ + link = { autogenerated = yes imp = 12762 ck3 = 6 } # Faeroe -> TORSHAVN + link = { autogenerated = yes imp = 923 ck3 = 5994 } # Qadissiyya -> AL-QADISIYA + link = { autogenerated = yes imp = 922 imp = 919 ck3 = 5992 } # Aqola, Borsippa -> AL-KUFA + link = { autogenerated = yes imp = 7634 imp = 4559 imp = 5885 imp = 7637 ck3 = 599 } # Khulor, Pataroue, Muiksita, Yeyata -> Yaseni + link = { autogenerated = yes imp = 7557 imp = 7556 ck3 = 5989 } # Arabia Deserta, Arabia Deserta -> QURAQIR + link = { autogenerated = yes imp = 714 imp = 715 imp = 716 imp = 718 ck3 = 5985 } # Tyros, Gadara Judea, Esbous, Rabbat Ammon -> JARASH + link = { autogenerated = yes imp = 712 imp = 717 ck3 = 5983 } # Aroes, Madaba -> MUJIB + link = { autogenerated = yes imp = 731 imp = 681 ck3 = 5981 } # Mhai, Characmoba -> MAAB + link = { autogenerated = yes imp = 4562 imp = 4563 imp = 4564 imp = 4565 ck3 = 598 } # Hermonassa, Phanagoria, Labrys, Gorgippia -> Tmutarakan + link = { autogenerated = yes imp = 730 ck3 = 5978 ck3 = 5979 } # Adrou -> SHAWBAK, AT-TAFILA + link = { autogenerated = yes imp = 727 imp = 728 ck3 = 5975 } # Aramaua, Auara -> AL-HUMAYMA + link = { autogenerated = yes imp = 724 ck3 = 5974 } # Ankale -> AQABA + link = { autogenerated = yes imp = 705 imp = 704 ck3 = 5973 } # Sabkah, Aelana -> AILA + link = { autogenerated = yes imp = 706 ck3 = 5972 } # Bossia -> ARANDAL + link = { autogenerated = yes imp = 729 imp = 707 imp = 708 ck3 = 5971 } # Petra, Arieldela, Kalgouia -> BAIDHA-PETRA + link = { autogenerated = yes imp = 701 imp = 656 imp = 657 imp = 697 imp = 702 ck3 = 5970 } # Maghara, Rinokoloura, Bitylion, Nessana, Quseima -> AL-ARISH + link = { autogenerated = yes imp = 4558 imp = 4557 ck3 = 597 } # Paniardis, Tanais -> Azov + link = { autogenerated = yes imp = 709 ck3 = 5969 ck3 = 5980 } # Toloha -> ZUGHAR, KERAK + link = { autogenerated = yes imp = 696 imp = 658 imp = 698 ck3 = 5968 } # Betomolachon, Raphia, Sobata -> GHAZZA + link = { autogenerated = yes imp = 693 imp = 660 imp = 694 imp = 695 ck3 = 5967 } # Thala, Ascalon, Maon, Elousa -> ASCALON + link = { autogenerated = yes imp = 700 imp = 710 imp = 699 ck3 = 5966 } # Mampsis, Zoara, Eboda -> HEBRON + link = { autogenerated = yes imp = 711 imp = 687 imp = 688 ck3 = 5965 } # Masada, Jerusalem, Thekoa -> JERUSALEM + link = { autogenerated = yes imp = 684 imp = 683 imp = 713 ck3 = 5964 } # Jericho, Ephraim, Livias -> NABLUS + link = { autogenerated = yes imp = 692 imp = 691 ck3 = 5963 } # Adora, Hebron -> AR-RAMLA + link = { autogenerated = yes imp = 690 imp = 661 imp = 662 imp = 686 imp = 689 ck3 = 5962 } # Marisa, Ashdod, Iamneia, Emmaous, Bethar -> YAFFA + link = { autogenerated = yes imp = 682 imp = 665 imp = 679 imp = 680 imp = 685 ck3 = 5961 } # Antipatris, Stratonos Pyrgos, Samaria, Shekhem, Lydda -> CESAREA + link = { autogenerated = yes imp = 672 imp = 667 imp = 669 imp = 671 imp = 678 ck3 = 5960 } # Iezreel, Dora, Jellemeh, Kefar Shuni, Narbata -> ACRE + link = { autogenerated = yes imp = 6178 imp = 6180 imp = 6183 imp = 6187 imp = 6189 ck3 = 596 } # Ganka, Vygriya, Yuty, Zhutikka, Arn -> Tana + link = { autogenerated = yes imp = 673 imp = 674 imp = 675 imp = 676 imp = 719 ck3 = 5959 } # Scythopolis, Philoteria, Pella, Salem, Akraba -> TIBERIAS + link = { autogenerated = yes imp = 736 imp = 734 ck3 = 5957 } # Mothana, Bostra -> AS-SUWAIDA-HAURAN + link = { autogenerated = yes imp = 7554 ck3 = 5956 } # Arabia Deserta -> SARKHAD + link = { autogenerated = yes imp = 733 imp = 722 imp = 732 ck3 = 5954 } # Abila Dekapoleos, Gadara, Adraha -> ZURRA + link = { autogenerated = yes imp = 735 ck3 = 5953 } # Canatha -> DARAYYA + link = { autogenerated = yes imp = 757 imp = 756 imp = 7648 ck3 = 5950 } # Oneuatha, Cunna, Impassable -> AL-QARYATAN + link = { autogenerated = yes imp = 11336 imp = 11335 imp = 11337 imp = 6215 ck3 = 595 } # Ilovlya, Karpovka, Olene, Urghat -> Sarysyn + link = { autogenerated = yes imp = 755 ck3 = 5948 } # Veriaraca -> TADMUR + link = { autogenerated = yes imp = 754 imp = 801 imp = 800 ck3 = 5947 } # Palmyra, Helela, Gennaes -> ARAK + link = { autogenerated = yes imp = 802 ck3 = 5946 ck3 = 5945 } # Oriza -> URD, AS-SUKHNA + link = { autogenerated = yes imp = 806 ck3 = 5943 ck3 = 4880 } # Birtha -> RATLA, AL-KHANUQA + link = { autogenerated = yes imp = 850 ck3 = 5942 ck3 = 1343 } # Amsareddi -> SURIYA, SYRIAN DESERT + link = { autogenerated = yes imp = 851 ck3 = 5941 } # Ammattha -> KHUNASIRA + link = { autogenerated = yes imp = 803 imp = 815 ck3 = 5940 } # Resafa, Seriane -> AR-RUSAFA + link = { autogenerated = yes imp = 6196 imp = 6197 imp = 6200 ck3 = 594 } # Volat, Urghno, Urvel -> Kazarki + link = { autogenerated = yes imp = 814 imp = 805 ck3 = 5938 } # Barbalissus, Amphipolis Syrias -> BUZAA + link = { autogenerated = yes imp = 753 imp = 751 imp = 7988 ck3 = 5937 } # Zenopolis, Abila Syrias, Hermon Mons -> ANJAR + link = { autogenerated = yes imp = 7985 imp = 5996 ck3 = 5936 } # Telmenissos, Diokleion Mons -> AR-RIKHA + link = { autogenerated = yes imp = 797 imp = 793 ck3 = 5935 } # Chalcis ad Belum, Gindaros -> ARTAH + link = { autogenerated = yes imp = 813 ck3 = 5933 ck3 = 5934 } # Anasartha -> QINNASRIN, HALAB + link = { autogenerated = yes imp = 782 ck3 = 5932 } # Pharnake -> KAFARTAB + link = { autogenerated = yes imp = 799 ck3 = 5930 } # Occaraba -> HAMA + link = { autogenerated = yes imp = 11439 imp = 11438 ck3 = 593 } # Aerac, Citras -> Khopyor + link = { autogenerated = yes imp = 776 ck3 = 5929 ck3 = 5949 } # Otthara -> HIMS, JUDR + link = { autogenerated = yes imp = 770 imp = 761 ck3 = 5928 } # Cara, Triparadeisos -> JUSIYA + link = { autogenerated = yes imp = 758 imp = 759 ck3 = 5927 } # Vallis Alba, Thelseai -> AL-QASTAL + link = { autogenerated = yes imp = 750 ck3 = 5925 ck3 = 5924 } # Damascus -> AZ-ZABADANI, DAMASCUS + link = { autogenerated = yes imp = 737 imp = 738 ck3 = 5923 } # Raphon, Maked -> NAWA + link = { autogenerated = yes imp = 739 imp = 723 imp = 740 ck3 = 5922 } # Karnaia, Hippos, Dan -> BANIYAS + link = { autogenerated = yes imp = 648 imp = 670 imp = 677 imp = 745 ck3 = 5921 } # Gennesar, Ake-Ptolemais, Asochis, Gelil -> TYRE + link = { autogenerated = yes imp = 741 imp = 742 imp = 743 imp = 746 ck3 = 5920 } # Abila, Kadasa, Tyrus, Sarepta -> SAIDA + link = { autogenerated = yes imp = 12518 ck3 = 592 } # Gola -> Saratov + link = { autogenerated = yes imp = 749 imp = 747 imp = 748 imp = 752 imp = 765 imp = 5389 ck3 = 5919 } # Brochoi, Sidon, Berytus, Gerra, Berothe, IP 390 -> BEIRUT + link = { autogenerated = yes imp = 772 imp = 8011 imp = 762 imp = 774 ck3 = 5917 } # Kabiosa, Korlon, Conna, Hemesa -> RAFANIYA-KRAK + link = { autogenerated = yes imp = 779 imp = 771 ck3 = 5916 } # Arados, Arca -> ANTARTUS + link = { autogenerated = yes imp = 777 imp = 778 imp = 781 ck3 = 5915 } # Amathe, Raphaneia, Larissa -> SHAIZAR + link = { autogenerated = yes imp = 784 imp = 786 imp = 788 ck3 = 5912 } # Sigon, Leuke Akte, Posideion -> LATAKIA + link = { autogenerated = yes imp = 780 imp = 785 ck3 = 5911 } # Carne, Tell Soukas -> JABALA + link = { autogenerated = yes imp = 791 imp = 787 imp = 789 imp = 790 ck3 = 5910 } # Darkus, Beloi, Palaeopolis, Antigoneia -> ANTIOCH + link = { autogenerated = yes imp = 798 ck3 = 5906 } # Hadad -> TALL_AFRIN + link = { autogenerated = yes imp = 795 imp = 8021 ck3 = 5905 } # Myriandros, Syrian Gates -> ALEXANDRETTA + link = { autogenerated = yes imp = 792 imp = 1871 ck3 = 5904 } # Trapezon, Syrian Gates -> BAGHRAS + link = { autogenerated = yes imp = 812 imp = 794 ck3 = 5903 } # Aliareia, Cyrrhus -> QURUS + link = { autogenerated = yes imp = 807 ck3 = 5902 ck3 = 5908 } # Bambyce -> JARABULUS, MANBIJ + link = { autogenerated = yes imp = 852 ck3 = 5901 ck3 = 9661 } # Chaonia -> TALL_BASHIR, Northern Mountains of Antioch + link = { autogenerated = yes imp = 810 ck3 = 5900 } # Zeugma -> AINTAB + link = { autogenerated = yes imp = 3866 ck3 = 59 ck3 = 83 } # Sigulonia Australis -> VORBASSE, VARDE + link = { autogenerated = yes imp = 12372 imp = 12351 ck3 = 5895 } # Suw, Targitavah -> Tobol_BIS + link = { autogenerated = yes imp = 12350 ck3 = 5894 } # Lipoxsaya -> Ore + link = { autogenerated = yes imp = 12393 ck3 = 5893 ck3 = 7022 } # Oster -> Kostanay, Skramlrak + link = { autogenerated = yes imp = 12375 imp = 12374 imp = 12376 ck3 = 5892 } # Sulii, Puknii, Tawt -> Sabakyul + link = { autogenerated = yes imp = 12384 ck3 = 5891 } # Xutem -> Baklansky + link = { autogenerated = yes imp = 12395 ck3 = 5890 } # Tipunkwe -> Ukavskaya + link = { autogenerated = yes imp = 12396 ck3 = 5889 ck3 = 891 } # Ingala -> Terom, Tyumen + link = { autogenerated = yes imp = 12392 ck3 = 5886 ck3 = 5884 } # Jinkwe -> Deriabinskoye, Tagil + link = { autogenerated = yes imp = 12390 ck3 = 5885 } # Kwalunkwe -> Laia + link = { autogenerated = yes imp = 12401 ck3 = 5883 ck3 = 5874 ck3 = 7014 } # Tur -> Oblacas, Koshuki, Vagay + link = { autogenerated = yes imp = 12404 ck3 = 5882 ck3 = 5888 ck3 = 5881 } # Sov -> Tabary, Turinsk, Tura Kala + link = { autogenerated = yes imp = 12577 ck3 = 587 } # Rappana -> Mozhaysk + link = { autogenerated = yes imp = 12558 ck3 = 581 ck3 = 584 } # Karkeda -> Murom, Nizhny Novgorod + link = { autogenerated = yes imp = 12555 ck3 = 580 } # Sedej -> Ryazan + link = { autogenerated = yes imp = 3870 ck3 = 58 } # Eudosia Australis -> JELLING + link = { autogenerated = yes imp = 1529 imp = 1500 imp = 1531 imp = 1532 imp = 1539 imp = 1533 ck3 = 5794 } # Darman, Chauon, Malejin, Zarawand, Jula, Shamiram -> Gher + link = { autogenerated = yes imp = 1631 ck3 = 5793 } # Spandaran -> Barzand + link = { autogenerated = yes imp = 1618 ck3 = 5792 } # Mish -> Nakorzan + link = { autogenerated = yes imp = 1649 imp = 1632 ck3 = 5791 } # Masalas, Balanrot -> Langarkanan + link = { autogenerated = yes imp = 1648 ck3 = 5790 } # Ghizil-Agaj -> Paytakaran + link = { autogenerated = yes imp = 1638 imp = 1654 ck3 = 5789 } # Warthan, Mochi -> Varsan + link = { autogenerated = yes imp = 1652 ck3 = 5788 } # Talish -> Gabarawan + link = { autogenerated = yes imp = 1540 imp = 1538 imp = 1623 ck3 = 5787 } # Parakan, Goltan, Arevik -> Jugha + link = { autogenerated = yes imp = 1667 imp = 1613 imp = 1664 imp = 1665 imp = 7737 ck3 = 5786 } # Aghahechk, Shalat, Arank, Parsakank, Qarqar Volcano -> Goris + link = { autogenerated = yes imp = 1669 imp = 1501 imp = 1542 imp = 1541 imp = 5214 ck3 = 5785 } # Chahuk, Naxouana, Arxata, Sangibut, IMPASSIBLE TERRAIN 214 -> Naxcivan + link = { autogenerated = yes imp = 1650 imp = 1617 imp = 1639 ck3 = 5784 } # Sisakan Inferior, Nakorzan, Amaras -> Ktis + link = { autogenerated = yes imp = 1670 ck3 = 5783 } # Partaw -> Parnes + link = { autogenerated = yes imp = 1608 imp = 1605 ck3 = 5780 } # Berd, Gezlu -> Tovuz + link = { autogenerated = yes imp = 1671 imp = 1584 ck3 = 5779 } # Southwest Arran, Utidorsi -> Barda + link = { autogenerated = yes imp = 1635 imp = 1661 ck3 = 5778 } # Nyudi, Arash -> Mingachevir + link = { autogenerated = yes imp = 1637 ck3 = 5777 } # Mingechaur -> Ganja + link = { autogenerated = yes imp = 1672 imp = 1651 ck3 = 5776 } # Southeast Arran, Shahargah -> Paidangaran + link = { autogenerated = yes imp = 1655 ck3 = 5775 } # Kaladasht -> Kudevan + link = { autogenerated = yes imp = 1636 ck3 = 5774 } # Chabala -> Kabala + link = { autogenerated = yes imp = 1647 ck3 = 5773 } # Salyan -> Salyan + link = { autogenerated = yes imp = 1644 imp = 1662 ck3 = 5772 } # Paytakaran, Lupenia -> Maras + link = { autogenerated = yes imp = 1642 imp = 1633 ck3 = 5771 } # Bagawan, Absheron -> Baku + link = { autogenerated = yes imp = 1643 imp = 1641 ck3 = 5770 } # Samukh, Gumbati -> Dedoplitskhara + link = { autogenerated = yes imp = 12570 ck3 = 577 } # Kursa -> Pronsk + link = { autogenerated = yes imp = 1645 ck3 = 5769 ck3 = 673 } # Shaki -> Ghisi, Nukhpata + link = { autogenerated = yes imp = 1659 imp = 1656 ck3 = 5768 } # Lagodekhi, Zakatala -> Zaqatala + link = { autogenerated = yes imp = 1660 ck3 = 5766 ck3 = 5767 } # Cambysene -> Kharnabuji, Ujarma + link = { autogenerated = yes imp = 1658 ck3 = 5765 } # Shilda -> Gavazi + link = { autogenerated = yes imp = 1680 imp = 1678 imp = 1687 ck3 = 5764 } # Zalissa, Seusamora, Jhinvali -> Mtskheta + link = { autogenerated = yes imp = 1681 imp = 1673 ck3 = 5763 } # Aragvispiri, Iberian Gates -> Nektesi + link = { autogenerated = yes imp = 1607 imp = 1606 imp = 1609 imp = 1610 ck3 = 5762 } # Idzhevan, Berdatekh, Kariglukh, Sary-tepe -> Kayan + link = { autogenerated = yes imp = 1611 ck3 = 5760 } # Sagarejo -> Rustavi + link = { autogenerated = yes imp = 10247 imp = 10248 imp = 10253 ck3 = 576 } # Rechitsa, Blagoveshchenskaya, Mglin -> Debryansk + link = { autogenerated = yes imp = 1706 imp = 1696 imp = 1700 imp = 5203 imp = 5204 ck3 = 5756 } # Rhodopolis, Leukothea, Zekari Pass, IMPASSIBLE TERRAIN 203, IMPASSIBLE TERRAIN 204 -> Vartsikhe + link = { autogenerated = yes imp = 1711 imp = 1720 imp = 1722 ck3 = 5754 } # Telephis, Phasis, Vashnari -> Poti + link = { autogenerated = yes imp = 1705 imp = 1746 imp = 1748 ck3 = 5753 } # Skandis, Itkhvissi, Modinakhe -> Kvara + link = { autogenerated = yes imp = 1749 ck3 = 5752 ck3 = 5751 } # Brili -> Kasriskari, Ambrolauri + link = { autogenerated = yes imp = 1715 imp = 1717 imp = 1735 ck3 = 5749 } # Archaiopolis, Chaladidi, Ergeta -> Zugdidi + link = { autogenerated = yes imp = 1739 imp = 1737 imp = 1738 ck3 = 5747 } # Tqvarcheli, Ziganne, Gyenos -> Gudakva + link = { autogenerated = yes imp = 1740 ck3 = 5746 } # Tzibile -> Tskhumi + link = { autogenerated = yes imp = 1753 ck3 = 5741 ck3 = 5736 } # Kola -> Artaani, Taoskari + link = { autogenerated = yes imp = 1697 imp = 1755 imp = 5202 ck3 = 5739 } # Akhaltsikhe, Colit, IMPASSIBLE TERRAIN 202 -> Akhaltsikhe + link = { autogenerated = yes imp = 1702 imp = 5205 ck3 = 5738 } # Javakheti, IMPASSIBLE TERRAIN 205 -> Tmogvi + link = { autogenerated = yes imp = 1751 imp = 1736 ck3 = 5735 } # Barantea, Vagharshakert -> Sevuki + link = { autogenerated = yes imp = 1569 imp = 1568 imp = 1581 imp = 5198 ck3 = 5730 } # Paracata, Hariza, Eruandashat, IMPASSIBLE TERRAIN 198 -> Tsalakert + link = { autogenerated = yes imp = 12562 ck3 = 573 } # Ahtera -> Pereyaslavl Zalessky + link = { autogenerated = yes imp = 1588 imp = 1591 imp = 5211 ck3 = 5729 } # Kamo, Karchakhpyur, IMPASSIBLE TERRAIN 211 -> Garni + link = { autogenerated = yes imp = 1589 imp = 1572 imp = 1573 imp = 1575 ck3 = 5728 } # Atarbegian, Tibion, Gorneae, Erebuni -> Yerevan + link = { autogenerated = yes imp = 1570 imp = 1576 imp = 1577 imp = 1579 imp = 1580 ck3 = 5726 } # Armaouira, Kainepolis Syracene, Motene, Ashnak, Katnakhpyur -> Bagaran + link = { autogenerated = yes imp = 1587 imp = 1585 imp = 1586 imp = 5201 ck3 = 5725 } # Vardbach, Shirakavan, Hokhmik, IMPASSIBLE TERRAIN 201 -> Dlim + link = { autogenerated = yes imp = 1561 imp = 996 imp = 997 imp = 999 ck3 = 5724 } # Mardastan, Alouaka, Kotorox, Hayk -> Hadamakert + link = { autogenerated = yes imp = 989 imp = 1560 imp = 987 imp = 998 ck3 = 5723 } # Nymphaeum, Andzevatsik, Zoaranda, Artemita Vaspurakan -> Akhtamar + link = { autogenerated = yes imp = 1536 imp = 1534 imp = 1535 imp = 1559 ck3 = 5722 } # Maku, Rusakhinili, Qiz Chakhlu, Aladagh Qal'eh -> Maku + link = { autogenerated = yes imp = 1549 imp = 1548 imp = 1551 imp = 1544 imp = 1547 ck3 = 5720 } # Teroua, Tambat, Ardeank', Catispi, Keshmesh -> Bagavan + link = { autogenerated = yes imp = 993 ck3 = 5718 } # Calata -> Khlat + link = { autogenerated = yes imp = 846 imp = 978 ck3 = 5717 } # Cymiza, Tatyene -> Tatvan + link = { autogenerated = yes imp = 994 ck3 = 5716 ck3 = 5715 } # Ashtishat -> Musch, Varto + link = { autogenerated = yes imp = 8010 imp = 8009 imp = 8006 ck3 = 5712 } # Koloua, Balisbiga, Koubina Mountains -> Balu + link = { autogenerated = yes imp = 8008 imp = 1765 imp = 1767 imp = 5191 ck3 = 5711 } # Palios, Koubina, Eriza, IMPASSIBLE TERRAIN 191 -> Koloberd + link = { autogenerated = yes imp = 1854 imp = 1861 imp = 7982 ck3 = 5708 } # Melitia, Zizoatra, Perrhe Mountains -> Arca + link = { autogenerated = yes imp = 858 imp = 1855 imp = 235 ck3 = 5707 } # Rhandeia, Gareina, Tomisa -> Arsamosata + link = { autogenerated = yes imp = 1853 imp = 1769 imp = 1852 imp = 1858 imp = 5189 ck3 = 5706 } # Kiakis, Sabos, Sinispora, Daskousa, IMPASSIBLE TERRAIN 189 -> Arguvan + link = { autogenerated = yes imp = 1733 imp = 1766 imp = 7844 ck3 = 5705 } # Pisingara, Arane, Zimara -> Tephrice + link = { autogenerated = yes imp = 1778 imp = 1768 imp = 8001 ck3 = 5703 } # Chorsabia, Til, Chorasbia Mountains -> Satala + link = { autogenerated = yes imp = 1789 imp = 1790 ck3 = 5700 } # Syderos, Komana Pontike -> Hypseie + link = { autogenerated = yes imp = 3873 ck3 = 57 } # Eudosia Borealis -> AARHUS + link = { autogenerated = yes imp = 1776 imp = 1770 imp = 1772 ck3 = 5699 } # Arauraka, Satala, Sediska -> Sinoria + link = { autogenerated = yes imp = 1792 imp = 1787 imp = 7996 ck3 = 5698 } # Kabeira, Danai, Danae Mountains -> Neocaesara + link = { autogenerated = yes imp = 1763 imp = 8002 ck3 = 5695 } # Tareina, Eriza Mountains -> Keltzine + link = { autogenerated = yes imp = 1760 imp = 1762 ck3 = 5694 } # Sinoria, Bagariza -> Baeberdon + link = { autogenerated = yes imp = 1761 ck3 = 5693 } # Charton -> Hyspiratis + link = { autogenerated = yes imp = 1793 imp = 1786 ck3 = 5690 } # Side Pontike, Sauronisena -> Polemonium + link = { autogenerated = yes imp = 12580 ck3 = 569 } # Orko -> Vyazma + link = { autogenerated = yes imp = 1806 imp = 7995 ck3 = 5689 } # Themiskyra, Kabeira Mountains -> Oinaion + link = { autogenerated = yes imp = 197 imp = 202 ck3 = 5684 } # Sarmalios, Doudousa -> Ecobrogis + link = { autogenerated = yes imp = 1825 ck3 = 5683 } # Taouion -> Tabia + link = { autogenerated = yes imp = 334 imp = 6431 ck3 = 5682 } # Paphos, Marion -> Paphos + link = { autogenerated = yes imp = 332 imp = 338 ck3 = 5681 } # Kition, Amathous -> Nicosia + link = { autogenerated = yes imp = 336 imp = 333 imp = 7989 ck3 = 5680 } # Tamassos, Soloi, Trogodos Mons -> Soli_CYP + link = { autogenerated = yes imp = 11498 ck3 = 568 } # Gintei -> Smolensk + link = { autogenerated = yes imp = 6433 imp = 335 imp = 7991 imp = 8055 ck3 = 5679 } # Chythroi, Kyrenia, Idalion, Cyprus Mons -> Cerynia + link = { autogenerated = yes imp = 177 ck3 = 5678 } # Kindyria -> Katakekaumene + link = { autogenerated = yes imp = 1934 imp = 178 imp = 7966 ck3 = 5677 } # Iconium, Tyriaion, Ikonion Mountains -> Pappa + link = { autogenerated = yes imp = 1950 ck3 = 5676 } # Derbe -> Barata + link = { autogenerated = yes imp = 1955 ck3 = 5675 } # Thebasa -> Derbe + link = { autogenerated = yes imp = 1892 imp = 7968 ck3 = 5674 } # Elaioussa, Kyinda -> Soloi + link = { autogenerated = yes imp = 169 imp = 7964 ck3 = 5673 } # Laranda, Koropissos -> Laranalia + link = { autogenerated = yes imp = 1785 imp = 1780 ck3 = 5672 } # Ilistra, Artanada -> Isaura + link = { autogenerated = yes imp = 1965 imp = 7965 ck3 = 5671 } # Lystra, Lystra Mountains -> Lystra + link = { autogenerated = yes imp = 1922 imp = 1924 ck3 = 5670 } # Misteia, Pappa -> Mistea + link = { autogenerated = yes imp = 10239 imp = 10238 ck3 = 567 } # Tyutyunnytsya, Kuchynivka -> Novgorod Seversky + link = { autogenerated = yes imp = 1918 imp = 1920 ck3 = 5669 } # Homonadeis, Ouasada -> Ouasada + link = { autogenerated = yes imp = 7958 imp = 1885 imp = 1921 imp = 7961 imp = 7758 imp = 7959 ck3 = 5668 } # Kotenna, Selge, Amblada, Kagrai, (Unknown), Etenna Mountains -> Kaklauma + link = { autogenerated = yes imp = 7971 imp = 1945 imp = 1953 imp = 8062 ck3 = 5667 } # Eriza Karias, Colossae, Saleia Salbakes, Eriza Mons -> Salda + link = { autogenerated = yes imp = 1959 imp = 1943 imp = 7954 imp = 7953 ck3 = 5666 } # Takina, Sanaos, Kormasa, Lysinoe Mountains -> Parlais + link = { autogenerated = yes imp = 1949 imp = 1935 imp = 1988 imp = 7760 imp = 5163 ck3 = 5665 } # Sagalassos, Baris, Kremna, Prostanna, IMPASSIBLE TERRAIN 163 -> Sagalassus + link = { autogenerated = yes imp = 1931 imp = 7957 ck3 = 5664 } # Adada, Aspendos Mountains -> Selge + link = { autogenerated = yes imp = 1927 ck3 = 5663 } # Tityassos -> Adada + link = { autogenerated = yes imp = 1926 imp = 1925 imp = 7955 ck3 = 5662 } # Anaboura, Tymbriada, Adada Mountains -> Neapolis + link = { autogenerated = yes imp = 1928 imp = 1937 imp = 8060 ck3 = 5661 } # Tyita, Euphorbion, Mordaion Mons -> Antiochia + link = { autogenerated = yes imp = 186 imp = 8012 ck3 = 5660 } # Eukarpia, Synnada Mountains -> Synnada + link = { autogenerated = yes imp = 10351 imp = 10344 imp = 10345 imp = 10352 ck3 = 566 } # Volchya, Tikhaya Sosna, Chernyanka, Artilne -> Oskol + link = { autogenerated = yes imp = 187 imp = 185 ck3 = 5659 } # Kidyessos, Ipsos -> Docimium + link = { autogenerated = yes imp = 184 imp = 182 imp = 1939 imp = 1941 imp = 7911 ck3 = 5658 } # Dokimeion, Aurokra, Prymnessos, Synnada, Sultan Mountains -> Amorion + link = { autogenerated = yes imp = 230 imp = 179 imp = 7969 ck3 = 5657 } # Thymbrion, Okenoi, Men Mountains -> Philomelium + link = { autogenerated = yes imp = 180 imp = 1777 imp = 181 ck3 = 5656 } # Keissia, Klaneos, Tolastochora -> Tyraion + link = { autogenerated = yes imp = 192 imp = 191 ck3 = 5655 } # Kyballon, Ouetissos -> Germa + link = { autogenerated = yes imp = 183 imp = 328 ck3 = 5654 } # Abbasion, Orkistos -> Polybotus + link = { autogenerated = yes imp = 314 ck3 = 5653 } # Nakoleia -> Midaeum + link = { autogenerated = yes imp = 318 imp = 313 ck3 = 5652 } # Meiros, Metropolis Phrygias -> Nakoleia + link = { autogenerated = yes imp = 312 imp = 302 imp = 8013 ck3 = 5651 } # Appia, Kadoi, Akmoneia Mountains -> Aezani + link = { autogenerated = yes imp = 1957 imp = 1956 imp = 1984 imp = 5159 imp = 5160 ck3 = 5650 } # Kidrama, Tabai, Thera Karias, IMPASSIBLE TERRAIN 159, IMPASSIBLE TERRAIN 160 -> Aphrodisias + link = { autogenerated = yes imp = 10187 imp = 10186 imp = 10188 ck3 = 565 } # Merefa, Vovchansk, Krasnohrad -> Kharka + link = { autogenerated = yes imp = 1989 imp = 1876 imp = 1985 imp = 1987 imp = 7942 ck3 = 5649 } # Kaunos, Physkos, Idyma, Knidos, Daidala -> Cridus + link = { autogenerated = yes imp = 1958 imp = 1997 imp = 7944 ck3 = 5648 } # Kibyra, Boubon, Telmessos Mountains -> Cibyra + link = { autogenerated = yes imp = 1992 imp = 1995 imp = 7948 imp = 7946 ck3 = 5647 } # Telmessos, Xanthos, Kadyanda, Xanthos Mountains -> Telmessos + link = { autogenerated = yes imp = 1960 imp = 171 imp = 1961 imp = 1990 imp = 1991 imp = 7947 imp = 5161 ck3 = 5646 } # Lagbe, Isinda, Olbasa, Oinoanda, Podalia, Balboura, IMPASSIBLE TERRAIN 161 -> Olbasa + link = { autogenerated = yes imp = 159 imp = 156 imp = 160 imp = 161 imp = 1993 imp = 1998 imp = 7949 imp = 7943 imp = 7945 imp = 7950 ck3 = 5645 } # Choma, Myra, Arykanda, Limyra, Tlos, Patara, Kandyba, Tlos Mountains, Oenodanda Mountains, Kadyanda Mountains -> Myra + link = { autogenerated = yes imp = 162 imp = 164 imp = 7951 imp = 5162 ck3 = 5644 } # Olympos, Phaselis, Kitanaura, IMPASSIBLE TERRAIN 162 -> Limyra + link = { autogenerated = yes imp = 170 ck3 = 5643 } # Termessos -> Phaselis + link = { autogenerated = yes imp = 1986 ck3 = 5642 } # Pogla -> Cremna + link = { autogenerated = yes imp = 1911 imp = 167 ck3 = 5641 } # Sillyon, Pednelissos -> Side + link = { autogenerated = yes imp = 1910 imp = 168 ck3 = 5640 } # Side, Aspendos -> Korakesion + link = { autogenerated = yes imp = 6168 imp = 6162 imp = 6167 imp = 6169 imp = 6172 ck3 = 564 } # Ushkan, Ygast, Stetta, Veryi, Uron -> Bakhmut + link = { autogenerated = yes imp = 1906 imp = 1905 imp = 1908 ck3 = 5639 } # Lairtes, Korakesion, Kolybrassos -> Selinus + link = { autogenerated = yes imp = 1784 imp = 7963 ck3 = 5636 } # Klibanos, Adrasos -> Claudiopolis_SELEUCIA + link = { autogenerated = yes imp = 1894 imp = 1896 imp = 7960 ck3 = 5635 } # Olbe, Ninika, Adrasos Mountains -> Corycus + link = { autogenerated = yes imp = 176 imp = 174 imp = 190 ck3 = 5634 } # Ekdaoumaoua, Kongoustos, Kinna -> Kinna + link = { autogenerated = yes imp = 204 imp = 229 ck3 = 5633 } # Aspona, Orbana -> Aspona + link = { autogenerated = yes imp = 1811 ck3 = 5632 } # Parnassos -> Parnassos + link = { autogenerated = yes imp = 1788 imp = 1900 imp = 1978 imp = 7735 ck3 = 5631 } # Nora, Sasima, Salambriai, Argaios Mons Volcano -> Nazianzus + link = { autogenerated = yes imp = 1954 ck3 = 5630 } # Garsaura -> Garsaura + link = { autogenerated = yes imp = 6165 imp = 4556 imp = 6177 ck3 = 563 } # Vel, Karoia, Ishkenk -> Taganrog + link = { autogenerated = yes imp = 1914 imp = 173 imp = 1938 ck3 = 5629 } # Perta, Koropassos, Ardistama -> Comitanassus + link = { autogenerated = yes imp = 1940 ck3 = 5628 } # Cybistra -> Cybistra + link = { autogenerated = yes imp = 1872 imp = 1883 imp = 8022 ck3 = 5627 } # Cilician Gates, Tarsus, Cilician Gates -> Podandus + link = { autogenerated = yes imp = 1877 imp = 1875 imp = 1880 ck3 = 5625 } # Anazarbos, Kastabala, Mopsouestia -> Anazaribus + link = { autogenerated = yes imp = 1881 imp = 1889 ck3 = 5624 } # Mallos, Magarsa -> Mallus + link = { autogenerated = yes imp = 1800 ck3 = 5623 } # Soandos -> Kyzistra + link = { autogenerated = yes imp = 1813 imp = 1817 imp = 1818 imp = 205 ck3 = 5622 } # Nyssa, Zoropassos, Ouenasa, Zeila -> Zeila_CHA + link = { autogenerated = yes imp = 1912 ck3 = 5621 ck3 = 5617 } # Kamoulianai -> Euaissa, Charsianon + link = { autogenerated = yes imp = 1820 ck3 = 5620 } # Odogra -> Aspona_CHA + link = { autogenerated = yes imp = 4549 imp = 4550 ck3 = 562 } # Pantikapaion, Kimmerikon -> Kerch + link = { autogenerated = yes imp = 1923 imp = 1832 ck3 = 5619 } # Soanda, Saralos -> Soanda + link = { autogenerated = yes imp = 1932 imp = 1836 imp = 1909 ck3 = 5618 } # Seiousa, Pteria, Sibora -> Therma + link = { autogenerated = yes imp = 1982 imp = 1794 ck3 = 5616 } # Ariaramneia, Korama -> Arasaxa + link = { autogenerated = yes imp = 1802 imp = 155 imp = 1796 imp = 1803 imp = 7979 ck3 = 5615 } # Euagina, Kiskisos, Arasaxa, Herpha, Arasaxa Mountains -> Herpha + link = { autogenerated = yes imp = 1805 imp = 6420 imp = 7970 ck3 = 5614 } # Anisa, Eulepa, Eulepa Mountains -> Armaxa + link = { autogenerated = yes imp = 1902 imp = 7976 imp = 7977 ck3 = 5613 } # Kodouzalaba, Euagina Mountains, Kiskikos Mountains -> Ariaratheia + link = { autogenerated = yes imp = 1878 ck3 = 5612 } # Sipha -> Cocussus + link = { autogenerated = yes imp = 1983 imp = 172 imp = 7967 ck3 = 5610 } # Kabassos, Komana Hierapolis, Baka Mons -> Comana_LYK + link = { autogenerated = yes imp = 4543 imp = 4544 ck3 = 561 } # Athenaion, Theodosia -> Theodosia + link = { autogenerated = yes imp = 1999 imp = 1994 imp = 7975 imp = 7978 ck3 = 5609 } # Tanadaris, Arabissos, Ouarsapa Mountains, Kokousos Mountains -> Tanadaris + link = { autogenerated = yes imp = 163 imp = 157 ck3 = 5608 } # Osdara, Ouarsapa -> Osdara + link = { autogenerated = yes imp = 1859 imp = 1886 imp = 5178 imp = 5179 ck3 = 5607 } # Arca, Dalanda, IMPASSIBLE TERRAIN 178, IMPASSIBLE TERRAIN 179 -> Dalanda + link = { autogenerated = yes imp = 1898 ck3 = 5606 } # Gauraina -> Gauraina + link = { autogenerated = yes imp = 1851 imp = 1929 ck3 = 5605 } # Euspena, Phouphagena -> Euspena + link = { autogenerated = yes imp = 1891 imp = 1893 imp = 7974 ck3 = 5604 } # Karnalis, Dasmenda, Gauraina Mountains -> Karnalis + link = { autogenerated = yes imp = 1849 ck3 = 5603 } # Tonosa -> Malandra + link = { autogenerated = yes imp = 1848 imp = 1850 imp = 7973 ck3 = 5602 } # Zoana, Goundousa, Karnalis Mountains -> Sebasteia + link = { autogenerated = yes imp = 1844 imp = 1843 imp = 1846 ck3 = 5601 } # Talaura, Kamisa, Pedachthoe -> Pedachtoe + link = { autogenerated = yes imp = 1907 imp = 1839 imp = 1899 imp = 7972 ck3 = 5600 } # Agranai, Karana, Malandara, Synnada Mountains -> Agranai + link = { autogenerated = yes imp = 4538 imp = 4537 imp = 4539 imp = 4540 imp = 4541 ck3 = 560 } # Chersonesos, Parthenion, Charax, Lampas, Aloustou Phrourion -> Chersonesus + link = { autogenerated = yes imp = 3876 ck3 = 56 } # Teutonia Centralis -> VIBORG + link = { autogenerated = yes imp = 1845 imp = 1833 imp = 1840 ck3 = 5599 } # Phiara, Dazimon, Ouerisa -> Sebastopolis + link = { autogenerated = yes imp = 1819 imp = 1791 imp = 7998 imp = 7993 ck3 = 5598 } # Amaseia, Ibora, Gazioura, Amaseia Mountains -> Comana Pontica + link = { autogenerated = yes imp = 1838 imp = 1834 imp = 7999 imp = 7997 ck3 = 5597 } # Pleuramis, Zela, Sermousa, Sermousa Mountains -> Zela + link = { autogenerated = yes imp = 1841 ck3 = 5596 } # Posdala -> Pteria + link = { autogenerated = yes imp = 1837 ck3 = 5595 } # Euchaita -> Carissa + link = { autogenerated = yes imp = 231 ck3 = 5594 } # Arinna -> Euchaita + link = { autogenerated = yes imp = 203 imp = 201 imp = 7922 ck3 = 5593 } # Asklepios, Zoaka, Klaneios Mountains -> Pimolisa + link = { autogenerated = yes imp = 1828 ck3 = 5592 } # Domanion -> Andrapa + link = { autogenerated = yes imp = 1823 imp = 1826 imp = 1831 imp = 7992 ck3 = 5591 } # Diakopa, Pteria Pontias, Pimolisa, Pteria Mountains -> Magnopolis + link = { autogenerated = yes imp = 1821 imp = 1822 imp = 7994 ck3 = 5590 } # Phazemon, Etonia, Kizari -> Amaseia + link = { autogenerated = yes imp = 4534 imp = 4535 ck3 = 559 } # Kalos Limen, Masella -> Kalos Limen + link = { autogenerated = yes imp = 1809 imp = 1824 ck3 = 5589 } # Gadilon, Andrapa -> Gadilon + link = { autogenerated = yes imp = 1810 imp = 5172 ck3 = 5588 } # Zaliches, IMPASSIBLE TERRAIN 172 -> Zagora + link = { autogenerated = yes imp = 216 imp = 213 ck3 = 5587 } # Zeita, Kimista -> Ziporea + link = { autogenerated = yes imp = 200 ck3 = 5586 } # Kimiata -> Kandara + link = { autogenerated = yes imp = 1827 imp = 5171 ck3 = 5584 } # Sakorsa, IMPASSIBLE TERRAIN 171 -> Pampeiopolis + link = { autogenerated = yes imp = 1829 imp = 1815 imp = 1816 imp = 206 imp = 5173 ck3 = 5583 } # Blaine, Abonouteichos, Karambis, Kytoros, IMPASSIBLE TERRAIN 173 -> Ionopolis + link = { autogenerated = yes imp = 232 imp = 208 imp = 211 imp = 7918 ck3 = 5582 } # Bonita, Sesamos, Ziporeia, Sesamos Mountains -> Aigialos + link = { autogenerated = yes imp = 212 imp = 7917 ck3 = 5581 } # Parthenia, Parthenia Mountains -> Amastris + link = { autogenerated = yes imp = 198 ck3 = 5580 } # Gangra -> Gangra + link = { autogenerated = yes imp = 7190 imp = 4530 imp = 4531 imp = 4532 imp = 4533 ck3 = 558 } # Kanit, Hippolaou Akra, Karkine, Hylaia, Taphros -> Oleshye + link = { autogenerated = yes imp = 193 ck3 = 5579 } # Gorbeous -> Papira + link = { autogenerated = yes imp = 189 imp = 228 ck3 = 5578 } # Gordion, Androna -> Vindia + link = { autogenerated = yes imp = 226 ck3 = 5577 } # Mnezos -> Lagania + link = { autogenerated = yes imp = 221 imp = 224 imp = 225 ck3 = 5576 } # Peion, Gordioukome, Lagania -> Iuliopolis + link = { autogenerated = yes imp = 223 imp = 222 imp = 7916 ck3 = 5575 } # Legna, Bloukion, Krateia Mountains -> Krateia + link = { autogenerated = yes imp = 217 ck3 = 5574 } # Tobata -> Hadrionopolis + link = { autogenerated = yes imp = 214 imp = 210 ck3 = 5573 } # Timonion, Dadybra -> Cratea + link = { autogenerated = yes imp = 219 imp = 215 imp = 7915 ck3 = 5572 } # Salon, Krateia, Artiknous Mountains -> Boli + link = { autogenerated = yes imp = 233 imp = 237 imp = 238 imp = 7913 ck3 = 5571 } # Kieros, Embolos, Diospolis, Bithynion Mountains -> Claudiopolis + link = { autogenerated = yes imp = 246 imp = 245 ck3 = 5570 } # Strobilos, Kios -> Crius + link = { autogenerated = yes imp = 6148 imp = 6140 imp = 6143 imp = 6150 imp = 6152 ck3 = 557 } # Nynt, Tahent, Aghonor, Kihkyengra, Kilgad -> Khortytsia + link = { autogenerated = yes imp = 325 imp = 7763 imp = 7914 imp = 7762 ck3 = 5569 } # Kabia, Sophon Pass, Modra Pass, (Unknown) -> Tarsos + link = { autogenerated = yes imp = 326 imp = 7764 ck3 = 5568 } # Modra, (Unknown) -> Modra + link = { autogenerated = yes imp = 236 ck3 = 5567 } # Tarsos Bithynias -> Prusias ad Hypium + link = { autogenerated = yes imp = 234 ck3 = 5566 } # Kalpe -> Chelai + link = { autogenerated = yes imp = 241 imp = 239 imp = 240 imp = 242 ck3 = 5565 } # Rhebas, Artanes, Chalcedon, Libyssa -> Chalcedon + link = { autogenerated = yes imp = 7765 imp = 329 ck3 = 5564 } # Tattaios, Dableis -> Oka + link = { autogenerated = yes imp = 188 ck3 = 5563 } # Pessinous -> Pessinus + link = { autogenerated = yes imp = 227 imp = 316 ck3 = 5562 } # Trokna, Midaion -> Midaeum_OPSI + link = { autogenerated = yes imp = 175 imp = 7912 ck3 = 5561 } # Germa, Gordioukome Mountains -> Gordium + link = { autogenerated = yes imp = 327 ck3 = 5560 } # Oka -> Saegud + link = { autogenerated = yes imp = 6126 imp = 6131 imp = 6132 imp = 6133 ck3 = 556 } # Ratikgot, Zhenna, Solyots, Dyrghet -> Samar + link = { autogenerated = yes imp = 324 imp = 322 imp = 323 imp = 7755 ck3 = 5559 } # Otroia, Lamounia, Sarkotyle, Olympus Mons -> Dabla + link = { autogenerated = yes imp = 317 ck3 = 5558 } # Kotiaeion -> Katyaion + link = { autogenerated = yes imp = 321 imp = 319 ck3 = 5557 } # Kybellion, Aizanoi -> Catyaeum + link = { autogenerated = yes imp = 218 ck3 = 5555 ck3 = 742 } # Kallydion -> Helge, Prusa + link = { autogenerated = yes imp = 250 imp = 249 ck3 = 5554 } # Helge, Apollonia Rhyndakos -> Apemea + link = { autogenerated = yes imp = 320 ck3 = 5553 ck3 = 5556 } # Ariste -> Appollonia, Hadrianoi + link = { autogenerated = yes imp = 269 imp = 253 ck3 = 5552 } # Pericharaxis, Daskyleion -> Miletopolis + link = { autogenerated = yes imp = 265 imp = 264 ck3 = 5551 } # Argiza, Baris Mysias -> Poimanenon + link = { autogenerated = yes imp = 339 imp = 8059 ck3 = 5550 } # Elouza, Eukarpia Mons -> Sebaste + link = { autogenerated = yes imp = 10201 ck3 = 555 } # Khotove -> Pereyaslavl + link = { autogenerated = yes imp = 1944 imp = 1942 ck3 = 5549 } # Lounda, Peltai -> Apamea + link = { autogenerated = yes imp = 1946 imp = 311 imp = 7925 ck3 = 5548 } # Hierapolis, Pepouza, Pergamon Mountains 2 -> Chonae + link = { autogenerated = yes imp = 7939 imp = 1963 imp = 7938 imp = 7940 ck3 = 5547 } # Hyllarima, Harpasa, Bargasa, Hyllarima Mountains -> Mylasa + link = { autogenerated = yes imp = 1947 imp = 1962 imp = 7751 imp = 7984 ck3 = 5546 } # Apollonia Maiandrou, Athymbra, Mesogis Mons, Kranaos Mountains -> Philadelphia + link = { autogenerated = yes imp = 300 imp = 7928 ck3 = 5544 } # Maionia, Sardis Mountains -> Silandos + link = { autogenerated = yes imp = 308 ck3 = 5543 } # Blaoundos -> Bagis + link = { autogenerated = yes imp = 309 imp = 307 ck3 = 5542 } # Akmoneia, Bageis -> Akrainos + link = { autogenerated = yes imp = 301 imp = 7927 ck3 = 5541 } # Silandos, Silandos Mountains -> Cadi + link = { autogenerated = yes imp = 299 imp = 305 ck3 = 5540 } # Maiboza, Hyrkanis -> Tabala + link = { autogenerated = yes imp = 10206 ck3 = 554 } # Teteriv -> Chernigov + link = { autogenerated = yes imp = 274 imp = 304 imp = 7926 ck3 = 5539 } # Thyateira, Hyssa, Hyssa Mountains -> Thyatira + link = { autogenerated = yes imp = 306 ck3 = 5538 } # Ankyra Sidera -> Synaos + link = { autogenerated = yes imp = 303 ck3 = 5537 } # Synaos -> Cybele + link = { autogenerated = yes imp = 273 imp = 272 imp = 8058 ck3 = 5535 } # Inde, Hiera Germe, Apollonia Mons -> Attalia + link = { autogenerated = yes imp = 1977 imp = 1967 imp = 1973 imp = 1980 imp = 275 imp = 7931 imp = 7932 ck3 = 5534 } # Mylasa, Alabanda, Miletos, Stratonikeia, Iasos, Alinda Mountains, Alabanda Mountains -> Iassus + link = { autogenerated = yes imp = 1968 imp = 1966 imp = 7929 ck3 = 5533 } # Alexandreia pros to Latmo, Tralles, Tralleis Mountains -> Miletus + link = { autogenerated = yes imp = 1808 imp = 291 imp = 294 imp = 7753 imp = 7933 ck3 = 5532 } # Metropolis, Colophon, Larisa Ionias, Tempsis Mons, Smyrna Mountains -> Lebedos + link = { autogenerated = yes imp = 278 imp = 276 ck3 = 5530 } # Pergamon, Apollonia Mysias -> Pergamon + link = { autogenerated = yes imp = 10237 ck3 = 553 } # Lyubech -> Lyubech + link = { autogenerated = yes imp = 281 imp = 282 imp = 337 ck3 = 5529 } # Adramyttion, Atarna, Pioniai -> Adramytium + link = { autogenerated = yes imp = 12383 ck3 = 5526 ck3 = 5528 ck3 = 5517 } # Muw -> Chelabinsk, Baklanska, Southern Urals + link = { autogenerated = yes imp = 12387 ck3 = 5522 ck3 = 5524 ck3 = 5525 } # Pal -> Kamychlov, Silach, Chadrinsk + link = { autogenerated = yes imp = 12388 ck3 = 5521 ck3 = 5523 } # Polunkwe -> Irbit, Iset + link = { autogenerated = yes imp = 12391 ck3 = 5520 ck3 = 5887 } # Maltip -> Alapaevsk, Shantoskoye + link = { autogenerated = yes imp = 10218 imp = 10219 imp = 10216 ck3 = 552 } # Pripyat, Lemeshevichi, Hlumcha -> Turov + link = { autogenerated = yes imp = 12386 ck3 = 5519 } # Xul -> Yekaterinburg + link = { autogenerated = yes imp = 12880 imp = 12879 ck3 = 5511 } # Varu, Varu -> Kama River + link = { autogenerated = yes imp = 12877 ck3 = 5510 } # Varu -> Kama River + link = { autogenerated = yes imp = 11494 imp = 11496 ck3 = 551 } # Nawas, Bajatei -> Mstislavl + link = { autogenerated = yes imp = 12515 ck3 = 5509 } # Kovny -> Atkarsk + link = { autogenerated = yes imp = 12516 ck3 = 5508 } # Jyv -> Peschanka + link = { autogenerated = yes imp = 12512 ck3 = 5507 } # Polo -> Maloi Irghiz + link = { autogenerated = yes imp = 12506 ck3 = 5505 } # Asnym -> Yalachi + link = { autogenerated = yes imp = 12509 ck3 = 5504 } # Niz -> Jambalar + link = { autogenerated = yes imp = 12500 ck3 = 5502 } # Vorkan -> Ilekskoi Gorodok + link = { autogenerated = yes imp = 10316 imp = 10317 imp = 10320 ck3 = 550 } # Berezina, Kremok, Byerazino -> Minsk + link = { autogenerated = yes imp = 3879 imp = 3875 imp = 3880 ck3 = 55 } # Cimbria Borealis, Teutonia Maior, Cimbria Maior -> LINDHOLM + link = { autogenerated = yes imp = 12467 ck3 = 5493 ck3 = 5495 } # Vidza -> Parizh, Yamantau + link = { autogenerated = yes imp = 12381 ck3 = 5492 ck3 = 5527 } # Saajem -> Zlatoust, Troizk + link = { autogenerated = yes imp = 12382 ck3 = 5490 } # Itkul -> Karabash + link = { autogenerated = yes imp = 7825 ck3 = 549 } # Sentia -> Berestye + link = { autogenerated = yes imp = 12380 ck3 = 5488 ck3 = 5481 } # Tun -> Satka, Yanokul + link = { autogenerated = yes imp = 12379 imp = 12373 ck3 = 5487 } # Tuks, Kus -> Uiska + link = { autogenerated = yes imp = 12378 ck3 = 5485 ck3 = 5486 ck3 = 5482 } # Jukaar -> Verkouralsk, Yumanova, Kaginskoi + link = { autogenerated = yes imp = 12377 ck3 = 5484 ck3 = 5499 } # Kunkees -> Yuldybayevo, Orskaya + link = { autogenerated = yes imp = 10264 imp = 10221 ck3 = 548 } # Lukow, Buhski -> Pinsk + link = { autogenerated = yes imp = 12471 ck3 = 5477 ck3 = 5494 ck3 = 5489 } # Vurany -> Yeldiatzkaya, Duvan, Ust-Katav + link = { autogenerated = yes imp = 12525 ck3 = 5473 } # Kyny -> Vetluga + link = { autogenerated = yes imp = 12528 ck3 = 5470 ck3 = 585 } # Asnys -> Cykma, Gorodets + link = { autogenerated = yes imp = 6090 imp = 10202 ck3 = 547 } # Sitya, Khodosivka -> Kiev + link = { autogenerated = yes imp = 12483 ck3 = 5468 } # Kurnis -> Suna + link = { autogenerated = yes imp = 12478 imp = 12482 ck3 = 5467 } # Paskyt, Badda -> Nukrat + link = { autogenerated = yes imp = 12484 ck3 = 5466 } # Elni -> Kolyn + link = { autogenerated = yes imp = 12479 ck3 = 5464 ck3 = 5465 } # Peckyny -> Igra, Uva + link = { autogenerated = yes imp = 12473 ck3 = 5463 } # Mys -> Glazov + link = { autogenerated = yes imp = 6234 imp = 6233 ck3 = 546 } # Myanik, Urschelats -> Terebovl + link = { autogenerated = yes imp = 12461 ck3 = 5452 ck3 = 5454 ck3 = 5458 ck3 = 5457 ck3 = 888 } # Dzudzyd -> Krasnokamsk, Solikamsk, Kasib, Akchim, Kargadan + link = { autogenerated = yes imp = 12469 ck3 = 5451 ck3 = 5460 ck3 = 5459 } # Gad -> Obva, Karsovay, Koca + link = { autogenerated = yes imp = 12470 ck3 = 5450 } # Icin -> Nytva + link = { autogenerated = yes imp = 12474 ck3 = 5449 } # Lyddyny -> Votkinsk + link = { autogenerated = yes imp = 12385 ck3 = 5448 ck3 = 5491 } # Vakh -> Kirgichanskaya, Revda + link = { autogenerated = yes imp = 12465 ck3 = 5446 ck3 = 5447 ck3 = 5496 ck3 = 5497 } # Mukod -> Bisserskaya, Klenovskaya, Arti, Achichskaya + link = { autogenerated = yes imp = 12460 ck3 = 5444 ck3 = 5445 } # Addzyny -> Sylva, Kumych + link = { autogenerated = yes imp = 12462 ck3 = 5441 ck3 = 5442 ck3 = 5443 ck3 = 5453 } # Malamus -> Lysva, Kutamych, Serga, Vilva + link = { autogenerated = yes imp = 12472 ck3 = 5440 } # Ektyny -> Saraninskor + link = { autogenerated = yes imp = 6082 imp = 6091 ck3 = 544 } # Donts, Aggrygh -> Korsun + link = { autogenerated = yes imp = 12476 ck3 = 5439 } # Modny -> Aluchi + link = { autogenerated = yes imp = 12475 ck3 = 5437 } # Koco -> Sebur + link = { autogenerated = yes imp = 12466 ck3 = 5436 ck3 = 5438 } # Kunse -> Ovinskoi, Okhansk + link = { autogenerated = yes imp = 12464 ck3 = 5434 ck3 = 5435 } # Bostny -> Kungur, Krasnooufimsk + link = { autogenerated = yes imp = 7186 imp = 4527 ck3 = 543 } # Scyra, Istrianon -> Okachiv + link = { autogenerated = yes imp = 12486 ck3 = 5429 ck3 = 5479 ck3 = 615 ck3 = 5480 } # Ustem -> Sterlitamak, Prigorod Tabynsk, Ufa, Bielaya + link = { autogenerated = yes imp = 12496 ck3 = 5428 ck3 = 5433 ck3 = 5501 ck3 = 5500 } # Bord -> Sakmarskoi Gorodok, Prechistenskaya, Orenburg, Chalap Kerman + link = { autogenerated = yes imp = 12489 ck3 = 5427 ck3 = 5430 ck3 = 5431 } # Kerkwo -> Bol Uran, Teterpush, Salavat + link = { autogenerated = yes imp = 12491 ck3 = 5423 ck3 = 5424 } # Wole -> Pascherty, Bugulma + link = { autogenerated = yes imp = 12485 ck3 = 5420 ck3 = 5475 ck3 = 5476 } # Kuamyn -> Siun, Birsk, Sim + link = { autogenerated = yes imp = 7187 imp = 4528 ck3 = 542 } # Ektonopolis, Scopuli -> Olbia_ETEL + link = { autogenerated = yes imp = 12487 ck3 = 5419 } # Kozin -> Menzelinsk + link = { autogenerated = yes imp = 12488 ck3 = 5418 ck3 = 5421 } # Nelja -> Belebey, Achaly + link = { autogenerated = yes imp = 12503 ck3 = 5417 ck3 = 5503 ck3 = 5506 } # Volos -> Neftegorsk, Kamelik, Maza + link = { autogenerated = yes imp = 12492 ck3 = 5416 ck3 = 5426 } # Dzazeg -> Pokhnishne, Bugurslan + link = { autogenerated = yes imp = 12499 ck3 = 5415 } # Kulni -> Buzuluk + link = { autogenerated = yes imp = 12494 ck3 = 5413 ck3 = 5422 } # Das -> Aqsubay, Jalmat + link = { autogenerated = yes imp = 12504 ck3 = 5412 ck3 = 5414 ck3 = 609 } # Nyv -> Karabolam, Elmet, Samar + link = { autogenerated = yes imp = 12505 ck3 = 5411 ck3 = 591 } # Lewle -> Banja, Simbirsk + link = { autogenerated = yes imp = 11455 imp = 11450 ck3 = 5410 } # Vaski, Cigra -> Tersa + link = { autogenerated = yes imp = 12490 ck3 = 5408 ck3 = 5409 ck3 = 5425 } # Nijne -> Yar Calli, Agidel, Almetyvesk + link = { autogenerated = yes imp = 12493 ck3 = 5407 } # Murt -> Tukhchi + link = { autogenerated = yes imp = 12507 ck3 = 5406 ck3 = 610 } # Lebny -> Suvar, Bolghar + link = { autogenerated = yes imp = 12495 ck3 = 5405 ck3 = 613 } # Erga -> Cukataw, Bilyar + link = { autogenerated = yes imp = 12477 ck3 = 5404 } # Kukjamus -> Izhevsk + link = { autogenerated = yes imp = 12480 ck3 = 5402 ck3 = 5403 } # Zonka -> Voloz, Elabuga + link = { autogenerated = yes imp = 12481 ck3 = 5401 ck3 = 5469 } # Mene -> Mozhga, Arkul + link = { autogenerated = yes imp = 4501 imp = 5998 ck3 = 540 } # Caput Stenarum, Transyvlanian Impassable -> Szekelyfold + link = { autogenerated = yes imp = 2177 ck3 = 54 } # Ivernia Australis -> KINSALE + link = { autogenerated = yes imp = 12520 ck3 = 5399 ck3 = 5400 } # Deme -> Mamadych, Otarka + link = { autogenerated = yes imp = 12522 ck3 = 5397 ck3 = 5398 ck3 = 611 } # Gord -> Kashan, Arsk, Kazan + link = { autogenerated = yes imp = 12521 ck3 = 5396 } # Asil -> Mari-Turek + link = { autogenerated = yes imp = 12524 ck3 = 5395 } # Vony -> Tsarevokokchaisk + link = { autogenerated = yes imp = 12526 ck3 = 5394 ck3 = 589 } # Kvajt -> Arda, Urzen + link = { autogenerated = yes imp = 12523 ck3 = 5393 ck3 = 588 } # Med -> Volzhsk, Yoshkar-Ola + link = { autogenerated = yes imp = 12519 ck3 = 5392 } # Asnyd -> Alchanka + link = { autogenerated = yes imp = 12536 ck3 = 5390 } # Kjelj -> Petrovsk + link = { autogenerated = yes imp = 12550 ck3 = 5389 ck3 = 5498 } # Pilge -> Kolychev, Repnoye + link = { autogenerated = yes imp = 12549 ck3 = 5388 } # Rungo -> Durovka + link = { autogenerated = yes imp = 12545 ck3 = 5387 } # Moncen -> Kirsanov + link = { autogenerated = yes imp = 12542 imp = 12543 ck3 = 5386 } # Kumaza, Selme -> Vorona + link = { autogenerated = yes imp = 12537 ck3 = 5384 ck3 = 5391 } # Makso -> Serdosk, Treliaka + link = { autogenerated = yes imp = 12539 ck3 = 5383 ck3 = 5385 } # Pizeme -> Saran, Kachma + link = { autogenerated = yes imp = 11433 ck3 = 5382 } # Tab -> Manina + link = { autogenerated = yes imp = 11436 imp = 11437 ck3 = 5381 } # Mud, Cyrg -> Kriucha + link = { autogenerated = yes imp = 11435 ck3 = 5380 } # Vite -> Bychok + link = { autogenerated = yes imp = 11445 imp = 11441 imp = 11449 ck3 = 5379 } # Rast, Paoi, Ajam -> Viazovka + link = { autogenerated = yes imp = 11440 ck3 = 5378 } # Aerdyn -> Khoper + link = { autogenerated = yes imp = 12517 ck3 = 5377 } # Gyrys -> Balachev + link = { autogenerated = yes imp = 11434 imp = 12552 ck3 = 5376 } # Peus, Vergiz -> Trotskhoper + link = { autogenerated = yes imp = 11430 ck3 = 5373 } # Wetusas -> Pavlovsk + link = { autogenerated = yes imp = 11431 imp = 11432 ck3 = 5371 } # Naktis, Kirsnas -> Karatayak + link = { autogenerated = yes imp = 12535 ck3 = 5369 ck3 = 5370 } # Teste -> Hanbalik, Uza + link = { autogenerated = yes imp = 12532 ck3 = 5367 } # Lavtomo -> Insara + link = { autogenerated = yes imp = 12534 ck3 = 5366 } # Inzej -> Penza + link = { autogenerated = yes imp = 12530 ck3 = 5365 ck3 = 614 } # Boza -> Alatyr, Ashli + link = { autogenerated = yes imp = 12531 ck3 = 5364 ck3 = 579 } # Kycan -> Tzyvil, Saransk + link = { autogenerated = yes imp = 12529 ck3 = 5363 ck3 = 590 } # Dod -> Urmary, Cheboksary + link = { autogenerated = yes imp = 12541 ck3 = 5360 ck3 = 5361 } # Tol -> Morchansk, Chatzk + link = { autogenerated = yes imp = 4941 imp = 6047 ck3 = 536 } # Salumnis, Olnish -> Halych + link = { autogenerated = yes imp = 12538 ck3 = 5359 } # Kelme -> Lachyk-Uba + link = { autogenerated = yes imp = 12546 ck3 = 5358 } # Kinere -> Oranienburg + link = { autogenerated = yes imp = 12548 ck3 = 5356 } # Suv -> Matya + link = { autogenerated = yes imp = 12551 ck3 = 5354 ck3 = 5355 ck3 = 5375 } # Ine -> Szava, Plavitza, Lejlotka + link = { autogenerated = yes imp = 12547 ck3 = 5353 ck3 = 5357 } # Udoma -> Tambov, Kozlov + link = { autogenerated = yes imp = 12553 ck3 = 5352 ck3 = 5374 } # Purgine -> Usman, Teluchezeva + link = { autogenerated = yes imp = 12556 ck3 = 5351 } # Kirga -> Lipetsk + link = { autogenerated = yes imp = 12554 ck3 = 5350 ck3 = 5372 } # Tuvo -> Voronezh, Babrov + link = { autogenerated = yes imp = 6253 ck3 = 535 } # Mavar -> Volodymyr + link = { autogenerated = yes imp = 11478 imp = 11475 ck3 = 5349 } # Amazo, Batya -> Zhaltyr + link = { autogenerated = yes imp = 12508 imp = 12511 ck3 = 5348 } # Zer, Kutny -> Chelykla + link = { autogenerated = yes imp = 12514 imp = 11460 imp = 11463 imp = 11465 imp = 11468 ck3 = 5347 } # Kymos, Stana, Xsay, Wantah, Darga -> Engels + link = { autogenerated = yes imp = 5878 imp = 5910 imp = 5911 ck3 = 5346 } # Atar, Uvra, Usch -> Ryn + link = { autogenerated = yes imp = 11332 imp = 11331 imp = 6219 imp = 6222 imp = 11328 imp = 11340 ck3 = 5345 } # Shungay, Mukhat, Uyennik, Arzhahk, Suyindik, Saykhin -> Chyorny Yar + link = { autogenerated = yes imp = 5928 imp = 5926 imp = 5925 ck3 = 5344 } # Nechek, Duzea, Krayn -> Majar + link = { autogenerated = yes imp = 5874 imp = 5873 imp = 5921 ck3 = 5343 } # Recrassia, Molliuch, Abach -> Samiran + link = { autogenerated = yes imp = 7602 ck3 = 5342 ck3 = 675 } # Endzhara -> Sambalut, Kumukh + link = { autogenerated = yes imp = 7603 ck3 = 5341 ck3 = 668 } # Derbent -> Kuba, Shirvan + link = { autogenerated = yes imp = 5891 ck3 = 5340 } # Avrar -> Yergolyk + link = { autogenerated = yes imp = 4945 ck3 = 534 } # Riparum -> Peremyshl + link = { autogenerated = yes imp = 5884 ck3 = 5339 } # Katys -> Chamchev + link = { autogenerated = yes imp = 5887 imp = 5886 imp = 5889 ck3 = 5338 } # Bashkra, Akkei, Donol -> Tikhon + link = { autogenerated = yes imp = 7636 ck3 = 5337 } # Garen -> Chelbaska + link = { autogenerated = yes imp = 7618 imp = 4560 imp = 7617 ck3 = 5336 } # Rogoy, Azara, Stepna -> Soleny + link = { autogenerated = yes imp = 7612 imp = 4561 ck3 = 5335 } # Maran, Lebedia -> Kuban + link = { autogenerated = yes imp = 6218 imp = 5904 imp = 6220 imp = 6221 imp = 5902 ck3 = 5334 } # Mennichak, Mylla, Uryennik, Zhelk, Reama -> Yenotayevka + link = { autogenerated = yes imp = 6209 imp = 6210 imp = 6205 ck3 = 5333 } # Ydomor, Ghenarcha, Uyoro -> Sarepta + link = { autogenerated = yes imp = 6192 imp = 6193 imp = 5899 ck3 = 5332 } # Syutnich, Zhev, Gura -> Semikarakary + link = { autogenerated = yes imp = 4546 ck3 = 5331 } # Urgat -> Dzhankoi + link = { autogenerated = yes imp = 4548 ck3 = 5330 } # Kimmeria -> Aqmescit + link = { autogenerated = yes imp = 6182 imp = 6175 imp = 6176 imp = 6179 ck3 = 5329 } # Ighkoy, Shashcha, Molon, Yoro -> Ivanovskoye + link = { autogenerated = yes imp = 6170 imp = 6173 ck3 = 5328 } # Dolom, Sythachka -> Kuzeyrog + link = { autogenerated = yes imp = 10339 imp = 6171 imp = 6174 ck3 = 5327 } # Olkhovaya, Galligh, Scytte -> Podgornye + link = { autogenerated = yes imp = 6184 imp = 6181 ck3 = 5326 } # Yovolat, Achkach -> Millerovo + link = { autogenerated = yes imp = 10343 imp = 10346 ck3 = 5325 } # Kurennoe, Rovenki -> Boguchar + link = { autogenerated = yes imp = 6157 imp = 6153 imp = 6156 imp = 6159 imp = 6164 ck3 = 5324 } # Shgaritat, Uldan, Aihkohna, Stat, Shchor -> Donetsk + link = { autogenerated = yes imp = 10350 imp = 10342 imp = 10347 imp = 10348 imp = 10349 imp = 6166 imp = 7644 ck3 = 5323 } # Kozynka, Komyshna, Bila, Kupyansk, Horyane, Gyrones, Donetsk -> Volcha + link = { autogenerated = yes imp = 6138 imp = 6135 imp = 6160 imp = 6161 ck3 = 5322 } # Ghart, Thense, Verhyn, Yakkant -> Tor + link = { autogenerated = yes imp = 6158 imp = 6151 ck3 = 5321 } # Unige, Alkhyent -> Pokrovsk + link = { autogenerated = yes imp = 6134 imp = 6136 imp = 6137 ck3 = 5320 } # Annike, Skurtisk, Voynor -> Lozova + link = { autogenerated = yes imp = 11486 imp = 12501 ck3 = 5319 } # Sparga, Gozom -> Yaitsk + link = { autogenerated = yes imp = 11315 imp = 11312 imp = 11477 imp = 11318 ck3 = 5318 } # Krugli, Inder, Kissar, Taskuduk -> Kalmikovsky + link = { autogenerated = yes imp = 5879 imp = 11311 imp = 5912 imp = 11316 ck3 = 5317 } # Gyoria, Orlik, Azgar, Bangazy -> Saraychiq + link = { autogenerated = yes imp = 11459 imp = 11453 imp = 11454 imp = 11458 imp = 11461 ck3 = 5316 } # Waru, Riza, Mauka, Zyrenka, Api -> Nikolaievsk + link = { autogenerated = yes imp = 6206 imp = 6203 imp = 6207 imp = 6214 ck3 = 5315 } # Ketsk, Ghalat, Urviygra, Zhuna -> Aksay + link = { autogenerated = yes imp = 12510 imp = 11473 imp = 11472 ck3 = 5314 } # Dzek, Baivar, Saioi -> Verchina Uzen + link = { autogenerated = yes imp = 5909 imp = 5877 imp = 6228 imp = 6229 ck3 = 5313 } # Norom, Enim, Arzhale, Khonnt -> Saqsin + link = { autogenerated = yes imp = 5919 imp = 5876 imp = 5918 ck3 = 5312 } # Kurnsck, Sechtra, Chroda -> Sara + link = { autogenerated = yes imp = 5908 imp = 5907 imp = 8050 ck3 = 5311 } # Gyashech, Taksaty, Uyra -> Astrakhan + link = { autogenerated = yes imp = 5872 imp = 5871 imp = 5924 imp = 5923 ck3 = 5310 } # Shiech, Zarem, Volna, Achtab -> Cisterki + link = { autogenerated = yes imp = 6259 ck3 = 531 } # Urgana -> Sandomierz + link = { autogenerated = yes imp = 5869 imp = 5867 ck3 = 5309 } # Magrai, Suthrander -> Tserlona + link = { autogenerated = yes imp = 5870 imp = 5868 imp = 5875 ck3 = 5308 } # Kurema, Lotin, Ashawm -> Cabartei + link = { autogenerated = yes imp = 5866 ck3 = 5307 } # Zabender -> Kizlyar + link = { autogenerated = yes imp = 7623 ck3 = 5306 } # Terekata -> Durdzukia + link = { autogenerated = yes imp = 7633 imp = 7632 ck3 = 5305 } # Kayit, Irmana -> Samander + link = { autogenerated = yes imp = 7621 imp = 7605 ck3 = 5304 } # Valent, Urtseki -> Balanjar + link = { autogenerated = yes imp = 5929 imp = 5930 imp = 5931 imp = 5927 imp = 5932 ck3 = 5303 } # Zhodyn, Huruir, Skatar, Varyr, Manar -> Besinada + link = { autogenerated = yes imp = 7629 imp = 7627 imp = 7628 ck3 = 5302 } # Gorat, Verks, Malyts -> Tatartopa + link = { autogenerated = yes imp = 7609 imp = 5933 imp = 7620 imp = 5890 ck3 = 5301 } # Hypanispa, Vylda, Kalkry, Mykon -> Betzini + link = { autogenerated = yes imp = 7619 imp = 7606 ck3 = 5300 } # Lapra, Heniat -> Etzeri + link = { autogenerated = yes imp = 6273 ck3 = 530 } # Sopha -> Czersk + link = { autogenerated = yes imp = 2162 ck3 = 53 } # Usdia Occidentalis -> CORK + link = { autogenerated = yes imp = 7607 imp = 7611 ck3 = 5299 } # Abasgria, Alanis -> Maghas + link = { autogenerated = yes imp = 7614 imp = 7610 imp = 7615 ck3 = 5297 } # Salavy, Sinad, Elvruz -> Zapaxi + link = { autogenerated = yes imp = 7600 imp = 4566 imp = 4567 imp = 7608 ck3 = 5296 } # Sabiranum, Bata, Torikos, Hypanera -> Bata + link = { autogenerated = yes imp = 11443 imp = 11442 ck3 = 5295 } # Kalm, Cyxt -> Yelan + link = { autogenerated = yes imp = 11456 imp = 11447 imp = 11448 imp = 11451 imp = 11452 imp = 11457 ck3 = 5294 } # Vadasz, Capi, Medu, Nahapana, Gaita, Zurka -> Kamyshin + link = { autogenerated = yes imp = 11444 imp = 11446 ck3 = 5293 } # Arv, Carm -> Frolovo + link = { autogenerated = yes imp = 10337 imp = 10336 imp = 10338 imp = 6195 ck3 = 5292 } # Berezovaya, Bolshoi, Tikhaya, Urvolat -> Ust-Donvokhi + link = { autogenerated = yes imp = 10335 imp = 10332 imp = 10333 imp = 10334 imp = 6199 ck3 = 5291 } # Kalmykovskii, Krepkaya, Liska, Bazki, Ydologh -> Siyahtepe + link = { autogenerated = yes imp = 6198 imp = 6185 imp = 6186 imp = 6188 imp = 6191 imp = 6194 ck3 = 5290 } # Urgast, Ollo, Urgenkh, Vyrni, Khang, Urzhev -> Golden Hills + link = { autogenerated = yes imp = 6278 ck3 = 529 } # Mornal -> Plock + link = { autogenerated = yes imp = 7613 imp = 7635 ck3 = 5289 } # Yelsa, Iados -> Papagia + link = { autogenerated = yes imp = 5888 imp = 6190 ck3 = 5288 } # Techka, Kichpa -> Manych + link = { autogenerated = yes imp = 10340 imp = 10341 ck3 = 5287 } # Bogucharka, Titarevka -> Kazanskaya + link = { autogenerated = yes imp = 11423 imp = 11420 imp = 11429 ck3 = 5286 } # Karo, Derwa, Sausas -> Khursa + link = { autogenerated = yes imp = 11419 imp = 10260 imp = 11418 imp = 11427 ck3 = 5285 } # Kirmis, Oskil, Zweris, Ragas -> Khorysdan + link = { autogenerated = yes imp = 10184 imp = 10183 imp = 10185 imp = 10259 ck3 = 5284 } # Vorskla, Trostyanets, Zolochiv, Orlik -> Chally-Kala + link = { autogenerated = yes imp = 10182 imp = 10181 imp = 6120 ck3 = 5283 } # Merla, Gelon, Volg -> Bohodukhiv + link = { autogenerated = yes imp = 6127 imp = 6116 ck3 = 5282 } # Nyetskor, Syuthgrat -> Karlivka + link = { autogenerated = yes imp = 7193 imp = 4553 imp = 4554 imp = 6149 imp = 6154 ck3 = 5281 } # Settina, Kremnoi, Halieuma Theou, Ghahko, Rynek -> Kutur-Ogly + link = { autogenerated = yes imp = 6163 imp = 4555 imp = 6155 ck3 = 5280 } # Vyonots, Hygreis, Kisko -> Mariupol + link = { autogenerated = yes imp = 7192 imp = 4551 imp = 4552 ck3 = 5279 } # Sarmapolis, Coretia, Limnaioi -> Kyzyl Jar + link = { autogenerated = yes imp = 6124 imp = 6144 imp = 6146 imp = 6147 ck3 = 5278 } # Syti, Borysthenia, Aegha, Ruti -> Kakovka + link = { autogenerated = yes imp = 4545 ck3 = 5277 } # Cimus -> Perekop + link = { autogenerated = yes imp = 4536 imp = 4542 imp = 4547 ck3 = 5276 } # Kerkinitis, Neapolis Taurike, Taurica -> Kerkinitis + link = { autogenerated = yes imp = 6128 imp = 6121 ck3 = 5275 } # Zeh, Oykets -> Salmacatce + link = { autogenerated = yes imp = 6130 imp = 6129 imp = 6139 ck3 = 5274 } # Vurd, Gyonal, Kyakkam -> Dnipro + link = { autogenerated = yes imp = 6141 imp = 6122 imp = 6142 imp = 6145 ck3 = 5273 } # Enke, Syalite, Ghasett, Gerrhos -> Nikopol + link = { autogenerated = yes imp = 7191 imp = 6118 imp = 6123 ck3 = 5272 } # Uttar, Kin, Shuchshek -> Beryslav + link = { autogenerated = yes imp = 6100 imp = 6103 ck3 = 5271 } # Hkraniyat, Vashschka -> Voznessensk + link = { autogenerated = yes imp = 6108 imp = 6119 ck3 = 5270 } # Mnata, Exampeaus -> Kazanka + link = { autogenerated = yes imp = 4893 ck3 = 527 ck3 = 3041 } # Matiscua -> Krakow, BIELSKO + link = { autogenerated = yes imp = 7188 imp = 4529 imp = 6102 ck3 = 5269 } # Yendi, Olbia, Korulin -> Kherson + link = { autogenerated = yes imp = 7185 imp = 4526 ck3 = 5268 } # Atavria, Nikonia -> Odessa + link = { autogenerated = yes imp = 7189 ck3 = 5267 } # Rakan -> Tiraspol + link = { autogenerated = yes imp = 6105 imp = 6098 imp = 6104 ck3 = 5266 } # Gonoska, Ocraent, Maske -> Pervomaisk + link = { autogenerated = yes imp = 6099 imp = 6095 ck3 = 5265 } # Onskoet, Siskary -> Kashan + link = { autogenerated = yes imp = 6107 imp = 6106 imp = 6117 ck3 = 5264 } # Kreshcek, Jyr, Aggrat -> Sacacatce + link = { autogenerated = yes imp = 6101 imp = 6094 imp = 6110 ck3 = 5263 } # Zetha, Akhynt, Ehkere -> Cherkassy + link = { autogenerated = yes imp = 6096 ck3 = 5262 } # Vyelinat -> Uman + link = { autogenerated = yes imp = 6083 ck3 = 5261 } # Vyrketin -> Buky + link = { autogenerated = yes imp = 6087 ck3 = 5260 } # Hkar -> Yary + link = { autogenerated = yes imp = 6097 imp = 7195 ck3 = 5259 } # Kilkhaneg, Tanarke -> Liubashivka + link = { autogenerated = yes imp = 6088 imp = 6085 ck3 = 5257 } # Kmekhich, Tumin -> Ladyzyn + link = { autogenerated = yes imp = 12527 ck3 = 5256 ck3 = 5471 ck3 = 5472 } # Vevt -> Makariev, Semenov, Luch + link = { autogenerated = yes imp = 12637 ck3 = 5255 ck3 = 972 } # Kuunel -> Pikalyovo, VEPSIAN WASTELAND + link = { autogenerated = yes imp = 12557 ck3 = 5246 } # Juuri -> Kineshma + link = { autogenerated = yes imp = 12568 ck3 = 5244 ck3 = 5245 ck3 = 578 } # Nitodak -> Naro-Fominsk, Serpukhov, Kolomna + link = { autogenerated = yes imp = 12566 ck3 = 5243 ck3 = 570 ck3 = 575 } # Oraca -> Klin, Dmitrov, Moskva + link = { autogenerated = yes imp = 12561 ck3 = 5242 ck3 = 574 ck3 = 572 } # Ampudak -> Gavrilovskoye, Rostov, Yaroslavl + link = { autogenerated = yes imp = 12559 ck3 = 5241 ck3 = 5247 ck3 = 5249 } # Orja -> Ivanovo, Plyos, Sol Vilikaya + link = { autogenerated = yes imp = 12565 ck3 = 5238 } # Nerkka -> Yegoryevsk + link = { autogenerated = yes imp = 12560 ck3 = 5237 ck3 = 5248 ck3 = 583 } # Kacku -> Sudogda, Shuya, Starodub-on-the-klyazma + link = { autogenerated = yes imp = 12563 ck3 = 5236 ck3 = 5239 ck3 = 5240 ck3 = 582 } # Majagax -> Volochok, Suzdal, Yuryev, Vladimir + link = { autogenerated = yes imp = 12540 ck3 = 5235 } # Lovaza -> Pavlovo + link = { autogenerated = yes imp = 12544 ck3 = 5234 ck3 = 5362 } # Turva -> Vyksa, Rakcha + link = { autogenerated = yes imp = 12564 ck3 = 5233 } # Louna -> Gorodets-Meshchyorsky + link = { autogenerated = yes imp = 12572 imp = 11428 ck3 = 5232 } # Istudak, Krauja -> Yelets + link = { autogenerated = yes imp = 12569 ck3 = 5230 ck3 = 5253 } # Lupsadak -> Klepiki, Vaskina Polyana + link = { autogenerated = yes imp = 12571 ck3 = 5228 ck3 = 5229 } # Kanci -> Pereyaslavl Ryazanski, Rostislavl + link = { autogenerated = yes imp = 12581 ck3 = 5226 ck3 = 5227 } # Jasen -> Lotoshino, Zubstov + link = { autogenerated = yes imp = 11489 ck3 = 5225 } # Sulnis -> Cherykaw + link = { autogenerated = yes imp = 11493 imp = 11492 ck3 = 5224 } # Zeme, Neba -> Klimavichy + link = { autogenerated = yes imp = 12582 ck3 = 5223 } # Marehtidak -> Dukhovshchina + link = { autogenerated = yes imp = 12585 ck3 = 5222 } # Valadak -> Velizh + link = { autogenerated = yes imp = 12584 imp = 12583 ck3 = 5221 } # Tallatak, Maito -> Gnezdovo + link = { autogenerated = yes imp = 11495 imp = 11499 imp = 11500 ck3 = 5220 } # Bartei, Ungnis, Asras -> Yelnya + link = { autogenerated = yes imp = 4855 imp = 4852 ck3 = 522 } # Ocara, Burgus Quadorum -> Pest + link = { autogenerated = yes imp = 12579 ck3 = 5219 } # Pihti -> Dorogobyzh + link = { autogenerated = yes imp = 12575 ck3 = 5218 } # Suurima -> Suvorov + link = { autogenerated = yes imp = 12574 ck3 = 5217 } # Tammi -> Odoyev + link = { autogenerated = yes imp = 12573 ck3 = 5216 } # Hanha -> Mtensk + link = { autogenerated = yes imp = 11421 imp = 11422 ck3 = 5215 } # Medja, Lapas -> Novosil + link = { autogenerated = yes imp = 12578 ck3 = 5213 } # Kuntadak -> Vorotynsk + link = { autogenerated = yes imp = 11426 ck3 = 5211 ck3 = 5214 } # Inzu -> Oryol, Belev + link = { autogenerated = yes imp = 10256 imp = 11424 ck3 = 5210 } # Zhuchok, Swo -> Krom + link = { autogenerated = yes imp = 11425 ck3 = 5209 ck3 = 5212 } # Ranka -> Karachev, Kozelsk + link = { autogenerated = yes imp = 10249 imp = 10246 imp = 10254 ck3 = 5208 } # Lupuznya, Sudist, Snezhet -> Lokot + link = { autogenerated = yes imp = 10262 imp = 10255 ck3 = 5207 } # Rybnitsa, Medovyi -> Ust-Livny + link = { autogenerated = yes imp = 10250 ck3 = 5206 } # Turochka -> Sevsk + link = { autogenerated = yes imp = 11491 ck3 = 5205 } # Zwaisda -> Mglin + link = { autogenerated = yes imp = 10245 ck3 = 5204 } # Slot -> Trubetsk + link = { autogenerated = yes imp = 10244 imp = 10243 ck3 = 5203 } # Zamhlay, Hrabiv -> Starodub + link = { autogenerated = yes imp = 11490 ck3 = 5202 } # Meno -> Surazichi + link = { autogenerated = yes imp = 10207 imp = 10236 ck3 = 5201 } # Krasne, Snov -> Unenezh + link = { autogenerated = yes imp = 10233 imp = 10232 ck3 = 5200 } # Gomel, Dnipro -> Gomel + link = { autogenerated = yes imp = 4860 ck3 = 520 ck3 = 3901 } # Aurariae Dacicae -> Bihar, Belenyes + link = { autogenerated = yes imp = 2179 imp = 2176 ck3 = 52 } # Velaboria Occidentalis, Ivernia Borealis -> TRALEE + link = { autogenerated = yes imp = 10196 imp = 10258 ck3 = 5199 } # Moshchenoe, Psel -> Oboyan + link = { autogenerated = yes imp = 10197 imp = 10241 ck3 = 5198 } # Velykyi, Kleven -> Sudzha + link = { autogenerated = yes imp = 10251 ck3 = 5197 } # Grunya -> Rylsk + link = { autogenerated = yes imp = 10261 imp = 10252 imp = 10257 ck3 = 5196 } # Belaya, Sejm, Kursk -> Kursk + link = { autogenerated = yes imp = 10200 ck3 = 5195 } # Nedryhailiv -> Konotop + link = { autogenerated = yes imp = 10195 ck3 = 5194 } # Basivka -> Vyr + link = { autogenerated = yes imp = 10240 imp = 10198 ck3 = 5193 } # Melnya, Tereshkivka -> Putyvl + link = { autogenerated = yes imp = 10234 imp = 10242 ck3 = 5192 } # Desna, Ret -> Glukhov + link = { autogenerated = yes imp = 10235 ck3 = 5191 } # Mena -> Borzna + link = { autogenerated = yes imp = 10203 imp = 6111 ck3 = 5190 } # Pyryatyn, Rotila -> Lubny + link = { autogenerated = yes imp = 4291 ck3 = 519 ck3 = 3928 } # Apulum -> Feher, Aranyosbanya + link = { autogenerated = yes imp = 6112 ck3 = 5189 } # Schelera -> Voin + link = { autogenerated = yes imp = 10190 imp = 10191 ck3 = 5188 } # Hlynsk, Boromlya -> Sumy + link = { autogenerated = yes imp = 10194 ck3 = 5187 } # Yahanivka -> Nedryhailiv + link = { autogenerated = yes imp = 10193 ck3 = 5186 } # Sukhonosivka -> Lokhrytsia + link = { autogenerated = yes imp = 10199 ck3 = 5185 } # Poharshchyna -> Romen + link = { autogenerated = yes imp = 6125 ck3 = 5184 } # Machiekkyt -> Poltava + link = { autogenerated = yes imp = 6113 imp = 10192 ck3 = 5183 } # Muika, Myrhorod -> Myrhorod + link = { autogenerated = yes imp = 10189 ck3 = 5182 } # Birky -> Akhtyr + link = { autogenerated = yes imp = 6115 imp = 6114 ck3 = 5181 } # Ahgranika, Selb -> Hradyzk + link = { autogenerated = yes imp = 6109 ck3 = 5180 } # Soe -> Zolotonosha + link = { autogenerated = yes imp = 4843 ck3 = 518 } # Onagrinum -> Bacs + link = { autogenerated = yes imp = 10210 ck3 = 5179 } # Sula -> Priluk + link = { autogenerated = yes imp = 7299 imp = 10204 ck3 = 5178 } # Pirhirci, Zhurivka -> Boryspil + link = { autogenerated = yes imp = 12630 ck3 = 5176 ck3 = 571 } # Pilvi -> Mologa, Uglich + link = { autogenerated = yes imp = 12631 ck3 = 5175 } # Painadak -> Kashin + link = { autogenerated = yes imp = 12567 ck3 = 5173 ck3 = 5174 } # Mustajoki -> Tver, Volok Lamsky + link = { autogenerated = yes imp = 12586 ck3 = 5172 } # Alu -> Ozerski + link = { autogenerated = yes imp = 12588 imp = 12587 ck3 = 5171 } # Katketak, Ukteksa -> Andreapol + link = { autogenerated = yes imp = 12590 ck3 = 5170 } # Jarvi -> Toropets + link = { autogenerated = yes imp = 4834 ck3 = 517 ck3 = 521 } # Lixisis -> Temes, Csanad + link = { autogenerated = yes imp = 12635 ck3 = 5169 } # Joostak -> Zhelezny Ustyug + link = { autogenerated = yes imp = 12634 imp = 12632 imp = 12633 ck3 = 5168 } # Alkadak, Hiici, Ica -> Bezichi + link = { autogenerated = yes imp = 12624 ck3 = 5167 } # Neiti -> Vyshny Volochyok + link = { autogenerated = yes imp = 12625 ck3 = 5166 } # Seeni -> Valday + link = { autogenerated = yes imp = 12623 ck3 = 5165 } # Lampi -> Klichen + link = { autogenerated = yes imp = 12589 ck3 = 5164 } # Kutodak -> Torzhok + link = { autogenerated = yes imp = 12627 imp = 12626 ck3 = 5163 } # Murtadak, Koira -> Seltsa u Nishi + link = { autogenerated = yes imp = 12593 ck3 = 5162 } # Oikeda -> Kholm + link = { autogenerated = yes imp = 4210 ck3 = 516 } # Dierna -> Severin + link = { autogenerated = yes imp = 12636 ck3 = 5158 ck3 = 5825 } # Peeli -> Ves Yogonska, Sheksna + link = { autogenerated = yes imp = 12638 ck3 = 5155 } # Lintu -> Borovichi + link = { autogenerated = yes imp = 12640 ck3 = 5154 ck3 = 5160 } # Nuci -> Kirishi, Podporozhye + link = { autogenerated = yes imp = 12639 ck3 = 5153 ck3 = 5254 } # Matas -> Tikhvin, Svolensk + link = { autogenerated = yes imp = 12619 ck3 = 5152 } # Keuci -> Novorzhev + link = { autogenerated = yes imp = 12591 imp = 12595 ck3 = 5151 } # Tuhma, Kickedak -> Nevel + link = { autogenerated = yes imp = 12597 ck3 = 5150 } # Coppi -> Sebezh + link = { autogenerated = yes imp = 4823 ck3 = 515 ck3 = 5009 } # Tiriscum -> Targoviste, Campulung + link = { autogenerated = yes imp = 12616 ck3 = 5149 } # Minija -> Gdov + link = { autogenerated = yes imp = 12622 ck3 = 5146 ck3 = 5177 } # Leulu -> Pskov, Porkhov + link = { autogenerated = yes imp = 12618 ck3 = 5145 } # Purdak -> Loknya + link = { autogenerated = yes imp = 12621 ck3 = 5144 } # Imedak -> Dedovichi + link = { autogenerated = yes imp = 12620 ck3 = 5143 } # Jalka -> Rusa + link = { autogenerated = yes imp = 12617 imp = 12642 ck3 = 5141 } # Sisalikko, Ceketek -> Luga + link = { autogenerated = yes imp = 12629 ck3 = 5140 } # Hapci -> Soltsy + link = { autogenerated = yes imp = 12643 imp = 12646 ck3 = 5139 } # Elpes, Havte -> Lyuban + link = { autogenerated = yes imp = 12628 ck3 = 5137 } # Ema -> Novgorod + link = { autogenerated = yes imp = 10274 ck3 = 5136 } # Grodno -> Novogrudok + link = { autogenerated = yes imp = 12592 ck3 = 5135 ck3 = 5161 } # Mukka -> Haradok, Luki + link = { autogenerated = yes imp = 10322 ck3 = 5134 } # Lunichno -> Vitebsk + link = { autogenerated = yes imp = 10308 imp = 10307 ck3 = 5133 } # Guta, Dyagili -> Hlybokaye + link = { autogenerated = yes imp = 10309 imp = 10310 ck3 = 5132 } # Plissa, Yelnya -> Vetrino + link = { autogenerated = yes imp = 10303 ck3 = 5131 } # Braslaw -> Myory + link = { autogenerated = yes imp = 4923 imp = 4924 ck3 = 513 } # Acritones, Inatius -> Barlad + link = { autogenerated = yes imp = 12594 imp = 12596 ck3 = 5129 } # Kadus, Inhiminen -> Polotsk + link = { autogenerated = yes imp = 10326 imp = 10328 ck3 = 5128 } # Krasnaya, Gory -> Drutsk + link = { autogenerated = yes imp = 10323 ck3 = 5127 } # Sarro -> Orsha + link = { autogenerated = yes imp = 10325 imp = 10327 ck3 = 5126 } # Lukomlskoye, Shlou -> Barysaw + link = { autogenerated = yes imp = 10315 ck3 = 5125 } # Dzyarzhynsk -> Maladzyechna + link = { autogenerated = yes imp = 10318 ck3 = 5124 } # Sharai -> Zaslawye + link = { autogenerated = yes imp = 10319 imp = 10321 ck3 = 5123 } # Minsk, Smarhon -> Lahoysk + link = { autogenerated = yes imp = 10231 ck3 = 5122 } # Brahin -> Rechytsa + link = { autogenerated = yes imp = 10229 imp = 10228 ck3 = 5121 } # Vasilievicy, Dikoye -> Kalinkavichy + link = { autogenerated = yes imp = 10230 imp = 10313 ck3 = 5120 } # Milohrad, Slutsk -> Zhlobin + link = { autogenerated = yes imp = 4525 imp = 4524 imp = 4918 ck3 = 512 } # Tyras, Aipolion, Lepton -> Cetatea Alba + link = { autogenerated = yes imp = 10329 imp = 10330 imp = 10331 ck3 = 5119 } # Mogilev, Ryasna, Chavusy -> Babruysk + link = { autogenerated = yes imp = 10222 imp = 10311 ck3 = 5118 } # Gorodische, Naliboki -> Baranovichi + link = { autogenerated = yes imp = 10224 imp = 10314 ck3 = 5117 } # Loktyshi, Zavolochitsky -> Kletsk + link = { autogenerated = yes imp = 10227 imp = 10226 ck3 = 5115 } # Chervonoye, Salihorsk -> Zhytkavichy + link = { autogenerated = yes imp = 10312 ck3 = 5114 } # Kapyl -> Slutsk + link = { autogenerated = yes imp = 10225 ck3 = 5113 } # Pahost -> Luninets + link = { autogenerated = yes imp = 10269 imp = 10265 ck3 = 5112 } # Bielsk, Ogorodniki -> Lahishyn + link = { autogenerated = yes imp = 4802 ck3 = 511 } # Agarusia -> Galati + link = { autogenerated = yes imp = 10214 imp = 10208 ck3 = 5107 } # Hrezlya, Hdzyen -> Naroulia + link = { autogenerated = yes imp = 10217 ck3 = 5106 } # Mazyr -> Mazyr + link = { autogenerated = yes imp = 10215 ck3 = 5105 ck3 = 5108 } # Uzh -> Ovruch, Lelchytsy + link = { autogenerated = yes imp = 10213 ck3 = 5104 } # Irsha -> Korosten + link = { autogenerated = yes imp = 10220 ck3 = 5103 ck3 = 5109 } # Styr -> Selo, Dubrovytsia + link = { autogenerated = yes imp = 7642 ck3 = 5102 } # Sylvana -> Sarny + link = { autogenerated = yes imp = 6075 ck3 = 5101 } # Mechkeht -> Haisyn + link = { autogenerated = yes imp = 6086 imp = 6084 ck3 = 5100 } # Volyatss, Schech -> Yampil + link = { autogenerated = yes imp = 4512 imp = 4513 imp = 4515 ck3 = 510 } # Axiopolis, Histria, Capidava -> Constantia + link = { autogenerated = yes imp = 6072 ck3 = 5099 } # Yukta -> Vinnytsia + link = { autogenerated = yes imp = 6069 imp = 6070 ck3 = 5098 } # Gosthinya, Lechta -> Ushytsia + link = { autogenerated = yes imp = 10211 ck3 = 5097 } # Zvyzdal -> Radynka + link = { autogenerated = yes imp = 10209 ck3 = 5095 ck3 = 5096 } # Radcha -> Chornobyl, Ivankiv + link = { autogenerated = yes imp = 10212 ck3 = 5094 } # Sluch -> Horodnytsia + link = { autogenerated = yes imp = 6078 imp = 6076 ck3 = 5092 } # Notghi, Krueng -> Kolodiazhen + link = { autogenerated = yes imp = 6089 ck3 = 5091 } # Vurdant -> Zvyahel + link = { autogenerated = yes imp = 6074 ck3 = 5090 } # Tiersi -> Malaia Skvirka + link = { autogenerated = yes imp = 4249 imp = 4250 imp = 4256 ck3 = 509 } # Krounoi, Tirizis, Tropaeum -> Karvuna + link = { autogenerated = yes imp = 6073 ck3 = 5089 } # Vonnet -> Rastovets + link = { autogenerated = yes imp = 6077 imp = 6071 ck3 = 5088 } # Ghanilkatta, Shethigk -> Mezhybozhe + link = { autogenerated = yes imp = 6079 ck3 = 5087 ck3 = 5093 } # Vryank -> Zhytomyr, Chortolisy + link = { autogenerated = yes imp = 6080 ck3 = 5086 } # Oschka -> Zdvyzhen + link = { autogenerated = yes imp = 6092 imp = 6093 ck3 = 5085 } # Gelts, Mangyl -> Kaniv + link = { autogenerated = yes imp = 6081 ck3 = 5084 } # Kyrtik -> Yuriev + link = { autogenerated = yes imp = 10205 ck3 = 5082 ck3 = 5083 } # Ros -> Vyshgorod, Bilhorod + link = { autogenerated = yes imp = 4946 imp = 4947 ck3 = 5080 } # Solitarium, Tandum -> Sanok + link = { autogenerated = yes imp = 4252 imp = 4246 imp = 4253 ck3 = 508 } # Helis, Silistra, Palmatis -> Dorostotum + link = { autogenerated = yes imp = 6251 ck3 = 5079 } # Gala -> Yaroslav + link = { autogenerated = yes imp = 6252 ck3 = 5078 } # Histrine -> Liubachev + link = { autogenerated = yes imp = 6247 ck3 = 5077 } # Sottika -> Belz + link = { autogenerated = yes imp = 6257 ck3 = 5076 } # Malica -> Suteysk + link = { autogenerated = yes imp = 6256 imp = 6292 ck3 = 5075 } # Venediana, Trakylli -> Kholm + link = { autogenerated = yes imp = 6248 ck3 = 5074 } # Bonava -> Volin + link = { autogenerated = yes imp = 6249 ck3 = 5073 } # Celavira -> Cherven + link = { autogenerated = yes imp = 6236 ck3 = 5072 } # Forom -> Ostroh + link = { autogenerated = yes imp = 6242 imp = 6245 ck3 = 5071 } # Seno, Mitteria -> Dubno + link = { autogenerated = yes imp = 6235 ck3 = 5070 } # Anakkesta -> Zaslavl + link = { autogenerated = yes imp = 4238 imp = 4239 ck3 = 507 } # Novae, Trimammium -> Nikopolis + link = { autogenerated = yes imp = 6067 ck3 = 5069 } # Alkonet -> Chortkiv + link = { autogenerated = yes imp = 6068 ck3 = 5068 } # Khurra -> Horodok + link = { autogenerated = yes imp = 6066 imp = 2543 imp = 5383 ck3 = 5067 } # Utkennita, Uccrynyika, Oggrunet -> Moklekov + link = { autogenerated = yes imp = 6239 ck3 = 5065 ck3 = 5066 } # Sitha -> Busk, Buchach + link = { autogenerated = yes imp = 6250 imp = 6065 ck3 = 5064 } # Arha, Granika -> Zvenyhorod + link = { autogenerated = yes imp = 6238 imp = 6246 ck3 = 5063 } # Arhao, Venulia -> Lviv + link = { autogenerated = yes imp = 4940 ck3 = 5061 } # Limnorum -> Kolomyia + link = { autogenerated = yes imp = 4944 imp = 4943 ck3 = 5060 } # Dolarum, Castrana -> Sambir + link = { autogenerated = yes imp = 4216 imp = 4215 ck3 = 506 } # Bononia Moesiaca, Dortium -> Vidin + link = { autogenerated = yes imp = 6298 imp = 7821 ck3 = 5059 } # Bostor, Ossioia Orientalis -> Blotkowo + link = { autogenerated = yes imp = 7824 imp = 10263 imp = 7826 imp = 7829 ck3 = 5058 } # Revacia, Maciejowice, Merania, Heritia -> Kobryn + link = { autogenerated = yes imp = 7820 ck3 = 5056 ck3 = 5057 } # Ossioia -> Simiatychi, Dorohychyn + link = { autogenerated = yes imp = 10266 imp = 10267 ck3 = 5055 } # Lysobyki, Starorzecze -> Kamyanyets + link = { autogenerated = yes imp = 7822 ck3 = 5054 } # Sudionoia Australis -> Bielsk + link = { autogenerated = yes imp = 6241 ck3 = 5052 } # Masticat -> Rivne + link = { autogenerated = yes imp = 6237 imp = 6240 ck3 = 5051 } # Arforom, Assula -> Peresopnytsia + link = { autogenerated = yes imp = 6297 ck3 = 5050 } # Thure -> Rozhyshche + link = { autogenerated = yes imp = 4198 imp = 4195 ck3 = 505 } # Ad Sextum Miliarem, Singidunum -> Belgrade + link = { autogenerated = yes imp = 7827 ck3 = 5049 ck3 = 5111 } # Orentia -> Kovel, Liubeshiv + link = { autogenerated = yes imp = 6296 ck3 = 5048 } # Kire -> Luboml + link = { autogenerated = yes imp = 6244 imp = 6243 ck3 = 5047 } # Kanale, Vorta -> Lutsk + link = { autogenerated = yes imp = 7823 ck3 = 5046 } # Sudionoia Orientalis -> Bielastock + link = { autogenerated = yes imp = 10268 imp = 10272 ck3 = 5045 } # Seroczyn, Bialystok -> Slonim + link = { autogenerated = yes imp = 10270 imp = 10271 imp = 10273 ck3 = 5044 } # Biebrzankski, Kulesze, Monki -> Volkovysk + link = { autogenerated = yes imp = 10275 ck3 = 5043 } # Sniardwy -> Sokolka + link = { autogenerated = yes imp = 4939 ck3 = 5042 } # Octavum -> Cernauti + link = { autogenerated = yes imp = 4937 ck3 = 5040 } # Confluentia Subcarpathica -> Hotin + link = { autogenerated = yes imp = 4067 imp = 4068 imp = 4069 ck3 = 504 } # Bariduum, Bistua Nova, Ad Matricem -> Rama + link = { autogenerated = yes imp = 4933 ck3 = 5039 } # Cruciatum -> Harlau + link = { autogenerated = yes imp = 4914 ck3 = 5038 } # Carsidava -> Dorohoi + link = { autogenerated = yes imp = 4938 ck3 = 5037 ck3 = 5041 ck3 = 5062 } # Tannis -> Siret, Tetina, Spas + link = { autogenerated = yes imp = 4935 ck3 = 5034 ck3 = 545 ck3 = 5036 } # Montanium -> Baia, Suceava, Campulung Moldovenesc + link = { autogenerated = yes imp = 4931 ck3 = 5033 } # Loricata -> Roman + link = { autogenerated = yes imp = 4930 ck3 = 5031 ck3 = 5032 } # Oridava -> Piatra Neamnt, Targu Neamnt + link = { autogenerated = yes imp = 4912 imp = 4911 ck3 = 5030 } # Zargidava, Tamasidava -> Bacau + link = { autogenerated = yes imp = 4913 ck3 = 5028 ck3 = 5029 } # Piroboridava -> Focsani, Stoenesti + link = { autogenerated = yes imp = 4801 ck3 = 5027 } # Polondava -> Tecuci + link = { autogenerated = yes imp = 4925 ck3 = 5026 } # Volumis -> Husi + link = { autogenerated = yes imp = 4932 ck3 = 5025 ck3 = 541 } # Millianum -> Vaslui, Iasi + link = { autogenerated = yes imp = 4934 ck3 = 5024 } # Muradava -> Falesti + link = { autogenerated = yes imp = 4936 ck3 = 5021 } # Ad Verticem -> Soroca + link = { autogenerated = yes imp = 4929 imp = 4916 ck3 = 5020 } # Siculo, Mirum -> Tuzara + link = { autogenerated = yes imp = 4101 imp = 4119 imp = 5078 imp = 5091 ck3 = 502 } # Arsia, Celegerorum, IMPASSIBLE TERRAIN 078, IMPASSIBLE TERRAIN 091 -> Rashka + link = { autogenerated = yes imp = 4915 ck3 = 5019 ck3 = 5022 } # Clepidava -> Orhei, Balti + link = { autogenerated = yes imp = 4921 ck3 = 5017 } # Bridava -> Lapusna + link = { autogenerated = yes imp = 4800 imp = 4521 ck3 = 5016 } # Dinogetia, Nobiodounos -> Cahul + link = { autogenerated = yes imp = 4922 ck3 = 5015 } # Aikronon -> Tigheci + link = { autogenerated = yes imp = 4920 ck3 = 5014 } # Agrana -> Artsyz + link = { autogenerated = yes imp = 4919 ck3 = 5013 } # Olitis -> Oblucita + link = { autogenerated = yes imp = 4917 ck3 = 5011 ck3 = 5018 } # Alitora -> Tighina, Chisinau + link = { autogenerated = yes imp = 4522 ck3 = 5010 } # Ta Antiphilou -> Sulina + link = { autogenerated = yes imp = 4115 imp = 4112 ck3 = 501 } # Remesiana, Navissos -> Naissus + link = { autogenerated = yes imp = 4271 ck3 = 5007 } # Confluentiana -> Filiasi + link = { autogenerated = yes imp = 4269 imp = 4272 ck3 = 5006 } # Rusidava, Pons Aluti -> Govora + link = { autogenerated = yes imp = 4273 ck3 = 5005 } # Buridava -> Polovragi + link = { autogenerated = yes imp = 4803 imp = 4804 ck3 = 5004 } # Rhamidava, Britolagia -> Ramnicu Sarat + link = { autogenerated = yes imp = 4806 ck3 = 5003 } # Cotesiana -> Braila + link = { autogenerated = yes imp = 4808 ck3 = 5001 } # Isteriana -> Slobozia + link = { autogenerated = yes imp = 4805 imp = 4812 ck3 = 5000 } # Cotesia, Sensia -> Buzau + link = { autogenerated = yes imp = 4097 ck3 = 500 } # Helice -> Serdica + link = { autogenerated = yes imp = 4807 ck3 = 4999 } # Isteria -> Fetesti + link = { autogenerated = yes imp = 4809 ck3 = 4998 } # Piephigia -> Radovanu + link = { autogenerated = yes imp = 4811 ck3 = 4997 } # Sornus -> Calarasi + link = { autogenerated = yes imp = 4815 ck3 = 4996 } # Pirum -> Targsor + link = { autogenerated = yes imp = 4813 ck3 = 4995 } # Sensiana -> Bucuresti + link = { autogenerated = yes imp = 4819 imp = 4816 ck3 = 4994 } # Ordessia, Napuca -> Costesti + link = { autogenerated = yes imp = 4822 ck3 = 4993 ck3 = 5008 } # Ciagisiana -> Pitesti, Arges + link = { autogenerated = yes imp = 4818 ck3 = 4992 ck3 = 514 } # Pinion -> Glavacioc, Turnu + link = { autogenerated = yes imp = 4810 ck3 = 4991 } # Piephigiana -> Comana + link = { autogenerated = yes imp = 4817 ck3 = 4990 } # Tiasum -> Giurgiu + link = { autogenerated = yes imp = 4245 imp = 4313 ck3 = 499 } # Haemiana, Selymnos -> Tyrnovo + link = { autogenerated = yes imp = 4814 ck3 = 4989 ck3 = 5002 } # Netindava -> Tabla Butii, Ploiesti + link = { autogenerated = yes imp = 4820 ck3 = 4988 } # Ciagisia -> Rusii de Vede + link = { autogenerated = yes imp = 4270 ck3 = 4987 } # Pelendava -> Dragasani + link = { autogenerated = yes imp = 4266 imp = 4267 ck3 = 4986 } # Romula Saldensica, Castris Novis -> Corabia + link = { autogenerated = yes imp = 4268 ck3 = 4985 } # Acidava -> Craiova + link = { autogenerated = yes imp = 4279 ck3 = 4983 } # Dumbrava -> Strehaia + link = { autogenerated = yes imp = 4277 imp = 4276 ck3 = 4982 } # Salcia, Castra Bistrita -> Cujmir + link = { autogenerated = yes imp = 4278 ck3 = 4981 ck3 = 4984 } # Amutria -> Calafat, Segarcea + link = { autogenerated = yes imp = 4211 ck3 = 4979 } # Drobeta -> Baia de Arama + link = { autogenerated = yes imp = 4275 imp = 4274 ck3 = 4978 } # Ad Mutriam, Confluentia Malvensis -> Targu Jiu + link = { autogenerated = yes imp = 4824 ck3 = 4977 ck3 = 4980 } # Confluentia Roxolania -> Dumbraveni, Zoresti + link = { autogenerated = yes imp = 4263 ck3 = 4975 } # Ad Scorfulas -> Orsova + link = { autogenerated = yes imp = 4896 ck3 = 4972 ck3 = 4973 ck3 = 4974 } # Valitum -> Dabrowa Gorn, Wislica, Jedrzejow + link = { autogenerated = yes imp = 4890 ck3 = 4970 ck3 = 4971 } # Agrum -> Bochnia, Wieliczka + link = { autogenerated = yes imp = 4314 ck3 = 497 } # Bizye -> Thrake + link = { autogenerated = yes imp = 4891 ck3 = 4968 ck3 = 532 } # Ectonum -> Pilzno, Sacz + link = { autogenerated = yes imp = 6254 ck3 = 4966 ck3 = 4967 } # Donaria -> Mielec, Baranow + link = { autogenerated = yes imp = 4887 ck3 = 4965 } # Cracovia -> Tarnow + link = { autogenerated = yes imp = 4901 ck3 = 4964 } # Salata -> Checiny + link = { autogenerated = yes imp = 4895 ck3 = 4963 } # Mitabis -> Olesnica + link = { autogenerated = yes imp = 6266 ck3 = 4962 } # Gorion -> Kielce + link = { autogenerated = yes imp = 6261 imp = 6263 ck3 = 4960 } # Sophine, Shurita -> Urzedow + link = { autogenerated = yes imp = 6260 ck3 = 4959 ck3 = 4961 } # Folla -> Goraj, Opatow + link = { autogenerated = yes imp = 6262 imp = 6291 ck3 = 4958 } # Varcret, Vorytta -> Parczew + link = { autogenerated = yes imp = 6258 ck3 = 4957 } # Cariala -> Lublin + link = { autogenerated = yes imp = 6270 ck3 = 4956 } # Mantora -> Szydlowiec + link = { autogenerated = yes imp = 6265 ck3 = 4955 } # Gorideva -> Ilza + link = { autogenerated = yes imp = 6269 ck3 = 4954 } # Gurala Venedia -> Opoczno + link = { autogenerated = yes imp = 6268 ck3 = 4953 } # Venideva -> Radom + link = { autogenerated = yes imp = 6294 ck3 = 4952 } # Felita -> Lukow + link = { autogenerated = yes imp = 6264 imp = 6267 ck3 = 4951 } # Vinata, Maranot -> Stezyca + link = { autogenerated = yes imp = 350 imp = 349 ck3 = 495 } # Lysimacheia, Sestos -> Kaliopolis + link = { autogenerated = yes imp = 7804 ck3 = 4947 ck3 = 4949 } # Ossioia Occidentalis -> Nur, Rozan + link = { autogenerated = yes imp = 6289 ck3 = 4946 } # Toll -> Zakroczym + link = { autogenerated = yes imp = 7836 ck3 = 4945 } # Chrononia Australis -> Kolno + link = { autogenerated = yes imp = 7805 ck3 = 4943 ck3 = 4944 } # Sudinoia -> Lomza, Wizna + link = { autogenerated = yes imp = 6271 ck3 = 4941 } # Filin -> Rawa + link = { autogenerated = yes imp = 6276 ck3 = 4940 } # Venedicania -> Gostynin + link = { autogenerated = yes imp = 489 imp = 495 ck3 = 494 } # Uskodama, Tarpodizo -> Adrianopolis + link = { autogenerated = yes imp = 6290 ck3 = 4939 } # Egladia -> Garwolin + link = { autogenerated = yes imp = 6275 ck3 = 4938 } # Korotan -> Brodno + link = { autogenerated = yes imp = 6293 ck3 = 4937 ck3 = 4948 } # Makkate -> Liw, Wyszkow + link = { autogenerated = yes imp = 6274 ck3 = 4936 ck3 = 4942 } # Kunegria -> Warszawa, Sochaczew + link = { autogenerated = yes imp = 7298 ck3 = 4935 } # Venedia Australis -> Ciechanow + link = { autogenerated = yes imp = 6288 imp = 6284 ck3 = 4934 } # Gurina, Anavenedica -> Zawkrze + link = { autogenerated = yes imp = 6277 ck3 = 4933 } # Duretica -> Wyszogrod + link = { autogenerated = yes imp = 4772 ck3 = 4932 ck3 = 528 } # Calisia -> Grabow, Sieradz + link = { autogenerated = yes imp = 4900 ck3 = 4931 } # Ambium -> Wielun + link = { autogenerated = yes imp = 487 imp = 485 ck3 = 493 } # Bessapara, Philippopolis -> Philippopolis + link = { autogenerated = yes imp = 4902 ck3 = 4928 ck3 = 4929 } # Amellua -> Przedborz, Radomsko + link = { autogenerated = yes imp = 6272 ck3 = 4925 ck3 = 4950 } # Kavera Venedia -> Lodz, Lowicz + link = { autogenerated = yes imp = 4903 ck3 = 4924 ck3 = 4927 ck3 = 4930 } # Exitanes -> Leczyca, Piotrkow, Uniejow + link = { autogenerated = yes imp = 6279 imp = 6280 ck3 = 4922 } # Vadina, Brigare -> Dobrzyn + link = { autogenerated = yes imp = 360 imp = 362 ck3 = 492 } # Porsula, Abdera -> Strymon + link = { autogenerated = yes imp = 4904 ck3 = 4919 ck3 = 4926 } # Laudicum -> Wloclawek, Klodawa + link = { autogenerated = yes imp = 4776 ck3 = 4918 ck3 = 4920 } # Naharvalorum -> Kruszwica, Inowroclaw + link = { autogenerated = yes imp = 4763 ck3 = 4917 ck3 = 4921 } # Helveconia -> Znin, Bydgoszcz + link = { autogenerated = yes imp = 4777 ck3 = 4911 } # Vartia -> Turek + link = { autogenerated = yes imp = 4774 ck3 = 4909 ck3 = 4910 } # Elysiana -> Kalisz, Kozmin + link = { autogenerated = yes imp = 4775 ck3 = 4907 ck3 = 4908 } # Setideva -> Pyzdry, Konin + link = { autogenerated = yes imp = 4761 ck3 = 4905 ck3 = 4906 } # Ascaucalis -> Gniezno, Sroda + link = { autogenerated = yes imp = 4767 ck3 = 4903 } # Buguntiana -> Wronki + link = { autogenerated = yes imp = 4768 ck3 = 4902 } # Erbia -> Czarnkow + link = { autogenerated = yes imp = 4769 ck3 = 4900 ck3 = 4913 } # Manimia -> Poznan, Koscian + link = { autogenerated = yes imp = 373 ck3 = 490 } # Thessalonica -> Thessalonike + link = { autogenerated = yes imp = 2178 imp = 2186 ck3 = 49 } # Usdia Orientalis, Brigantia Australis -> WATERFORD + link = { autogenerated = yes imp = 811 imp = 1868 ck3 = 4899 } # Doliche, Tyba -> DULUK-TELUCH + link = { autogenerated = yes imp = 1879 ck3 = 4897 } # Aigaiai -> AYAS + link = { autogenerated = yes imp = 1874 imp = 1870 imp = 796 imp = 5180 ck3 = 4896 } # Oiniandos, Amanian Gates, Issus, IMPASSIBLE TERRAIN 180 -> TALL HAMID + link = { autogenerated = yes imp = 1867 imp = 1873 imp = 7986 imp = 7987 ck3 = 4895 } # Markash, Erana, Commagenian Gates, Markash Mountains -> AL-HARUNIYA + link = { autogenerated = yes imp = 838 imp = 836 ck3 = 4894 } # Charmodara, Samosata -> SAMOSATA + link = { autogenerated = yes imp = 1862 ck3 = 4893 } # Adatha -> MARASH + link = { autogenerated = yes imp = 1860 ck3 = 4892 } # Perrhe -> BAHASNA + link = { autogenerated = yes imp = 1864 imp = 1863 imp = 837 ck3 = 4891 } # Singa, Nastae, Tharsa -> KAISUM + link = { autogenerated = yes imp = 1869 ck3 = 4890 } # Rhabaine -> QALAT_AR-RUM + link = { autogenerated = yes imp = 389 ck3 = 489 } # Larissa -> Thessalia + link = { autogenerated = yes imp = 827 ck3 = 4889 ck3 = 5944 } # Circesium -> AL-RAHBA, DAIR_AR-RUMAN + link = { autogenerated = yes imp = 829 ck3 = 4888 } # Doura -> AL-DALIYA + link = { autogenerated = yes imp = 826 ck3 = 4882 ck3 = 4883 } # Appadana -> QARQISIYA, MAKISIN + link = { autogenerated = yes imp = 391 imp = 392 ck3 = 488 } # Pagasai, Kasthaneia -> Demetrias + link = { autogenerated = yes imp = 804 ck3 = 4876 } # Soura -> RAQQA + link = { autogenerated = yes imp = 847 ck3 = 4875 ck3 = 5939 } # Dausara -> DAUSAR, SIFFIN + link = { autogenerated = yes imp = 849 ck3 = 4874 } # Ballatha -> SARUJ + link = { autogenerated = yes imp = 848 imp = 809 ck3 = 4873 } # Alagma, Europos -> TALL_AMMAR + link = { autogenerated = yes imp = 1847 ck3 = 4872 } # Bithias -> AL-BIRA + link = { autogenerated = yes imp = 844 ck3 = 4871 } # Antiochia Arabis -> TALL_MAUZAN + link = { autogenerated = yes imp = 819 ck3 = 4870 } # Carrhae -> HARRAN + link = { autogenerated = yes imp = 284 imp = 283 ck3 = 487 } # Eresos, Mytilene -> Lesbos + link = { autogenerated = yes imp = 818 imp = 817 ck3 = 4869 } # Adma, Batnai -> EDESSA + link = { autogenerated = yes imp = 879 imp = 840 ck3 = 4868 } # Barbare, Arsameia -> AS-SUWAIDA + link = { autogenerated = yes imp = 877 ck3 = 4866 } # Barsalium -> ZERMION + link = { autogenerated = yes imp = 878 ck3 = 4865 ck3 = 4867 } # Arsinia -> ERKNE, AMID + link = { autogenerated = yes imp = 859 ck3 = 4863 } # Dadima -> SHIMSHAT + link = { autogenerated = yes imp = 860 ck3 = 4861 ck3 = 4862 } # Anzitene -> HANI, HISN DI-L-QARNAIN + link = { autogenerated = yes imp = 857 imp = 841 ck3 = 4860 } # Sitai, Karkathiokerta -> NASRIYE + link = { autogenerated = yes imp = 286 imp = 288 imp = 289 ck3 = 486 } # Chios, Tecybeleneos, Erythrai -> Chios + link = { autogenerated = yes imp = 845 ck3 = 4859 } # Martyropolis -> MAYYAFARIQIN + link = { autogenerated = yes imp = 843 ck3 = 4857 } # Chlomaron -> TALL_FAFAN + link = { autogenerated = yes imp = 821 ck3 = 4856 } # Resaina -> KAFARTUTHA + link = { autogenerated = yes imp = 856 imp = 855 imp = 870 imp = 871 ck3 = 4855 } # Sardeoua, Siphrios, Izala Mons, Marde -> TALL_BASMA + link = { autogenerated = yes imp = 872 ck3 = 4854 } # Ammodios -> MARDIN + link = { autogenerated = yes imp = 874 ck3 = 4851 ck3 = 4852 } # Thannuris -> TUNAMIR, MIJDAL + link = { autogenerated = yes imp = 823 imp = 824 ck3 = 4850 } # Shadikanni, Qatnu -> AL-JIBAL + link = { autogenerated = yes imp = 410 imp = 407 imp = 409 imp = 7901 imp = 7904 imp = 7900 ck3 = 485 } # Oichalia Euboias, Chalcis, Karystos, Eretria, Styra, Dirphys Mons -> Euboia + link = { autogenerated = yes imp = 869 ck3 = 4847 } # Riskephas -> HISN_KAIFA + link = { autogenerated = yes imp = 822 ck3 = 4846 } # Nabada -> DARA + link = { autogenerated = yes imp = 830 imp = 832 imp = 876 ck3 = 4845 } # Nisibis, Ta'idu, Qarassas -> NASIBIN + link = { autogenerated = yes imp = 833 ck3 = 4844 ck3 = 4816 } # Pinaka -> GAZIRAT_IBN_UMAR, SA'IRD + link = { autogenerated = yes imp = 831 imp = 875 ck3 = 4843 } # Singara, Zagurae -> BASHAZZA + link = { autogenerated = yes imp = 873 ck3 = 4842 } # Hassu -> BARQAID + link = { autogenerated = yes imp = 868 ck3 = 4841 } # Dhahir -> BALAD-MOSUL + link = { autogenerated = yes imp = 861 imp = 862 ck3 = 4840 } # Apqu, Nineveh -> MOSUL + link = { autogenerated = yes imp = 263 imp = 1915 imp = 1964 imp = 375 imp = 387 imp = 7905 ck3 = 484 } # Naxos, Paros, Milos, Amorgos, Ios, Siphnos -> Naxos + link = { autogenerated = yes imp = 5440 imp = 773 ck3 = 4839 } # Syria Desert, Vicat -> TALL_AFAR + link = { autogenerated = yes imp = 882 ck3 = 4838 } # Kalhu -> JUHAINA + link = { autogenerated = yes imp = 835 ck3 = 4837 } # Hatra -> AL-HADR + link = { autogenerated = yes imp = 883 ck3 = 4836 } # Ashur -> AIN AL-QAYYARA + link = { autogenerated = yes imp = 956 imp = 891 ck3 = 4835 } # Ajri, Birtha -> TAKRIT + link = { autogenerated = yes imp = 894 ck3 = 4832 ck3 = 4834 } # Maskin -> AIWANA, HISN AL-MASHUQ + link = { autogenerated = yes imp = 904 ck3 = 4831 } # Idu -> AR-RABB + link = { autogenerated = yes imp = 903 imp = 910 imp = 915 imp = 918 ck3 = 4830 } # Kerbala, Sippar, Cutha, Babylon -> KARBALA + link = { autogenerated = yes imp = 266 imp = 1884 ck3 = 483 } # Rhodos, Syme -> Rhodos + link = { autogenerated = yes imp = 902 ck3 = 4829 } # Misiche -> AL-ANBAR + link = { autogenerated = yes imp = 900 imp = 899 ck3 = 4828 } # Dur-Kurigalzu, Bagdata -> BAGHDAD + link = { autogenerated = yes imp = 901 imp = 911 imp = 913 ck3 = 4827 } # Aswad, Seleucia Magna, Vologesias -> SARSAR + link = { autogenerated = yes imp = 931 imp = 921 ck3 = 4826 } # Isin, Marad -> AL-HILA + link = { autogenerated = yes imp = 917 imp = 916 ck3 = 4825 } # Kish, Girumu -> AL-FARASA + link = { autogenerated = yes imp = 960 imp = 927 imp = 961 ck3 = 4824 } # Zibliyat, Skaphe, Adab -> HUMANIYA + link = { autogenerated = yes imp = 962 imp = 929 ck3 = 4823 } # Khay, Nippur -> AN-NU'MANIYA + link = { autogenerated = yes imp = 934 ck3 = 4821 } # Kashkar -> WASIT + link = { autogenerated = yes imp = 980 ck3 = 4820 } # Dorista -> AT-TIB + link = { autogenerated = yes imp = 7799 imp = 413 imp = 416 imp = 442 imp = 7898 imp = 5062 ck3 = 482 } # Thorikos, Oropos, Athens, Aigina, Rhamnous, Parnes Mons -> Atheniai + link = { autogenerated = yes imp = 947 ck3 = 4819 } # Choaspes -> KARKHA + link = { autogenerated = yes imp = 949 imp = 946 imp = 948 ck3 = 4818 } # Bendosaboron, Shushan, Dizpul -> AS-SUS + link = { autogenerated = yes imp = 834 ck3 = 4813 ck3 = 4814 } # Satalka -> BAQIRDA, TAMANIN + link = { autogenerated = yes imp = 986 imp = 867 ck3 = 4812 } # Grai Darki, Shapur -> FISHABUR + link = { autogenerated = yes imp = 866 imp = 863 imp = 864 ck3 = 4811 } # Bavian, Balad, Dur-Sharrukin -> NINAWA + link = { autogenerated = yes imp = 865 ck3 = 4810 } # Gaugamela -> BARTULLA + link = { autogenerated = yes imp = 7894 imp = 418 imp = 448 imp = 7893 imp = 8003 imp = 5061 imp = 7895 ck3 = 481 } # Kleonai, Korinthos, Stymphalia, Pellene, Sikyon, IMPASSIBLE TERRAIN 061, Arachnaion Mons -> Korinthos + link = { autogenerated = yes imp = 957 ck3 = 4809 } # Turshan -> AS-SINN + link = { autogenerated = yes imp = 881 ck3 = 4808 } # Kilizu -> AL-HADITHA + link = { autogenerated = yes imp = 886 ck3 = 4807 } # Nuzi -> BARIMMA + link = { autogenerated = yes imp = 892 ck3 = 4805 } # Dura -> SAMARRA + link = { autogenerated = yes imp = 893 ck3 = 4804 } # Samarra -> BALAD + link = { autogenerated = yes imp = 887 imp = 884 ck3 = 4803 } # Arzuhin, Arrapha -> KIRKUK + link = { autogenerated = yes imp = 885 ck3 = 4802 } # Lashom -> DAQUQA + link = { autogenerated = yes imp = 888 imp = 983 ck3 = 4801 } # Lahir, Paikuli -> RAUSHANQUBAD + link = { autogenerated = yes imp = 981 imp = 5234 ck3 = 4800 } # Kelonai, IMPASSIBLE TERRAIN 234 -> HULWAN + link = { autogenerated = yes imp = 361 imp = 358 imp = 8018 ck3 = 480 } # Gortyna, Knossos, Arkades -> Chandax + link = { autogenerated = yes imp = 890 imp = 977 ck3 = 4799 } # Gubba, Shahraban -> KHANIJAR + link = { autogenerated = yes imp = 976 ck3 = 4797 ck3 = 4798 } # Lawami -> ISKAF, JABBUL + link = { autogenerated = yes imp = 925 imp = 912 imp = 914 imp = 924 imp = 926 ck3 = 4796 } # Shemali, Ctesiphon, Opis, Aberta, Sumaka -> AN-NAHRAWAN + link = { autogenerated = yes imp = 898 imp = 895 ck3 = 4795 } # Nahrawan, Awana -> UKBARA + link = { autogenerated = yes imp = 896 ck3 = 4794 } # Artemita -> BA'QUBA + link = { autogenerated = yes imp = 897 ck3 = 4793 } # Daskara -> DASKARA + link = { autogenerated = yes imp = 889 ck3 = 4792 } # Me-Turnat -> JALULA-HULWAN + link = { autogenerated = yes imp = 979 ck3 = 4791 } # Mandali -> BANDANIJAN + link = { autogenerated = yes imp = 928 ck3 = 4790 } # Deru -> TARSUKH + link = { autogenerated = yes imp = 367 imp = 368 imp = 8017 ck3 = 479 } # Kydonia, Polyrrenia, Leuka Mons -> Kaneia + link = { autogenerated = yes imp = 974 ck3 = 4788 } # Cossaea -> BADARAYA + link = { autogenerated = yes imp = 1603 ck3 = 4783 } # Zagrou Pylai -> TAZAR + link = { autogenerated = yes imp = 1602 imp = 1599 ck3 = 4781 } # Korine, Denabaran -> KERMANSHAH + link = { autogenerated = yes imp = 959 ck3 = 4780 } # Syarazur -> SHAHRAZUR + link = { autogenerated = yes imp = 429 imp = 471 ck3 = 478 } # Epidauros Limera, Kythera -> Monemvasia + link = { autogenerated = yes imp = 958 ck3 = 4779 } # Kurh u Kich -> TIRANSHAH + link = { autogenerated = yes imp = 984 ck3 = 4777 } # Hazza -> IRBIL + link = { autogenerated = yes imp = 880 ck3 = 4774 ck3 = 4775 } # Arbela -> TALL HAFTUN, SHAQLABADH + link = { autogenerated = yes imp = 1503 imp = 1504 imp = 1507 ck3 = 4772 } # Salamas, Gazrik, Surenapati -> SALMAS + link = { autogenerated = yes imp = 1506 imp = 1505 imp = 1508 ck3 = 4771 } # Ormi, Karenis, Balajuk -> URMIYA + link = { autogenerated = yes imp = 1519 imp = 1510 imp = 1511 imp = 1518 imp = 1509 ck3 = 4770 } # Mari, Shno, Vovea, Araskh, Siraganon -> USHNUYA + link = { autogenerated = yes imp = 432 ck3 = 477 } # Mothone -> Methone + link = { autogenerated = yes imp = 1512 imp = 1513 ck3 = 4769 } # Sagapeni, Barozha -> BASAWA + link = { autogenerated = yes imp = 1553 imp = 1514 imp = 1516 imp = 1517 ck3 = 4767 } # Dashband, Fakhrikah, Gomarga, Matiania -> BAILAQAN + link = { autogenerated = yes imp = 1601 ck3 = 4765 } # Nikaia Nialia -> SANDA + link = { autogenerated = yes imp = 6964 imp = 4965 imp = 6958 ck3 = 4764 } # Golan, Makash, Bijar -> SAD KHANIYA + link = { autogenerated = yes imp = 1558 imp = 1554 ck3 = 4763 } # Karaftu, Ziwiye -> ANDARAB + link = { autogenerated = yes imp = 434 imp = 7890 ck3 = 476 } # Patrai, Dyme -> Achaia + link = { autogenerated = yes imp = 3271 imp = 3266 imp = 3270 imp = 8144 ck3 = 4753 } # Thignica, Ureu, Bisica Lucana, Africa Impassable -> SILYANA + link = { autogenerated = yes imp = 3227 imp = 3161 imp = 3226 ck3 = 4752 } # Rusicade, Chullu, Culucitanis -> IZAN + link = { autogenerated = yes imp = 457 imp = 7803 imp = 5065 ck3 = 475 } # Naupaktos, Oiniadai, IMPASSIBLE TERRAIN 065 -> Hellas + link = { autogenerated = yes imp = 10111 ck3 = 4748 } # Oufriden -> NADOR + link = { autogenerated = yes imp = 6473 imp = 6472 ck3 = 4746 } # Ouardigha, Amer -> EL-BOROUJ + link = { autogenerated = yes imp = 461 ck3 = 474 } # Kefalonia -> Cephalonia + link = { autogenerated = yes imp = 10122 imp = 10123 imp = 10127 imp = 10138 imp = 10180 ck3 = 4739 } # Errachidia, Jorf, Tisserdmine, Boudenib, Atlas Pass -> ZIZ + link = { autogenerated = yes imp = 10094 ck3 = 4732 } # Tazenakht -> SIRWAN + link = { autogenerated = yes imp = 6480 imp = 10079 imp = 6474 imp = 6479 ck3 = 4731 } # Amrane, Guerir, Meskine, Bouzerrara -> BOULAWAN + link = { autogenerated = yes imp = 464 ck3 = 473 } # Kassope -> Arta + link = { autogenerated = yes imp = 10069 imp = 10070 ck3 = 4727 } # Iligh, Aglou -> IFNI + link = { autogenerated = yes imp = 10075 imp = 10074 imp = 10098 ck3 = 4724 } # Berhil, Taroudant, Aoulouze -> TARUDANT + link = { autogenerated = yes imp = 10067 imp = 10073 ck3 = 4723 } # Gadir, Teima -> AGADIR + link = { autogenerated = yes imp = 10083 imp = 10076 imp = 10081 imp = 10084 ck3 = 4721 } # Moktar, Arambys, Iyiche, Mejjat -> AGHUZ + link = { autogenerated = yes imp = 10078 imp = 10077 imp = 6490 ck3 = 4720 } # Yousouffia, Aguz, Safim -> ASFI + link = { autogenerated = yes imp = 421 ck3 = 472 } # Phoinike -> Epeiros + link = { autogenerated = yes imp = 10082 ck3 = 4719 } # Marrakech -> RIBAT SHAKIR + link = { autogenerated = yes imp = 10080 ck3 = 4718 ck3 = 4714 } # Laattaouia -> MARRAKESH, AGHMAT + link = { autogenerated = yes imp = 10085 ck3 = 4717 ck3 = 4715 ck3 = 4716 } # Aghmat -> NAFFIS, TASGIMUT, TINMALLAL + link = { autogenerated = yes imp = 6471 ck3 = 4713 } # Mousa -> AIT IYAT + link = { autogenerated = yes imp = 412 ck3 = 471 ck3 = 3724 } # Lychidnos -> Ochrid, Debar + link = { autogenerated = yes imp = 6302 ck3 = 4709 } # Zemour -> TADLA + link = { autogenerated = yes imp = 10101 ck3 = 4708 } # Kerrouchen -> WAWMANA + link = { autogenerated = yes imp = 7221 imp = 6301 imp = 6478 imp = 6492 ck3 = 4705 } # Mizab, Rutubis, Amar, Zaakna -> MAZAGHAN + link = { autogenerated = yes imp = 6477 imp = 6491 ck3 = 4704 } # Frej, Azama -> AZZAMUR + link = { autogenerated = yes imp = 6475 ck3 = 4702 ck3 = 4703 } # Anfa -> FADALA, ANFA + link = { autogenerated = yes imp = 6476 ck3 = 4701 } # Khedis -> RIBAT-AL-FATH + link = { autogenerated = yes imp = 3071 imp = 3063 imp = 3068 ck3 = 4700 } # Thamusida Australis, Thamusida, Sala -> SALA + link = { autogenerated = yes imp = 415 ck3 = 470 } # Epidamnos -> Dyrrachion + link = { autogenerated = yes imp = 2181 ck3 = 47 ck3 = 50 } # Velaboria Orientalis -> NENAGH, EMLY + link = { autogenerated = yes imp = 10171 imp = 3067 ck3 = 4699 } # Sloughia, Volubilis -> MEKNES + link = { autogenerated = yes imp = 3072 ck3 = 4695 } # Aquae Dacicae -> AL-ALIYA + link = { autogenerated = yes imp = 3079 ck3 = 4694 } # Mons Semita -> FES + link = { autogenerated = yes imp = 6485 ck3 = 4693 } # Tiflet -> BAHT + link = { autogenerated = yes imp = 3073 ck3 = 4692 } # Gilda -> WARZIGH + link = { autogenerated = yes imp = 3069 ck3 = 4691 } # Tocolosida -> WALILA + link = { autogenerated = yes imp = 3074 imp = 3070 ck3 = 4690 } # Aelia, Banasa -> WATIT + link = { autogenerated = yes imp = 3075 ck3 = 4689 ck3 = 4688 } # Viposcianae -> IZERHAN, WARGHA + link = { autogenerated = yes imp = 3066 ck3 = 4687 } # Occasum -> AL-BASRA + link = { autogenerated = yes imp = 3077 imp = 3076 ck3 = 4686 } # Oppidum Novum, Tremulae -> TAHLIT + link = { autogenerated = yes imp = 3062 imp = 3065 ck3 = 4685 } # Lixus, Frigidae -> KASR AL-KABIR + link = { autogenerated = yes imp = 3064 imp = 3078 ck3 = 4684 } # Arzeila, Ad Mercuri -> ASILA + link = { autogenerated = yes imp = 3061 ck3 = 4682 ck3 = 4683 } # Tingis -> SABTA, TANGER + link = { autogenerated = yes imp = 3085 ck3 = 4681 } # Tamuda -> TITTAWAN + link = { autogenerated = yes imp = 10129 imp = 10128 imp = 10137 ck3 = 4680 } # Jebha, Kach Kouch, Senada -> GHUMIRA + link = { autogenerated = yes imp = 4085 ck3 = 468 } # Epidauros Illyrikos -> Ragusa + link = { autogenerated = yes imp = 10131 imp = 10130 imp = 10136 ck3 = 4679 } # Sidi Driss, Hoceima, Ziam -> NAKUR + link = { autogenerated = yes imp = 3080 imp = 10117 imp = 10132 imp = 10133 imp = 10134 ck3 = 4678 } # Rusaddir, Zaio, Tiztoutine, Midar, Ajdir -> MELILLA + link = { autogenerated = yes imp = 10115 imp = 10174 ck3 = 4675 } # Lamrija, Kandar -> SAA + link = { autogenerated = yes imp = 3082 ck3 = 4674 } # Mons Ambulatis -> WAJDA + link = { autogenerated = yes imp = 3087 imp = 3089 imp = 3090 ck3 = 4671 } # Pomaria, Altava, Tepidae -> AIN TEKBALET + link = { autogenerated = yes imp = 4060 ck3 = 467 } # Tragourion -> Split + link = { autogenerated = yes imp = 3083 ck3 = 4669 } # Lemnis -> HUNAYN + link = { autogenerated = yes imp = 3086 ck3 = 4668 } # Siga -> ARSGUL + link = { autogenerated = yes imp = 3088 imp = 3093 imp = 3094 ck3 = 4667 } # Albulae, Regiae, Caputtasaccora -> QASR IBN SINAN + link = { autogenerated = yes imp = 3092 imp = 3091 ck3 = 4666 } # Portus Divinus, Castra Puerorum -> ORAN + link = { autogenerated = yes imp = 3095 ck3 = 4664 ck3 = 4665 } # Portus Magnus -> MARSA FARUKH, ARZEW + link = { autogenerated = yes imp = 3104 ck3 = 4659 } # Cenavicum -> TAHART + link = { autogenerated = yes imp = 3100 ck3 = 4656 ck3 = 800 } # Castra Nova -> QALA'A B_HUWARA, Tell Atlas Mountains 1 + link = { autogenerated = yes imp = 3109 imp = 3102 imp = 3107 ck3 = 4655 } # Portus Magulus, Mina, Caudium Castra -> YALALA + link = { autogenerated = yes imp = 3106 imp = 3108 imp = 3110 imp = 3101 ck3 = 4653 } # Arsennaria, Cartennae, Tingitanum, Quiza Xenitana -> TANAS + link = { autogenerated = yes imp = 3113 imp = 3111 imp = 3116 ck3 = 4652 } # Gunugu, Cartili, Iol -> SHARSHAL + link = { autogenerated = yes imp = 3118 ck3 = 4651 } # Icosium -> MATTIJA + link = { autogenerated = yes imp = 3120 ck3 = 4650 } # Rusguniae -> ALGIERS + link = { autogenerated = yes imp = 4054 ck3 = 465 } # Idassa -> Zadar + link = { autogenerated = yes imp = 3123 imp = 3121 imp = 3122 imp = 3124 ck3 = 4649 } # Rusazus, Rusuccuru, Rusippisir, Bida -> TADALLIS + link = { autogenerated = yes imp = 10163 imp = 10160 imp = 10164 imp = 10165 imp = 10167 imp = 10158 ck3 = 4645 } # Hamel, Gahra, Chioukh, Moudjebara, Ibel, Errich -> BOU SAADA + link = { autogenerated = yes imp = 3155 imp = 10161 imp = 3152 imp = 3153 ck3 = 4644 } # Aqua Viva, Slimane, Thubunae, Mesarietta -> TUBNA + link = { autogenerated = yes imp = 3173 imp = 3156 ck3 = 4643 } # Burgus Gaetulia, Nicivibus -> NGAOUS + link = { autogenerated = yes imp = 10162 imp = 3151 ck3 = 4642 } # Mcif, Macri -> MAGRA + link = { autogenerated = yes imp = 3139 imp = 3134 imp = 3140 imp = 3142 imp = 3157 ck3 = 4640 } # Vanisnesi, Equizeto, Ad Sava Municipium, Aras, Lemellia -> QALA'A B_HAMMAD + link = { autogenerated = yes imp = 3159 imp = 3147 imp = 3148 imp = 3158 ck3 = 4639 } # Zarai, Sitifis, Mopth, Lobrinia -> SATIF + link = { autogenerated = yes imp = 3146 imp = 3149 ck3 = 4638 } # Satafis, Cuicul -> IKJAN + link = { autogenerated = yes imp = 3126 imp = 3135 imp = 3143 imp = 3144 imp = 3141 ck3 = 4637 } # Saldae, Tubusuctu, Lesbia, Muslubium, Sertei -> BEJAYA + link = { autogenerated = yes imp = 3150 imp = 3145 imp = 3160 ck3 = 4636 } # Igilgili, Choba, Tucca -> JIJEL + link = { autogenerated = yes imp = 3162 ck3 = 4635 ck3 = 805 } # Milevum -> MILA, Tell Atlas Mountains 6 + link = { autogenerated = yes imp = 3177 imp = 3179 ck3 = 4634 } # Lamasba, Verecunda -> BILIZMA + link = { autogenerated = yes imp = 3171 ck3 = 4633 } # Tabudium -> SIDI UQBA + link = { autogenerated = yes imp = 3181 imp = 3165 ck3 = 4632 } # Sigus, Nattabutum -> TIJIS + link = { autogenerated = yes imp = 3163 imp = 3178 imp = 3180 imp = 3183 ck3 = 4631 } # Cirta, Diana Veteranorum, Thenebrestia, Subzuaritanum -> CONSTANTINE + link = { autogenerated = yes imp = 3355 imp = 3164 imp = 3221 imp = 3223 imp = 3228 ck3 = 4630 } # Fabatianum, Thibilis, Zattara, Calama, Celtianis -> QALAMA + link = { autogenerated = yes imp = 4075 imp = 5089 ck3 = 463 } # Castra, IMPASSIBLE TERRAIN 089 -> Usora + link = { autogenerated = yes imp = 3220 imp = 3217 ck3 = 4628 } # Saltus Sorothensis, Madauros -> TIFASH + link = { autogenerated = yes imp = 3168 imp = 3167 imp = 3170 imp = 3182 imp = 3207 imp = 3174 imp = 8141 ck3 = 4627 } # Mascula Tiberia, Macomades, Lambafundi, Bagai, Vegesela, Claudi, Africa Impassable -> BAGHAYA + link = { autogenerated = yes imp = 3215 imp = 3213 imp = 3219 ck3 = 4626 } # Casaea, Vasampus, Marcimeni -> MASKIYANA + link = { autogenerated = yes imp = 3214 imp = 3208 imp = 3247 ck3 = 4625 } # Thaesactum, Ammaedara, Althiburos -> MAYDARA + link = { autogenerated = yes imp = 3205 imp = 3209 imp = 3248 ck3 = 4624 } # Menegesum, Thala Musulamia, Thugga Terebenthina -> TALA + link = { autogenerated = yes imp = 3206 imp = 3185 imp = 3203 ck3 = 4623 } # Ad Aquas Caesaris, Leges Maiores, Theveste -> TABASSA + link = { autogenerated = yes imp = 3154 imp = 3172 ck3 = 4621 } # Gemellae, Aurasius Superior -> BISKRA + link = { autogenerated = yes imp = 3184 imp = 3166 ck3 = 4620 } # Thalades, Gadiaufala -> QASR AL-IFRIQI + link = { autogenerated = yes imp = 4182 ck3 = 462 } # Claudia -> Krizevci + link = { autogenerated = yes imp = 4176 imp = 4181 ck3 = 461 } # Pyrri, Savia -> Zagreb + link = { autogenerated = yes imp = 3186 imp = 3193 imp = 3204 ck3 = 4607 } # Ubaza Castellum, Cerva, Vatari -> MADILA + link = { autogenerated = yes imp = 3189 imp = 3188 ck3 = 4606 } # Ad Speculum, Casae Nigrae -> MADAS + link = { autogenerated = yes imp = 10064 imp = 10057 imp = 10060 imp = 10062 imp = 10063 imp = 3292 ck3 = 4605 } # Faouar, Tabria, Turris Tamaleni, Jamnah, Ghidma, Arelliorum -> DOUZ + link = { autogenerated = yes imp = 10065 ck3 = 4604 } # Rjim Maatoug -> SOUF + link = { autogenerated = yes imp = 10066 ck3 = 4603 ck3 = 4608 } # Talib -> NAFTA, AJLU + link = { autogenerated = yes imp = 3191 ck3 = 4601 ck3 = 4602 } # Castra Neptitana -> TOZEUR, HAMMA + link = { autogenerated = yes imp = 3196 imp = 3190 ck3 = 4600 } # Capsa Iustiniana, Thiges -> TAQYUS + link = { autogenerated = yes imp = 4137 ck3 = 460 } # Populi -> Varadzin + link = { autogenerated = yes imp = 2183 ck3 = 46 } # Gangania Australis -> ENNIS + link = { autogenerated = yes imp = 3201 imp = 3195 ck3 = 4599 } # Tabira, Gemellia -> QAFSA + link = { autogenerated = yes imp = 3194 imp = 3197 imp = 3198 imp = 3199 ck3 = 4598 } # Thelepte, Sufetula, Cillium, Nara Maxyesia -> AL-QASRAYN + link = { autogenerated = yes imp = 3286 ck3 = 4597 } # Aeliae -> AL-ABBASIYA + link = { autogenerated = yes imp = 3279 ck3 = 4596 } # Vicus Augusti -> MANSURIYA + link = { autogenerated = yes imp = 3272 imp = 3242 ck3 = 4594 } # Muzuc, Abthugni -> KAIROUAN + link = { autogenerated = yes imp = 3211 imp = 3210 imp = 3246 ck3 = 4593 } # Masclinae, Sufes, Mactaris -> SABIBA + link = { autogenerated = yes imp = 3235 imp = 3237 imp = 3269 ck3 = 4591 } # Lares, Obba, Thugga -> AL-ARIBUS + link = { autogenerated = yes imp = 3232 imp = 3216 imp = 3234 ck3 = 4590 } # Simitthus, Funda Thavagalensis, Sicca Veneria -> SIQQABANARIYA + link = { autogenerated = yes imp = 4032 ck3 = 459 } # Curicum -> Veglia + link = { autogenerated = yes imp = 3267 imp = 3233 imp = 3265 imp = 3268 ck3 = 4589 } # Numluli, Bulla Regia, Thimida Bure, Aunobaris -> BAJA + link = { autogenerated = yes imp = 3225 imp = 3224 ck3 = 4588 } # Hippo Regius, Asuccuris -> ANNABA + link = { autogenerated = yes imp = 3229 ck3 = 4587 } # Tuniza -> MANSA'L-KHARAZ + link = { autogenerated = yes imp = 3230 imp = 7641 ck3 = 4586 } # Thabraca, Alania -> TABARQA + link = { autogenerated = yes imp = 3262 imp = 3258 imp = 3263 imp = 3264 ck3 = 4585 } # Kinna Thabracania, Hippo Diarrhytus, Rucuma, Septimia -> BANZART + link = { autogenerated = yes imp = 3245 imp = 1470 imp = 3252 imp = 3253 imp = 3254 imp = 3255 ck3 = 4584 } # Curubis, Cossyra, Carpis, Nepheris, Kerkouane, Missua -> NABEUL + link = { autogenerated = yes imp = 3257 imp = 3260 imp = 3261 imp = 8143 ck3 = 4583 } # Utica, Matar, Thisika, Africa Impassable -> QARTAJANA + link = { autogenerated = yes imp = 3256 imp = 3250 imp = 3259 ck3 = 4582 } # Carthago, Uthina, Uzali Sar -> TUNIS + link = { autogenerated = yes imp = 3249 imp = 3244 imp = 3251 imp = 8145 ck3 = 4581 } # Ziqua, Pupput, Membressa, Africa Impassable -> ZAGHWAN + link = { autogenerated = yes imp = 3243 imp = 3274 imp = 3275 ck3 = 4580 } # Feradi Maius, Mediccera, Ulizibbira -> SUSA + link = { autogenerated = yes imp = 4039 imp = 4175 ck3 = 458 } # Romula, Aquae Iasae -> Istria + link = { autogenerated = yes imp = 3276 ck3 = 4579 } # Hadrametum -> MONASTIR + link = { autogenerated = yes imp = 3277 imp = 3278 ck3 = 4578 } # Leptis Minor, Thapsus -> MAHDIYA + link = { autogenerated = yes imp = 3282 imp = 3280 imp = 3281 ck3 = 4577 } # Thysdrus, Acholla, Bararus -> SLAKTA + link = { autogenerated = yes imp = 3200 imp = 3288 ck3 = 4576 } # Oviscae, Macomades Minores -> EL-JEM + link = { autogenerated = yes imp = 3285 imp = 3283 imp = 3284 imp = 3287 ck3 = 4575 } # Thaenae, Usula, Cercina, Taparura -> SFAX + link = { autogenerated = yes imp = 3290 imp = 3202 imp = 3289 ck3 = 4574 } # Aves, Silesva, Bennafa -> AL-HAMMA + link = { autogenerated = yes imp = 10056 imp = 10052 imp = 10055 imp = 10059 imp = 10061 imp = 3291 ck3 = 4573 } # Bezereos, Recheb, Tibubuci, Arelliorum, Aquae Tacapitanae, Tacape -> QABIS + link = { autogenerated = yes imp = 7790 ck3 = 457 } # Ganges -> Ichamati River + link = { autogenerated = yes imp = 10022 imp = 10024 imp = 10025 imp = 10036 imp = 8072 ck3 = 4569 } # Centenarium, Vinaza, Garian, Ajdab, Abraq -> TAMAZDA + link = { autogenerated = yes imp = 10050 imp = 10051 imp = 3293 ck3 = 4566 } # Tabalati, Augemmi, Gigthis -> BUGHRARA + link = { autogenerated = yes imp = 3294 ck3 = 4562 } # Tipasa -> JERBA + link = { autogenerated = yes imp = 7704 ck3 = 456 } # Ganges -> Hooghly River + link = { autogenerated = yes imp = 3303 imp = 10026 imp = 10027 imp = 10037 imp = 3302 imp = 3304 imp = 3305 ck3 = 4557 } # Oea, Thenadassa, Mesphe, Dnar, Zanazia, Amarea, Gaphara -> TRIPOLIS + link = { autogenerated = yes imp = 10035 imp = 10030 imp = 3325 ck3 = 4555 } # Rimoniana, Sdada, Thubactis -> MISURATA + link = { autogenerated = yes imp = 3327 imp = 3326 ck3 = 4554 } # Thebunte, Base -> TAWURGHA + link = { autogenerated = yes imp = 3384 imp = 1556 ck3 = 4549 } # Kul, Giaur -> SHIZ + link = { autogenerated = yes imp = 1555 imp = 1557 ck3 = 4548 } # Shiz, Chahar Taq -> AR-RAN + link = { autogenerated = yes imp = 3388 ck3 = 4547 } # Ekkana -> KHUNAJ + link = { autogenerated = yes imp = 3386 imp = 1515 imp = 1522 imp = 1552 ck3 = 4546 } # Batina, Gazaka, Godjer, Adjalu -> LEYLAN + link = { autogenerated = yes imp = 1628 ck3 = 4543 } # Piri -> ARDABIL + link = { autogenerated = yes imp = 1619 imp = 1622 ck3 = 4541 } # Dish, Seqindel -> DIZMAR + link = { autogenerated = yes imp = 1565 ck3 = 4538 } # Shahi Island -> DIHNAKHIRJAN + link = { autogenerated = yes imp = 1527 imp = 1526 imp = 5215 ck3 = 4537 } # Parsk, Tauris, IMPASSIBLE TERRAIN 215 -> TABRIZ + link = { autogenerated = yes imp = 1528 imp = 1502 imp = 1530 ck3 = 4536 } # Morounda, Tasuk, Bakurakerta -> MARAND + link = { autogenerated = yes imp = 1630 ck3 = 4534 ck3 = 4535 } # Langarkanan -> TALISH, APARSHAHR + link = { autogenerated = yes imp = 5423 ck3 = 4533 } # Ahur -> NEBIT DAG + link = { autogenerated = yes imp = 6812 ck3 = 4532 } # Kumdah -> YASHKAN + link = { autogenerated = yes imp = 5427 imp = 5451 ck3 = 4531 } # Bakk, Shalak -> DEKCHA + link = { autogenerated = yes imp = 6808 ck3 = 4530 } # Uzboia -> BURGUN + link = { autogenerated = yes imp = 6807 imp = 6806 ck3 = 4528 } # Dauaba, Balkan -> KURTYSH + link = { autogenerated = yes imp = 5456 ck3 = 4527 } # Murna -> BALA ISKEM + link = { autogenerated = yes imp = 5452 ck3 = 4529 } # Oshin -> IGDY + link = { autogenerated = yes imp = 5453 imp = 6809 ck3 = 4526 } # Zatra, Sariq -> KUGUNEK + link = { autogenerated = yes imp = 5454 imp = 5455 imp = 5475 ck3 = 4525 } # Yatsha, Palimek, Bela -> ORTAKUYU + link = { autogenerated = yes imp = 4369 ck3 = 4513 ck3 = 4512 } # Gandava -> SIBI, SHAL + link = { autogenerated = yes imp = 6540 imp = 6539 imp = 6571 ck3 = 4511 } # Cottabura, Musarna, Pharsaga -> MASTANG + link = { autogenerated = yes imp = 6613 ck3 = 4508 } # Andaka -> LAMGHAN + link = { autogenerated = yes imp = 6623 ck3 = 4507 } # Tazora -> JALDAK + link = { autogenerated = yes imp = 6608 ck3 = 4504 } # Kaboura -> KABUL + link = { autogenerated = yes imp = 6609 ck3 = 4500 ck3 = 4503 } # Ortespane -> GHAZNA, SUKAWAND + link = { autogenerated = yes imp = 2180 ck3 = 45 } # Velaboria Borealis -> LIMERICK + link = { autogenerated = yes imp = 6547 ck3 = 4498 } # Artoarta -> QANDAHAR + link = { autogenerated = yes imp = 6573 ck3 = 4495 } # Banagara -> PANJWAY + link = { autogenerated = yes imp = 6632 ck3 = 4492 ck3 = 4499 } # Kopan -> DURGAS, RUKHAJ + link = { autogenerated = yes imp = 6610 ck3 = 4491 ck3 = 2974 } # Musai -> BISHANG, PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 6554 ck3 = 4490 } # Bagasse -> SARWAN + link = { autogenerated = yes imp = 6555 ck3 = 4489 } # Demetrias Arachosias -> ZAMINDAWAR + link = { autogenerated = yes imp = 6538 imp = 6616 ck3 = 4488 } # Badara, Choarene -> QIQAN + link = { autogenerated = yes imp = 6541 ck3 = 4485 } # Alexandropolis -> AL-MUASKAR + link = { autogenerated = yes imp = 6546 ck3 = 4484 ck3 = 4486 ck3 = 4467 } # Arachotus -> BOST, RIBAT-I-KISH, LANDAY + link = { autogenerated = yes imp = 6594 ck3 = 4483 } # Taharene -> GALIKAN + link = { autogenerated = yes imp = 6595 ck3 = 4482 ck3 = 4201 } # Pharazana -> DELARAM, Azadawan + link = { autogenerated = yes imp = 6618 imp = 6617 ck3 = 4481 } # Oltus, Pardiae -> GAJOR + link = { autogenerated = yes imp = 6537 imp = 6535 ck3 = 4480 } # Soxetra, Oscana -> BUDIN + link = { autogenerated = yes imp = 6534 ck3 = 4478 ck3 = 4479 } # Zetis -> WAD, QUSDAR + link = { autogenerated = yes imp = 6619 ck3 = 4477 ck3 = 3036 } # Arbia -> KHAWR, PERSIAN IMPASSABLE + link = { autogenerated = yes imp = 6536 imp = 6533 ck3 = 4476 } # Arbiti, Rhamna -> ARMABIL + link = { autogenerated = yes imp = 6532 imp = 6526 ck3 = 4475 } # Arbis, Pagala -> QANBALI + link = { autogenerated = yes imp = 6531 imp = 6524 imp = 6525 imp = 6620 ck3 = 4474 } # Cocala, Malana, Cabana, Bambacia -> KOKAHDAN + link = { autogenerated = yes imp = 6549 imp = 6550 ck3 = 4466 } # Parabeste, Ariaspe -> KHANNESIN + link = { autogenerated = yes imp = 7259 imp = 11507 ck3 = 4462 } # Baraq, Kukcha -> NORTH KURDAR + link = { autogenerated = yes imp = 11505 imp = 11506 ck3 = 4461 } # Sokkul, Qo'yqirilgan -> MIZDAHQAN + link = { autogenerated = yes imp = 7260 ck3 = 4459 } # Kupir -> BARATIGIN + link = { autogenerated = yes imp = 5483 imp = 5484 ck3 = 4458 } # Tubek, Cammei -> MADMINIYA + link = { autogenerated = yes imp = 6803 ck3 = 4457 } # Gurganj -> JITH + link = { autogenerated = yes imp = 6797 ck3 = 4455 ck3 = 4524 } # Vezir -> ZAMAKHSHAR, SARYKAMYSH + link = { autogenerated = yes imp = 6805 ck3 = 4454 ck3 = 4456 } # Ariaka -> NAZVAR, GURGANJ + link = { autogenerated = yes imp = 6799 ck3 = 4451 ck3 = 4452 } # Zamakshahr -> KARDURAN-KHAS, KHIVA + link = { autogenerated = yes imp = 6804 ck3 = 4449 ck3 = 4453 } # Mizdaqahn -> RAKHUSHMITHAN, RUZVAND + link = { autogenerated = yes imp = 11504 ck3 = 4448 ck3 = 4447 } # Sarymay -> KATH, GHARDAMAN + link = { autogenerated = yes imp = 11502 ck3 = 4444 } # Nar Gyz -> NUKFAGH + link = { autogenerated = yes imp = 11503 ck3 = 4445 ck3 = 4446 } # Sho'rtakli -> ARDAKHIVAH, WAYIKHAN + link = { autogenerated = yes imp = 6800 ck3 = 4443 ck3 = 4450 } # Aratha -> SADVAR, HAZARASP + link = { autogenerated = yes imp = 6801 ck3 = 4441 ck3 = 4442 } # Jirbend -> DARGHAN, JIGIRBEND + link = { autogenerated = yes imp = 6802 ck3 = 4440 } # Varakhsha -> TAHIRIYA + link = { autogenerated = yes imp = 6789 ck3 = 4436 } # Uskat -> ARDALANKATH + link = { autogenerated = yes imp = 6734 ck3 = 4434 ck3 = 4435 ck3 = 4437 } # Chust -> KHAYLAM, NAJM, KASAN + link = { autogenerated = yes imp = 6740 ck3 = 4430 ck3 = 4432 } # Shakrikhan -> OSH, UZGEND + link = { autogenerated = yes imp = 6739 ck3 = 4429 } # Akhsiket -> ANDIJAN + link = { autogenerated = yes imp = 6730 ck3 = 4428 ck3 = 4438 ck3 = 4439 } # Khavakand -> KHOKAND, AKHSIKATH, MARGHINAN + link = { autogenerated = yes imp = 6735 ck3 = 4427 ck3 = 4431 ck3 = 4426 } # Dawan -> QUBA, NAQAD, AVAL + link = { autogenerated = yes imp = 6732 ck3 = 4423 ck3 = 4424 ck3 = 4425 } # Makhram -> ISFARA, SUKH, HOSHYAR + link = { autogenerated = yes imp = 6790 imp = 6731 ck3 = 4421 } # Tunket, Massagetia -> WANKATH + link = { autogenerated = yes imp = 6704 ck3 = 4418 ck3 = 4419 ck3 = 4420 } # Alexandreia Eschate -> KHOJAND, KEND-I-BADAM, ASHT + link = { autogenerated = yes imp = 7277 ck3 = 4417 } # Arcum -> KHAWAS + link = { autogenerated = yes imp = 6703 imp = 6721 ck3 = 4416 } # Kyropolis Baktriane, Drepsiana -> KURKATH + link = { autogenerated = yes imp = 6811 ck3 = 4415 } # Hazar -> CHELEKEN + link = { autogenerated = yes imp = 7275 ck3 = 4413 } # Shahr Jaxartha -> ZAMIN + link = { autogenerated = yes imp = 7274 ck3 = 4412 } # Gabae -> DIZAK + link = { autogenerated = yes imp = 6733 ck3 = 4411 ck3 = 4414 } # Istarava -> BOTTAMAN, BUNJIKET + link = { autogenerated = yes imp = 6705 imp = 6702 ck3 = 4409 } # Matuaspa, Shakria -> PANJIKAND + link = { autogenerated = yes imp = 6682 ck3 = 4407 ck3 = 4408 ck3 = 4410 } # Marakanda -> WADHAR, BARKAT, VARAGHSHAR + link = { autogenerated = yes imp = 6712 ck3 = 4405 ck3 = 4406 } # Kaza -> ISHTIKHAN, QATWAN + link = { autogenerated = yes imp = 6716 ck3 = 4403 ck3 = 4404 } # Nautaka -> ARBINJAN, SAMARQAND + link = { autogenerated = yes imp = 4899 ck3 = 440 } # Sidaris -> Olsztyn + link = { autogenerated = yes imp = 2187 ck3 = 44 ck3 = 51 } # Brigantia -> CARRICK, CLONMEL + link = { autogenerated = yes imp = 6714 ck3 = 4399 ck3 = 4401 ck3 = 4402 } # Karnab -> KUSHANIYA, KERMINIYA, DABUSIYA + link = { autogenerated = yes imp = 6713 ck3 = 4397 ck3 = 4398 ck3 = 4400 } # Kermine -> GHUJDUVAN, TAVAVIS, NOOR BUKHARA + link = { autogenerated = yes imp = 6707 ck3 = 4395 ck3 = 4396 } # Tribactra -> VARAKHSHA, RAMITAN + link = { autogenerated = yes imp = 6717 ck3 = 4393 ck3 = 4394 } # Branchidai -> PAYKEND, BUKHARA + link = { autogenerated = yes imp = 6715 ck3 = 4391 } # Naura -> RIBAT MALIK + link = { autogenerated = yes imp = 6710 ck3 = 4390 } # Xenippa -> NAKHSHAB + link = { autogenerated = yes imp = 6711 ck3 = 4389 } # Charva -> NAWQAD QUREISH + link = { autogenerated = yes imp = 6706 ck3 = 4387 ck3 = 4388 } # Kis -> Al-Musala, Kishsh + link = { autogenerated = yes imp = 7238 ck3 = 4386 } # Nikhshapaya -> Subakh + link = { autogenerated = yes imp = 6719 ck3 = 4385 } # Petra Sisimithrou -> Kandak + link = { autogenerated = yes imp = 7232 imp = 6689 imp = 7233 ck3 = 4384 } # Tarmantis, Pandokheion, Bazaria -> Kalif + link = { autogenerated = yes imp = 6701 ck3 = 4382 ck3 = 4383 } # Petra Chorienou -> Vashjird, Rasht + link = { autogenerated = yes imp = 6700 ck3 = 4381 } # Petra Arimazou -> Shuman + link = { autogenerated = yes imp = 6695 ck3 = 4378 } # Cholbisina -> Pargar + link = { autogenerated = yes imp = 6698 ck3 = 4377 ck3 = 4380 } # Ikroni -> Livkand, Munk + link = { autogenerated = yes imp = 6696 ck3 = 4376 } # Boubakene -> Halavand + link = { autogenerated = yes imp = 6691 ck3 = 4374 } # Oxeiana -> Awzaj + link = { autogenerated = yes imp = 6688 ck3 = 4372 } # Alexandria Oxiana -> Basand + link = { autogenerated = yes imp = 6697 ck3 = 4371 ck3 = 4375 } # Margineia -> Darzanji, Qobadiyan + link = { autogenerated = yes imp = 6687 ck3 = 4369 ck3 = 4370 } # Gazaba -> Chaghaniyan, Rigar + link = { autogenerated = yes imp = 6690 ck3 = 4368 ck3 = 4373 } # Antiocheia Tarmita -> Termez, Charmanjan + link = { autogenerated = yes imp = 6769 ck3 = 4364 } # Pamir -> Alichur + link = { autogenerated = yes imp = 6765 ck3 = 4363 } # Kafir Kala -> Shughnan + link = { autogenerated = yes imp = 6766 ck3 = 4362 } # Yamchun -> Wakhan + link = { autogenerated = yes imp = 6767 ck3 = 4361 } # Urang -> Dar-i-Tubbat + link = { autogenerated = yes imp = 6759 ck3 = 4354 } # Samti -> Kishm + link = { autogenerated = yes imp = 6694 ck3 = 4353 } # Oskobara -> Rustaq + link = { autogenerated = yes imp = 6692 ck3 = 4352 } # Khulm -> Mila + link = { autogenerated = yes imp = 6681 imp = 6686 ck3 = 4351 } # Tahora, Tarmita -> Khulm + link = { autogenerated = yes imp = 6693 ck3 = 4349 ck3 = 4350 } # Aornos -> Valvalij, Talekan + link = { autogenerated = yes imp = 6648 imp = 6627 ck3 = 4348 } # Drapsake, Astakana -> Baghlan + link = { autogenerated = yes imp = 6650 ck3 = 4347 } # Kabolite -> Andarab + link = { autogenerated = yes imp = 6625 ck3 = 4345 } # Kapissa -> Panjhir + link = { autogenerated = yes imp = 6611 ck3 = 4344 ck3 = 4346 } # Alexandria ad Caucasum -> Parwan, Jarbaya + link = { autogenerated = yes imp = 6638 imp = 6651 imp = 6614 ck3 = 4343 } # Paros Paropamisadorum, Choatina, Cartana -> Bamiyan + link = { autogenerated = yes imp = 6649 ck3 = 4342 } # Battak -> Sakalkand + link = { autogenerated = yes imp = 6680 ck3 = 4341 } # Tochara -> Samanjan + link = { autogenerated = yes imp = 6679 ck3 = 4340 } # Phratroua -> Ruy + link = { autogenerated = yes imp = 3868 ck3 = 434 } # Cobandia Minor -> KOLDING + link = { autogenerated = yes imp = 6637 imp = 6677 imp = 6630 ck3 = 4339 } # Alexandreia Bactriane, Denai, Zaviaspa -> Saan + link = { autogenerated = yes imp = 6654 ck3 = 4337 } # Indikomordana -> Navida + link = { autogenerated = yes imp = 6655 ck3 = 4336 } # Kumsar -> Shapurqan + link = { autogenerated = yes imp = 6678 ck3 = 4335 ck3 = 4338 } # Bactra -> Balkh, Siyahjird + link = { autogenerated = yes imp = 7229 ck3 = 4334 } # Kharispa -> Rib?-i-l-K? + link = { autogenerated = yes imp = 6962 imp = 6961 ck3 = 4333 } # Choromia, Vera -> Hamadan + link = { autogenerated = yes imp = 6963 imp = 1594 imp = 3393 ck3 = 4332 } # Sigria, Kangavar, Vindirni -> Dinawar + link = { autogenerated = yes imp = 1595 imp = 1596 ck3 = 4331 } # Ecbatana, Deh Bozan -> Rudhrawar + link = { autogenerated = yes imp = 4981 imp = 4980 imp = 4982 ck3 = 4330 } # Rhapsa, Ashtian, Tabarte -> Sharuq + link = { autogenerated = yes imp = 3887 ck3 = 433 ck3 = 63 ck3 = 64 ck3 = 85 } # Herulia Orientalis -> HELSINGORA, ROSKILDE, NAESTVED, HAFN + link = { autogenerated = yes imp = 6955 imp = 6959 ck3 = 4329 } # Saavakineh, Vesaspe -> Mazdaqan + link = { autogenerated = yes imp = 6960 imp = 6956 ck3 = 4328 } # Iasonia, Siva -> Aba + link = { autogenerated = yes imp = 3385 imp = 4990 ck3 = 4327 } # Aba, Molla -> Suhravard + link = { autogenerated = yes imp = 3383 ck3 = 4326 } # Shaapa -> Afshar + link = { autogenerated = yes imp = 4989 imp = 4987 ck3 = 4324 } # Ekur, Shiman -> Abhar + link = { autogenerated = yes imp = 4984 imp = 6957 ck3 = 4323 } # Kaspin, Pirra -> Qazvin + link = { autogenerated = yes imp = 3396 imp = 3381 ck3 = 4322 } # Choana Medias, Sigriane -> Qasran + link = { autogenerated = yes imp = 3382 ck3 = 4321 } # Baaka -> Mashkuya + link = { autogenerated = yes imp = 3452 imp = 3394 imp = 3395 ck3 = 4320 } # Goziris, Tarkhan, Nizamabad -> Waramin + link = { autogenerated = yes imp = 4999 ck3 = 4319 } # Tishtriana -> Rayy + link = { autogenerated = yes imp = 7639 ck3 = 4314 } # Salus -> Shalush + link = { autogenerated = yes imp = 7638 ck3 = 4313 ck3 = 4312 } # Mura -> Natil, Amul + link = { autogenerated = yes imp = 4997 imp = 4996 ck3 = 4311 } # Saringiy, Amarda -> Sariya + link = { autogenerated = yes imp = 3434 ck3 = 4310 } # Charinda -> Tamisha + link = { autogenerated = yes imp = 966 imp = 952 ck3 = 4309 } # Samangan, Tisiyan -> Idhaj + link = { autogenerated = yes imp = 4779 ck3 = 4306 ck3 = 4307 } # Agines -> Dariyan, Asak + link = { autogenerated = yes imp = 4780 ck3 = 4305 ck3 = 4308 } # Arragan -> Arrajan, Ramhurmuz + link = { autogenerated = yes imp = 4786 imp = 4785 ck3 = 4303 } # Temukan, Millonia -> Tawwaj + link = { autogenerated = yes imp = 4784 ck3 = 4301 ck3 = 4302 } # Arrakia -> Jannaba, Siniz + link = { autogenerated = yes imp = 6518 ck3 = 4300 ck3 = 4299 } # Phrada -> Zirjan, Farah + link = { autogenerated = yes imp = 7224 imp = 7225 ck3 = 4298 } # Bitaxa, Bogadia -> Masau + link = { autogenerated = yes imp = 6563 imp = 6604 ck3 = 4297 } # Zimyra, Masina -> Khoshk-Rud + link = { autogenerated = yes imp = 6605 imp = 6562 ck3 = 4296 } # Barda, Aris -> Doroh + link = { autogenerated = yes imp = 6560 ck3 = 4295 ck3 = 4278 } # Zranka -> Bandan, Qantarat Kirman + link = { autogenerated = yes imp = 6566 ck3 = 4294 } # Phorana -> Uq + link = { autogenerated = yes imp = 6570 ck3 = 4289 } # Bigis -> Zaranj + link = { autogenerated = yes imp = 6561 imp = 6552 ck3 = 4288 } # Nostana, Alexandreia Sakastenes -> Ram Shahristan + link = { autogenerated = yes imp = 6607 imp = 6606 ck3 = 4283 } # Xarxiare, Tribazina -> Nih + link = { autogenerated = yes imp = 6574 imp = 6584 imp = 6586 ck3 = 4280 } # Sedrasyra, Kano, Bulya -> Khwash + link = { autogenerated = yes imp = 6589 imp = 6588 imp = 6590 imp = 6591 ck3 = 4277 } # Arcrotis, Euergetae, Sacasteniana, Cuni -> Sanij + link = { autogenerated = yes imp = 6528 imp = 6529 imp = 6587 ck3 = 4274 } # Apameia Raphane, Chodda, Cabadene -> Riqan + link = { autogenerated = yes imp = 6593 ck3 = 4270 ck3 = 4271 } # Gedrosiana -> Tiz, Bih + link = { autogenerated = yes imp = 6516 imp = 6517 ck3 = 4269 } # Troesus, Canasida -> Ruhna + link = { autogenerated = yes imp = 6592 ck3 = 4268 } # Hydriacus -> Bint + link = { autogenerated = yes imp = 6579 ck3 = 4266 } # Samydae -> Houn + link = { autogenerated = yes imp = 6514 imp = 6515 ck3 = 4265 } # Badis, Bagaseira -> Jask + link = { autogenerated = yes imp = 6580 imp = 6581 imp = 6512 ck3 = 4264 } # Salarus, Canate, Harmozeia -> Darhafan + link = { autogenerated = yes imp = 967 ck3 = 4256 ck3 = 6013 } # Urzan -> Tustar, AZAM + link = { autogenerated = yes imp = 6634 ck3 = 4254 } # Aspioneia -> Anbar-Guzgani + link = { autogenerated = yes imp = 6635 imp = 6629 ck3 = 4253 } # Tambyzeia, Kourianda -> Gurzivan + link = { autogenerated = yes imp = 6672 ck3 = 4252 } # Garuli -> Taleqan + link = { autogenerated = yes imp = 6673 ck3 = 4251 } # Zeshoi -> Yahudan + link = { autogenerated = yes imp = 6676 ck3 = 4250 } # Ihnum -> Faryab + link = { autogenerated = yes imp = 6675 imp = 6674 imp = 7237 ck3 = 4249 } # Ankui, Menapila, Aqcha -> Andkhud + link = { autogenerated = yes imp = 7235 imp = 7227 imp = 7234 imp = 7243 ck3 = 4248 } # Deshikli, Zamm, Bazistris, Bezda -> Akhsisak + link = { autogenerated = yes imp = 7236 imp = 7228 ck3 = 4247 } # Dilyar, Ebousmou Anassa -> Zamm + link = { autogenerated = yes imp = 7239 imp = 7230 ck3 = 4244 } # Farab, Kerkichi -> Nevida + link = { autogenerated = yes imp = 6718 ck3 = 4243 } # Kogon -> Barzam + link = { autogenerated = yes imp = 6708 imp = 11501 ck3 = 4242 } # Amul, Qarako'l -> Firabr + link = { autogenerated = yes imp = 6709 imp = 5397 ck3 = 4241 } # Rapete, Shenia -> Shagal + link = { autogenerated = yes imp = 7240 ck3 = 4240 } # Zariaspa -> Amol-e-shatt + link = { autogenerated = yes imp = 6621 imp = 6622 imp = 6639 ck3 = 4233 } # Sangar, Phoklis, Rana -> Till + link = { autogenerated = yes imp = 6665 ck3 = 4222 } # Iasonion -> Baghshur + link = { autogenerated = yes imp = 6667 ck3 = 4220 } # Confluentia Margiana -> Panjdih + link = { autogenerated = yes imp = 6669 imp = 6652 ck3 = 4219 } # Tapuria, Komeia -> Barkdiz + link = { autogenerated = yes imp = 6670 ck3 = 4218 } # Kushke -> Qarinayn + link = { autogenerated = yes imp = 6646 ck3 = 4217 } # Soteira -> Malin + link = { autogenerated = yes imp = 6565 ck3 = 4216 ck3 = 4223 ck3 = 4230 } # Phoraua -> Karukh, Dizah, Shurmin + link = { autogenerated = yes imp = 6557 imp = 6558 ck3 = 4215 } # Artacoana, Alexandreia Areia -> Herat + link = { autogenerated = yes imp = 6664 imp = 7222 ck3 = 4214 } # Serakhis, Kotake -> Jabal-al-Fidda + link = { autogenerated = yes imp = 7223 ck3 = 4213 } # Badghis -> Bama'in + link = { autogenerated = yes imp = 6556 ck3 = 4212 } # Godana -> Kusuy + link = { autogenerated = yes imp = 6543 ck3 = 4211 } # Suphtha -> Zurabad + link = { autogenerated = yes imp = 6545 ck3 = 4210 ck3 = 4208 } # Guriana -> Buzjan, Tayabad + link = { autogenerated = yes imp = 6567 imp = 6568 imp = 6596 ck3 = 4205 } # Astasana, Parsia, Thubrasine -> Adraskan + link = { autogenerated = yes imp = 6647 ck3 = 4204 ck3 = 4206 } # Nisibis -> Asfuzar, Khin + link = { autogenerated = yes imp = 4793 ck3 = 4200 ck3 = 4196 } # Cyropolis Persica -> Karzin, Kariyan + link = { autogenerated = yes imp = 4792 imp = 4794 imp = 4796 ck3 = 4199 } # Gur, Mammica, Ardea -> Firuzabad + link = { autogenerated = yes imp = 4795 ck3 = 4198 } # Kanat -> Gundijan + link = { autogenerated = yes imp = 4788 imp = 4787 ck3 = 4197 } # Hieratis, Bushahr -> Bushkanat + link = { autogenerated = yes imp = 4789 ck3 = 4195 } # Gogana -> Mandestan + link = { autogenerated = yes imp = 4790 ck3 = 4194 } # Apostana -> Siraf + link = { autogenerated = yes imp = 4962 ck3 = 4192 ck3 = 4193 ck3 = 4189 } # Ostana -> Dazuk, Naband, Beiram + link = { autogenerated = yes imp = 4956 ck3 = 4191 } # Portospana -> Huzu + link = { autogenerated = yes imp = 4957 ck3 = 4190 } # Sisidona -> Dun + link = { autogenerated = yes imp = 4955 ck3 = 4187 ck3 = 4188 } # Oarakta -> Laft, Kaurastan + link = { autogenerated = yes imp = 4791 ck3 = 4185 ck3 = 4186 } # Hormirzad -> Hormuz, Shahru + link = { autogenerated = yes imp = 4014 ck3 = 4183 ck3 = 4184 } # Eburum -> Hradec-nad-Moravici, Opava + link = { autogenerated = yes imp = 4016 ck3 = 4182 } # Oreinia -> Prerov + link = { autogenerated = yes imp = 4015 imp = 5146 ck3 = 4181 } # Gothinia, IMPASSIBLE TERRAIN 146 -> Unicov + link = { autogenerated = yes imp = 4782 ck3 = 4180 } # Suravan -> Sabur + link = { autogenerated = yes imp = 4781 imp = 5388 ck3 = 4179 } # Tragonica, IP 389 -> Kazarun + link = { autogenerated = yes imp = 4798 imp = 4948 ck3 = 4177 } # Corra, Pylai Sousianes -> Shiraz-Farsi + link = { autogenerated = yes imp = 3405 ck3 = 4176 } # Niserne -> Sarwistan-Shirazi-Runiz + link = { autogenerated = yes imp = 3401 imp = 3400 ck3 = 4174 } # Pasa, Narecha -> Istakhbanat + link = { autogenerated = yes imp = 3409 ck3 = 4172 } # Qatre -> Fustujan + link = { autogenerated = yes imp = 3926 ck3 = 4169 } # Eburodunum Carnuntii -> Breclav + link = { autogenerated = yes imp = 3928 ck3 = 4168 } # Felicia Boioa -> Brno + link = { autogenerated = yes imp = 3930 ck3 = 4166 } # Phargisatus -> Znojmo + link = { autogenerated = yes imp = 3932 ck3 = 4163 ck3 = 4167 } # Hercyniana -> Zdar, Ivancice + link = { autogenerated = yes imp = 3940 ck3 = 4160 } # Corcontia -> Chrudim + link = { autogenerated = yes imp = 4017 ck3 = 4159 ck3 = 8999 } # Asanca -> Spytihnev, Veseli + link = { autogenerated = yes imp = 3936 ck3 = 4157 } # Sylvaria Prima -> Bechyne + link = { autogenerated = yes imp = 3938 ck3 = 4156 ck3 = 4162 } # Boioa -> Chynov, Jihlava + link = { autogenerated = yes imp = 3931 ck3 = 4155 ck3 = 4164 } # Tavia -> Telcz, Bitov + link = { autogenerated = yes imp = 3935 ck3 = 4154 ck3 = 772 } # Ad Limen -> Doudleby, Czech Mountains 10 + link = { autogenerated = yes imp = 3934 ck3 = 4152 ck3 = 4153 } # Ad Periam -> Krumlov, Rozmberk + link = { autogenerated = yes imp = 3818 ck3 = 4150 ck3 = 770 } # Setuacatum -> Netolice, Czech Mountains 8 + link = { autogenerated = yes imp = 3929 ck3 = 4148 ck3 = 4170 } # Auchia -> Rakovnik, Hodonin + link = { autogenerated = yes imp = 3944 ck3 = 4147 } # Extremadura -> Zatec + link = { autogenerated = yes imp = 3812 ck3 = 4146 ck3 = 4149 } # Strevinta -> Primda, Prachen + link = { autogenerated = yes imp = 3816 ck3 = 4145 ck3 = 4151 } # Marcomannia -> Plzen, Pisek + link = { autogenerated = yes imp = 3945 ck3 = 4142 ck3 = 4143 } # Sudetiana -> Loket, Stribro + link = { autogenerated = yes imp = 4008 ck3 = 4140 ck3 = 4165 ck3 = 773 } # Asciburgia -> Vraclav, Olomouc, Czech Mountains 11 + link = { autogenerated = yes imp = 3915 ck3 = 4139 } # Meliodunum -> Jaromer + link = { autogenerated = yes imp = 4009 imp = 5144 ck3 = 4138 } # Galaegia, IMPASSIBLE TERRAIN 144 -> Hradec(Kralove) + link = { autogenerated = yes imp = 3941 ck3 = 4136 } # Vandalicia -> Boleslav + link = { autogenerated = yes imp = 3980 ck3 = 4133 ck3 = 4134 ck3 = 4135 } # Ad Fines Boiohaemi -> Decin, Bezdez, Zitava + link = { autogenerated = yes imp = 3913 ck3 = 4132 ck3 = 4141 } # Marobudum -> Kadan, Sedlec + link = { autogenerated = yes imp = 3912 ck3 = 4130 ck3 = 4131 } # Redintuinum -> Slany, Bilina + link = { autogenerated = yes imp = 3911 ck3 = 4129 } # Nomisterium -> Litomerice + link = { autogenerated = yes imp = 3942 ck3 = 4128 } # Hegetmatia -> Melnik + link = { autogenerated = yes imp = 3937 ck3 = 4127 ck3 = 4158 } # Baemia -> Beroun, Milevsko + link = { autogenerated = yes imp = 3943 ck3 = 4125 ck3 = 4126 } # Butonia -> Praha, Vysehrad + link = { autogenerated = yes imp = 3406 imp = 4799 ck3 = 4118 } # Nisacus, Persepolis -> Istakhr + link = { autogenerated = yes imp = 4978 ck3 = 4117 ck3 = 4098 } # Azargarta -> Iqlid, Abarquh + link = { autogenerated = yes imp = 6954 ck3 = 4111 } # Qom -> Sawa + link = { autogenerated = yes imp = 4975 ck3 = 4109 } # Goyman -> Qom + link = { autogenerated = yes imp = 3392 imp = 3398 ck3 = 4108 } # Sevavicina, Themantica -> Wazwan + link = { autogenerated = yes imp = 4974 ck3 = 4107 } # Gadamarta -> Gulpaygan + link = { autogenerated = yes imp = 4973 ck3 = 4105 ck3 = 4106 } # Aspadana -> Julfa, Isfahan + link = { autogenerated = yes imp = 4972 ck3 = 4104 ck3 = 4103 } # Gabiene -> Firuzan, Qumisha + link = { autogenerated = yes imp = 3431 imp = 3397 ck3 = 4102 } # Ashet, Gindes -> Wardana + link = { autogenerated = yes imp = 4977 ck3 = 4101 ck3 = 4121 } # Axiana -> Sarwistan, Abada + link = { autogenerated = yes imp = 3399 ck3 = 4100 } # Sycta -> Jarquh + link = { autogenerated = yes imp = 2164 ck3 = 41 ck3 = 42 ck3 = 43 } # Brigantia Borealis -> KILKENNY, ATHY, GOWRAN + link = { autogenerated = yes imp = 4960 imp = 4958 ck3 = 4090 } # Sabzevaran, Valashgerd -> Maghun + link = { autogenerated = yes imp = 3410 imp = 3427 ck3 = 4089 } # Thospis, Micadae -> Jiruft + link = { autogenerated = yes imp = 3408 ck3 = 4088 ck3 = 4092 } # Yahye -> Sirjan, Baaft + link = { autogenerated = yes imp = 3425 ck3 = 4087 } # Tarouana -> Bimand + link = { autogenerated = yes imp = 3426 ck3 = 4086 } # Cophanta -> Dafaarid + link = { autogenerated = yes imp = 4959 imp = 4961 imp = 5254 ck3 = 4085 } # Karmana, Bam, IMPASSIBLE TERRAIN 254 -> Nurmashiir + link = { autogenerated = yes imp = 3415 ck3 = 4084 ck3 = 4076 } # Throasca -> Dardjiin, Khabis + link = { autogenerated = yes imp = 3424 imp = 3414 ck3 = 4081 } # Pantyene, Stabaei -> Mashiz + link = { autogenerated = yes imp = 3423 ck3 = 4080 } # Caumata -> Rudhan + link = { autogenerated = yes imp = 3421 ck3 = 4079 } # Rhapses -> Anar + link = { autogenerated = yes imp = 3412 imp = 3413 ck3 = 4078 } # Ardashir, Madomastice -> Kirman + link = { autogenerated = yes imp = 3429 imp = 3416 ck3 = 4077 } # Paradana, Zarand -> Zarand + link = { autogenerated = yes imp = 3473 ck3 = 4074 ck3 = 4075 } # Ravar -> Kuhbayan, Rawar + link = { autogenerated = yes imp = 3474 ck3 = 4073 } # Ecbatana Magorum -> Behabad + link = { autogenerated = yes imp = 5446 ck3 = 4070 } # Lut Desert -> Khur + link = { autogenerated = yes imp = 3470 imp = 3460 imp = 5438 ck3 = 4069 } # Simpsimidi, Tabai Persikai, Great Kavir -> Tabas + link = { autogenerated = yes imp = 6601 imp = 6598 ck3 = 4066 } # Saripha, Darium -> Junabid + link = { autogenerated = yes imp = 6603 imp = 6597 ck3 = 4065 } # Mila, Zamouchana -> Barandud + link = { autogenerated = yes imp = 6599 ck3 = 4063 } # Biriand -> Birjand + link = { autogenerated = yes imp = 6600 ck3 = 4062 } # Ambrodax -> Qain + link = { autogenerated = yes imp = 3428 imp = 3475 imp = 6504 ck3 = 4056 } # Artacana, Chadormalu, Parhe -> Khazana + link = { autogenerated = yes imp = 3430 ck3 = 4055 } # Arbua -> Fahraj + link = { autogenerated = yes imp = 3417 ck3 = 4053 ck3 = 4054 } # Issatis -> Yazd, Maibud + link = { autogenerated = yes imp = 3419 imp = 3418 ck3 = 4052 } # Portippa, Nincildae -> Uqda + link = { autogenerated = yes imp = 5441 ck3 = 4050 } # Kavir Desert -> Uzwara + link = { autogenerated = yes imp = 6507 imp = 3432 ck3 = 4049 } # Naein, Kular -> Ardistan + link = { autogenerated = yes imp = 3433 imp = 6510 ck3 = 4048 } # Ardesh, Orubicaria -> Natanz + link = { autogenerated = yes imp = 3453 imp = 3442 ck3 = 4046 } # Khuvara, Canatha -> Khuwar + link = { autogenerated = yes imp = 3459 imp = 3458 imp = 4994 imp = 4993 ck3 = 4045 } # Pasacartia, Calliope, Semina, Apameia -> Simnan + link = { autogenerated = yes imp = 6666 imp = 6658 imp = 6659 imp = 6660 imp = 6723 ck3 = 4044 } # Abarbina, Gathar, Kala, Bandiyan, Apauarktike -> Abivard + link = { autogenerated = yes imp = 6657 imp = 5398 ck3 = 4041 } # Nisaia, Salos -> Shahrastan + link = { autogenerated = yes imp = 6656 imp = 3445 imp = 3447 ck3 = 4040 } # Asaak, Sangast, Salak -> Dawin + link = { autogenerated = yes imp = 6728 imp = 6729 ck3 = 4039 } # Kilaleh, Dasht -> Samaiqan + link = { autogenerated = yes imp = 6810 ck3 = 4036 } # Sild -> Farava + link = { autogenerated = yes imp = 5390 imp = 5422 ck3 = 4035 } # Acasta, Tenetis -> Oboy + link = { autogenerated = yes imp = 6776 imp = 6725 ck3 = 4033 } # Dihistan, Akhur -> Dihistan + link = { autogenerated = yes imp = 3436 ck3 = 4031 } # Asbana -> Abaskun + link = { autogenerated = yes imp = 6727 ck3 = 4029 ck3 = 4030 } # Shikh -> Gurgan, Bakrabad + link = { autogenerated = yes imp = 3437 imp = 3435 imp = 3438 ck3 = 4028 } # Sirynx, Zadrakarta, Gurgan -> Astarabad + link = { autogenerated = yes imp = 3439 ck3 = 4027 } # Komish -> Gerdkuh + link = { autogenerated = yes imp = 3449 imp = 3441 ck3 = 4023 } # Sapham, Argiyan -> Isfarain + link = { autogenerated = yes imp = 3440 ck3 = 4022 } # Taga -> Jajarm + link = { autogenerated = yes imp = 3469 imp = 3468 ck3 = 4021 } # Parvand, Deraza -> Mazinan + link = { autogenerated = yes imp = 3444 ck3 = 4020 } # Vishpauzatis -> Sabzavar + link = { autogenerated = yes imp = 3463 imp = 3462 imp = 3465 imp = 3467 ck3 = 4019 } # Doruneh, Sarmagana, Siphare, Oscanidati -> Keshmar + link = { autogenerated = yes imp = 3448 imp = 3451 imp = 5387 ck3 = 4018 } # Dakhtar, Sathis, IP 388 -> Rivand + link = { autogenerated = yes imp = 3450 ck3 = 4017 ck3 = 12890 } # Patigrabana -> Nishapur, alborz_mountains + link = { autogenerated = yes imp = 3466 ck3 = 4016 ck3 = 12892 } # Rivash -> Shamat, persia_mountains + link = { autogenerated = yes imp = 6544 imp = 5386 ck3 = 4014 } # Dirma, IP 387 -> Farhadjird + link = { autogenerated = yes imp = 3446 ck3 = 4012 ck3 = 4043 } # Yetaan -> Tus, Khabushan + link = { autogenerated = yes imp = 3454 ck3 = 4010 ck3 = 4013 } # Tusa -> Mazduran, Nuqaq + link = { autogenerated = yes imp = 6663 ck3 = 4009 } # Ragau -> Shiraz-Sarakhsi + link = { autogenerated = yes imp = 6662 ck3 = 4007 } # Abivard -> Sarakhs + link = { autogenerated = yes imp = 4986 ck3 = 4004 } # Parachoatras -> Lahij + link = { autogenerated = yes imp = 3387 imp = 1524 imp = 1593 ck3 = 4003 } # Mediana, Qara Sheshen, Miyana -> Kursara + link = { autogenerated = yes imp = 1627 imp = 3390 ck3 = 4002 } # Ardabil, Farrab -> Khalkhal + link = { autogenerated = yes imp = 4985 ck3 = 4000 } # Kyropolis -> Gilan + link = { autogenerated = yes imp = 11515 imp = 11516 ck3 = 3997 } # Lahunipara, Deogarh -> Rajgangpur + link = { autogenerated = yes imp = 7141 ck3 = 3996 } # Komana -> Ranipur + link = { autogenerated = yes imp = 7166 ck3 = 3995 ck3 = 1249 } # Vinitapura -> Vinitapura, Sambalpur + link = { autogenerated = yes imp = 7176 imp = 6054 ck3 = 3994 } # Bilagada, Kalingana -> Yajatinagara + link = { autogenerated = yes imp = 7095 imp = 7131 imp = 7140 ck3 = 3993 } # Sripura, Raipur, Dhamtari -> Rajiva_Lochana + link = { autogenerated = yes imp = 7130 ck3 = 3992 ck3 = 3991 ck3 = 7932 } # Bhilapura -> Camparanya, Shivapura, Lanjika + link = { autogenerated = yes imp = 7171 ck3 = 3990 ck3 = 930 ck3 = 3989 } # Bhuvanesvara -> Nayagarh, Sakshigopal, Nilamadhav + link = { autogenerated = yes imp = 11513 ck3 = 3988 } # Gopalprasad -> Deogarh + link = { autogenerated = yes imp = 11510 imp = 11514 ck3 = 3985 } # Kamakhyanagar, Gadapalsuni -> Ghatagaon + link = { autogenerated = yes imp = 7180 ck3 = 3983 ck3 = 3986 } # Khijjngalalla -> Asanapat, Malayagiri + link = { autogenerated = yes imp = 7178 ck3 = 3981 ck3 = 1247 } # Bhamangati -> Baleshvara, Khijjinga + link = { autogenerated = yes imp = 7179 imp = 6052 ck3 = 3980 } # Utkalava, Chattisgarh -> Bhadrak + link = { autogenerated = yes imp = 4878 ck3 = 3978 } # Aborisia -> Torna + link = { autogenerated = yes imp = 4839 ck3 = 3975 } # Grissia -> Pankota + link = { autogenerated = yes imp = 4840 ck3 = 3974 } # Zurobara -> Nagylak + link = { autogenerated = yes imp = 4828 imp = 4265 imp = 4829 imp = 4833 ck3 = 3973 } # Vallum Romanum, Caput Bubali, Centum Putea, Bersovia -> Boksanbanya + link = { autogenerated = yes imp = 7471 imp = 7219 ck3 = 3972 } # Orai, Suktivati -> Jalaun + link = { autogenerated = yes imp = 6853 imp = 6851 ck3 = 3971 } # Gallita, Daria -> Karoonjar + link = { autogenerated = yes imp = 7453 ck3 = 3967 } # Kakaradika -> Chandrehi + link = { autogenerated = yes imp = 7463 ck3 = 3965 } # Dudahi -> Dhamoni + link = { autogenerated = yes imp = 4474 imp = 7470 ck3 = 3964 } # Suktimati, Mahoba -> Umri + link = { autogenerated = yes imp = 4467 imp = 7321 ck3 = 3963 } # Ambaloda, Bharhut -> Bhatta + link = { autogenerated = yes imp = 4485 ck3 = 3962 } # Khajuraha -> Khajuraho + link = { autogenerated = yes imp = 7409 ck3 = 3961 } # Kalapriya -> Rath + link = { autogenerated = yes imp = 4434 ck3 = 3959 } # Sotthavati -> Ajaigarh + link = { autogenerated = yes imp = 7372 imp = 7484 ck3 = 3958 } # Kusavati, Bhawaniganj -> Gorakhpur + link = { autogenerated = yes imp = 4458 imp = 7489 ck3 = 3957 } # Ramagrama, Birganj -> Barohiya + link = { autogenerated = yes imp = 7378 imp = 7405 ck3 = 3956 } # Lakhimpur, Pilibhit -> Lakhimpur + link = { autogenerated = yes imp = 4451 imp = 4437 ck3 = 3954 } # Sravasti, Ayodhya -> Gonda + link = { autogenerated = yes imp = 7483 ck3 = 3953 } # Mehdawal -> Faizabad + link = { autogenerated = yes imp = 4859 ck3 = 3947 } # Metanastiana -> Elesd + link = { autogenerated = yes imp = 4500 ck3 = 3944 } # Hargita -> Sepsiszentgyorgy + link = { autogenerated = yes imp = 4294 ck3 = 3943 } # Angustia -> Balvanyos + link = { autogenerated = yes imp = 4293 imp = 5113 ck3 = 3942 } # Ramidava, IMPASSIBLE TERRAIN 113 -> Brasso + link = { autogenerated = yes imp = 4292 ck3 = 3940 ck3 = 3941 } # Comidava -> Fogaras, Torcsvar + link = { autogenerated = yes imp = 4299 imp = 4298 ck3 = 3939 } # Deva Apulensis, Media -> Szaszkezd + link = { autogenerated = yes imp = 4287 imp = 4280 imp = 4281 ck3 = 3937 } # Decidava, Arutela, Caput Stenarum -> Nagyszeben + link = { autogenerated = yes imp = 4289 ck3 = 3936 } # Ampelum -> Abrudbanya + link = { autogenerated = yes imp = 4297 imp = 4295 imp = 4296 ck3 = 3935 } # Salinae Porolissenses, Cedonia, Zidava -> Kukullovar + link = { autogenerated = yes imp = 3927 ck3 = 3934 } # Celamantia -> Somorja + link = { autogenerated = yes imp = 4282 imp = 4284 ck3 = 3931 } # Sarmizegetusa, Bucium -> Vajdahunyad + link = { autogenerated = yes imp = 4909 ck3 = 3930 ck3 = 3946 } # Utidava -> Csikszereda, Gyergyoszentmiklos + link = { autogenerated = yes imp = 4502 ck3 = 3929 ck3 = 3927 } # Sandava -> Marosvasarhely, Szaszregen + link = { autogenerated = yes imp = 4511 imp = 4510 ck3 = 3925 } # Optatiana, Resculum -> Banffyhunyad + link = { autogenerated = yes imp = 4505 imp = 4503 ck3 = 3924 } # Potaissa, Marcodava -> Torda + link = { autogenerated = yes imp = 4907 ck3 = 3923 } # Vidava -> Laposbanya + link = { autogenerated = yes imp = 4507 imp = 4504 ck3 = 3922 } # Arcobara, Brancona -> Szek + link = { autogenerated = yes imp = 4508 imp = 4509 ck3 = 3921 } # Samum, Porolissum -> Des + link = { autogenerated = yes imp = 4910 ck3 = 3919 ck3 = 3920 ck3 = 5035 } # Attidava -> Beszterce, Radna, Vatra Dornei + link = { autogenerated = yes imp = 4905 ck3 = 3917 ck3 = 3914 ck3 = 539 } # Patridava -> Huszt, Tecso, Marmaros + link = { autogenerated = yes imp = 4883 ck3 = 3913 } # Voconis -> Nagyszolos + link = { autogenerated = yes imp = 4908 ck3 = 3908 ck3 = 721 } # Mallites -> Nagybanya, CARPATHIANS + link = { autogenerated = yes imp = 4882 ck3 = 3907 ck3 = 3909 ck3 = 3910 ck3 = 3911 } # Olate -> Szatmar, Szilagy, Kraszna, Tasnad + link = { autogenerated = yes imp = 4838 imp = 4288 imp = 4837 ck3 = 3906 } # Potulatensiana, Micia, Potulatensia -> Lippa + link = { autogenerated = yes imp = 4841 ck3 = 3905 } # Marisia -> Arad + link = { autogenerated = yes imp = 4290 ck3 = 3904 } # Ziridava -> Nagyhalmagy + link = { autogenerated = yes imp = 4836 ck3 = 3903 } # Ziridava Iazygia -> Zarand + link = { autogenerated = yes imp = 4851 imp = 4861 ck3 = 3902 } # Crisia, Ad Statuam -> Zolonta + link = { autogenerated = yes imp = 4881 ck3 = 3899 } # Iconeia -> Gyozeg + link = { autogenerated = yes imp = 4885 ck3 = 3898 ck3 = 537 } # Tolitum -> Borsova, Bereg + link = { autogenerated = yes imp = 4927 ck3 = 3893 ck3 = 3894 } # Mittarium -> Munkacz, Alsoverecke + link = { autogenerated = yes imp = 4877 ck3 = 3891 ck3 = 3892 } # Mebatunum -> Nagyboszormeny, Szoboszlo + link = { autogenerated = yes imp = 4926 ck3 = 3887 ck3 = 3897 ck3 = 3895 } # Dure -> Zynna, Ungvar, Nagyberezna + link = { autogenerated = yes imp = 4880 ck3 = 3886 ck3 = 3889 ck3 = 3890 } # Bilatis -> Szerencs, Szabolcs, Nyir + link = { autogenerated = yes imp = 4879 ck3 = 3885 ck3 = 538 } # Mabatorum -> Zemplen, Abauj + link = { autogenerated = yes imp = 4260 ck3 = 3884 } # Castra Arcidava -> Fehertemplom + link = { autogenerated = yes imp = 4827 ck3 = 3883 } # Lederata -> Ersomlyo + link = { autogenerated = yes imp = 4261 ck3 = 3882 } # Putea -> Kraso + link = { autogenerated = yes imp = 4264 ck3 = 3881 } # Tibiscum -> Karansebes + link = { autogenerated = yes imp = 4830 ck3 = 3880 } # Maschianae -> Lugos + link = { autogenerated = yes imp = 4832 ck3 = 3879 } # Tibirsia -> Becse + link = { autogenerated = yes imp = 4831 ck3 = 3878 } # Ad Sextum -> Pancsova + link = { autogenerated = yes imp = 4826 ck3 = 3877 } # Tricomium -> Kevevar + link = { autogenerated = yes imp = 4886 ck3 = 3876 ck3 = 3888 ck3 = 3896 } # Obutora -> Kassa, Toporo, Varanno + link = { autogenerated = yes imp = 4858 ck3 = 3874 ck3 = 3900 } # Metanastia -> Svarvas, Debrecen + link = { autogenerated = yes imp = 4856 ck3 = 3873 ck3 = 3875 } # Crisiana -> Bekes, Oroshaza + link = { autogenerated = yes imp = 4835 ck3 = 3872 } # Albocensia -> Szeged + link = { autogenerated = yes imp = 4876 ck3 = 3871 ck3 = 3948 } # Obatis -> Miskolc, Eger + link = { autogenerated = yes imp = 4875 ck3 = 3870 ck3 = 3979 ck3 = 524 } # Antia -> Borsod, Szendro, Gemer + link = { autogenerated = yes imp = 4853 ck3 = 3869 ck3 = 523 } # Anartia -> Gyongyospata, Hewes + link = { autogenerated = yes imp = 4857 ck3 = 3867 } # Tisia -> Tur + link = { autogenerated = yes imp = 4848 ck3 = 3866 } # Triticum -> Kiskunhalas + link = { autogenerated = yes imp = 4850 imp = 4847 ck3 = 3865 } # Iazygiana, Partiskon -> Csongrad + link = { autogenerated = yes imp = 4846 ck3 = 3864 } # Tibiscua -> Zenta + link = { autogenerated = yes imp = 4845 imp = 4844 ck3 = 3863 } # Agria, Florentia -> Bodrog + link = { autogenerated = yes imp = 4888 ck3 = 3862 ck3 = 533 } # Dolum -> Locse, Saris + link = { autogenerated = yes imp = 4889 ck3 = 3860 } # Tantonum -> Barfta + link = { autogenerated = yes imp = 4873 ck3 = 3857 ck3 = 3858 ck3 = 3859 } # Collata -> Breznobanya, Murany, Rimaszombat + link = { autogenerated = yes imp = 4870 ck3 = 3854 ck3 = 3855 ck3 = 3813 ck3 = 3861 } # Maronis -> Liptoujvar, Nemetlipcse, Zsolna, Kesmark + link = { autogenerated = yes imp = 4872 ck3 = 3851 ck3 = 3853 ck3 = 3856 } # Amatria -> Korporna, Selmecbanya, Zolyom + link = { autogenerated = yes imp = 4874 ck3 = 3849 ck3 = 3850 ck3 = 3852 } # Astrum -> Nograd, Balassagyarmat, Losonc + link = { autogenerated = yes imp = 4867 ck3 = 3848 } # Navata -> Hont + link = { autogenerated = yes imp = 4871 ck3 = 3847 } # Bekum -> Kormocbanya + link = { autogenerated = yes imp = 4868 ck3 = 3846 ck3 = 3916 ck3 = 3976 } # Brocasta -> Bars, Batorkeszi, Beny + link = { autogenerated = yes imp = 4168 imp = 4167 ck3 = 3844 } # Sopianae, Limusa -> Pecs + link = { autogenerated = yes imp = 4171 imp = 4172 ck3 = 3843 } # Serena, Cardono -> Siklos + link = { autogenerated = yes imp = 4170 ck3 = 3842 } # Mursa -> Baranyavar + link = { autogenerated = yes imp = 4164 ck3 = 3841 } # Alisca -> Dombovar + link = { autogenerated = yes imp = 4169 ck3 = 3840 ck3 = 3845 } # Lugio -> Simontornya, Mohacs + link = { autogenerated = yes imp = 4162 ck3 = 3839 } # Alta Ripa -> Tolna + link = { autogenerated = yes imp = 4174 ck3 = 3838 } # Piretis -> Szigetvar + link = { autogenerated = yes imp = 4173 ck3 = 3837 } # Sonista -> Csurgo + link = { autogenerated = yes imp = 4166 ck3 = 3836 } # Iovia -> Kaposvar + link = { autogenerated = yes imp = 4163 imp = 4165 ck3 = 3835 } # Tricciana, Silicenis -> Somogyvar + link = { autogenerated = yes imp = 3924 ck3 = 3834 } # Rhacatia -> Sasvar + link = { autogenerated = yes imp = 3925 ck3 = 3832 ck3 = 3952 } # Felicia -> Pecsen, EASTERN EUROPE IMPASSABLE TERRAIN 2 + link = { autogenerated = yes imp = 4869 ck3 = 3831 ck3 = 3833 } # Marrica -> Nyitra, Bajmoc + link = { autogenerated = yes imp = 4842 ck3 = 3830 } # Acumincum -> Titel + link = { autogenerated = yes imp = 4140 ck3 = 3829 } # Salia -> Letenye + link = { autogenerated = yes imp = 4132 ck3 = 3828 } # Volgum -> Egerszeg + link = { autogenerated = yes imp = 4138 ck3 = 3827 } # Mogentiana -> Kolon + link = { autogenerated = yes imp = 4148 ck3 = 3826 } # Pelsodis -> Veszprem + link = { autogenerated = yes imp = 4151 ck3 = 3825 } # Murselliana -> Vasarhely + link = { autogenerated = yes imp = 4149 ck3 = 3824 } # Crispiana -> Zirc + link = { autogenerated = yes imp = 4150 ck3 = 3823 } # Arrabona -> Gyor + link = { autogenerated = yes imp = 4147 ck3 = 3822 } # Quadrata -> Moson + link = { autogenerated = yes imp = 4139 ck3 = 3820 } # Mestrianis -> Vasvar + link = { autogenerated = yes imp = 4141 ck3 = 3819 ck3 = 3821 } # Sabaria -> Koszeg, Kormend + link = { autogenerated = yes imp = 4146 ck3 = 3818 } # Mursella Prima -> Kapuvar + link = { autogenerated = yes imp = 4144 imp = 4142 imp = 4145 ck3 = 3817 } # Scarbantia, Bassena, Muteno -> Sopron + link = { autogenerated = yes imp = 3919 ck3 = 3815 ck3 = 3816 } # Anduetium -> Poszony, Szomolany + link = { autogenerated = yes imp = 4866 ck3 = 3811 ck3 = 3812 ck3 = 3814 ck3 = 642 } # Laugaricio -> Trenscen, Puho, Turoc, HUNGARIAN-MORAVIAN MOUNTAINS + link = { autogenerated = yes imp = 4892 ck3 = 3810 ck3 = 525 ck3 = 4969 } # Ibadura -> Twardosczino, Orava, Nowy Targ + link = { autogenerated = yes imp = 4155 ck3 = 3809 } # Brigetio -> Komarom + link = { autogenerated = yes imp = 4156 ck3 = 3808 } # Crumerum -> Esztergom + link = { autogenerated = yes imp = 4849 ck3 = 3807 } # Iazygia -> Kalocsa + link = { autogenerated = yes imp = 4158 ck3 = 3806 } # Campona -> Csakvar + link = { autogenerated = yes imp = 4160 imp = 4159 imp = 4161 ck3 = 3805 } # Gorsium, Floriana, Intercisa -> Szekesfehervar + link = { autogenerated = yes imp = 4157 ck3 = 3803 } # Aquincum -> Buda + link = { autogenerated = yes imp = 4854 ck3 = 3802 ck3 = 3804 ck3 = 3868 } # Anartiana -> Cegled, Kecskemet, Szolnok + link = { autogenerated = yes imp = 444 ck3 = 3801 } # Aigion -> Vostitsa + link = { autogenerated = yes imp = 431 imp = 5057 ck3 = 3800 } # Messene, IMPASSIBLE TERRAIN 057 -> Kalamata + link = { autogenerated = yes imp = 2189 ck3 = 38 ck3 = 39 } # Coriondia -> ENNISCORTHY, FERNS + link = { autogenerated = yes imp = 451 imp = 441 imp = 7903 imp = 7734 ck3 = 3799 } # Troizen, Epidauros, Hermione, Methana Volcano -> Damala + link = { autogenerated = yes imp = 440 ck3 = 3798 } # Argos -> Argos + link = { autogenerated = yes imp = 395 ck3 = 3797 ck3 = 3703 } # Pialeia -> Trikala, Gardiki + link = { autogenerated = yes imp = 400 ck3 = 3795 ck3 = 3785 } # Elimia -> Grevena, Kalyvia + link = { autogenerated = yes imp = 399 imp = 475 imp = 5066 ck3 = 3794 } # Lamia, Herakleia Trachinia, IMPASSIBLE TERRAIN 066 -> Zetouni + link = { autogenerated = yes imp = 401 imp = 469 ck3 = 3793 } # Hypate, Thaumakoi -> Neopatras + link = { autogenerated = yes imp = 398 ck3 = 3790 ck3 = 3792 } # Nea Halos -> Halmyros, Gardikia + link = { autogenerated = yes imp = 390 ck3 = 3789 } # Pherai -> Velestino + link = { autogenerated = yes imp = 404 imp = 388 imp = 8023 imp = 5071 ck3 = 3788 } # Olooson, Gonnoi, Tempe Pass, IMPASSIBLE TERRAIN 071 -> Elasson + link = { autogenerated = yes imp = 6399 imp = 380 imp = 428 ck3 = 3786 } # Pydna, Dion, Methone -> Platamon + link = { autogenerated = yes imp = 381 imp = 382 imp = 5072 ck3 = 3784 } # Beroia, Edessa, IMPASSIBLE TERRAIN 072 -> Veria + link = { autogenerated = yes imp = 383 ck3 = 3783 } # Europos -> Voden + link = { autogenerated = yes imp = 379 ck3 = 3782 } # Pella -> Sthlanitza + link = { autogenerated = yes imp = 386 ck3 = 3779 } # Asseros -> Langades + link = { autogenerated = yes imp = 385 ck3 = 3778 } # Tauriana -> Gynaikokastron + link = { autogenerated = yes imp = 376 ck3 = 3777 } # Poteidaia -> Kassandreia + link = { autogenerated = yes imp = 377 imp = 378 ck3 = 3776 } # Akanthos, Torone -> Ierrisos + link = { autogenerated = yes imp = 374 ck3 = 3775 ck3 = 491 } # Kalindoia -> Rendina, Chalkidike + link = { autogenerated = yes imp = 366 ck3 = 3774 ck3 = 3780 } # Tragilos -> Chrysopolis, Mavrouda + link = { autogenerated = yes imp = 365 ck3 = 3773 } # Amphipolis -> Kavala + link = { autogenerated = yes imp = 364 ck3 = 3772 ck3 = 3554 } # Philippoi -> Drama, Rodopi + link = { autogenerated = yes imp = 369 imp = 5100 ck3 = 3771 } # Sirra, IMPASSIBLE TERRAIN 100 -> Serres + link = { autogenerated = yes imp = 356 ck3 = 3769 } # Thasos -> Thasos + link = { autogenerated = yes imp = 357 ck3 = 3768 } # Maroneia -> Traianopolis + link = { autogenerated = yes imp = 363 ck3 = 3767 } # Neapolis Thrake -> Xanthia + link = { autogenerated = yes imp = 354 ck3 = 3766 } # Ainos -> Ainos + link = { autogenerated = yes imp = 353 ck3 = 3765 } # Kypsela -> Kypsela + link = { autogenerated = yes imp = 352 ck3 = 3763 } # Ornoi -> Chariopolis + link = { autogenerated = yes imp = 346 ck3 = 3762 } # Perinthos -> Herakleia Perinthos + link = { autogenerated = yes imp = 341 imp = 345 ck3 = 3761 } # Philia, Selymbria -> Selymbria + link = { autogenerated = yes imp = 348 imp = 4154 ck3 = 3760 } # Bergoule, Burtudizon -> Arkadiopolis + link = { autogenerated = yes imp = 342 ck3 = 3759 } # Salmydessos -> Bizye + link = { autogenerated = yes imp = 454 imp = 1996 ck3 = 3757 } # Thera, Astypalaia -> Thera + link = { autogenerated = yes imp = 452 imp = 1835 ck3 = 3756 } # Tenos, Delos -> Tinos + link = { autogenerated = yes imp = 1903 imp = 437 imp = 443 imp = 447 imp = 472 ck3 = 3755 } # Andros, Seriphos, Kythnos, Syros, Kea -> Andros + link = { autogenerated = yes imp = 1974 imp = 220 ck3 = 3754 } # Samos, Oinoe Ikarias -> Samos + link = { autogenerated = yes imp = 277 ck3 = 3753 } # Skyros -> Skyros + link = { autogenerated = yes imp = 270 imp = 1774 imp = 297 ck3 = 3752 } # Lemnos, Samothrake, Imbros -> Lemnos + link = { autogenerated = yes imp = 258 imp = 259 ck3 = 3751 } # Polymedion, Assos -> Alexandria Troas + link = { autogenerated = yes imp = 260 imp = 257 imp = 268 imp = 7909 ck3 = 3750 } # Kebren, Ilion, Skepsis, Ida Mons -> Ilion + link = { autogenerated = yes imp = 256 ck3 = 3749 } # Lampsakos -> Lampsakos + link = { autogenerated = yes imp = 254 imp = 255 ck3 = 3748 } # Zeleia, Parium -> Pagaea + link = { autogenerated = yes imp = 251 imp = 248 ck3 = 3747 } # Miletopolis, Myrleia -> Lopadion + link = { autogenerated = yes imp = 359 ck3 = 3746 } # Lyctus -> Ierapetra + link = { autogenerated = yes imp = 344 imp = 355 ck3 = 3745 } # Praesos, Hierapytna -> Agios Nikolaos + link = { autogenerated = yes imp = 370 ck3 = 3744 } # Tarrha -> Paleohora + link = { autogenerated = yes imp = 351 imp = 372 imp = 8016 imp = 8014 ck3 = 3743 } # Rhithymna, Korion, Lappa, Idaion Mons -> Rethymno + link = { autogenerated = yes imp = 280 ck3 = 3742 } # Poseidion -> Karpathos + link = { autogenerated = yes imp = 1830 imp = 7936 imp = 7937 imp = 8015 ck3 = 3741 } # Lindos, Nisyros, Telos, Kameiros -> Lindos + link = { autogenerated = yes imp = 1970 imp = 1653 imp = 310 ck3 = 3740 } # Kos, Kalymnos, Leros -> Kos + link = { autogenerated = yes imp = 4189 imp = 4190 ck3 = 3739 } # Sirmium, Bassiana -> Szerem + link = { autogenerated = yes imp = 449 ck3 = 3738 } # Kleitor -> Kalavryta + link = { autogenerated = yes imp = 446 imp = 439 imp = 5059 ck3 = 3737 } # Elis, Olympia, IMPASSIBLE TERRAIN 059 -> Andravida + link = { autogenerated = yes imp = 473 imp = 430 imp = 7889 ck3 = 3736 } # Leuktron, Gytheion, Tainaron -> Mistra + link = { autogenerated = yes imp = 427 imp = 450 ck3 = 3735 } # Sparta, Kyphanta -> Lacedaemonia + link = { autogenerated = yes imp = 433 imp = 435 ck3 = 3734 } # Lepreon, Heraia -> Arcadia + link = { autogenerated = yes imp = 438 imp = 7891 imp = 7892 imp = 5056 imp = 5060 ck3 = 3732 } # Mantinea, Tegea, Thyrea, IMPASSIBLE TERRAIN 056, IMPASSIBLE TERRAIN 060 -> Nikli + link = { autogenerated = yes imp = 417 imp = 7897 imp = 7902 ck3 = 3731 } # Megara, Eleusis, Salamis -> Megara + link = { autogenerated = yes imp = 426 imp = 406 imp = 7802 imp = 7800 ck3 = 3730 } # Thebes, Anthedon, Tanagra, Cithaeron Mons -> Thebes + link = { autogenerated = yes imp = 424 imp = 7797 ck3 = 3729 } # Delphi, Parnassus Mons -> Amfissa + link = { autogenerated = yes imp = 423 imp = 402 imp = 468 imp = 7798 imp = 5063 ck3 = 3728 } # Orchomenos, Opous, Thespiai, Elateia, IMPASSIBLE TERRAIN 063 -> Levadia + link = { autogenerated = yes imp = 7896 imp = 5064 ck3 = 3727 } # Nikaia Lokron, IMPASSIBLE TERRAIN 064 -> Boudounitsa + link = { autogenerated = yes imp = 403 imp = 7899 ck3 = 3726 } # Oreus, Kerinthos -> Oreoi + link = { autogenerated = yes imp = 420 ck3 = 3725 } # Peparethos -> Skopelos + link = { autogenerated = yes imp = 2213 ck3 = 3720 ck3 = 3718 } # Albanopolis -> Kruje, Mat + link = { autogenerated = yes imp = 422 ck3 = 3717 } # Apollonia -> Savra + link = { autogenerated = yes imp = 3192 imp = 474 ck3 = 3715 } # Byllis, Omphalion -> Argyrokastron + link = { autogenerated = yes imp = 1445 ck3 = 3713 ck3 = 3714 } # Kodrion -> Antipatreia, Skrapar + link = { autogenerated = yes imp = 467 ck3 = 3711 ck3 = 3712 ck3 = 1041 } # Orikos -> Avlonas, Himara, BALKAN MOUNTAINS + link = { autogenerated = yes imp = 470 ck3 = 3710 } # Korkyra -> Corfu + link = { autogenerated = yes imp = 419 ck3 = 3709 } # Gitana -> Grava + link = { autogenerated = yes imp = 425 ck3 = 3708 ck3 = 3704 } # Dodona -> Ioannina, Vrestenitsa + link = { autogenerated = yes imp = 476 ck3 = 3707 } # Passaron -> Vella + link = { autogenerated = yes imp = 3175 ck3 = 3702 ck3 = 3706 } # Eratyra -> Metzovo, Konitsa + link = { autogenerated = yes imp = 463 ck3 = 3700 } # Thyrrheion -> Angelokastron + link = { autogenerated = yes imp = 2188 ck3 = 37 } # Coriondia Australis -> WEXFORD + link = { autogenerated = yes imp = 465 ck3 = 3699 } # Ambrakia -> Sivista + link = { autogenerated = yes imp = 456 imp = 462 ck3 = 3697 } # Thermon, Stratos -> Prousos + link = { autogenerated = yes imp = 460 ck3 = 3696 } # Zakynthos -> Zakynthos + link = { autogenerated = yes imp = 4255 imp = 4254 imp = 4257 ck3 = 3695 } # Tomis, Callatis, Sacidava -> Mangalia + link = { autogenerated = yes imp = 4520 imp = 4514 imp = 4516 imp = 4517 imp = 4518 imp = 4519 ck3 = 3694 } # Troesmis, Carsium, Argamum, Libida, Troismis, Halmyris -> Tulcha + link = { autogenerated = yes imp = 4248 ck3 = 3693 } # Odessus -> Varna + link = { autogenerated = yes imp = 4307 ck3 = 3692 ck3 = 3683 } # Eidos -> Ktenia, Elena + link = { autogenerated = yes imp = 480 ck3 = 3691 ck3 = 498 } # Mesembria -> Aytos, Mesembria + link = { autogenerated = yes imp = 6010 ck3 = 369 ck3 = 370 ck3 = 371 ck3 = 372 } # Vineta -> WYSBU, GARNAE, BURSS, FAROO + link = { autogenerated = yes imp = 4258 imp = 5108 ck3 = 3689 } # Panisus, IMPASSIBLE TERRAIN 108 -> Preslav + link = { autogenerated = yes imp = 4259 ck3 = 3688 } # Zikideba -> Sborishte + link = { autogenerated = yes imp = 4243 ck3 = 3686 } # Abritus -> Shumen + link = { autogenerated = yes imp = 4242 ck3 = 3685 } # Transmarisca -> Tutrakan + link = { autogenerated = yes imp = 4240 ck3 = 3682 } # Prista -> Cherven + link = { autogenerated = yes imp = 4234 imp = 4236 imp = 4237 ck3 = 3680 } # Melta, Emporium Discoduraterae, Nikopolis -> Lovech + link = { autogenerated = yes imp = 4233 imp = 4231 imp = 4232 ck3 = 3679 } # Storgosia, Asamus, Ad Putea -> Pliven + link = { autogenerated = yes imp = 4225 imp = 4228 imp = 4230 ck3 = 3678 } # Tautiomosis, Trullensium, Scretisca -> Vratsa + link = { autogenerated = yes imp = 4221 ck3 = 3677 } # Montana -> Kutlovitsa + link = { autogenerated = yes imp = 4227 imp = 4226 ck3 = 3676 } # Oescus, Vicus Siamus -> Orehovo + link = { autogenerated = yes imp = 4224 imp = 4223 ck3 = 3675 } # Cebrus, Almus -> Lom + link = { autogenerated = yes imp = 3853 imp = 4235 imp = 488 imp = 5105 ck3 = 3673 } # Sparata, Sostra, Pistiros, IMPASSIBLE TERRAIN 105 -> Stipon + link = { autogenerated = yes imp = 499 ck3 = 3672 } # Spinopara -> Pernik + link = { autogenerated = yes imp = 477 ck3 = 3671 } # Serdica -> Meldi + link = { autogenerated = yes imp = 4220 imp = 4217 imp = 5094 ck3 = 3670 } # Combustica, Ratiaria, IMPASSIBLE TERRAIN 094 -> Belogradchik + link = { autogenerated = yes imp = 4213 imp = 4212 imp = 4218 ck3 = 3668 } # Romuliana, Bao, Castra Martis -> Zajecar + link = { autogenerated = yes imp = 4209 imp = 4214 ck3 = 3667 } # Egeta, Clevora -> Kladovo + link = { autogenerated = yes imp = 4204 ck3 = 3666 } # Idimum -> Ravno + link = { autogenerated = yes imp = 4207 imp = 4208 ck3 = 3665 } # Cuppae, Taliata -> Kucevo + link = { autogenerated = yes imp = 4200 imp = 4201 ck3 = 3664 } # Viminacium Moesiacum, Municipium -> Branicevo + link = { autogenerated = yes imp = 4219 ck3 = 3661 } # Timacum -> Svrljig + link = { autogenerated = yes imp = 4098 imp = 5093 ck3 = 3660 } # Ulpiana, Upper Dardania -> Morava + link = { autogenerated = yes imp = 4114 imp = 4110 imp = 5092 ck3 = 3657 } # Ad Fines Dardaniae, Tauresium, IMPASSIBLE TERRAIN 092 -> Glubocica + link = { autogenerated = yes imp = 4117 ck3 = 3656 } # Pautalia -> Velbazhd + link = { autogenerated = yes imp = 4152 imp = 5097 ck3 = 3655 } # Tranupara, IMPASSIBLE TERRAIN 097 -> Kratovo + link = { autogenerated = yes imp = 497 imp = 4153 imp = 5099 ck3 = 3653 } # Herakleia Sintike, Paroikopolis, IMPASSIBLE TERRAIN 099 -> Melnik + link = { autogenerated = yes imp = 4302 imp = 4303 imp = 4304 ck3 = 3650 } # Doberos, Astraia, Astibos -> Strumica + link = { autogenerated = yes imp = 4305 ck3 = 3648 } # Bylazora -> Shtip + link = { autogenerated = yes imp = 405 imp = 393 ck3 = 3647 } # Stuberra, Pelagonia -> Prilep + link = { autogenerated = yes imp = 4096 ck3 = 3643 ck3 = 3644 ck3 = 3645 } # Scupi -> Skopje, Tetovo, Veles + link = { autogenerated = yes imp = 4108 ck3 = 3642 } # Vizinia -> Zegligovo + link = { autogenerated = yes imp = 3356 imp = 5068 ck3 = 3641 } # Beoue, Upper Epirus -> Goritsa + link = { autogenerated = yes imp = 3125 ck3 = 3639 } # Keletron -> Devol + link = { autogenerated = yes imp = 411 ck3 = 3638 } # Herakleia Lynkestis -> Bitola + link = { autogenerated = yes imp = 484 imp = 478 ck3 = 3636 } # Beroe, Seuthopolis -> Kran + link = { autogenerated = yes imp = 479 ck3 = 3635 } # Kabyle -> Sliven + link = { autogenerated = yes imp = 491 ck3 = 3633 } # Bourdepa -> Janitsa + link = { autogenerated = yes imp = 4309 ck3 = 3632 } # Pizos -> Beroe + link = { autogenerated = yes imp = 496 ck3 = 3631 } # Kabakle -> Dbilin + link = { autogenerated = yes imp = 4312 ck3 = 3630 } # Debelton -> Potamukastel + link = { autogenerated = yes imp = 343 ck3 = 3629 ck3 = 3758 } # Aulaiouteichos -> Sozopol, Salmydessus + link = { autogenerated = yes imp = 481 imp = 482 ck3 = 3628 } # Anchialos, Apollonia Pontike -> Burgas + link = { autogenerated = yes imp = 490 ck3 = 3626 ck3 = 3627 } # Zerbai -> Mezeshka, Didymoteichon + link = { autogenerated = yes imp = 4311 ck3 = 3624 } # Parambole -> Stanimaka + link = { autogenerated = yes imp = 494 ck3 = 3621 ck3 = 3620 } # Oraion -> Ustra, Smolyan + link = { autogenerated = yes imp = 492 ck3 = 3619 ck3 = 3622 } # Rhodope -> Lyutitsa, Byalgrad + link = { autogenerated = yes imp = 414 ck3 = 3617 ck3 = 3615 } # Keirpara -> Nevrokop, Dospat + link = { autogenerated = yes imp = 4306 ck3 = 3614 ck3 = 3623 } # Keirpara -> Kalyatta, Tsepina + link = { autogenerated = yes imp = 4193 ck3 = 3613 } # Altina -> Zemun + link = { autogenerated = yes imp = 4192 ck3 = 3611 } # Spaneta -> Ilok + link = { autogenerated = yes imp = 4191 ck3 = 3610 } # Causilena -> Vakovo + link = { autogenerated = yes imp = 4188 ck3 = 3609 } # Cibalae -> Osijek + link = { autogenerated = yes imp = 4197 imp = 4122 ck3 = 3607 } # Moesiana, Parthinia -> Uzice + link = { autogenerated = yes imp = 4124 ck3 = 3606 } # Ad Drinum -> Krupanj + link = { autogenerated = yes imp = 4196 ck3 = 3605 } # Siluvia -> Debrc + link = { autogenerated = yes imp = 4194 ck3 = 3604 } # Gensis -> Macva + link = { autogenerated = yes imp = 4203 ck3 = 3603 } # Horreum Margi -> Kragujevac + link = { autogenerated = yes imp = 4206 ck3 = 3602 } # Bannea -> Rudnik + link = { autogenerated = yes imp = 4205 imp = 4199 ck3 = 3601 } # Aureus Mons, Margum -> Smederevo + link = { autogenerated = yes imp = 4111 ck3 = 3600 } # Hammeum -> Prokuplje + link = { autogenerated = yes imp = 4118 ck3 = 3598 ck3 = 3599 } # Gramrianae -> Krusevac, Koznik + link = { autogenerated = yes imp = 4095 ck3 = 3597 } # Theranda -> Prizren + link = { autogenerated = yes imp = 4099 ck3 = 3596 } # Vicianum -> Pristina + link = { autogenerated = yes imp = 4093 ck3 = 3595 ck3 = 503 } # Siparantum -> Pec, Hum + link = { autogenerated = yes imp = 4100 ck3 = 3594 } # Municipium Dardanorum -> Zvecan + link = { autogenerated = yes imp = 4103 ck3 = 3591 ck3 = 3584 ck3 = 3592 } # Sevastum -> Sjenica, Prijepolje, Budlimlje + link = { autogenerated = yes imp = 4106 imp = 5080 ck3 = 3590 } # Risetia, IMPASSIBLE TERRAIN 080 -> Rujno + link = { autogenerated = yes imp = 12767 ck3 = 359 ck3 = 361 ck3 = 362 ck3 = 363 ck3 = 364 } # Swestar -> DILSBO, SEILANGER, HAFRA, LIDH, HEDANGER + link = { autogenerated = yes imp = 4121 ck3 = 3589 ck3 = 3587 } # Gradus -> Arilje, Gradac + link = { autogenerated = yes imp = 4120 ck3 = 3588 } # Praesidium Illyricum -> Zica + link = { autogenerated = yes imp = 4127 ck3 = 3581 } # Malvesia -> Visegrad + link = { autogenerated = yes imp = 1144 ck3 = 3580 ck3 = 3578 } # Skodra -> Skadar, Drivast + link = { autogenerated = yes imp = 12765 ck3 = 358 ck3 = 298 } # Marir -> FARILA, SVEG + link = { autogenerated = yes imp = 4102 ck3 = 3577 ck3 = 3586 } # Grabaion -> Moraca, Brskovo + link = { autogenerated = yes imp = 2336 ck3 = 3576 ck3 = 3719 } # Lissos -> Ulcinj, Lezhe + link = { autogenerated = yes imp = 4090 ck3 = 3575 } # Bouthoe -> Antivari + link = { autogenerated = yes imp = 4091 ck3 = 3574 } # Askrebion -> Kotor + link = { autogenerated = yes imp = 4088 ck3 = 3573 } # Rhizon -> Risan + link = { autogenerated = yes imp = 4087 ck3 = 3572 ck3 = 3571 } # Anderba -> Trebinje, Onogost + link = { autogenerated = yes imp = 394 ck3 = 3570 ck3 = 3791 } # Pharsalos -> Pharsalos, Domokos + link = { autogenerated = yes imp = 12766 ck3 = 357 ck3 = 360 } # Barutr -> BALDANAS, NORALE + link = { autogenerated = yes imp = 4082 ck3 = 3569 } # Narona -> Ston + link = { autogenerated = yes imp = 4107 ck3 = 3567 ck3 = 3568 } # Haedum -> Vhrbosna, Rogatica + link = { autogenerated = yes imp = 4125 ck3 = 3566 } # Domavia -> Srebrenica + link = { autogenerated = yes imp = 4086 ck3 = 3563 ck3 = 3561 } # Salthua -> Kljuc, Nevesinje + link = { autogenerated = yes imp = 4083 ck3 = 3562 ck3 = 466 } # Dilenton -> Drijeva, Zachlumia + link = { autogenerated = yes imp = 4104 imp = 5082 ck3 = 3560 } # Leusinium, IMPASSIBLE TERRAIN 082 -> Gacko + link = { autogenerated = yes imp = 4080 imp = 5081 ck3 = 3557 } # Aquae Sulphurae, IMPASSIBLE TERRAIN 081 -> Konjic + link = { autogenerated = yes imp = 8027 imp = 8026 ck3 = 3556 } # Korkyra Melaina, Issa -> Hvar + link = { autogenerated = yes imp = 4081 ck3 = 3555 } # Angeliai -> Mokro + link = { autogenerated = yes imp = 4062 ck3 = 3553 } # Salona -> Omis + link = { autogenerated = yes imp = 4084 ck3 = 3552 } # Pharos -> Solin + link = { autogenerated = yes imp = 4057 imp = 4059 ck3 = 3551 } # Bournion, Synodion -> Sinj + link = { autogenerated = yes imp = 4058 ck3 = 3550 } # Skardon -> sibenik + link = { autogenerated = yes imp = 12664 ck3 = 355 ck3 = 356 } # Isa -> OKLABO, ODMARDEN + link = { autogenerated = yes imp = 4056 ck3 = 3547 ck3 = 3549 } # Asseria -> Biograd, Bribir + link = { autogenerated = yes imp = 4055 imp = 5085 ck3 = 3546 } # Argyruntum, Dalmatia -> Obrovac + link = { autogenerated = yes imp = 4053 imp = 4052 ck3 = 3545 } # Ainona, Kissa -> Nin + link = { autogenerated = yes imp = 4051 ck3 = 3544 ck3 = 3541 } # Ancus -> Udbina, Dreznik + link = { autogenerated = yes imp = 4050 imp = 5086 ck3 = 3543 } # Arupium, IMPASSIBLE TERRAIN 086 -> Kaseg + link = { autogenerated = yes imp = 4049 imp = 4035 ck3 = 3542 } # Vegium, Ortopla -> Bag + link = { autogenerated = yes imp = 4033 ck3 = 3540 ck3 = 464 } # Senia -> Brinje, Senj + link = { autogenerated = yes imp = 4036 imp = 5118 ck3 = 3539 } # Metulum, IMPASSIBLE TERRAIN 118 -> Modrus + link = { autogenerated = yes imp = 4042 imp = 4046 ck3 = 3538 } # Raetinium, Valdasus -> Topusko + link = { autogenerated = yes imp = 4040 ck3 = 3537 } # Ad Fines Catariae -> Okic + link = { autogenerated = yes imp = 4045 ck3 = 3536 } # Colapia -> Dubovac + link = { autogenerated = yes imp = 4038 ck3 = 3535 } # Andautonia -> Sisak + link = { autogenerated = yes imp = 4177 ck3 = 3533 } # Varianis -> Cazma + link = { autogenerated = yes imp = 4179 ck3 = 3532 } # Serota -> Verevce + link = { autogenerated = yes imp = 4180 ck3 = 3531 } # Lentulis -> Koprivnica + link = { autogenerated = yes imp = 4186 ck3 = 3530 } # Picentino -> Brod + link = { autogenerated = yes imp = 4184 ck3 = 3529 } # Dravia -> Pozega + link = { autogenerated = yes imp = 4178 ck3 = 3528 } # Iassorum -> Kutina + link = { autogenerated = yes imp = 4043 ck3 = 3521 ck3 = 3522 } # Clandate -> Krupa, Bihac + link = { autogenerated = yes imp = 12667 ck3 = 352 ck3 = 8729 } # Hwitaz -> MOLUNGR, Lima + link = { autogenerated = yes imp = 4073 ck3 = 3519 } # Ad Praetorium -> Vodicevo + link = { autogenerated = yes imp = 4041 ck3 = 3518 } # Segestica -> Dubica + link = { autogenerated = yes imp = 4076 imp = 4077 ck3 = 3517 } # Urbate, Marsonia -> Glaz + link = { autogenerated = yes imp = 4183 ck3 = 3515 } # Incero -> Gradiska + link = { autogenerated = yes imp = 4128 ck3 = 3514 } # Sarviana -> Maglaj + link = { autogenerated = yes imp = 4130 ck3 = 3513 ck3 = 3510 } # Saldia -> Srebrenik, Soli + link = { autogenerated = yes imp = 4129 ck3 = 3512 } # Sarvia -> Tolisa + link = { autogenerated = yes imp = 4123 ck3 = 3511 ck3 = 3565 } # Salinae -> Zvornik, Kuclat + link = { autogenerated = yes imp = 12764 ck3 = 351 ck3 = 8730 } # Hlaiwa -> MOR, Orsa + link = { autogenerated = yes imp = 4126 ck3 = 3509 } # Drinum -> Bijeljina + link = { autogenerated = yes imp = 4070 ck3 = 3507 ck3 = 3508 } # Baloia -> Jajce, Sokol + link = { autogenerated = yes imp = 4071 imp = 5087 ck3 = 3506 } # Leusaba, IMPASSIBLE TERRAIN 087 -> Kotor Varos + link = { autogenerated = yes imp = 4061 ck3 = 3504 ck3 = 3523 ck3 = 3505 ck3 = 3548 } # Splonum -> Kljuc na Sani, Pset, Greben, Knin + link = { autogenerated = yes imp = 4066 ck3 = 3503 ck3 = 3558 } # Delminion -> Imotski, Mostar + link = { autogenerated = yes imp = 4064 imp = 4063 imp = 5083 ck3 = 3502 } # Pelva, Osinion, IMPASSIBLE TERRAIN 083 -> Duvno + link = { autogenerated = yes imp = 4065 ck3 = 3500 } # Salvium -> Glamoc + link = { autogenerated = yes imp = 12666 ck3 = 350 } # Windaz -> FALENE + link = { autogenerated = yes imp = 7438 ck3 = 3499 } # Mahanala -> Bundi + link = { autogenerated = yes imp = 7435 ck3 = 3498 } # Ramgarh -> Ramgarh + link = { autogenerated = yes imp = 4473 ck3 = 3497 } # Madhyamika -> Bhainsrorgarh + link = { autogenerated = yes imp = 7428 ck3 = 3495 } # Manasa -> Rampura + link = { autogenerated = yes imp = 7430 ck3 = 3494 } # Aspur -> Jagadamba + link = { autogenerated = yes imp = 7417 ck3 = 3493 } # Jagadamba -> Rishabhdeo + link = { autogenerated = yes imp = 4496 ck3 = 3492 } # Machhindrapur -> Nagahrada + link = { autogenerated = yes imp = 4495 ck3 = 3491 } # Agathapura -> Eklingji + link = { autogenerated = yes imp = 7658 imp = 6843 ck3 = 3490 } # Srimalla, Abuyya -> Achalgarh + link = { autogenerated = yes imp = 7310 imp = 7413 ck3 = 3489 } # Mandapura, Bhinmal -> Bhillamala + link = { autogenerated = yes imp = 7390 ck3 = 3488 ck3 = 3486 } # Suvarngiri -> Jalor, Siwana + link = { autogenerated = yes imp = 4488 ck3 = 3485 ck3 = 3484 } # Asangai -> Sanderaka, Osian + link = { autogenerated = yes imp = 4439 ck3 = 3483 } # Ambara -> Amer + link = { autogenerated = yes imp = 4438 ck3 = 3481 ck3 = 3969 } # Vairata -> Vairata, Khaluvana + link = { autogenerated = yes imp = 12658 ck3 = 348 ck3 = 353 } # Deuza -> SKYNZEKKEBERGE, NORRBARKE + link = { autogenerated = yes imp = 4454 ck3 = 3472 ck3 = 3474 } # Matipura -> Bachhraon, Bijnor + link = { autogenerated = yes imp = 4453 ck3 = 3471 ck3 = 9094 } # Dhampur -> Amroha, Bhimtal + link = { autogenerated = yes imp = 7403 ck3 = 3470 } # Govishana -> Ujhani + link = { autogenerated = yes imp = 7377 ck3 = 3469 ck3 = 9092 } # Savatthi -> Ahichatra, Champawat + link = { autogenerated = yes imp = 7407 ck3 = 3467 } # Katheria -> Bareily + link = { autogenerated = yes imp = 7387 ck3 = 3466 } # Dausa -> Bayana + link = { autogenerated = yes imp = 7218 ck3 = 3465 } # Yamaprastha -> Dhavalapuri + link = { autogenerated = yes imp = 4426 imp = 4422 ck3 = 3464 } # Kampili, Antaranjiya -> Etah + link = { autogenerated = yes imp = 7404 ck3 = 3463 } # Anupshahr -> Soron + link = { autogenerated = yes imp = 12656 ck3 = 346 ck3 = 349 } # Kweno -> VAESTRAAROS, FERNABO + link = { autogenerated = yes imp = 11529 ck3 = 3459 } # Badopal -> Bhatnir + link = { autogenerated = yes imp = 11544 imp = 4418 ck3 = 3458 } # Nokhar, Satadru -> Jajjanir + link = { autogenerated = yes imp = 4414 imp = 4416 ck3 = 3457 } # Salagishsha, Sunam -> Sunam + link = { autogenerated = yes imp = 4387 ck3 = 3455 } # Agrodakha -> Asika + link = { autogenerated = yes imp = 4411 ck3 = 3453 ck3 = 3454 } # Sthanishvara -> Sthanisvara, Samana + link = { autogenerated = yes imp = 4401 imp = 4402 ck3 = 3452 } # Rupar, Thuna -> Sirhind + link = { autogenerated = yes imp = 4421 ck3 = 3450 } # Varana -> Indrasthana + link = { autogenerated = yes imp = 12659 ck3 = 345 ck3 = 354 } # Naglaz -> HENAMORUM, GAVLE + link = { autogenerated = yes imp = 4404 ck3 = 3448 ck3 = 3451 } # Hastinapura -> Jahanpanah, Hapur + link = { autogenerated = yes imp = 4405 ck3 = 3447 ck3 = 3460 } # Indraprastha -> Dhilika, Krishnajanmabhoomi + link = { autogenerated = yes imp = 4335 imp = 4336 imp = 4337 ck3 = 3446 } # Labaka, Varahasaila Pass, Embolima -> Parihasapura + link = { autogenerated = yes imp = 4317 ck3 = 3443 } # Rudera -> Kalabagh + link = { autogenerated = yes imp = 4320 imp = 4308 imp = 4329 ck3 = 3442 } # Singhapura, Cakravala, Nara -> Lund_Nandana + link = { autogenerated = yes imp = 4300 imp = 4367 ck3 = 3440 } # Pushkalavati, Arjunava -> Shergarh + link = { autogenerated = yes imp = 4322 imp = 4327 ck3 = 3439 } # Alexandreia Nikaia, Kaspira -> Mankiala + link = { autogenerated = yes imp = 4323 imp = 4324 imp = 7657 ck3 = 3438 } # Takht-i-Bahi, Gorya, Purushapura -> Oddiyana + link = { autogenerated = yes imp = 7314 imp = 7319 ck3 = 3437 } # Taxila, Ataka -> Attak + link = { autogenerated = yes imp = 4315 ck3 = 3436 } # Jobnathnagar -> Kunjah + link = { autogenerated = yes imp = 7399 imp = 4316 imp = 4326 ck3 = 3435 } # Rajagrha, Boukephalia, Manikyala -> Jhelum + link = { autogenerated = yes imp = 4391 ck3 = 3434 ck3 = 3431 ck3 = 7945 } # Udambhara -> Kangra, Rahon, Brahmapura + link = { autogenerated = yes imp = 4394 ck3 = 3432 } # Adrestai -> Pathankot + link = { autogenerated = yes imp = 4342 ck3 = 3430 } # Parvata -> Jammu + link = { autogenerated = yes imp = 6031 ck3 = 343 } # Arosia -> ENESCOPINGE + link = { autogenerated = yes imp = 4347 imp = 4344 ck3 = 3429 } # Magaris, Chhamb -> Bhuttar + link = { autogenerated = yes imp = 4331 ck3 = 3428 } # Khushab -> Katasraj + link = { autogenerated = yes imp = 4396 imp = 4380 ck3 = 3427 } # Chandaniot, Mallava -> Bhirr + link = { autogenerated = yes imp = 4399 ck3 = 3425 } # Jayapura -> Phalia + link = { autogenerated = yes imp = 11527 ck3 = 3423 } # Rojhanwali -> Abohar + link = { autogenerated = yes imp = 4395 ck3 = 3422 ck3 = 3426 } # Turvasha -> Satghara, Kamalia + link = { autogenerated = yes imp = 4388 ck3 = 3421 } # Pancapura -> Pancapura + link = { autogenerated = yes imp = 4400 imp = 4346 ck3 = 3420 } # Taki, Madra -> Sangla + link = { autogenerated = yes imp = 12655 ck3 = 342 ck3 = 344 } # Sweraz -> UPPSALA, OSTHAMMAR + link = { autogenerated = yes imp = 4397 imp = 4393 ck3 = 3419 } # Vipasha, Okara -> Chunian + link = { autogenerated = yes imp = 4389 ck3 = 3418 } # Iravatyavar -> Kasur + link = { autogenerated = yes imp = 4386 imp = 11520 ck3 = 3417 } # Jadamapura, Nuktani -> Dera_Ghazi_Khan + link = { autogenerated = yes imp = 4385 ck3 = 3414 } # Shivai -> Alipur + link = { autogenerated = yes imp = 11540 ck3 = 3413 } # Atari -> Kabirwala + link = { autogenerated = yes imp = 4382 ck3 = 3412 } # Anatachara -> Tulamba + link = { autogenerated = yes imp = 4381 ck3 = 3411 ck3 = 3424 } # Shudrakai -> Vehari, Ajodhan + link = { autogenerated = yes imp = 4378 imp = 11543 ck3 = 3410 } # Osioi, Sukah -> Askhanda + link = { autogenerated = yes imp = 6032 ck3 = 341 } # Broborg -> SIGTUNA + link = { autogenerated = yes imp = 11523 imp = 11521 ck3 = 3409 } # Kanganwala, Yazman -> Derawar + link = { autogenerated = yes imp = 4373 ck3 = 3408 } # Siberai -> Chachran + link = { autogenerated = yes imp = 4376 ck3 = 3406 } # Pardabathra -> Shikarpur + link = { autogenerated = yes imp = 4361 ck3 = 3405 } # Megaroi -> Khudabad + link = { autogenerated = yes imp = 6815 ck3 = 3401 ck3 = 3402 } # Patala -> Nirun, Thatta + link = { autogenerated = yes imp = 2185 ck3 = 34 ck3 = 48 } # Gangania Orientalis -> ATHLONE, ROSCREA + link = { autogenerated = yes imp = 6848 ck3 = 3399 ck3 = 3400 } # Sangama -> Badin, Shahbandar + link = { autogenerated = yes imp = 4359 ck3 = 3397 } # Samarabriai -> Matiari + link = { autogenerated = yes imp = 4356 ck3 = 3395 ck3 = 3396 } # Kahu-Jo-Darro -> Mirpur_Khas, Nasarpur + link = { autogenerated = yes imp = 6827 imp = 4353 imp = 4354 ck3 = 3394 } # Khadro, Brahmanaka, Min -> Mir_Rukan + link = { autogenerated = yes imp = 4372 ck3 = 3393 } # Vijnot -> Ghotki + link = { autogenerated = yes imp = 4363 ck3 = 3392 } # Sembrakenoi -> Siraj_ji_Takri + link = { autogenerated = yes imp = 6029 ck3 = 339 } # Rekarne -> STRIGINES + link = { autogenerated = yes imp = 6856 imp = 7414 ck3 = 3385 } # Vallai, Patan -> Kasara + link = { autogenerated = yes imp = 6863 imp = 6860 imp = 6861 imp = 6862 imp = 6865 ck3 = 3383 } # Nagara, Kammonai, Surat, Nousaripa, Paunar -> Navasarika + link = { autogenerated = yes imp = 7420 ck3 = 3382 } # Nandipuri -> Rajpipla + link = { autogenerated = yes imp = 7116 ck3 = 3381 } # Purnaya -> Tadkeshwar + link = { autogenerated = yes imp = 6858 ck3 = 3380 } # Minnagara -> Bharuch + link = { autogenerated = yes imp = 6855 ck3 = 3379 } # Baroda -> Kayavarohan + link = { autogenerated = yes imp = 7419 ck3 = 3376 } # Simalwara -> Ashaval + link = { autogenerated = yes imp = 6830 ck3 = 3375 } # Svabhra -> Khambhat + link = { autogenerated = yes imp = 4489 ck3 = 3372 } # Anandpura -> Siddhapura + link = { autogenerated = yes imp = 7416 ck3 = 3371 ck3 = 3373 } # Mohadavasaka -> Vadnagar, Idar + link = { autogenerated = yes imp = 4494 ck3 = 3370 ck3 = 3377 } # Candanaputraka -> Modhera, Dholka + link = { autogenerated = yes imp = 6026 ck3 = 337 ck3 = 340 ck3 = 8733 } # Miriquidui -> NYKOPUNG, BIRKEVIK, Norrkoping + link = { autogenerated = yes imp = 6835 ck3 = 3369 } # Malia -> Kamboika + link = { autogenerated = yes imp = 6831 ck3 = 3368 } # Satrunavha -> Sihor + link = { autogenerated = yes imp = 6820 ck3 = 3366 } # Valabhi -> Shatrunjaya + link = { autogenerated = yes imp = 6814 ck3 = 3365 } # Automula -> Moherak + link = { autogenerated = yes imp = 6817 ck3 = 3364 } # Sana -> Delvada + link = { autogenerated = yes imp = 6824 ck3 = 3363 } # Astakapra -> Saymur + link = { autogenerated = yes imp = 6823 ck3 = 3362 } # Monoglosson -> Mangrol + link = { autogenerated = yes imp = 6828 ck3 = 3361 } # Kukurra -> Shrinagar + link = { autogenerated = yes imp = 6834 ck3 = 3360 } # Kalavad -> Bhumilka + link = { autogenerated = yes imp = 6030 ck3 = 336 } # Birka -> TALJE + link = { autogenerated = yes imp = 6819 imp = 6832 ck3 = 3359 } # Ujjayanta, Khambalida -> Uperkot + link = { autogenerated = yes imp = 6839 ck3 = 3358 } # Kuvada -> Amarvalli + link = { autogenerated = yes imp = 6838 ck3 = 3357 } # Jhala -> Ranpur + link = { autogenerated = yes imp = 6847 ck3 = 3355 ck3 = 3356 } # Rusia -> Morvi, Halvad + link = { autogenerated = yes imp = 6829 ck3 = 3352 ck3 = 3354 } # Anartta -> Lalpur, Lakhota + link = { autogenerated = yes imp = 6842 ck3 = 3351 } # Kaccha -> Anjar + link = { autogenerated = yes imp = 6844 imp = 6833 imp = 6840 imp = 6845 ck3 = 3350 } # Darangia, Baraca, Maltecoria, Bissai -> Bhuj + link = { autogenerated = yes imp = 4481 ck3 = 3348 ck3 = 3349 } # Barli -> Dhanop, Pushkar + link = { autogenerated = yes imp = 7443 ck3 = 3347 } # Narayana -> Ajayameru + link = { autogenerated = yes imp = 4472 ck3 = 3346 } # Barnala -> Mandrael + link = { autogenerated = yes imp = 7432 imp = 7442 ck3 = 3345 } # Rajsamand, Vyaghrapataka -> Bhilwara + link = { autogenerated = yes imp = 7388 ck3 = 3344 ck3 = 3482 } # Empelathra -> Gangapur, Sanganer + link = { autogenerated = yes imp = 4487 ck3 = 3343 ck3 = 1130 ck3 = 3342 } # Nadvala -> Ranakpur, Mandavyapura, Naddula + link = { autogenerated = yes imp = 7305 ck3 = 3341 } # Gopadri -> Dabra + link = { autogenerated = yes imp = 7306 ck3 = 3340 } # Ranasthambapura -> Sabalgarh + link = { autogenerated = yes imp = 6028 ck3 = 334 ck3 = 338 } # Arbugae -> VRETA, SUNDBY + link = { autogenerated = yes imp = 7445 ck3 = 3338 } # Sheopur -> Sheopur + link = { autogenerated = yes imp = 7441 ck3 = 3336 } # Jirapur -> Mehidpur + link = { autogenerated = yes imp = 7450 ck3 = 3335 } # Sarangpur -> Maksi + link = { autogenerated = yes imp = 4497 ck3 = 3333 } # Dadhipadra -> Champaner + link = { autogenerated = yes imp = 7425 ck3 = 3331 } # Jhabua -> Depalpur + link = { autogenerated = yes imp = 4486 ck3 = 3330 ck3 = 3334 } # Devasabha -> Betma, Dewas + link = { autogenerated = yes imp = 6021 ck3 = 333 } # Aska -> SKAENNINGE + link = { autogenerated = yes imp = 4499 ck3 = 3329 } # Navagramaka -> Vatapadraka + link = { autogenerated = yes imp = 4482 ck3 = 3328 ck3 = 3337 } # Kolvi -> Dharmrajeshwar, Agar + link = { autogenerated = yes imp = 7434 imp = 7466 ck3 = 3327 } # Candravati, Bhand Deva -> Gagraun + link = { autogenerated = yes imp = 7448 ck3 = 3326 ck3 = 3496 } # Jhalawar -> Jhalawar, Baroli + link = { autogenerated = yes imp = 7301 imp = 4483 imp = 7421 ck3 = 3325 } # Rajasayana, Kakanada, Narmadapuram -> Ashta + link = { autogenerated = yes imp = 7303 ck3 = 3324 } # Airakina -> Bhojpur + link = { autogenerated = yes imp = 7449 ck3 = 3322 } # Guna -> Sironj + link = { autogenerated = yes imp = 4470 ck3 = 3321 ck3 = 3323 } # Vidisha -> Raisin, Sanchi + link = { autogenerated = yes imp = 7462 ck3 = 3320 } # Chanderi -> Kadwaya + link = { autogenerated = yes imp = 7469 ck3 = 3319 } # Gujjar -> Jarai_ka_Math + link = { autogenerated = yes imp = 7465 imp = 7464 ck3 = 3317 } # Shivpuri, Bina -> Guna + link = { autogenerated = yes imp = 7461 ck3 = 3316 } # Tehri -> Luacchagiri + link = { autogenerated = yes imp = 4469 ck3 = 3315 } # Padmavati -> Jhansi + link = { autogenerated = yes imp = 6019 ck3 = 330 ck3 = 331 } # Vikbo -> SUDHERKOPUNG, HAMARKINDA + link = { autogenerated = yes imp = 2191 ck3 = 33 } # Manapia Occidentalis -> BIRR + link = { autogenerated = yes imp = 10593 ck3 = 3288 } # Bandarawela -> MALAYA RATA + link = { autogenerated = yes imp = 6968 ck3 = 3287 } # Modoutou -> MULLAITIVU + link = { autogenerated = yes imp = 6975 ck3 = 3285 } # Mihintale -> VAVUNIYA + link = { autogenerated = yes imp = 6950 ck3 = 3284 } # Anuradhapura -> KURUNAGALA + link = { autogenerated = yes imp = 6973 imp = 6979 ck3 = 3283 } # Upatissagama, Simhalava -> PUTTALAM + link = { autogenerated = yes imp = 6978 ck3 = 3282 } # Avakana -> DHAMBALLAI + link = { autogenerated = yes imp = 6976 imp = 6967 ck3 = 3281 } # Girikandi, Gokanna -> TRINCOMALEE + link = { autogenerated = yes imp = 6981 ck3 = 3280 } # Litta -> BATTICALOA + link = { autogenerated = yes imp = 6027 ck3 = 328 } # Tivedia -> RISEBERGA + link = { autogenerated = yes imp = 10589 imp = 6974 ck3 = 3279 } # Polonnaruwa, Etalava -> MATALE + link = { autogenerated = yes imp = 10590 imp = 10588 imp = 10592 ck3 = 3278 } # Mahiyanganaya, Matale, Gampola -> SENKADAGALAPURA + link = { autogenerated = yes imp = 6965 imp = 10587 imp = 6951 imp = 6982 ck3 = 3277 } # Oulippada, Dedigama, Odoka, Nabartha -> SITAWAKA + link = { autogenerated = yes imp = 6971 imp = 10591 ck3 = 3276 } # Kalyani, Migamuva -> KOTTE + link = { autogenerated = yes imp = 6969 ck3 = 3275 } # Jambukola Pattana -> JAFFNA + link = { autogenerated = yes imp = 5314 ck3 = 3274 } # Palaiogonoi -> DAMBADENIYA + link = { autogenerated = yes imp = 6980 imp = 6970 ck3 = 3273 } # Salikhaprava, Vijitanagara -> POLONNARUWA + link = { autogenerated = yes imp = 6972 ck3 = 3272 ck3 = 3286 } # Mahatittha -> ANURADHAPURA, MANNAR + link = { autogenerated = yes imp = 6952 ck3 = 3271 } # Dagana -> GIMHATHITHTHA + link = { autogenerated = yes imp = 6977 ck3 = 3270 } # Dighavapi -> DIGHAVAPI + link = { autogenerated = yes imp = 12657 ck3 = 327 ck3 = 329 ck3 = 347 } # Ainaz -> ORABRO, NORASKOG, ARBUGAE + link = { autogenerated = yes imp = 6966 ck3 = 3269 } # Rohanada -> MAHIYANGANA + link = { autogenerated = yes imp = 6953 ck3 = 3267 } # Mahagrama -> KATARGAMA + link = { autogenerated = yes imp = 12660 ck3 = 326 } # Hurna -> VASE + link = { autogenerated = yes imp = 7772 ck3 = 3254 } # Baetis -> Guadalquivir River + link = { autogenerated = yes imp = 7665 imp = 7771 ck3 = 3253 } # Lacus Ligustinus, Baetis -> Guadalquivir River + link = { autogenerated = yes imp = 10629 ck3 = 3251 } # $PROV7863$ -> Guadiana River + link = { autogenerated = yes imp = 7863 ck3 = 3250 } # Flumen Anas -> Guadiana River + link = { autogenerated = yes imp = 10636 ck3 = 3249 } # $PROV7846$ -> Rhone River + link = { autogenerated = yes imp = 10635 ck3 = 3248 } # $PROV7846$ -> Rhone River + link = { autogenerated = yes imp = 7846 ck3 = 3247 } # Rhodanus -> Rhone River + link = { autogenerated = yes imp = 10688 imp = 10689 ck3 = 3246 } # $PROV8030$, $PROV8030$ -> Po River + link = { autogenerated = yes imp = 8032 ck3 = 3244 } # Padus -> Po River + link = { autogenerated = yes imp = 8033 ck3 = 3245 } # Padus -> Po River + link = { autogenerated = yes imp = 8031 imp = 8030 ck3 = 3243 } # Padus, Padus -> Po River + link = { autogenerated = yes imp = 10371 ck3 = 3242 } # $PROV10369$ -> Daugava River + link = { autogenerated = yes imp = 10670 imp = 7888 ck3 = 3240 } # $PROV7884$, Albis -> Elbe River + link = { autogenerated = yes imp = 12665 ck3 = 324 ck3 = 8732 ck3 = 8769 } # Snaiwaz -> FRISKDAL, Josse, Stange + link = { autogenerated = yes imp = 7886 imp = 7887 ck3 = 3239 } # Albis, Albis -> Elbe River + link = { autogenerated = yes imp = 7885 ck3 = 3238 } # Albis -> Elbe River + link = { autogenerated = yes imp = 7884 ck3 = 3237 } # Albis -> Elbe River + link = { autogenerated = yes imp = 10648 imp = 10647 ck3 = 3236 } # $PROV7868$, $PROV7868$ -> Seine + link = { autogenerated = yes imp = 7870 imp = 10646 ck3 = 3235 } # Sequana, $PROV7868$ -> Seine + link = { autogenerated = yes imp = 7869 imp = 7868 ck3 = 3234 } # Sequana, Sequana -> Seine + link = { autogenerated = yes imp = 7728 imp = 7729 ck3 = 3233 } # Rhenus, Rhenus -> River Rhine + link = { autogenerated = yes imp = 7727 ck3 = 3232 } # Rhenus -> River Rhine + link = { autogenerated = yes imp = 7726 imp = 7725 ck3 = 3231 } # Rhenus, Rhenus -> River Rhine + link = { autogenerated = yes imp = 10652 imp = 10653 ck3 = 3230 } # Mosa, $PROV10652$ -> Zeeland Delta + link = { autogenerated = yes imp = 12661 ck3 = 323 ck3 = 325 } # Bukaz -> TINGVALLA, GILLBERG + link = { autogenerated = yes imp = 10640 ck3 = 3228 } # $PROV7864$ -> Loire River + link = { autogenerated = yes imp = 7867 imp = 7866 ck3 = 3227 } # Liger, Liger -> Loire River + link = { autogenerated = yes imp = 7865 imp = 7864 ck3 = 3226 } # Liger, Liger -> Loire River + link = { autogenerated = yes imp = 7766 imp = 10637 ck3 = 3224 } # Garumna, $PROV7741$ -> Garonne River + link = { autogenerated = yes imp = 7741 imp = 7742 ck3 = 3223 } # Garumna, $PROV7741$ -> Garonne River + link = { autogenerated = yes imp = 9779 ck3 = 3222 ck3 = 8802 ck3 = 8804 } # Tongan -> Tong'an, Jinjiang, Dehua + link = { autogenerated = yes imp = 1077 ck3 = 3221 } # Iluberis -> ALTO ARAGON + link = { autogenerated = yes imp = 6036 ck3 = 322 } # Rania -> TISSELSKOG + link = { autogenerated = yes imp = 4865 ck3 = 3216 } # Venedicana -> KONIGSBERG + link = { autogenerated = yes imp = 6287 ck3 = 3214 ck3 = 3215 } # Anavella -> EYLAU, NIEDENBURG + link = { autogenerated = yes imp = 6286 ck3 = 3213 } # Marone -> OSTERODE + link = { autogenerated = yes imp = 7806 ck3 = 3210 } # Sudinoia Borealis -> LYCK + link = { autogenerated = yes imp = 6033 ck3 = 321 } # Vrine -> DALABORG + link = { autogenerated = yes imp = 7834 ck3 = 3209 } # Chrononia Borealis -> ANGERBURG + link = { autogenerated = yes imp = 7835 ck3 = 3207 ck3 = 3208 ck3 = 3211 } # Chrononia -> RASTENBURG, LOTZEN, ORTELSBURG + link = { autogenerated = yes imp = 7832 ck3 = 3205 ck3 = 3219 } # Venedia Borealis -> BARTENSTEIN, OSTLANDSBERG + link = { autogenerated = yes imp = 7833 ck3 = 3204 ck3 = 3212 } # Venedia -> LAUTENBURG, ALLENSTEIN + link = { autogenerated = yes imp = 6285 ck3 = 3201 ck3 = 3217 ck3 = 3220 } # Nullica -> Mohrungen , BRAUNSBERG, Wormditt + link = { autogenerated = yes imp = 6283 ck3 = 3200 ck3 = 3202 } # Anacureta -> Brodnica, BRIESEN + link = { autogenerated = yes imp = 6281 ck3 = 3199 ck3 = 4923 } # Follia -> TORUN, Michalowo + link = { autogenerated = yes imp = 4863 ck3 = 3198 } # Voreynica -> KULM + link = { autogenerated = yes imp = 6282 ck3 = 3197 } # Cureta -> GRAUDENZ + link = { autogenerated = yes imp = 4755 ck3 = 3193 } # Sciria Rugia -> TUCHOWNA + link = { autogenerated = yes imp = 4764 ck3 = 3192 ck3 = 3196 } # Helveconiana -> KONITZ, SCHWETZ + link = { autogenerated = yes imp = 4765 ck3 = 3190 ck3 = 4915 ck3 = 4916 } # Carinia -> HAMMERSTEIN, Naklo, Zlotow + link = { autogenerated = yes imp = 6022 ck3 = 319 } # Hio -> FALKÖPING + link = { autogenerated = yes imp = 4757 ck3 = 3189 ck3 = 3191 ck3 = 3195 } # Lemoviana -> MIASTKO, BYTOW, BERENT + link = { autogenerated = yes imp = 4766 ck3 = 3186 ck3 = 3187 } # Cariniana -> PILA, WALCZ + link = { autogenerated = yes imp = 4760 ck3 = 3185 ck3 = 3188 } # Campia -> BELGARD, SZCZECINEK + link = { autogenerated = yes imp = 4754 ck3 = 3183 } # Turcilingia -> KREUZ + link = { autogenerated = yes imp = 3998 ck3 = 3181 } # Suevia Maior -> COTTBUS + link = { autogenerated = yes imp = 6012 ck3 = 318 ck3 = 75 } # Konghelle -> KUNGAHALLA, ONSALA + link = { autogenerated = yes imp = 3995 ck3 = 3178 } # Viaduna -> DAHME + link = { autogenerated = yes imp = 3994 ck3 = 3177 } # Silingia -> LEHNIN + link = { autogenerated = yes imp = 3997 ck3 = 3175 ck3 = 3182 } # Suevia Minor -> BRENE, LUBBEN + link = { autogenerated = yes imp = 3996 ck3 = 3173 ck3 = 3180 } # Graetana -> WITTENBERG, JUTERBOG + link = { autogenerated = yes imp = 3989 ck3 = 3172 ck3 = 3174 } # Albiana -> ZERBST, BELIZI + link = { autogenerated = yes imp = 3909 ck3 = 3171 ck3 = 3176 } # Mesuium -> MOCKERN, GOMMERN + link = { autogenerated = yes imp = 3987 imp = 3982 ck3 = 3170 } # Caluconiana, Coenonia -> TANGERMUNDE + link = { autogenerated = yes imp = 6023 ck3 = 317 ck3 = 8723 } # Gothalia -> LODOSE, Lacko + link = { autogenerated = yes imp = 3983 ck3 = 3169 } # Astuia -> NOWEN + link = { autogenerated = yes imp = 3985 ck3 = 3162 ck3 = 3163 ck3 = 3167 } # Vistulia -> SCHWEDT, TEMPLIN, LINDOW + link = { autogenerated = yes imp = 3984 ck3 = 3161 ck3 = 3164 } # Burgia -> EBERSWALDE, BOTZOW + link = { autogenerated = yes imp = 6024 ck3 = 316 ck3 = 320 } # Rane -> SKARA, VARNHEM + link = { autogenerated = yes imp = 3986 ck3 = 3157 ck3 = 3166 } # Uarinia -> POTSDAM, BRANDENBURG + link = { autogenerated = yes imp = 4753 ck3 = 3155 ck3 = 3156 } # Rhuticlia Helveconia -> GRYFINO, ARNSWALDE + link = { autogenerated = yes imp = 3908 ck3 = 3154 } # Viritium -> SOLDIN + link = { autogenerated = yes imp = 4758 ck3 = 3151 ck3 = 3152 } # Seurgium -> DRIESEN, LANDSBERG + link = { autogenerated = yes imp = 3999 ck3 = 3149 ck3 = 3158 ck3 = 3165 } # Susidata -> LEBUS, BERLIN, ROSENFELDE + link = { autogenerated = yes imp = 4759 ck3 = 3147 ck3 = 3148 ck3 = 3153 } # Iadua -> RZEPIN, SULECIN, KOSTSCHIN + link = { autogenerated = yes imp = 4770 ck3 = 3146 ck3 = 4912 ck3 = 4914 } # Vindua -> SIEDLISCHO, Wschowa, Srem + link = { autogenerated = yes imp = 4762 ck3 = 3144 ck3 = 3145 ck3 = 4901 ck3 = 4904 } # Buguntia -> CROSSEN, SCHWIEBUS, Miedzyrzecz, Wolsztyn + link = { autogenerated = yes imp = 3993 ck3 = 3141 } # Stragona Buria -> KAMENZ + link = { autogenerated = yes imp = 4000 ck3 = 3140 ck3 = 3142 ck3 = 3159 } # Omania -> SPREEWALD, ODERFRANKFURT, STORKOW + link = { autogenerated = yes imp = 6009 ck3 = 314 ck3 = 315 } # Eowia -> BORGHOLM, EKETORP + link = { autogenerated = yes imp = 4001 ck3 = 3138 ck3 = 3139 ck3 = 3143 } # Diduniana -> FORST, SORGE, NAUMBERG + link = { autogenerated = yes imp = 3647 ck3 = 3131 ck3 = 3132 } # Ovilava -> LINZ, STEYR + link = { autogenerated = yes imp = 6018 ck3 = 313 ck3 = 335 } # Vist -> EKSJO, WISINGHNO + link = { autogenerated = yes imp = 3673 ck3 = 3125 ck3 = 3112 } # Sabatinca -> KNITTELFELD, JUDENBURG + link = { autogenerated = yes imp = 3674 ck3 = 3124 ck3 = 3126 } # Gabramagus -> WAIDHOFEN, ADMONT + link = { autogenerated = yes imp = 4131 ck3 = 3118 ck3 = 3110 } # Poedicum -> KAPFENBERG, LEOBEN + link = { autogenerated = yes imp = 4135 ck3 = 3117 ck3 = 3111 } # Arraboa -> GRAZ, KOFLACH + link = { autogenerated = yes imp = 4134 ck3 = 3116 } # Ad Vicessimum -> FELDBACH + link = { autogenerated = yes imp = 6016 ck3 = 311 ck3 = 312 } # Thwetum -> HULTABY, JONKOPING + link = { autogenerated = yes imp = 4031 imp = 4048 ck3 = 3109 } # Flavia Solva, Colatio -> LEIBNITZ + link = { autogenerated = yes imp = 4136 ck3 = 3106 } # Halicanum -> WINDISCHE BUHEL + link = { autogenerated = yes imp = 4030 imp = 5034 ck3 = 3103 } # Poetovio, IMPASSIBLE TERRAIN 034 -> MARIBOR + link = { autogenerated = yes imp = 4029 ck3 = 3102 ck3 = 3101 } # Celeia -> KRSKO, KAMNIK + link = { autogenerated = yes imp = 4025 ck3 = 3100 ck3 = 2515 } # Carnium -> KRANJ, TRIGLAVSKI + link = { autogenerated = yes imp = 6020 ck3 = 310 ck3 = 332 ck3 = 8734 } # Kinda -> VIMMERBY, LIUNGA, Grebo + link = { autogenerated = yes imp = 2167 ck3 = 31 ck3 = 32 ck3 = 36 } # Manapia Borealis -> TRIM, DROGHEDA, UISNEACH + link = { autogenerated = yes imp = 4027 imp = 4028 imp = 5032 ck3 = 3097 } # Latobicorum, Neviodunum, IMPASSIBLE TERRAIN 032 -> DOBOVEC + link = { autogenerated = yes imp = 4024 imp = 5031 ck3 = 3096 } # Emona, Histria Mons -> LJUBLJANA + link = { autogenerated = yes imp = 3649 imp = 3650 ck3 = 3094 } # Loacus Felicis, Namare -> WIESELBURG + link = { autogenerated = yes imp = 3648 ck3 = 3093 } # Lauriacum -> AMSTETTEN + link = { autogenerated = yes imp = 6008 ck3 = 309 ck3 = 8727 } # Theustia -> HULINGSRYD, Stegeholm + link = { autogenerated = yes imp = 3651 ck3 = 3089 } # Faviana -> SANKT POLTEN + link = { autogenerated = yes imp = 3916 ck3 = 3088 ck3 = 3090 } # Abilunum -> KREMS, SPITZ + link = { autogenerated = yes imp = 3918 ck3 = 3087 } # Carnuntum -> BRUCK + link = { autogenerated = yes imp = 3653 imp = 3652 ck3 = 3086 } # Quadriburgium, Augustinia -> VIENNA + link = { autogenerated = yes imp = 3921 ck3 = 3085 } # Regnia Secunda -> ERNSTBRUNN + link = { autogenerated = yes imp = 3669 ck3 = 3083 ck3 = 3114 ck3 = 3115 } # In Murio -> SPITTAL, MURAU, TAMSWEG + link = { autogenerated = yes imp = 3920 ck3 = 3082 ck3 = 3084 } # Regnia Prima -> MISTELBACH, FLORIDSDORF + link = { autogenerated = yes imp = 3922 ck3 = 3079 ck3 = 3080 ck3 = 3081 } # Medioslanium -> LAA, MIKULOV, HOHENAU + link = { autogenerated = yes imp = 3923 ck3 = 3075 ck3 = 3077 ck3 = 3078 } # Teracatriae -> WILD, HORN, HAUGSDORF + link = { autogenerated = yes imp = 3933 ck3 = 3074 } # Quadia -> GMUND + link = { autogenerated = yes imp = 3917 ck3 = 3073 ck3 = 3076 ck3 = 771 } # Adrabae -> FREISTADT, ZWETTL, Czech Mountains 9 + link = { autogenerated = yes imp = 3819 ck3 = 3072 } # Furgisatis -> LEONFELDEN + link = { autogenerated = yes imp = 6007 ck3 = 307 ck3 = 308 } # Meore -> KALMAR, HOGSBY + link = { autogenerated = yes imp = 4003 ck3 = 3067 ck3 = 3068 } # Lugidunum -> SPROTTAU, PRZEMKOW + link = { autogenerated = yes imp = 3992 ck3 = 3066 ck3 = 3070 } # Buria -> ZAGAN, NOWOGRODZIEC + link = { autogenerated = yes imp = 4002 ck3 = 3064 ck3 = 3065 } # Budorigum -> GRUNBERG, BYTOM + link = { autogenerated = yes imp = 4771 ck3 = 3062 } # Leucaristus -> OLESNICA + link = { autogenerated = yes imp = 4773 ck3 = 3060 ck3 = 3061 } # Elysia -> SADOWEL, MILIEZ + link = { autogenerated = yes imp = 4005 ck3 = 3059 ck3 = 3069 } # Stragona -> SWINY, WLEN + link = { autogenerated = yes imp = 4004 ck3 = 3058 ck3 = 3063 } # Didunia -> LEGNICA, GLOGOW + link = { autogenerated = yes imp = 4006 ck3 = 3057 ck3 = 3047 ck3 = 4137 } # Marsignia -> BARDO, KLADZKO, Dvur-Chvojno + link = { autogenerated = yes imp = 4011 ck3 = 3056 ck3 = 764 } # Cognia -> OTMUCHOW, Czech Mountains 2 + link = { autogenerated = yes imp = 4010 ck3 = 3055 } # Casurgis -> OLAWA + link = { autogenerated = yes imp = 4778 ck3 = 3052 ck3 = 3053 } # Lygia -> OPPELN, KREUZBURG + link = { autogenerated = yes imp = 6017 ck3 = 305 ck3 = 306 } # Vitala -> NORRVIDINGE, UPPVIDINGE + link = { autogenerated = yes imp = 4012 ck3 = 3049 } # Viadria -> BRZEG + link = { autogenerated = yes imp = 4013 ck3 = 3046 ck3 = 3048 ck3 = 3050 ck3 = 763 } # Carredunum -> FRANKENSTEIN, NYSA, GLOGOWEK, Czech Mountains 1 + link = { autogenerated = yes imp = 4007 ck3 = 3045 } # Leucara -> BRESLAU + link = { autogenerated = yes imp = 4898 ck3 = 3044 ck3 = 3054 ck3 = 526 } # Vectia -> BETHEN, LUBLINIEC, Czestochowa + link = { autogenerated = yes imp = 4897 ck3 = 3042 ck3 = 3043 ck3 = 3051 } # Lecrotiana -> RATIBOR, RYBNIK, STREHLITZ + link = { autogenerated = yes imp = 4894 ck3 = 3040 } # Arsonis -> TESCHEN + link = { autogenerated = yes imp = 3956 ck3 = 3038 } # Melocabus -> GERA + link = { autogenerated = yes imp = 3991 ck3 = 3034 ck3 = 3035 } # Buriana -> GROSSENHAIN, RADEBEUL + link = { autogenerated = yes imp = 3910 ck3 = 3032 ck3 = 3033 } # Susidaea -> BAUTZEN, BISCHOFSWERDA + link = { autogenerated = yes imp = 3988 ck3 = 3021 ck3 = 3024 } # Caluconia -> EILENBURG, DUBEN + link = { autogenerated = yes imp = 6015 ck3 = 302 ck3 = 303 ck3 = 304 } # Warinia -> VAXJO, ALLBO, KINNEVALD + link = { autogenerated = yes imp = 3951 ck3 = 3019 ck3 = 3020 } # Luphurdum -> LEIPZIG, NAUMBURG + link = { autogenerated = yes imp = 3950 ck3 = 3018 ck3 = 3023 } # Calaegia -> HALLE, DESSAU + link = { autogenerated = yes imp = 3990 ck3 = 3015 ck3 = 3016 ck3 = 3017 ck3 = 3025 ck3 = 3027 } # Hercynia -> COLDITZ, LEISNING, DEVIN, TORGAU, MEISSEN + link = { autogenerated = yes imp = 3954 ck3 = 3013 ck3 = 3014 } # Camulia -> WALDENBURG, ALTENBURG + link = { autogenerated = yes imp = 3981 ck3 = 3012 ck3 = 3028 ck3 = 3030 } # Thuringiana -> WOLKENSTEIN, FREIBERG, DRESDEN + link = { autogenerated = yes imp = 6013 ck3 = 301 ck3 = 8724 ck3 = 8725 } # Gautigothia -> WANNAMO, Opensten, Kindaholm + link = { autogenerated = yes imp = 3957 ck3 = 3006 ck3 = 3008 ck3 = 2999 ck3 = 3009 } # Bicurdium -> GLEICHEN, KAFERNBURG, SCHWARZBURG, EISENACH + link = { autogenerated = yes imp = 3955 ck3 = 3005 ck3 = 3007 } # Candulum -> ORLAMUNDE, BEICHTINEN + link = { autogenerated = yes imp = 3952 ck3 = 3004 ck3 = 3001 } # Sudetia -> PLAUEN, REHAU + link = { autogenerated = yes imp = 3953 ck3 = 3003 ck3 = 3039 } # Dandutia -> LOBDABURG, REICHENBACH + link = { autogenerated = yes imp = 6014 ck3 = 300 } # Finnaithae -> LIONGBY + link = { autogenerated = yes imp = 2192 ck3 = 30 } # Manapia Australis -> KILDARE + link = { autogenerated = yes imp = 3948 ck3 = 2998 } # Turoniana -> COBURG + link = { autogenerated = yes imp = 3821 ck3 = 2995 ck3 = 3000 } # Moenosgadia -> LICHTENFELS, HOF + link = { autogenerated = yes imp = 3946 ck3 = 2994 ck3 = 2997 ck3 = 768 } # Sudetica Planus -> KULMBACH, CHEB, Czech Mountains 6 + link = { autogenerated = yes imp = 3820 ck3 = 2993 } # Cantiabis -> BAYREUTH + link = { autogenerated = yes imp = 3813 ck3 = 2989 ck3 = 4144 } # Reganus -> HOHENBURG, Tachov + link = { autogenerated = yes imp = 3811 ck3 = 2988 ck3 = 2990 } # Brodentia -> SULZBACH, LEUCHTENBURG + link = { autogenerated = yes imp = 3808 ck3 = 2986 } # Vandulia -> LENGENFELD + link = { autogenerated = yes imp = 3642 ck3 = 2984 } # Isinisca -> MARQUARDSTEIN + link = { autogenerated = yes imp = 3643 ck3 = 2982 ck3 = 2983 } # Artobriga -> LAUFEN, TRAUNSTEIN + link = { autogenerated = yes imp = 3754 ck3 = 2981 } # Ad Pontes Tessenios -> BURGHAUSEN + link = { autogenerated = yes imp = 3979 ck3 = 2980 ck3 = 3136 } # Colancorum -> GORLITZ, SPREMBERG + link = { autogenerated = yes imp = 3645 ck3 = 2979 } # Laciacum -> STRASSWALCHEN + link = { autogenerated = yes imp = 3670 ck3 = 2978 } # Anisus -> HALLEIN + link = { autogenerated = yes imp = 3644 ck3 = 2975 } # Iuvavum -> SALZBURG + link = { autogenerated = yes imp = 3764 ck3 = 2973 } # Innaba -> BRAUNAU + link = { autogenerated = yes imp = 3763 ck3 = 2971 } # Ioviacum -> SCHAUMBERG + link = { autogenerated = yes imp = 3762 ck3 = 2970 ck3 = 2972 } # Stanacum -> SCHARDING, RIED + link = { autogenerated = yes imp = 3817 ck3 = 2968 ck3 = 2969 } # Brodentica -> DEGGENDORF, WALDKIRCHEN + link = { autogenerated = yes imp = 3814 ck3 = 2966 ck3 = 769 } # Parmacampia -> WENZENBACH, Czech Mountains 7 + link = { autogenerated = yes imp = 3815 ck3 = 2965 ck3 = 2967 } # Augustania -> TEGERNHEIM, CHAM + link = { autogenerated = yes imp = 3758 ck3 = 2964 } # Castra Regina -> REGENSBURG + link = { autogenerated = yes imp = 3759 ck3 = 2963 } # Sorviodurum -> LEONSBERG + link = { autogenerated = yes imp = 3760 ck3 = 2962 } # Petrensibus -> ORTENBURG + link = { autogenerated = yes imp = 3755 ck3 = 2961 } # Turum Breunorum -> DORNBERG + link = { autogenerated = yes imp = 3761 ck3 = 2960 } # Batavis -> PASSAU + link = { autogenerated = yes imp = 3756 ck3 = 2959 } # Iovisura -> FRONTENHAUSEN + link = { autogenerated = yes imp = 3753 ck3 = 2958 } # Bratananium -> ERDING + link = { autogenerated = yes imp = 3664 ck3 = 2952 ck3 = 3134 } # Sebatum -> BRUNECK, LIENZ + link = { autogenerated = yes imp = 3654 ck3 = 2949 ck3 = 2781 } # Foetes -> ESCHENLOHE, PEITING + link = { autogenerated = yes imp = 3641 ck3 = 2947 ck3 = 2956 } # Arces Covelicae -> WOLFRATSHAUSEN, FALKENSTEIN + link = { autogenerated = yes imp = 3751 ck3 = 2945 } # Abodiacum -> MUNCHEN + link = { autogenerated = yes imp = 3752 ck3 = 2943 } # Ambrae -> FREISING + link = { autogenerated = yes imp = 3757 ck3 = 2942 ck3 = 2957 } # Celeusum -> ROTHENBURG, GEISENHAUSEN + link = { autogenerated = yes imp = 3765 ck3 = 2941 } # Abusina -> ABENSBERG + link = { autogenerated = yes imp = 3773 ck3 = 2940 } # Venaxamodurum -> MUNCHSMUNSTER + link = { autogenerated = yes imp = 3749 ck3 = 2939 } # Vindelicia -> ILMUNSTER + link = { autogenerated = yes imp = 3959 ck3 = 2934 ck3 = 2935 ck3 = 2936 } # Argelia -> SANGERHAUSEN, MERSENBURG, MANSFELD + link = { autogenerated = yes imp = 3966 ck3 = 2932 ck3 = 2933 } # Aregelliana -> BLANKENBURG, ARNSTEIN + link = { autogenerated = yes imp = 3961 ck3 = 2928 ck3 = 2931 } # Fosia -> EBELEBEN, HOHENSTEIN + link = { autogenerated = yes imp = 3947 ck3 = 2925 ck3 = 3010 } # Turonia -> HENNEBERG, SCHMALKALDEN + link = { autogenerated = yes imp = 3823 ck3 = 2923 ck3 = 2924 ck3 = 775 } # Melocavus -> HERSFELD, FULDA, German Mountains 2 + link = { autogenerated = yes imp = 3949 ck3 = 2922 } # Vistugia -> MUNDEN + link = { autogenerated = yes imp = 3958 ck3 = 2921 } # Salia Chamavia -> MUHLHAUSEN + link = { autogenerated = yes imp = 3960 ck3 = 2919 ck3 = 2920 } # Teuriona -> GLEICHENSTEIN, GOTTINGEN + link = { autogenerated = yes imp = 3965 ck3 = 2918 ck3 = 776 } # Bicurgium -> GOSLAR, German Mountains 3 + link = { autogenerated = yes imp = 3978 ck3 = 2916 ck3 = 2917 } # Meliboia -> HALBERSTADT, WERNIGERODE + link = { autogenerated = yes imp = 3977 ck3 = 2913 ck3 = 2914 } # Luppia -> HILDESHEIM, WOLDENBERG + link = { autogenerated = yes imp = 3963 ck3 = 2911 ck3 = 2912 } # Tropea -> DASSEL, HOMBURG + link = { autogenerated = yes imp = 3967 ck3 = 2906 } # Aregellia -> MAGDEBURG + link = { autogenerated = yes imp = 3975 ck3 = 2905 } # Angia -> GIFHORN + link = { autogenerated = yes imp = 3976 ck3 = 2901 ck3 = 2902 } # Maroia -> BRUNSWICK, WOLFENBUTTEL + link = { autogenerated = yes imp = 3968 imp = 3974 ck3 = 2900 } # Mersovium, Alaria -> STENDAL + link = { autogenerated = yes imp = 2165 ck3 = 29 ck3 = 40 } # Coriondia Borealis -> WICKLOW, CARLOW + link = { autogenerated = yes imp = 3969 ck3 = 2899 } # Cistula -> WERBEN + link = { autogenerated = yes imp = 3973 ck3 = 2897 ck3 = 2898 } # Chamavia -> DEPENAU, HANNOVER + link = { autogenerated = yes imp = 3971 ck3 = 2895 ck3 = 2907 } # Arminia -> LUCHOW, GARDELEGEN + link = { autogenerated = yes imp = 3970 ck3 = 2894 ck3 = 2937 } # Langobardia -> DANNENBERG, UELZEN + link = { autogenerated = yes imp = 3972 ck3 = 2893 ck3 = 2904 } # Fosa -> LUNEBURG, CELLE + link = { autogenerated = yes imp = 3805 ck3 = 2890 } # Bergium -> IPHOFEN + link = { autogenerated = yes imp = 3801 ck3 = 2889 } # Segodunum Chattuariorum -> MERGENTHEIM + link = { autogenerated = yes imp = 3772 ck3 = 2888 } # Ad Fines Germaniae -> CRAILSHEIM + link = { autogenerated = yes imp = 3803 ck3 = 2891 } # Armalausia -> UFFENHEIM + link = { autogenerated = yes imp = 3769 ck3 = 2885 ck3 = 2886 } # Losodica -> DILLINGEN, NORDLINGEN + link = { autogenerated = yes imp = 3766 ck3 = 2883 } # Germanicum -> INGOLSTADT + link = { autogenerated = yes imp = 3774 ck3 = 2882 ck3 = 2938 } # Parrodunum -> WEISSENBURG, NIEDERSCHONENFELD + link = { autogenerated = yes imp = 3768 ck3 = 2880 } # Mediana Vendelicia -> TRUBENDING + link = { autogenerated = yes imp = 3809 ck3 = 2879 ck3 = 2987 ck3 = 2991 } # Bibacum -> HIRSCHBERG, PARSBERG, NEUMARKT + link = { autogenerated = yes imp = 3767 ck3 = 2878 } # Biriciana -> LICHTSTAD + link = { autogenerated = yes imp = 3807 ck3 = 2877 ck3 = 2892 ck3 = 2992 } # Nariscia -> NUREMBERG, RIEDFELD, GREIFFENST + link = { autogenerated = yes imp = 3806 ck3 = 2875 ck3 = 2876 } # Varistia -> ANSBACH, ABENBERG + link = { autogenerated = yes imp = 3822 ck3 = 2873 ck3 = 2874 ck3 = 2927 } # Devona -> CASEL, BAMBERG, WILTBERG + link = { autogenerated = yes imp = 3799 ck3 = 2870 ck3 = 2871 ck3 = 2926 } # Salinae Chattuariorum -> WURZBURG, HAMMELBURG, SCHWEINFURT + link = { autogenerated = yes imp = 3802 ck3 = 2868 ck3 = 2869 } # Locoritum -> WERTHEIM, HOCHBERG + link = { autogenerated = yes imp = 3797 ck3 = 2865 ck3 = 2866 } # Mattiacia -> BUDINGEN, RIENECK + link = { autogenerated = yes imp = 3798 ck3 = 2862 ck3 = 2864 } # Vangionia -> KLINGENBERG, GELNHAUSEN + link = { autogenerated = yes imp = 3796 ck3 = 2861 ck3 = 2867 } # Bucinobantia -> NIDDA, LAUTERBACH + link = { autogenerated = yes imp = 3795 ck3 = 2860 } # Gravionarium -> KASSEL + link = { autogenerated = yes imp = 6038 ck3 = 286 ck3 = 287 } # Lingum -> TUNSBERG, SKIRINGSSAL + link = { autogenerated = yes imp = 3794 ck3 = 2858 ck3 = 2859 } # Marsiana -> ZIEGENHAIN, MARBURG + link = { autogenerated = yes imp = 3700 ck3 = 2855 ck3 = 2863 } # Taunensium -> FRANKFURT, HANAU + link = { autogenerated = yes imp = 3793 ck3 = 2852 ck3 = 2853 ck3 = 2857 } # Landia -> SIEGEN, SOLMS, WETZLAR + link = { autogenerated = yes imp = 3824 ck3 = 2850 ck3 = 2915 } # Mattium -> WALDECK, HOFGEISMAR + link = { autogenerated = yes imp = 3825 ck3 = 2848 } # Pheugarum -> BRAKEL + link = { autogenerated = yes imp = 3964 ck3 = 2846 ck3 = 2896 } # Dinia -> WOLPE, WUNSDORF + link = { autogenerated = yes imp = 3827 ck3 = 2844 ck3 = 2847 ck3 = 2909 ck3 = 2910 } # Tulisurgium -> LIPPE, PADERBORN, SCHWALENBERG, EVERSTEIN + link = { autogenerated = yes imp = 3826 ck3 = 2843 } # Amisia -> BUREN + link = { autogenerated = yes imp = 3828 ck3 = 2840 ck3 = 2845 } # Tuliphurdum -> MINDEN, SCHAUENBURG + link = { autogenerated = yes imp = 3829 ck3 = 2839 } # Ascalingium -> HOYA + link = { autogenerated = yes imp = 3840 ck3 = 2837 } # Ad Pontem -> BRUCHHAUSEN + link = { autogenerated = yes imp = 4864 ck3 = 2831 ck3 = 2834 ck3 = 2835 } # Venedica -> WISLANA, MALBORK, ELBLAG + link = { autogenerated = yes imp = 4862 ck3 = 2830 ck3 = 3194 } # Vistuliana -> GDANSK, TRSOW + link = { autogenerated = yes imp = 4750 ck3 = 2827 ck3 = 2829 ck3 = 2832 ck3 = 2833 } # Rugia -> SLUPSK, LEBNO, WLADYSLAWOWO, SOPOT + link = { autogenerated = yes imp = 4756 ck3 = 2826 ck3 = 2828 } # Eughum -> CAMMIN, KOSZALIN + link = { autogenerated = yes imp = 4751 ck3 = 2824 ck3 = 3184 } # Rhugium -> KOLOBRZEG, DRAMBERG + link = { autogenerated = yes imp = 3906 ck3 = 2823 ck3 = 3160 } # Galindia -> SZCZECIN, PRENZLAU + link = { autogenerated = yes imp = 3905 ck3 = 2821 ck3 = 3168 } # Helveconia Pharodeniorum -> NEUSTRELITZ, RUPPIN + link = { autogenerated = yes imp = 3904 ck3 = 2820 ck3 = 2822 } # Sidenia -> NEUBRANDENBURG, UCRAMUND + link = { autogenerated = yes imp = 4752 ck3 = 2818 ck3 = 2825 ck3 = 2836 } # Viadrus -> SWINOUJSCIE, STARGARD, LOBEZ + link = { autogenerated = yes imp = 3903 ck3 = 2816 ck3 = 2817 } # Sciria -> GREIFSWALD, WOLGAST + link = { autogenerated = yes imp = 3893 imp = 3907 ck3 = 2815 } # Avarpi, Nuithonia -> KLENOW + link = { autogenerated = yes imp = 3894 ck3 = 2814 } # Virunum Germanicum -> HAVELBERG + link = { autogenerated = yes imp = 3901 imp = 3902 ck3 = 2813 } # Maryanus, Avioniana -> PARCHIM + link = { autogenerated = yes imp = 3898 ck3 = 2812 } # Pharodenia -> WERLE + link = { autogenerated = yes imp = 3899 ck3 = 2809 ck3 = 2810 ck3 = 2819 } # Lemovia -> ROSTOCK, STRALSUND, GUSTROW + link = { autogenerated = yes imp = 3892 imp = 3895 imp = 3900 ck3 = 2808 } # Alisus, Suardonia, Bunitium -> SCHWERIN + link = { autogenerated = yes imp = 3896 imp = 3897 ck3 = 2807 } # Ruticlia, Virunia -> MECKLENBURG + link = { autogenerated = yes imp = 3891 ck3 = 2806 } # Laciburaium -> RATZEBURG + link = { autogenerated = yes imp = 3858 ck3 = 2804 } # Marionis -> LUBECK + link = { autogenerated = yes imp = 3890 ck3 = 2803 } # Chaucia -> BUXTEHUDE + link = { autogenerated = yes imp = 3889 ck3 = 2802 } # Treva -> HAMBURG + link = { autogenerated = yes imp = 3860 ck3 = 2801 } # Anglia Meridionalis -> KIEL + link = { autogenerated = yes imp = 3859 imp = 3884 ck3 = 2800 } # Sardonia, Herulia Australis -> FEMERA + link = { autogenerated = yes imp = 2190 ck3 = 28 } # Eblana -> DUBLIN + link = { autogenerated = yes imp = 3861 ck3 = 2799 } # Anglia Centralis -> NEUMUNSTER + link = { autogenerated = yes imp = 3855 imp = 3857 ck3 = 2798 } # Mariones, Charudiana -> ITZEHOE + link = { autogenerated = yes imp = 3856 ck3 = 2797 } # Charudia -> DITHMARSCHEN + link = { autogenerated = yes imp = 3962 ck3 = 2794 ck3 = 2903 } # Idistavisus -> VERDEN, WALSRODE + link = { autogenerated = yes imp = 3838 ck3 = 2793 } # Angrivaria -> BREMEN + link = { autogenerated = yes imp = 3837 ck3 = 2791 ck3 = 2792 ck3 = 2795 ck3 = 2796 } # Saxonnia -> BEDERKESA, CUXHAVEN, STADE, ZEVEN + link = { autogenerated = yes imp = 3616 ck3 = 2789 } # Curia -> VARES + link = { autogenerated = yes imp = 3739 ck3 = 2785 } # Vemania -> MEMMINGEN + link = { autogenerated = yes imp = 3638 ck3 = 2784 } # Cambodunum -> KAUFBEUREN + link = { autogenerated = yes imp = 3637 ck3 = 2783 ck3 = 2786 ck3 = 2782 } # Vernania -> KEMPTEN, RAVENSBURG, SCHONGAU + link = { autogenerated = yes imp = 3640 ck3 = 2780 ck3 = 2946 } # Damasia -> LECHRAIN, AHEIM + link = { autogenerated = yes imp = 3748 imp = 3747 ck3 = 2779 } # Rostrum Nemaviae, Navoa -> FRIEDBERG + link = { autogenerated = yes imp = 3750 ck3 = 2778 } # Rapis -> AUGSBURG + link = { autogenerated = yes imp = 3775 ck3 = 2777 } # Summuntorium -> BURGAU + link = { autogenerated = yes imp = 3740 ck3 = 2776 } # Cassiliacum -> MARSTETTEN + link = { autogenerated = yes imp = 3741 ck3 = 2775 } # Caelius Mons -> KIRCHBERG + link = { autogenerated = yes imp = 3746 ck3 = 2773 ck3 = 2774 } # Raetia Orientalis -> GRUNINGEN, BERGE + link = { autogenerated = yes imp = 3800 ck3 = 2772 ck3 = 2887 } # Sedusia -> LOWENSTEIN, HALL + link = { autogenerated = yes imp = 3770 ck3 = 2770 ck3 = 2771 } # Ad Lunam -> HELFENSTEIN, TECK + link = { autogenerated = yes imp = 3771 ck3 = 2769 } # Aquileia Germanica -> HELLENENSTEIN + link = { autogenerated = yes imp = 3742 ck3 = 2768 } # Viana -> ULM + link = { autogenerated = yes imp = 3743 ck3 = 2765 ck3 = 2766 } # Riusiava -> BEUTLINGEN, SCHELKLINGEN + link = { autogenerated = yes imp = 3732 ck3 = 2762 } # Tasgetium -> NELLENBURG + link = { autogenerated = yes imp = 3639 ck3 = 2761 } # Arbor Felix -> HEILIGENBERG + link = { autogenerated = yes imp = 3744 ck3 = 2759 ck3 = 2764 } # Bragodurum -> HOHENBERG, VEHRINGEN + link = { autogenerated = yes imp = 3745 ck3 = 2758 ck3 = 2767 } # Raetia Occidentalis -> LUPFEN, SIGMARINGEN + link = { autogenerated = yes imp = 3731 ck3 = 2757 ck3 = 2760 } # Brigobannis -> FURSTENBERG, CLETTGAU + link = { autogenerated = yes imp = 3733 ck3 = 2756 ck3 = 2755 } # Arae Flaviae -> ROTTWEIL, SULZ + link = { autogenerated = yes imp = 3020 imp = 3021 ck3 = 2753 } # Helvetum, Argentorate -> GEROLDSECK + link = { autogenerated = yes imp = 3022 ck3 = 2751 ck3 = 2752 } # Tarodunon -> FREIBURG, OFFENBURG + link = { autogenerated = yes imp = 3012 ck3 = 2750 } # Rauracia -> SANKT BLASIEN + link = { autogenerated = yes imp = 3734 ck3 = 2749 ck3 = 2763 } # Sumelocenna -> TUBINGEN, ZOLLERN + link = { autogenerated = yes imp = 3736 ck3 = 2748 } # Grinario -> WIRTEMBERG + link = { autogenerated = yes imp = 3025 ck3 = 2746 } # Aurelia Aquensis -> BADEN + link = { autogenerated = yes imp = 3735 ck3 = 2745 ck3 = 2747 } # Portus -> VAIHINGEN, CALW + link = { autogenerated = yes imp = 3738 imp = 3737 ck3 = 2743 } # Vicus Alsinensium, Vicus Nediensis -> HEILBRONN + link = { autogenerated = yes imp = 7732 ck3 = 2741 } # Vicus Augustanus -> RUSSELSHEIM + link = { autogenerated = yes imp = 3804 ck3 = 2738 ck3 = 2739 ck3 = 2872 } # Hermunduria -> MOSBACH, DURNE, WEINSBERG + link = { autogenerated = yes imp = 3702 ck3 = 2737 ck3 = 2742 } # Civitas Auderiensium -> ERBACH, SELIGENSTADT + link = { autogenerated = yes imp = 3055 ck3 = 2735 ck3 = 2736 } # Lopodunum -> WEINHEIM, BESENSHEIM + link = { autogenerated = yes imp = 3052 ck3 = 2733 ck3 = 2744 } # Saletio -> HEIDELBERG, HOCKENHEIM + link = { autogenerated = yes imp = 3054 ck3 = 2732 } # Tabernae -> SPEYER + link = { autogenerated = yes imp = 3056 ck3 = 2731 } # Borbetomagus -> WORMS + link = { autogenerated = yes imp = 3693 ck3 = 2730 } # Mosellia -> PIRMASENS + link = { autogenerated = yes imp = 3697 ck3 = 2727 ck3 = 2728 ck3 = 2729 } # Rouphiniana -> ROCKHAUSEN, LETNINGEN, KAISERSLAUTERN + link = { autogenerated = yes imp = 3694 ck3 = 2726 } # Leucia -> ZWEIBRUCKEN + link = { autogenerated = yes imp = 3695 ck3 = 2725 } # Mosellia Minor -> BITSCH + link = { autogenerated = yes imp = 3023 ck3 = 2722 ck3 = 2723 } # Brocomagus -> HAGUENAU, LICHTBERG + link = { autogenerated = yes imp = 3024 ck3 = 2719 ck3 = 2721 } # Altitona -> SELESTAT, STRASSBURG + link = { autogenerated = yes imp = 3015 ck3 = 2715 } # Aquae Borbonis -> VAUDEMONT + link = { autogenerated = yes imp = 3017 ck3 = 2710 ck3 = 2712 } # Decem Pagi -> PUTTLINGEN, FINSTINGEN + link = { autogenerated = yes imp = 2499 ck3 = 2709 } # Scarponna -> NANCY + link = { autogenerated = yes imp = 2454 ck3 = 2708 ck3 = 2711 } # Divodurum -> METZ, FAULQUEMONT + link = { autogenerated = yes imp = 3698 imp = 3725 ck3 = 2707 } # Altaia, Dumnissus -> KREUSNACH + link = { autogenerated = yes imp = 3001 ck3 = 2706 } # Castrum Vabrense -> BRIEY + link = { autogenerated = yes imp = 3691 ck3 = 2705 } # Vicus Contiomagus -> FORBACH + link = { autogenerated = yes imp = 3692 ck3 = 2704 } # Mediomatricia -> SAARBRUCKEN + link = { autogenerated = yes imp = 3696 ck3 = 2701 ck3 = 2703 ck3 = 779 } # Cruciniacum -> VELDENZ, WADERN, German Mountains 6 + link = { autogenerated = yes imp = 3690 ck3 = 2700 } # Treveria -> KONZ + link = { autogenerated = yes imp = 2168 ck3 = 27 } # Caucia -> CAVAN + link = { autogenerated = yes imp = 3689 ck3 = 2699 } # Andethanna -> VIANDEN + link = { autogenerated = yes imp = 3688 ck3 = 2698 } # Ricciacum -> SAARBURG + link = { autogenerated = yes imp = 3701 ck3 = 2694 } # Mogontiacum -> MAINZ + link = { autogenerated = yes imp = 3699 ck3 = 2693 ck3 = 2854 } # Aquae Mattiacorum -> WIESBADEN, LIMBURG + link = { autogenerated = yes imp = 3789 ck3 = 2692 ck3 = 2851 ck3 = 2856 } # Usipetia -> KATZENELNBOGEN, DIEZ, HOMBURG + link = { autogenerated = yes imp = 3788 ck3 = 2691 ck3 = 778 } # Lacobardia -> ISENBURG, German Mountains 5 + link = { autogenerated = yes imp = 3787 ck3 = 2688 ck3 = 2689 } # Tenctheria -> SIEGBURG, SAYN + link = { autogenerated = yes imp = 3683 ck3 = 2687 } # Vervigium -> SAINT-HUBERT + link = { autogenerated = yes imp = 3728 ck3 = 2684 } # Icorigium -> PRUM + link = { autogenerated = yes imp = 3792 ck3 = 2680 ck3 = 2681 ck3 = 2849 } # Sicambria -> ARNSBERG, BILSTEIN, WITTENSTEIN + link = { autogenerated = yes imp = 3790 ck3 = 2676 ck3 = 2679 ck3 = 2690 } # Bacenis -> HUKESWAG, MARK, WIED + link = { autogenerated = yes imp = 3786 ck3 = 2673 ck3 = 2674 } # Arbalo -> DORTMUND, SOEST + link = { autogenerated = yes imp = 3784 ck3 = 2670 ck3 = 2671 } # Alesia Germanica -> MUNSTER, WARENDORF + link = { autogenerated = yes imp = 8 ck3 = 2669 } # Saticula -> ALIFE + link = { autogenerated = yes imp = 3595 ck3 = 2666 ck3 = 8765 } # Ateste -> MONTAGNANA, Este + link = { autogenerated = yes imp = 3497 imp = 3494 ck3 = 2665 } # Carbia, Sanaphar -> ALGHERO + link = { autogenerated = yes imp = 3499 ck3 = 2664 } # Nure -> PORTO TORRES + link = { autogenerated = yes imp = 3496 imp = 3500 ck3 = 2662 } # Gurulis, Libisonis -> SASSARI + link = { autogenerated = yes imp = 3491 imp = 3482 imp = 3490 ck3 = 2660 } # Lacon, Samas, Serdan -> SAMASSI + link = { autogenerated = yes imp = 3492 imp = 3493 ck3 = 2659 } # Othoca, Tharros -> ORISTANO + link = { autogenerated = yes imp = 3506 imp = 3504 imp = 3505 ck3 = 2658 } # Longones, Phausiane, Tibula -> OLBIA + link = { autogenerated = yes imp = 3503 imp = 3489 ck3 = 2657 } # Thorpe, Kares -> GALTELLI + link = { autogenerated = yes imp = 3488 imp = 3487 ck3 = 2656 } # Sulki Tyrsen, Tyrsenia -> TORTOLI + link = { autogenerated = yes imp = 3486 ck3 = 2655 } # Sarcapos -> CARBONARA + link = { autogenerated = yes imp = 3481 imp = 3485 ck3 = 2654 } # Sulcis, Gurgua -> IGLESIAS + link = { autogenerated = yes imp = 3484 imp = 3483 ck3 = 2653 } # Karali, Nura -> CAGLIARI + link = { autogenerated = yes imp = 3508 ck3 = 2652 } # Phikaria -> BONIFACIO + link = { autogenerated = yes imp = 3507 ck3 = 2651 } # Rhoubra -> VECCHIO + link = { autogenerated = yes imp = 3515 imp = 3516 ck3 = 2648 } # Aleria, Sermigion -> CORTE + link = { autogenerated = yes imp = 3513 imp = 3514 ck3 = 2647 } # Kanelate, Ouagon -> BASTIA + link = { autogenerated = yes imp = 1471 ck3 = 2646 } # Melita -> MALTA + link = { autogenerated = yes imp = 90 ck3 = 2645 } # Hippana -> CALATAFIMI + link = { autogenerated = yes imp = 91 imp = 7843 ck3 = 2644 } # Heraclea Minoa, Adranon -> MAZARA + link = { autogenerated = yes imp = 83 imp = 7840 ck3 = 2643 } # Leontini, Menae -> LENTINI + link = { autogenerated = yes imp = 85 ck3 = 2642 } # Gela -> CALTAGIRONE + link = { autogenerated = yes imp = 88 ck3 = 2641 } # Murgantia -> CALTANISETTA + link = { autogenerated = yes imp = 89 imp = 7839 imp = 7841 imp = 5149 ck3 = 2640 } # Henna, Capitium, Myttistraton, IMPASSIBLE TERRAIN 149 -> CASTROGIOVANNI + link = { autogenerated = yes imp = 7838 imp = 82 imp = 5000 ck3 = 2639 } # Centuripae, Catana, Aetna Volcano -> CATANIA + link = { autogenerated = yes imp = 101 imp = 7837 imp = 84 imp = 87 imp = 5148 ck3 = 2638 } # Camarina, Megara, Syracusae, Acrae, IMPASSIBLE TERRAIN 148 -> SYRACUSE + link = { autogenerated = yes imp = 86 ck3 = 2637 } # Acragas -> GIRGENTI + link = { autogenerated = yes imp = 94 imp = 92 imp = 93 imp = 95 ck3 = 2636 } # Lilybaeum, Egesta, Selinus, Eryx -> TRAPANI + link = { autogenerated = yes imp = 7842 imp = 96 imp = 97 ck3 = 2635 } # Soluntum, Panorumus, Thermai -> PALERMO + link = { autogenerated = yes imp = 100 imp = 98 imp = 5150 ck3 = 2634 } # Calacte, Cephaloedium, IMPASSIBLE TERRAIN 150 -> CEFALU + link = { autogenerated = yes imp = 99 imp = 1472 imp = 80 imp = 81 imp = 5147 imp = 7861 ck3 = 2633 } # Tyndaris, Liparae, Messana, Tauromenium, IMPASSIBLE TERRAIN 147, Strongyle Volcano -> MESSINA + link = { autogenerated = yes imp = 71 imp = 53 ck3 = 2632 } # Hostiliusanus, Grumentum -> STIGLIANO + link = { autogenerated = yes imp = 54 imp = 61 ck3 = 2631 } # Heraclea, Siris -> CAMARDA + link = { autogenerated = yes imp = 52 ck3 = 2629 ck3 = 2630 } # Thurii -> ROSSANO, CASTROVILLARI + link = { autogenerated = yes imp = 77 ck3 = 2628 } # Consentia -> COSENZA + link = { autogenerated = yes imp = 72 imp = 73 imp = 5001 ck3 = 2627 } # Rhegium, Locri, Aspromons -> REGGIO + link = { autogenerated = yes imp = 76 imp = 74 imp = 5002 ck3 = 2626 } # Temesa, Stylacium, Serrae -> SQUILLUCE + link = { autogenerated = yes imp = 79 imp = 78 ck3 = 2625 } # Petelia, Croton -> COTRONE + link = { autogenerated = yes imp = 55 imp = 68 imp = 70 ck3 = 2624 } # Metapontum, Turum, Silvium -> MATERA + link = { autogenerated = yes imp = 66 imp = 67 ck3 = 2623 } # Barium, Gnatia -> BARI + link = { autogenerated = yes imp = 57 imp = 65 ck3 = 2622 } # Brundisium, Lupiae -> BRINDISI + link = { autogenerated = yes imp = 56 ck3 = 2621 } # Tarentum -> TARANTO + link = { autogenerated = yes imp = 63 imp = 64 ck3 = 2620 } # Callipolis, Hydruntum -> OLRANTO + link = { autogenerated = yes imp = 69 imp = 58 ck3 = 2619 } # Natiolum, Barduli -> TRANI + link = { autogenerated = yes imp = 42 ck3 = 2618 } # Venusia -> VENOSA + link = { autogenerated = yes imp = 60 ck3 = 2617 } # Bantia -> ACERENZA + link = { autogenerated = yes imp = 47 imp = 46 imp = 5005 ck3 = 2616 } # Acerronia, Potentia, IMPASSIBLE TERRAIN 005 -> POTENZA + link = { autogenerated = yes imp = 39 imp = 37 imp = 38 imp = 45 ck3 = 2614 } # Canusium, Luceria, Sipontum, Ausculum -> SIPONTO + link = { autogenerated = yes imp = 13 imp = 5004 ck3 = 2613 } # Blanda, Mons Pullinus -> MARATEA + link = { autogenerated = yes imp = 11 ck3 = 2612 } # Paestum -> SALERNO + link = { autogenerated = yes imp = 10 imp = 9 imp = 1716 ck3 = 2611 } # Salerna, Pompeii, Abellinum -> AMALFI + link = { autogenerated = yes imp = 49 ck3 = 2610 } # Gerumum -> LUCERA + link = { autogenerated = yes imp = 1718 imp = 41 ck3 = 2609 } # Aeclanum, Beneventum -> BENEVENTO + link = { autogenerated = yes imp = 7 imp = 1713 imp = 7733 ck3 = 2608 } # Neapolis, Nuceria, Vesuvius Volcano -> NAPOLI + link = { autogenerated = yes imp = 6 ck3 = 2606 } # Capua -> CAPUA + link = { autogenerated = yes imp = 48 ck3 = 2605 } # Terventum -> LARINO + link = { autogenerated = yes imp = 29 imp = 35 ck3 = 2604 } # Histonium, Buca -> LANCIANO + link = { autogenerated = yes imp = 31 imp = 1712 imp = 5008 ck3 = 2602 } # Venafrum, Antinum, IMPASSIBLE TERRAIN 008 -> CASSINO + link = { autogenerated = yes imp = 27 imp = 24 ck3 = 2600 } # Fucens, Peltuinum -> AVEZZANO + link = { autogenerated = yes imp = 2196 ck3 = 26 } # Eblania Occidentalis -> LONGFORD + link = { autogenerated = yes imp = 111 ck3 = 2598 } # Picenum -> FERMO + link = { autogenerated = yes imp = 109 ck3 = 2597 } # Asculum -> ASCOLI PICENO + link = { autogenerated = yes imp = 107 imp = 108 ck3 = 2596 } # Interamnia, Matrinum -> TERAMO + link = { autogenerated = yes imp = 106 ck3 = 2595 ck3 = 2603 } # Aternum -> ATRI, CLUIELI + link = { autogenerated = yes imp = 117 ck3 = 2594 ck3 = 2599 } # Ancona -> ANCONA, MACERATA + link = { autogenerated = yes imp = 5 ck3 = 2592 ck3 = 2593 } # Fundi -> TERRACINA, GAETA + link = { autogenerated = yes imp = 25 imp = 26 imp = 5007 ck3 = 2591 } # Norba, Fregellae, IMPASSIBLE TERRAIN 007 -> SEGNI + link = { autogenerated = yes imp = 4 ck3 = 2590 } # Circeii -> VELLETRI + link = { autogenerated = yes imp = 19 imp = 2 ck3 = 2589 } # Carsioli, Tibur -> TIVOLI + link = { autogenerated = yes imp = 105 imp = 5011 ck3 = 2588 } # Trebula, IMPASSIBLE TERRAIN 011 -> RIETI + link = { autogenerated = yes imp = 110 imp = 118 ck3 = 2587 } # Septempeda, Cingulum -> CAMERINO + link = { autogenerated = yes imp = 23 imp = 104 imp = 5013 imp = 5015 ck3 = 2586 } # Narnia, Amiternum, IMPASSIBLE TERRAIN 013, IMPASSIBLE TERRAIN 015 -> TERNI + link = { autogenerated = yes imp = 123 ck3 = 2584 } # Iguvium -> CIVITAS CASTELLI + link = { autogenerated = yes imp = 122 imp = 5017 ck3 = 2583 } # Urbinum, IMPASSIBLE TERRAIN 017 -> CAGLI + link = { autogenerated = yes imp = 119 ck3 = 2582 } # Sentinum -> GUBBIO + link = { autogenerated = yes imp = 103 ck3 = 2581 ck3 = 2585 } # Plestia -> ASSISSI, SPOLETO + link = { autogenerated = yes imp = 20 ck3 = 2579 } # Cures -> FARFA + link = { autogenerated = yes imp = 15 ck3 = 2578 } # Ostia -> PALO + link = { autogenerated = yes imp = 16 ck3 = 2577 } # Veii -> VATICAN + link = { autogenerated = yes imp = 3 ck3 = 2576 } # Lavinium -> OSTIA + link = { autogenerated = yes imp = 18 ck3 = 2574 } # Nepete -> PATERNO + link = { autogenerated = yes imp = 14 ck3 = 2573 } # Pyrgi -> SUTRI + link = { autogenerated = yes imp = 17 ck3 = 2571 } # Tarquini -> CIVITAVECCHIA + link = { autogenerated = yes imp = 113 imp = 5016 ck3 = 2570 } # Aurinia, IMPASSIBLE TERRAIN 016 -> SOANA + link = { autogenerated = yes imp = 22 ck3 = 2569 } # Volci -> ORBETELLO + link = { autogenerated = yes imp = 21 ck3 = 2568 ck3 = 2572 } # Visentium -> ORIVETO, VITERBO + link = { autogenerated = yes imp = 115 ck3 = 2567 } # Rusellae -> MONTALCINO + link = { autogenerated = yes imp = 102 ck3 = 2566 } # Tuder -> PERUGIA + link = { autogenerated = yes imp = 116 ck3 = 2565 ck3 = 8760 } # Clusium -> CHIUSI, Asciano + link = { autogenerated = yes imp = 120 ck3 = 2564 } # Perusia -> CORTONA + link = { autogenerated = yes imp = 114 imp = 112 ck3 = 2562 } # Vetulonia, Telamon -> GROSSETO + link = { autogenerated = yes imp = 126 imp = 127 ck3 = 2561 } # Populonia, Ilva -> PIOMBINO + link = { autogenerated = yes imp = 125 imp = 130 ck3 = 2560 } # Ad Novas, Sena Iulia -> SIENA + link = { autogenerated = yes imp = 134 ck3 = 2559 ck3 = 2544 } # Florentia -> IMPRUNETA, VALLOMBROSA + link = { autogenerated = yes imp = 129 imp = 128 ck3 = 2558 } # Volaterrae, Vada Volaterrana -> VOLTERRA + link = { autogenerated = yes imp = 121 ck3 = 2556 } # Sena Gallica -> PESARO + link = { autogenerated = yes imp = 124 imp = 131 ck3 = 2554 } # Cortona, Arretium -> AREZZO + link = { autogenerated = yes imp = 132 ck3 = 2552 ck3 = 2555 } # Sarsina -> MONTEFELTRO, URBINO + link = { autogenerated = yes imp = 147 ck3 = 2548 ck3 = 2549 } # Faventia -> FORLI, IMOLA + link = { autogenerated = yes imp = 133 imp = 148 ck3 = 2547 } # Ariminum, Forum Popilii -> RIMINI + link = { autogenerated = yes imp = 142 ck3 = 2546 } # Ravenna -> RAVENNA + link = { autogenerated = yes imp = 139 ck3 = 2543 ck3 = 2545 ck3 = 2551 } # Pistoriae -> FIRENZE, PRATO, CAMALDOLI + link = { autogenerated = yes imp = 149 ck3 = 2541 ck3 = 2542 ck3 = 2540 } # Mutina -> CENTO, BOLOGNA, MODENA + link = { autogenerated = yes imp = 6043 ck3 = 254 ck3 = 253 ck3 = 256 } # Arothia -> HAUGELAND, RYFYLKI, SUNNHORDALAND + link = { autogenerated = yes imp = 135 ck3 = 2538 ck3 = 2563 } # Valvata -> PISTORJA, EMPOLI + link = { autogenerated = yes imp = 138 imp = 137 ck3 = 2537 } # Luca, Luna -> LUCCA + link = { autogenerated = yes imp = 136 ck3 = 2536 ck3 = 2557 } # Pisae -> PISA, LIVORNO + link = { autogenerated = yes imp = 151 ck3 = 2534 ck3 = 2535 } # Regium Lepidum -> REGGIO, CANOSSA + link = { autogenerated = yes imp = 152 ck3 = 2533 ck3 = 2490 } # Parma -> BRESCELLO, FLORENTIOLA + link = { autogenerated = yes imp = 153 imp = 154 imp = 5021 ck3 = 2532 } # Forum Novum, Rubra, IMPASSIBLE TERRAIN 021 -> PARMA + link = { autogenerated = yes imp = 141 ck3 = 2531 } # Portus Veneris -> LUNA + link = { autogenerated = yes imp = 3591 imp = 3587 imp = 3588 ck3 = 2530 } # Vicus Varianus, Brixellum, Colicaria -> GUASTALLA + link = { autogenerated = yes imp = 3592 ck3 = 2529 } # Forum Alieni -> CONA + link = { autogenerated = yes imp = 144 ck3 = 2528 } # Spina -> COMACCHIO + link = { autogenerated = yes imp = 150 ck3 = 2527 } # Vicus Aventia -> FERRARA + link = { autogenerated = yes imp = 145 ck3 = 2526 } # Corniculani -> POMPOSA + link = { autogenerated = yes imp = 3597 ck3 = 2525 } # Anneianum -> ROVIGO + link = { autogenerated = yes imp = 3593 ck3 = 2524 } # Hatria -> ADRIA + link = { autogenerated = yes imp = 4021 ck3 = 2522 } # Flanona -> VIKLA + link = { autogenerated = yes imp = 4034 ck3 = 2521 } # Apsaros -> CHERSO + link = { autogenerated = yes imp = 4022 ck3 = 2520 } # Piquentum -> PAZIN + link = { autogenerated = yes imp = 6042 ck3 = 252 ck3 = 290 } # Eunixia -> JATHARR, HEIANE + link = { autogenerated = yes imp = 4018 ck3 = 2519 } # Tergeste -> PIRAN + link = { autogenerated = yes imp = 4019 imp = 4020 ck3 = 2518 } # Parentium, Pola -> PULA + link = { autogenerated = yes imp = 4026 ck3 = 2516 } # Longaticum -> GORIZIA + link = { autogenerated = yes imp = 3607 imp = 3606 ck3 = 2514 } # Timavos, Aquileia -> TRIESTE + link = { autogenerated = yes imp = 3604 ck3 = 2513 } # Reunia -> PORDENONE + link = { autogenerated = yes imp = 3601 ck3 = 2512 } # Portus Liquentiae -> CAORLE + link = { autogenerated = yes imp = 3603 ck3 = 2511 } # Opitergium -> CENETA + link = { autogenerated = yes imp = 6041 ck3 = 251 ck3 = 289 ck3 = 292 } # Aetelrugia -> LISTER, OTTRUNES, ARAK + link = { autogenerated = yes imp = 3596 ck3 = 2509 } # Vicetia -> LONIGO + link = { autogenerated = yes imp = 3605 ck3 = 2508 ck3 = 2510 } # Forum Iulii -> AQUILEIA, UDINE + link = { autogenerated = yes imp = 3602 ck3 = 2507 ck3 = 8766 } # Iulia Concordia -> GRADO, Portogruaro + link = { autogenerated = yes imp = 3598 ck3 = 2506 } # Altinum -> MESTRE + link = { autogenerated = yes imp = 3599 ck3 = 2505 } # Tarvisium -> TREVISO + link = { autogenerated = yes imp = 143 ck3 = 2504 } # Brundulum -> CHIOGGIA + link = { autogenerated = yes imp = 3594 ck3 = 2503 ck3 = 8767 } # Patavium -> PADUA, Malamacco + link = { autogenerated = yes imp = 3589 imp = 3586 ck3 = 2501 } # Hostilia, Mantua -> VERONA + link = { autogenerated = yes imp = 3600 imp = 12886 ck3 = 2500 } # Acelum, Feltrini -> VICENZA + link = { autogenerated = yes imp = 3660 ck3 = 2499 } # Salurnis -> TRENTO + link = { autogenerated = yes imp = 3585 imp = 3583 ck3 = 2497 } # Bedriacum, Ariolica -> MANTUA + link = { autogenerated = yes imp = 3584 imp = 3662 ck3 = 2496 } # Verona, Bretina -> GARDA + link = { autogenerated = yes imp = 3661 ck3 = 2495 } # Tridentium -> VAL CAMONICA + link = { autogenerated = yes imp = 3581 ck3 = 2494 ck3 = 8762 } # Brixia -> BRESCIA, Chiari + link = { autogenerated = yes imp = 3579 ck3 = 2493 } # Bergomum -> BERGAMO + link = { autogenerated = yes imp = 3580 ck3 = 2492 } # Laus Insubrum -> CREMA + link = { autogenerated = yes imp = 3582 ck3 = 2491 } # Cremona -> CREMONA + link = { autogenerated = yes imp = 6040 ck3 = 249 } # Augandzia -> ARENDALL + link = { autogenerated = yes imp = 3575 imp = 3576 ck3 = 2489 } # Placentia, Florentiola -> RONCAGLIA + link = { autogenerated = yes imp = 3552 ck3 = 2485 } # Segesta -> CHIAVARI + link = { autogenerated = yes imp = 3554 imp = 3553 ck3 = 2483 } # Dertona, Libarna -> TORTONA + link = { autogenerated = yes imp = 3578 imp = 3577 ck3 = 2481 } # Argentea, Forum Licinii -> MONZA + link = { autogenerated = yes imp = 3571 ck3 = 2480 } # Mediolanum -> GALLARATE + link = { autogenerated = yes imp = 6039 ck3 = 248 ck3 = 288 } # Grannia -> TELEMARK, HEDDALI + link = { autogenerated = yes imp = 3570 ck3 = 2477 } # Comum -> COMO + link = { autogenerated = yes imp = 3573 ck3 = 2476 } # Lambrum -> LODI + link = { autogenerated = yes imp = 3572 ck3 = 2475 ck3 = 2482 } # Ticinum -> PAVIA, MILAN + link = { autogenerated = yes imp = 3565 ck3 = 2474 } # Laumellum -> VIGEVANO + link = { autogenerated = yes imp = 3568 ck3 = 2473 } # Victimulae -> BIELLA + link = { autogenerated = yes imp = 3569 ck3 = 2472 } # Sebuinus Vicus -> POMBIA + link = { autogenerated = yes imp = 3566 ck3 = 2471 } # Novaria -> NOVARA + link = { autogenerated = yes imp = 3562 ck3 = 2470 } # Vercellae -> VERCELLI + link = { autogenerated = yes imp = 3555 ck3 = 2469 } # Forum Fulvii -> ASTI + link = { autogenerated = yes imp = 3556 imp = 3557 ck3 = 2468 } # Aquae Statiellae, Crixia -> ACQUI + link = { autogenerated = yes imp = 3550 ck3 = 2467 } # Coeba -> ALBA + link = { autogenerated = yes imp = 3549 ck3 = 2466 } # Genua -> GENOA + link = { autogenerated = yes imp = 3547 ck3 = 2465 } # Savo -> SAVONA + link = { autogenerated = yes imp = 2386 ck3 = 2464 } # Ambiacum -> LA TREMOUILLE + link = { autogenerated = yes imp = 2416 ck3 = 2463 } # Brivodurum -> SULLY-SUR-LOIRE + link = { autogenerated = yes imp = 2231 ck3 = 2462 } # Lamnum -> COGNAC + link = { autogenerated = yes imp = 2355 ck3 = 2459 } # Vesontio -> ORNANS + link = { autogenerated = yes imp = 2359 ck3 = 2458 } # Matisco -> DOLE + link = { autogenerated = yes imp = 3626 imp = 3625 ck3 = 2457 } # Antro, Equestris -> CHAMPAGNOLE + link = { autogenerated = yes imp = 3535 ck3 = 2456 } # Segusio -> CANAVESE + link = { autogenerated = yes imp = 3538 imp = 3539 ck3 = 2455 } # Voludnia, Labisco -> CHAMBERY + link = { autogenerated = yes imp = 3833 ck3 = 2453 } # Amastica -> DELFZIJL + link = { autogenerated = yes imp = 3685 ck3 = 2449 } # Orolaunum -> CLERVAUX + link = { autogenerated = yes imp = 1079 ck3 = 2447 } # Ad Vicensi -> LIMOUX + link = { autogenerated = yes imp = 3835 ck3 = 2444 ck3 = 2838 } # Ansibaria -> VECHTA, DIEPHOLZ + link = { autogenerated = yes imp = 3831 ck3 = 2443 } # Dulgia -> RAVENSBERG + link = { autogenerated = yes imp = 3841 ck3 = 2441 ck3 = 2442 ck3 = 2445 } # Chasuaria -> PAPENBURG, TWISTRINGEN, CLOPPENBURG + link = { autogenerated = yes imp = 3830 ck3 = 2440 ck3 = 2841 ck3 = 2842 } # Marsia -> OSNABRUCK, WIEDENBRUCK, LIPPSTADT + link = { autogenerated = yes imp = 3780 ck3 = 2439 ck3 = 2446 } # Teuderium -> MEPPEN, TECKLENBURG + link = { autogenerated = yes imp = 3839 ck3 = 2438 ck3 = 2454 } # Visurgis -> OLDENBURG, VAREL + link = { autogenerated = yes imp = 3842 ck3 = 2436 } # Unsingia -> LEER + link = { autogenerated = yes imp = 3777 ck3 = 2435 ck3 = 2675 } # Dorsten -> WEZEL, RECKLINGHAUSEN + link = { autogenerated = yes imp = 3782 ck3 = 2434 } # Amsivaria Bructeriorum -> BREDEVOORT + link = { autogenerated = yes imp = 3783 ck3 = 2672 } # Caesia -> AHLEN + link = { autogenerated = yes imp = 3785 ck3 = 2433 ck3 = 2677 ck3 = 2678 } # Alisutum -> BERGH, ESSEN, HAGEN + link = { autogenerated = yes imp = 3778 ck3 = 2431 ck3 = 2432 } # Mediolanum Belgicum -> ALMELO, BORCULO + link = { autogenerated = yes imp = 3776 ck3 = 2429 } # Carvium -> ZUTPHEN + link = { autogenerated = yes imp = 3850 ck3 = 2425 ck3 = 2427 } # Chamoria -> TIEL, APELDOORN + link = { autogenerated = yes imp = 3781 ck3 = 2423 } # Vidrosia -> OMMEN + link = { autogenerated = yes imp = 3779 ck3 = 2422 ck3 = 2430 } # Salia Chasuaria -> COEVORDEN, BENTHEIM + link = { autogenerated = yes imp = 3851 ck3 = 2421 ck3 = 2426 ck3 = 2428 } # Isala -> ZWOLLE, HARDERWIJK, ARNHEM + link = { autogenerated = yes imp = 3834 ck3 = 2419 ck3 = 2420 } # Noviliacum -> EMMEN, ASSEN + link = { autogenerated = yes imp = 3836 ck3 = 2418 ck3 = 2437 } # Amsivaria -> EMDEN, WILHELMSHAVEN + link = { autogenerated = yes imp = 3832 ck3 = 2414 ck3 = 2415 ck3 = 2417 } # Manarmanis -> DOKKUM, APPPINGEDAM, GRONINGEN + link = { autogenerated = yes imp = 3852 ck3 = 2411 ck3 = 2413 } # Flevum -> HARLINGEN, LEEUWARDEN + link = { autogenerated = yes imp = 3854 ck3 = 2410 ck3 = 2416 ck3 = 2452 } # Tubantia -> STAVEREN, KAMPEN, STEENWIJK + link = { autogenerated = yes imp = 3848 ck3 = 2406 ck3 = 2408 ck3 = 2424 ck3 = 2451 } # Traiectum -> AMSTERDAM, EDAM, UTRECHT, AMERSFOORT + link = { autogenerated = yes imp = 3847 ck3 = 2405 ck3 = 2407 ck3 = 2409 ck3 = 2412 } # Baduhenna -> HAARLEM, AALKMAR, MEDEMBLIK, WAADEILANNEN + link = { autogenerated = yes imp = 3846 ck3 = 2403 ck3 = 2404 } # Lugadurum -> ROTTERDAM, DELFT + link = { autogenerated = yes imp = 3849 ck3 = 2402 } # Manaritum -> DORT + link = { autogenerated = yes imp = 3845 ck3 = 2401 } # Marsacia -> BRIELLE + link = { autogenerated = yes imp = 2202 ck3 = 24 ck3 = 25 } # Nagnatia Orientalis -> DROMAHAIR, BELCOO + link = { autogenerated = yes imp = 2452 ck3 = 2398 ck3 = 2399 ck3 = 2400 } # Seussonia -> COUCY, LAON, ROUCY + link = { autogenerated = yes imp = 3043 ck3 = 2397 } # Viromanduorum -> MARLE + link = { autogenerated = yes imp = 3048 ck3 = 2396 } # Verbinum -> ROMIGNY + link = { autogenerated = yes imp = 2494 ck3 = 2395 } # Basillia -> VERDUN + link = { autogenerated = yes imp = 3051 ck3 = 2394 } # Porricum -> MEZIERES + link = { autogenerated = yes imp = 3049 ck3 = 2393 } # Vungovicus -> GRANPRE + link = { autogenerated = yes imp = 2450 ck3 = 2392 } # Durocatalaunum -> CHALONS + link = { autogenerated = yes imp = 2451 ck3 = 2390 ck3 = 2391 } # Durocortorum -> REIMS, RETHEL + link = { autogenerated = yes imp = 2495 ck3 = 2389 } # Tanomia -> SAINT-DIZIER + link = { autogenerated = yes imp = 2496 ck3 = 2388 } # Caturicis -> BAR + link = { autogenerated = yes imp = 3007 ck3 = 2386 } # Grannum -> GRAND + link = { autogenerated = yes imp = 3004 ck3 = 2385 } # Mosa -> Champs + link = { autogenerated = yes imp = 3003 ck3 = 2384 } # Solicia -> NEUFCHATEAU + link = { autogenerated = yes imp = 2428 ck3 = 2382 ck3 = 2383 } # Varcia -> GRAY, GY + link = { autogenerated = yes imp = 2433 imp = 2436 ck3 = 2381 } # Benevellum, Divionense -> CHAUMONT + link = { autogenerated = yes imp = 2429 ck3 = 2380 } # Tilena -> DIJON + link = { autogenerated = yes imp = 2440 ck3 = 2379 } # Alesia -> MONTBARD + link = { autogenerated = yes imp = 2438 imp = 2437 ck3 = 2378 } # Bibracte, Sidoloucum -> MORVAN + link = { autogenerated = yes imp = 2362 ck3 = 2377 } # Castrum Divionense -> CITEAUX + link = { autogenerated = yes imp = 2435 ck3 = 2376 } # Vidubia -> BEAUNE + link = { autogenerated = yes imp = 3005 ck3 = 2375 } # Segeserra -> CLAIRVAUX + link = { autogenerated = yes imp = 2354 ck3 = 2374 } # Andematunnum -> LANGRES + link = { autogenerated = yes imp = 3008 ck3 = 2373 } # Tricassia -> JOINVILLE + link = { autogenerated = yes imp = 3006 ck3 = 2372 } # Corobillium -> BAR-SUR-AUBE + link = { autogenerated = yes imp = 2449 ck3 = 2371 } # Augustobona -> TROYES + link = { autogenerated = yes imp = 2488 ck3 = 2369 ck3 = 2370 } # Eburobriga -> AUBE, BAR-SUR-SEINE + link = { autogenerated = yes imp = 2448 ck3 = 2368 } # Agedincum -> NOGENT + link = { autogenerated = yes imp = 2490 ck3 = 2367 } # Malliacus -> VITRY-EN-PERTHOIS + link = { autogenerated = yes imp = 2487 ck3 = 2366 } # Senonia -> EPERNAY + link = { autogenerated = yes imp = 2489 ck3 = 2365 } # Artiaca -> ROMILLY + link = { autogenerated = yes imp = 2491 ck3 = 2362 } # Mugilonia -> CHATILLON + link = { autogenerated = yes imp = 2492 ck3 = 2360 ck3 = 2361 } # Odomagus -> CREPY, CHATEAU-THIERRY + link = { autogenerated = yes imp = 2447 ck3 = 2358 } # Iatinon -> SENLIS + link = { autogenerated = yes imp = 2444 ck3 = 2357 } # Catalacus -> SAINT-DENIS + link = { autogenerated = yes imp = 2484 ck3 = 2356 ck3 = 2359 } # Calagum -> MONTREUIL, MEAUX + link = { autogenerated = yes imp = 2485 ck3 = 2355 ck3 = 2364 } # Riobe -> CRECY, COULOMMIERS + link = { autogenerated = yes imp = 2483 ck3 = 2354 } # Cala -> MELUN + link = { autogenerated = yes imp = 2482 ck3 = 2353 } # Agedincum -> BRAY + link = { autogenerated = yes imp = 2353 ck3 = 2352 } # Autessiodurum -> SENS + link = { autogenerated = yes imp = 2430 ck3 = 2350 } # Tornodurum -> CHABLIS + link = { autogenerated = yes imp = 2439 ck3 = 2349 } # Aballo -> VEZELAY + link = { autogenerated = yes imp = 2360 ck3 = 2348 } # Cabillonum -> CHALON + link = { autogenerated = yes imp = 2348 ck3 = 2347 } # Augustodunum -> AUTUN + link = { autogenerated = yes imp = 2432 ck3 = 2346 } # Cora Vicus -> AUXERRE + link = { autogenerated = yes imp = 2413 ck3 = 2345 } # Vicus Massava -> DONZY + link = { autogenerated = yes imp = 2434 imp = 2412 ck3 = 2344 } # Cervidunum, Nogeomagus -> POUGUES-LES-EAUX + link = { autogenerated = yes imp = 2367 imp = 2366 ck3 = 2343 } # Decetia, Allsincum -> NEVERS + link = { autogenerated = yes imp = 2480 ck3 = 2342 } # Montargia -> MONTEREAU + link = { autogenerated = yes imp = 2418 ck3 = 2340 } # Bandritum -> COURTENAY + link = { autogenerated = yes imp = 2417 ck3 = 2339 } # Belca -> MONTARGIS + link = { autogenerated = yes imp = 2350 ck3 = 2338 } # Cenabum -> ORLEANS + link = { autogenerated = yes imp = 2479 ck3 = 2337 } # Ad Fines Galliarum -> NEMOURS + link = { autogenerated = yes imp = 2478 ck3 = 2336 } # Salioclita -> ETAMPES + link = { autogenerated = yes imp = 2481 ck3 = 2335 } # Mellodunum -> MONTLHERY + link = { autogenerated = yes imp = 2476 ck3 = 2334 } # Dortenco -> VERSAILLES + link = { autogenerated = yes imp = 2475 ck3 = 2333 } # Lutetia -> PARIS + link = { autogenerated = yes imp = 2477 ck3 = 2332 } # Diodurum -> MONTFORT + link = { autogenerated = yes imp = 2442 ck3 = 2330 ck3 = 2331 } # Aulercorum -> VERNON, DREUX + link = { autogenerated = yes imp = 2466 ck3 = 2329 } # Uggate -> EVREUX + link = { autogenerated = yes imp = 2221 ck3 = 2326 } # Esuvia Australis -> ARGENTAN + link = { autogenerated = yes imp = 2464 imp = 2461 imp = 2463 ck3 = 2324 } # Ebrovicia, Carnutia Occidentalis, Condate -> MORTAGNE + link = { autogenerated = yes imp = 2460 ck3 = 2323 } # Carnutia Orientalis -> NOGENT-LE-ROTROU + link = { autogenerated = yes imp = 2441 imp = 2462 ck3 = 2322 } # Autricum, Dorocas -> CHARTRES + link = { autogenerated = yes imp = 2457 ck3 = 2320 } # Dunense Castrum -> BEAUGENCY + link = { autogenerated = yes imp = 12662 ck3 = 232 ck3 = 8731 } # Augo -> ROMERIKI, Nordmark + link = { autogenerated = yes imp = 2425 imp = 2424 ck3 = 2319 } # Blesum, Tasciaca -> BLOIS + link = { autogenerated = yes imp = 2408 ck3 = 2317 } # Biturigum -> OLIVET + link = { autogenerated = yes imp = 2406 ck3 = 2316 } # Leprosum -> ROMORANTIN + link = { autogenerated = yes imp = 2407 ck3 = 2315 ck3 = 2318 } # Gabris -> VIERZON, CONTRES + link = { autogenerated = yes imp = 2411 imp = 2347 imp = 2414 ck3 = 2314 } # Segivomicus, Avaricum, Condate Avaricum -> SANCERRE + link = { autogenerated = yes imp = 2368 ck3 = 2313 } # Tincontium -> HERRY + link = { autogenerated = yes imp = 2377 ck3 = 2311 ck3 = 2312 } # Derventum -> ORVAL, BOURGES + link = { autogenerated = yes imp = 2376 ck3 = 2310 } # Aquae Neri -> BOURBON-LARCHEMBAULT + link = { autogenerated = yes imp = 6035 ck3 = 231 ck3 = 285 } # Vinovilothia -> AUSTFOLD, BORGARSYSLAR + link = { autogenerated = yes imp = 2373 ck3 = 2309 } # Ricomagus -> SAINT-POURCAIN + link = { autogenerated = yes imp = 2375 ck3 = 2308 } # Manatum -> MONTLUCON + link = { autogenerated = yes imp = 2374 ck3 = 2307 } # Arthona -> MOULINS + link = { autogenerated = yes imp = 2371 imp = 2372 ck3 = 2306 } # Aquae Calidae, Sitilia -> JILAGNY + link = { autogenerated = yes imp = 2299 imp = 2370 ck3 = 2305 } # Biliomagus, Transalium -> ROANNE + link = { autogenerated = yes imp = 2369 ck3 = 2303 } # Berberensis -> SEMUR-EN-BRIONNAIS + link = { autogenerated = yes imp = 2365 ck3 = 2302 ck3 = 2304 } # Pocrinnium -> MACON, CLUNY + link = { autogenerated = yes imp = 2364 ck3 = 2301 } # Rodumna -> BEAUJEU + link = { autogenerated = yes imp = 6034 ck3 = 230 } # Tanum -> RANIRIKI + link = { autogenerated = yes imp = 2184 ck3 = 23 ck3 = 8747 } # Gangania Borealis -> ATHENRY, Da_Chainoc + link = { autogenerated = yes imp = 2298 ck3 = 2299 ck3 = 2300 ck3 = 2295 } # Brivas -> THIERS, AMBERT, LA TOUR + link = { autogenerated = yes imp = 2337 ck3 = 2294 } # Argenta -> AURILLAC + link = { autogenerated = yes imp = 6025 ck3 = 229 ck3 = 8770 } # Ragnaricia -> BAGAHUS, Uddevalla + link = { autogenerated = yes imp = 1719 ck3 = 2289 } # Avitacum -> CLERMONT-SUR-ALLIER + link = { autogenerated = yes imp = 2284 ck3 = 2288 } # Gergovia -> MONTEPENSIER + link = { autogenerated = yes imp = 2342 ck3 = 2287 } # Ubiquum -> AUBUSSON + link = { autogenerated = yes imp = 2343 imp = 2344 imp = 2378 ck3 = 2286 } # Salviacum, Durotincum, Finis Secundus -> GUERET + link = { autogenerated = yes imp = 2283 ck3 = 2284 ck3 = 2285 } # Augustoritum -> BELLAC, GRANDMONT + link = { autogenerated = yes imp = 2426 ck3 = 2283 } # Navicellis -> VENDOME + link = { autogenerated = yes imp = 2215 imp = 2145 ck3 = 2282 } # Foricum, Dolus -> COMBOURG + link = { autogenerated = yes imp = 2380 imp = 2381 ck3 = 2281 } # Cambonum, Mediolanicum -> BOUSSAC + link = { autogenerated = yes imp = 2382 imp = 2379 ck3 = 2280 } # Idunum, Accitodunum -> DEOLS + link = { autogenerated = yes imp = 3882 ck3 = 228 } # Reudingia Maior -> MIDDELFART + link = { autogenerated = yes imp = 2383 imp = 2346 imp = 2384 ck3 = 2279 } # Ferruciacum, Argentomagus, Vosagum -> CHATEAUROUX + link = { autogenerated = yes imp = 2409 imp = 2410 ck3 = 2278 } # Ernodurum, Exolidunum -> ISSOUDUN + link = { autogenerated = yes imp = 2405 ck3 = 2277 } # Pontiniacum -> VALENCAY + link = { autogenerated = yes imp = 2419 imp = 2420 ck3 = 2276 } # Claudiomagus, Iciodoro -> LA HAYE + link = { autogenerated = yes imp = 2422 ck3 = 2275 } # Onia -> LOCHES + link = { autogenerated = yes imp = 2395 imp = 2421 ck3 = 2274 } # Briggogalus, Cisomagus -> TOURS + link = { autogenerated = yes imp = 2423 ck3 = 2273 } # Severiacus -> TOURAINE + link = { autogenerated = yes imp = 2459 ck3 = 2272 } # Vindinum -> COURCILLON + link = { autogenerated = yes imp = 2219 ck3 = 2271 ck3 = 2325 } # Noviodunum -> SARTHE, ALENCON + link = { autogenerated = yes imp = 3869 ck3 = 227 } # Cobandia Maior -> TAULOV + link = { autogenerated = yes imp = 2349 ck3 = 2269 } # Vivicum -> LE LUDE + link = { autogenerated = yes imp = 2401 ck3 = 2268 } # Noviliacus -> LA FLECHE + link = { autogenerated = yes imp = 2400 imp = 2394 ck3 = 2267 } # Robrica, Caesarodunum -> ANGERS + link = { autogenerated = yes imp = 2214 imp = 2216 ck3 = 2266 } # Diablintum, Abricates -> MAYENNE + link = { autogenerated = yes imp = 2217 ck3 = 2265 } # Modulus -> LAVAL + link = { autogenerated = yes imp = 2351 ck3 = 2264 } # Brucironno -> SABLE + link = { autogenerated = yes imp = 2352 imp = 2402 ck3 = 2263 } # Iuliomagus, Bricca -> LUIGNE + link = { autogenerated = yes imp = 2403 ck3 = 2262 } # Salica -> CRAON + link = { autogenerated = yes imp = 2398 ck3 = 2260 ck3 = 2261 } # Segora -> MELAY, SAUMUR + link = { autogenerated = yes imp = 3871 ck3 = 226 } # Eudosia Cimbrica -> DJURSLAND + link = { autogenerated = yes imp = 2227 ck3 = 2259 } # Vertavia -> MAULEVRIER + link = { autogenerated = yes imp = 2228 ck3 = 2258 } # Pictonia -> BRESSUIRE + link = { autogenerated = yes imp = 2397 imp = 2399 ck3 = 2257 } # Vultaconum, Toarcius -> THOUARS + link = { autogenerated = yes imp = 2396 ck3 = 2256 } # Clinno -> LOUDUN + link = { autogenerated = yes imp = 2393 ck3 = 2255 } # Voglada -> PARTHENAY + link = { autogenerated = yes imp = 2391 imp = 2390 ck3 = 2254 } # Brigiosum, Rauranum -> NIORT + link = { autogenerated = yes imp = 2385 imp = 2388 ck3 = 2253 } # Andecamulum, Comodoliacus -> CHATELLERAULT + link = { autogenerated = yes imp = 2345 imp = 2387 ck3 = 2252 } # Limonum, Exidualum -> POITIERS + link = { autogenerated = yes imp = 2334 imp = 2333 ck3 = 2251 } # Campaniacum, Canaviacum -> RUFFEC + link = { autogenerated = yes imp = 3000 ck3 = 2250 } # Sermanicomago -> MELLE + link = { autogenerated = yes imp = 2392 imp = 2389 ck3 = 2249 } # Aunnedonacum, Cassinomagum -> LUSIGNAN + link = { autogenerated = yes imp = 2404 imp = 2341 ck3 = 2248 } # Sisciacum, Curisiacum -> LIMOGES + link = { autogenerated = yes imp = 2340 imp = 1721 imp = 3307 ck3 = 2247 } # Tiniacum, Fines, Confluenta -> VENTADOUR + link = { autogenerated = yes imp = 2331 imp = 2330 ck3 = 2246 } # Gemilliacum, Userca -> CHALUS + link = { autogenerated = yes imp = 2290 ck3 = 2244 ck3 = 2245 } # Iculisma -> ANGOULEME, SAINT-JUNIEN + link = { autogenerated = yes imp = 2230 ck3 = 2242 ck3 = 2243 } # Mediolanum Santonum -> SAINTES, TAILLEBOURG + link = { autogenerated = yes imp = 2328 ck3 = 2240 } # Briva -> TURENNE + link = { autogenerated = yes imp = 3877 ck3 = 224 } # Cimbria Australis -> RANDROS + link = { autogenerated = yes imp = 2332 imp = 2291 ck3 = 2239 } # Negiacum, Sarrum -> NONTRON + link = { autogenerated = yes imp = 2329 ck3 = 2238 } # Nonniacus -> MONTIGNAC + link = { autogenerated = yes imp = 2287 imp = 2282 ck3 = 2237 } # Corterate, Vesunna -> PERIGUEUX + link = { autogenerated = yes imp = 2292 ck3 = 2236 } # Pompegiaco -> BERGERAC + link = { autogenerated = yes imp = 2294 ck3 = 2235 } # Travectus -> AGENAIS + link = { autogenerated = yes imp = 2338 ck3 = 2234 } # Eustriacum -> FIGEAC + link = { autogenerated = yes imp = 2335 imp = 2326 imp = 2327 ck3 = 2233 } # Marcelliago, Decaniacum, Acuciago -> CAHORS + link = { autogenerated = yes imp = 2293 imp = 2270 ck3 = 2232 } # Excisum, Aginnum -> AGEN + link = { autogenerated = yes imp = 2269 ck3 = 2231 } # Divona -> QUERCY + link = { autogenerated = yes imp = 2280 ck3 = 2230 } # Marinavas -> MONTAUBAN + link = { autogenerated = yes imp = 3867 ck3 = 223 ck3 = 225 ck3 = 82 } # Sigulonia Borealis -> YCOST, TARM, RINGKOBING + link = { autogenerated = yes imp = 2262 ck3 = 2229 } # Segodunum -> LA PEYRADE + link = { autogenerated = yes imp = 2268 ck3 = 2228 } # Carantomagus -> LA SALLE + link = { autogenerated = yes imp = 2286 ck3 = 2225 } # Vellavorum -> LE PUY + link = { autogenerated = yes imp = 2295 ck3 = 2222 } # Ad Silanum -> MILAU + link = { autogenerated = yes imp = 2285 ck3 = 2221 ck3 = 2223 } # Gabalum -> MENDE, GEVAUDAN + link = { autogenerated = yes imp = 3872 ck3 = 222 } # Eudosia Centralis -> ORMSTRUP + link = { autogenerated = yes imp = 2261 ck3 = 2219 ck3 = 2220 } # Luteva -> LODEVE, NAVACELLES + link = { autogenerated = yes imp = 2296 ck3 = 2217 ck3 = 2291 ck3 = 2296 } # Condate Arvernorum -> ALES, LANGEAC, VELAY + link = { autogenerated = yes imp = 2316 imp = 2315 imp = 2317 ck3 = 2216 } # Staturnae, Briginnum, Ucetia -> USES + link = { autogenerated = yes imp = 2265 ck3 = 2214 } # Tolosa -> TOULOUSE + link = { autogenerated = yes imp = 2279 ck3 = 2213 } # Sarnali -> CASTELSARRASIN + link = { autogenerated = yes imp = 2267 ck3 = 2212 } # Elusio -> CASTELNAUDARY + link = { autogenerated = yes imp = 2254 ck3 = 2211 ck3 = 2007 } # Tarusco -> PAMIERS, MONTBEL + link = { autogenerated = yes imp = 3874 ck3 = 221 } # Teutonia Minor -> HOLSTEBRO + link = { autogenerated = yes imp = 2253 ck3 = 2209 ck3 = 2210 } # Consoranni -> FOIX, TARASCON + link = { autogenerated = yes imp = 2278 ck3 = 2208 } # Casinomagus -> BEAUMONT + link = { autogenerated = yes imp = 2252 imp = 2266 imp = 2277 ck3 = 2207 } # Lugdunum Convenarum, Aquae Siccae, Belsinum -> MURET + link = { autogenerated = yes imp = 2275 ck3 = 2205 } # Elimberrum -> LOMAGNE + link = { autogenerated = yes imp = 2271 ck3 = 2204 } # Lactora -> LECTOURE + link = { autogenerated = yes imp = 2249 ck3 = 2202 ck3 = 2206 } # Tarba -> PARDIAC, ASTARAC + link = { autogenerated = yes imp = 2250 imp = 2247 ck3 = 2201 } # Atura, Bene Harnum -> ARMAGNAC + link = { autogenerated = yes imp = 2281 ck3 = 2200 } # Ussubium -> GABARDAN + link = { autogenerated = yes imp = 3864 ck3 = 220 ck3 = 60 } # Avionia Maior -> STRAND, RIBE + link = { autogenerated = yes imp = 2198 imp = 2171 ck3 = 22 } # Autenia Orientalis, Nagnatia Occidentalis -> SLIGO + link = { autogenerated = yes imp = 2274 ck3 = 2199 } # Saviniago -> MARSAN + link = { autogenerated = yes imp = 2272 imp = 2288 ck3 = 2198 } # Cossium, Praemiacum -> BAZADAIS + link = { autogenerated = yes imp = 2245 ck3 = 2197 } # Stomatas -> LANGON + link = { autogenerated = yes imp = 2241 ck3 = 2196 } # Telonnum -> ALBRET + link = { autogenerated = yes imp = 2242 ck3 = 2195 } # Coequosa -> TARTAS + link = { autogenerated = yes imp = 2243 ck3 = 2193 ck3 = 2194 } # Aquae Tarbellicae -> PAU, TURSAN + link = { autogenerated = yes imp = 3013 ck3 = 2192 } # Magetobria -> LURE + link = { autogenerated = yes imp = 2363 ck3 = 2191 } # Pons Ariola -> QUINGEY + link = { autogenerated = yes imp = 2472 ck3 = 2190 } # Briva Isarae -> BEAUMONT + link = { autogenerated = yes imp = 2445 imp = 3032 ck3 = 2189 } # Augustomagus, Curmiliaca -> CLERMONT + link = { autogenerated = yes imp = 2493 ck3 = 2188 } # Isara -> NOYON + link = { autogenerated = yes imp = 3044 ck3 = 2186 ck3 = 2187 } # Sefulae -> PERONNE, SAINT-QUENTIN + link = { autogenerated = yes imp = 3031 ck3 = 2185 } # Teucera -> CORBIE + link = { autogenerated = yes imp = 3035 ck3 = 2184 } # Samarobriva -> AMIENS + link = { autogenerated = yes imp = 2446 ck3 = 2183 } # Caesaromagus -> BEAUVAIS + link = { autogenerated = yes imp = 3034 ck3 = 2182 } # Caletia Minor -> AUMALE + link = { autogenerated = yes imp = 2473 imp = 2474 ck3 = 2181 } # Avalocum, Nemetodurum -> MANTES + link = { autogenerated = yes imp = 2469 ck3 = 2180 } # Ritumagus -> GISORS + link = { autogenerated = yes imp = 2471 ck3 = 2178 } # Galetia Orientalis -> EU + link = { autogenerated = yes imp = 2470 ck3 = 2177 } # Galetia Occidentalis -> DIEPPE + link = { autogenerated = yes imp = 2468 ck3 = 2176 } # Caracotinum -> FECAMP + link = { autogenerated = yes imp = 2467 ck3 = 2175 } # Pentale -> HARCOURT + link = { autogenerated = yes imp = 2223 ck3 = 2174 } # Esta -> LISIEUX + link = { autogenerated = yes imp = 2222 ck3 = 2173 ck3 = 2327 } # Lexoviorum -> FALAISE, SEES + link = { autogenerated = yes imp = 2218 ck3 = 2172 } # Aregenua -> CAEN + link = { autogenerated = yes imp = 2220 ck3 = 2171 } # Esuvia Borealis -> MORTAIN + link = { autogenerated = yes imp = 2138 imp = 2139 ck3 = 2170 } # Augustodurum, Cerisiacum -> BAYEUX + link = { autogenerated = yes imp = 2134 imp = 2135 ck3 = 2169 } # Coriallum, Aluna -> CHERBOURG + link = { autogenerated = yes imp = 2137 imp = 2136 imp = 5431 ck3 = 2168 } # Cosedia, Crouciaconnum, Andion -> COUTANCES + link = { autogenerated = yes imp = 2140 ck3 = 2167 } # Ingena -> AVRANCHES + link = { autogenerated = yes imp = 3308 imp = 2209 ck3 = 2166 } # Conbaristum, Sipia Occidentalis -> CHATEAUBRIANT + link = { autogenerated = yes imp = 2143 imp = 2144 ck3 = 2165 } # Condate Redonum, Sipia -> RENNES + link = { autogenerated = yes imp = 2141 ck3 = 2164 } # Reginca -> SAINT-MALO + link = { autogenerated = yes imp = 2146 imp = 2142 ck3 = 2163 } # Matriniaca, Fanum Martis -> PORHOET + link = { autogenerated = yes imp = 2157 ck3 = 2162 } # Osismetum -> SAINT-BRIEUC + link = { autogenerated = yes imp = 2158 ck3 = 2161 } # Tregoritum -> TREGUIER + link = { autogenerated = yes imp = 2156 imp = 2149 ck3 = 2160 } # Coriosolitum, Sulis -> ROHAN + link = { autogenerated = yes imp = 12888 ck3 = 216 ck3 = 217 } # Ahvenanmaa -> SUND, JOMALA + link = { autogenerated = yes imp = 2150 imp = 2159 ck3 = 2159 } # Vorgium, Goelloria -> CORNOUAILLES + link = { autogenerated = yes imp = 2160 ck3 = 2158 } # Leonitia -> LEON + link = { autogenerated = yes imp = 2151 ck3 = 2157 } # Vorganium -> BREST + link = { autogenerated = yes imp = 2155 imp = 2152 ck3 = 2156 } # Agritore, Gesoscribate -> QUIMPER + link = { autogenerated = yes imp = 2154 ck3 = 2155 } # Pollicum -> LORIENT + link = { autogenerated = yes imp = 2148 imp = 2147 ck3 = 2154 } # Dariorigum, Duretie -> VANNES + link = { autogenerated = yes imp = 2153 ck3 = 2153 } # Grannona -> GUERANDE + link = { autogenerated = yes imp = 2212 ck3 = 2152 } # Namnetum -> NANTES + link = { autogenerated = yes imp = 2210 imp = 2211 ck3 = 2151 } # Piktonion Akron, Ratiatum -> RAIS + link = { autogenerated = yes imp = 2224 ck3 = 2150 } # Pictavia Borealis -> MONTAIGU + link = { autogenerated = yes imp = 2225 ck3 = 2148 ck3 = 2149 } # Pictavia Australis -> FONTENAY, TALMONT + link = { autogenerated = yes imp = 2226 ck3 = 2147 } # Becciacum -> LA ROCHELLE + link = { autogenerated = yes imp = 2229 ck3 = 2146 } # Novioregum Santonum -> ROYAN + link = { autogenerated = yes imp = 2232 ck3 = 2145 ck3 = 2241 } # Tannum -> JONZAC, SAINTOGNE + link = { autogenerated = yes imp = 2234 ck3 = 2144 } # Burgus -> BLAYE + link = { autogenerated = yes imp = 2289 ck3 = 2143 } # Lucaniacum -> FRONSAC + link = { autogenerated = yes imp = 2236 ck3 = 2142 } # Burdigala -> BORDEAUX + link = { autogenerated = yes imp = 2233 ck3 = 2141 } # Noviomagus Aquitanum -> MEDOC + link = { autogenerated = yes imp = 2235 ck3 = 2140 } # Akroterion -> LA-TESTE-DE-BUCH + link = { autogenerated = yes imp = 2237 ck3 = 2139 } # Losa -> MIMIZAN + link = { autogenerated = yes imp = 2239 imp = 2238 ck3 = 2138 } # Mosconnum, Segosa -> DAX + link = { autogenerated = yes imp = 3033 ck3 = 2137 } # Briga -> ABBEVILLE + link = { autogenerated = yes imp = 3037 ck3 = 2135 } # Durocoregum -> HESDIN + link = { autogenerated = yes imp = 3039 ck3 = 2134 } # Estia -> AIRE + link = { autogenerated = yes imp = 3027 ck3 = 2133 } # Tarvenna -> SAINT-OMER + link = { autogenerated = yes imp = 3036 ck3 = 2132 ck3 = 2136 } # Lintomagus -> BOULOGNE, MONTREUIL-SUR-MER + link = { autogenerated = yes imp = 3030 ck3 = 2131 } # Ardellum -> DUNKIRK + link = { autogenerated = yes imp = 3026 ck3 = 2130 } # Gesoriacum -> CALAIS + link = { autogenerated = yes imp = 3029 ck3 = 2129 } # Portus Itius -> GRAVELINES + link = { autogenerated = yes imp = 3028 ck3 = 2128 } # Castellum -> VEURNE + link = { autogenerated = yes imp = 3038 ck3 = 2127 } # Nemetocenna -> TOURNAI + link = { autogenerated = yes imp = 3040 ck3 = 2126 } # Minariacum -> LILLE + link = { autogenerated = yes imp = 3675 ck3 = 2123 ck3 = 2124 ck3 = 2125 } # Cortoriacum -> COURTRAI, ROESELARE, YPRES + link = { autogenerated = yes imp = 3704 ck3 = 2122 } # Nervia Prima -> COUVIN + link = { autogenerated = yes imp = 3042 ck3 = 2121 } # Bagacum -> MALBODEN + link = { autogenerated = yes imp = 3676 imp = 3041 ck3 = 2120 } # Feliciacum, Turnacum -> ATH + link = { autogenerated = yes imp = 3046 ck3 = 2119 } # Hermoniacum -> VALENCIENNES + link = { autogenerated = yes imp = 3045 imp = 3047 ck3 = 2118 } # Camaracum, Duronum -> CAMBRAI + link = { autogenerated = yes imp = 3679 imp = 3680 ck3 = 2117 } # Vodgoriacum, Geminiacum -> MONS + link = { autogenerated = yes imp = 3678 ck3 = 2114 } # Condacum -> GHENT + link = { autogenerated = yes imp = 3843 ck3 = 2112 } # Ganuenta -> MIDDELBURG + link = { autogenerated = yes imp = 3708 ck3 = 2111 } # Teudurum -> TURNHOUT + link = { autogenerated = yes imp = 3713 ck3 = 2109 } # Ad Duodecimum -> BREDA + link = { autogenerated = yes imp = 3844 ck3 = 2108 ck3 = 2113 } # Fletio -> ROSENDAAL, BERGEN OP ZOOM + link = { autogenerated = yes imp = 3707 ck3 = 2107 } # Andellium -> BRUSSELS + link = { autogenerated = yes imp = 3706 ck3 = 2105 ck3 = 2106 } # Tienen -> LEUVEN, ANTWERP + link = { autogenerated = yes imp = 3712 ck3 = 2103 } # Harenatium -> NIJMEGEN + link = { autogenerated = yes imp = 3715 ck3 = 2102 } # Asciburgium -> GLADBACH + link = { autogenerated = yes imp = 3714 ck3 = 2101 ck3 = 2104 } # Castra Vetera -> MOERS, KLEVE + link = { autogenerated = yes imp = 3711 ck3 = 2100 ck3 = 2110 ck3 = 2450 } # Blariacum -> EINDHOVEN, TILBURG, GELDERN + link = { autogenerated = yes imp = 2199 ck3 = 21 } # Autenia -> CASTLEBAR + link = { autogenerated = yes imp = 3709 imp = 3710 ck3 = 2099 } # Traiectus, Catualium -> MAASTRICHT + link = { autogenerated = yes imp = 3705 ck3 = 2098 ck3 = 2116 } # Nervia Secunda -> NAMUR, DINANT + link = { autogenerated = yes imp = 3681 ck3 = 2097 } # Momalle -> [liege|E] + link = { autogenerated = yes imp = 3682 ck3 = 2096 } # Amanium -> HUY + link = { autogenerated = yes imp = 3686 imp = 3050 ck3 = 2095 } # Eposium, Mosomagus -> VIRTON + link = { autogenerated = yes imp = 3719 ck3 = 2094 ck3 = 2448 } # Belsonancum -> LA ROCHE, LIMBOURG + link = { autogenerated = yes imp = 3727 ck3 = 2093 } # Marcomagus -> DUREN + link = { autogenerated = yes imp = 3718 imp = 3716 ck3 = 2092 } # Aquae Granni, Iuliacum -> AACHEN + link = { autogenerated = yes imp = 3703 ck3 = 2091 ck3 = 2686 } # Remia -> BOUILLON, CHINY + link = { autogenerated = yes imp = 3684 ck3 = 2090 } # Nasagus -> BASTOGNE + link = { autogenerated = yes imp = 3729 imp = 3730 ck3 = 2089 } # Epternacus, Vicus Voclannionum -> DIEKIRCH + link = { autogenerated = yes imp = 3717 ck3 = 2088 ck3 = 2682 ck3 = 2683 } # Novaesium -> COLOGNE, NEUSS, ESCHWEILER + link = { autogenerated = yes imp = 3720 ck3 = 2087 } # Bonna -> BONN + link = { autogenerated = yes imp = 3721 ck3 = 2086 } # Confluentes -> ADENAU + link = { autogenerated = yes imp = 7738 ck3 = 2685 } # Rigomagus -> NAUENAHR + link = { autogenerated = yes imp = 3726 ck3 = 2085 ck3 = 2697 } # Beda -> BEDA, COCHEM + link = { autogenerated = yes imp = 3722 ck3 = 2084 } # Vosolvia -> KOBLENZ + link = { autogenerated = yes imp = 3724 ck3 = 2083 ck3 = 2696 } # Belginum -> TRIER, SPONHEIM + link = { autogenerated = yes imp = 3687 ck3 = 2082 } # Caranusca -> LUXEMBOURG + link = { autogenerated = yes imp = 2455 imp = 2498 ck3 = 2081 } # Viriodunum, Sauriciacum -> SAINT-MIHIEL + link = { autogenerated = yes imp = 3002 ck3 = 2080 } # Pannorum -> HAYANGE + link = { autogenerated = yes imp = 2453 ck3 = 2079 } # Tullum -> TOUL + link = { autogenerated = yes imp = 3016 ck3 = 2078 ck3 = 2713 ck3 = 2714 } # Vicus Bodatius -> EPINAL, BLANKENBERG, SALM + link = { autogenerated = yes imp = 2427 ck3 = 2076 } # Segobodium -> BESANCON + link = { autogenerated = yes imp = 2361 ck3 = 2073 } # Crucinae -> LONS-LE-SAUNIER + link = { autogenerated = yes imp = 3628 imp = 3627 ck3 = 2072 } # Filomusiacum, Bodgalio -> SALINS + link = { autogenerated = yes imp = 2357 imp = 2356 imp = 2358 ck3 = 2071 } # Brioratis, Ludna, Lunna -> BOURG + link = { autogenerated = yes imp = 2301 ck3 = 2070 } # Lugdunum -> Villars + link = { autogenerated = yes imp = 3622 ck3 = 2069 } # Isarnodurum -> BELLEY + link = { autogenerated = yes imp = 3519 imp = 2322 ck3 = 2067 } # Vasio, Carpentorate -> VAISON + link = { autogenerated = yes imp = 3526 imp = 3525 imp = 3527 imp = 5045 ck3 = 2066 } # Darentiaca, Vocontiorum, Vologatae, IMPASSIBLE TERRAIN 045 -> DIE + link = { autogenerated = yes imp = 2302 ck3 = 2065 } # Seguslavorum -> LYON + link = { autogenerated = yes imp = 2307 ck3 = 2064 ck3 = 2068 } # Morginnum -> VALENCE, ROMANS + link = { autogenerated = yes imp = 2320 ck3 = 2062 } # Arausio -> ORANGE + link = { autogenerated = yes imp = 3528 ck3 = 2061 } # Mons Seleucus -> FORCALQUIER + link = { autogenerated = yes imp = 2324 ck3 = 2060 } # Apta Iulia -> APT + link = { autogenerated = yes imp = 2321 ck3 = 2059 } # Avennio -> AVIGNON + link = { autogenerated = yes imp = 3018 ck3 = 2058 } # Rubiacum -> MULHOUSE + link = { autogenerated = yes imp = 3010 ck3 = 2057 ck3 = 2075 } # Valtudurum -> MONTPELLIARD, MORTEAU + link = { autogenerated = yes imp = 3011 imp = 3009 ck3 = 2056 } # Epamanduodurum, Larga -> PORRENTRUY + link = { autogenerated = yes imp = 3634 imp = 3635 ck3 = 2054 } # Vitudurum, Constantia -> KONSTANZ + link = { autogenerated = yes imp = 3633 ck3 = 2051 } # Vindonissa -> ZURICH + link = { autogenerated = yes imp = 3632 ck3 = 2050 } # Salodurum -> BASEL + link = { autogenerated = yes imp = 3631 ck3 = 2049 } # Petinesca -> BIEL + link = { autogenerated = yes imp = 3630 ck3 = 2046 ck3 = 2460 } # Aventicum -> BERN, NEUCHATEL + link = { autogenerated = yes imp = 3559 imp = 3558 imp = 3564 ck3 = 2045 } # Hasta, Vardagate, Pollentia -> CHIERI + link = { autogenerated = yes imp = 3563 ck3 = 2044 ck3 = 2042 } # Forum Vibii -> SALUZZO, PINEROLO + link = { autogenerated = yes imp = 3548 ck3 = 2043 ck3 = 8763 } # Bagiennia -> CUNEO, Mondovi + link = { autogenerated = yes imp = 3551 ck3 = 2041 } # Taurasia -> TURIN + link = { autogenerated = yes imp = 3609 imp = 3610 imp = 3620 ck3 = 2039 } # Ad Publicanos, Darantasia, Obilonna -> AOSTA + link = { autogenerated = yes imp = 3629 ck3 = 2037 ck3 = 2038 ck3 = 2074 ck3 = 785 } # Lausonna -> LAUSANNE, MARTIGNY, PONTARLIER, German Mountains 12 + link = { autogenerated = yes imp = 3624 ck3 = 2035 ck3 = 2036 } # Genava -> GENEVA, THONON-LES-BAINS + link = { autogenerated = yes imp = 2303 imp = 2304 ck3 = 2033 } # Octavus, Vienna -> VIENNE + link = { autogenerated = yes imp = 2305 ck3 = 2032 } # Allobrogia -> CHARTREUSE + link = { autogenerated = yes imp = 3531 ck3 = 2030 } # Cularo -> GRENOBLE + link = { autogenerated = yes imp = 3533 ck3 = 2028 } # Murissa -> GAP + link = { autogenerated = yes imp = 3524 imp = 3520 ck3 = 2026 } # Vappincum, Segustero -> SISTERON + link = { autogenerated = yes imp = 3518 ck3 = 2025 } # Griselica -> Castellane + link = { autogenerated = yes imp = 3521 imp = 3541 imp = 3542 ck3 = 2024 } # Tegulata, Agathom, Matavo -> DRAGUGNIAN + link = { autogenerated = yes imp = 3523 ck3 = 2023 } # Verunia -> AIX + link = { autogenerated = yes imp = 3545 imp = 3546 ck3 = 2022 } # Album Intimilium, Albom Ingaunom -> MONACO + link = { autogenerated = yes imp = 3544 imp = 3543 ck3 = 2021 } # Navelis, Antipolis -> NICE + link = { autogenerated = yes imp = 3517 imp = 3540 ck3 = 2019 } # Tauroention, Pergantion -> TOULON + link = { autogenerated = yes imp = 2325 imp = 2323 ck3 = 2018 } # Massalia, Pisavi -> MARSEILLE + link = { autogenerated = yes imp = 2319 ck3 = 2017 } # Arelatis -> ARLES + link = { autogenerated = yes imp = 2314 imp = 2318 ck3 = 2016 } # Nemausus, Rhodanousia -> NIMES + link = { autogenerated = yes imp = 2312 imp = 2313 ck3 = 2015 } # Andusia, Sextantio -> MONTPELLIER + link = { autogenerated = yes imp = 2260 imp = 5049 ck3 = 2014 } # Agatha, IMPASSIBLE TERRAIN 049 -> AGDE + link = { autogenerated = yes imp = 2259 ck3 = 2013 } # Baeterrae -> BEZIERS + link = { autogenerated = yes imp = 2240 ck3 = 2012 } # Lapurdum -> BAYONNE + link = { autogenerated = yes imp = 2244 ck3 = 2011 } # Carasa -> OLORON + link = { autogenerated = yes imp = 2248 imp = 2246 ck3 = 2010 } # Novum Oppidum, Iluro -> TARBES + link = { autogenerated = yes imp = 2251 ck3 = 2009 } # Aquae Convenarum -> BERTRAND-DE-COMMINGES + link = { autogenerated = yes imp = 2276 ck3 = 2008 } # Calagorris -> SAINT-LIZIER + link = { autogenerated = yes imp = 2255 imp = 2258 ck3 = 2006 } # Carcasso, Usuerva -> CARCASSONE + link = { autogenerated = yes imp = 2256 ck3 = 2005 } # Narbo -> NARBONNE + link = { autogenerated = yes imp = 1292 ck3 = 2003 } # Visseria -> GRALHEIRA + link = { autogenerated = yes imp = 1469 ck3 = 2002 } # Mago -> MINORCA + link = { autogenerated = yes imp = 1467 imp = 1468 ck3 = 2001 } # Pollentia, Tuci -> MALLORCA + link = { autogenerated = yes imp = 1464 ck3 = 2000 } # Ebusus -> IVIZA + link = { autogenerated = yes imp = 2200 ck3 = 20 } # Autenia Occidentalis -> GALWAY + link = { autogenerated = yes imp = 1404 imp = 1411 imp = 1441 ck3 = 1999 } # Flavium Velares, Iporca, Mellaria -> GUADIATO + link = { autogenerated = yes imp = 1406 ck3 = 1998 } # Artigi -> DON LLORENTE + link = { autogenerated = yes imp = 1407 imp = 1405 imp = 1408 ck3 = 1997 } # Iulipa, Regina, Phornakis -> HORNACHOS + link = { autogenerated = yes imp = 1402 imp = 1403 imp = 1436 ck3 = 1996 } # Perceiana, Caspiana, Metellinum -> MEDELLIN + link = { autogenerated = yes imp = 1442 imp = 1372 imp = 1378 ck3 = 1995 } # Mariana Baetica, Segida, Epora -> CORDOBA + link = { autogenerated = yes imp = 1409 imp = 1373 imp = 1412 ck3 = 1994 } # Munigua, Naeva, Lacunis -> CANTILLANA + link = { autogenerated = yes imp = 1414 imp = 1356 imp = 1410 ck3 = 1993 } # Fodinae, Italica, Ilipa -> TRIANA + link = { autogenerated = yes imp = 1417 ck3 = 1992 } # Arucci -> ZAFRA + link = { autogenerated = yes imp = 1415 imp = 1359 ck3 = 1991 } # Tharsis, Ilpulla -> NIEBLA + link = { autogenerated = yes imp = 1418 imp = 1401 ck3 = 1990 } # Seria, Ugultunia -> ILERENA + link = { autogenerated = yes imp = 1439 imp = 1459 imp = 1460 ck3 = 1989 } # Mirobriga, Messicia, Sattalicia -> ALMADER + link = { autogenerated = yes imp = 1444 imp = 1440 imp = 1446 ck3 = 1988 } # Solia, Baedro, Ad Decimum -> PEDROCHE + link = { autogenerated = yes imp = 1448 ck3 = 1987 } # Carcuvium -> ALARCOS + link = { autogenerated = yes imp = 1443 imp = 1379 imp = 1380 imp = 1384 imp = 1447 ck3 = 1986 } # Edeba, Sucia, Isiturgis, Baecula, Marianus Mons -> ANDUJAR + link = { autogenerated = yes imp = 1399 imp = 1286 imp = 1381 imp = 1382 ck3 = 1985 } # Baesucci, Ilugo, Castulo, Vivatia -> UBEDA + link = { autogenerated = yes imp = 1389 imp = 1375 imp = 1388 ck3 = 1984 } # Ad Gemellas, Lauro, Anticaria -> ANTEQUERA + link = { autogenerated = yes imp = 1364 imp = 1354 imp = 1365 imp = 1368 ck3 = 1983 } # Arunda, Carissa, Nescania, Irni -> MORON + link = { autogenerated = yes imp = 1346 imp = 1349 imp = 1351 imp = 1352 ck3 = 1982 } # Asido, Onoba, Turirecina, Ocuri -> ARCOS + link = { autogenerated = yes imp = 1360 imp = 1353 imp = 1357 ck3 = 1981 } # Lucurgentum, Urgia, Osset -> SEVILLA + link = { autogenerated = yes imp = 1374 imp = 1355 imp = 1369 imp = 1370 imp = 1371 ck3 = 1980 } # Carmo, Hispalis, Urso, Basilippo, Astigi -> CARMONA + link = { autogenerated = yes imp = 1386 imp = 1376 imp = 1377 imp = 1387 imp = 1390 imp = 1393 ck3 = 1979 } # Claritas Iulia, Sabetanum, Corduba, Ituci, Igabrum, Ipolcobulcola -> CABRA + link = { autogenerated = yes imp = 1398 imp = 1391 imp = 1392 imp = 1397 imp = 1385 ck3 = 1978 } # Calecula, Cisimbrium, Antecaria, Ebura, Elvira -> GRANADA + link = { autogenerated = yes imp = 1394 imp = 1383 imp = 1395 ck3 = 1977 } # Iliturgicola, Iliturgis, Tucci -> JAEN + link = { autogenerated = yes imp = 1287 imp = 1396 ck3 = 1976 } # Salaria, Vergilia -> QUESADA + link = { autogenerated = yes imp = 1285 imp = 1281 ck3 = 1975 } # Accis, Basti -> GUADIZ + link = { autogenerated = yes imp = 1280 ck3 = 1972 } # Tagili -> LORCA + link = { autogenerated = yes imp = 1039 imp = 1275 imp = 1277 ck3 = 1971 } # Asso, Elioucroca, Ad Morum -> CARAVACA DE LA CRUZ + link = { autogenerated = yes imp = 1040 imp = 1251 ck3 = 1970 } # Begastrum, Segisa -> CIEZA + link = { autogenerated = yes imp = 1248 ck3 = 1969 } # Setabis -> ALMANSA + link = { autogenerated = yes imp = 1252 imp = 1253 imp = 1262 ck3 = 1968 } # Ilounon, Elotana, Ad Palem -> SEGURA + link = { autogenerated = yes imp = 1254 imp = 1027 imp = 5185 ck3 = 1967 } # Salika, Libisosa, IMPASSIBLE TERRAIN 185 -> ALCARAZ + link = { autogenerated = yes imp = 1450 imp = 1026 imp = 1257 imp = 1258 ck3 = 1966 } # Ad Turres, Laminium, Mentesa, Mariana Lobetania -> MENTESA + link = { autogenerated = yes imp = 1271 ck3 = 1965 } # Caput -> TOMELLOSO + link = { autogenerated = yes imp = 1269 ck3 = 1964 } # Pons Rugio -> ALCAZAR + link = { autogenerated = yes imp = 1451 imp = 1449 ck3 = 1963 } # Ad Murum, Oretum -> CALATRAVA + link = { autogenerated = yes imp = 1455 ck3 = 1962 } # Satella -> LA PUEBLA DE MONTALBAN + link = { autogenerated = yes imp = 1463 ck3 = 1961 } # Solorbes -> CABANEROS + link = { autogenerated = yes imp = 1458 ck3 = 1960 } # Dunites -> MALAGON + link = { autogenerated = yes imp = 1457 imp = 1452 ck3 = 1959 } # Solicia Carpetania, Alaba -> QUINTANAR + link = { autogenerated = yes imp = 1456 imp = 1024 ck3 = 1958 } # Pilonicoria, Toletum -> OCANA + link = { autogenerated = yes imp = 1461 imp = 1462 ck3 = 1957 } # Bocouriqua, Catonita -> LA JARA + link = { autogenerated = yes imp = 1454 ck3 = 1956 } # Brutobriga -> CASTILBLANCO + link = { autogenerated = yes imp = 340 imp = 1435 ck3 = 1955 } # Turgalium, Lacipea -> TRUJILLO + link = { autogenerated = yes imp = 1431 imp = 1432 imp = 1434 ck3 = 1954 } # Ad Sorores, Norba, Tamusia -> CACERES + link = { autogenerated = yes imp = 1208 imp = 1025 ck3 = 1953 } # Vicus Cuminarius, Consabura -> MORA + link = { autogenerated = yes imp = 1270 imp = 1272 ck3 = 1952 } # Alces, Domum -> UCLES + link = { autogenerated = yes imp = 1209 ck3 = 1951 } # Segobriga -> HUETE + link = { autogenerated = yes imp = 1255 ck3 = 1950 } # Saltigi -> VENTA DEL MORO + link = { autogenerated = yes imp = 1256 ck3 = 1949 } # Parietinae -> ALARCON + link = { autogenerated = yes imp = 1261 imp = 1268 ck3 = 1948 } # Ad Putea, Egelesta -> VALERIA + link = { autogenerated = yes imp = 1028 imp = 1233 ck3 = 1947 } # Valeria, Bellia Superioris -> CUENCA + link = { autogenerated = yes imp = 1266 ck3 = 1946 } # Edetania Inferioris -> ADEMUZ + link = { autogenerated = yes imp = 1232 imp = 1229 ck3 = 1945 } # Bellia Inferioris, Confluenta Celtiberia -> ALTO TAJO + link = { autogenerated = yes imp = 1210 imp = 1211 imp = 1224 ck3 = 1944 } # Opta, Ocules, Loutia -> ZURITA + link = { autogenerated = yes imp = 1214 imp = 1247 ck3 = 1943 } # Carae, Columbarium -> SIERRA DE SAN JUST + link = { autogenerated = yes imp = 1246 imp = 1215 ck3 = 1942 } # Dentum, Agiria -> MAESTRAZGO + link = { autogenerated = yes imp = 1236 ck3 = 1941 } # Arcus -> SEGORBE + link = { autogenerated = yes imp = 1264 imp = 1249 ck3 = 1940 } # Contestania Maior, Ad Aras -> ALBACETE + link = { autogenerated = yes imp = 1263 imp = 1250 imp = 1265 ck3 = 1939 } # Incusum, Sucro, Contestania Minor -> REQUENA + link = { autogenerated = yes imp = 1267 imp = 1234 imp = 1237 ck3 = 1938 } # Edetania Superioris, Edeta, Edetania Centralis -> MONTANEJOS + link = { autogenerated = yes imp = 1238 imp = 1216 ck3 = 1937 } # Lautumiae, Urbiaca -> TERUEL + link = { autogenerated = yes imp = 1231 imp = 1217 ck3 = 1936 } # Bellia Relicta, Lobeton -> ALBARRACIN + link = { autogenerated = yes imp = 1228 imp = 1230 ck3 = 1935 } # Colenda, Bellia Desolata -> MOLINA + link = { autogenerated = yes imp = 1213 ck3 = 1934 } # Segeda -> DAROCA + link = { autogenerated = yes imp = 1222 ck3 = 1933 } # Okilis -> ABLANQUE + link = { autogenerated = yes imp = 1015 imp = 1090 imp = 1220 ck3 = 1932 } # Bilbilis, Tertakom, Aquae Bilbitonorum -> CALATAYUD + link = { autogenerated = yes imp = 1227 imp = 1221 ck3 = 1931 } # Lagni, Arcobriga -> MEDINACELI + link = { autogenerated = yes imp = 1226 ck3 = 1930 } # Mallia -> SIGUENZA + link = { autogenerated = yes imp = 1207 ck3 = 1929 } # Caracca -> VILLAREJO DE SALVANES + link = { autogenerated = yes imp = 1203 ck3 = 1928 } # Titulcia -> ARGANDA + link = { autogenerated = yes imp = 1225 imp = 1223 ck3 = 1927 } # Tucris, Segontia -> GUDALAJARA + link = { autogenerated = yes imp = 1219 ck3 = 1926 } # Uxama Argaela -> UCEDA + link = { autogenerated = yes imp = 1184 imp = 1191 imp = 1192 imp = 1182 ck3 = 1925 } # Vaccaeia Relicta, Rauda, Pintia, Balneos -> CUELLAR + link = { autogenerated = yes imp = 1193 imp = 1177 imp = 1022 ck3 = 1924 } # Confluentia, Cauca, Segovia -> SEGOVIA + link = { autogenerated = yes imp = 1206 imp = 1023 imp = 1195 ck3 = 1923 } # Complutum, Mantua Carpetania, Miaccum -> MADRID + link = { autogenerated = yes imp = 1196 imp = 1194 ck3 = 1921 } # Tullium, Avila -> LA ADRADA + link = { autogenerated = yes imp = 1202 ck3 = 1920 } # Vaddua -> MAQUEDA + link = { autogenerated = yes imp = 1204 ck3 = 1919 } # Ioppe Iberia -> TOLEDO + link = { autogenerated = yes imp = 1438 imp = 1200 ck3 = 1918 } # Caesarobriga, Vettonia Superioris -> TALAVERA + link = { autogenerated = yes imp = 1437 imp = 1201 ck3 = 1917 } # Augustobriga Vettonia, Vettonia Inferioris -> ALMARAZ + link = { autogenerated = yes imp = 1198 imp = 1304 imp = 1199 ck3 = 1916 } # Coloricum, Caellonico, Platanus -> SIERRA DE GREDOS + link = { autogenerated = yes imp = 1176 ck3 = 1915 ck3 = 1922 } # Nivaria -> OLMEDO, CORACERA + link = { autogenerated = yes imp = 1180 imp = 1197 ck3 = 1914 } # Vettonia Deserta, Ad Lippos -> MEDINA DEL CAMPO + link = { autogenerated = yes imp = 1046 imp = 1160 ck3 = 1913 } # Salmantica, Sentice -> BEJAR + link = { autogenerated = yes imp = 1179 imp = 1173 imp = 1175 ck3 = 1912 } # Vettonia Relicta, Arboukale, Septimanca -> AVILA + link = { autogenerated = yes imp = 1178 ck3 = 1911 } # Comeniaca -> VALENCIA DE CAMPOS + link = { autogenerated = yes imp = 1041 ck3 = 1910 } # Intercatia -> VILLAFAFILA + link = { autogenerated = yes imp = 1093 imp = 1094 imp = 5183 ck3 = 1909 } # Nova Augusta, Auca, IMPASSIBLE TERRAIN 183 -> SAN LEONARDO DE YAGUE + link = { autogenerated = yes imp = 1188 imp = 1187 ck3 = 1907 } # Autraca, Lacobriga -> ATAPUERCA + link = { autogenerated = yes imp = 1185 imp = 1186 ck3 = 1906 } # Camala, Viminacium -> BURGOS + link = { autogenerated = yes imp = 1189 ck3 = 1905 } # Lateremum -> PALENCIA + link = { autogenerated = yes imp = 1109 imp = 1110 ck3 = 1904 } # Maggiaviensium, Camarica -> SEDANO + link = { autogenerated = yes imp = 1091 ck3 = 1902 } # Augustobriga -> TARAZONA + link = { autogenerated = yes imp = 1092 ck3 = 1901 } # Ouisontion -> SORIA + link = { autogenerated = yes imp = 1018 imp = 1218 ck3 = 1900 } # Numantia, Voluca -> OSMA + link = { autogenerated = yes imp = 2193 ck3 = 19 } # Caucia Orientalis -> ARDEE + link = { autogenerated = yes imp = 1019 ck3 = 1899 } # Clunia -> SAN ESTEBAN + link = { autogenerated = yes imp = 1190 ck3 = 1898 } # Pampligua -> ARANDA DE DUERO + link = { autogenerated = yes imp = 1021 ck3 = 1897 ck3 = 1908 } # Palantia -> VALLADOLID, LERMA + link = { autogenerated = yes imp = 1181 imp = 1183 ck3 = 1896 } # Gella, Vaccaeia Deserta -> SIMANCAS + link = { autogenerated = yes imp = 1174 ck3 = 1894 ck3 = 1895 } # Amallobriga -> ZAMORA, TORO + link = { autogenerated = yes imp = 1242 ck3 = 1893 } # Lassira -> CALACEITE + link = { autogenerated = yes imp = 1244 ck3 = 1892 } # Roburum -> ALCANIZ + link = { autogenerated = yes imp = 1212 imp = 1011 imp = 1243 ck3 = 1891 } # Sermonae, Celsa, Sedetania -> BELCHITE + link = { autogenerated = yes imp = 1016 imp = 1085 ck3 = 1890 } # Calagurris Iulia, Barbariana -> TUDELA + link = { autogenerated = yes imp = 1081 ck3 = 1889 } # Carta -> TAFALLA + link = { autogenerated = yes imp = 1088 ck3 = 1888 } # Ilurcis -> EJEA + link = { autogenerated = yes imp = 1089 imp = 1013 ck3 = 1887 } # Cascantum, Salduba -> ZARAGOZA + link = { autogenerated = yes imp = 1071 imp = 1072 ck3 = 1886 } # Presuina, Gallicum -> ZUERA + link = { autogenerated = yes imp = 1070 ck3 = 1885 } # Gallika Phlaouia -> SARINENA + link = { autogenerated = yes imp = 1068 ck3 = 1884 ck3 = 1869 ck3 = 8800 } # Aeso -> BALAGUER, ANDORRA, Pallars Sobira + link = { autogenerated = yes imp = 1062 ck3 = 1883 } # Ad Novas Iberia -> CASPE + link = { autogenerated = yes imp = 1064 ck3 = 1882 } # Keresos -> FRAGA + link = { autogenerated = yes imp = 1010 ck3 = 1881 } # Ilerda -> LLEIDA + link = { autogenerated = yes imp = 1241 imp = 1063 ck3 = 1880 } # Otobesa, Oleastrum -> MAIALS + link = { autogenerated = yes imp = 1061 ck3 = 1879 } # Ad Septimum -> PRADES + link = { autogenerated = yes imp = 1055 ck3 = 1877 ck3 = 1878 } # Sigarra -> MANRESA, URGELL + link = { autogenerated = yes imp = 1005 ck3 = 1875 ck3 = 1876 } # Auso -> VIC, BERGA + link = { autogenerated = yes imp = 1065 ck3 = 1874 } # Caum -> BARBASTRO + link = { autogenerated = yes imp = 1014 imp = 1073 ck3 = 1873 } # Osca, Bortina -> HUESCA + link = { autogenerated = yes imp = 1067 ck3 = 1872 } # Labitolosa -> AINSA + link = { autogenerated = yes imp = 1069 ck3 = 1871 ck3 = 8799 ck3 = 1870 } # Ager -> RIBAGORZA, Pallars Jussa, VIELHA + link = { autogenerated = yes imp = 1058 ck3 = 1868 } # Orgia -> PUIGCERDA + link = { autogenerated = yes imp = 1008 ck3 = 1867 } # Sebendounon -> OLOT + link = { autogenerated = yes imp = 2257 ck3 = 1866 } # Ruscino -> PERPIGNAN + link = { autogenerated = yes imp = 1001 ck3 = 1865 } # Rhoda -> ROSES + link = { autogenerated = yes imp = 1003 imp = 1054 ck3 = 1864 } # Blandae, Gerunda -> GIRONA + link = { autogenerated = yes imp = 1000 imp = 1002 ck3 = 1863 } # Emporiae, Iuncaria -> LOREDO + link = { autogenerated = yes imp = 1004 imp = 1007 ck3 = 1862 } # Lauro Iberias, Rubricatum -> BARCELONA + link = { autogenerated = yes imp = 1006 ck3 = 1861 } # Kallipolis Iberias -> SITGES + link = { autogenerated = yes imp = 1053 imp = 1009 imp = 1052 ck3 = 1860 } # Antistiana, Tarraco, Subur -> TARRAGONA + link = { autogenerated = yes imp = 1012 ck3 = 1859 } # Dertosa -> TORTOSA + link = { autogenerated = yes imp = 1239 ck3 = 1858 } # Indibilis -> AMPOSTA + link = { autogenerated = yes imp = 1240 imp = 1245 ck3 = 1857 } # Etobesa, Rubium -> CASTELLON DE LA PLANA + link = { autogenerated = yes imp = 1029 imp = 1235 ck3 = 1856 } # Saguntum, Sebelaci -> MURVIEDRO + link = { autogenerated = yes imp = 1030 imp = 1032 ck3 = 1855 } # Valentia, Portus Sucronis -> VALENCIA + link = { autogenerated = yes imp = 1031 ck3 = 1854 } # Hemeroskopeion -> DENIA + link = { autogenerated = yes imp = 1033 imp = 1034 imp = 1037 imp = 1259 imp = 1260 ck3 = 1853 } # Akra Leuke, Ilici, Alonis, Fortuna, Iaspis -> ALICANTE + link = { autogenerated = yes imp = 1038 imp = 1035 ck3 = 1852 } # Ilorci, Thiar -> MURCIA + link = { autogenerated = yes imp = 1036 ck3 = 1851 } # Mastia -> CARTAGENA + link = { autogenerated = yes imp = 1274 imp = 1273 imp = 1276 ck3 = 1850 } # Longuntica, Ficariensis Locus, Baria -> AGUILAS + link = { autogenerated = yes imp = 1282 imp = 1278 imp = 1284 ck3 = 1849 } # Murgi, Urci, Aboula -> ALMERIA + link = { autogenerated = yes imp = 1283 ck3 = 1848 } # Abdarat -> MOTRIL + link = { autogenerated = yes imp = 1366 imp = 1367 ck3 = 1847 } # Menova, Saxetanum -> NERJA + link = { autogenerated = yes imp = 1361 imp = 1362 imp = 1363 ck3 = 1846 } # Suel, Malaca, Cartima -> MALAGA + link = { autogenerated = yes imp = 1348 imp = 1350 ck3 = 1845 } # Carteia, Lacippo -> ALGECIRAS + link = { autogenerated = yes imp = 1347 ck3 = 1844 } # Baelo -> TARIFA + link = { autogenerated = yes imp = 1344 imp = 1345 ck3 = 1843 } # Gadir, Mergablum -> CADIZ + link = { autogenerated = yes imp = 1342 imp = 1343 ck3 = 1842 } # Hasta, Nabrissa -> JEREZ + link = { autogenerated = yes imp = 1341 imp = 1358 ck3 = 1841 } # Tartessos, Olontigi -> ALMONTE + link = { autogenerated = yes imp = 1340 ck3 = 1840 } # Ad Rubras -> HUELVA + link = { autogenerated = yes imp = 12654 ck3 = 184 ck3 = 206 } # Veapse -> TELJA, SOMERO + link = { autogenerated = yes imp = 1339 ck3 = 1839 } # Praesidium -> AYAMONTE + link = { autogenerated = yes imp = 1416 ck3 = 1837 ck3 = 1838 } # Fons Siccus -> MOURA, SERPA + link = { autogenerated = yes imp = 1419 ck3 = 1836 } # Turdulia Inferioris -> OLIVENZA + link = { autogenerated = yes imp = 1420 imp = 1421 imp = 1424 imp = 1429 ck3 = 1835 } # Varna, Luserium, Dipo, Celtica Inferioris -> BADAJOZ + link = { autogenerated = yes imp = 1423 imp = 1400 ck3 = 1834 } # Evandriana, Augusta Emerita -> MERIDA + link = { autogenerated = yes imp = 1426 ck3 = 1833 } # Budua -> ZALACA + link = { autogenerated = yes imp = 1430 ck3 = 1832 } # Ad Fines Hiberiae -> ALCANTARA + link = { autogenerated = yes imp = 1306 imp = 1433 imp = 1305 imp = 1307 ck3 = 1831 } # Lama, Tourmogon, Capera, Caurium -> PLASENCIA + link = { autogenerated = yes imp = 1162 imp = 1049 imp = 1158 imp = 1159 ck3 = 1829 } # Bletsima, Mirobriga Lusitania, Cobelcorum, Polibedenses -> CIDUAD RODRIGO + link = { autogenerated = yes imp = 1043 imp = 1161 ck3 = 1828 } # Ocelum Duri, Sibaris -> SALAMANCA + link = { autogenerated = yes imp = 1171 imp = 1042 imp = 1172 ck3 = 1827 } # Praterion, Brigaecium, Vicus Aquarius -> ALBA + link = { autogenerated = yes imp = 1169 imp = 1120 ck3 = 1826 } # Argentiolum, Vallata -> BENAVENTE + link = { autogenerated = yes imp = 1111 imp = 1044 ck3 = 1825 } # Equosera, Lancia -> GUARDO + link = { autogenerated = yes imp = 1045 ck3 = 1824 } # Asturicia -> VILLABLINO + link = { autogenerated = yes imp = 1123 imp = 1126 ck3 = 1823 } # Mons Rubeum, Luggonia -> CANGAS DEL NARCEA + link = { autogenerated = yes imp = 1122 imp = 1117 ck3 = 1822 } # Spadonium, Memoriana -> SARRIA + link = { autogenerated = yes imp = 1127 imp = 1121 imp = 8153 ck3 = 1820 } # Bergidum Flavium, Interamnium, Hispania Impassable -> PONFERRADA + link = { autogenerated = yes imp = 1147 imp = 1145 ck3 = 1819 } # Lougia, Gemestarum -> MONFORTE DE LEMOS + link = { autogenerated = yes imp = 1165 imp = 1170 imp = 8152 ck3 = 1818 } # Nemetobriga, Relicta Asturia, Hispania Impassable -> MONTERREI + link = { autogenerated = yes imp = 1113 ck3 = 1817 } # Pallontion -> RIANO + link = { autogenerated = yes imp = 1119 ck3 = 1816 } # Legio Gemina -> LEON + link = { autogenerated = yes imp = 1020 imp = 1112 imp = 8148 ck3 = 1814 } # Aracillum, Caiellum, Hispania Impassable -> AMAYA + link = { autogenerated = yes imp = 1102 imp = 1097 imp = 1100 imp = 1103 ck3 = 1813 } # Bravum, Salionka, Tritium, Segisama Iulia -> MIRANDA DE EBRO + link = { autogenerated = yes imp = 1096 ck3 = 1811 } # Vindeleia -> NAJERA + link = { autogenerated = yes imp = 1086 ck3 = 1810 ck3 = 1903 } # Tritium Magallum -> LOGRONO, ARNEDO + link = { autogenerated = yes imp = 1087 imp = 1084 imp = 1095 ck3 = 1809 } # Vareia, Beturri, Atiliana -> LIZARRA + link = { autogenerated = yes imp = 1098 imp = 1101 ck3 = 1808 } # Veleia, Belegia -> ALAVA + link = { autogenerated = yes imp = 1074 imp = 1076 ck3 = 1807 } # Forum Gallorum, Iacca -> JACA + link = { autogenerated = yes imp = 1078 imp = 1082 ck3 = 1806 } # Pompelo, Andelos -> PAMPLONA + link = { autogenerated = yes imp = 1017 ck3 = 1805 } # Oiasso -> IRUN + link = { autogenerated = yes imp = 1083 ck3 = 1804 } # Aracaeli -> IZURUM + link = { autogenerated = yes imp = 1106 imp = 1099 ck3 = 1803 } # Flaviobriga, Gebala -> BILIBIO + link = { autogenerated = yes imp = 1107 ck3 = 1802 } # Brigensium -> SANTANDER + link = { autogenerated = yes imp = 1108 ck3 = 1801 ck3 = 1815 } # Veseiasueca -> SANTIALLANA, REINOSA + link = { autogenerated = yes imp = 1048 imp = 8154 ck3 = 1800 } # Forum Limicorum, Hispania Impassable -> LIMIA + link = { autogenerated = yes imp = 2195 ck3 = 18 } # Isamnion -> DUNDALK + link = { autogenerated = yes imp = 1146 ck3 = 1799 } # Interamicia -> OURENSE + link = { autogenerated = yes imp = 1115 ck3 = 1798 } # Ad Mare -> VILLAVICIOSA + link = { autogenerated = yes imp = 1114 ck3 = 1796 ck3 = 1797 } # Gigia -> GIJON, OVIEDO + link = { autogenerated = yes imp = 1118 ck3 = 1795 } # Flavionavia -> PRAVIA + link = { autogenerated = yes imp = 1124 ck3 = 1794 } # Paesicia -> LUARCA + link = { autogenerated = yes imp = 1125 ck3 = 1793 } # Villadonga -> CARBALLIDO + link = { autogenerated = yes imp = 1047 ck3 = 1792 } # Lucus -> LUGO + link = { autogenerated = yes imp = 1141 imp = 1143 ck3 = 1791 } # Aquae Quintinae, Baedia -> MELIDE + link = { autogenerated = yes imp = 1129 ck3 = 1790 } # Caranicum -> VILALBA + link = { autogenerated = yes imp = 1134 imp = 1133 imp = 1135 ck3 = 1789 } # Varina Marinia, Varrinia, Cibarcia -> MONDONEDO + link = { autogenerated = yes imp = 1131 imp = 1132 ck3 = 1788 } # Phlaouia Lambris, Arronia -> FERROL + link = { autogenerated = yes imp = 1139 imp = 1130 imp = 1136 ck3 = 1787 } # Assegonia, Flavium Brigantium, Aviliobris -> LA CORUNA + link = { autogenerated = yes imp = 1138 imp = 1140 imp = 1148 ck3 = 1785 } # Noouion, Brevis, Aquae Gallaecia -> SANTIAGO DE COMPOSTELA + link = { autogenerated = yes imp = 1142 ck3 = 1784 } # Castellum Meidunium -> MONTE FARO + link = { autogenerated = yes imp = 1149 ck3 = 1783 } # Ad Duos Pontes -> PADRON + link = { autogenerated = yes imp = 1150 ck3 = 1781 ck3 = 1782 } # Vicus Spacorum -> TUI, VIGO + link = { autogenerated = yes imp = 1323 ck3 = 1780 } # Ebora -> VIANA DO ALENTEJO + link = { autogenerated = yes imp = 1328 imp = 1315 ck3 = 1779 } # Sefiana, Aritium Praetorium -> MONTEMOR + link = { autogenerated = yes imp = 1329 imp = 1309 imp = 1327 ck3 = 1778 } # Taporia, Vicus Carnalocensis, Calanta -> AVIS + link = { autogenerated = yes imp = 1422 imp = 1325 ck3 = 1777 } # Ad Muratum, Pax Iulia -> EVORA + link = { autogenerated = yes imp = 1428 ck3 = 1776 } # Celtica Superioris -> ELVAS + link = { autogenerated = yes imp = 1425 imp = 1427 ck3 = 1775 } # Ad Atrum Flumen, Matsuarum -> CRATO + link = { autogenerated = yes imp = 1310 ck3 = 1774 } # Ammaia -> NISA + link = { autogenerated = yes imp = 1303 imp = 1312 ck3 = 1773 } # Herminium, Castra Cecilia -> CASTELO BRANCO + link = { autogenerated = yes imp = 1308 imp = 1298 ck3 = 1772 } # Aritium, Sellium -> ABRANTES + link = { autogenerated = yes imp = 1311 ck3 = 1771 ck3 = 1830 } # Tongorigum -> IDANHA, CORIA + link = { autogenerated = yes imp = 1300 imp = 1301 imp = 1302 ck3 = 1770 } # Vicus Veniensis, Igaeditania, Ocelum -> TRANCOSO + link = { autogenerated = yes imp = 12653 ck3 = 177 ck3 = 178 ck3 = 179 ck3 = 180 ck3 = 183 } # Tivotek -> RASEBORG, RIKALA, TURKU, RAUMA, LIINMAA + link = { autogenerated = yes imp = 1299 ck3 = 1769 } # Centum Cellas -> VISEU + link = { autogenerated = yes imp = 1290 ck3 = 1768 } # Aravorum -> LAMEGO + link = { autogenerated = yes imp = 1157 ck3 = 1767 } # Baniensium -> MOGADOURO + link = { autogenerated = yes imp = 1153 ck3 = 1766 } # Salacia Aebocosia -> GUIMARAES + link = { autogenerated = yes imp = 1156 imp = 1288 ck3 = 1765 } # Vicus Vagornicensis, Lamecum -> VILLA REAL + link = { autogenerated = yes imp = 1164 imp = 1163 ck3 = 1764 } # Veniatia, Zoelarum -> MIRANDA DO DUORO + link = { autogenerated = yes imp = 1167 imp = 1050 imp = 1166 imp = 1168 ck3 = 1763 } # Zoelia, Aquae Flaviae, Gigurria, Pettavonium -> BRAGANCA + link = { autogenerated = yes imp = 1155 imp = 1154 ck3 = 1762 } # Germinae, Aquae Originae -> CHAVEZ + link = { autogenerated = yes imp = 1151 imp = 1152 ck3 = 1761 } # Limia, Aquis Querquennis -> BRAGA + link = { autogenerated = yes imp = 1051 imp = 1289 ck3 = 1760 } # Bracara Augusta, Tongobriga -> PORTO + link = { autogenerated = yes imp = 12652 ck3 = 176 ck3 = 205 } # Nuorjo -> ESPOO, HAMEENLINNA + link = { autogenerated = yes imp = 1291 ck3 = 1759 } # Langobriga -> AVEIRO + link = { autogenerated = yes imp = 1293 imp = 1295 imp = 1296 ck3 = 1758 } # Aeminium, Areocelum, Elboconis -> COIMBRA + link = { autogenerated = yes imp = 1294 ck3 = 1757 } # Conimbriga -> LEIRIA + link = { autogenerated = yes imp = 1316 imp = 1297 imp = 1313 ck3 = 1756 } # Eburobrittium, Collippo, Tubucci -> OBIDOS + link = { autogenerated = yes imp = 1317 imp = 1314 ck3 = 1755 } # Arabriga, Scallabis -> SANTAREM + link = { autogenerated = yes imp = 1319 ck3 = 1754 } # Olisipo -> LISBOA + link = { autogenerated = yes imp = 1320 imp = 1318 imp = 1321 ck3 = 1753 } # Malateca, Barbarion, Caetobriga -> SETUBAL + link = { autogenerated = yes imp = 1324 imp = 1322 imp = 1330 ck3 = 1752 } # Mirobriga Couneia, Salacia, Patulus Portus -> ALCACER DO SAL + link = { autogenerated = yes imp = 1331 imp = 1326 imp = 1332 imp = 1413 ck3 = 1751 } # Arandis, Metallum Vipescense, Myrtilis, Serpentum -> BEJA + link = { autogenerated = yes imp = 1337 ck3 = 1750 } # Couneia -> MERTOLA + link = { autogenerated = yes imp = 12651 ck3 = 175 ck3 = 197 ck3 = 208 } # Juomo -> PORVOO, VEHKALAHTI, LAHTI + link = { autogenerated = yes imp = 1336 ck3 = 1749 } # Mirobigensia -> OURIQUE + link = { autogenerated = yes imp = 1335 imp = 1338 ck3 = 1748 } # Baal Saphon, Tartessia -> FARO + link = { autogenerated = yes imp = 1334 ck3 = 1747 } # Ossonoba -> SILVES + link = { autogenerated = yes imp = 1333 ck3 = 1746 } # Portus Cibilis -> LAGOS + link = { autogenerated = yes imp = 12649 ck3 = 173 } # Muore -> KOIVISTO + link = { autogenerated = yes imp = 2114 ck3 = 1727 ck3 = 1730 ck3 = 1731 ck3 = 1732 } # Veluniate -> EDINBURGH, PENICUICK, LINLITHGOW, QUEENSFERRY + link = { autogenerated = yes imp = 2115 ck3 = 1724 ck3 = 1725 ck3 = 1726 ck3 = 1736 } # Venicones -> DUNFERMLINE, KIRCALDY, ST ANDREWS, CLACKMANNAN + link = { autogenerated = yes imp = 2133 ck3 = 1720 ck3 = 1741 ck3 = 1742 ck3 = 1721 ck3 = 1745 } # Pinnata Castra -> DUNDEE, PERTH, COUPAR ANGUS, KIRRIEMUIR, CRIEFF + link = { autogenerated = yes imp = 12650 ck3 = 172 ck3 = 182 ck3 = 181 ck3 = 187 } # Kuovcore -> KAKISALMI, VIIPURI, PARIKKALA, SAVITAIPALE + link = { autogenerated = yes imp = 7740 ck3 = 1718 ck3 = 1719 ck3 = 1722 } # Taexalia Australis -> ABERDEEN, KINCARDINE, BALLATER + link = { autogenerated = yes imp = 2123 ck3 = 1715 } # Vacomagi -> ELGIN + link = { autogenerated = yes imp = 2116 ck3 = 1714 } # Taexali -> PETERHEAD + link = { autogenerated = yes imp = 2125 ck3 = 1712 ck3 = 1716 ck3 = 1713 ck3 = 1717 } # Taixalon Akron -> BANFF, KEITH, MORTLACH, GARIOCH + link = { autogenerated = yes imp = 2118 ck3 = 1711 ck3 = 35 } # Creones Boreales -> GLENFINNAN, ARDNAMURCHON + link = { autogenerated = yes imp = 2131 ck3 = 1708 } # Ouirouedroum Akron -> WICK + link = { autogenerated = yes imp = 2122 ck3 = 1706 ck3 = 1707 } # Cornavii -> DURNESS, THURSO + link = { autogenerated = yes imp = 7739 ck3 = 1705 ck3 = 8777 } # Lugii -> DORNOCH, Tain + link = { autogenerated = yes imp = 2121 ck3 = 1704 ck3 = 8779 } # Caereni -> GAIRLOCH, Assynt + link = { autogenerated = yes imp = 6311 ck3 = 1700 ck3 = 1701 } # Creones Australes -> KILMARTEN, GLENCOE + link = { autogenerated = yes imp = 12648 ck3 = 170 ck3 = 171 } # Loaoko -> NOTEBORG, RAUTU + link = { autogenerated = yes imp = 2172 ck3 = 17 ck3 = 8743 } # Voluntia Orientalis -> ARMAGH, Dungannon + link = { autogenerated = yes imp = 2108 ck3 = 1698 ck3 = 1699 } # Manavia -> CASTLETOWN, RAMSEY + link = { autogenerated = yes imp = 12763 ck3 = 1696 ck3 = 1697 ck3 = 1733 ck3 = 1734 ck3 = 1735 } # Victoria -> GLASGOW, MENEITH, FALKIRK, STIRLING, CALLANDER + link = { autogenerated = yes imp = 2117 ck3 = 1695 ck3 = 1702 } # Epidii -> DUMBARTON, LOMOND + link = { autogenerated = yes imp = 2130 ck3 = 1694 } # Dumna Australis -> THE UISTS + link = { autogenerated = yes imp = 2129 ck3 = 1693 } # Dumna Borealis -> LEWIS + link = { autogenerated = yes imp = 2128 ck3 = 1692 } # Scitis -> SKYE + link = { autogenerated = yes imp = 2126 ck3 = 1690 } # Epidion Akron -> ARRAN + link = { autogenerated = yes imp = 12647 ck3 = 169 ck3 = 5138 } # Cierrekke -> NYEN, Ladoga + link = { autogenerated = yes imp = 2127 ck3 = 1689 ck3 = 1691 } # Malaios -> ISLAY, MULL + link = { autogenerated = yes imp = 2124 ck3 = 1687 ck3 = 1688 ck3 = 1738 } # Lindon -> STRATHGRYTE, CUNNINGHAM, CADYOU + link = { autogenerated = yes imp = 2112 ck3 = 1683 ck3 = 1686 ck3 = 1737 } # Damnonii -> SANQUHAR, KYLE, LANARK + link = { autogenerated = yes imp = 2110 ck3 = 1682 } # Selgovae -> KILCUDBRITE + link = { autogenerated = yes imp = 2109 ck3 = 1680 ck3 = 1684 ck3 = 1685 } # Novantae -> MAYBOLE, WIGTOWN, GIRVAN + link = { autogenerated = yes imp = 12645 ck3 = 168 ck3 = 5142 } # Koles -> KOPORYE, Pushkin + link = { autogenerated = yes imp = 2113 ck3 = 1677 ck3 = 1678 ck3 = 1739 ck3 = 1740 } # Trimontium -> KELSO, JEDBURGH, BIGGAR, SELKIRK + link = { autogenerated = yes imp = 2111 ck3 = 1675 ck3 = 1676 ck3 = 1728 ck3 = 1729 } # Otadini -> BERWICK, DUNBAR, HADDINGTON, GALASHIELS + link = { autogenerated = yes imp = 2106 ck3 = 1670 ck3 = 1671 ck3 = 1672 } # Canovium -> DENBIGH, WREXHAM, RUTHIN + link = { autogenerated = yes imp = 12644 ck3 = 167 } # Kavso -> YAMA + link = { autogenerated = yes imp = 2105 ck3 = 1669 ck3 = 1673 ck3 = 1674 } # Seguntium -> LLANDUDNO, YNS MON, HOLYHEAD + link = { autogenerated = yes imp = 2104 ck3 = 1665 ck3 = 1666 ck3 = 1667 ck3 = 1668 } # Ganganon Akron -> DOLGELLAU, CORWEN, CAERNARFON, LLYN + link = { autogenerated = yes imp = 2102 ck3 = 1664 } # Levobrinta -> NEWTOWN + link = { autogenerated = yes imp = 2107 ck3 = 1663 } # Plaenium -> WELSHPOOL + link = { autogenerated = yes imp = 2101 ck3 = 1662 } # Bravonium -> RHAYADER + link = { autogenerated = yes imp = 2100 ck3 = 1660 ck3 = 1661 } # Magnis -> TALGARTH, LLANDRINDOD + link = { autogenerated = yes imp = 10304 imp = 10305 ck3 = 166 } # Svirkos, Narachanski -> BRASLAU + link = { autogenerated = yes imp = 2097 ck3 = 1659 } # Cicucium -> BRECON + link = { autogenerated = yes imp = 2103 ck3 = 1658 } # Carona -> ABERYSTWYTH + link = { autogenerated = yes imp = 2099 ck3 = 1654 ck3 = 1655 ck3 = 1656 } # Oktapitaron Akron -> PEMBROKE, ST DAVIDS, FISHGUARD + link = { autogenerated = yes imp = 2096 ck3 = 1653 ck3 = 1657 } # Dolaucothi -> LLANDOVERY, CARDIGAN + link = { autogenerated = yes imp = 2095 ck3 = 1652 } # Moridunum -> CARMARTHEN + link = { autogenerated = yes imp = 2094 ck3 = 1650 } # Nidum -> SWANSEA + link = { autogenerated = yes imp = 10306 ck3 = 165 } # Izha -> KREVA + link = { autogenerated = yes imp = 2093 ck3 = 1649 } # Bornium -> CARDIFF + link = { autogenerated = yes imp = 2060 ck3 = 1647 ck3 = 1648 } # Savicum -> LUDLOW, BISHOP'S CASTLE + link = { autogenerated = yes imp = 2070 ck3 = 1645 ck3 = 1623 } # Mamucium -> MACCLESFIELD, CASTLETON + link = { autogenerated = yes imp = 2047 ck3 = 1643 ck3 = 1644 } # Deva -> CHESTER, NORTHWICH + link = { autogenerated = yes imp = 2081 ck3 = 1642 } # Galava -> FURNESS + link = { autogenerated = yes imp = 2071 ck3 = 1641 } # Coccium -> WEST DERBY + link = { autogenerated = yes imp = 2072 ck3 = 1640 } # Bremetennacum -> SALFORD + link = { autogenerated = yes imp = 10282 imp = 10286 ck3 = 164 } # Dzukjos, Paezeriai -> LIDA + link = { autogenerated = yes imp = 2073 ck3 = 1639 } # Portus Setantiorum -> LANCASTER + link = { autogenerated = yes imp = 2084 ck3 = 1638 } # Brocavum -> APPLEBY + link = { autogenerated = yes imp = 2080 ck3 = 1637 ck3 = 1593 } # Calunium -> KENDAL, HALIFAX + link = { autogenerated = yes imp = 2082 ck3 = 1636 } # Gabrosentum -> WHITEHAVEN + link = { autogenerated = yes imp = 2091 ck3 = 1635 ck3 = 1679 ck3 = 1681 } # Blatobulgium -> CARLISLE, ANNAN, DUMFRIES + link = { autogenerated = yes imp = 2098 ck3 = 1631 ck3 = 1632 ck3 = 1634 } # Gobannium -> MONMOUTH, Hereford, CLIFFORD + link = { autogenerated = yes imp = 2092 ck3 = 1630 ck3 = 1651 } # Burrium -> NEWPORT, CAERPHILLY + link = { autogenerated = yes imp = 10276 ck3 = 163 } # Mamry -> SEJNY + link = { autogenerated = yes imp = 2064 ck3 = 1629 } # Salinae Cornoviorum -> STOKE-ON-TRENT + link = { autogenerated = yes imp = 2046 ck3 = 1628 } # Mediolanum -> WOLVERHAMPTON + link = { autogenerated = yes imp = 2066 ck3 = 1627 } # Aquae Arnemetiae -> STAFFORD + link = { autogenerated = yes imp = 2049 ck3 = 1625 } # Vertis -> EVESHAM + link = { autogenerated = yes imp = 2050 ck3 = 1624 ck3 = 1626 ck3 = 1633 } # Condate Ordovicia -> WORCESTER, KIDDERMINSTER, WIGMORE + link = { autogenerated = yes imp = 5433 ck3 = 1621 ck3 = 1622 } # Lutudarum -> DERBY, CHESTERFIELD + link = { autogenerated = yes imp = 2067 ck3 = 1620 } # Danum -> RETFORD + link = { autogenerated = yes imp = 10280 imp = 10277 ck3 = 162 } # Vistytis, Dob -> ALITEN + link = { autogenerated = yes imp = 2058 ck3 = 1618 ck3 = 1619 } # Lindum -> NOTTINGHAM, NEWARK + link = { autogenerated = yes imp = 2065 ck3 = 1617 } # Derbentio -> BOSWORTH + link = { autogenerated = yes imp = 2054 ck3 = 1615 } # Ratae -> LEICESTER + link = { autogenerated = yes imp = 2062 ck3 = 1613 ck3 = 1616 } # Vernemetum -> OAKHAM, MELTON + link = { autogenerated = yes imp = 2086 ck3 = 1611 ck3 = 1612 } # Fanum Cocidi -> HEXHAM, ROTHBURY + link = { autogenerated = yes imp = 2090 ck3 = 1610 } # Bremenium -> BAMBURGH + link = { autogenerated = yes imp = 2089 ck3 = 1609 } # Habitancum -> MONKCHESTER + link = { autogenerated = yes imp = 2085 ck3 = 1608 } # Vinovia -> DARLINGTON + link = { autogenerated = yes imp = 3060 imp = 5980 ck3 = 1607 } # Vindolanda, Central British Impassable -> HARTLEPOOL + link = { autogenerated = yes imp = 2087 ck3 = 1606 } # Vindolava -> DURHAM + link = { autogenerated = yes imp = 2056 ck3 = 1605 } # Letocetum -> BIRMINGHAM + link = { autogenerated = yes imp = 2055 ck3 = 1604 } # Manduessedum -> COVENTRY + link = { autogenerated = yes imp = 2048 ck3 = 1603 } # Alauna -> WARWICK + link = { autogenerated = yes imp = 2161 ck3 = 16 } # Ivernia -> BALTIMORE + link = { autogenerated = yes imp = 2077 ck3 = 1599 } # Isurium -> RIPON + link = { autogenerated = yes imp = 5432 imp = 3059 ck3 = 1598 } # Lavatrae, Bravoniacum -> RICHMOND + link = { autogenerated = yes imp = 2079 ck3 = 1596 ck3 = 1597 } # Dictium -> SCARBOROUGH, WHITBY + link = { autogenerated = yes imp = 5434 imp = 5977 imp = 5978 ck3 = 1594 } # Rigodounon, Central British Impassable, Central British Impassable -> SHEFFIELD + link = { autogenerated = yes imp = 2069 ck3 = 1592 } # Lagentium -> DONCASTER + link = { autogenerated = yes imp = 3058 imp = 2074 ck3 = 1591 } # Calcaria, Verbeia -> LEEDS + link = { autogenerated = yes imp = 10281 ck3 = 159 ck3 = 160 } # Orija -> VALKININKAI, MERKINE + link = { autogenerated = yes imp = 2076 ck3 = 1589 ck3 = 1590 } # Derventio -> COTTINGHAM, BRIDLINGTON + link = { autogenerated = yes imp = 2075 ck3 = 1588 } # Eboracum -> POCKLINGTON + link = { autogenerated = yes imp = 3057 ck3 = 1587 } # Hessulum -> GRIMSBY + link = { autogenerated = yes imp = 2057 ck3 = 1585 ck3 = 1586 } # Bannovallum -> BOSTON, BOLINGBROKE + link = { autogenerated = yes imp = 2063 ck3 = 1584 } # Causennae -> STAMFORD + link = { autogenerated = yes imp = 2068 ck3 = 1583 } # Petuaria -> LINCOLN + link = { autogenerated = yes imp = 2039 ck3 = 1582 } # Corinium -> WINCHCOMBE + link = { autogenerated = yes imp = 10279 imp = 10284 imp = 10287 ck3 = 158 } # Utinoye, Timofeevo, Glitu -> VILKAVISKIS + link = { autogenerated = yes imp = 2008 ck3 = 1578 } # Lindinis -> ILCHESTER + link = { autogenerated = yes imp = 2009 ck3 = 1576 ck3 = 1577 } # Aquae Sulis -> BATH, WINTERSTOKE + link = { autogenerated = yes imp = 2000 ck3 = 1575 } # Deventiasteno -> HELSTON + link = { autogenerated = yes imp = 2002 ck3 = 1574 } # Herakleous Akron -> TINTAGEL + link = { autogenerated = yes imp = 2005 ck3 = 1572 ck3 = 1579 } # Iscalis -> BARNSTAPLE, TAUNTON + link = { autogenerated = yes imp = 2004 ck3 = 1571 } # Nemetia -> OKEHAMPTON + link = { autogenerated = yes imp = 2001 ck3 = 1570 ck3 = 1573 } # Fortis Vallum -> TOTNES, LAUNCESTON + link = { autogenerated = yes imp = 2006 imp = 2003 ck3 = 1569 } # Olconum, Isca Dumnoniorum -> EXETER + link = { autogenerated = yes imp = 2007 ck3 = 1565 ck3 = 1566 ck3 = 1568 } # Durnovaria -> WAREHAM, POOLE, LYME + link = { autogenerated = yes imp = 2024 ck3 = 1564 ck3 = 1581 } # Abona -> MALMESBURY, BRISTOL + link = { autogenerated = yes imp = 2025 ck3 = 1563 } # Verluccio -> RAMSBURY + link = { autogenerated = yes imp = 2011 ck3 = 1562 } # Sorviodunum -> WILTON + link = { autogenerated = yes imp = 2012 ck3 = 1561 } # Cunetio -> SALISBURY + link = { autogenerated = yes imp = 7807 ck3 = 156 ck3 = 157 } # Saloia -> PANEMUNE, SUVALKAI + link = { autogenerated = yes imp = 2061 ck3 = 1559 ck3 = 1580 } # Dorn -> BANBURY, Gloucester + link = { autogenerated = yes imp = 2041 ck3 = 1558 ck3 = 1560 } # Alavna -> OXFORD, WITNEY + link = { autogenerated = yes imp = 2026 ck3 = 1557 } # Durocornovium -> ABINGDON + link = { autogenerated = yes imp = 2043 ck3 = 1553 } # Magiovinium -> NEWPORT + link = { autogenerated = yes imp = 2045 ck3 = 1551 ck3 = 1600 } # Bannaventa -> BUCKINGHAM, NORTHAMPTON + link = { autogenerated = yes imp = 10289 ck3 = 155 } # Aristava -> VILNIUS + link = { autogenerated = yes imp = 2014 ck3 = 1549 } # Vectis -> CARISBROOKE + link = { autogenerated = yes imp = 2016 ck3 = 1547 ck3 = 1555 } # Calleva -> BASINGSTOKE, READING + link = { autogenerated = yes imp = 2013 ck3 = 1546 } # Venta -> PORTSMOUTH + link = { autogenerated = yes imp = 2010 ck3 = 1545 ck3 = 1548 ck3 = 1567 } # Vindocladia -> SOUTHAMPTON, CHRISTCHURCH, SHAFTESBURY + link = { autogenerated = yes imp = 2015 ck3 = 1544 ck3 = 1556 } # Leucomagus -> WINCHESTER, NEWBURY + link = { autogenerated = yes imp = 2053 ck3 = 1542 ck3 = 1601 } # Durobrivae -> NORMAN CROSS, PETERBOROUGH + link = { autogenerated = yes imp = 2052 ck3 = 1541 ck3 = 1543 } # Durovigutum -> HURSTINGSTONE, LEIGHTONSTONE + link = { autogenerated = yes imp = 10293 ck3 = 154 } # Asvejos -> KERNAVE + link = { autogenerated = yes imp = 2051 ck3 = 1539 ck3 = 1540 } # Durocobrivae -> AMPTHILL, LUTON + link = { autogenerated = yes imp = 2044 ck3 = 1538 ck3 = 1602 } # Lactodorum -> BEDFORD, KETTERING + link = { autogenerated = yes imp = 2037 ck3 = 1537 } # Denevia -> ELY + link = { autogenerated = yes imp = 2034 ck3 = 1534 } # Duroliponte -> CAMBRIDGE + link = { autogenerated = yes imp = 2027 ck3 = 1531 ck3 = 1552 } # Verulamium -> BERKHAMSTED, AYLESBURY + link = { autogenerated = yes imp = 10285 ck3 = 153 } # Borodinskoye -> TRAKAI + link = { autogenerated = yes imp = 2018 ck3 = 1528 ck3 = 1529 ck3 = 1530 ck3 = 1554 } # Pontes -> WOXBRIGGE, GORE, BRENTFORD, WYCOMBE + link = { autogenerated = yes imp = 2022 ck3 = 1527 ck3 = 1532 ck3 = 1533 } # Londinium -> LONDON, SAINT ALBANS, HERTFORD + link = { autogenerated = yes imp = 2031 ck3 = 1524 ck3 = 1525 } # Branodunum -> WALSINGHAM, LYNN + link = { autogenerated = yes imp = 2032 ck3 = 1523 } # Venta Icenorum -> THETFORD + link = { autogenerated = yes imp = 2033 ck3 = 1522 } # Garrianonum -> NORWICH + link = { autogenerated = yes imp = 2035 ck3 = 1521 ck3 = 1535 ck3 = 1536 } # Bramulovium -> BEODERICSWORTH, RADFIELD, PAPWORTH + link = { autogenerated = yes imp = 10298 imp = 10301 ck3 = 152 } # Paliene, Jekabpils -> BIRZAI + link = { autogenerated = yes imp = 2036 ck3 = 1518 ck3 = 1520 } # Aspallitorum -> IPSWICH, BLYTHING + link = { autogenerated = yes imp = 2030 ck3 = 1517 } # Sinomagus -> DUNMOW + link = { autogenerated = yes imp = 2028 ck3 = 1515 ck3 = 1516 } # Camulodunum -> MALDON, CHELMSFORD + link = { autogenerated = yes imp = 2029 ck3 = 1514 ck3 = 1519 } # Combretovium -> COLCHESTER, SUDBURY + link = { autogenerated = yes imp = 2038 ck3 = 1512 ck3 = 1513 ck3 = 1526 } # Noviomagus -> KINGSTON, TANDBRIDGE, SOUTHWARK + link = { autogenerated = yes imp = 2042 ck3 = 1510 ck3 = 1511 } # Vindomis -> CHERTSEY, GUILDFORD + link = { autogenerated = yes imp = 10302 imp = 10297 ck3 = 151 } # Garais, Grazutes -> UTENA + link = { autogenerated = yes imp = 2020 ck3 = 1509 } # Anderitum -> HASTINGS + link = { autogenerated = yes imp = 2017 ck3 = 1507 } # Noviomagus Durotrigiorum -> CHICHESTER + link = { autogenerated = yes imp = 2019 ck3 = 1506 ck3 = 1508 } # Novus Portus -> LEWES, ARUN + link = { autogenerated = yes imp = 2023 ck3 = 1504 ck3 = 1505 } # Vagniacis -> ROCHESTER, TONBRIDGE + link = { autogenerated = yes imp = 2021 ck3 = 1502 ck3 = 1503 } # Durovernum -> DOVER, CANTERBURY + link = { autogenerated = yes imp = 2078 ck3 = 1500 ck3 = 1595 } # Cataractonium -> YARLESTRE, YORK + link = { autogenerated = yes imp = 12599 ck3 = 150 } # Niini -> OKNIST + link = { autogenerated = yes imp = 2208 ck3 = 15 ck3 = 8741 } # Darinia Australis -> DOWNPATRICK, Bangor + link = { autogenerated = yes imp = 2088 imp = 5979 ck3 = 1499 } # Virosidum, Central British Impassable -> BOLTON + link = { autogenerated = yes imp = 11136 ck3 = 1498 } # LAKE -> LAKES TIBET + link = { autogenerated = yes imp = 11141 imp = 11140 ck3 = 1496 } # LAKE, LAKE -> LAKES EAST OF BURMA + link = { autogenerated = yes imp = 11193 ck3 = 1494 } # LAKE -> LAKE BAIKAL + link = { autogenerated = yes imp = 11170 imp = 11171 imp = 11175 imp = 11176 imp = 11177 imp = 11182 ck3 = 1493 } # LAKE, LAKE, LAKE, LAKE, LAKE, LAKE -> LAKES MONGOLIA + link = { autogenerated = yes imp = 11164 imp = 11163 imp = 6448 ck3 = 1492 } # LAKE, LAKE, Issyk-Kul -> LAKES TARTARIA + link = { autogenerated = yes imp = 6416 imp = 6445 ck3 = 1490 } # LAKE, LAKE -> Tibet Lakes + link = { autogenerated = yes imp = 10292 ck3 = 149 } # Zirnajai -> VILKMERGE + link = { autogenerated = yes imp = 12878 ck3 = 1487 } # Varu -> Kama River + link = { autogenerated = yes imp = 11135 ck3 = 1484 } # PersianLakes -> PERSIAN LAKES + link = { autogenerated = yes imp = 2579 imp = 5982 imp = 7685 ck3 = 1483 } # Delta Nili, Moeris, Canal of the Pharaohs -> EGYPT LAKES + link = { autogenerated = yes imp = 6425 imp = 6424 imp = 6428 ck3 = 1482 } # Matianus, Arsissa, Lychnitis -> EAST TURKISH LAKES + link = { autogenerated = yes imp = 6407 imp = 6393 imp = 6394 imp = 6395 imp = 6400 imp = 6401 imp = 6402 imp = 6403 imp = 6405 imp = 6406 imp = 8040 imp = 8041 imp = 8053 ck3 = 1481 } # Tatta, Dascylitis, Apolloniatis, Ascania, LAKE, LAKE, LAKE, LAKE, LAKE, Carallis, Eblu, Aksehir, Mazaka Lake -> WEST TURKISH LAKES + link = { autogenerated = yes imp = 6382 imp = 6360 imp = 6361 imp = 6383 imp = 6385 imp = 6388 imp = 6389 ck3 = 1480 } # Brygeis Megale, LAKE, Labeatis, Brygeis Mikra, Trichonis, Koroneia, Bolbe -> GREEK LAKES + link = { autogenerated = yes imp = 12607 ck3 = 148 } # Parna -> SALACGRIVA + link = { autogenerated = yes imp = 6356 ck3 = 1479 } # Pelsodis -> HUNGARIAN LAKES + link = { autogenerated = yes imp = 6374 imp = 5983 imp = 6370 imp = 6371 imp = 6373 imp = 6375 imp = 6378 ck3 = 1478 } # Padus11, Sabatinus, LAKE, LAKE, Benacus, Volsinii, Trasumennus -> ITALIAN LAKES + link = { autogenerated = yes imp = 6299 imp = 10666 imp = 6303 imp = 6305 imp = 6306 ck3 = 1477 } # LAKE, $PROV10664$, LAKE, LAKE, LAKE -> IRISH LAKES + link = { autogenerated = yes imp = 5846 imp = 10673 imp = 6334 ck3 = 1476 } # Oceanus Sarmaticus, Viadua, LAKE -> DANISH LAKES + link = { autogenerated = yes imp = 6336 imp = 6339 imp = 6350 ck3 = 1473 } # LAKE, LAKE, LAKE -> SOUTH SWEDEN LAKES + link = { autogenerated = yes imp = 9112 ck3 = 1469 ck3 = 8820 ck3 = 12949 ck3 = 1470 } # Dongan -> Putian, Yongfu, Zhangpu Southwest, Fuqing + link = { autogenerated = yes imp = 9495 ck3 = 1461 } # Buraga -> Otuken_city + link = { autogenerated = yes imp = 9490 ck3 = 7526 } # Arpa -> Ogiy + link = { autogenerated = yes imp = 12614 ck3 = 146 ck3 = 96 } # Nato -> POLTSAMAA, JARVA + link = { autogenerated = yes imp = 9492 ck3 = 1458 } # Yanran -> Tarvagatai + link = { autogenerated = yes imp = 9494 ck3 = 1457 ck3 = 7517 } # Tiakigu -> Karakorum, Mumo + link = { autogenerated = yes imp = 9502 ck3 = 1456 ck3 = 7564 } # Okur -> Ikh Bogd, Khutag + link = { autogenerated = yes imp = 10549 ck3 = 1455 } # Bulag -> Tsagaanuur + link = { autogenerated = yes imp = 12456 ck3 = 1454 ck3 = 7662 ck3 = 7646 ck3 = 7663 } # Maso -> Abakan, Kuzalatau, Ulugkol, Kuznetsk + link = { autogenerated = yes imp = 10607 imp = 8116 ck3 = 7591 } # Darvi, Mongolia Mountain -> Alag Khairkhan + link = { autogenerated = yes imp = 10603 imp = 8115 ck3 = 1453 } # Tugrug, Mongolia Mountain -> Aj Bogd + link = { autogenerated = yes imp = 10540 ck3 = 1452 ck3 = 7628 } # Ayrmyrlyg -> Karatangdy, Khemchiq + link = { autogenerated = yes imp = 9451 ck3 = 1451 ck3 = 7474 ck3 = 7475 ck3 = 7476 ck3 = 7477 ck3 = 7482 ck3 = 7481 } # Langshan -> Altay, Kran_DZU, Talta, Irmengtau, Burqin, Borultokay, Tengerge + link = { autogenerated = yes imp = 10605 ck3 = 1450 } # Ovoot -> Sharga + link = { autogenerated = yes imp = 12613 ck3 = 145 } # Nooli -> TARTU + link = { autogenerated = yes imp = 9577 ck3 = 1448 ck3 = 9474 ck3 = 9475 } # Yumen -> Dunhuang, Yumenguan, Akeqi + link = { autogenerated = yes imp = 8255 ck3 = 1446 ck3 = 7461 ck3 = 7470 ck3 = 1501 } # Qijiaojingzhen -> Kara Khoja, Cheshi, Liaotun, TIANSHAN + link = { autogenerated = yes imp = 7183 ck3 = 1444 } # Rucya -> Kucha + link = { autogenerated = yes imp = 6755 ck3 = 7974 ck3 = 7976 } # Kumo -> Jigdalik, Toksu + link = { autogenerated = yes imp = 6750 ck3 = 1441 } # Iuwo -> Cherchen + link = { autogenerated = yes imp = 6758 ck3 = 1439 } # Surkhab -> Kashgar + link = { autogenerated = yes imp = 6760 ck3 = 1438 ck3 = 7958 ck3 = 7959 } # Tashqurgan -> Yarkand, Yengisar, Makit + link = { autogenerated = yes imp = 12337 ck3 = 1435 ck3 = 7359 } # Zug -> Astana, Dombraly + link = { autogenerated = yes imp = 12282 ck3 = 1434 ck3 = 7298 ck3 = 7302 ck3 = 7303 } # Bidaik -> Karkaraly, Sokur, Altyn Su, Mautan Tas + link = { autogenerated = yes imp = 12312 ck3 = 1433 } # Puscas -> Terekti + link = { autogenerated = yes imp = 11392 imp = 11393 imp = 11395 imp = 11396 ck3 = 1432 } # Pimna, Magat, Laga, Donda -> Symbyl + link = { autogenerated = yes imp = 12357 imp = 12358 ck3 = 1430 } # Xsaya, Harsta -> Zhitikara + link = { autogenerated = yes imp = 12262 ck3 = 1427 } # Urzhar -> Urzhar + link = { autogenerated = yes imp = 9457 ck3 = 1425 ck3 = 7199 ck3 = 7201 } # Gongyue -> Almaliq, Iliq, Tekes + link = { autogenerated = yes imp = 6738 ck3 = 1423 ck3 = 4433 ck3 = 7216 } # Namakan -> Fergana, MIYAN-RUDAN, Arslanbob + link = { autogenerated = yes imp = 7406 ck3 = 1422 } # Sitapur -> Naimisa + link = { autogenerated = yes imp = 7488 ck3 = 1420 } # Bethadipa -> Simaramapura + link = { autogenerated = yes imp = 4461 ck3 = 1419 } # Dwarbanga -> Mithila + link = { autogenerated = yes imp = 7350 ck3 = 1418 ck3 = 9156 ck3 = 9157 } # Gosira -> Haruppeswara, Sepla, Itanagar + link = { autogenerated = yes imp = 7052 ck3 = 1416 ck3 = 7869 } # Kolhapura -> Kolhapur, Pranala + link = { autogenerated = yes imp = 6899 imp = 6900 imp = 5307 ck3 = 1413 } # Kottiara, Elankon, IP 308 -> Venadu + link = { autogenerated = yes imp = 2853 imp = 2848 imp = 2858 imp = 2870 ck3 = 1412 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea + link = { autogenerated = yes imp = 2977 imp = 11124 imp = 2973 imp = 2974 imp = 2978 imp = 6459 imp = 6463 imp = 6464 imp = 6466 imp = 6467 imp = 7795 ck3 = 1411 } # Sinus Gangeticus, Subarnarekha, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, LAKE, LAKE, LAKE, LAKE, LAKE, Ganges -> Bay of Bengal + link = { autogenerated = yes imp = 2966 imp = 10779 imp = 2971 imp = 2972 ck3 = 1410 } # Sinus Gangeticus, Mahashweta, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal + link = { autogenerated = yes imp = 12609 ck3 = 141 ck3 = 143 } # Hiiri -> ALUKSNE, VASTSELIINA + link = { autogenerated = yes imp = 2970 imp = 11926 imp = 2964 imp = 2965 imp = 2969 ck3 = 1409 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal + link = { autogenerated = yes imp = 2987 imp = 2958 imp = 2962 imp = 2963 imp = 2967 imp = 2968 imp = 2985 ck3 = 1407 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal + link = { autogenerated = yes imp = 2982 imp = 2956 imp = 2957 imp = 2960 imp = 2961 imp = 2983 imp = 2984 imp = 6455 ck3 = 1406 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, LAKE -> Bay of Bengal + link = { autogenerated = yes imp = 2981 imp = 2946 imp = 2947 imp = 2953 imp = 2954 imp = 2980 ck3 = 1405 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Bay of Bengal + link = { autogenerated = yes imp = 2959 imp = 2940 imp = 2948 imp = 2955 imp = 6456 ck3 = 1404 } # Sinus Gangeticus, Mare Erythraeum, Sinus Gangeticus, Sinus Gangeticus, LAKE -> Palk Bay + link = { autogenerated = yes imp = 2934 imp = 2936 imp = 2937 imp = 2938 imp = 2939 imp = 2941 imp = 2942 imp = 2943 imp = 2944 imp = 2950 ck3 = 1402 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Laccadive Sea + link = { autogenerated = yes imp = 2896 imp = 2866 imp = 2867 imp = 2868 imp = 2898 imp = 2902 ck3 = 1401 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Laccadive Sea + link = { autogenerated = yes imp = 2912 imp = 2865 imp = 2893 imp = 2916 ck3 = 1400 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea + link = { autogenerated = yes imp = 12602 ck3 = 140 ck3 = 5147 ck3 = 5148 } # Kantadak -> GULBENE, Izborsk, Ostrov + link = { autogenerated = yes imp = 2173 ck3 = 14 } # Darinia Borealis -> CARRICKFERGUS + link = { autogenerated = yes imp = 2919 imp = 2863 imp = 2864 imp = 2928 ck3 = 1399 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea + link = { autogenerated = yes imp = 2859 imp = 2924 imp = 2927 ck3 = 1398 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea + link = { autogenerated = yes imp = 2855 imp = 2856 ck3 = 1397 } # Rann of Kutch, Gulf of Kutch -> Arabian Sea + link = { autogenerated = yes imp = 2849 imp = 2850 imp = 2851 imp = 2852 ck3 = 1396 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea + link = { autogenerated = yes imp = 2817 imp = 2814 imp = 2815 imp = 2818 ck3 = 1395 } # Sinus Persicus, Sinus Persicus, Sinus Persicus, Sinus Persicus -> Persian Gulf + link = { autogenerated = yes imp = 2821 imp = 2813 imp = 2819 ck3 = 1394 } # Sinus Persicus, Sinus Persicus, Sinus Persicus -> Persian Gulf + link = { autogenerated = yes imp = 2804 imp = 2803 imp = 2808 imp = 2809 ck3 = 1393 } # Mare Erythraeum, Mare Erythraeum, Fretum Persarum, Sinus Persicus -> Strait of Hormuz + link = { autogenerated = yes imp = 2806 imp = 2802 imp = 2805 imp = 2807 imp = 2846 ck3 = 1392 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Gulf of Oman + link = { autogenerated = yes imp = 2800 imp = 2801 imp = 2839 imp = 2842 ck3 = 1391 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea + link = { autogenerated = yes imp = 2836 imp = 2799 ck3 = 1390 } # Mare Erythraeum, Sinus Sachalites -> Arabian Sea + link = { autogenerated = yes imp = 2823 imp = 2795 imp = 2798 imp = 2829 imp = 2832 ck3 = 1389 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Arabian Sea + link = { autogenerated = yes imp = 2794 imp = 2793 imp = 2796 imp = 2797 imp = 2826 imp = 2827 imp = 2830 ck3 = 1388 } # Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum, Mare Erythraeum -> Guardafui Channel + link = { autogenerated = yes imp = 2783 imp = 2787 imp = 2789 ck3 = 1387 } # Sinus Adenensis, Sinus Adenensis, Sinus Adenensis -> Gulf of Aden + link = { autogenerated = yes imp = 2781 imp = 2782 ck3 = 1386 } # Sinus Adenensis, Sinus Adenensis -> Gulf of Aden + link = { autogenerated = yes imp = 1488 ck3 = 1385 } # Sinus Arabicus -> Bab-el-Mandeb + link = { autogenerated = yes imp = 1482 imp = 1480 imp = 1481 imp = 1483 imp = 1493 imp = 1494 imp = 1495 imp = 1496 ck3 = 1384 } # Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus -> Red Sea + link = { autogenerated = yes imp = 1479 imp = 1477 imp = 1478 imp = 1490 imp = 1491 imp = 1492 imp = 6381 ck3 = 1383 } # Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, LAKE -> Red Sea + link = { autogenerated = yes imp = 1473 imp = 1474 imp = 1475 imp = 1476 imp = 652 imp = 653 imp = 654 imp = 7684 imp = 7743 imp = 7744 imp = 7745 imp = 7746 ck3 = 1382 } # Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Arabicus, Sinus Heroopoliticus, Sinus Arabicus, Sinus Arabicus, Canal of the Pharaohs, $PROV652$, $PROV652$, $PROV653$, $PROV653$ -> Red Sea + link = { autogenerated = yes imp = 7651 ck3 = 1381 } # Balurghat -> Pundravardhana + link = { autogenerated = yes imp = 5480 imp = 5479 imp = 5481 imp = 5482 imp = 5486 ck3 = 1378 } # Dyruzh, Alicodra, Zantem, Gyesch, Sechoria -> Gurganj + link = { autogenerated = yes imp = 7482 ck3 = 1377 } # Itwa -> Jasnaul + link = { autogenerated = yes imp = 11519 imp = 4383 ck3 = 1376 } # Gomal, Abortai -> Daraban + link = { autogenerated = yes imp = 4319 ck3 = 1375 } # Gorydale -> Kafirkot + link = { autogenerated = yes imp = 4362 imp = 4365 ck3 = 1370 } # Azaika, Nereai -> Mohenjo_Daro + link = { autogenerated = yes imp = 12598 ck3 = 137 ck3 = 5130 } # Nalja -> DAUGAVPILS, Drysa + link = { autogenerated = yes imp = 4403 ck3 = 1367 ck3 = 1368 } # Usinaragiri -> Saharanpur, Hastinapura + link = { autogenerated = yes imp = 4409 imp = 4408 imp = 4417 ck3 = 1366 } # Arispara, Madrakara, Tohana -> Asigarh + link = { autogenerated = yes imp = 4413 ck3 = 1365 ck3 = 3475 } # Sonprastha -> Indraprastha, Rohtak + link = { autogenerated = yes imp = 7485 imp = 5445 ck3 = 1364 } # Sodal, Grodaka -> Tribandapura + link = { autogenerated = yes imp = 11541 ck3 = 1363 } # Harapa -> Dipalpur + link = { autogenerated = yes imp = 4379 ck3 = 1362 } # Phegas -> Lahur + link = { autogenerated = yes imp = 11542 ck3 = 1361 } # Kot Kamalia -> Shorkot + link = { autogenerated = yes imp = 10598 imp = 10597 ck3 = 1360 } # Male, Boduthiladhunmathi -> Maldives + link = { autogenerated = yes imp = 12600 ck3 = 136 ck3 = 138 } # Jauhadak -> JERSIKA, REZEKNE + link = { autogenerated = yes imp = 4420 ck3 = 1359 ck3 = 3461 } # Mathura -> Mathura, Govardhan + link = { autogenerated = yes imp = 4424 ck3 = 1358 } # Ahicchatra -> Vodamayutja + link = { autogenerated = yes imp = 7447 ck3 = 1357 ck3 = 3462 } # Rajyapura -> Sripatha, Agra + link = { autogenerated = yes imp = 7437 imp = 7309 imp = 7440 ck3 = 1355 } # Dhavagarta, Mritti Kavati, Khandar -> Ranthambore + link = { autogenerated = yes imp = 7389 ck3 = 1353 ck3 = 3479 } # Nehrawati -> Harshnath, Kuchaman + link = { autogenerated = yes imp = 4410 ck3 = 1352 } # Indabara -> Sarasvati + link = { autogenerated = yes imp = 5594 ck3 = 1351 ck3 = 7956 } # Gilgit -> Gilgit, Baltit + link = { autogenerated = yes imp = 12601 ck3 = 135 ck3 = 139 } # Mendak -> JEKABPILS, CESVAINE + link = { autogenerated = yes imp = 11159 imp = 11160 imp = 6408 imp = 6421 imp = 7661 imp = 7662 imp = 7664 ck3 = 1348 } # LAKE, LAKE, LAKE, LAKE, LAKE, LAKE, LAKE -> TIBETAN LAKES + link = { autogenerated = yes imp = 10644 ck3 = 1497 } # $PROV7864$ -> LAKES TIBET + link = { autogenerated = yes imp = 4484 ck3 = 1346 ck3 = 3487 } # Pushkara -> Shakambhari, Purnatallakapura + link = { autogenerated = yes imp = 7431 ck3 = 1345 } # Bhindar -> Aghata + link = { autogenerated = yes imp = 4328 ck3 = 1342 ck3 = 3441 ck3 = 3444 } # Plagira -> Purushapura, Nowshera, Hangu + link = { autogenerated = yes imp = 4321 imp = 5372 ck3 = 1341 } # Kutte Mar, IP 373 -> Nandana + link = { autogenerated = yes imp = 4351 imp = 4348 imp = 4350 ck3 = 1340 } # Apakara, Sibipura, Mulasthanapura -> Karor + link = { autogenerated = yes imp = 4377 ck3 = 1339 ck3 = 3407 } # Bisambritai -> Rajanpur, Dajal + link = { autogenerated = yes imp = 4349 ck3 = 1338 } # Mallia -> Multan + link = { autogenerated = yes imp = 4371 ck3 = 1337 } # Deogarh -> Uch + link = { autogenerated = yes imp = 6822 imp = 4357 ck3 = 1331 } # Barbarikon, Umarkot -> Sonda + link = { autogenerated = yes imp = 10300 ck3 = 133 } # Viku -> SELPILS + link = { autogenerated = yes imp = 4430 ck3 = 1328 } # Kaushambi -> Prayaga + link = { autogenerated = yes imp = 7340 imp = 7490 ck3 = 1325 } # Suhma, Nagarpur -> Madhupur + link = { autogenerated = yes imp = 7491 ck3 = 1324 ck3 = 851 ck3 = 825 } # Sripur -> Suvarnagram, Dhakeshwari_Jatiya_Mandir, Habiganj + link = { autogenerated = yes imp = 7341 ck3 = 1321 ck3 = 9155 } # Sonitapur -> Kamarupanagara, Morshing + link = { autogenerated = yes imp = 10296 ck3 = 132 } # Sartu -> UPYTE + link = { autogenerated = yes imp = 7334 ck3 = 1319 ck3 = 833 } # Bikrampur -> Bikrampur, Ekdala + link = { autogenerated = yes imp = 7356 ck3 = 1318 ck3 = 834 } # Karmanta -> Devaparvata, Chandpur + link = { autogenerated = yes imp = 7784 imp = 10795 imp = 7785 ck3 = 1316 } # Dyardanes, $PROV7783$, Dyardanes -> Brahmaputra River + link = { autogenerated = yes imp = 8599 ck3 = 13157 } # Humeng -> b_youzhou_yanen_northeast + link = { autogenerated = yes imp = 8621 imp = 8665 ck3 = 13156 } # Guyang, Duhe -> Yulin Northwest + link = { autogenerated = yes imp = 8936 ck3 = 13152 ck3 = 13153 ck3 = 10192 } # Tanzhi -> Balan, Pinghou, Qingzhou + link = { autogenerated = yes imp = 10781 imp = 7707 imp = 7708 ck3 = 1315 } # $PROV7789$, Ganges, Ganges -> Ganges River + link = { autogenerated = yes imp = 9004 ck3 = 13149 ck3 = 9836 ck3 = 9841 } # Qianling -> Sangzhi, Daxiang, Santing + link = { autogenerated = yes imp = 9625 ck3 = 13146 ck3 = 13145 ck3 = 13147 ck3 = 13225 } # Chong -> Guanping, Daming, Guanba, (Unknown) + link = { autogenerated = yes imp = 9637 imp = 9023 imp = 9638 ck3 = 13138 } # Rongling, Chaling, You -> Hengyang East + link = { autogenerated = yes imp = 9634 imp = 9021 ck3 = 13137 } # Chengyang, Pang -> Hengyang Northeast + link = { autogenerated = yes imp = 9044 ck3 = 13130 ck3 = 8905 ck3 = 8906 } # Qujiang -> Wengyuan Southwest, Qujiang, Renhua + link = { autogenerated = yes imp = 7706 imp = 7705 ck3 = 1313 } # Ganges, Ganges -> Ganges River + link = { autogenerated = yes imp = 8650 imp = 8744 imp = 8747 ck3 = 13128 } # Dangcheng, Xialuo, Zhuolu -> Xintang Southeast + link = { autogenerated = yes imp = 9041 imp = 9046 ck3 = 13123 } # Leiyang, Impassable -> Zixing Northwest + link = { autogenerated = yes imp = 9039 ck3 = 13122 } # Bi -> Zixing North + link = { autogenerated = yes imp = 8434 imp = 8425 ck3 = 13121 } # Xiayi, Xiao -> Pengcheng Southwest + link = { autogenerated = yes imp = 8426 imp = 8427 ck3 = 13120 } # Pei, Feng -> Pengcheng Northwest + link = { autogenerated = yes imp = 7703 ck3 = 1312 } # Ganges -> Ganges River + link = { autogenerated = yes imp = 8465 imp = 8440 imp = 8470 ck3 = 13119 } # Juancheng, Linqiu, Chui -> Xiaqiu Southwest + link = { autogenerated = yes imp = 11112 ck3 = 13117 ck3 = 8811 ck3 = 13245 } # Dutian -> Chaoyang North, Wuping, (Unknown) + link = { autogenerated = yes imp = 11111 ck3 = 13116 ck3 = 8895 ck3 = 8899 } # Wuhua -> Chaoyang North, Chengxiang, Xingning + link = { autogenerated = yes imp = 8554 imp = 8561 ck3 = 13115 } # Ling, Rouyou -> Suining + link = { autogenerated = yes imp = 8552 imp = 8532 imp = 8545 ck3 = 13114 } # Xiapei, Tan, Siwu -> Xiapi North + link = { autogenerated = yes imp = 8553 ck3 = 13113 } # Xu -> Hong Southwest + link = { autogenerated = yes imp = 8424 imp = 8419 ck3 = 13112 } # Xiang, Qi -> Hong Northwest + link = { autogenerated = yes imp = 7701 imp = 7702 ck3 = 1311 } # Ganges, Ganges -> Ganges River + link = { autogenerated = yes imp = 11113 ck3 = 13108 ck3 = 13135 } # Anyuan -> Qianhua Northwest, Anyuan North + link = { autogenerated = yes imp = 8856 ck3 = 13107 ck3 = 9773 ck3 = 9774 ck3 = 9772 } # Jiaming -> Qianhua Northeast, Yingshan, Jinggu, Jiachuan + link = { autogenerated = yes imp = 9609 ck3 = 13106 ck3 = 9738 ck3 = 9742 ck3 = 9743 ck3 = 9770 ck3 = 12954 ck3 = 9753 } # Hanchang -> Luling Southwest, Yuechi, Pengchi, Dazhu, Huacheng, Liancheng Southeast, Tongjiang + link = { autogenerated = yes imp = 9120 ck3 = 13104 ck3 = 8991 } # Ai -> Taihe North, Xinwu + link = { autogenerated = yes imp = 9663 ck3 = 13103 } # Jiancheng -> Taihe North + link = { autogenerated = yes imp = 9128 ck3 = 13101 ck3 = 9669 ck3 = 9674 ck3 = 9675 } # Nancheng -> Yihuang, Linchuan, Nancheng, Nanfeng + link = { autogenerated = yes imp = 7530 ck3 = 1310 ck3 = 1369 } # Dioscoridus -> Qualnsiyah, Socotra + link = { autogenerated = yes imp = 8583 ck3 = 13094 } # Gaowang -> Dejing South + link = { autogenerated = yes imp = 7700 ck3 = 1309 } # Indus -> Indus River + link = { autogenerated = yes imp = 8278 ck3 = 13084 } # Yinmi -> Fangqu Northeast + link = { autogenerated = yes imp = 9012 ck3 = 13083 ck3 = 10239 ck3 = 12990 ck3 = 9998 } # Tancheng -> Langxi West, Legu, Shaoyang West, Langxi + link = { autogenerated = yes imp = 8648 ck3 = 13082 ck3 = 13111 } # Lu -> b_yunzhou_lingqiu_southwest, Mayi South + link = { autogenerated = yes imp = 9588 ck3 = 13080 } # Macheng -> b_yunzhou_something_east + link = { autogenerated = yes imp = 7698 imp = 7696 imp = 7697 imp = 7699 ck3 = 1308 } # Indus, Indus, Indus, Indus -> Indus River + link = { autogenerated = yes imp = 8617 imp = 8120 imp = 9570 ck3 = 13079 } # Guoxianyaoxi, Shanrong Mountain, Impassable -> b_yunzhou_something_northeast + link = { autogenerated = yes imp = 8595 ck3 = 13076 ck3 = 13077 } # Guangyan -> b_shengzhou_yulin_southeast, b_linzhou_xintai_northeast + link = { autogenerated = yes imp = 8857 ck3 = 13073 ck3 = 13136 } # Yinping -> Qingchuan Northwest, Anyuan Northeast + link = { autogenerated = yes imp = 8586 ck3 = 13071 } # Huanyang -> Ningshuo North + link = { autogenerated = yes imp = 7695 imp = 7693 imp = 7694 ck3 = 1307 } # Indus, Indus, Indus -> Indus River + link = { autogenerated = yes imp = 8653 ck3 = 13067 } # Pingcheng -> b_yunzhou_yunzhong_northwest + link = { autogenerated = yes imp = 8833 ck3 = 13064 ck3 = 10134 } # Anyang -> Shiquan West, Mei + link = { autogenerated = yes imp = 8962 ck3 = 13062 ck3 = 13194 } # Sui -> Zhushan Southeast, (Unknown) + link = { autogenerated = yes imp = 9007 ck3 = 13054 } # Suo -> Dayu Northwest + link = { autogenerated = yes imp = 9119 ck3 = 13053 ck3 = 9546 ck3 = 13052 } # Shanggan -> Dayu West, Gan, Dayu North + link = { autogenerated = yes imp = 11162 ck3 = 1305 } # LAKE -> Balkhash Lake + link = { autogenerated = yes imp = 8847 ck3 = 13048 ck3 = 13049 ck3 = 9752 } # Bucao -> Baqu Southwest, Baqu South, Dongba + link = { autogenerated = yes imp = 8642 ck3 = 13046 ck3 = 10080 ck3 = 13167 } # Yangqu -> Hehe Northeast, Xiurong, (Unknown) + link = { autogenerated = yes imp = 8861 ck3 = 13036 ck3 = 9715 } # Mianzhu -> Xiangyuan Southwest, Luo + link = { autogenerated = yes imp = 9028 ck3 = 13035 ck3 = 8955 ck3 = 8970 } # Zhongwu -> Xiangyuan East, Qiyang, Hengyang + link = { autogenerated = yes imp = 8441 imp = 8477 ck3 = 13034 } # Fan, Pinglu -> Xiaqiu Northwest + link = { autogenerated = yes imp = 8381 imp = 8367 imp = 8377 ck3 = 13033 } # Gong, Huai, Heyang -> Baima Southeast + link = { autogenerated = yes imp = 8371 imp = 8373 imp = 8374 ck3 = 13032 } # Gong, Xiuwu, Ning -> Baima East + link = { autogenerated = yes imp = 8436 imp = 8372 ck3 = 13031 } # Yan, Ji -> Baima Northeast + link = { autogenerated = yes imp = 8966 ck3 = 13030 } # Xinye -> Jutang South + link = { autogenerated = yes imp = 8983 ck3 = 13027 } # Zhonglu -> Yicheng + link = { autogenerated = yes imp = 9631 ck3 = 13026 } # Fuyang -> Biyang South + link = { autogenerated = yes imp = 8961 ck3 = 13025 } # Biyang -> Biyang East + link = { autogenerated = yes imp = 9426 imp = 9006 ck3 = 13021 } # Zishui, Linyuan -> Songzi + link = { autogenerated = yes imp = 4480 ck3 = 1302 } # Ghosundi -> Chitrakut + link = { autogenerated = yes imp = 8886 ck3 = 13019 ck3 = 9722 } # Zizhong -> Lianshan West, Anyue + link = { autogenerated = yes imp = 8771 ck3 = 13017 ck3 = 9694 } # Guzhu -> Lulong West, Lulong + link = { autogenerated = yes imp = 9125 ck3 = 13015 ck3 = 9679 ck3 = 9682 ck3 = 9684 ck3 = 10271 ck3 = 13016 ck3 = 9683 } # Yugan -> Leping, Shangrao, Yiyang, Huangshan, Yushan, Poyang, Guixi + link = { autogenerated = yes imp = 8994 ck3 = 13013 ck3 = 8975 ck3 = 8978 ck3 = 8979 ck3 = 8980 ck3 = 8981 ck3 = 8982 } # Anlu -> Qichun Northwest, Hunagpi, Hanyang, Chachuan, Yingcheng, Anlu, Yingshan + link = { autogenerated = yes imp = 9068 ck3 = 13012 } # Xunyang -> Qichun North + link = { autogenerated = yes imp = 9049 ck3 = 13010 } # Shouchun -> Zhongli Southwest + link = { autogenerated = yes imp = 4435 ck3 = 1301 ck3 = 3318 } # Erakaccha -> Mahoba, Garh_Kundar + link = { autogenerated = yes imp = 9051 ck3 = 13009 } # Zhongli -> Zhongli West + link = { autogenerated = yes imp = 8973 imp = 8972 imp = 8978 ck3 = 13008 } # Jiangling, Ying, Zhijiang -> Jiangling Northwest + link = { autogenerated = yes imp = 8974 ck3 = 13006 } # Zhouling -> Jianli Northeast + link = { autogenerated = yes imp = 8478 imp = 8473 imp = 8537 ck3 = 13004 } # Rencheng, Huling, Zou -> Fei Southwest + link = { autogenerated = yes imp = 8474 imp = 8469 ck3 = 13003 } # Fangyu, Shanyang -> Fei West + link = { autogenerated = yes imp = 9056 ck3 = 13002 ck3 = 8942 } # Hefei -> Lujiang East, Hefei + link = { autogenerated = yes imp = 9054 ck3 = 13001 ck3 = 8939 } # Tuogao -> Lujiang Northeast, Hanshan + link = { autogenerated = yes imp = 9144 ck3 = 13000 ck3 = 12999 ck3 = 8898 } # Longchuan -> Xingning West, Changle, Heyuan + link = { autogenerated = yes imp = 7436 imp = 7439 ck3 = 1300 } # Kota, Bundi -> Kota + link = { autogenerated = yes imp = 10288 ck3 = 130 } # Tytuvenu -> KAUNAS + link = { autogenerated = yes imp = 2207 ck3 = 13 } # Robogdia Orientalis -> SLEMISH + link = { autogenerated = yes imp = 9121 ck3 = 12995 } # Fuqianyuan -> Yongfeng + link = { autogenerated = yes imp = 9118 ck3 = 12993 ck3 = 13043 ck3 = 13098 ck3 = 13109 ck3 = 8992 ck3 = 9459 ck3 = 9673 ck3 = 13105 } # Xingan -> Anfu Southwest, Xinwu South, Guangchang, Luling East, Xinyu, Xin'gan, Chongren, Luling South + link = { autogenerated = yes imp = 9029 imp = 9157 ck3 = 12992 } # Yingdao, Fengcheng -> Shaoyang Southwest + link = { autogenerated = yes imp = 9633 ck3 = 12991 ck3 = 13037 ck3 = 13144 } # Liandao -> Wugang Northwest, Xiangyuan South, Longyang + link = { autogenerated = yes imp = 7308 ck3 = 1299 } # Candhoba -> Candhoba + link = { autogenerated = yes imp = 9635 ck3 = 12989 ck3 = 8969 } # Xiangnan -> Xinhua, Chaling + link = { autogenerated = yes imp = 9018 ck3 = 12988 ck3 = 8972 } # Changsha -> Xiangtan, Liuyang + link = { autogenerated = yes imp = 9026 imp = 9027 ck3 = 12986 } # Fuyi, Douliang -> Changjing West + link = { autogenerated = yes imp = 9640 imp = 9146 ck3 = 12982 } # Yangshan, Yue Jungle -> Huaiji + link = { autogenerated = yes imp = 7460 ck3 = 1298 } # Mauranipur -> Chanderi + link = { autogenerated = yes imp = 9140 ck3 = 12979 } # Fanyu -> Zengchang + link = { autogenerated = yes imp = 9166 ck3 = 12978 ck3 = 13020 } # Zhulu -> Cailong, Lianshan Southwest + link = { autogenerated = yes imp = 9571 imp = 8603 ck3 = 12973 } # Xinqinzhong, Shuofang -> Fengzhou North + link = { autogenerated = yes imp = 9145 ck3 = 12970 ck3 = 12971 ck3 = 12997 ck3 = 8893 ck3 = 8894 ck3 = 13118 } # Jieyang -> Chenghai, Haining, Anlu, Chaoyang, Haiyang, Chaoyang North + link = { autogenerated = yes imp = 6849 imp = 6821 ck3 = 1297 } # Bibakta, Alexandrou Limen -> Debul + link = { autogenerated = yes imp = 11063 ck3 = 12969 ck3 = 10292 } # Fuding -> b_chuzhou_longquan_south, Hengyang + link = { autogenerated = yes imp = 11067 ck3 = 12968 ck3 = 10383 ck3 = 8833 } # Qingtian -> b_chuzhou_longquan_southwest, Le'an, Lishui + link = { autogenerated = yes imp = 8512 ck3 = 12966 ck3 = 12967 } # Yi -> b_laizhou_changyang_east, Changyang West + link = { autogenerated = yes imp = 8524 imp = 8523 imp = 8527 ck3 = 12963 } # Buqi, Dongwu, Langya -> Mizhou North + link = { autogenerated = yes imp = 8862 ck3 = 12958 } # Qi -> Mingsha West + link = { autogenerated = yes imp = 8572 ck3 = 12957 } # Lian -> Mingsha North + link = { autogenerated = yes imp = 9087 ck3 = 12953 } # Wuyuan -> Longyan South + link = { autogenerated = yes imp = 9778 ck3 = 12952 ck3 = 8805 } # Haiyang -> Longxi Northwest, Zhangpu + link = { autogenerated = yes imp = 6825 imp = 6841 ck3 = 1295 } # Kanthi, Bacchav -> Kanthakota + link = { autogenerated = yes imp = 11145 ck3 = 12948 } # LAKE -> (Unknown) + link = { autogenerated = yes imp = 9131 ck3 = 12947 ck3 = 9543 ck3 = 13099 ck3 = 13100 ck3 = 13238 } # Yudu -> Qianhua, Yudu, Xincheng, Jinxi, (Unknown) + link = { autogenerated = yes imp = 9216 ck3 = 12942 } # Daner -> Hainan + link = { autogenerated = yes imp = 9217 ck3 = 12940 } # Zhilai -> Hainan + link = { autogenerated = yes imp = 7412 imp = 6857 ck3 = 1294 } # Satyapura, Detta -> Satyapura + link = { autogenerated = yes imp = 9218 ck3 = 12937 ck3 = 12938 ck3 = 12939 ck3 = 12941 } # Jiulong -> Hainan, Hainan, Hainan, Hainan + link = { autogenerated = yes imp = 9215 ck3 = 12936 ck3 = 12935 } # Linzhen -> Hainan, Hainan + link = { autogenerated = yes imp = 9212 ck3 = 12930 } # Shendu -> Hainan + link = { autogenerated = yes imp = 9214 ck3 = 12931 } # Zibei -> Hainan + link = { autogenerated = yes imp = 7415 ck3 = 1292 } # Mehsana -> Anahilapataka + link = { autogenerated = yes imp = 4478 ck3 = 1291 } # Devnimori -> Mohadavasaka + link = { autogenerated = yes imp = 6854 ck3 = 1290 } # Kheta -> Khetaka + link = { autogenerated = yes imp = 10291 ck3 = 129 ck3 = 131 } # Joniskis -> VELIUONA, KEDAINIAI + link = { autogenerated = yes imp = 7300 ck3 = 1289 } # Ayanakagraha -> Dadhipadra + link = { autogenerated = yes imp = 4475 ck3 = 1288 } # Ujjayini -> Ujjayini + link = { autogenerated = yes imp = 9813 ck3 = 12852 } # Chet Sen -> U Thong + link = { autogenerated = yes imp = 11883 imp = 11718 imp = 12047 imp = 12085 imp = 12163 imp = 11762 ck3 = 12850 } # Sinus Gangeticus, Sinus Gangeticus, Mare Andaman, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> Andaman Sea + link = { autogenerated = yes imp = 7097 ck3 = 1285 } # Amaravati -> Acalapura + link = { autogenerated = yes imp = 11054 ck3 = 12849 ck3 = 9676 } # Naggadipa -> Muot/Nancowry, Marakele + link = { autogenerated = yes imp = 2040 ck3 = 12826 } # Glevum -> (Unknown) + link = { autogenerated = yes imp = 11043 ck3 = 12823 ck3 = 12824 ck3 = 12825 } # Mentawai -> Batu, Siberut, Sipura + link = { autogenerated = yes imp = 10939 imp = 11912 ck3 = 12821 } # Mare Mishihase, Mare Mishihase -> Sea of Okhotsk + link = { autogenerated = yes imp = 7380 imp = 7382 imp = 7411 ck3 = 1282 } # Lakhanpur, Raebareli, Unnao -> Lalganj + link = { autogenerated = yes imp = 12759 ck3 = 12817 ck3 = 12818 } # Orqo -> Sakhalin-Kushunkotan/Otomari/Korsakov, Sakhalin-Honto/Nevelsk + link = { autogenerated = yes imp = 12760 ck3 = 12815 } # Gukur -> Sakhalin-Nogl-in/Nogliki + link = { autogenerated = yes imp = 12754 ck3 = 12814 } # Wezvar -> Sakhalin-Pogobi/Pokhobi + link = { autogenerated = yes imp = 12756 ck3 = 12813 } # Burbur -> Sakhalin-Otchishi/Alexandrovsk + link = { autogenerated = yes imp = 12758 ck3 = 12811 ck3 = 12816 } # Loraj -> Sakhalin-Esutoru/Uglegorsk, Sakhalin-Ziancha/Dolinsk + link = { autogenerated = yes imp = 12755 ck3 = 12810 } # Halnozi -> Sakhalin-Taraika/Shisuka/Poronaysk + link = { autogenerated = yes imp = 4431 ck3 = 1281 } # Sumsumaragiri -> Chunar + link = { autogenerated = yes imp = 7819 ck3 = 128 } # Careotaia Australis -> TELSIAI + link = { autogenerated = yes imp = 4432 ck3 = 1278 } # Sajahati -> Gurgi + link = { autogenerated = yes imp = 11539 ck3 = 1277 ck3 = 923 ck3 = 1241 } # Bargarh -> Tummana, Amarkantak, Koriya + link = { autogenerated = yes imp = 12067 imp = 10860 imp = 11703 imp = 11746 imp = 11817 imp = 11975 ck3 = 12769 } # Mare Andaman, Mare Andaman, Mare Andaman, Mare Andaman, Mare Andaman, Mare Andaman -> Andaman Sea + link = { autogenerated = yes imp = 9347 imp = 10922 ck3 = 12768 } # Mare Andaman, Mare Andaman -> Gulf of Martaban + link = { autogenerated = yes imp = 11760 imp = 11697 imp = 11765 imp = 11781 imp = 11791 imp = 11896 imp = 11938 imp = 11961 imp = 11982 imp = 12025 imp = 12109 imp = 12131 ck3 = 12767 } # Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon -> South China Sea + link = { autogenerated = yes imp = 10848 imp = 10841 imp = 10842 imp = 10843 imp = 10961 ck3 = 12766 } # Mare Formosa, Mare Formosa, Mare Formosa, Mare Formosa, Mare Formosa -> East China Sea + link = { autogenerated = yes imp = 12058 imp = 11699 imp = 11795 imp = 11823 imp = 12010 imp = 12011 ck3 = 12765 } # Mare Iaponicum, Mare Iaponicum, Mare Iaponicum, Mare Iaponicum, Mare Iaponicum, Mare Iaponicum -> Sea of Japan + link = { autogenerated = yes imp = 11824 imp = 10878 imp = 11128 imp = 11743 imp = 11919 ck3 = 12762 } # Mare Nanfang Hai, Mare Nanfang Hai, Pahang, Mare Nanfang Hai, Mare Nanfang Hai -> South China Sea + link = { autogenerated = yes imp = 11948 imp = 11819 imp = 12156 imp = 12224 ck3 = 12761 } # Mare Nanfang Hai, Mare Nanfang Hai, Mare Nanfang Hai, Mare Nanfang Hai -> South China Sea + link = { autogenerated = yes imp = 12026 imp = 11674 imp = 12170 imp = 9860 ck3 = 12760 } # Mare Nanfang Hai, Mare Nanfang Hai, Sinus Funan, Sinus Funan -> South China Sea + link = { autogenerated = yes imp = 7659 ck3 = 1276 ck3 = 1327 } # Madanpur -> Gaya, Rothas + link = { autogenerated = yes imp = 12018 imp = 11693 imp = 11875 imp = 12132 imp = 8170 ck3 = 12759 } # Mare Nanfang Hai, Mare Nanfang Hai, Mare Nanfang Hai, Mare Nanfang Hai, Mare Nanfang Hai -> South China Sea + link = { autogenerated = yes imp = 12097 imp = 10873 imp = 11792 imp = 11811 imp = 11837 imp = 11943 imp = 12032 imp = 12230 imp = 11686 imp = 11909 ck3 = 12758 } # Mare Nanfang Hai, Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon, Mare Nanfang Hai, Mare Nanfang Hai -> South China Sea + link = { autogenerated = yes imp = 11863 imp = 10888 imp = 11646 imp = 11714 imp = 11807 imp = 11960 imp = 12078 ck3 = 12755 } # Mare Luzon, Mare Nanhai, Mare Nanhai, Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon -> South China Sea + link = { autogenerated = yes imp = 11979 imp = 10929 imp = 12187 imp = 9272 ck3 = 12754 } # Mare Luzon, Mare Nanhai, Mare Luzon, Mare Nanhai -> South China Sea + link = { autogenerated = yes imp = 9369 imp = 9276 ck3 = 12753 } # Mare Nanhai, Mare Nanhai -> South China Sea + link = { autogenerated = yes imp = 9370 imp = 9268 ck3 = 12752 } # Mare Nanhai, Mare Nanhai -> South China Sea + link = { autogenerated = yes imp = 11783 imp = 11947 imp = 12004 imp = 12019 imp = 9271 ck3 = 12751 } # Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon, Mare Nanhai -> South China Sea + link = { autogenerated = yes imp = 9371 ck3 = 12750 } # Mare Nanhai -> South China Sea + link = { autogenerated = yes imp = 4425 ck3 = 1275 ck3 = 1356 } # Kanyakubja -> Jajmau, Kanyakubja + link = { autogenerated = yes imp = 11844 imp = 11885 imp = 12122 ck3 = 12749 } # Mare Luzon, Mare Formosa, Mare Luzon -> South China Sea + link = { autogenerated = yes imp = 9372 imp = 9266 ck3 = 12748 } # Mare Nanhai, Mare Nanhai -> South China Sea + link = { autogenerated = yes imp = 9368 imp = 9274 imp = 9275 ck3 = 12747 } # Mare Nanhai, Mare Nanhai, Mare Nanhai -> Gulf of Tonkin + link = { autogenerated = yes imp = 9270 imp = 9269 imp = 9273 imp = 9367 ck3 = 12746 } # Mare Nanhai, Mare Nanhai, Mare Nanhai, Mare Nanhai -> Gulf of Tonkin + link = { autogenerated = yes imp = 9856 imp = 11805 imp = 10928 imp = 11927 imp = 12064 imp = 12195 imp = 8180 ck3 = 12740 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> the Indian Ocean + link = { autogenerated = yes imp = 7467 imp = 5361 ck3 = 1274 } # Damoh, IP 362 -> Damoh + link = { autogenerated = yes imp = 8183 imp = 10881 imp = 11688 imp = 11918 imp = 12135 imp = 12172 ck3 = 12739 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> the Indian Ocean + link = { autogenerated = yes imp = 11796 imp = 11596 imp = 11767 imp = 12212 imp = 9344 ck3 = 12738 } # Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus, Sinus Gangeticus -> the Indian Ocean + link = { autogenerated = yes imp = 11754 imp = 11879 imp = 11991 imp = 12162 ck3 = 12737 } # Mare Nanfang Hai, Mare Nanfang Hai, Mare Nanfang Hai, Mare Nanfang Hai -> North Natuna Sea + link = { autogenerated = yes imp = 11936 imp = 12192 ck3 = 12734 } # Freti Karimata, Freti Karimata -> Natuna Sea + link = { autogenerated = yes imp = 11658 imp = 8164 ck3 = 12732 } # Sinus Funan, Sinus Funan -> Gulf of Siam + link = { autogenerated = yes imp = 12142 imp = 11610 imp = 11655 imp = 11700 imp = 12003 imp = 12219 imp = 8207 ck3 = 12731 } # Sinus Funan, Sinus Funan, Sinus Funan, Sinus Funan, Sinus Funan, Sinus Funan, Sinus Funan -> Gulf of Siam + link = { autogenerated = yes imp = 11707 imp = 10930 imp = 11654 imp = 12110 ck3 = 12730 } # Sinus Funan, Sinus Funan, Sinus Funan, Sinus Funan -> Gulf of Siam + link = { autogenerated = yes imp = 12325 imp = 12327 ck3 = 1273 } # Crnawti, Sizdati -> Turgay + link = { autogenerated = yes imp = 11956 imp = 11576 imp = 11849 ck3 = 12729 } # Sinus Funan, Sinus Funan, Sinus Funan -> Gulf of Siam + link = { autogenerated = yes imp = 8169 imp = 10580 imp = 10808 ck3 = 12728 } # Sinus Funan, Sinus Funan, Mae Nam -> Gulf of Siam + link = { autogenerated = yes imp = 8199 imp = 11589 imp = 11592 imp = 11677 imp = 12174 imp = 12210 ck3 = 12727 } # Mare Andaman, Mare Andaman, Mare Andaman, Mare Andaman, Mare Andaman, Mare Andaman -> Strait of Malacca + link = { autogenerated = yes imp = 11922 imp = 12226 imp = 8206 ck3 = 12726 } # Mare Andaman, Mare Andaman, Mare Andaman -> Strait of Malacca + link = { autogenerated = yes imp = 12102 imp = 10903 imp = 10924 imp = 10940 ck3 = 12725 } # Mare Andaman, Mare Andaman, Mare Andaman, Mare Andaman -> Strait of Malacca + link = { autogenerated = yes imp = 8159 ck3 = 12724 } # Mare Andaman -> Strait of Malacca + link = { autogenerated = yes imp = 11568 imp = 10899 imp = 11127 imp = 11585 imp = 11780 imp = 12120 ck3 = 12723 } # Freti Karimata, Freti Karimata, Kampar, Mare Andaman, Freti Karimata, Freti Karimata -> Berhala Strait + link = { autogenerated = yes imp = 7459 ck3 = 1271 ck3 = 914 } # Sihora -> Tripuri, Mandla + link = { autogenerated = yes imp = 7129 ck3 = 1270 } # Gondia -> Kiranapura + link = { autogenerated = yes imp = 7115 imp = 7077 ck3 = 1269 } # Wairagar, Cikamburika -> Canda + link = { autogenerated = yes imp = 6846 ck3 = 1268 } # Horrai -> Dhamalpur + link = { autogenerated = yes imp = 11578 imp = 10576 imp = 11949 imp = 12229 ck3 = 12670 } # Mare Sulu, Mare Sulu, Mare Sulu, Mare Sulu -> Sulu Sea + link = { autogenerated = yes imp = 6837 ck3 = 1267 } # Vardhamane -> Vardhamana + link = { autogenerated = yes imp = 8185 imp = 11634 ck3 = 12662 } # Mare Luzon, Mare Luzon -> Visayan Sea + link = { autogenerated = yes imp = 10884 ck3 = 12661 } # Mare Luzon -> Sibuyan Sea + link = { autogenerated = yes imp = 10883 imp = 10887 imp = 12070 ck3 = 12660 } # Mare Mishihase, Mare Mishihase, Mare Mishihase -> Soya Strait + link = { autogenerated = yes imp = 6816 ck3 = 1266 } # Prabhasa -> Somnath + link = { autogenerated = yes imp = 11617 ck3 = 12658 } # Mare Yavadvipa -> Uchiura Bay + link = { autogenerated = yes imp = 7092 ck3 = 1265 } # Katriyal -> Sagar + link = { autogenerated = yes imp = 10890 ck3 = 12649 } # Mare Yavadvipa -> Kumano Sea + link = { autogenerated = yes imp = 9346 imp = 11563 ck3 = 12648 } # Mare Yavadvipa, Mare Yavadvipa -> Tosa Bay + link = { autogenerated = yes imp = 11990 imp = 9350 ck3 = 12647 } # Mare Yavadvipa, Mare Yavadvipa -> Sea of Hyuga + link = { autogenerated = yes imp = 10854 imp = 10855 imp = 12115 imp = 9341 ck3 = 12646 } # Mare Formosa, Mare Formosa, Mare Yavadvipa, Mare Formosa -> Kagoshima Bay + link = { autogenerated = yes imp = 9340 ck3 = 12645 } # Mare Formosa -> Sea of Ariake + link = { autogenerated = yes imp = 11627 imp = 10579 imp = 12089 ck3 = 12644 } # Mare Luzon, Mare Luzon, Mare Luzon -> Lagonoy Gulf + link = { autogenerated = yes imp = 9277 imp = 10950 imp = 12073 ck3 = 12643 } # Mare Luzon, Mare Luzon, Mare Luzon -> Lamon Bay + link = { autogenerated = yes imp = 7114 ck3 = 1264 } # Tapia -> Nandurbar + link = { autogenerated = yes imp = 11901 imp = 11595 ck3 = 12636 } # Mare Luzon, Mare Luzon -> Philippine Sea + link = { autogenerated = yes imp = 10914 imp = 10913 imp = 12128 ck3 = 12634 } # Mare Formosa, Mare Formosa, Mare Formosa -> Philippine Sea + link = { autogenerated = yes imp = 10858 imp = 10912 ck3 = 12633 } # Mare Formosa, Mare Formosa -> Philippine Sea + link = { autogenerated = yes imp = 10857 imp = 10856 ck3 = 12631 } # Mare Formosa, Mare Formosa -> Philippine Sea + link = { autogenerated = yes imp = 11668 imp = 11749 imp = 11840 imp = 11955 imp = 12020 imp = 12060 imp = 12153 ck3 = 12629 } # Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon -> West Philippine Sea + link = { autogenerated = yes imp = 10901 imp = 11968 imp = 12151 imp = 8163 ck3 = 12628 } # Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon -> West Philippine Sea + link = { autogenerated = yes imp = 8179 imp = 11631 imp = 12000 imp = 8171 ck3 = 12627 } # Mare Luzon, Mare Luzon, Mare Luzon, Mare Luzon -> West Philippine Sea + link = { autogenerated = yes imp = 11789 ck3 = 12626 } # Mare Luzon -> West Philippine Sea + link = { autogenerated = yes imp = 11698 imp = 11828 imp = 12095 imp = 12194 imp = 8193 ck3 = 12625 } # Mare Formosa, Mare Luzon, Mare Formosa, Mare Luzon, Mare Luzon -> Luzon Strait + link = { autogenerated = yes imp = 10847 imp = 9265 ck3 = 12623 } # Mare Formosa, Mare Nanhai -> Taiwan Strait + link = { autogenerated = yes imp = 9261 ck3 = 12622 } # Mare Sinense Orientale -> Hangzhou Bay + link = { autogenerated = yes imp = 10846 ck3 = 12621 } # Mare Formosa -> East China Sea + link = { autogenerated = yes imp = 10960 imp = 9263 imp = 9264 ck3 = 12620 } # Mare Formosa, Mare Sinense Orientale, Mare Nanhai -> East China Sea + link = { autogenerated = yes imp = 9262 ck3 = 12619 } # Mare Sinense Orientale -> East China Sea + link = { autogenerated = yes imp = 10844 imp = 10845 ck3 = 12618 } # Mare Formosa, Mare Formosa -> East China Sea + link = { autogenerated = yes imp = 10853 imp = 10851 imp = 10852 ck3 = 12617 } # Mare Formosa, Mare Formosa, Mare Formosa -> East China Sea + link = { autogenerated = yes imp = 10850 ck3 = 12616 } # Mare Formosa -> East China Sea + link = { autogenerated = yes imp = 9366 imp = 9365 ck3 = 12615 } # Mare Sinense Orientale, Mare Sinense Orientale -> East China Sea + link = { autogenerated = yes imp = 9364 ck3 = 12613 ck3 = 12614 } # Mare Sinense Orientale -> East China Sea, East China Sea + link = { autogenerated = yes imp = 9351 ck3 = 12611 ck3 = 12612 } # Mare Yavadvipa -> Seto Naikai, Seto Naikai + link = { autogenerated = yes imp = 9349 ck3 = 12610 } # Mare Yavadvipa -> Seto Naikai + link = { autogenerated = yes imp = 7128 ck3 = 1261 ck3 = 7924 } # Shegaon -> Parnakheta, Mekhar + link = { autogenerated = yes imp = 9247 imp = 9246 ck3 = 12609 } # Sinus Bohai, Sinus Bohai -> Liaodong Bay + link = { autogenerated = yes imp = 9248 imp = 9249 ck3 = 12608 } # Sinus Bohai, Sinus Bohai -> Bohai Bay + link = { autogenerated = yes imp = 9253 imp = 9251 imp = 9252 ck3 = 12607 } # Sinus Bohai, Sinus Bohai, Sinus Bohai -> Laizhou Bay + link = { autogenerated = yes imp = 9245 imp = 9254 ck3 = 12606 } # Sinus Bohai, Sinus Bohai -> Bohai Strait + link = { autogenerated = yes imp = 9244 ck3 = 12605 } # Sinus Bohai -> Korean Bay + link = { autogenerated = yes imp = 9356 imp = 9357 imp = 9359 ck3 = 12604 } # Mare Sinense Orientale, Mare Sinense Orientale, Mare Sinense Orientale -> Yellow Sea + link = { autogenerated = yes imp = 9363 imp = 9358 imp = 9361 ck3 = 12603 } # Mare Sinense Orientale, Mare Sinense Orientale, Mare Sinense Orientale -> Yellow Sea + link = { autogenerated = yes imp = 9362 imp = 9260 ck3 = 12602 } # Mare Sinense Orientale, Mare Sinense Orientale -> Yellow Sea + link = { autogenerated = yes imp = 9258 imp = 9257 imp = 9360 ck3 = 12601 } # Mare Sinense Orientale, Mare Sinense Orientale, Mare Sinense Orientale -> Yellow Sea + link = { autogenerated = yes imp = 9256 ck3 = 12600 } # Mare Sinense Orientale -> Yellow Sea + link = { autogenerated = yes imp = 9255 imp = 9243 ck3 = 12599 } # Sinus Bohai, Sinus Bohai -> Yellow Sea + link = { autogenerated = yes imp = 9336 imp = 9335 ck3 = 12598 } # Mare Sinense Orientale, Mare Sinense Orientale -> Yellow Sea + link = { autogenerated = yes imp = 9337 ck3 = 12597 } # Mare Sinense Orientale -> Yellow Sea + link = { autogenerated = yes imp = 9339 imp = 9345 ck3 = 12596 } # Mare Sinense Orientale, Mare Iaponicum -> Korea Strait + link = { autogenerated = yes imp = 9338 ck3 = 12595 } # Mare Sinense Orientale -> Korea Strait + link = { autogenerated = yes imp = 11645 imp = 9353 ck3 = 12594 } # Mare Iaponicum, Mare Iaponicum -> East Korea Bay + link = { autogenerated = yes imp = 8186 ck3 = 12593 } # Mare Iaponicum -> Tsushima Basin + link = { autogenerated = yes imp = 10904 imp = 11651 imp = 12111 ck3 = 12592 } # Mare Iaponicum, Mare Iaponicum, Mare Iaponicum -> Tsushima Basin + link = { autogenerated = yes imp = 11933 ck3 = 12591 } # Mare Iaponicum -> Tsushima Basin + link = { autogenerated = yes imp = 10882 ck3 = 12590 } # Mare Iaponicum -> Yamato Basin + link = { autogenerated = yes imp = 7147 ck3 = 1259 } # Vatsagulma -> Vatsagulma + link = { autogenerated = yes imp = 12027 imp = 11636 ck3 = 12589 } # Mare Iaponicum, Mare Iaponicum -> Yamato Basin + link = { autogenerated = yes imp = 8178 ck3 = 12588 ck3 = 12770 } # Mare Iaponicum -> Yamato Basin, Toyama Bay + link = { autogenerated = yes imp = 10932 imp = 11996 imp = 12148 ck3 = 12587 } # Mare Iaponicum, Mare Iaponicum, Mare Iaponicum -> Yamato Basin + link = { autogenerated = yes imp = 10918 ck3 = 12586 } # Mare Iaponicum -> Tsugaru Strait + link = { autogenerated = yes imp = 11757 ck3 = 12585 } # Mare Iaponicum -> Japan Basin + link = { autogenerated = yes imp = 11884 imp = 11682 ck3 = 12584 } # Mare Iaponicum, Mare Iaponicum -> Japan Basin + link = { autogenerated = yes imp = 9863 imp = 8181 ck3 = 12583 } # Mare Iaponicum, Mare Iaponicum -> Japan Basin + link = { autogenerated = yes imp = 12013 ck3 = 12582 } # Mare Iaponicum -> Japan Basin + link = { autogenerated = yes imp = 11629 ck3 = 12581 } # Mare Iaponicum -> Japan Basin + link = { autogenerated = yes imp = 11835 imp = 12178 ck3 = 12580 } # Mare Iaponicum, Mare Iaponicum -> Japan Basin + link = { autogenerated = yes imp = 7160 ck3 = 1258 } # Qandar -> Nanded + link = { autogenerated = yes imp = 12133 imp = 11606 ck3 = 12579 } # Mare Iaponicum, Mare Iaponicum -> Japan Basin + link = { autogenerated = yes imp = 11724 imp = 10941 imp = 10958 ck3 = 12578 } # Mare Iaponicum, Mare Iaponicum, Mare Iaponicum -> Japan Basin + link = { autogenerated = yes imp = 10870 ck3 = 12577 } # Mare Iaponicum -> Japan Basin + link = { autogenerated = yes imp = 11812 imp = 10581 imp = 11620 imp = 11621 imp = 11660 ck3 = 12576 } # Mare Iaponicum, Mare Iaponicum, Mare Iaponicum, Mare Iaponicum, Mare Iaponicum -> Japan Basin + link = { autogenerated = yes imp = 11573 imp = 10867 ck3 = 12575 } # Mare Iaponicum, Mare Iaponicum -> Mamiya Strait + link = { autogenerated = yes imp = 9538 imp = 9307 ck3 = 12573 } # Qagan, Zeergene -> GOBI_Abakhanar + link = { autogenerated = yes imp = 12719 imp = 12725 ck3 = 12572 } # Yuldur, Yilig -> GOBI_Kur_Chagan + link = { autogenerated = yes imp = 12726 ck3 = 12570 ck3 = 12571 } # Yalil -> GOBI_Durma, GOBI_Elsuul + link = { autogenerated = yes imp = 12716 imp = 12717 imp = 12718 imp = 12882 ck3 = 12564 } # Yurek, Tupkur, Isir, Gobi Mountains -> GOBI_Deed_Ongi + link = { autogenerated = yes imp = 9507 ck3 = 12563 } # Toyrom -> GOBI_Gashunn + link = { autogenerated = yes imp = 9503 imp = 9498 imp = 9499 imp = 9504 ck3 = 12561 } # Longleshui, Junji, Kulum, Daze -> GOBI_Khatan_Suudal + link = { autogenerated = yes imp = 7149 ck3 = 1256 } # Orugallu -> Orangallu + link = { autogenerated = yes imp = 12728 imp = 12727 ck3 = 12558 } # Sogik, Urunak -> GOBI_Iren + link = { autogenerated = yes imp = 12730 ck3 = 12554 ck3 = 12555 } # Urak -> GOBI_Burdene_Bulag, GOBI_Miggan + link = { autogenerated = yes imp = 11195 ck3 = 12551 } # LAKE -> LAKES JPN + link = { autogenerated = yes imp = 7145 ck3 = 1255 } # Vemulavada -> Vemulavada + link = { autogenerated = yes imp = 9240 ck3 = 12549 } # Yu -> Pearl River + link = { autogenerated = yes imp = 9241 ck3 = 12548 } # Yu -> Pearl River + link = { autogenerated = yes imp = 9242 ck3 = 12547 } # Yu -> Pearl River + link = { autogenerated = yes imp = 9267 ck3 = 12546 } # Mare Nanhai -> Pearl River + link = { autogenerated = yes imp = 10999 imp = 11000 ck3 = 12545 } # Muang Kam, Song Hieu -> Tra Lan + link = { autogenerated = yes imp = 7019 ck3 = 1253 } # Andhapura -> Nilagiri + link = { autogenerated = yes imp = 10814 ck3 = 12528 } # $PROV10809$ -> Mekong River + link = { autogenerated = yes imp = 10813 ck3 = 12527 } # $PROV10809$ -> Mekong River + link = { autogenerated = yes imp = 10812 ck3 = 12525 } # $PROV10809$ -> Mekong River + link = { autogenerated = yes imp = 7663 ck3 = 12517 } # Mekong lake -> Tonle Sap River + link = { autogenerated = yes imp = 10811 ck3 = 12516 } # $PROV10809$ -> Tonle Sap River + link = { autogenerated = yes imp = 10810 ck3 = 12515 } # $PROV10809$ -> Mekong River + link = { autogenerated = yes imp = 10809 ck3 = 12514 } # Mekong -> Mekong River + link = { autogenerated = yes imp = 10943 ck3 = 12513 } # Mare Nanfang Hai -> Mekong River + link = { autogenerated = yes imp = 10973 imp = 10974 ck3 = 12511 } # Sab Champa, Pong Manao -> Dong Si Mahosot + link = { autogenerated = yes imp = 7474 imp = 7473 ck3 = 1251 } # Rohtas, Sasaram -> Sasaram + link = { autogenerated = yes imp = 11013 ck3 = 12506 ck3 = 12507 } # Song Be -> Binh_Long_2, Binh_Long_3 + link = { autogenerated = yes imp = 11100 ck3 = 12502 ck3 = 12854 ck3 = 10963 } # Sirikit -> Nan, Si Satchanalai, Phichai/Sawangkaburi + link = { autogenerated = yes imp = 11102 ck3 = 12501 ck3 = 12855 ck3 = 11451 } # Chiang Rai -> Chiang Rai, Phayao, Pak_Beng + link = { autogenerated = yes imp = 4455 ck3 = 1250 } # Jaisingpura -> Ayodhya + link = { autogenerated = yes imp = 12746 ck3 = 12480 ck3 = 12481 } # Ekeke -> FIC_EMan_Uada_Alin, FIC_EMan_Choripi + link = { autogenerated = yes imp = 11538 imp = 5365 ck3 = 1248 } # Baragaon, IP 366 -> Chutia + link = { autogenerated = yes imp = 12748 ck3 = 12478 ck3 = 12479 ck3 = 12477 } # Berqa -> FIC_EMan_Tudali, FIC_EMan_Bolon, FIC_EMan_Bureya + link = { autogenerated = yes imp = 12750 ck3 = 12466 ck3 = 12467 } # Nawrk -> FIC_EMan_Pilda, FIC_EMan_Kerin + link = { autogenerated = yes imp = 12753 ck3 = 12464 ck3 = 12465 ck3 = 12463 ck3 = 12468 } # Pirner -> FIC_EMan_Henkon, FIC_EMan_Chagal, FIC_EMan_Amgun, FIC_EMan_Usalgin + link = { autogenerated = yes imp = 7344 imp = 6050 ck3 = 1246 } # Goalpara, Meghalaya -> Goalpara + link = { autogenerated = yes imp = 12752 ck3 = 12459 ck3 = 12460 ck3 = 12461 } # Jerki -> FIC_EMan_Ekiti, EMan_Nurgan, FIC_EMan_Chlya + link = { autogenerated = yes imp = 12751 ck3 = 12455 ck3 = 12456 ck3 = 12458 ck3 = 12483 } # Galrala -> FIC_EMan_Senkele, FIC_EMan_Melersuki, FIC_EMan_Kamer, IMPASSABLE North East Manchuria mountain 1 + link = { autogenerated = yes imp = 7323 ck3 = 1244 } # Kirrhadia -> Kamatapur + link = { autogenerated = yes imp = 7398 imp = 7337 ck3 = 1243 } # Kushtia, Aganagara -> Karnasubarna + link = { autogenerated = yes imp = 9873 ck3 = 12426 ck3 = 12418 ck3 = 12429 } # Rushui -> CirLZJ_Chengde, CirLZJ_Xinghua, CirLZJ_Beian + link = { autogenerated = yes imp = 9874 ck3 = 12424 ck3 = 12421 } # Guangcheng -> CirLZJ_Yuhejing, CirLZJ_Longtan + link = { autogenerated = yes imp = 8767 ck3 = 12420 ck3 = 12425 ck3 = 13161 } # Zi -> CirLZJ_Qinglonghe, CirLZJ_Luexiating, (Unknown) + link = { autogenerated = yes imp = 7327 ck3 = 1242 ck3 = 842 ck3 = 855 } # Karnasuvarna -> Lakhnor, Raktamrittika, Attahasa + link = { autogenerated = yes imp = 8765 imp = 9584 ck3 = 12419 } # Junmi, Impassable -> CirLZJ_Luanhe + link = { autogenerated = yes imp = 8760 ck3 = 12417 ck3 = 11945 } # Baitan -> CirLZJ_Liuheting, IMPASSABLE Hebei mountains 2 + link = { autogenerated = yes imp = 8652 ck3 = 12414 ck3 = 12557 } # Qieru -> CirLXJ_Xianhuang, GOBI_Liaoli + link = { autogenerated = yes imp = 9881 ck3 = 12412 } # Zhengxiangbai -> CirLXJ_Banchangzhou + link = { autogenerated = yes imp = 9882 ck3 = 12409 ck3 = 12410 ck3 = 12411 ck3 = 12428 } # Huluobo -> CirLXJ_Dongting, CirLXJ_Nanpo, CirLXJ_Huanzhou, CirLZJ_Caodangzhen + link = { autogenerated = yes imp = 9883 ck3 = 12408 ck3 = 12415 ck3 = 12430 } # Yaoyang -> CirLXJ_Lilingtaiyi, CirLZJ_Chaolijiang, CirLZJ_Yudaokou + link = { autogenerated = yes imp = 8751 ck3 = 12406 ck3 = 12407 ck3 = 12413 ck3 = 12402 } # Zaoyang -> CirLXJ_Yangcheng, CirLXJ_Yunyudi, CirLXJ_Kangbao, CirLXJ_Tuncheng + link = { autogenerated = yes imp = 8749 ck3 = 12404 ck3 = 11944 } # Ning -> CirLXJ_Wangyun, IMPASSABLE Hebei mountains 1 + link = { autogenerated = yes imp = 8750 ck3 = 12401 } # Nuqi -> CirLXJ_Zhangjiakou + link = { autogenerated = yes imp = 7394 imp = 7359 ck3 = 1240 } # Fathabad, Mukund -> Fathabad + link = { autogenerated = yes imp = 10290 imp = 10283 ck3 = 124 } # Zagares, Pagramancio -> RASEINIAI + link = { autogenerated = yes imp = 8606 imp = 8616 imp = 8607 ck3 = 12398 } # Guangmu, Chengyi, Linhe -> CirLXJ_Anbei + link = { autogenerated = yes imp = 8666 ck3 = 12396 } # Shaling -> CirLXJ_Shanyu + link = { autogenerated = yes imp = 9513 ck3 = 12395 ck3 = 12556 } # Tuidang -> CirLXJ_Chayouqian, GOBI_Sishajiang + link = { autogenerated = yes imp = 8661 imp = 8664 ck3 = 12393 } # Dingxiang, Yuanyang -> CirLXJ_Heishabao + link = { autogenerated = yes imp = 8663 imp = 8619 ck3 = 12392 } # Yunzhong, Qahar -> CirLXJ_Heicheng + link = { autogenerated = yes imp = 8660 imp = 8656 imp = 8662 ck3 = 12391 } # Chengle, Shanwu, Wucheng -> CirLXJ_Zhenwu + link = { autogenerated = yes imp = 7328 ck3 = 1239 ck3 = 845 } # Vardhamana -> Vijayapura, Gopbhum + link = { autogenerated = yes imp = 8657 ck3 = 12387 } # Woyang -> CirLXJ_Xuande + link = { autogenerated = yes imp = 7365 ck3 = 1238 ck3 = 859 } # Ladha -> Mallabhum, Visnupura + link = { autogenerated = yes imp = 11531 ck3 = 1237 } # Chatra -> Rajrappa + link = { autogenerated = yes imp = 8259 ck3 = 12368 } # Jincheng -> CirQF_Dingxi + link = { autogenerated = yes imp = 8264 ck3 = 12366 ck3 = 12367 } # Baohan -> CirQF_Longxi, CirQF_Weiyuanbao + link = { autogenerated = yes imp = 8295 imp = 8296 imp = 8290 ck3 = 12365 } # Angu, Shouyang, Didao -> CirQF_Yongning + link = { autogenerated = yes imp = 8298 ck3 = 12364 ck3 = 12361 ck3 = 9445 ck3 = 9775 ck3 = 13191 } # Qiangdao -> CirQF_Pingluo, CirQF_Yanguan, Zhugqu, Qushui, (Unknown) + link = { autogenerated = yes imp = 8297 ck3 = 12363 } # Wushan -> CirQF_Liting + link = { autogenerated = yes imp = 8291 ck3 = 12362 ck3 = 9443 ck3 = 13186 } # Lintao -> CirQF_Luchanzhai, Jone, (Unknown) + link = { autogenerated = yes imp = 7395 imp = 7330 imp = 7396 ck3 = 1236 } # Barisal, Bargysi, Bagerhat -> Candradvipa + link = { autogenerated = yes imp = 8288 ck3 = 12358 } # Wangyuan -> CirQF_Dengcheng + link = { autogenerated = yes imp = 8289 imp = 8283 ck3 = 12357 } # Huandao, Lueyang -> CirQF_Yefangbao + link = { autogenerated = yes imp = 8287 ck3 = 12356 ck3 = 13182 } # Qingshui -> CirQF_Langxinguan, (Unknown) + link = { autogenerated = yes imp = 8284 imp = 8282 imp = 8285 ck3 = 12355 } # Eyang, Chengji, Jiequan -> CirQF_Anhua + link = { autogenerated = yes imp = 8280 ck3 = 12354 ck3 = 12360 ck3 = 13176 } # Yongshi -> CirQF_Zhipingbao, CirQF_Gangu, (Unknown) + link = { autogenerated = yes imp = 7362 ck3 = 1235 } # Mallabhum -> Tamralipti + link = { autogenerated = yes imp = 8269 ck3 = 12349 ck3 = 12351 ck3 = 12959 ck3 = 12962 ck3 = 13087 ck3 = 13086 ck3 = 9534 } # Xuanjuan -> CirQF_Xiaoguan, CirQF_Suirongbao, Mingsha Southwest, Wulan, Changhua Northeast, Changhua East, Shapotou + link = { autogenerated = yes imp = 8270 ck3 = 12348 ck3 = 12352 ck3 = 12353 ck3 = 13175 } # Zuli -> CirQF_Tongxiahai, CirQF_Tonganzhai, CirQF_Zhonganbao, (Unknown) + link = { autogenerated = yes imp = 8817 ck3 = 12339 } # Xiabian -> CirQF_Dongheqiao + link = { autogenerated = yes imp = 7345 ck3 = 1233 ck3 = 1323 ck3 = 860 } # Nabadwipa -> Saptagrama, Nabadwipa, Umardan + link = { autogenerated = yes imp = 7391 ck3 = 1232 } # Kharagpur -> Midnapore + link = { autogenerated = yes imp = 7181 ck3 = 1231 } # Manites -> Viraja + link = { autogenerated = yes imp = 7168 imp = 7175 ck3 = 1230 } # Suvarnapura, Bandavala -> Suvarnapura + link = { autogenerated = yes imp = 7808 ck3 = 123 ck3 = 125 } # Rubonia -> JURBARKAS, TAURAGE + link = { autogenerated = yes imp = 7134 ck3 = 1227 ck3 = 1252 } # Chakrakot -> Cakrakuta, Barasuru + link = { autogenerated = yes imp = 7085 ck3 = 1225 } # Jaugada -> Puri + link = { autogenerated = yes imp = 7084 ck3 = 1222 ck3 = 1415 } # Lingarajupalem -> Rajamahendravaram, Pithapuram + link = { autogenerated = yes imp = 7040 imp = 7041 ck3 = 1221 } # Mosali, Kottobora -> Vijayawada + link = { autogenerated = yes imp = 6880 imp = 6881 ck3 = 1220 } # Vasi, Tyrannosboas -> Goa + link = { autogenerated = yes imp = 7830 ck3 = 122 ck3 = 3203 ck3 = 3218 } # Galindia Occidentalis -> LABIAU, PATERSWALDE, LAUKITTEN + link = { autogenerated = yes imp = 7001 ck3 = 1219 } # Melange -> Potapi + link = { autogenerated = yes imp = 7120 ck3 = 1218 ck3 = 7878 ck3 = 7902 } # Raichur -> Alampur, Raichur, Yetagiri + link = { autogenerated = yes imp = 8758 ck3 = 12177 ck3 = 9699 } # Pinggu -> CirLNJ_Yuyang, Huairou + link = { autogenerated = yes imp = 8757 imp = 8759 ck3 = 12176 } # Guangping, Huayan -> CirLNJ_Jintao + link = { autogenerated = yes imp = 8752 ck3 = 12174 ck3 = 12416 } # Yuyang -> CirLNJ_Xingtang, CirLZJ_Xuefang + link = { autogenerated = yes imp = 8743 ck3 = 12170 ck3 = 12403 } # Juyang -> CirLNJ_Baihua, CirLXJ_Longmen + link = { autogenerated = yes imp = 7029 imp = 5311 ck3 = 1217 } # Bendakaluru, IP 312 -> Nandagiri + link = { autogenerated = yes imp = 7009 ck3 = 1216 ck3 = 7849 } # Talavanapura -> Talakad, Seringapatam + link = { autogenerated = yes imp = 4436 ck3 = 1215 ck3 = 3468 } # Alavi Pancala -> Etawah, Tilokpur + link = { autogenerated = yes imp = 6914 ck3 = 1214 } # Alaivay -> Tirunelveli + link = { autogenerated = yes imp = 7104 ck3 = 1213 ck3 = 7882 ck3 = 7940 } # Siaprava -> Kondana, Karhada, Western Ghats (NS) + link = { autogenerated = yes imp = 7153 ck3 = 1212 } # Bidar -> Lattalura + link = { autogenerated = yes imp = 7119 ck3 = 1211 } # Kothapala -> Pannagallu + link = { autogenerated = yes imp = 7154 ck3 = 1210 } # Guriprava -> Manyakheta + link = { autogenerated = yes imp = 7057 ck3 = 1209 ck3 = 7904 } # Nagarjunikonda -> Racakonda, Nalgonda + link = { autogenerated = yes imp = 7044 ck3 = 1208 ck3 = 7912 } # Nanagaina -> Kambampet, Ellur + link = { autogenerated = yes imp = 7042 ck3 = 1207 } # Pitoura -> Amaravati + link = { autogenerated = yes imp = 7113 ck3 = 1206 } # Mehdnapura -> Taradavadi + link = { autogenerated = yes imp = 7002 ck3 = 1204 } # Nellore -> Nellore + link = { autogenerated = yes imp = 7087 ck3 = 1203 ck3 = 7874 } # Goulla -> Idatarainadu, Koppam + link = { autogenerated = yes imp = 6946 imp = 6945 ck3 = 1201 } # Kavera, Kilandha -> Kongu + link = { autogenerated = yes imp = 6885 ck3 = 1200 } # Nouira -> Kanara + link = { autogenerated = yes imp = 7831 ck3 = 120 ck3 = 3206 } # Galindia Orientalis -> RAGNIT, INSTERBURG + link = { autogenerated = yes imp = 2206 ck3 = 12 } # Voluntia Borealis -> DERRY + link = { autogenerated = yes imp = 7014 ck3 = 1199 } # Penugonda -> Penugonda + link = { autogenerated = yes imp = 7109 ck3 = 1198 ck3 = 1202 } # Vijayapura -> Vatapi, Kudalasangama + link = { autogenerated = yes imp = 7035 ck3 = 1197 ck3 = 7853 } # Kalligeris -> Dwarasamudra, Kudala + link = { autogenerated = yes imp = 7117 ck3 = 1195 ck3 = 7898 ck3 = 1260 } # Satyiyani -> Bhamer, Ankai, Nasikya + link = { autogenerated = yes imp = 7125 ck3 = 1194 } # Pandavleni -> Sindkheda + link = { autogenerated = yes imp = 9233 ck3 = 11939 } # He -> Yellow River + link = { autogenerated = yes imp = 9236 ck3 = 11936 } # He -> Yellow River + link = { autogenerated = yes imp = 9237 ck3 = 11935 } # He -> Yellow River + link = { autogenerated = yes imp = 9238 ck3 = 11934 } # He -> Yellow River + link = { autogenerated = yes imp = 9250 ck3 = 11933 } # Sinus Bohai -> Yellow River + link = { autogenerated = yes imp = 4390 imp = 4392 ck3 = 1193 } # Jalandhara, Sarvamanapura -> Jalandhar + link = { autogenerated = yes imp = 4398 ck3 = 1192 } # Bhatiai -> Bhera + link = { autogenerated = yes imp = 6449 ck3 = 11916 ck3 = 11917 } # LAKE -> Amur River, Amur River + link = { autogenerated = yes imp = 10931 ck3 = 11915 ck3 = 12574 } # Mare Mishihase -> Amur River, Tungur Bay + link = { autogenerated = yes imp = 12732 ck3 = 11910 ck3 = 11911 ck3 = 11912 } # Pemun -> FIC_EMan_Dinglian, EMan_Dingzhou, EMan_Yongmingcheng + link = { autogenerated = yes imp = 7492 ck3 = 1191 } # Aspakora -> Bannu + link = { autogenerated = yes imp = 12736 ck3 = 11905 ck3 = 11906 ck3 = 11514 } # Biriken -> EMan_Anzhou, FIC_EMan_Silata_an, IMPASSABLE Sikhote mountains south 1 + link = { autogenerated = yes imp = 12738 ck3 = 11902 ck3 = 11903 ck3 = 11904 ck3 = 11515 } # Xulma -> FIC_EMan_Beiqiulin, FIC_EMan_Heizhuhai, FIC_EMan_Zhenzhuhai, IMPASSABLE Sikhote mountains south 2 + link = { autogenerated = yes imp = 12737 ck3 = 11900 ck3 = 11907 ck3 = 11908 } # Irga -> FIC_EMan_Qingshancun, FIC_EMan_Luseqiu, FIC_EMan_Sanhean + link = { autogenerated = yes imp = 12739 ck3 = 11897 ck3 = 11898 ck3 = 11516 } # Tuksan -> FIC_EMan_Zhonganyuan, FIC_EMan_Dongning, IMPASSABLE Sikhote mountains center 1 + link = { autogenerated = yes imp = 12734 ck3 = 11896 ck3 = 11899 ck3 = 11901 } # Abdu -> FIC_EMan_Alimenyang, EMan_Ningzhou, FIC_EMan_Huangyuan + link = { autogenerated = yes imp = 12740 ck3 = 11895 } # Putakan -> FIC_EMan_Bixinjiang + link = { autogenerated = yes imp = 12742 ck3 = 11893 ck3 = 11892 } # Imana -> FIC_EMan_Mohean, FIC_EMan_Yerenhe + link = { autogenerated = yes imp = 12743 ck3 = 11889 ck3 = 11890 ck3 = 11891 ck3 = 11517 } # Bulkr -> FIC_EMan_Shuilinhai, FIC_EMan_Yozejiang, FIC_EMan_Bixinshang, IMPASSABLE Sikhote mountains center 2 + link = { autogenerated = yes imp = 12747 ck3 = 11886 ck3 = 11887 ck3 = 11885 ck3 = 11888 } # Guryjo -> FIC_EMan_Xiaoheijiang, FIC_EMan_Wuguihai, FIC_EMan_Shuishanpu, FIC_EMan_Elejiang + link = { autogenerated = yes imp = 12749 ck3 = 11883 ck3 = 12457 ck3 = 11882 ck3 = 11884 } # Bejna -> FIC_EMan_Beihean, FIC_EMan_Silbaki, FIC_EMan_Heishanan, FIC_EMan_Heishuiyang + link = { autogenerated = yes imp = 7182 ck3 = 1188 ck3 = 1189 ck3 = 7899 } # Jhodga -> Erandol, Amalner, Elapura + link = { autogenerated = yes imp = 12744 ck3 = 11879 ck3 = 11880 ck3 = 11881 } # Jacra -> FIC_EMan_Yemanshui, FIC_EMan_Shangkhor, EMan_Molihewen + link = { autogenerated = yes imp = 12741 ck3 = 11877 ck3 = 11878 ck3 = 11894 } # Sarimikta -> EMan_Boli, FIC_EMan_Wuguijiang, FIC_EMan_Khorhe + link = { autogenerated = yes imp = 12733 ck3 = 11876 ck3 = 11909 ck3 = 11914 } # Iandaku -> EMan_Supin, FIC_EMan_Shanganjugu, FIC_EMan_Shuaibinan + link = { autogenerated = yes imp = 7126 imp = 7423 imp = 5343 ck3 = 1187 } # Burhanpur, Melghat, IP 344 -> Changdev + link = { autogenerated = yes imp = 9551 ck3 = 11869 ck3 = 11870 ck3 = 11874 ck3 = 11875 } # Haoshi -> FIC_EMan_Beidongan, EMan_Yizhou, FIC_EMan_Xuduohe, FIC_EMan_Dongxingkai + link = { autogenerated = yes imp = 7278 ck3 = 1186 } # Padri -> Chach + link = { autogenerated = yes imp = 9564 ck3 = 11859 ck3 = 11860 ck3 = 11861 ck3 = 11862 ck3 = 11863 ck3 = 11864 ck3 = 11868 } # Naoli -> FIC_EMan_Songhuajiang, FIC_EMan_Huaicao, FIC_EMan_Qiligashan, FIC_EMan_Heihubo, FIC_EMan_Huanghuai, FIC_EMan_Dacun, FIC_EMan_Naolijiang + link = { autogenerated = yes imp = 9553 ck3 = 11851 ck3 = 11852 ck3 = 11853 ck3 = 11873 } # Meituo Nan -> Liao_Jianzhou2, FIC_Liao_Tongan, FIC_Liao_Qingquan, FIC_EMan_Nanxingkai + link = { autogenerated = yes imp = 7311 ck3 = 1185 ck3 = 1287 } # Khandav -> Khandwa, Asirgarh + link = { autogenerated = yes imp = 12731 ck3 = 11849 ck3 = 11850 ck3 = 11913 } # Semtu -> Liao_Lungyuanfu, FIC_Liao_Huanghekou, EMan_Huazhou + link = { autogenerated = yes imp = 12735 ck3 = 11846 ck3 = 11847 ck3 = 11848 } # Eyiken -> Liao_Helan, Liao_Wanhaifu, Liao_Dongjing + link = { autogenerated = yes imp = 8812 ck3 = 11842 ck3 = 11843 ck3 = 9868 ck3 = 11845 } # Bujo -> Liao_Nanjing, FIC_Liao_Nanhaikou, Goryeo_Donggye_Yeju, FIC_Liao_Nandongkou + link = { autogenerated = yes imp = 7424 ck3 = 1184 } # Omkareshwar -> Khargone + link = { autogenerated = yes imp = 7316 ck3 = 1263 } # Khargone -> Burhanpur + link = { autogenerated = yes imp = 9543 ck3 = 11833 ck3 = 11838 ck3 = 11839 } # Tutai -> Liao_Luzhou, Liao_Xingzhou, FIC_Liao_Helong + link = { autogenerated = yes imp = 9544 ck3 = 11830 ck3 = 11831 ck3 = 11832 } # Baishan -> Liao_Tongzhou2, FIC_Liao_Tumen, FIC_Liao_Yanji + link = { autogenerated = yes imp = 7315 ck3 = 1183 ck3 = 1262 } # Barwani -> Borgarh, Thalner + link = { autogenerated = yes imp = 9552 ck3 = 11825 ck3 = 11827 ck3 = 11828 ck3 = 11829 } # Duxincun -> FIC_Liao_Mudanjiang, Liao_Bozhou, Liao_Shangjing, Liao_Sushen + link = { autogenerated = yes imp = 4476 ck3 = 1182 } # Mahismati -> Bawangaja + link = { autogenerated = yes imp = 4492 ck3 = 3332 } # Bagh Anupa -> Dharampuri + link = { autogenerated = yes imp = 9547 ck3 = 11817 ck3 = 11826 ck3 = 11855 ck3 = 11856 ck3 = 11871 ck3 = 11872 } # Funie -> Liao_Yingzhou, FIC_Liao_Yingan, FIC_EMan_Zhongtieli, FIC_EMan_Dongying, EMan_Jixi, FIC_EMan_Dongxian + link = { autogenerated = yes imp = 9546 ck3 = 11814 ck3 = 11815 ck3 = 11816 ck3 = 11818 ck3 = 11819 ck3 = 11820 ck3 = 11929 ck3 = 11511 } # Anchegu -> Liao_Gaozhou2, FIC_Liao_Xitielian, Liao_Delizhen, FIC_Liao_Daguokuishan, FIC_Liao_Longfengshan, FIC_Liao_Suping, FIC_Liao_Nanmoan, IMPASSABLE Mudanjiang heights + link = { autogenerated = yes imp = 9545 ck3 = 11811 ck3 = 11812 ck3 = 11813 } # Boduo -> FIC_Liao_Ximoan, Liao_Ningjiang, Liao_Mozhou + link = { autogenerated = yes imp = 8794 ck3 = 11807 ck3 = 11808 } # Shangyintai -> FIC_Liao_Yaluan, Liao_Hezhou + link = { autogenerated = yes imp = 8796 ck3 = 11806 ck3 = 11836 ck3 = 11837 } # Xigaima -> Liao_Xijing, FIC_Liao_Changbaishan, FIC_Liao_Tianchi + link = { autogenerated = yes imp = 8798 ck3 = 11805 ck3 = 11840 } # Wandu -> Liao_Huanzhou, Liao_Luzhou2 + link = { autogenerated = yes imp = 8800 ck3 = 11803 ck3 = 11804 } # Liaoshan -> FIC_Liao_Huangcaocun, FIC_Liao_Baichang + link = { autogenerated = yes imp = 8797 ck3 = 11801 ck3 = 12454 ck3 = 9888 } # Chengxian -> Liao_Kuandianzi, FIC_EMan_Bao, Goryeo_Bukgye_Sakju + link = { autogenerated = yes imp = 8795 ck3 = 11800 ck3 = 11802 } # Geshenggu -> Liao_Fengcheng, Liao_Zhengzhou + link = { autogenerated = yes imp = 4325 imp = 6997 ck3 = 1180 } # Mardan, Ora -> Udabhanda + link = { autogenerated = yes imp = 7809 ck3 = 118 ck3 = 119 } # Rubonia Occidentalis -> MEMEL, TILSIT + link = { autogenerated = yes imp = 8793 ck3 = 11799 } # Gaogouli -> Liao_Guidezhou + link = { autogenerated = yes imp = 8789 ck3 = 11797 } # Wuci -> FIC_Liao_Shaozijiang + link = { autogenerated = yes imp = 8791 imp = 9884 ck3 = 11796 } # Xianping, Xiaoshuimo Impassable -> Liao_Dandong + link = { autogenerated = yes imp = 12890 imp = 9871 ck3 = 11795 } # Xishan, Impassable -> Liao_Kaizhou + link = { autogenerated = yes imp = 12889 ck3 = 11793 ck3 = 11794 } # Biliu -> FIC_Liao_Biliujiang, Liao_Diezhou + link = { autogenerated = yes imp = 8788 ck3 = 11791 ck3 = 11792 } # Tashi -> Liao_Fuping, Liao_Suning + link = { autogenerated = yes imp = 8787 ck3 = 11790 } # Pingguo -> Liao_Zhenzhou + link = { autogenerated = yes imp = 4340 ck3 = 1179 } # Sakala -> Sakala + link = { autogenerated = yes imp = 8786 ck3 = 11788 } # Anshi -> Liao_Yaozhou + link = { autogenerated = yes imp = 9667 ck3 = 11787 ck3 = 11798 } # Jujiu -> Liao_Haizhou, Liao_Xiyuan + link = { autogenerated = yes imp = 8779 ck3 = 11786 } # Xiangping -> Liao_Liaoyang + link = { autogenerated = yes imp = 8790 ck3 = 11783 ck3 = 11785 } # Houcheng -> Liao_Guangzhou, Liao_Shenyang + link = { autogenerated = yes imp = 8785 ck3 = 11782 } # Gaoxian -> Liao_Yinzhou + link = { autogenerated = yes imp = 11524 imp = 11522 imp = 11525 imp = 11526 imp = 11528 imp = 6058 ck3 = 1178 } # Patan Minara, Marot, Inayati, Chishtian, Anupgarh, Abhiria Secunda -> Karur + link = { autogenerated = yes imp = 9541 ck3 = 11777 ck3 = 11779 ck3 = 11780 ck3 = 11781 ck3 = 11770 ck3 = 11771 } # Fuyu -> Liao_Suzhou, Liao_Fuzhou2, Liao_Xianzhou2, Liao_Qizhou, Liao_Yuanzhou, Liao_Shuangzhou + link = { autogenerated = yes imp = 8772 ck3 = 11776 ck3 = 12422 ck3 = 12423 } # Wencheng -> Liao_Xizhou, CirLZJ_Qinhuangdao, CirLZJ_Fusu + link = { autogenerated = yes imp = 8773 ck3 = 11774 } # Tuhe -> Liao_Jinzhou + link = { autogenerated = yes imp = 9665 ck3 = 11773 } # Bintu -> Liao_Yizhou3 + link = { autogenerated = yes imp = 8775 ck3 = 11772 } # Yangle -> Liao_Qianzhou2 + link = { autogenerated = yes imp = 7354 ck3 = 1177 ck3 = 9164 ck3 = 9165 ck3 = 9166 } # Sadiya -> Kundina, Anini, Roing, Tezu + link = { autogenerated = yes imp = 8782 ck3 = 11764 ck3 = 11784 } # Liaoyang -> Liao_Qianzhou, Liao_Tangzhou + link = { autogenerated = yes imp = 8780 imp = 8784 imp = 8781 ck3 = 11763 } # Wulu, Fang, Xiandu -> Liao_Haibeizhou + link = { autogenerated = yes imp = 9877 imp = 8776 imp = 8777 imp = 9585 ck3 = 11762 } # Yiwulyushan, Jiaoli, Qielu, Impassable -> Liao_Xianzhou + link = { autogenerated = yes imp = 8774 ck3 = 11760 ck3 = 11775 } # Liucheng -> Liao_Liping, Liao_Andefu + link = { autogenerated = yes imp = 9876 ck3 = 11759 ck3 = 11761 ck3 = 11766 } # Houshui -> Liao_Chaoyang, Liao_Chuanzhou, Liao_Suizhou + link = { autogenerated = yes imp = 9539 ck3 = 11755 ck3 = 11758 } # Naiman -> Liao_Jiangshengzhou, Liao_Chengzhou + link = { autogenerated = yes imp = 8766 ck3 = 11753 } # Bailang -> Liao_Jianzhou + link = { autogenerated = yes imp = 9548 ck3 = 11751 } # Xingxingshao -> FIC_Liao_Hongfucun + link = { autogenerated = yes imp = 9550 ck3 = 11750 ck3 = 11809 ck3 = 11835 } # Lalin -> FIC_Liao_Beichang, Liao_Changling, Liao_Fusong + link = { autogenerated = yes imp = 9542 ck3 = 11748 ck3 = 11822 ck3 = 11823 ck3 = 11824 ck3 = 11834 } # Sumo -> FIC_Liao_Quliuan, FIC_Liao_Nansuan, FIC_Liao_Erdaojiang, Liao_Tangzhou2, Liao_Zhongjing + link = { autogenerated = yes imp = 9549 ck3 = 11742 ck3 = 11743 ck3 = 11744 ck3 = 11745 ck3 = 11746 ck3 = 11747 ck3 = 11749 ck3 = 11752 ck3 = 11821 } # Tuchengzi -> Liao_Jizhou, Liao_Weizhou, Liao_Xiangzhou, Liao_Binzhou, Liao_Changchun2, Liao_Yongji, FIC_Liao_Fuyunan, Liao_Xinzhou, Liao_Suzhou2 + link = { autogenerated = yes imp = 4491 ck3 = 1174 } # Samlaji -> Candravati + link = { autogenerated = yes imp = 9530 ck3 = 11739 ck3 = 11740 ck3 = 11768 ck3 = 11769 } # Daliaoshui -> FIC_Liao_Horqin, FIC_Liao_Shuangliao, Liao_Fuzhou, Liao_Wuzhou2 + link = { autogenerated = yes imp = 9554 ck3 = 11735 ck3 = 11736 ck3 = 11737 ck3 = 11738 ck3 = 11741 ck3 = 11778 ck3 = 11810 } # Xinmiaopao -> Liao_Changchun, Liao_Yizhou, FIC_Liao_Yumitudi, FIC_Liao_Heihorqin, Liao_Fengzhou3, Liao_Tonghua, FIC_Liao_Moedu + link = { autogenerated = yes imp = 4452 ck3 = 1173 } # Sambalhagrama -> Sambhal + link = { autogenerated = yes imp = 9528 ck3 = 11729 ck3 = 11756 ck3 = 11757 ck3 = 11767 } # Tongliao -> FIC_Liao_Bayintailai, Liao_Longhuazhou, Liao_Yizhou2, Liao_Weizhou2 + link = { autogenerated = yes imp = 9887 ck3 = 11728 ck3 = 11730 ck3 = 11727 ck3 = 11525 } # Horqin -> FIC_Liao_Huopingan, FIC_Liao_Zhanyu, FIC_Liao_Caoyuanan, IMPASSABLE Liaoning field + link = { autogenerated = yes imp = 9535 ck3 = 11724 ck3 = 11722 ck3 = 11725 } # Hesi Gewula -> Liao_Wuzhou, FIC_Liao_Wuluan, FIC_Liao_Matudi + link = { autogenerated = yes imp = 8768 ck3 = 11721 ck3 = 12427 } # Pinggang -> Liao_Dading, CirLZJ_Jianting + link = { autogenerated = yes imp = 9875 ck3 = 11720 ck3 = 11719 } # Canliu -> Liao_Enzhou, Liao_Songshanzhou + link = { autogenerated = yes imp = 7408 imp = 7444 imp = 7472 imp = 4427 ck3 = 1172 } # Batesar, Dhawalpur, Bhind, Bhitargaon -> Gwalior + link = { autogenerated = yes imp = 9540 ck3 = 11718 ck3 = 11754 } # Sharihaolaichen -> Liao_Gaozhou, Liao_Wuanzhou + link = { autogenerated = yes imp = 9526 ck3 = 11711 ck3 = 11712 ck3 = 11717 ck3 = 11716 } # Raole -> Liao_Zuzhou, Liao_Raozhou, Liao_Yungzhou, Liao_Fengzhou + link = { autogenerated = yes imp = 4466 ck3 = 1171 ck3 = 3960 } # Khoh -> Kalanjara, Chitrakuta + link = { autogenerated = yes imp = 9529 ck3 = 11709 ck3 = 11710 ck3 = 11726 } # Oumulun -> Liao_Linhuang, Liao_Songzhanzhou, FIC_Liao_Baicaoer + link = { autogenerated = yes imp = 9527 ck3 = 11706 ck3 = 11713 ck3 = 11714 ck3 = 11715 } # Jinggouzi -> FIC_Liao_Xilin, FIC_Liao_Dalinuor, FIC_Liao_Hongdali, Liao_Yikunzhou + link = { autogenerated = yes imp = 9536 ck3 = 11704 ck3 = 11707 ck3 = 11708 } # Bayanhua -> FIC_Liao_Ulanuer, Liao_Qingzhou, Liao_Huaizhou + link = { autogenerated = yes imp = 9537 ck3 = 11703 ck3 = 11705 } # Sonid -> FIC_Liao_Ulanulagai, FIC_Liao_Charnoer + link = { autogenerated = yes imp = 7302 ck3 = 1170 } # Kirthagiri -> Vidisa + link = { autogenerated = yes imp = 9563 ck3 = 11692 ck3 = 11694 ck3 = 11854 ck3 = 11857 ck3 = 11858 ck3 = 11691 ck3 = 11696 } # Liushudao -> FIC_Amur_Haixidu, FIC_Amur_Helincun, EMan_Huligai, FIC_EMan_Hulilusean, FIC_EMan_Baihuaicun, FIC_Amur_Ilanshan, FIC_Amur_Dahedu + link = { autogenerated = yes imp = 7375 ck3 = 1169 ck3 = 1414 } # Kahnpuria -> Kalpi, Kora + link = { autogenerated = yes imp = 9555 ck3 = 11680 ck3 = 11681 ck3 = 11635 ck3 = 11637 ck3 = 11678 ck3 = 11679 } # Lanhe -> Amur_Mergen, FIC_Amur_Dongweian, FIC_Amur_Ganhejiang, FIC_Amur_Ganheyang, FIC_Amur_Xijiadamo, FIC_Amur_Xiaoqiu + link = { autogenerated = yes imp = 4419 ck3 = 1168 ck3 = 3473 } # Haridwar -> Mandawar, Gangadvara + link = { autogenerated = yes imp = 4456 ck3 = 1167 } # Nimisa -> Lakhnau + link = { autogenerated = yes imp = 9556 ck3 = 11668 ck3 = 11682 ck3 = 11638 ck3 = 11669 ck3 = 11670 ck3 = 11673 } # Shiwei -> FIC_Amur_Nemorjiang, FIC_Amur_Jiashanbei, FIC_Amur_Jiahuangtou, FIC_Amur_Jinshuhe, FIC_Amur_Xipuyu, FIC_Amur_Yemaotudi + link = { autogenerated = yes imp = 9559 ck3 = 11661 ck3 = 11662 ck3 = 11663 ck3 = 11664 ck3 = 11665 ck3 = 11683 ck3 = 11699 ck3 = 11700 ck3 = 11701 ck3 = 11702 ck3 = 11684 ck3 = 11697 } # Suihua -> FIC_Amur_Ruzhejiang, FIC_Amur_Heyucun, FIC_Amur_Pilutidu, FIC_Amur_Dasenlin, FIC_Amur_Fanlinan, FIC_Amur_Lupingyuan, FIC_Amur_Fancao, FIC_Amur_Erliuyu, FIC_Amur_Cangcao, FIC_Amur_Gonghejiang, FIC_Amur_Yingsenlin, FIC_Amur_Henghetieli + link = { autogenerated = yes imp = 7374 imp = 7371 ck3 = 1166 } # Kusapura, Jamadaganipura -> Jaunpur + link = { autogenerated = yes imp = 9560 ck3 = 11654 ck3 = 11731 ck3 = 11734 ck3 = 11732 ck3 = 11733 } # Baicheng -> Amur_Taizhou, Liao_Taonan, Liao_Chunzhou, Liao_Fengzhou2, Liao_Ningzhou + link = { autogenerated = yes imp = 9558 ck3 = 11651 ck3 = 11652 ck3 = 11653 ck3 = 11658 ck3 = 11659 ck3 = 11660 ck3 = 11655 } # Daqing -> FIC_Amur_Nendadu, FIC_Amur_Jianali, FIC_Amur_Nalidu, FIC_Amur_Jiaruzhe, FIC_Amur_Xuduohubo, FIC_Amur_Dalukou, FIC_Amur_Hongan + link = { autogenerated = yes imp = 5443 ck3 = 1165 } # Chattisgarh Jungle -> Bandhugadha + link = { autogenerated = yes imp = 9557 ck3 = 11647 ck3 = 11648 ck3 = 11657 ck3 = 11666 ck3 = 11667 ck3 = 11650 } # Nanhe -> FIC_Amur_Zhongnenjiang, FIC_Amur_Yalujiang, Jiqin_Hari, FIC_Amur_Nenshuide, FIC_Amur_Nenshidi, FIC_Amur_Jialuotuo + link = { autogenerated = yes imp = 9561 ck3 = 11645 ck3 = 11649 ck3 = 11643 ck3 = 11646 } # Goukou -> FIC_Amur_Jindiaotudi, FIC_Amur_Jinshujiang, FIC_Amur_Gaocaoer, FIC_Amur_Baihetudi + link = { autogenerated = yes imp = 7458 ck3 = 1164 } # Chauragarh -> Chauragarh + link = { autogenerated = yes imp = 4429 ck3 = 1163 } # Varanasi -> Varanasi + link = { autogenerated = yes imp = 9523 ck3 = 11624 ck3 = 11625 } # Daxianbeishan -> FIC_Mong_Khailangol, FIC_Mong_Kharbuir + link = { autogenerated = yes imp = 9521 ck3 = 11621 ck3 = 11622 } # Wuzhu'er -> FIC_Mong_Olanuur, Mong_Pibeihe + link = { autogenerated = yes imp = 4449 imp = 7369 ck3 = 1162 } # Kusinagara, Pipphalivana -> Kusinagara + link = { autogenerated = yes imp = 9724 ck3 = 11618 ck3 = 11619 ck3 = 11620 } # Zadlax -> FIC_Mong_Nyurgol, FIC_Mong_Telburgol, FIC_Mong_Genhegol + link = { autogenerated = yes imp = 9522 ck3 = 11614 ck3 = 11615 ck3 = 11616 ck3 = 11617 ck3 = 11612 ck3 = 11613 ck3 = 11641 ck3 = 11506 } # Taliya -> FIC_Mong_Gaoxuanya, FIC_Mong_Hailarekh, FIC_Mong_Hailargol, FIC_Mong_Gangoluul, FIC_Mong_Ilkuriuul, FIC_Mong_Xiailehuli, FIC_Amur_Xinganling, IMPASSABLE Greater Khingan north 1 + link = { autogenerated = yes imp = 7814 imp = 7813 ck3 = 116 } # Veltaea, Veltaea Australis -> DUVZARE + link = { autogenerated = yes imp = 9722 ck3 = 11597 ck3 = 11599 ck3 = 11600 } # Mayta -> FIC_Mong_Ergunegol, FIC_Mong_Mongotalbai, FIC_Mong_Tomorels + link = { autogenerated = yes imp = 9727 ck3 = 11594 ck3 = 11598 ck3 = 11595 ck3 = 11602 ck3 = 11524 } # Juxura -> FIC_Mong_Khurtskhandii, FIC_Mong_Tazimurekh, FIC_Mong_Khiltsaiz, FIC_Mong_Shankortsol, IMPASSABLE eastern Mongolia desert 3 + link = { autogenerated = yes imp = 9715 ck3 = 11592 ck3 = 11596 } # Jebseg -> FIC_Mong_Shaqiu, FIC_Mong_Nuurkhoid + link = { autogenerated = yes imp = 9708 ck3 = 11590 ck3 = 11593 } # Doxulan -> FIC_Mong_Shargazar, FIC_Mong_Toostoigol + link = { autogenerated = yes imp = 7452 ck3 = 1159 } # Chhindwara -> Ramagiri + link = { autogenerated = yes imp = 9705 ck3 = 11589 ck3 = 11591 ck3 = 11523 } # Dalai -> FIC_Mong_Gantsaardal, FIC_Mong_Elsenurud, IMPASSABLE eastern Mongolia desert 2 + link = { autogenerated = yes imp = 9698 ck3 = 11587 ck3 = 11588 ck3 = 11551 ck3 = 11553 ck3 = 11556 } # Gudam -> FIC_Mong_Nogoontoos, FIC_Mong_Urtolgod, FIC_Mong_Paljigol, FIC_Mong_Chulereg, FIC_Mong_Doodonon + link = { autogenerated = yes imp = 9700 ck3 = 11585 } # Amtan -> FIC_Mong_Khanazuun + link = { autogenerated = yes imp = 9534 ck3 = 11584 } # Buride -> FIC_Mong_Tsagaanuur + link = { autogenerated = yes imp = 9520 ck3 = 11582 ck3 = 11583 } # Choibalsan -> Mong_Hepung, FIC_Mong_Horobot + link = { autogenerated = yes imp = 9695 ck3 = 11580 ck3 = 11586 ck3 = 11550 } # Hasaxu -> FIC_Mong_Khanabaruun, FIC_Mong_Ulajagol, FIC_Mong_Orgilalkham + link = { autogenerated = yes imp = 7142 ck3 = 1158 ck3 = 7901 } # Manyakheta -> Bidar, Gulbarga + link = { autogenerated = yes imp = 9519 ck3 = 11579 ck3 = 11581 } # Khulunbuir -> FIC_Mong_Kurumnuur, Mong_Jiangbian + link = { autogenerated = yes imp = 9315 ck3 = 11577 } # Dovtlox -> FIC_Mong_Beiheisha + link = { autogenerated = yes imp = 9325 ck3 = 11576 } # Zulzaga -> FIC_Mong_Nanchezi + link = { autogenerated = yes imp = 9308 ck3 = 11574 ck3 = 11575 } # Gurvel -> FIC_Mong_Chezier, FIC_Mong_Kharulagai + link = { autogenerated = yes imp = 9309 ck3 = 11573 } # Arzgar -> FIC_Mong_Dongheisha + link = { autogenerated = yes imp = 9524 ck3 = 11570 ck3 = 11571 ck3 = 11572 ck3 = 11626 } # Sumber -> FIC_Mong_Zuunbuir, FIC_Mong_Xisaiyin, FIC_Mong_Jiasaihe, FIC_Mong_Khalkagol + link = { autogenerated = yes imp = 7155 imp = 7079 ck3 = 1157 } # Kaulas, Potana -> Balkonda + link = { autogenerated = yes imp = 9533 ck3 = 11568 ck3 = 11569 ck3 = 11623 } # Hulun -> FIC_Mong_Ulanhulud, FIC_Mong_Nuurkhoorond, FIC_Mong_Oyuhulun + link = { autogenerated = yes imp = 9324 ck3 = 11566 ck3 = 11567 ck3 = 11578 } # Zurgaa -> FIC_Mong_Khosoonuud, FIC_Mong_Tulanhara, FIC_Mong_Khargobi + link = { autogenerated = yes imp = 9525 ck3 = 11563 ck3 = 11564 ck3 = 11565 } # Azakhachi -> FIC_Mong_Tapsunuur, FIC_Mong_Zovkerulen, FIC_Mong_Kurnuur + link = { autogenerated = yes imp = 9674 ck3 = 11561 ck3 = 11562 } # Bulcirxaj -> FIC_Mong_Kanchuku, FIC_Mong_Usguitalbai + link = { autogenerated = yes imp = 11511 imp = 7100 ck3 = 1156 } # Kamalanga, Mahdnada -> Kodalaka + link = { autogenerated = yes imp = 12722 ck3 = 11559 } # Tenri -> FIC_Mong_Kukuchol + link = { autogenerated = yes imp = 9725 ck3 = 11555 ck3 = 11557 ck3 = 11558 } # Boxelji -> FIC_Mong_Kharbelcheer, FIC_Mong_Zatalbar, FIC_Mong_Khoyorgol + link = { autogenerated = yes imp = 7096 ck3 = 1155 ck3 = 1160 } # Kosala -> Sripuri, Rayapura + link = { autogenerated = yes imp = 9687 ck3 = 11546 ck3 = 11549 } # Galjaxu -> FIC_Mong_Kyursugol, FIC_Mong_Ononum + link = { autogenerated = yes imp = 9678 ck3 = 11545 ck3 = 11560 } # Doligen -> FIC_Mong_Karepuri, FIC_Mong_Hinkanalin + link = { autogenerated = yes imp = 12723 ck3 = 11542 ck3 = 11543 ck3 = 11544 } # Tuman -> FIC_Mong_Tarhanalin, FIC_Mong_Ichar_Ekin, FIC_Mong_Tarkhaidam + link = { autogenerated = yes imp = 9487 ck3 = 11540 ck3 = 11541 ck3 = 11522 } # Gonglu -> FIC_Mong_Semkut, FIC_Mong_Tarkilechi, IMPASSABLE eastern Mongolia desert 1 + link = { autogenerated = yes imp = 4442 ck3 = 1154 } # Nalanda -> Pataliputra + link = { autogenerated = yes imp = 9684 ck3 = 11538 ck3 = 11547 } # Eljigen -> FIC_Mong_Olongoluud, FIC_Mong_Ononekh + link = { autogenerated = yes imp = 9679 ck3 = 11537 ck3 = 11539 } # Barix -> FIC_Mong_Ulaondor, FIC_Mong_Dutulunels + link = { autogenerated = yes imp = 12724 ck3 = 11536 } # Kiril -> FIC_Mong_Olokuialin + link = { autogenerated = yes imp = 9485 ck3 = 11533 ck3 = 11534 ck3 = 11535 } # Bayanjargalan -> FIC_Mong_Ulyntsana, FIC_Mong_Herulun, FIC_Mong_Payenula + link = { autogenerated = yes imp = 12713 ck3 = 11532 } # Kapuk -> FIC_Mong_Chusolalin + link = { autogenerated = yes imp = 12714 imp = 12715 ck3 = 11531 } # Topik, Keru -> FIC_Mong_Elskhol + link = { autogenerated = yes imp = 12712 ck3 = 11530 } # Urluk -> FIC_Mong_Ulantolgod + link = { autogenerated = yes imp = 7335 imp = 7650 ck3 = 1153 } # Souannagoura, Itahar -> Kotivarsa + link = { autogenerated = yes imp = 9486 imp = 9484 ck3 = 11529 } # Baganuur, Langjuxu -> Mong_Zhen + link = { autogenerated = yes imp = 11191 ck3 = 11528 } # LAKE -> LAKE Khanka + link = { autogenerated = yes imp = 11183 imp = 11184 imp = 11186 ck3 = 11527 } # Hulun, Buir, LAKE -> LAKES eastern Mongolia + link = { autogenerated = yes imp = 7400 ck3 = 1152 ck3 = 870 } # Jayapura -> Mudgagiri, Bihar_Sharif + link = { autogenerated = yes imp = 7497 ck3 = 1151 ck3 = 839 } # Puthia -> Laksmanavati, Rampur_Boalia + link = { autogenerated = yes imp = 7304 imp = 7433 ck3 = 1150 } # Bhojapuri, Binnayaga -> Sarangpur + link = { autogenerated = yes imp = 7810 ck3 = 115 ck3 = 126 } # Turuntia Australis -> PALANGA, MEDENIKEN + link = { autogenerated = yes imp = 9414 ck3 = 11483 ck3 = 11482 ck3 = 12541 } # Liao -> Chiang Tong / Zhengdong, Moeng Long, Muang Sing + link = { autogenerated = yes imp = 4498 imp = 4479 imp = 7427 imp = 7429 ck3 = 1148 } # Dhammanahadika, Dasapura, Banswara, Pratapgarh -> Dasapura + link = { autogenerated = yes imp = 8947 ck3 = 11478 } # Xisui -> Muze + link = { autogenerated = yes imp = 8925 ck3 = 11477 ck3 = 13267 } # Bengu -> Nalou, (Unknown) + link = { autogenerated = yes imp = 8922 ck3 = 11475 } # Wei -> Shicheng + link = { autogenerated = yes imp = 9621 imp = 9619 imp = 9620 ck3 = 11474 } # Jianling, Qinzang, Lianran -> Wenfuzhou + link = { autogenerated = yes imp = 8952 ck3 = 11473 ck3 = 11480 ck3 = 11481 ck3 = 10991 ck3 = 12876 } # Ailao -> Kokang, Bumangdian, Nandian, Nujiang_Lisu, Yunnan Range + link = { autogenerated = yes imp = 7426 ck3 = 1147 ck3 = 1149 } # Dhar -> Mandapika, Dhara + link = { autogenerated = yes imp = 10996 ck3 = 11463 } # Nam Ngum -> Borikham + link = { autogenerated = yes imp = 10997 ck3 = 11462 } # Thaviang -> Hinboun + link = { autogenerated = yes imp = 10998 ck3 = 11466 } # Bueng Kan -> Ban_Nathan + link = { autogenerated = yes imp = 10966 ck3 = 11461 } # Meteuk -> Kum_Pak_Khlang + link = { autogenerated = yes imp = 7098 ck3 = 1146 } # Askapala -> Naldurg + link = { autogenerated = yes imp = 11077 imp = 9839 ck3 = 11452 } # Shweli, Impassable -> Mongmit + link = { autogenerated = yes imp = 7065 imp = 7159 ck3 = 1145 } # Ajanta, Devagiri -> Devagiri + link = { autogenerated = yes imp = 11101 ck3 = 11448 } # Nann -> Phrae + link = { autogenerated = yes imp = 10983 ck3 = 11443 } # Lam Pao -> Ku_Kaeo + link = { autogenerated = yes imp = 10987 ck3 = 11442 ck3 = 12512 } # Huai Yang -> Nakhon_Ratchasima, Canasapura + link = { autogenerated = yes imp = 11105 ck3 = 11441 ck3 = 11495 ck3 = 11447 ck3 = 11450 ck3 = 11497 } # Lamphun -> Lamphun, Chom Thong, Mueang Tak, Chiang_Mai, Hot + link = { autogenerated = yes imp = 7148 ck3 = 1144 ck3 = 1257 } # Kollipake -> Kollipake, Medak + link = { autogenerated = yes imp = 10972 ck3 = 11438 } # Sra Ngue -> Krung_Poi_Pet + link = { autogenerated = yes imp = 9808 ck3 = 11437 } # Dvaravati -> THAI_Phetchaburi + link = { autogenerated = yes imp = 9809 ck3 = 11436 } # Baitou -> THAI_Na_Rang + link = { autogenerated = yes imp = 11016 ck3 = 11434 } # Khao Sam Kaeo -> THAI_Chumpon + link = { autogenerated = yes imp = 9806 imp = 9805 ck3 = 11433 } # Tenasserim, Kanmaw -> THAI_Mergui + link = { autogenerated = yes imp = 9807 ck3 = 11432 } # Palon -> THAI_Tenasserim + link = { autogenerated = yes imp = 11017 ck3 = 11430 ck3 = 11431 } # Phu Khao Thong -> THAI_Ranang, THAI_Kra_Buri + link = { autogenerated = yes imp = 7143 ck3 = 1143 } # Kalyani Asika -> Kalyani + link = { autogenerated = yes imp = 11020 imp = 11021 imp = 9851 ck3 = 11428 } # Khuan Lukpad, Talat Yai, Impassable -> THAI_Takua_Pa + link = { autogenerated = yes imp = 11023 ck3 = 11427 } # Trang -> THAI_Gerbi + link = { autogenerated = yes imp = 11022 ck3 = 11426 } # Ta Pi -> THAI_Trang + link = { autogenerated = yes imp = 11019 ck3 = 11425 ck3 = 11429 } # Tha Chana -> THAI_Kanchanadit, THAI_Chaiya + link = { autogenerated = yes imp = 11024 ck3 = 11424 } # Nang Riam -> THAI_Ligor + link = { autogenerated = yes imp = 11025 ck3 = 11423 } # Songkhla -> THAI_Mardelang + link = { autogenerated = yes imp = 11031 imp = 11037 ck3 = 11422 } # Klang, Muar -> MAL_Sungei_Ujong + link = { autogenerated = yes imp = 11030 ck3 = 11420 ck3 = 11421 } # Beruas -> MAL_Beruas, MAL_Kelang + link = { autogenerated = yes imp = 7063 imp = 7161 ck3 = 1142 } # Atathana, Darur -> Pratishthana + link = { autogenerated = yes imp = 11027 ck3 = 11419 ck3 = 11418 } # Sungai Batu -> MAL_Bukit_Batu_Pahat, MAL_Bujang + link = { autogenerated = yes imp = 11026 ck3 = 11416 ck3 = 11417 } # Satun -> MAL_Terang, MAL_Kedah + link = { autogenerated = yes imp = 11028 ck3 = 11414 ck3 = 11415 } # Pattani -> MAL_Patani, MAL_Saiburi + link = { autogenerated = yes imp = 11029 ck3 = 11410 ck3 = 11412 ck3 = 11413 ck3 = 11391 } # Kelantan -> MAL_Tinggano, MAL_Kelantan, MAL_Menara, IMPASSABLE Malay Peninsula mountains 2 + link = { autogenerated = yes imp = 4423 ck3 = 1141 } # Soreyya -> Kol + link = { autogenerated = yes imp = 11034 ck3 = 11409 } # Lipis -> MAL_Saimwang + link = { autogenerated = yes imp = 11032 ck3 = 11406 ck3 = 11411 } # Terengganu -> MAL_Pekan, MAL_Dungun + link = { autogenerated = yes imp = 11033 ck3 = 11405 } # Pahang -> MAL_Kiuli + link = { autogenerated = yes imp = 11035 ck3 = 11404 ck3 = 11408 ck3 = 11407 } # Temerloh -> MAL_Segamat, MAL_Semantan, MAL_Inderapura + link = { autogenerated = yes imp = 11038 ck3 = 11401 ck3 = 11402 ck3 = 11403 } # Kluang -> MAL_Kundur, MAL_Gelanggi, MAL_Muar + link = { autogenerated = yes imp = 7088 ck3 = 1140 ck3 = 7873 } # Akkilur -> Banavasi, Hangal + link = { autogenerated = yes imp = 7815 ck3 = 114 } # Veltaea Borealis -> GROBIN + link = { autogenerated = yes imp = 7410 ck3 = 1139 } # Kora Pancala -> Musanagar + link = { autogenerated = yes imp = 4364 ck3 = 1138 ck3 = 1371 } # Oumbrai -> Bhakkar, Larkana + link = { autogenerated = yes imp = 4358 ck3 = 1137 } # Singhi -> Mansura + link = { autogenerated = yes imp = 6813 ck3 = 1136 ck3 = 3353 } # Dvaraka -> Dvaraka, Bhanvad + link = { autogenerated = yes imp = 6836 ck3 = 1135 ck3 = 3367 } # Dhanduka -> Valabhi, Dhandhuka + link = { autogenerated = yes imp = 6818 ck3 = 1134 } # Girinagara -> Vamanasthali + link = { autogenerated = yes imp = 4493 ck3 = 1133 ck3 = 3378 } # Akota -> Vadodara, Darbhavati + link = { autogenerated = yes imp = 12447 ck3 = 1132 } # Tawoi -> Kirghiz + link = { autogenerated = yes imp = 11050 ck3 = 11317 ck3 = 11318 ck3 = 11319 } # Barus -> (Unknown), SUM_Barus, SUM_Singkil + link = { autogenerated = yes imp = 11042 ck3 = 11315 ck3 = 11316 } # Pariaman -> SUM_Padang, SUM_Tiku + link = { autogenerated = yes imp = 7332 ck3 = 1131 ck3 = 832 } # Salariga -> Karmanta, Mainamati + link = { autogenerated = yes imp = 7812 ck3 = 113 } # Turuntia Borealis -> BANDAVA + link = { autogenerated = yes imp = 7170 imp = 7173 ck3 = 1129 } # Magaris Kalinga, Caritra -> Kataka + link = { autogenerated = yes imp = 11061 ck3 = 11284 ck3 = 11239 } # Singkarak -> SUM_Pagaruyung, IMPASSABLE Sumatra mountains 4 + link = { autogenerated = yes imp = 11060 ck3 = 11282 ck3 = 11283 ck3 = 11285 ck3 = 11286 ck3 = 11241 } # Batang Hari -> SUM_Indragiri, SUM_Kuntu, SUM_Dharmasraya, SUM_Gudahiri, IMPASSABLE Sumatra mountains 6 + link = { autogenerated = yes imp = 11039 ck3 = 11280 ck3 = 11281 ck3 = 11287 } # Kampar -> SUM_Karitang, SUM_Rengat, SUM_Kuala_Kuantan + link = { autogenerated = yes imp = 7083 ck3 = 1128 ck3 = 1226 } # Sankaram -> Vizagipatam, Nandapur + link = { autogenerated = yes imp = 11036 ck3 = 11277 ck3 = 11397 ck3 = 11398 ck3 = 11399 ck3 = 11400 } # Kota Gelanggi -> SUM_Tanjungpinang, MAL_Tumasik, MAL_Johor, MAL_Penawar, MAL_Endau + link = { autogenerated = yes imp = 11056 ck3 = 11272 ck3 = 11273 ck3 = 11274 ck3 = 11275 ck3 = 11276 } # Siak -> SUM_Kampar, SUM_Siak, SUM_Suir, SUM_Selat_Panjang, SUM_Boron + link = { autogenerated = yes imp = 11041 ck3 = 11270 ck3 = 11271 } # Muara Takus -> SUM_Muara_Takus, SUM_Kahwas + link = { autogenerated = yes imp = 6859 ck3 = 1127 } # Barygaza -> Akruresvara + link = { autogenerated = yes imp = 11040 ck3 = 11268 ck3 = 11269 } # Riau -> SUM_Bengkalis, SUM_Pekanbaru + link = { autogenerated = yes imp = 11052 ck3 = 11264 ck3 = 11265 } # Bahal -> SUM_Bahal, SUM_Rokan_Hilir + link = { autogenerated = yes imp = 11045 ck3 = 11263 ck3 = 11266 ck3 = 11267 } # Panai -> SUM_Panai, SUM_Kalowang, SUM_Rokan + link = { autogenerated = yes imp = 6864 ck3 = 1126 ck3 = 3384 } # Polipoula -> Daman, Sanjan + link = { autogenerated = yes imp = 11051 ck3 = 11262 } # Toba -> SUM_Tanjung + link = { autogenerated = yes imp = 11046 ck3 = 11259 ck3 = 11260 ck3 = 11261 } # Aru -> SUM_Medan, SUM_Aru, SUM_Kemang + link = { autogenerated = yes imp = 11047 ck3 = 11255 ck3 = 11256 ck3 = 11257 ck3 = 11258 } # Gayo -> SUM_Samudra, SUM_Pasai, SUM_Perlak, SUM_Tamiang + link = { autogenerated = yes imp = 11048 ck3 = 11254 } # Lamuri -> SUM_Lamuri + link = { autogenerated = yes imp = 11049 ck3 = 11253 ck3 = 11320 ck3 = 11321 } # Meulaboh -> SUM_Barat, SUM_Tripa, SUM_Calang + link = { autogenerated = yes imp = 11044 ck3 = 11251 ck3 = 11252 } # Nias -> Simeulue, Nias + link = { autogenerated = yes imp = 6868 ck3 = 1125 } # Surparaka -> Thana + link = { autogenerated = yes imp = 11055 ck3 = 11248 ck3 = 12848 ck3 = 1468 } # Andaman -> Nakkavaram/Nicobar, Diglipur, Onge + link = { autogenerated = yes imp = 6884 imp = 6887 ck3 = 1124 } # Chersonesos Vanavasi, Pira -> Honnore + link = { autogenerated = yes imp = 7045 ck3 = 1123 } # Alluru -> Vengipura + link = { autogenerated = yes imp = 7003 imp = 7012 ck3 = 1122 } # Kottis, Palakka -> Udayagiri + link = { autogenerated = yes imp = 7037 imp = 7020 imp = 7073 ck3 = 1121 } # Chitradurga, Isila, Siddapura -> Uchangidurga + link = { autogenerated = yes imp = 6989 imp = 6990 ck3 = 1120 } # Tagadur, Ricavatta -> Tagadur + link = { autogenerated = yes imp = 7817 ck3 = 112 } # Carbonia -> KANDAVA + link = { autogenerated = yes imp = 6999 ck3 = 1119 } # Mayurasattapattinam -> Kanchipuram + link = { autogenerated = yes imp = 7030 ck3 = 1118 ck3 = 1196 } # Mahisha -> Manyapura, Srirangapatna + link = { autogenerated = yes imp = 6890 imp = 5309 ck3 = 1117 } # Naura, IP 310 -> Qalqut + link = { autogenerated = yes imp = 6929 imp = 6924 imp = 6931 imp = 6932 ck3 = 1115 } # Venni, Karukka, Nikama, Koroula -> Cholamandalam + link = { autogenerated = yes imp = 6894 imp = 6906 ck3 = 1114 } # Koreoura, Eyyal -> Mahoyadapuram + link = { autogenerated = yes imp = 7376 ck3 = 1113 ck3 = 1283 } # Asani -> Kara, Asni + link = { autogenerated = yes imp = 6917 imp = 6919 ck3 = 1112 } # Madurai, Tangala -> Madurai + link = { autogenerated = yes imp = 2617 imp = 2595 imp = 2619 ck3 = 1111 } # Mare Aegaeum, Mare Icarium, Mare Aegaeum -> Aegean Sea + link = { autogenerated = yes imp = 2507 imp = 2515 ck3 = 1110 } # Sinus Veneticus, Sinus Veneticus -> Gulf of Venice + link = { autogenerated = yes imp = 7811 ck3 = 111 } # Turuntia -> CEKLIS + link = { autogenerated = yes imp = 9430 ck3 = 11093 ck3 = 10926 } # Giao Giang -> Nhan, Phu_Bon + link = { autogenerated = yes imp = 2541 imp = 2529 imp = 2537 imp = 2538 imp = 2542 imp = 6359 ck3 = 1109 } # Mare Superum, Mare Superum, Mare Superum, Mare Superum, Mare Superum, LAKE -> Adriatic Sea + link = { autogenerated = yes imp = 12868 imp = 12867 ck3 = 1105 } # Rha, Rha -> Volga River + link = { autogenerated = yes imp = 11096 ck3 = 11041 ck3 = 11043 ck3 = 11044 } # Palawan -> PHI_Jamayan, PHI_Taytay, PHI_Tagbanwa + link = { autogenerated = yes imp = 12875 ck3 = 1104 ck3 = 8575 } # Galinda -> Oka River, Oka River + link = { autogenerated = yes imp = 11095 ck3 = 11037 ck3 = 11038 ck3 = 11039 ck3 = 11040 ck3 = 12497 } # Baco -> PHI_Pinamalayan, PHI_Mamburao, PHI_Dongon, PHI_Bongabong, IMPASSABLE Philippines Mindoro Mountains 1 + link = { autogenerated = yes imp = 11099 ck3 = 11036 ck3 = 11064 ck3 = 11062 ck3 = 11063 } # Masbate -> PHI_Donblon, PHI_Akean, PHI_Irong_Irong, PHI_Hamtik + link = { autogenerated = yes imp = 11559 imp = 12858 ck3 = 1103 } # Rha, Rha -> Volga River + link = { autogenerated = yes imp = 11098 ck3 = 11029 ck3 = 11030 ck3 = 11032 ck3 = 11035 } # Sorsogon -> PHI_Ibat, PHI_Sorsogon, PHI_Katanduan, PHI_Masbate + link = { autogenerated = yes imp = 11097 ck3 = 11027 ck3 = 11028 ck3 = 11034 } # Ragay -> PHI_Daet, PHI_Ibalon, PHI_Ticao + link = { autogenerated = yes imp = 11093 ck3 = 11024 ck3 = 11025 } # Balayan -> PHI_Maynila, PHI_Batangan + link = { autogenerated = yes imp = 11094 ck3 = 11023 ck3 = 11026 ck3 = 11031 ck3 = 11033 } # Pagbilao -> PHI_Pilila, PHI_Bondoc, PHI_Pulilu, PHI_Malindig + link = { autogenerated = yes imp = 11089 ck3 = 11021 } # Tondo -> PHI_Tondo + link = { autogenerated = yes imp = 11088 ck3 = 11020 } # Subic -> PHI_Kapampangan + link = { autogenerated = yes imp = 12872 imp = 12873 ck3 = 1102 } # Galinda, Galinda -> Oka River + link = { autogenerated = yes imp = 11090 ck3 = 11017 ck3 = 11018 } # Tarlac -> PHI_Pantabagan, PHI_Sambala + link = { autogenerated = yes imp = 11092 ck3 = 11016 ck3 = 11022 } # Dingalan -> PHI_Palana, PHI_Binangonan + link = { autogenerated = yes imp = 11085 ck3 = 11013 ck3 = 11014 } # Banaue -> PHI_Kirino, PHI_Benguet + link = { autogenerated = yes imp = 11091 ck3 = 11011 ck3 = 11012 ck3 = 11015 ck3 = 12493 } # Palanan -> PHI_Cagayan, PHI_Ilongot, PHI_Tagalao, IMPASSABLE Philippines Luzon Mountains 5 + link = { autogenerated = yes imp = 11084 ck3 = 11008 ck3 = 11010 } # Tabuk -> PHI_Apayo, PHI_Kalinga + link = { autogenerated = yes imp = 11087 ck3 = 11006 ck3 = 11019 ck3 = 12491 } # Lingayen -> PHI_Binalatongan, PHI_Bolinao, IMPASSABLE Philippines Luzon Mountains 3 + link = { autogenerated = yes imp = 11086 ck3 = 11003 ck3 = 11004 ck3 = 11005 } # Lagben -> PHI_Nagparitan, PHI_Bigan, PHI_Kandong + link = { autogenerated = yes imp = 11083 ck3 = 11001 ck3 = 11002 ck3 = 11007 ck3 = 11009 ck3 = 12489 } # Nagsabaran -> PHI_Babuyan, PHI_Calayan, PHI_Aparri, PHI_Engano, IMPASSABLE Philippines Luzon Mountains 1 + link = { autogenerated = yes imp = 7816 ck3 = 110 ck3 = 117 } # Carbonia Occidentalis -> PILTENE, DUNDAGA + link = { autogenerated = yes imp = 2174 ck3 = 11 } # Robogdia Occidentalis -> FAHAN + link = { autogenerated = yes imp = 9799 imp = 9804 ck3 = 10997 } # Luyu, Yilumo -> Ye + link = { autogenerated = yes imp = 9803 ck3 = 10996 } # Tavoy -> Dawei + link = { autogenerated = yes imp = 9798 ck3 = 10995 ck3 = 9629 ck3 = 10964 ck3 = 11449 } # Martaban -> Thanbyuzayat, Mawlamyine, Mae_Sot, Hlaingbwe + link = { autogenerated = yes imp = 9812 imp = 10975 ck3 = 10994 } # Lavo, Chaibadan -> Pathum_Thani + link = { autogenerated = yes imp = 9818 ck3 = 10992 ck3 = 10993 } # Kuala Dungun -> Chachoengsoo, Sa_Kaeo + link = { autogenerated = yes imp = 12874 ck3 = 1099 } # Galinda -> Oka River + link = { autogenerated = yes imp = 9405 ck3 = 10985 ck3 = 10986 ck3 = 10987 } # Piao -> Mogaung, Shwegu, Momauk + link = { autogenerated = yes imp = 9404 ck3 = 10984 ck3 = 10983 } # Danai -> Danai, Hpakant + link = { autogenerated = yes imp = 8955 ck3 = 10980 ck3 = 10981 ck3 = 10988 ck3 = 10989 ck3 = 10990 } # Pu -> Sawlaw, Sumpra_Bum, Waingmaw, Myitkyina, Chihpwi + link = { autogenerated = yes imp = 12865 ck3 = 1098 } # Rha -> Volga River + link = { autogenerated = yes imp = 9403 ck3 = 10977 ck3 = 10979 ck3 = 10978 } # Kharjo -> Nongmun, Putao, Hkawlanghu + link = { autogenerated = yes imp = 11079 ck3 = 10976 ck3 = 11486 } # Lashio -> Hsenwi, Hsenwi_South + link = { autogenerated = yes imp = 11078 ck3 = 10975 ck3 = 10974 } # Thanlyin -> Hsipaw, Mongkung + link = { autogenerated = yes imp = 12864 ck3 = 1097 } # Rha -> Volga River + link = { autogenerated = yes imp = 10978 ck3 = 10968 } # Sing Buri -> Chai_Nat + link = { autogenerated = yes imp = 11106 ck3 = 10962 } # Phrae -> Chiang Klang + link = { autogenerated = yes imp = 10981 ck3 = 10961 ck3 = 12504 ck3 = 12857 } # Phi -> Sukhothai, Chakangrao, Ban Lan + link = { autogenerated = yes imp = 12862 imp = 12861 ck3 = 1096 } # Rha, Rha -> Volga River + link = { autogenerated = yes imp = 10993 ck3 = 10959 ck3 = 10998 ck3 = 11444 } # Non Nok That -> Nong_Bua_Lam_Phu, Chaiyaphum, Nong_Bua + link = { autogenerated = yes imp = 10988 ck3 = 10957 ck3 = 10958 } # Kaeng Lawa -> Maha_Sarakham, Khon_Kaen + link = { autogenerated = yes imp = 10979 ck3 = 10955 ck3 = 10969 ck3 = 12851 } # Om Pang -> Kamphaeng_Phet, Uthai_Thani, Thap Chumphon + link = { autogenerated = yes imp = 10980 ck3 = 10954 ck3 = 10953 } # Phichit -> Phichit, Phitsanulok/Bishnuloka + link = { autogenerated = yes imp = 11104 ck3 = 10952 ck3 = 12853 } # Lampang -> Lampang, Khun Tan Range + link = { autogenerated = yes imp = 10967 ck3 = 10951 } # Trat -> Trat + link = { autogenerated = yes imp = 9811 ck3 = 10950 } # Svarnabhumi Bay -> Bangkok + link = { autogenerated = yes imp = 12860 ck3 = 1095 ck3 = 8582 } # Rha -> Volga River, Volga River + link = { autogenerated = yes imp = 11002 ck3 = 10949 ck3 = 11459 } # Xe Champhone -> Pakse, Attapeu + link = { autogenerated = yes imp = 11009 ck3 = 10948 ck3 = 11440 } # Nong Han -> Mouang_Camphon, Sanasomboon + link = { autogenerated = yes imp = 10992 ck3 = 10947 } # Phaniang -> Nong_Khai + link = { autogenerated = yes imp = 10994 ck3 = 10944 ck3 = 10945 ck3 = 12503 } # Petchabun -> Loei, Muang Thong, Sainyabuli + link = { autogenerated = yes imp = 10990 imp = 10982 ck3 = 10943 } # Buri Ram, Ban Lum Khao -> Surin + link = { autogenerated = yes imp = 11008 ck3 = 10940 ck3 = 11439 ck3 = 11498 } # Se Bai -> Ubon_Ratchathani, Phon_Sai, Ubon_Ratchathani_Northwest + link = { autogenerated = yes imp = 11557 imp = 11558 ck3 = 1094 } # Rha, Rha -> Volga River + link = { autogenerated = yes imp = 10984 ck3 = 10938 ck3 = 10939 ck3 = 10941 } # Ban Chiang -> Sakhon_Nakhon, Bueng_Kan, Mukdahan + link = { autogenerated = yes imp = 10989 ck3 = 10937 } # Ratchasima -> Nakhon_Ratschasima + link = { autogenerated = yes imp = 9817 ck3 = 10935 } # Nong Nor -> Chon_Buri + link = { autogenerated = yes imp = 9816 ck3 = 10934 } # Canban -> Rayong + link = { autogenerated = yes imp = 9823 imp = 9824 ck3 = 10933 } # Phumi Koul, Chenla -> Rovieng + link = { autogenerated = yes imp = 11014 ck3 = 10931 ck3 = 10999 } # Song Sesan -> Ratanakiri, Plei_Doch + link = { autogenerated = yes imp = 10720 ck3 = 1093 } # $PROV8047$ -> Volga River + link = { autogenerated = yes imp = 11015 ck3 = 10929 ck3 = 11000 } # Dei-ey -> Mondulkiri, Ea_Sup + link = { autogenerated = yes imp = 9827 ck3 = 10928 } # Chambak -> Kampong_Chhnang + link = { autogenerated = yes imp = 9820 ck3 = 10927 } # Tonle Sap -> Pursat + link = { autogenerated = yes imp = 9832 ck3 = 10922 ck3 = 10923 ck3 = 10930 } # Go Thap -> Kien_Phong, Dinh_Tuong, Svay_Rieng + link = { autogenerated = yes imp = 9836 ck3 = 10920 ck3 = 10921 } # Giong Ca Vo -> Phuoc_Tuy, Binh_Tuy + link = { autogenerated = yes imp = 8048 imp = 10721 imp = 8049 ck3 = 1092 } # Rha, $PROV8047$, Rha -> Volga River + link = { autogenerated = yes imp = 11011 ck3 = 10919 } # Tay Ninh -> Tay_Ninh + link = { autogenerated = yes imp = 11012 ck3 = 10918 ck3 = 10924 } # Dong Nai -> Xuan_Loc, Binh_Long + link = { autogenerated = yes imp = 9834 ck3 = 10914 ck3 = 10915 ck3 = 10916 } # Ham Luong -> Binh_Dai, Ba_Tri, Thanh_Phu + link = { autogenerated = yes imp = 9835 ck3 = 10913 } # Song Hau -> Soc_Trang + link = { autogenerated = yes imp = 10962 ck3 = 10912 } # Ca Mau -> Ca_Mau + link = { autogenerated = yes imp = 9810 ck3 = 10911 } # Pathama -> Nakhon_Pathom + link = { autogenerated = yes imp = 10976 ck3 = 10910 ck3 = 10956 } # Kok Charoen -> Sri_Thep, Phetchabun + link = { autogenerated = yes imp = 11555 imp = 11556 ck3 = 1091 } # Tanais, Tanais -> Don River + link = { autogenerated = yes imp = 11007 imp = 9845 ck3 = 10909 } # Kalasin, Impassable -> Muang_Fa_Daet + link = { autogenerated = yes imp = 11005 ck3 = 10908 } # Stoeng Sen -> Koh_Ker + link = { autogenerated = yes imp = 8943 imp = 8945 imp = 8946 ck3 = 10907 } # Wanwen, Dumeng, Jinsang -> Zuining_Ayue + link = { autogenerated = yes imp = 9410 ck3 = 10904 ck3 = 10906 ck3 = 11476 ck3 = 11488 ck3 = 10905 } # Laoshui -> Weichu_Buri, Weichu_Yinyuan, Xuchu, Weichu_North, Weichu_Luopan + link = { autogenerated = yes imp = 8916 ck3 = 10901 } # Buwei -> Yongchang_Yongchang + link = { autogenerated = yes imp = 10367 imp = 10366 imp = 8044 imp = 8045 imp = 8046 ck3 = 1090 } # $PROV8042$, $PROV8042$, Tanais, Tanais, Tanais -> Don River + link = { autogenerated = yes imp = 11107 ck3 = 10898 ck3 = 12856 ck3 = 10896 } # Huamereng -> Jinglong_Lanna, Phrao, Mong Hang + link = { autogenerated = yes imp = 8953 ck3 = 10897 ck3 = 10899 ck3 = 10900 ck3 = 12544 ck3 = 12875 } # Yongshou -> Wa, Yongchang_Shengxiang, Yongchang_Qingdian, Lincang, Yunnan Range + link = { autogenerated = yes imp = 8954 ck3 = 10892 ck3 = 10894 ck3 = 10902 ck3 = 12540 ck3 = 11329 } # Nanfu -> Moeng Hing, Chiang Rung, Weichu_Buteng, Chiang Coeng, Mong Yang + link = { autogenerated = yes imp = 8923 ck3 = 10891 } # Wuzhuo -> Xiushan_Xiushan + link = { autogenerated = yes imp = 8926 ck3 = 10889 ck3 = 10890 ck3 = 11491 } # Laiwei -> Xiushan_Mengpeng, Xiushan_Qixi, Sam_Nuea_North + link = { autogenerated = yes imp = 8903 ck3 = 10888 ck3 = 10875 ck3 = 9320 ck3 = 9322 } # Suijiu -> Shanju_Luogang, (Unknown), Dabba_Tibet, Takchongrong + link = { autogenerated = yes imp = 8905 ck3 = 10887 ck3 = 10884 } # Daji -> Shanju_Luobang, Shanju_Xiangcheng + link = { autogenerated = yes imp = 8902 ck3 = 10885 ck3 = 10886 ck3 = 11454 } # Dingji -> Shanju_Ruku, Shanju_Dalan, Muli + link = { autogenerated = yes imp = 8898 imp = 8899 imp = 9616 imp = 8909 ck3 = 10881 } # Jiqin, Taideng, Sushi, Zuo Mountains -> Jianchang_Luolan + link = { autogenerated = yes imp = 8901 ck3 = 10880 ck3 = 13060 ck3 = 13242 } # Beishui -> Jianchang_Adu, Poyan South, (Unknown) + link = { autogenerated = yes imp = 8895 ck3 = 10877 ck3 = 10883 } # Qiongdu -> Jianchang_Mukui, Jianchang_Qu + link = { autogenerated = yes imp = 8904 ck3 = 10874 } # Gufu -> Shanju_Chengji + link = { autogenerated = yes imp = 9618 imp = 8914 ck3 = 10873 } # Guchang, Dianchi -> Shanchan_Shanchan + link = { autogenerated = yes imp = 8892 ck3 = 10872 ck3 = 13254 } # Tanglang -> Dongchuan_Yuepan, (Unknown) + link = { autogenerated = yes imp = 8915 ck3 = 10870 ck3 = 10876 } # Bisu -> Dali_Yunlong, Moutong_Lanxi + link = { autogenerated = yes imp = 12851 ck3 = 1087 } # Velho -> Lovat River + link = { autogenerated = yes imp = 8917 ck3 = 10869 ck3 = 12863 } # Yeyu -> Dali_Dali, Heqing + link = { autogenerated = yes imp = 8906 ck3 = 10868 ck3 = 10871 ck3 = 11487 } # Huiwu -> Huichuan_Fawaina, Huichuan_Puto, Luowu + link = { autogenerated = yes imp = 8907 ck3 = 10866 ck3 = 10867 } # Sanfeng -> Nongdong_North, Weichu_Huazhu + link = { autogenerated = yes imp = 8908 ck3 = 10865 } # Qingling -> Nongdong_Nongdong + link = { autogenerated = yes imp = 9412 ck3 = 10864 ck3 = 10903 ck3 = 11470 ck3 = 11471 ck3 = 12874 } # Lancang -> Weichu_Weiyuan, Weichu_Luotuo, Gengma, Moeng Cae, Yunnan Range + link = { autogenerated = yes imp = 8919 imp = 8920 imp = 8929 ck3 = 10863 } # Nongdong, Shuangbai, Nanzhong Mountains -> Weichu_Elu + link = { autogenerated = yes imp = 9199 ck3 = 10862 ck3 = 11500 ck3 = 12508 ck3 = 11445 } # Xom Ren -> Chau_Phong, Son_La_West, Zuining_Ayue_2, Son_La + link = { autogenerated = yes imp = 9195 ck3 = 10860 } # Cau Lau -> Quoc_Oai + link = { autogenerated = yes imp = 12849 ck3 = 1086 } # Velho -> Lake Ilmen + link = { autogenerated = yes imp = 9189 ck3 = 10857 } # Long Bien -> Ha_Bac + link = { autogenerated = yes imp = 9196 imp = 9420 ck3 = 10856 } # Me Linh, Impassable -> Phu_Luong + link = { autogenerated = yes imp = 9417 ck3 = 10855 ck3 = 10859 ck3 = 11499 ck3 = 10853 } # Pushui -> Lam_Tay, Tam_Giang, Vi_Long_West, Vi_Long + link = { autogenerated = yes imp = 9179 ck3 = 10850 ck3 = 9845 ck3 = 10851 } # Yongji -> Nung, Lingnan_Siming_Silingzhou, Quang_Nguyen + link = { autogenerated = yes imp = 12847 ck3 = 1085 } # Velho -> Volkhov River + link = { autogenerated = yes imp = 9418 ck3 = 10848 ck3 = 10849 } # Yongji -> Lan_Song, Van + link = { autogenerated = yes imp = 9419 imp = 9423 ck3 = 10847 } # Haiping, Impassable -> Hai_Dong + link = { autogenerated = yes imp = 9191 ck3 = 10843 ck3 = 10844 ck3 = 10845 ck3 = 10846 } # Khuc Duong -> Nam_Dinh, Long_Hung, Kien_Xuong, Tan_Hung + link = { autogenerated = yes imp = 9193 ck3 = 10842 } # An Dinh -> Truong_Yen + link = { autogenerated = yes imp = 9203 imp = 9202 imp = 9204 ck3 = 10841 } # Du Phat, Do Bang, Vo Cong -> Thanh_Hoa + link = { autogenerated = yes imp = 9206 ck3 = 10839 ck3 = 12509 } # Ham Hoan -> Nghe_An, Nghe_An_2 + link = { autogenerated = yes imp = 9208 ck3 = 10838 } # Bi Canh -> Bo_Chinh + link = { autogenerated = yes imp = 9209 ck3 = 10837 } # Chu Ngo -> Dia_Ly + link = { autogenerated = yes imp = 9207 ck3 = 10836 ck3 = 11464 } # Tay Quyen -> Ma_Linh, Tan_Xuyen + link = { autogenerated = yes imp = 9833 ck3 = 10835 ck3 = 10917 } # Baigaur -> Baigaur, Go_Cong + link = { autogenerated = yes imp = 9837 ck3 = 10834 ck3 = 12522 } # Phan Thiet -> Malithit, Viet_Mountains_3 + link = { autogenerated = yes imp = 9210 ck3 = 10833 } # Lo Dong -> Hve + link = { autogenerated = yes imp = 9429 ck3 = 10832 ck3 = 12880 } # Kim Son -> Aya_Ru, Tay Son + link = { autogenerated = yes imp = 9427 ck3 = 10830 } # An Lac -> Dong_Duong + link = { autogenerated = yes imp = 10358 ck3 = 1083 } # Ammodeis Ochthes -> Pripyat River + link = { autogenerated = yes imp = 9211 ck3 = 10828 ck3 = 10831 } # Tuong Lam -> Simhapura, My_Son + link = { autogenerated = yes imp = 9428 ck3 = 10827 ck3 = 10829 ck3 = 12510 } # Tuong Pho -> Vijaya, Quang_Ngai, Banh_It + link = { autogenerated = yes imp = 9431 ck3 = 10825 ck3 = 10826 } # Nam Cuc -> Panduranga, Kauthara + link = { autogenerated = yes imp = 10965 ck3 = 10824 } # Srae Ambel -> Kompong_Saom + link = { autogenerated = yes imp = 10969 ck3 = 10823 } # Prek Khlang -> Botum_Sakor + link = { autogenerated = yes imp = 10977 ck3 = 10822 } # Chansen -> Lop_Buri + link = { autogenerated = yes imp = 9815 ck3 = 10821 } # U Thong -> Rat_Buri + link = { autogenerated = yes imp = 10985 ck3 = 10820 ck3 = 10946 ck3 = 10966 ck3 = 12542 ck3 = 10893 } # Phu Lon -> Vien_Chan, Ban_Pang, Vang_Vieng, Muang Fuang, Luang Prabang + link = { autogenerated = yes imp = 12854 ck3 = 1082 } # Vain -> Daugava River + link = { autogenerated = yes imp = 11004 imp = 9821 ck3 = 10819 } # Dambok, Angkor Wat -> Banteay_Chhmar + link = { autogenerated = yes imp = 10995 imp = 8127 ck3 = 10818 } # Pa Sak, Thai Jungle -> Srideb + link = { autogenerated = yes imp = 11006 imp = 11001 ck3 = 10817 } # Si Sa Ket, Mukdahan -> Champassak + link = { autogenerated = yes imp = 10971 ck3 = 10816 } # Phnum Snay -> Angkor + link = { autogenerated = yes imp = 9830 imp = 10970 ck3 = 10815 } # Angkor Borei, Phnom Sruoch -> Phnom_Penh + link = { autogenerated = yes imp = 9829 ck3 = 10814 } # Skun -> Hanchei + link = { autogenerated = yes imp = 10963 ck3 = 10813 } # Oc Eo -> Oc_Eo + link = { autogenerated = yes imp = 10964 ck3 = 10812 } # Phu Quoc -> Bayang + link = { autogenerated = yes imp = 9831 ck3 = 10810 ck3 = 10811 } # Bassac -> Maha_Rosei, Angkor_Borey + link = { autogenerated = yes imp = 9828 ck3 = 10808 ck3 = 10809 } # Vyadhapura -> Vat_Nokor, Vyadhapura + link = { autogenerated = yes imp = 11010 ck3 = 10807 } # Rumpuk -> Kracheh_Nokor + link = { autogenerated = yes imp = 11003 ck3 = 10805 ck3 = 10806 } # Tonle Srepak -> Stung_Treng, Sambor + link = { autogenerated = yes imp = 9825 ck3 = 10804 } # Samraong -> Sambor_Prei_Kuk + link = { autogenerated = yes imp = 9826 ck3 = 10803 } # Isanapura -> Prah_Khan + link = { autogenerated = yes imp = 10991 ck3 = 10802 ck3 = 10942 } # Saneng -> Prea_Vihear, Si_Sa_Ket + link = { autogenerated = yes imp = 10569 ck3 = 10800 ck3 = 10801 } # Ishikari -> Sorachi, Atsuta + link = { autogenerated = yes imp = 10570 ck3 = 10799 } # Chiu Pet -> Uryu + link = { autogenerated = yes imp = 10571 ck3 = 10795 ck3 = 10796 ck3 = 10797 ck3 = 10798 } # Nayoro -> Soya, Kamikawa, Teshio, Rumoi + link = { autogenerated = yes imp = 10572 ck3 = 10794 } # Okhotsk -> Monbetsu + link = { autogenerated = yes imp = 10573 ck3 = 10790 ck3 = 10791 ck3 = 10792 ck3 = 10793 ck3 = 12819 } # Kushiro -> Kushiro, Abashiri, Hanasaki, Shiretoko, Kuril-Kunasir + link = { autogenerated = yes imp = 10359 imp = 10360 ck3 = 1079 } # $PROV10358$, $PROV10358$ -> Pripyat River + link = { autogenerated = yes imp = 10574 ck3 = 10787 ck3 = 10788 ck3 = 10789 } # Tokachi -> Hiroo, Kasai, Tokachi + link = { autogenerated = yes imp = 10575 ck3 = 10784 ck3 = 10785 ck3 = 10786 } # Hidaka -> Yufutsu, Niikappu, Urakawa + link = { autogenerated = yes imp = 12855 ck3 = 1078 } # $PROV7871$ -> Dnieper River + link = { autogenerated = yes imp = 10357 ck3 = 8566 } # $PROV7871$ -> Dnieper River + link = { autogenerated = yes imp = 10568 ck3 = 10777 ck3 = 10779 ck3 = 10780 ck3 = 10781 ck3 = 10783 } # Makkarinupuri -> Ioci, Otarunay, Setanay, Aptapet, Muroran + link = { autogenerated = yes imp = 10567 ck3 = 10774 ck3 = 10775 ck3 = 10776 ck3 = 10782 } # Oshima -> Matomai, Uskes, Kumausi, Kayaunpesh + link = { autogenerated = yes imp = 10354 ck3 = 1077 } # $PROV7871$ -> Dnieper River + link = { autogenerated = yes imp = 9702 ck3 = 10763 ck3 = 10764 ck3 = 10766 } # Izu -> Kamo, Tagata, Hakone + link = { autogenerated = yes imp = 9709 ck3 = 10760 ck3 = 10761 ck3 = 10762 } # Kazusa -> Awa, Ichihara, Ichinomiya + link = { autogenerated = yes imp = 9331 ck3 = 10757 ck3 = 10758 } # Shima -> Ise-jingū, Shima + link = { autogenerated = yes imp = 9682 ck3 = 10755 } # Ise -> Mie + link = { autogenerated = yes imp = 9681 ck3 = 10752 ck3 = 10753 } # Owari -> Atsuta, Kasugai + link = { autogenerated = yes imp = 9673 ck3 = 10750 ck3 = 10751 } # Nukata -> Nukata, Kamo + link = { autogenerated = yes imp = 9713 ck3 = 10746 ck3 = 10747 ck3 = 10754 ck3 = 10771 } # Motosu -> Motosu, Fuwa, Nakashima, Mugi + link = { autogenerated = yes imp = 9672 ck3 = 10744 ck3 = 12906 } # Toki -> Kani, shinano_mountains + link = { autogenerated = yes imp = 9712 ck3 = 10741 ck3 = 10742 } # Yasu -> Inukami, Kōka + link = { autogenerated = yes imp = 9683 ck3 = 10740 } # Ohmi -> Azai + link = { autogenerated = yes imp = 10364 ck3 = 1074 ck3 = 1075 } # $PROV10361$ -> Desna River, Desna River + link = { autogenerated = yes imp = 9330 ck3 = 10738 ck3 = 10756 ck3 = 10605 } # Igo -> Iga, Anō, IMPASSABLE_CENTRAL_HONSHU + link = { autogenerated = yes imp = 9677 ck3 = 10736 ck3 = 10737 } # Wakasa -> Tsuruga, Wakasa + link = { autogenerated = yes imp = 9723 ck3 = 10733 ck3 = 10734 ck3 = 10735 } # Mikuni -> Ōno, Sakai, Nyū + link = { autogenerated = yes imp = 9706 ck3 = 10732 ck3 = 10729 } # Titibu -> Tama, Chichibu + link = { autogenerated = yes imp = 10361 ck3 = 1073 } # Dexi Cheri -> Desna River + link = { autogenerated = yes imp = 9707 ck3 = 10727 ck3 = 10730 ck3 = 10731 } # Musasi -> Iruma, Toshima, Adachi + link = { autogenerated = yes imp = 9711 ck3 = 10722 ck3 = 10724 ck3 = 10725 ck3 = 10726 ck3 = 10772 } # Hitati -> Ibaraki, Naka, Taga, Tsukuba, Kashima + link = { autogenerated = yes imp = 9710 ck3 = 10721 ck3 = 10767 ck3 = 10768 ck3 = 10769 } # Simobusa -> Kashima, Katsushika, Chiba, Katori + link = { autogenerated = yes imp = 7880 ck3 = 1072 } # Borysthenes -> Dnieper River + link = { autogenerated = yes imp = 9721 ck3 = 10716 ck3 = 10720 } # Mitinooku -> Adachi, Shirakawa + link = { autogenerated = yes imp = 9732 ck3 = 10712 ck3 = 10714 ck3 = 10717 ck3 = 10689 } # Sirakawa -> Aizu, Yama, Iwase, japan_mountains + link = { autogenerated = yes imp = 10566 ck3 = 10710 ck3 = 10711 } # Yamagata -> Mogami, Okitama + link = { autogenerated = yes imp = 7878 imp = 7879 ck3 = 1071 } # Borysthenes, Borysthenes -> Dnieper River + link = { autogenerated = yes imp = 10557 ck3 = 10704 ck3 = 10706 ck3 = 10708 ck3 = 10707 } # Dewa -> Nushiro/Hiyama, Hotta/Yamamoto, Yuri/Akumi, Okachi/Ogachi + link = { autogenerated = yes imp = 10562 ck3 = 10703 ck3 = 10705 } # Kazuno -> Nisattai/Ninohe, Agita/Akita + link = { autogenerated = yes imp = 10560 ck3 = 10701 ck3 = 10702 } # Ogawara -> Usori/Kita, Tsumo/Sannohe + link = { autogenerated = yes imp = 10558 imp = 10559 ck3 = 10700 } # Sunazawa, Sannaimaruyama -> Tsugaru + link = { autogenerated = yes imp = 7873 imp = 7871 imp = 7872 imp = 7874 ck3 = 1070 } # Borysthenes, Borysthenes, Borysthenes, Borysthenes -> Dnieper River + link = { autogenerated = yes imp = 10299 ck3 = 107 } # Daugava -> MITAU + link = { autogenerated = yes imp = 10561 ck3 = 10699 ck3 = 10718 ck3 = 10719 ck3 = 10773 } # Mutsu -> Miyagi, Namekata, Iwaki, Motoyoshi + link = { autogenerated = yes imp = 10565 ck3 = 10698 } # Osaki -> Korehari/Kurihara + link = { autogenerated = yes imp = 10563 ck3 = 10693 ck3 = 10697 } # Kitakami -> Iwate, Iwai + link = { autogenerated = yes imp = 10564 ck3 = 10692 ck3 = 10770 ck3 = 10694 } # Miyako -> Nukanobu/Kunohe, Kesen, Hei + link = { autogenerated = yes imp = 9697 ck3 = 10691 ck3 = 10748 } # Honokuni -> Fuchi, Atsumi + link = { autogenerated = yes imp = 5367 ck3 = 1069 } # Tritonis -> Chott el Djerid + link = { autogenerated = yes imp = 9699 ck3 = 10687 ck3 = 10690 } # Soga -> Shida, Toyoda + link = { autogenerated = yes imp = 9701 ck3 = 10685 ck3 = 10686 } # Iohara -> Fuji, Abe + link = { autogenerated = yes imp = 9704 ck3 = 10684 ck3 = 10765 } # Sinaga -> Ōsumi, Miura + link = { autogenerated = yes imp = 9703 ck3 = 10682 ck3 = 10683 ck3 = 10680 } # Kai -> Yatsushiro, Koma, Tsuru + link = { autogenerated = yes imp = 9726 ck3 = 10678 ck3 = 10679 } # Kaga -> Haku, Enuma + link = { autogenerated = yes imp = 9729 ck3 = 10676 ck3 = 10677 } # Imizu -> Imizu, Tateyama + link = { autogenerated = yes imp = 9728 ck3 = 10674 ck3 = 10675 } # Noto -> Fugeshi, Kashima + link = { autogenerated = yes imp = 9718 ck3 = 10670 ck3 = 10671 ck3 = 10672 ck3 = 10673 } # Kaminotuke -> Tone, Nitta, Gunma, Agatsuma + link = { autogenerated = yes imp = 10699 ck3 = 1067 } # $PROV10697$ -> Danube River + link = { autogenerated = yes imp = 9719 ck3 = 10667 } # Simotuke -> Ashikaga + link = { autogenerated = yes imp = 9720 ck3 = 10665 ck3 = 10666 ck3 = 10668 ck3 = 10669 } # Nasu -> Nasu, Utsunomiya, Futara, Shioya + link = { autogenerated = yes imp = 9680 ck3 = 10662 ck3 = 10663 ck3 = 10664 ck3 = 10612 } # Sinano -> Zenkō-ji, Saku, Azumi, IMPASSABLE_SHINANO + link = { autogenerated = yes imp = 9717 ck3 = 10660 ck3 = 10749 ck3 = 10688 } # Suwa -> Tsukama, Shitara, Suchi + link = { autogenerated = yes imp = 10698 imp = 10697 ck3 = 1066 } # $PROV10697$, Danuvius -> Danube River + link = { autogenerated = yes imp = 9714 ck3 = 10656 ck3 = 10743 } # Mugetu -> Mashita, Gujō + link = { autogenerated = yes imp = 9716 ck3 = 10654 ck3 = 10655 } # Hida -> Yoshiki, Ōno + link = { autogenerated = yes imp = 9730 ck3 = 10652 } # Kubiki -> Kubiki + link = { autogenerated = yes imp = 9731 ck3 = 10651 ck3 = 10653 ck3 = 10696 } # Kosinofukae -> Kambara, Uonuma, Yahiko + link = { autogenerated = yes imp = 10556 ck3 = 10650 ck3 = 10709 ck3 = 10607 } # Uzen -> Iwafune, Tokisara/Haguro, IMPASSABLE_NORTH_HONSHU + link = { autogenerated = yes imp = 10696 imp = 10695 ck3 = 1065 } # $PROV7773$, $PROV7773$ -> Danube River + link = { autogenerated = yes imp = 10555 ck3 = 10649 } # Sado -> Sado + link = { autogenerated = yes imp = 9739 ck3 = 10645 } # Yaeyama -> Simajiri/Shimajiri + link = { autogenerated = yes imp = 9737 ck3 = 10643 } # Uchinaa -> Amagi + link = { autogenerated = yes imp = 9326 ck3 = 10641 } # Oki -> Oki + link = { autogenerated = yes imp = 4569 imp = 2988 imp = 2989 imp = 2990 imp = 2991 imp = 2992 imp = 2996 imp = 2998 imp = 2999 imp = 4570 imp = 4571 ck3 = 1064 } # Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum -> Caspian Sea + link = { autogenerated = yes imp = 9733 ck3 = 10634 ck3 = 10635 ck3 = 10636 ck3 = 10637 ck3 = 10633 } # Futakata -> Kinosaki, Keta, Kasa, Kumano, Asago + link = { autogenerated = yes imp = 10693 imp = 10692 imp = 10709 imp = 10712 ck3 = 1063 } # $PROV7773$, $PROV7773$, Pathissus, Savus -> Danube River + link = { autogenerated = yes imp = 9322 ck3 = 10627 ck3 = 10628 ck3 = 10630 ck3 = 10632 ck3 = 10629 ck3 = 10631 } # Houki -> Kume, Izumi, Hōmi, Takakusa, Hino, Yakami + link = { autogenerated = yes imp = 9319 ck3 = 10623 ck3 = 10624 ck3 = 10626 ck3 = 10625 } # Tsuma -> Kizuki-taisha, Shimane, Ou, Nita + link = { autogenerated = yes imp = 9688 ck3 = 10620 ck3 = 10621 ck3 = 10619 ck3 = 10622 } # Iwami -> Mino, Naka, Kanoashi, Ochi + link = { autogenerated = yes imp = 4587 imp = 4578 imp = 4579 imp = 4580 imp = 4582 imp = 4583 imp = 4585 imp = 4586 imp = 8047 ck3 = 1062 } # Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Rha -> Caspian Sea + link = { autogenerated = yes imp = 9744 ck3 = 10618 } # Kumano -> Kumano + link = { autogenerated = yes imp = 9332 ck3 = 10611 ck3 = 10614 ck3 = 10615 ck3 = 10616 ck3 = 10617 } # Kina -> Yoshino, Nagusa, Kongōbu-ji, Hidaka, Muro + link = { autogenerated = yes imp = 7781 imp = 10691 imp = 7782 ck3 = 1061 } # Ister, $PROV7773$, Ister -> Danube River + link = { autogenerated = yes imp = 9328 ck3 = 10609 ck3 = 10610 ck3 = 10613 } # Yamato -> Kōfuku-ji, Eizanji, Shikinokami + link = { autogenerated = yes imp = 9318 ck3 = 10608 } # Awaji -> Awaji + link = { autogenerated = yes imp = 9676 ck3 = 10603 ck3 = 10638 ck3 = 10639 ck3 = 10640 ck3 = 10739 } # Tanba -> Kyo, Kuwada, Hikami, Funai, Enryaku-ji + link = { autogenerated = yes imp = 9675 ck3 = 10601 ck3 = 10602 ck3 = 10606 } # Iwa -> ŌTORI, Izumi, Kawachi + link = { autogenerated = yes imp = 7779 imp = 7780 ck3 = 1060 } # Ister, Ister -> Danube River + link = { autogenerated = yes imp = 10294 ck3 = 106 } # Bauska -> DOBELE + link = { autogenerated = yes imp = 9329 ck3 = 10599 ck3 = 10600 ck3 = 10604 } # Yama -> Osaka, Nose, Uji + link = { autogenerated = yes imp = 9735 ck3 = 10595 ck3 = 10598 ck3 = 10597 } # Harimanokamo -> Akashi, Kobe, Taka + link = { autogenerated = yes imp = 9323 ck3 = 10593 ck3 = 10594 ck3 = 10596 } # Hari -> Ibo, Shikama, Shisō + link = { autogenerated = yes imp = 7777 imp = 7776 imp = 7778 ck3 = 1059 } # Ister, Ister, Ister -> Danube River + link = { autogenerated = yes imp = 9321 ck3 = 10587 ck3 = 10591 ck3 = 10590 ck3 = 10592 } # Kii -> Oku, Aida, Mashima, Tomata + link = { autogenerated = yes imp = 9736 ck3 = 10583 ck3 = 10589 ck3 = 10584 ck3 = 12914 } # Kaya -> Kuboya, Jōtō, Kibitsu, west_honshu_mountains + link = { autogenerated = yes imp = 7775 imp = 7773 imp = 7774 ck3 = 1058 } # Ister, Ister, Ister -> Danube River + link = { autogenerated = yes imp = 9685 ck3 = 10575 ck3 = 10576 ck3 = 10574 ck3 = 10578 ck3 = 10579 } # Aki -> Kamo, Itsukushima, Yamagata, Mitsugi, Yasuna + link = { autogenerated = yes imp = 9686 ck3 = 10570 ck3 = 10571 ck3 = 10572 ck3 = 10573 } # Suo -> Yoshiki, Kuga, Kumage, Tsuno + link = { autogenerated = yes imp = 9320 ck3 = 10566 ck3 = 10567 ck3 = 10568 ck3 = 10569 } # Ana -> Toyora, Asa, Abu, Ōtsu + link = { autogenerated = yes imp = 9305 ck3 = 10563 } # Tsushima -> Yora + link = { autogenerated = yes imp = 9740 ck3 = 10560 } # Osumi -> Tane + link = { autogenerated = yes imp = 2739 imp = 7881 ck3 = 1056 } # Pontus Euxinus, Tyras -> Dniester River + link = { autogenerated = yes imp = 9690 ck3 = 10557 ck3 = 10558 ck3 = 10559 ck3 = 10561 ck3 = 10556 } # Kumaso -> Kagoshima, Isa, Izumi, Kawanabe, Kuma + link = { autogenerated = yes imp = 9759 ck3 = 10554 } # Amakusa -> Amakusa + link = { autogenerated = yes imp = 9689 ck3 = 10551 ck3 = 10555 ck3 = 10550 ck3 = 10552 } # Hinokuni -> Kikuchi, Yatsushiro, Mashiki, Aso + link = { autogenerated = yes imp = 9693 ck3 = 10545 ck3 = 10546 ck3 = 10547 ck3 = 10544 } # Ohsumi -> Kimotsuki, Kuwabara, Soo, Morokata + link = { autogenerated = yes imp = 9310 ck3 = 10540 ck3 = 10542 ck3 = 10543 ck3 = 10541 } # Himuka -> Koyu, Tsuma, Naka, Usuki + link = { autogenerated = yes imp = 10683 ck3 = 1054 } # $PROV10679$ -> Vistula River + link = { autogenerated = yes imp = 8121 ck3 = 10539 } # Goto -> Chikanoshima + link = { autogenerated = yes imp = 9756 ck3 = 10538 } # Fuzitu -> Sonogi + link = { autogenerated = yes imp = 9304 ck3 = 10534 } # Iki -> Saga + link = { autogenerated = yes imp = 9303 ck3 = 10536 } # Matsura -> Matsura + link = { autogenerated = yes imp = 9306 ck3 = 10529 ck3 = 10530 ck3 = 10531 } # Ito -> Hakata, Munakata, Kurate + link = { autogenerated = yes imp = 9692 ck3 = 10528 ck3 = 10532 ck3 = 10533 } # Tukusi -> Daizaifu, Mizuma, Mii + link = { autogenerated = yes imp = 9691 ck3 = 10523 ck3 = 10525 ck3 = 10526 ck3 = 10527 ck3 = 10524 } # Toyo -> Kunisaki, Usa, Kiku, Hikosan, Hita + link = { autogenerated = yes imp = 10680 imp = 10679 ck3 = 1052 } # $PROV10679$, Ouistoula -> Vistula River + link = { autogenerated = yes imp = 9694 ck3 = 10518 ck3 = 10520 ck3 = 10522 } # Ohkita -> Oita, Amabe, Ōno + link = { autogenerated = yes imp = 9316 ck3 = 10515 ck3 = 10516 ck3 = 10517 } # Sanu -> Yashima, Sangawa, Kotohira + link = { autogenerated = yes imp = 9745 ck3 = 10511 ck3 = 10514 } # Awa -> Nakata, Naka + link = { autogenerated = yes imp = 9313 ck3 = 10510 } # Iya -> Uwa + link = { autogenerated = yes imp = 9749 ck3 = 10509 ck3 = 10506 } # Kumi -> Kita, Iyo + link = { autogenerated = yes imp = 9748 ck3 = 10507 ck3 = 10508 ck3 = 10513 } # Numa -> Ishizuchi, Uchiko, Tsurugi + link = { autogenerated = yes imp = 9751 ck3 = 10505 ck3 = 10504 } # Hata -> Hata, Takaoka + link = { autogenerated = yes imp = 9746 ck3 = 10503 ck3 = 10512 } # Naga -> Aki, Kaifu + link = { autogenerated = yes imp = 10295 ck3 = 105 ck3 = 127 } # Birzu -> BAUSKA, SIAULIAI + link = { autogenerated = yes imp = 12745 ck3 = 10493 ck3 = 10494 ck3 = 10495 ck3 = 12482 ck3 = 10496 } # Wawu -> FIC_Amur_Bira, FIC_Amur_Chulabira, FIC_Amur_Urmi, FIC_EMan_Kuru, FIC_Amur_Kirga + link = { autogenerated = yes imp = 9562 ck3 = 10491 ck3 = 10492 ck3 = 11695 ck3 = 11865 ck3 = 11866 ck3 = 11867 ck3 = 11693 } # Heishui -> FIC_Amur_Pichan, FIC_Amur_Khimin, Amur_Dazhou, FIC_EMan_Beihuaicun, FIC_EMan_Nanshuian, FIC_EMan_Alimenan, FIC_Amur_Senlincun + link = { autogenerated = yes imp = 8924 imp = 8939 imp = 8940 imp = 8941 ck3 = 10467 } # Lugao, Wudan, Tongbing, Loujiang -> Something_6 + link = { autogenerated = yes imp = 10836 imp = 10835 ck3 = 10466 } # Hanben, Puluowan -> Taiwan_New_3 + link = { autogenerated = yes imp = 10834 ck3 = 10465 } # Peinan -> Taiwan_New_2 + link = { autogenerated = yes imp = 9259 ck3 = 10464 } # Mare Sinense Orientale -> Yangtze River + link = { autogenerated = yes imp = 10838 imp = 10837 ck3 = 10463 } # Pinglin, Huagangshan -> Taiwan_New_1 + link = { autogenerated = yes imp = 9222 imp = 9221 ck3 = 10461 } # Jiang, Jiang -> Yangtze River + link = { autogenerated = yes imp = 9225 imp = 9226 imp = 9227 ck3 = 10459 } # Jiang, Jiang, Jiang -> Yangtze River + link = { autogenerated = yes imp = 9230 ck3 = 10457 } # Jiang -> Yangtze River + link = { autogenerated = yes imp = 9231 imp = 9232 ck3 = 10456 } # Jiang, Jiang -> Yangtze River + link = { autogenerated = yes imp = 8620 imp = 8615 imp = 8618 imp = 9574 ck3 = 10455 } # Linwo, Jiuyuan, Heyin, Impassable -> Something_5 + link = { autogenerated = yes imp = 9224 ck3 = 10452 } # Jiang -> (Unknown) + link = { autogenerated = yes imp = 9229 ck3 = 10451 } # Jiang -> Lake_Poyang + link = { autogenerated = yes imp = 8944 ck3 = 10450 } # Tanfeng -> Qujing_Xinshaozhen + link = { autogenerated = yes imp = 8942 ck3 = 10449 ck3 = 10852 ck3 = 10190 ck3 = 11468 ck3 = 13093 ck3 = 9838 ck3 = 13263 } # Juding -> Qianxinan_Qianxinan, Binh_Nguyen, Ziyuanzhou, Meo_Vac, Southwest, Lingnan_Guishunzhou_Napo, (Unknown) + link = { autogenerated = yes imp = 8938 imp = 8950 ck3 = 10448 } # Louwo, Yue Jungle -> Qujing_Datong + link = { autogenerated = yes imp = 8921 imp = 8927 imp = 9622 ck3 = 10445 } # Mumi, Tonglao, Kunze -> Qujing_Tangdianzhen + link = { autogenerated = yes imp = 8401 imp = 8406 ck3 = 10441 } # Xiangcheng, Dingling -> Changshe + link = { autogenerated = yes imp = 9613 ck3 = 10439 ck3 = 13074 } # Gangdi -> Changming, Qingchuan Southwest + link = { autogenerated = yes imp = 8893 ck3 = 10437 } # Cunma -> Zhaotong_Huize + link = { autogenerated = yes imp = 9664 ck3 = 10436 } # Anping -> Anfu + link = { autogenerated = yes imp = 8937 ck3 = 10435 ck3 = 10444 } # Tangao -> Qujing_QujingNorth, Qujing_Qujing + link = { autogenerated = yes imp = 9129 ck3 = 10433 ck3 = 9460 ck3 = 9536 } # Luling -> Taihe, Taihe, Luling + link = { autogenerated = yes imp = 9105 ck3 = 10432 ck3 = 8815 ck3 = 8821 ck3 = 8822 } # Dongye -> Min, Jianpu, Gutian, Minqing + link = { autogenerated = yes imp = 8340 imp = 8318 ck3 = 10430 } # Du, Hu -> Chang'an + link = { autogenerated = yes imp = 8724 ck3 = 10428 } # Anci -> Gou'an + link = { autogenerated = yes imp = 8549 imp = 8546 ck3 = 10423 } # Xiangfen, Qiyang -> Linyi + link = { autogenerated = yes imp = 8544 ck3 = 10422 ck3 = 12964 } # Licheng -> Qushan, Mizhou Northwest + link = { autogenerated = yes imp = 9098 ck3 = 10421 ck3 = 8825 } # Shiping -> Xiangshan, Mao + link = { autogenerated = yes imp = 8329 imp = 8326 imp = 8339 ck3 = 10419 } # Zheng, Wucheng, Zheng -> Fengxian + link = { autogenerated = yes imp = 8702 imp = 8720 ck3 = 10417 } # Guanjin, Xiushi -> Pingyuan + link = { autogenerated = yes imp = 8889 ck3 = 10413 ck3 = 10205 ck3 = 10416 } # Fu -> Hejiang, Nengzhou, Sanxi + link = { autogenerated = yes imp = 9611 ck3 = 10406 ck3 = 9547 } # Chongguo -> Xupu, Xinfeng + link = { autogenerated = yes imp = 8345 ck3 = 10404 } # Yishi -> Yishi + link = { autogenerated = yes imp = 8346 ck3 = 10403 } # Pufan -> Hexi + link = { autogenerated = yes imp = 9020 ck3 = 10400 ck3 = 12984 } # Luo -> Changjing, Changjing North + link = { autogenerated = yes imp = 12604 ck3 = 104 ck3 = 108 } # Cina -> JURMALA, RIGA + link = { autogenerated = yes imp = 9019 ck3 = 10399 ck3 = 13159 } # Yiyang -> Baling, Xiangyin + link = { autogenerated = yes imp = 9626 ck3 = 10398 } # Xiajuan -> Tangnian + link = { autogenerated = yes imp = 8997 ck3 = 10395 ck3 = 10397 } # E -> Jiangxia, Puqi + link = { autogenerated = yes imp = 9069 ck3 = 10394 ck3 = 13011 ck3 = 8945 ck3 = 13210 } # Songzi -> Susong, Qichun Southwest, Taihu, (Unknown) + link = { autogenerated = yes imp = 9173 ck3 = 10388 } # Elin -> Sujian + link = { autogenerated = yes imp = 9617 ck3 = 10386 ck3 = 10424 } # Hanyang -> Zhaotong_Junlian, Zhaotong_Hezhang + link = { autogenerated = yes imp = 8514 ck3 = 10385 } # Yeyi -> b_laizhou_jiaoshui + link = { autogenerated = yes imp = 11065 imp = 9100 ck3 = 10384 } # Songxi, Songyang -> Songyang + link = { autogenerated = yes imp = 9141 ck3 = 10381 ck3 = 12980 ck3 = 12981 ck3 = 8901 ck3 = 8927 } # Sihui -> Haojinggao, Sihui, Huameng South, Huameng, Kaijian + link = { autogenerated = yes imp = 8543 ck3 = 10380 ck3 = 8871 } # Youyang -> Suqian, Qushan + link = { autogenerated = yes imp = 2533 ck3 = 1038 } # Fretum Hydruntis -> Strait of Otranto + link = { autogenerated = yes imp = 9650 imp = 8528 ck3 = 10379 } # Gaoxiang, Zuohang -> Hairen + link = { autogenerated = yes imp = 8402 imp = 8416 ck3 = 10378 } # Pingyu, Xincai -> Pingyu + link = { autogenerated = yes imp = 8421 ck3 = 10377 } # Ping E -> Baoxin + link = { autogenerated = yes imp = 8407 imp = 8408 ck3 = 10376 } # Tang, Shangcai -> Xiping + link = { autogenerated = yes imp = 9074 ck3 = 10373 ck3 = 10374 ck3 = 10375 } # Lingyang -> Shidai, Qiupu, Qingyang + link = { autogenerated = yes imp = 2649 imp = 2612 imp = 2613 imp = 6386 ck3 = 1037 } # Mare Ionium, Mare Ionium, Mare Ionium, LAKE -> Ionian Sea + link = { autogenerated = yes imp = 9079 ck3 = 10368 ck3 = 10369 ck3 = 10371 ck3 = 10443 ck3 = 13205 ck3 = 13212 } # Xi -> Jixi, Taiping, Xiuning, Wuyuan, (Unknown), (Unknown) + link = { autogenerated = yes imp = 9657 ck3 = 10367 ck3 = 13209 } # Yi -> Qimen, (Unknown) + link = { autogenerated = yes imp = 9661 ck3 = 10366 ck3 = 13014 ck3 = 9685 } # Pengze -> Zhide, Fuliang, Pengze + link = { autogenerated = yes imp = 8516 ck3 = 10365 ck3 = 8851 } # Chui -> b_something_penlai, b_something_huang + link = { autogenerated = yes imp = 8678 ck3 = 10364 } # Guangping -> Yongji + link = { autogenerated = yes imp = 8696 imp = 8695 imp = 8697 ck3 = 10363 } # Dongwucheng, Lingqiu, Liao -> Laocheng + link = { autogenerated = yes imp = 8693 imp = 8672 imp = 8694 ck3 = 10362 } # Qingyang, Yanghu, Beiqiu -> Wushui + link = { autogenerated = yes imp = 8706 imp = 8707 ck3 = 10361 } # Baixiang, Songzi -> Qingyang + link = { autogenerated = yes imp = 8700 ck3 = 10360 } # Xincheng -> Liting + link = { autogenerated = yes imp = 2522 imp = 2511 imp = 2513 imp = 2648 ck3 = 1036 } # Sinus Tarentinus, Mare Ionium, Mare Ionium, Mare Ionium -> Gulf of Taranto + link = { autogenerated = yes imp = 8705 imp = 8703 ck3 = 10359 } # Julu, Nangong -> Qinghe + link = { autogenerated = yes imp = 8676 ck3 = 10358 } # Jipei -> Guantao + link = { autogenerated = yes imp = 8668 imp = 8438 imp = 8670 imp = 8675 ck3 = 10357 } # Ye, Lechang, Neihuang, Fanyang -> Guixiang + link = { autogenerated = yes imp = 8626 imp = 8375 imp = 9393 ck3 = 10356 } # Xuanshi, Shanyang, Impassable -> Ji + link = { autogenerated = yes imp = 8368 imp = 8628 ck3 = 10355 } # Linlyu, Zhangzi -> Gongcheng + link = { autogenerated = yes imp = 8634 imp = 8674 imp = 8629 ck3 = 10353 } # Lu , She, Tunliu -> Linlu + link = { autogenerated = yes imp = 8677 imp = 8369 ck3 = 10352 } # Wuan, Dangyin -> Anyang + link = { autogenerated = yes imp = 2656 imp = 2574 imp = 2575 imp = 2646 imp = 2661 ck3 = 1035 } # Mare Aegyptium, Mare Aegyptium, Mare Aegyptium, Mare Libycum, Mare Aegyptium -> Libyan Sea + link = { autogenerated = yes imp = 9088 ck3 = 10345 ck3 = 10346 } # Fuchun -> Yuhang, Tangshan + link = { autogenerated = yes imp = 9078 ck3 = 10343 ck3 = 10347 ck3 = 10351 ck3 = 10350 } # Qian -> Anji, Yuqian, Qingxi, Suian + link = { autogenerated = yes imp = 9085 ck3 = 10342 } # Wucheng -> Wucheng + link = { autogenerated = yes imp = 9656 ck3 = 10341 ck3 = 10372 } # Jing -> Jing, Jing + link = { autogenerated = yes imp = 9072 ck3 = 10340 } # Yuanling -> Xuancheng + link = { autogenerated = yes imp = 2629 imp = 2516 imp = 2519 imp = 2520 imp = 2627 imp = 2630 imp = 2633 ck3 = 1034 } # Mare Libycum, Fretum Melitense, Fretum Melitense, Fretum Siculum, Mare Libycum, Fretum Melitense, Mare Libycum -> Malta Channel + link = { autogenerated = yes imp = 9655 ck3 = 10339 } # Wuhu -> Nanling + link = { autogenerated = yes imp = 9073 ck3 = 10338 } # Lingfu -> Liyang + link = { autogenerated = yes imp = 9654 ck3 = 10337 } # Shicheng -> Dangtu + link = { autogenerated = yes imp = 11062 ck3 = 10335 ck3 = 10336 ck3 = 8834 ck3 = 13226 } # Wenma -> Lianjiang, Changxi, Qingtian, (Unknown) + link = { autogenerated = yes imp = 9082 ck3 = 10333 ck3 = 10334 ck3 = 12950 } # Qu e -> Dantu, Jintan, Zhangpu West + link = { autogenerated = yes imp = 9075 imp = 8559 imp = 9081 ck3 = 10332 } # Jurong, Tang, Zhufang -> Gourong + link = { autogenerated = yes imp = 9076 ck3 = 10331 } # Moling -> Shangyuan + link = { autogenerated = yes imp = 9083 ck3 = 10330 ck3 = 10370 } # Yanling -> Jinling, Yi + link = { autogenerated = yes imp = 2625 imp = 2517 ck3 = 1033 } # Fretum Siculum, Fretum Siculum -> Sicilian Narrows + link = { autogenerated = yes imp = 9653 ck3 = 10329 } # Yangxian -> Yixing + link = { autogenerated = yes imp = 9086 ck3 = 10328 ck3 = 10344 ck3 = 8841 } # Yuer -> Jiaxing, Wukang, Qiantang + link = { autogenerated = yes imp = 9652 imp = 9651 ck3 = 10326 } # Youquan, Wu -> Wu + link = { autogenerated = yes imp = 9084 ck3 = 10325 ck3 = 12951 } # Wuxi -> Jinling, Longxi West + link = { autogenerated = yes imp = 9080 ck3 = 10324 ck3 = 10327 } # Lou -> Kunshan, Huating + link = { autogenerated = yes imp = 9425 ck3 = 10323 } # Maocaojie -> Huarong + link = { autogenerated = yes imp = 9615 imp = 8878 ck3 = 10322 } # Canling, Jiandi -> Heishui + link = { autogenerated = yes imp = 2506 imp = 2500 imp = 2521 ck3 = 1032 } # Mare Tyrrhenum, Mare Tyrrenum, Mare Tyrrhenum -> Coast of Palermo + link = { autogenerated = yes imp = 8884 ck3 = 10319 } # Wuyang -> Zhaowu + link = { autogenerated = yes imp = 8875 ck3 = 10318 } # Mianti -> Baoning + link = { autogenerated = yes imp = 8871 ck3 = 10317 } # Linqiong -> Cicheng + link = { autogenerated = yes imp = 9090 imp = 9093 ck3 = 10316 } # Juzhang, Yongjudong -> Yan + link = { autogenerated = yes imp = 8685 imp = 8684 imp = 8687 ck3 = 10315 } # Yuanshi, Dongyuan, Luan -> Pingji + link = { autogenerated = yes imp = 8710 ck3 = 10313 ck3 = 10314 } # Kujing -> Lucheng, Gu + link = { autogenerated = yes imp = 8712 imp = 8709 ck3 = 10312 } # Anxian, Lunu -> Luze + link = { autogenerated = yes imp = 8699 imp = 8701 imp = 8740 imp = 8741 ck3 = 10311 } # Wusui, Xiabo, Rao, Anping -> Fucheng + link = { autogenerated = yes imp = 8708 imp = 8704 ck3 = 10310 } # Xiaquyang, Changcheng -> Tangyang + link = { autogenerated = yes imp = 2504 ck3 = 1031 } # Mare Tyrrhenum -> Gulf of Napoli + link = { autogenerated = yes imp = 8344 imp = 8352 ck3 = 10309 } # Anyi, Zuoyi -> Xia + link = { autogenerated = yes imp = 8354 ck3 = 10307 ck3 = 10402 ck3 = 10308 } # Pishi -> Longmen, Wenxi, Zhengping + link = { autogenerated = yes imp = 8725 ck3 = 10302 } # Yangxin -> Bohai + link = { autogenerated = yes imp = 8730 imp = 8729 ck3 = 10301 } # Canhu, Jiancheng -> Anling + link = { autogenerated = yes imp = 8698 imp = 8726 ck3 = 10300 } # Lecheng, Nanpi -> Ande + link = { autogenerated = yes imp = 2689 imp = 2698 imp = 2699 imp = 2700 ck3 = 1030 } # Mare Tyrrhenum, Mare Tyrrhenum, Mare Tyrrhenum, Mare Tyrrhenum -> Coast of Sardinia + link = { autogenerated = yes imp = 12603 ck3 = 103 ck3 = 134 } # Keerdak -> KOKENOIS, LENNEWARDEN + link = { autogenerated = yes imp = 8718 imp = 8728 ck3 = 10299 } # Fuyang, Zhangwu -> Wudi + link = { autogenerated = yes imp = 8722 ck3 = 10298 } # Pingshu -> Lucheng + link = { autogenerated = yes imp = 9167 ck3 = 10295 ck3 = 8907 ck3 = 8908 ck3 = 8910 ck3 = 8918 ck3 = 8919 ck3 = 8920 ck3 = 8928 ck3 = 8930 ck3 = 13265 } # Gaoliang -> Yining, Yangjiang, Duling, Dianbai, Luoshi, Yangshui, Tongling, Shuangshui, Zhennan, (Unknown) + link = { autogenerated = yes imp = 9168 ck3 = 10294 ck3 = 10382 ck3 = 8921 ck3 = 8923 } # Linyun -> Xinhui, Huangziwei, Tinxing, Pingxing + link = { autogenerated = yes imp = 9143 ck3 = 10293 ck3 = 10296 ck3 = 10297 ck3 = 12972 ck3 = 8900 ck3 = 12998 ck3 = 8897 } # Boluo -> Dongguan, Tunmen, Bao'an, Jieyang, Guishan, Yong'an, Boluo + link = { autogenerated = yes imp = 8931 ck3 = 10290 ck3 = 10410 ck3 = 10289 ck3 = 10407 } # Guqielan -> Duoli, Chenshui, Shiniu, Huangzhou + link = { autogenerated = yes imp = 2697 imp = 2503 ck3 = 1029 } # Mare Tyrrhenum, Mare Tyrrhenum -> Tyrrhenian Sea + link = { autogenerated = yes imp = 9421 ck3 = 10284 ck3 = 9781 ck3 = 9815 ck3 = 9816 } # Changping -> Zizhou, Lingnan_Nanning_Fu_Nanning, Lingnan_Qinzhou_Lingshan, Lingnan_Qinzhou_Gusendong + link = { autogenerated = yes imp = 9177 ck3 = 10281 ck3 = 13090 ck3 = 10188 ck3 = 10283 ck3 = 10390 ck3 = 9840 } # Zengshi -> Leyan, Wenzhou South, Nazhou, Wenzhou, Geliang, Lingnan_Taiping_Chongzuo + link = { autogenerated = yes imp = 9174 ck3 = 10280 } # Guilin -> Silong + link = { autogenerated = yes imp = 2548 imp = 2547 imp = 2695 ck3 = 1028 } # Sinus Genuensis, Mare Ligusticum, Mare Ligusticum -> Gulf of Genoa + link = { autogenerated = yes imp = 9159 ck3 = 10278 ck3 = 8892 ck3 = 8922 ck3 = 8926 } # Xinning -> Majiang, Nanhai, Yongshun, Jinkang + link = { autogenerated = yes imp = 9150 ck3 = 10275 ck3 = 10387 } # Mengling -> Mengling, Datong + link = { autogenerated = yes imp = 9094 ck3 = 10270 ck3 = 12956 ck3 = 8809 ck3 = 8836 ck3 = 10348 ck3 = 10349 } # Gumie -> Xinan, Ninghua East, Liancheng, Jinhua, Jiande, Shouchang + link = { autogenerated = yes imp = 2549 imp = 2550 ck3 = 1027 } # Mare Ligusticum, Mare Sardoum -> Cote D'Azur + link = { autogenerated = yes imp = 8821 ck3 = 10269 ck3 = 9768 ck3 = 9769 } # Ju -> b_xingzhou_shunzheng, Xi, Sanquan + link = { autogenerated = yes imp = 8818 ck3 = 10267 } # Gudao -> Liangquan + link = { autogenerated = yes imp = 8293 ck3 = 10266 } # Xi -> Changdao + link = { autogenerated = yes imp = 8816 ck3 = 10265 ck3 = 10264 } # Wudu -> Tonggu, Jiangi + link = { autogenerated = yes imp = 9111 ck3 = 10263 ck3 = 8817 ck3 = 10260 } # Jiangle -> Jianning, Jiangle, Shaowu + link = { autogenerated = yes imp = 9107 ck3 = 10261 ck3 = 8819 } # Ye -> Luxi, Jianyang + link = { autogenerated = yes imp = 6365 imp = 6362 imp = 6366 ck3 = 1026 } # Brigantinus, Everdunensis, Lemannus -> ALP LAKES + link = { autogenerated = yes imp = 8357 imp = 8348 imp = 8390 ck3 = 10259 } # Shan, Dayang, Anyi Hills -> Xia + link = { autogenerated = yes imp = 8360 ck3 = 10258 ck3 = 9787 } # Lushi -> Lushi, Yiyang + link = { autogenerated = yes imp = 8417 ck3 = 10256 } # Yiyang -> Dingcheng + link = { autogenerated = yes imp = 8992 ck3 = 10255 } # Xiyang -> Guangshan + link = { autogenerated = yes imp = 9066 imp = 9071 ck3 = 10254 } # Yulou, Jinlan -> Yincheng + link = { autogenerated = yes imp = 9060 ck3 = 10253 } # Anfeng -> Gushi + link = { autogenerated = yes imp = 9059 ck3 = 10251 } # Lu -> Shengtang + link = { autogenerated = yes imp = 9061 ck3 = 10250 } # Liao -> Huoqiu + link = { autogenerated = yes imp = 2551 imp = 2552 imp = 2707 ck3 = 1025 } # Sinus Gallicus, Sinus Gallicus, Sinus Gallicus -> Gulf of Lion + link = { autogenerated = yes imp = 9050 ck3 = 10249 } # Quyang -> Shouchun + link = { autogenerated = yes imp = 9175 ck3 = 10247 ck3 = 10248 ck3 = 9762 ck3 = 10244 ck3 = 13262 } # Zhongliu -> Yangshou, Wuxian, Lingnan_Xunzhou_Guigang, Maping, (Unknown) + link = { autogenerated = yes imp = 9181 ck3 = 10242 ck3 = 10392 ck3 = 10241 ck3 = 10389 } # Dingzhou -> Wuyang, Wuyang, Gushu, Zhengping + link = { autogenerated = yes imp = 2710 imp = 2690 ck3 = 1024 } # Mare Sardoum, Mare Sardoum -> Sardinian Sea + link = { autogenerated = yes imp = 9170 ck3 = 10235 ck3 = 10237 ck3 = 10238 } # Dangchang -> Eshi, Puning, Cenxi + link = { autogenerated = yes imp = 9172 ck3 = 10234 ck3 = 13133 } # Bushan -> Yulin, Leixiang Northwest + link = { autogenerated = yes imp = 9169 ck3 = 10233 ck3 = 10236 ck3 = 10425 ck3 = 8909 ck3 = 8911 ck3 = 8912 ck3 = 8913 ck3 = 8914 ck3 = 8916 ck3 = 9802 ck3 = 9803 } # Xuwen -> Longhua, Xinyi, Ducheng, Baoning, Wuchuan, Lianjiang, Ganshui, Shilong, Nanba, Lingnan_Leizhou_Guantou, Lingnan_Leizhou_Zhanjiang + link = { autogenerated = yes imp = 9165 ck3 = 10231 ck3 = 12977 ck3 = 8915 ck3 = 9757 ck3 = 9817 ck3 = 10232 } # Hepu -> Changle, Fengshan, Lingluo, Lingnan_Lianzhou_Hepu, Lingnan_Qinzhou_Anyuan, Bobai + link = { autogenerated = yes imp = 2705 imp = 2562 imp = 2704 imp = 2717 ck3 = 1023 } # Mare Internum, Mare Internum, Mare Sardoum, Mare Sardoum -> Coast of Algier + link = { autogenerated = yes imp = 8935 ck3 = 10229 ck3 = 13055 ck3 = 10204 ck3 = 10228 } # Pingyi -> Huizhou, Huizhou West, Nazhou, (Unknown) + link = { autogenerated = yes imp = 8883 ck3 = 10222 ck3 = 10226 ck3 = 9731 } # Bodao -> Qianwei, Bodao, Jiang'an + link = { autogenerated = yes imp = 8885 ck3 = 10221 ck3 = 10223 ck3 = 10227 ck3 = 9727 ck3 = 9728 } # Nanan -> Longyou, Suishan, Yibin, Jingyan, Xuchuan + link = { autogenerated = yes imp = 2716 imp = 2561 ck3 = 1022 } # Mare Hibericum, Mare Hibericum -> Coast of Algier + link = { autogenerated = yes imp = 8877 ck3 = 10219 ck3 = 9714 } # Wenjiang -> Jiulong, Mianzhu + link = { autogenerated = yes imp = 8870 ck3 = 10217 ck3 = 10220 } # Yan -> Lingchi, Yuexi + link = { autogenerated = yes imp = 8866 imp = 8867 ck3 = 10216 } # Chengdu, Pi -> Chengdu + link = { autogenerated = yes imp = 8874 ck3 = 10215 ck3 = 10438 } # Yandao -> Rongjing, Luomu + link = { autogenerated = yes imp = 8873 ck3 = 10214 } # Xi -> Mingshan + link = { autogenerated = yes imp = 8880 ck3 = 10213 } # Maoniu -> Tongwang + link = { autogenerated = yes imp = 8872 ck3 = 10211 ck3 = 10224 ck3 = 10225 ck3 = 10320 } # Qingyi -> Yuannanzhou, Danling, Hongya, Lingchuan + link = { autogenerated = yes imp = 12692 ck3 = 10210 ck3 = 9333 ck3 = 9330 } # Bran -> Yaochuan, Rongzhag, Darzedo + link = { autogenerated = yes imp = 2524 ck3 = 1021 } # Mare Balearium -> Gulf of Valencia + link = { autogenerated = yes imp = 8838 ck3 = 10207 ck3 = 10209 ck3 = 10446 ck3 = 10414 ck3 = 12955 } # Jiangzhou -> Bishan, Jiangjin, Something_1, Nanchuan, Liancheng Northeast + link = { autogenerated = yes imp = 8890 ck3 = 10203 ck3 = 10411 ck3 = 13058 ck3 = 10412 } # Nanguang -> Sie'e, Dunzhou, Sie'e Southwest, Fude + link = { autogenerated = yes imp = 8891 ck3 = 10201 ck3 = 10202 ck3 = 10415 ck3 = 10882 } # Shushi -> Shama, Nanzhou, Zhaotong_Zhaotong, Jianchang_Shama + link = { autogenerated = yes imp = 8900 ck3 = 10200 } # Qianjie -> Quzhou + link = { autogenerated = yes imp = 2558 imp = 2728 ck3 = 1020 } # Mare Hibericum, Mare Hibericum -> Alboran Sea + link = { autogenerated = yes imp = 12608 ck3 = 102 ck3 = 109 ck3 = 142 } # Loodak -> VALMIERA, VENDEN, RAUNA + link = { autogenerated = yes imp = 8879 ck3 = 10199 ck3 = 10212 } # Zuodu -> Nuozuo, Hanyuan + link = { autogenerated = yes imp = 8897 imp = 12691 ck3 = 10198 } # Lan, Rikan -> Wudeng + link = { autogenerated = yes imp = 8896 ck3 = 10197 ck3 = 13059 } # Lingwan -> Poyan, Poyan North + link = { autogenerated = yes imp = 8933 ck3 = 10195 ck3 = 10196 ck3 = 10287 ck3 = 10189 ck3 = 10194 ck3 = 10286 ck3 = 13102 } # Wulian -> Luogong, Bangzhou, Houzhou, Shuangchengzhou, Nanpingzhou, Ezhou, Langxi Southwest + link = { autogenerated = yes imp = 8934 ck3 = 10191 ck3 = 13150 ck3 = 10230 } # Yelang -> Mingzhou, Tongmi, Puningzhou + link = { autogenerated = yes imp = 5738 imp = 5734 ck3 = 1019 } # Mare Hibernicum, Mare Hibernicum -> Irish Sea + link = { autogenerated = yes imp = 8686 imp = 8690 ck3 = 10187 } # Lingshou, Nanhangtang -> Zhending + link = { autogenerated = yes imp = 8679 imp = 8683 imp = 8692 ck3 = 10183 } # Ren, Boren, Hao -> Julu + link = { autogenerated = yes imp = 8635 ck3 = 10180 ck3 = 10182 } # Zhan -> Fuyang, Longgang + link = { autogenerated = yes imp = 6450 ck3 = 1018 ck3 = 1101 ck3 = 1486 ck3 = 5854 ck3 = 5858 ck3 = 943 ck3 = 955 ck3 = 997 ck3 = 956 } # LAKE -> FINNISH LAKES 2, Sheksna River, RUSSIAN LAKES 2, Bjarmaland lakes, Siberian Lake, Näsijärvi, Saimaa, Onega, FINISEH LAKES 1 + link = { autogenerated = yes imp = 8682 ck3 = 10179 ck3 = 10181 } # Xing -> Wuan, Yong + link = { autogenerated = yes imp = 8691 imp = 9396 ck3 = 10178 } # Fangzi, Impassable -> b_mingzhou_pingen + link = { autogenerated = yes imp = 8588 ck3 = 10174 } # Tujun -> Shilou + link = { autogenerated = yes imp = 8353 ck3 = 10173 ck3 = 10176 ck3 = 10177 ck3 = 10306 ck3 = 10305 } # Hunie -> Xichuan, Pu, Daning, Wencheng, Luxiang + link = { autogenerated = yes imp = 8351 ck3 = 10171 ck3 = 10304 ck3 = 12247 } # Pingyang -> Jishi, Jiang, CirHedong_Huoxi + link = { autogenerated = yes imp = 2602 imp = 2598 imp = 2599 imp = 2603 imp = 2604 imp = 2606 imp = 2607 imp = 2608 imp = 4724 imp = 5865 imp = 7749 imp = 7750 ck3 = 1017 } # Mare Creticum, Mare Creticum, Mare Creticum, Sinus Argolicus, Sinus Saronicus, Mare Creticum, Mare Myrtoum, Mare Aegaeum, Sinus Laconicus, Mare Myrtoum, $PROV2607$, $PROV2607$ -> Aegean Sea + link = { autogenerated = yes imp = 8601 ck3 = 10169 ck3 = 10172 ck3 = 10175 } # Pingzhou -> Xihe, Fenxi, b_xizhou_wenquan + link = { autogenerated = yes imp = 8637 ck3 = 10167 ck3 = 10168 ck3 = 13040 } # Wu -> Qinyuan, Mianshang, Tunliu Northwest + link = { autogenerated = yes imp = 8639 ck3 = 10164 ck3 = 10166 } # Yuci -> Heshun, (Unknown) + link = { autogenerated = yes imp = 8633 ck3 = 10162 ck3 = 10163 ck3 = 10165 } # Nie -> She, Liaoshan, Yushe + link = { autogenerated = yes imp = 8631 ck3 = 10161 } # Ti -> Tunliu + link = { autogenerated = yes imp = 8632 ck3 = 10160 } # Xiangyuan -> Huguan + link = { autogenerated = yes imp = 5677 imp = 4748 imp = 5675 imp = 5676 imp = 5679 imp = 5681 imp = 5682 imp = 5684 imp = 5691 ck3 = 1016 } # Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Oceanus Atlanticus, Oceanus Atlanticus -> Bay of Biscay + link = { autogenerated = yes imp = 8625 imp = 8376 ck3 = 10159 } # Gaodu, Yewang -> b_huaizhou_henei + link = { autogenerated = yes imp = 8627 ck3 = 10158 } # Yishi -> Lingchun + link = { autogenerated = yes imp = 8355 ck3 = 10157 ck3 = 10303 ck3 = 13174 } # Jiang -> Qishui, Yuan, (Unknown) + link = { autogenerated = yes imp = 8350 ck3 = 10156 } # Duanshi -> Jincheng + link = { autogenerated = yes imp = 8333 ck3 = 10154 ck3 = 13039 } # Fanpang -> Yichuan, Heyang Northwest + link = { autogenerated = yes imp = 8327 imp = 8341 ck3 = 10153 } # Linjin, Yinjin -> Heyang + link = { autogenerated = yes imp = 8328 ck3 = 10152 } # Pinyang -> Baishui + link = { autogenerated = yes imp = 8317 imp = 8314 imp = 8315 imp = 8316 ck3 = 10151 } # Wugong, Huaili, Meiyang, Haozhi -> Haozhi + link = { autogenerated = yes imp = 8338 imp = 8313 imp = 8334 imp = 8336 imp = 8337 ck3 = 10150 } # Xi, Xianyang, Chang An, Zhiyang, Liyi -> Yueyang + link = { autogenerated = yes imp = 5678 imp = 5672 imp = 5673 imp = 5680 imp = 6314 ck3 = 1015 } # Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, LAKE -> Bay of Biscay + link = { autogenerated = yes imp = 8335 ck3 = 10149 ck3 = 13038 } # Lantian -> Lantian, Heyang Northeast + link = { autogenerated = yes imp = 8324 ck3 = 10146 } # Yunyang -> Huayan + link = { autogenerated = yes imp = 8323 imp = 8325 ck3 = 10145 } # Gaoling, Yueyang -> Meiyuan + link = { autogenerated = yes imp = 8577 ck3 = 10144 } # Yangzhou -> Yanchang + link = { autogenerated = yes imp = 8581 ck3 = 10143 ck3 = 13124 } # Luodu -> Fuzheng, b_yanzhou_wuyuan_northwest + link = { autogenerated = yes imp = 8578 ck3 = 10141 ck3 = 10155 } # Gaonu -> Fushi, Menshan + link = { autogenerated = yes imp = 4783 imp = 4740 imp = 4741 imp = 4749 ck3 = 1014 } # Mare Cantabrum, Mare Cantabrum, Mare Cantabrum, Mare Cantabrum -> Coast of Asturias + link = { autogenerated = yes imp = 8331 imp = 8332 ck3 = 10139 } # Rui, Ya -> Fucheng + link = { autogenerated = yes imp = 8580 ck3 = 10138 } # Qiyuan -> Zhongbu + link = { autogenerated = yes imp = 8569 imp = 8565 ck3 = 10137 } # Zhilu, Luepan -> Zhiluo + link = { autogenerated = yes imp = 8579 ck3 = 10135 ck3 = 10136 } # Diaoyin -> Luojiao, Luochuan + link = { autogenerated = yes imp = 8309 imp = 8312 ck3 = 10133 } # Yong, Mei -> Purun + link = { autogenerated = yes imp = 8819 ck3 = 10131 ck3 = 13188 } # Lixian -> Wushan, (Unknown) + link = { autogenerated = yes imp = 8307 imp = 8310 ck3 = 10129 } # Qian, Chencang -> Qianyuan + link = { autogenerated = yes imp = 8277 ck3 = 10128 } # Lu -> Lintai + link = { autogenerated = yes imp = 8274 ck3 = 10126 } # Jingyang -> Baoding + link = { autogenerated = yes imp = 8568 imp = 8319 ck3 = 10125 } # Chungu, Qi -> b_binzhou_sanshui + link = { autogenerated = yes imp = 8308 ck3 = 10124 } # Duyang -> Xinping + link = { autogenerated = yes imp = 8276 ck3 = 10123 ck3 = 13085 } # Pengyang -> b_something_pengyuan, Fangqu West + link = { autogenerated = yes imp = 8564 imp = 8279 ck3 = 10122 } # Niyang, Yiqu -> b_something_ding_an + link = { autogenerated = yes imp = 8275 ck3 = 10120 } # Anwu -> Tongchuan + link = { autogenerated = yes imp = 6451 ck3 = 1012 } # LAKE -> Lake Peipus + link = { autogenerated = yes imp = 8563 ck3 = 10119 } # Yuzhi -> Anhua + link = { autogenerated = yes imp = 8570 ck3 = 10117 ck3 = 10118 ck3 = 10121 } # Guide -> Huai'an, Luoyuan, b_tongzhou_huachi + link = { autogenerated = yes imp = 8566 ck3 = 10116 } # Fangqu -> Fangqu + link = { autogenerated = yes imp = 8272 imp = 8273 ck3 = 10114 } # Gaoping, Chaona -> Pingliang + link = { autogenerated = yes imp = 8597 ck3 = 10110 ck3 = 10442 } # Zengshan -> Fengzhou Northeast, (Unknown) + link = { autogenerated = yes imp = 2559 imp = 2727 ck3 = 1011 } # Mare Hibericum, Mare Hibericum -> Alboran Sea + link = { autogenerated = yes imp = 8667 ck3 = 10109 } # Shanan -> Yulin + link = { autogenerated = yes imp = 8594 imp = 8623 ck3 = 10108 } # Fuchang, Nanyu -> Hebin + link = { autogenerated = yes imp = 8576 ck3 = 10107 } # Pingdu -> Longquan + link = { autogenerated = yes imp = 8575 ck3 = 10431 } # Pingzhou -> Suide + link = { autogenerated = yes imp = 8592 ck3 = 10104 } # Hongmen -> Kaiguang + link = { autogenerated = yes imp = 8593 ck3 = 10103 ck3 = 13078 ck3 = 13139 } # Pingding -> Yincheng, b_linzhou_xintai_southeast, Datong + link = { autogenerated = yes imp = 8584 ck3 = 10102 ck3 = 10105 } # Zhenlin -> Xintai, Zhenxiang + link = { autogenerated = yes imp = 8574 ck3 = 10100 ck3 = 10106 } # Fushi -> b_xiazhou_dejing, Rulin + link = { autogenerated = yes imp = 5703 ck3 = 1010 } # Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 12605 ck3 = 101 } # Saicen -> LEMISELE + link = { autogenerated = yes imp = 8582 ck3 = 10099 ck3 = 10101 ck3 = 13072 ck3 = 13125 ck3 = 13126 ck3 = 10097 } # Baitu -> Shuofan, Ningshuo, Ningshuo South, b_yanzhou_wuyuan_west, b_youzhou_huaide_east, Huaide + link = { autogenerated = yes imp = 8271 ck3 = 10091 ck3 = 10095 ck3 = 10111 ck3 = 10112 ck3 = 10113 ck3 = 10115 ck3 = 10127 ck3 = 13173 } # Sanshui -> Mingsha, Changhua, Xiaoguan, Huaide, Pinggao, Baiquan, Linjing, (Unknown) + link = { autogenerated = yes imp = 8571 ck3 = 10090 ck3 = 13140 } # Fuping -> Lingwu, Changhua North + link = { autogenerated = yes imp = 5697 imp = 5707 imp = 5709 imp = 5711 ck3 = 1009 } # Mare Britannicum, Mare Britannicum, Mare Britannicum, Mare Britannicum -> English Channel + link = { autogenerated = yes imp = 8573 ck3 = 10089 ck3 = 12960 ck3 = 13095 } # Lingwu -> Dingyuan, Huaiyuan, Guiren East + link = { autogenerated = yes imp = 8567 ck3 = 10088 ck3 = 10093 ck3 = 10094 ck3 = 13088 ck3 = 13089 ck3 = 10092 } # Xuyan -> Huile, b_yanzhou_wuyuan, Wenchi, Wenchi North, Wenchi Northwest, b_yanzhou_baichi + link = { autogenerated = yes imp = 8688 ck3 = 10087 ck3 = 10184 } # Jingjing -> Yuanshi, Pingji + link = { autogenerated = yes imp = 8689 ck3 = 10085 ck3 = 10086 } # Shangquyang -> Anxi, Zhending + link = { autogenerated = yes imp = 8647 imp = 8717 imp = 8714 ck3 = 10084 } # Guangchang, Tang, Wangdou -> Wangdu + link = { autogenerated = yes imp = 8733 imp = 8732 ck3 = 10083 } # Wuyang, Qiu -> Mancheng + link = { autogenerated = yes imp = 8746 ck3 = 10082 ck3 = 13081 } # Goumao -> Yi, b_yunzhou_lingqiu_east + link = { autogenerated = yes imp = 8644 ck3 = 10081 ck3 = 10078 ck3 = 13165 } # Junren -> Tanglin, Fanchou, (Unknown) + link = { autogenerated = yes imp = 12835 imp = 12814 imp = 12772 imp = 12786 ck3 = 1008 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus -> Gulf of Bothnia + link = { autogenerated = yes imp = 8655 ck3 = 10079 ck3 = 13044 ck3 = 13069 } # Loufan -> Yanmen, Shanyang North, Daizhou West + link = { autogenerated = yes imp = 8641 ck3 = 10076 ck3 = 10077 } # Yu -> Yu, b_taiyuanfu_yangqu + link = { autogenerated = yes imp = 8640 ck3 = 10075 ck3 = 10185 ck3 = 13168 } # Shang ai -> Leping, Yuanshi, (Unknown) + link = { autogenerated = yes imp = 8638 ck3 = 10074 ck3 = 10170 } # Pingtao -> Qingyuan, Pingyao + link = { autogenerated = yes imp = 8636 ck3 = 10073 } # Jinyang -> Taiyuan + link = { autogenerated = yes imp = 8589 ck3 = 10071 } # Lin -> Linquan + link = { autogenerated = yes imp = 8591 ck3 = 10070 } # Gaolang -> Fangshan + link = { autogenerated = yes imp = 8590 ck3 = 10069 } # Lishi -> Lishi + link = { autogenerated = yes imp = 8645 ck3 = 10067 ck3 = 10068 ck3 = 13166 } # Fenyang -> b_lanzhou_jingle, Yifang, (Unknown) + link = { autogenerated = yes imp = 9879 ck3 = 10066 ck3 = 13045 ck3 = 13047 } # Linshui -> Hehe, Shanyang West, Hehe Northwest + link = { autogenerated = yes imp = 9880 imp = 8600 imp = 9395 ck3 = 10065 } # Zhongling, Di Hills, Impassable -> Shanyang + link = { autogenerated = yes imp = 8654 ck3 = 10064 ck3 = 10429 ck3 = 13068 ck3 = 13164 } # Fanzhi -> Mayi, b_shuozhuo_mayi, b_yunzhou_yunzhong_southwest, (Unknown) + link = { autogenerated = yes imp = 8651 ck3 = 10062 ck3 = 13127 } # Gaoliu -> Xingtang, Xingtang East + link = { autogenerated = yes imp = 8658 ck3 = 10061 ck3 = 12394 } # Qiangyin -> b_yunzhou_something, CirLXJ_Wulanchabu + link = { autogenerated = yes imp = 12819 imp = 12771 imp = 12807 imp = 12832 imp = 12833 imp = 12846 ck3 = 1006 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Nova -> Gulf of Finland + link = { autogenerated = yes imp = 8649 ck3 = 10059 } # Yishi -> Yunzhong + link = { autogenerated = yes imp = 9182 ck3 = 10057 ck3 = 10058 ck3 = 10245 ck3 = 10240 ck3 = 10243 ck3 = 10393 } # Tanzhong -> Yongfu, Xiuren, Luorong, Lexing, Luocheng, Langcangdong + link = { autogenerated = yes imp = 9031 ck3 = 10056 ck3 = 10055 ck3 = 13255 } # Shian -> Muhua, Quanyi, (Unknown) + link = { autogenerated = yes imp = 8362 ck3 = 10051 ck3 = 13181 } # Shangluo -> b_something_shangluo, (Unknown) + link = { autogenerated = yes imp = 12785 imp = 12776 imp = 12783 imp = 12800 ck3 = 1005 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus -> Gulf of Bothnia + link = { autogenerated = yes imp = 8826 ck3 = 10048 ck3 = 10054 } # Xi -> Fengli, b_something_shangjin + link = { autogenerated = yes imp = 8827 imp = 9624 ck3 = 10047 } # Yunyang, Changli -> Xunxiang + link = { autogenerated = yes imp = 9628 ck3 = 10046 ck3 = 13199 } # Wudang -> Wudang, (Unknown) + link = { autogenerated = yes imp = 9629 ck3 = 10045 } # Zhuyang -> Gucheng + link = { autogenerated = yes imp = 8964 imp = 8982 imp = 8984 ck3 = 10043 } # Deng, Qi, Xiangyang -> Xiangyang + link = { autogenerated = yes imp = 8364 ck3 = 10042 ck3 = 13029 } # Xi -> Jutang, Jutang West + link = { autogenerated = yes imp = 9632 ck3 = 10041 ck3 = 13183 } # Zhi -> Nanyang, (Unknown) + link = { autogenerated = yes imp = 8959 imp = 8960 imp = 8965 imp = 9630 ck3 = 10040 } # Li, Rang, Zan, Lecheng -> Rang + link = { autogenerated = yes imp = 5854 imp = 5853 imp = 5855 imp = 5857 ck3 = 1004 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, Mare Gothicum -> Baltic Sea + link = { autogenerated = yes imp = 8968 ck3 = 10039 } # Xindou -> Biyang + link = { autogenerated = yes imp = 8958 imp = 8956 imp = 8957 ck3 = 10038 } # Yangqiu, Wan, Bowang -> Fangcheng + link = { autogenerated = yes imp = 8980 ck3 = 10037 ck3 = 10044 } # Bian -> Biyang, Lexiang + link = { autogenerated = yes imp = 8963 ck3 = 10036 } # Caiyang -> Zaoyang + link = { autogenerated = yes imp = 8967 ck3 = 10034 ck3 = 10035 ck3 = 13193 } # Shangyong -> Sui, Tangcheng, (Unknown) + link = { autogenerated = yes imp = 8998 ck3 = 10033 ck3 = 13203 } # Yundu -> Fushui, (Unknown) + link = { autogenerated = yes imp = 8981 ck3 = 10032 } # Shangpang -> Changshou + link = { autogenerated = yes imp = 8995 ck3 = 10030 ck3 = 10031 ck3 = 13028 } # Jingling -> Mianyang, Jinling, Yongqing + link = { autogenerated = yes imp = 5847 ck3 = 1003 } # Oceanus Sarmaticus -> Bight of Hano + link = { autogenerated = yes imp = 9008 ck3 = 13022 } # Lingyang -> Shimen Southeast + link = { autogenerated = yes imp = 9005 ck3 = 10028 ck3 = 13154 } # Wangdu -> Wuling, Anxiang + link = { autogenerated = yes imp = 9009 ck3 = 10027 ck3 = 10025 } # Chanling -> Liyang, Cili + link = { autogenerated = yes imp = 8976 ck3 = 10024 } # Gaocheng -> An + link = { autogenerated = yes imp = 8979 ck3 = 10023 ck3 = 13007 } # Dangyang -> Dangyang, Qianjiang + link = { autogenerated = yes imp = 8975 ck3 = 10022 ck3 = 10029 ck3 = 13005 } # Huarong -> Shishou, Jianli, Jianli North + link = { autogenerated = yes imp = 8977 imp = 9013 ck3 = 10021 } # Yidao, Henshan -> Yidu + link = { autogenerated = yes imp = 8986 ck3 = 10020 } # Yiling -> Yiling + link = { autogenerated = yes imp = 5851 ck3 = 1002 } # Oceanus Sarmaticus -> Gulf of Gdansk + link = { autogenerated = yes imp = 8985 ck3 = 10019 } # Linju -> Yuanan + link = { autogenerated = yes imp = 8829 ck3 = 10018 } # Shangyong -> Zhushan + link = { autogenerated = yes imp = 8830 ck3 = 10017 ck3 = 10016 } # Fangling -> Fangling, Yiqing + link = { autogenerated = yes imp = 8987 ck3 = 10015 } # Zigui -> Zigui + link = { autogenerated = yes imp = 5833 imp = 5834 imp = 5835 imp = 6337 ck3 = 1001 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus, LAKE -> Kattegat + link = { autogenerated = yes imp = 8839 ck3 = 10008 ck3 = 10006 ck3 = 10007 ck3 = 10009 } # Zhi -> Lewen, Fuling, Wulong, Ligao + link = { autogenerated = yes imp = 8932 ck3 = 10003 ck3 = 10005 ck3 = 10012 ck3 = 10013 ck3 = 13056 ck3 = 10004 ck3 = 10011 ck3 = 10288 } # Bi -> Suiyang, Yiquan, Zunyi, Daishui, Huizhou East, Yangchuan, Yelang, Long + link = { autogenerated = yes imp = 9000 ck3 = 10001 ck3 = 13227 } # Yuanling -> Zijiang, (Unknown) + link = { autogenerated = yes imp = 9010 ck3 = 10000 ck3 = 10002 ck3 = 10409 ck3 = 13155 ck3 = 9831 ck3 = 9832 ck3 = 9830 ck3 = 13237 } # Sanshangu -> Eshan, Chengle, Zijiang, Pengshui, Siqiong, Ningyi, Wuchuan, (Unknown) + link = { autogenerated = yes imp = 5809 imp = 5785 imp = 5786 imp = 5808 imp = 6326 ck3 = 1000 } # Mare Germanicum, Mare Germanicum, Mare Germanicum, Mare Germanicum, LAKE -> Gulf of Heligoland + link = { autogenerated = yes imp = 12611 ck3 = 100 ck3 = 144 ck3 = 147 } # Leemi -> VILJANDI, VALGA, ALISTEGUNDE + link = { autogenerated = yes imp = 2204 imp = 2203 ck3 = 10 } # Venicnia Borealis, Venicnia Orientalis -> RAPHOE + link = { imp = 3222 } # (Unknown) -> DROPPED + link = { imp = 1453 ck3 = 496 } # Byzantion -> Byzantion + link = { imp = 1 ck3 = 2575 } # Roma -> ROMA +} diff --git a/ImperatorToCK3/Data_Files/configurables/province_mappings/imperator_vanilla.txt b/ImperatorToCK3/Data_Files/configurables/province_mappings/vanilla_ir_to_vanilla_ck3.txt similarity index 99% rename from ImperatorToCK3/Data_Files/configurables/province_mappings/imperator_vanilla.txt rename to ImperatorToCK3/Data_Files/configurables/province_mappings/vanilla_ir_to_vanilla_ck3.txt index 20dd171c2..e678d7862 100644 --- a/ImperatorToCK3/Data_Files/configurables/province_mappings/imperator_vanilla.txt +++ b/ImperatorToCK3/Data_Files/configurables/province_mappings/vanilla_ir_to_vanilla_ck3.txt @@ -1,4 +1,4 @@ -imperator_vanilla = { +vanilla_ir_to_vanilla_ck3 = { triangulation_pair = { srcX = 5683 srcY = 418 dstX = 4784 dstY = 1941 } triangulation_pair = { srcX = 5141 srcY = 535 dstX = 4410 dstY = 1849 } triangulation_pair = { srcX = 1873 srcY = 1404 dstX = 1814 dstY = 1835 } @@ -1405,11 +1405,11 @@ imperator_vanilla = { link = { autogenerated = yes imp = 5710 ck3 = 965 } # Fretum Gallicum -> Strait of Dover link = { autogenerated = yes imp = 7080 ck3 = 9649 } # Dantapura -> Srikakulam link = { autogenerated = yes imp = 7081 ck3 = 9648 ck3 = 1224 } # Kalinganagara -> Kalinganagara, Mandasa - link = { autogenerated = yes imp = 6351 ck3 = 963 } # LAKE -> Vnern - link = { autogenerated = yes imp = 6349 ck3 = 962 } # LAKE -> Vttern + link = { autogenerated = yes imp = 6351 ck3 = 963 } # LAKE -> V�nern + link = { autogenerated = yes imp = 6349 ck3 = 962 } # LAKE -> V�ttern link = { autogenerated = yes imp = 6741 ck3 = 9608 ck3 = 9607 } # Yutian -> Dondan_Oilik, Lafak link = { autogenerated = yes imp = 6752 ck3 = 9602 } # Sherchan -> Saca - link = { autogenerated = yes imp = 6347 ck3 = 959 } # LAKE -> Mlaren + link = { autogenerated = yes imp = 6347 ck3 = 959 } # LAKE -> M�laren link = { autogenerated = yes imp = 2730 ck3 = 954 } # Fretum Gaditanum -> Strait of Gibraltar link = { autogenerated = yes imp = 4588 imp = 2993 imp = 2994 imp = 2997 imp = 4572 imp = 4573 imp = 4574 imp = 4575 imp = 4576 imp = 4577 imp = 4584 ck3 = 952 } # Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum, Mare Hyrcanum -> Caspian Sea link = { autogenerated = yes imp = 2733 imp = 2755 imp = 2757 imp = 2758 imp = 2762 imp = 2763 ck3 = 951 } # Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus, Pontus Euxinus -> Black Sea @@ -1952,13 +1952,13 @@ imperator_vanilla = { link = { autogenerated = yes imp = 7501 ck3 = 6378 } # Elephanton Chora -> TOKAR link = { autogenerated = yes imp = 7599 ck3 = 6377 ck3 = 6376 } # Setronon -> SUAKIN, SINKAT link = { autogenerated = yes imp = 7596 imp = 7595 ck3 = 6371 } # Canarbis, Arachos -> DUNGUNAB - link = { autogenerated = yes imp = 5848 ck3 = 637 } # Mare Eovium -> Coast of land + link = { autogenerated = yes imp = 5848 ck3 = 637 } # Mare Eovium -> Coast of �land link = { autogenerated = yes imp = 626 ck3 = 6368 ck3 = 6369 } # Napata -> REDAB, KUWEIB link = { autogenerated = yes imp = 646 ck3 = 6367 } # Fourth Cataract -> SHEMKHIYA link = { autogenerated = yes imp = 643 imp = 640 ck3 = 6365 } # Araba, Epis -> KELI link = { autogenerated = yes imp = 644 ck3 = 6364 } # Naqa -> SHENDI link = { autogenerated = yes imp = 592 ck3 = 6361 ck3 = 6362 } # Talmis -> SABAGURA, KALABSHA - link = { autogenerated = yes imp = 5856 ck3 = 636 } # Oceanus Sarmaticus -> Coast of land + link = { autogenerated = yes imp = 5856 ck3 = 636 } # Oceanus Sarmaticus -> Coast of �land link = { autogenerated = yes imp = 605 imp = 607 ck3 = 6359 } # Noa, Gugo -> KASSI-MARKOL link = { autogenerated = yes imp = 7592 imp = 634 imp = 637 imp = 638 imp = 7587 ck3 = 6358 } # Ganagaras, Darou, Mallo, Sakolche, Anak -> ED-DAMER link = { autogenerated = yes imp = 635 imp = 629 imp = 631 imp = 636 imp = 639 ck3 = 6357 } # Galim, Sankole, Gora, Seserem, Tadu -> AL-BAWGA @@ -3761,7 +3761,7 @@ imperator_vanilla = { link = { autogenerated = yes imp = 7665 imp = 7771 ck3 = 3253 } # Lacus Ligustinus, Baetis -> Guadalquivir link = { autogenerated = yes imp = 7863 ck3 = 3251 } # Flumen Anas -> Guadiana link = { autogenerated = yes imp = 7862 ck3 = 3250 } # Flumen Anas -> Guadiana - link = { autogenerated = yes imp = 7846 ck3 = 3247 } # Rhodanus -> Rhne + link = { autogenerated = yes imp = 7846 ck3 = 3247 } # Rhodanus -> Rh�ne link = { autogenerated = yes imp = 8034 ck3 = 3245 ck3 = 3246 } # Padus -> Po, Po link = { autogenerated = yes imp = 8032 imp = 8033 ck3 = 3244 } # Padus, Padus -> Po link = { autogenerated = yes imp = 8031 imp = 8030 ck3 = 3243 } # Padus, Padus -> Po @@ -5315,7 +5315,7 @@ imperator_vanilla = { link = { autogenerated = yes imp = 2689 imp = 2698 imp = 2699 imp = 2700 ck3 = 1030 } # Mare Tyrrhenum, Mare Tyrrhenum, Mare Tyrrhenum, Mare Tyrrhenum -> Coast of Sardinia link = { autogenerated = yes imp = 2697 imp = 2503 ck3 = 1029 } # Mare Tyrrhenum, Mare Tyrrhenum -> Tyrrhenian Sea link = { autogenerated = yes imp = 2548 imp = 2547 imp = 2695 ck3 = 1028 } # Sinus Genuensis, Mare Ligusticum, Mare Ligusticum -> Gulf of Genoa - link = { autogenerated = yes imp = 2549 imp = 2550 ck3 = 1027 } # Mare Ligusticum, Mare Sardoum -> Cte D'Azur + link = { autogenerated = yes imp = 2549 imp = 2550 ck3 = 1027 } # Mare Ligusticum, Mare Sardoum -> C�te D'Azur link = { autogenerated = yes imp = 6366 imp = 6362 imp = 6364 imp = 6365 ck3 = 1026 } # Lemannus, Everdunensis, LAKE, Brigantinus -> ALP LAKES link = { autogenerated = yes imp = 2551 imp = 2552 imp = 2707 ck3 = 1025 } # Sinus Gallicus, Sinus Gallicus, Sinus Gallicus -> Gulf of Lion link = { autogenerated = yes imp = 2710 imp = 2690 ck3 = 1024 } # Mare Sardoum, Mare Sardoum -> Sardinian Sea @@ -5333,7 +5333,7 @@ imperator_vanilla = { link = { autogenerated = yes imp = 5703 ck3 = 1010 } # Mare Britannicum -> English Channel link = { autogenerated = yes imp = 5697 imp = 5707 imp = 5709 imp = 5711 ck3 = 1009 } # Mare Britannicum, Mare Britannicum, Mare Britannicum, Mare Britannicum -> English Channel link = { autogenerated = yes imp = 5854 imp = 5853 imp = 5857 ck3 = 1004 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Mare Gothicum -> Baltic Sea - link = { autogenerated = yes imp = 5847 ck3 = 1003 } # Oceanus Sarmaticus -> Bight of Han + link = { autogenerated = yes imp = 5847 ck3 = 1003 } # Oceanus Sarmaticus -> Bight of Han� link = { autogenerated = yes imp = 5851 ck3 = 1002 ck3 = 1052 } # Oceanus Sarmaticus -> Gulf of Gdansk, Vistula link = { autogenerated = yes imp = 5833 imp = 5834 imp = 5835 ck3 = 1001 } # Oceanus Sarmaticus, Oceanus Sarmaticus, Oceanus Sarmaticus -> Kattegat link = { autogenerated = yes imp = 5809 imp = 5785 imp = 5808 imp = 6326 ck3 = 1000 } # Mare Germanicum, Mare Germanicum, Mare Germanicum, LAKE -> Gulf of Heligoland diff --git a/ImperatorToCK3/Data_Files/configurables/religion_map.txt b/ImperatorToCK3/Data_Files/configurables/religion_map.txt index 876059a87..7bd6013e1 100644 --- a/ImperatorToCK3/Data_Files/configurables/religion_map.txt +++ b/ImperatorToCK3/Data_Files/configurables/religion_map.txt @@ -278,7 +278,8 @@ link = { ck3 = finnish_pagan ir = uralic_pantheon ir = ukonusko } # ukonusko com # Burmic (from Invictus) link = { ck3 = khasi_animism ir = burmese_religion ck3Culture = khasi } # Rajas faith link = { ck3 = wa_animism ir = burmese_religion ck3Culture = wa } # Rajas faith -link = { ck3=burmic ir=burmese_religion } +link = { ck3 = bilikuism ir = burmese_religion ck3Culture = nakkavaram } # Base Game; Native faith of Andaman/Nicobar Islands +link = { ck3 = burmic ir = burmese_religion } # Hurrian link = { ck3=hurrian ir=hurrian_pantheon ir=hurrian_religion } # added by Invictus and Bronze Age @@ -286,65 +287,84 @@ link = { ck3=hurrian ir=hurrian_pantheon ir=hurrian_religion } # added by Invict # Elamite link = { ck3 = elamite_faith ir = elamite_pantheon } -### Terra-Indomita to RoA +### Terra-Indomita ## Ruism -link = { ck3 = jingxue ir = confucian } # Mapping to Jingxue since it seems to have a higher emphasis on classical teachings. Lixue seems to have been created during the Song dynasty, well after Imperator Rome, and Hanru was during the Han Dynasty, which is a specific state that doesn't actually exist in Imperator Rome (Not to be confused with the Han tag, they are different) +link = { ck3 = jingxue ir = confucian } # Mapping to Jingxue since it seems to have a higher emphasis on classical teachings. Lixue/Daoxue seems to have been created during the Song dynasty, well after Imperator Rome ## Shenic -link = { ck3 = shendao ir = chinese_religions } # Shenic seems like it is supposed to represent traditional chinese religions/beliefs -link = { ck3 = pagan ir = chinese_religions } # Fallback for Invictus since they added it until All Under Heaven gets released (hopefully adding a good mapping). Might need to create a custom converter faith later if nothing good comes. +link = { ck3 = shendao ir = chinese_religions } # ROA +link = { ck3 = shenic ir = chinese_religions } ## Taoism -link = { ck3 = zhengyi ir = taoism } +link = { ck3 = zhengyi ir = taoism } # This seems to be the most relevant form of Taoism at the time, so for now will just map to this, could change later. ## Hanitu -link = { ck3 = formosa_animism ir = taiwan_religion } +link = { ck3 = formosa_animism ir = taiwan_religion } # ROA +link = { ck3 = hanitu ir = taiwan_religion } # AEP +link = { ck3 = hantuism ir = taiwan_religion } # Base Game ## Fuchite -link = { ck3 = ainu_paganism ir = ainu_religion } +link = { ck3 = ainu_paganism ir = ainu_religion } # ROA +link = { ck3 = kamuyism ir = ainu_religion } # AEP +link = { ck3 = kamuyism_pagan ir = ainu_religion } # Base Game ## Yzic -link = { ck3 = yzng ir = nivkh_religion } +link = { ck3 = yzng ir = nivkh_religion } # ROA +link = { ck3 = kivungism ir = nivkh_religion } # AEP +link = { ck3 = shamanism ir = nivkh_religion } # Base Game ## Unaric -link = { ck3 = ryukyu_animism ir = okinawa_religion } +link = { ck3 = ryukyu_animism ir = okinawa_religion } # ROA +link = { ck3 = utaki ir = okinawa_religion } # Base Game/AEP ## Anito -link = { ck3 = kabunian ir = pinoy_religion ck3Culture = idaya ck3Culture = ilokano } # Filipino faith of these cultures -link = { ck3 = malyari ir = pinoy_religion ck3Culture = tagalog ck3Culture = palawan } # Filipino faith of these cultures -link = { ck3 = dayaw ir = pinoy_religion ck3Culture = bisaya } # Filipino faith of these cultures -link = { ck3 = tulumanon ir = pinoy_religion } # Filipino faith of cultures/places out of Terra-Indomita scope, so just going to use that as fallback +link = { ck3 = kabunian ir = pinoy_religion ck3Culture = idaya ck3Culture = ilokano } # ROA; Filipino faith of these cultures +link = { ck3 = malyari ir = pinoy_religion ck3Culture = tagalog ck3Culture = palawan } # ROA; Filipino faith of these cultures +link = { ck3 = dayaw ir = pinoy_religion ck3Culture = bisaya } # ROA; Filipino faith of these cultures +link = { ck3 = tulumanon ir = pinoy_religion } # ROA; Filipino faith of cultures/places out of Terra-Indomita scope, so just going to use that as fallback +link = { ck3 = anito ir = pinoy_religion } # AEP +link = { ck3 = dayawism ir = pinoy_religion } # Base Game ## Muisic -link = { ck3 = muism ir = yi_religions } +link = { ck3 = muism ir = yi_religions } # ROA +link = { ck3 = musok ir = yi_religions } # AEP +link = { ck3 = mu ir = yi_religions } # Base Game ## Baiyue link = { ck3 = hmongism ir = baiyue_religions ck3Culture = hmong ck3Culture = sheren ck3Culture = yao } # In Imperator, cultures that map to these cultures follow Baiyue -link = { ck3 = shendao ir = baiyue_religions } # Not sure how realistic this is. In Imperator, Baiyue is followed by the Yue and Miao culture groups. The Miao cultures map to hmongism above. The Yue cultures map to Wu, Min, and Yue in CK3, which all largely practice Wuism (shendao) +link = { ck3 = baiyue_faith ir = baiyue_religions } ## Mohist -link = { ck3 = quanzhen ir = mohism } # Wikipedia says it was a major rival to confucianism, and that it eventually got integrated into sects of Taoism, and ChatGPT says this is the better mapping +link = { ck3 = mohism ir = mohism } ## Kodo link = { ck3 = shinto ir = wa_religions } +# Base game also includes shugendo, which focuses a little more on mountain worship ## Shamanism -link = { ck3 = bugaism ir = tunguistic_religion ck3Culture = evenk } # Faith of Evenk in CK3 -link = { ck3 = abkaism ir = tunguistic_religion } # Faith of other Tungusic peoples, so will be fallback +link = { ck3 = bugaism ir = tunguistic_religion ck3Culture = evenk } # ROA; Faith of Evenk in CK3 +link = { ck3 = abkaism ir = tunguistic_religion } # ROA; Faith of other Tungusic peoples, so will be fallback +link = { ck3 = endurism ir = tunguistic_religion } # AEP +link = { ck3 = shamanism ir = tunguistic_religion } # Base Game -## Phiism (Religion of the Tai peoples of Indochina) -link = { ck3 = ban_phi ir = satsana_phi_religion } # Fallback, RICE & Rajas faith +## Phiism +link = { ck3 = ban_phi ir = satsana_phi_religion } # ROA/AEP +link = { ck3 = satsana_phi ir = satsana_phi_religion } # Base Game ## Yungism -link = { ck3 = kuy_animism ir = funan_religion } # Fallback, Rajas faith +link = { ck3 = kuy_animism ir = funan_religion } # ROA/AEP +link = { ck3 = burmic ir = funan_religion } # Base Game; Description mentions it's similarity to Natic, so mapping to that *for now*, until a custom faith is made ## Dukunic -link = { ck3 = nias_animism ir = austronesian_religion ck3Culture = nias } -link = { ck3 = kadai ir = austronesian_religion ck3Culture = aslian } # No info, but Aslian peoples follow this in Rajas -link = { ck3 = umboh ir = austronesian_religion ck3Culture = seletar ck3Culture = moklen } # Moklen and Seletar peoples follow it in Rajas -link = { ck3 = mentawai_animism ir = austronesian_religion ck3Culture = mentawai } -link = { ck3 = batak_animism ir = austronesian_religion ck3Culture = batak } -link = { ck3 = malayic ir = austronesian_religion } +link = { ck3 = nias_animism ir = austronesian_religion ck3Culture = nias } # ROA +link = { ck3 = kadai ir = austronesian_religion ck3Culture = aslian } # ROA; No info, but Aslian peoples follow this in Rajas +link = { ck3 = umboh ir = austronesian_religion ck3Culture = seletar ck3Culture = moklen } # AEP/ROA; Moklen and Seletar peoples follow it in Rajas +link = { ck3 = mentawai_animism ir = austronesian_religion ck3Culture = mentawai } # ROA +link = { ck3 = batak_animism ir = austronesian_religion ck3Culture = batak } # ROA +link = { ck3 = batak ir = austronesian_religion ck3Culture = batak } # AEP +link = { ck3 = bilikuism ir = austronesian_religion ck3Culture = nakkavaram } # Base Game; Native faith of Andaman/Nicobar Islands +link = { ck3 = malayic ir = austronesian_religion } # AEP/ROA +link = { ck3 = hantuism ir = austronesian_religion } # Base Game seems to be using this as a "fallback" for all over the islands, so using this for now ## Mastoic link = { ck3 = nuristani_pagan ir = masto_pantheon } # Areas match, and descriptions in both games say they likely predate Vedic beliefs @@ -353,78 +373,13 @@ link = { ck3 = nuristani_pagan ir = masto_pantheon } # Areas match, and descript link = { ck3 = shrautism ir = charvaka } # There doesn't seem to be a perfect fit for this, but according to ChatGPT, Shrautism is the best fit ## Moism -link = { ck3 = bimoism ir = tai_religion ck3Culture = yi ck3Culture = caijia } -link = { ck3 = benzhu ir = tai_religion ck3Culture = bai ck3Culture = lisu } -link = { ck3 = moism ir = tai_religion } +link = { ck3 = benzhu ir = tai_religion ck3Culture = bai ck3Culture = lisu } # ROA +link = { ck3 = bimoism ir = tai_religion ck3Culture = yi ck3Culture = caijia ck3Culture = bai } # ROA +link = { ck3 = moism ir = tai_religion } # Base Game/ROA +link = { ck3 = ban_phi ir = tai_religion } # AEP uses this in place of Moism # East Asian religions -## For Asia Expansion Project mod -link = { ck3 = lixue ir = confucian } -link = { ck3 = lixue ir = chinese_religions } # The TI desc of the religion mentions Kong Fuzi (Confucius). -link = { ck3 = zhengyi ir = taoism } -link = { ck3 = hanitu ir = taiwan_religion } -link = { ck3 = kamuyism ir = ainu_religion } # https://www.tota.world/article/853/. From AEP's loc: "According to Ainu tradition, the world is divided into two realms: Kamuy-Moshir, the dwelling place of spirits and deities, and Ainu-Moshir, the physical world inhabited primarily by humans[...]" -link = { ck3 = kivungism ir = nivkh_religion } # AEP characters with gilyak and mishihase cultures (heritage_nivkh) follow this faith. -link = { ck3 = utaki ir = okinawa_religion } # Utaki is the AEP faith for Ryukyu Islands -link = { ck3 = anito ir = pinoy_religion } -link = { ck3 = musok ir = yi_religions } # Muism -link = { ck3 = pagan ir = baiyue_religions } # Found no match, TODO: add a Baiyue faith to CK3. -link = { - ck3 = lixue # According to ChatGPT: "Mohism shares Confucianism's focus on social structure and ethics, but it diverges in its approach to love and the rigidity of social roles. Taoism, on the other hand, is more metaphysical and detached from the ethical and societal concerns of both Mohism and Confucianism. Therefore, Mohism is closer to Confucianism in its social and ethical concerns, even though it is distinct from both schools." - ir = mohism # TODO: add Mohism to CK3. -} -link = { - ck3 = shinto # https://forum.paradoxplaza.com/forum/threads/mod-terra-indomita.1537409/page-2: "Kodo is effectively Proto-Shinto beliefs" - ir = wa_religions -} -link = { - ck3 = endurism # From TI's desc for Shamanism: "The shamans of the Enduri spirits most venerated Abka Enduri, the Sky Mother who created all of being." - ir = tunguistic_religion # Shamanism -} -link = { - ck3 = ban_phi # Tai religion faith, localized as "Satsana Phi" in AEP, https://en.wikipedia.org/wiki/Tai_folk_religion - ir = tai_religion - ir = satsana_phi_religion -} -link = { - ck3 = burmic # Natic/Natkokwe - ir = funan_religion # Yungism, according to the TI descriptions it's related to the Natic faith -} -link = { - # Regional austronesian_religion mapping for the island of Sumatra. - ck3 = malayic - ir = austronesian_religion - ck3Region = d_aceh - ck3Region = d_perlak - ck3Region = d_panai - ck3Region = d_jambi - ck3Region = d_palembang - ck3Region = d_lampung - ck3Region = d_batak - ck3Region = d_kampar - ck3Region = d_minangkabau - ck3Region = d_musi - ck3Region = d_bengkulu -} -link = { - # Regional austronesian_religion mapping for the Riau Islands. - ck3 = umboh - ir = austronesian_religion - ck3Region = d_riau_islands - ck3Region = d_natuna -} -link = { - # Regional austronesian_religion mapping for the Nias and Mentawai Islands. - ck3 = batak - ir = austronesian_religion - ck3Region = d_nias - ck3Region = d_mentawai -} -link = { - # Fallback austronesian_religion mapping as a mapping for continental Southeast Asia. - ck3 = kadai - ir = austronesian_religion -} + link = { ck3 = shaivism # https://en.wikipedia.org/wiki/Khas_people: "The Khas people also had their own sect of Shaivism known as Masto religion where 12 Masto gods were worshipped." ir = masto_pantheon diff --git a/ImperatorToCK3/Data_Files/configurables/removable_file_blocks.txt b/ImperatorToCK3/Data_Files/configurables/removable_file_blocks.txt index 86feb3048..1ceeabf56 100644 --- a/ImperatorToCK3/Data_Files/configurables/removable_file_blocks.txt +++ b/ImperatorToCK3/Data_Files/configurables/removable_file_blocks.txt @@ -18,25 +18,25 @@ "common/on_action/yearly_on_actions.txt" = { { - # FP2 - Checks to start El Cid's Travels - if = { - limit = { # Am I El Cid? - has_fp2_dlc_trigger = yes - has_ep3_dlc_trigger = no - this = character:107590 - NOT = { has_character_flag = has_already_begun_travelling } # Separate first check, for performance + # FP2 - Checks to start El Cid's Travels + if = { + limit = { # Am I El Cid? + has_fp2_dlc_trigger = yes + has_ep3_dlc_trigger = no + this = character:107590 + NOT = { has_character_flag = has_already_begun_travelling } # Separate first check, for performance - NOT = { # Start date employer is either dead or gone - OR = { - top_liege = character:107500 - liege = character:107500 - employer = character:107500 - } + NOT = { # Start date employer is either dead or gone + OR = { + top_liege = character:107500 + liege = character:107500 + employer = character:107500 } - is_available_healthy_ai_adult = yes # Am I ready to go on an adventure? } - trigger_event = fp2_struggle.2045 + is_available_healthy_ai_adult = yes # Am I ready to go on an adventure? } + trigger_event = fp2_struggle.2045 + } } { 250 = fp3_yearly.8020 # The Lady of the Land @@ -111,14 +111,14 @@ limit = { character:41702 ?= { any_owned_story = { - story_type = story_hasan + type = story_hasan var:ultimate_foe ?= root } } } character:41702 = { random_owned_story = { - limit = { story_type = story_hasan } + type = story_hasan if = { limit = { scope:killer = character:41702 @@ -257,11 +257,9 @@ limit = { exists = character:223522 current_date >= 1178.1.1 - AND = { - character:223541 = { - is_ai = yes - is_alive = yes - } + character:223541 = { + is_ai = yes + is_alive = yes } } character:223522 = { @@ -272,6 +270,28 @@ } } } + { + ### 1066 - LIANG LUOYAO ### + if = { + limit = { + exists = character:tangut_liang_1 + current_date >= 1066.1.1 + character:tangut_liang_1.primary_spouse ?= character:206651 + } + character:tangut_liang_1 = { + add_gold = { + value = { + value = 0 + add = { 200 350 } + } + } + trigger_event = { + id = bookmark.0400 + days = { 14 21 } + } + } + } + } # Anachronistic { @@ -521,8 +541,8 @@ limit = { highest_held_title_tier >= tier_kingdom NOR = { - government_has_flag = government_is_administrative - government_has_flag = government_is_landless_adventurer + government_allows = administrative + is_landed = no } } convert_to_administrative_from_feudalism_game_start_effect = yes @@ -534,8 +554,8 @@ limit = { highest_held_title_tier >= tier_kingdom NOR = { - government_has_flag = government_is_administrative - government_has_flag = government_is_landless_adventurer + government_allows = administrative + is_landed = no } has_trait = august } @@ -607,7 +627,11 @@ enter_realm_event = ep3_emperor_yearly.2000 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = ep3_emperor_yearly.2000 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = ep3_emperor_yearly.2000 } } @@ -617,7 +641,11 @@ enter_realm_event = ep3_emperor_yearly.2000 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = ep3_emperor_yearly.2000 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = ep3_emperor_yearly.2000 } } @@ -627,7 +655,11 @@ enter_realm_event = ep3_emperor_yearly.2000 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = ep3_emperor_yearly.2000 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = ep3_emperor_yearly.2000 } } @@ -637,7 +669,11 @@ enter_realm_event = ep3_emperor_yearly.2000 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = ep3_emperor_yearly.2000 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = ep3_emperor_yearly.2000 } } @@ -647,7 +683,11 @@ enter_realm_event = ep3_emperor_yearly.2000 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = ep3_emperor_yearly.2000 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = ep3_emperor_yearly.2000 } } @@ -657,7 +697,11 @@ enter_realm_event = ep3_emperor_yearly.2000 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = ep3_emperor_yearly.2000 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = ep3_emperor_yearly.2000 } } @@ -667,7 +711,11 @@ enter_realm_event = ep3_emperor_yearly.2000 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = ep3_emperor_yearly.2000 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = ep3_emperor_yearly.2000 } } @@ -677,7 +725,11 @@ enter_realm_event = ep3_emperor_yearly.2000 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = ep3_emperor_yearly.2000 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = ep3_emperor_yearly.2000 } } @@ -687,7 +739,11 @@ enter_realm_event = ep3_emperor_yearly.2000 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = ep3_emperor_yearly.2000 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = ep3_emperor_yearly.2000 } } @@ -697,7 +753,11 @@ enter_realm_event = ep3_emperor_yearly.2000 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = ep3_emperor_yearly.2000 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = ep3_emperor_yearly.2000 } } @@ -707,7 +767,11 @@ enter_realm_event = ep3_emperor_yearly.2000 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = ep3_emperor_yearly.2000 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = ep3_emperor_yearly.2000 } } @@ -717,7 +781,11 @@ enter_realm_event = ep3_emperor_yearly.2000 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = ep3_emperor_yearly.2000 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = ep3_emperor_yearly.2000 } } @@ -727,7 +795,11 @@ enter_realm_event = ep3_emperor_yearly.2000 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = ep3_emperor_yearly.2000 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = ep3_emperor_yearly.2000 } } @@ -737,7 +809,11 @@ enter_realm_event = ep3_emperor_yearly.2000 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = ep3_emperor_yearly.2000 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = ep3_emperor_yearly.2000 } } @@ -747,7 +823,11 @@ enter_realm_event = ep3_emperor_yearly.2000 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = ep3_emperor_yearly.2000 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = ep3_emperor_yearly.2000 } } @@ -757,7 +837,11 @@ enter_realm_event = ep3_emperor_yearly.2000 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = ep3_emperor_yearly.2000 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = ep3_emperor_yearly.2000 } } @@ -767,7 +851,11 @@ enter_realm_event = ep3_emperor_yearly.2000 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = ep3_emperor_yearly.2000 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = ep3_emperor_yearly.2000 } } @@ -777,7 +865,11 @@ enter_realm_event = ep3_emperor_yearly.2000 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = ep3_emperor_yearly.2000 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = ep3_emperor_yearly.2000 } } @@ -787,7 +879,11 @@ enter_realm_event = roman_restoration.1200 } set_important_location = { - title = title:e_roman_empire + title = title:h_roman_empire + enter_realm_event = roman_restoration.1200 + } + set_important_location = { + title = title:h_eastern_roman_empire enter_realm_event = roman_restoration.1200 } } @@ -839,7 +935,7 @@ } character:83355 = { every_held_title = { - limit = { tier >= tier_county } + title_tier >= county change_title_holder = { holder = character:906 change = scope:title_change @@ -1053,8 +1149,6 @@ { # Pre-defined historic regencies setup. ## NOTE: we do these first to avoid feed messages getting weird due to regents being replaced immediately after getting their position. - ## 867. - ### None. Yet. ## 1066. if = { limit = { game_start_date = 1066.9.15 } @@ -1163,7 +1257,7 @@ LIEGE = character:3040 } } - if = { + else_if = { limit = { game_start_date = 1178.10.1 } # Set up some diarchs. ## The future Richard I of England managing Aquitaine in place of his mother (who is under house arrest) @@ -1195,6 +1289,11 @@ try_start_diarchy = nomad_regency set_diarch = character:188909 } + ## Dai Viet, Long Trat Vuong & To Hien Thanh + character:viet_ly_2 = { + set_diarch = character:viet_to_1 + #designate_diarch = character:viet_to_1 + } # Plus remove all the generated opinions. ## Richard I and Eleanor of Aquitaine remove_generated_diarch_consequences_effect = { @@ -1221,206 +1320,1444 @@ NEW_DIARCH = character:209510 LIEGE = character:209503 } - ## Wolila and Zhilugu + ## Wolila and Zhilugu remove_generated_diarch_consequences_effect = { NEW_DIARCH = character:188909 LIEGE = character:188912 } - - } - } - { - ## Fatimid Caliphate - basically stuck in the back-end of an entrenched regencies from game start. - if = { - limit = { exists = character:3096 } - character:3096 = { trigger_event = diarchy.0012 } - } - else_if = { - limit = { exists = character:188912 } - character:188912 = { trigger_event = diarchy.0012 } - } - } - { - ### STRUGGLES ### - if = { - limit = { current_date = 867.1.1 } - - # Iberian Struggle - if = { # If we're in 867, Aragonese should be removed from the Struggle, since they don't quite exist yet. - limit = { exists = struggle:iberian_struggle } - struggle:iberian_struggle = { set_culture_as_uninvolved = culture:aragonese } - } - - # Persian Struggle - if = { # If the load order ever changes this struggle is going to break. This must always be read before the struggle. - limit = { exists = struggle:persian_struggle } - debug_log = "Samarra Struggle: Gamne start data has been set" - struggle:persian_struggle = { # Use the object explorer to debug this data (yes, the time has come to learn how to use it) - - # Struggle on_start - fp3_remove_vassal_contract_cooldown_for_tension_effect = yes - - # Flag some titles as un-dissolutionable within the struggle. - title:e_arabia = { set_variable = struggle_block_dissolution_faction } - title:d_sunni = { set_variable = struggle_block_dissolution_faction } - } + ## Long Trat Vuong and To Hien Thanh + remove_generated_diarch_consequences_effect = { + NEW_DIARCH = character:viet_to_1 + LIEGE = character:viet_ly_2 } } } + + # Anachronistic { - ## El Cid - character:107590 ?= { + # TGP: Adjust China's starting laws + else_if = { + limit = { + realm_law_use_celestial_bureaucracy = yes + } if = { limit = { - is_alive = yes - is_landless_adventurer = yes - } - add_realm_law_skip_effects = camp_purpose_mercenaries - if = { - limit = { - character:71391 = { - NOT = { is_courtier_of = character:107590 } - } - } - add_courtier = character:71391 + game_start_date >= 1066.9.15 } + add_realm_law_skip_effects = celestial_bureaucracy_2 if = { limit = { - character:castilian0248 = { - NOT = { is_courtier_of = character:107590 } - } + top_liege != this } - add_courtier = character:castilian0248 + add_realm_law_skip_effects = celestial_army_vassal_law_2 } - if = { - limit = { - character:castilian0249 = { - NOT = { is_courtier_of = character:107590 } - } - } - add_courtier = character:castilian0249 + else = { + add_realm_law_skip_effects = celestial_army_liege_law_2 # Let's give them the matching army level as well } } } } { - ## Robert Crispin - character:norman_crispin_06 ?= { - if = { - limit = { - is_alive = yes - is_landless_adventurer = yes + if = { + limit = { game_start_date < 868.1.1 } + tgp_set_wuking_element_effect = { ELEMENT = earth } # Tang + every_situation_sub_region = { + add_takeover_phase_points = { + phase = situation_dynastic_cycle_phase_chaos + points = 800 } - add_realm_law_skip_effects = camp_purpose_mercenaries } } - } - { - ## Hassan Sabbah - character:41702 ?= { - if = { - limit = { - is_alive = yes - is_landless_adventurer = yes - } - add_realm_law_skip_effects = camp_purpose_scholars - } + else = { + tgp_set_wuking_element_effect = { ELEMENT = fire } # Song } } + { - ## Suleyman Qutalmishog - character:3046 ?= { - if = { - limit = { - is_alive = yes - is_landless_adventurer = yes - } - add_realm_law_skip_effects = camp_purpose_mercenaries - trigger_event = bookmark.1073 # Suleyman's beef with Alp Arslan - } - } + ### TGP SILK ROAD INNOVATIONS + tgp_silk_road_innovation_setup_effect = yes } + { - ## Wallada bint al-Mustakfi - character:andalusian_0003 ?= { - if = { - limit = { - is_alive = yes - is_landless_adventurer = yes - } - add_realm_law_skip_effects = camp_purpose_scholars - trigger_event = ep3_story_cycle_violet_poet.0001 - } - } + ##### HISTORICAL HOUSE RELATIONS - deliberately placed above blocs + tgp_setup_historical_house_relation_effect = yes + ##### TGP JAPAN ##### + if = { + limit = { has_tgp_dlc_trigger = yes } + ### DYNASTIES + tgp_dynasty_house_name_setup_effect = yes + ### BLOCS + tgp_setup_historical_house_bloc_effect = yes + } } + { - ## Taylu Danişmend - character:danishmendid_1 ?= { if = { limit = { - is_alive = yes - is_landless_adventurer = yes + has_mpo_dlc_trigger = yes + has_tgp_dlc_trigger = yes } - add_realm_law_skip_effects = camp_purpose_mercenaries - } - } - } - { - ## Roger Raoul - character:232504 ?= { - if = { - limit = { - is_alive = yes - is_landless_adventurer = yes + dynasty:1045082 ?= { # Khitan Yelu + every_dynasty_member = { + add_trait = nomadic_philosophy + } + } + dynasty:nn_dyn_shulu ?= { # Khitan Xiao + every_dynasty_member = { + add_trait = nomadic_philosophy + } } - add_realm_law_skip_effects = camp_purpose_mercenaries - } - } - } - { - ### 1066 - HASAN SABBAH STORY CYCLE ### - character:41702 ?= { - if = { - limit = { - is_alive = yes - is_playable_character = yes - } - house = { set_house_head = prev } - trigger_event = { - id = hasan_sabbah.1000 - days = 1 - } - } - } - } - { - ### 1066 - EL CID STORY CYCLE ### - character:107590 ?= { - if = { - limit = { - cid_story_cycle_start_trigger = yes - } - trigger_event = { - id = cid.0001 - days = 1 } - } - } } + + # Anachronistic China circuit type setup { - ## Hereweard the Wake - character:90028 ?= { - if = { - limit = { is_alive = yes } - add_realm_law_skip_effects = camp_purpose_brigands if = { limit = { - character:90160 = { - NOT = { is_courtier_of = character:90028 } - } + game_start_date = 867.1.1 } - add_courtier = character:90160 - } + title:k_hebei.holder = { + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + } + } + } + title:k_youji.holder = { + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + } + } + } + title:k_daibei.holder = { + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + } + } + } + title:k_guannei.holder = { + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + } + } + } + title:k_viet.holder = { + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + } + } + } + title:k_lingxi.holder = { + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + } + } + } + } + else_if = { + limit = { + game_start_date = 1066.9.15 + } + title:k_hebei.holder = { + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + } + } + } + title:k_hedong.holder = { + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + } + } + } + title:k_guannei.holder = { + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + } + } + } + title:k_lingxi.holder = { + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + } + } + } + } + else_if = { + limit = { + game_start_date = 1178.10.1 + } + title:k_huainan.holder = { + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + } + } + } + title:k_shannan.holder = { + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + } + } + } + title:k_xingyuan.holder = { + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + } + } + } + title:k_lingxi.holder = { + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + } + } + } + title:k_xichuan.holder = { + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + every_vassal = { + limit = { + primary_title.tier >= tier_county + } + hidden_effect = { + vassal_contract_set_obligation_level = { + type = celestial_provinces + level = 3 # Military + } + if = { + limit = { + NOT = { + has_realm_law = celestial_military_appointment_succession_law + } + } + add_realm_law_skip_effects = celestial_military_appointment_succession_law + } + } + } + } + } + } + } + + { + ## Fatimid Caliphate - basically stuck in the back-end of an entrenched regencies from game start. + if = { + limit = { exists = character:3096 } + character:3096 = { trigger_event = diarchy.0012 } + } + else_if = { + limit = { exists = character:188912 } + character:188912 = { trigger_event = diarchy.0012 } + } + } + + # Removed Great Wall of China segments because these specific ones seem to be anachronistic. Will need to figure out what to do about the Wall. + { + ### GREAT WALL OF CHINA ### + + title:b_wulan.title_province = { add_great_building = the_great_wall_01 } + title:b_fengan.title_province = { add_great_building = the_great_wall_01 } + title:b_mingsha.title_province = { add_great_building = the_great_wall_01 } + title:b_yaode.title_province = { add_great_building = the_great_wall_01 } + title:b_huile.title_province = { add_great_building = the_great_wall_01 } + title:b_baojing.title_province = { add_great_building = the_great_wall_01 } + title:b_huaiyuan.title_province = { add_great_building = the_great_wall_01 } + title:b_shengwei.title_province = { add_great_building = the_great_wall_01 } + title:b_hequ.title_province = { add_great_building = the_great_wall_01 } + title:b_helan.title_province = { add_great_building = the_great_wall_01 } + title:b_dengkou.title_province = { add_great_building = the_great_wall_01 } + title:b_wuluhai.title_province = { add_great_building = the_great_wall_01 } + title:b_yongfeng.title_province = { add_great_building = the_great_wall_01 } + title:b_jiuyuan.title_province = { add_great_building = the_great_wall_01 } + title:b_tiande.title_province = { add_great_building = the_great_wall_01 } + + title:b_jincheng.title_province = { add_great_building = the_great_wall_02 } + title:b_huichuan.title_province = { add_great_building = the_great_wall_02 } + title:b_huairong_2.title_province = { add_great_building = the_great_wall_02 } + title:b_pinggao.title_province = { add_great_building = the_great_wall_02 } + title:b_huaide.title_province = { add_great_building = the_great_wall_02 } + title:b_fangqu.title_province = { add_great_building = the_great_wall_02 } + title:b_huaian_2.title_province = { add_great_building = the_great_wall_02 } + title:b_luoyuan.title_province = { add_great_building = the_great_wall_02 } + title:b_hengshan_3.title_province = { add_great_building = the_great_wall_02 } + title:b_wuyan.title_province = { add_great_building = the_great_wall_02 } + title:b_ningshuo.title_province = { add_great_building = the_great_wall_02 } + title:b_longquan.title_province = { add_great_building = the_great_wall_02 } + title:b_rulin.title_province = { add_great_building = the_great_wall_02 } + title:b_kaiguang.title_province = { add_great_building = the_great_wall_02 } + title:b_linzhou_yincheng.title_province = { add_great_building = the_great_wall_02 } + title:b_xiazhou_dejing_east.title_province = { add_great_building = the_great_wall_02 } + + title:b_xuande.title_province = { add_great_building = the_great_wall_03 } + title:b_baishui.title_province = { add_great_building = the_great_wall_03 } + title:b_rouxuan.title_province = { add_great_building = the_great_wall_03 } + title:b_cirlxj_yangcheng.title_province = { add_great_building = the_great_wall_03 } + } + + { + ### STRUGGLES ### + if = { + limit = { current_date = 867.1.1 } + + # Iberian Struggle + if = { # If we're in 867, Aragonese should be removed from the Struggle, since they don't quite exist yet. + limit = { exists = struggle:iberian_struggle } + struggle:iberian_struggle = { set_culture_as_uninvolved = culture:aragonese } + } + + # Persian Struggle + if = { # If the load order ever changes this struggle is going to break. This must always be read before the struggle. + limit = { exists = struggle:persian_struggle } + debug_log = "Samarra Struggle: Gamne start data has been set" + struggle:persian_struggle = { # Use the object explorer to debug this data (yes, the time has come to learn how to use it) + + # Struggle on_start + fp3_remove_vassal_contract_cooldown_for_tension_effect = yes + + # Flag some titles as un-dissolutionable within the struggle. + title:e_arabia = { set_variable = struggle_block_dissolution_faction } + title:d_sunni = { set_variable = struggle_block_dissolution_faction } + } + } + } + } + { + ## El Cid + character:107590 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_mercenaries + if = { + limit = { + character:71391 = { + NOT = { is_courtier_of = character:107590 } + } + } + add_courtier = character:71391 + } + if = { + limit = { + character:castilian0248 = { + NOT = { is_courtier_of = character:107590 } + } + } + add_courtier = character:castilian0248 + } + if = { + limit = { + character:castilian0249 = { + NOT = { is_courtier_of = character:107590 } + } + } + add_courtier = character:castilian0249 + } + } + } + } + { + ## Robert Crispin + character:norman_crispin_06 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_mercenaries + } + } + } + { + ## Hassan Sabbah + character:41702 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_scholars + } + } + } + { + ## Suleyman Qutalmishog + character:3046 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_mercenaries + trigger_event = bookmark.1073 # Suleyman's beef with Alp Arslan + } + } + } + { + ## Wallada bint al-Mustakfi + character:andalusian_0003 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_scholars + trigger_event = ep3_story_cycle_violet_poet.0001 + } + } + } + { + ## Taylu Danişmend + character:danishmendid_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_mercenaries + } + } + } + { + ## Roger Raoul + character:232504 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_mercenaries + } + } + } + { + ## Prince Takaoka (Shinnyo) + character:japanese_yamato_181 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_scholars + # and because history in character file does not work... + character:japanese_lowborn_1 = { set_employer = character:japanese_yamato_181 } # Anten + character:japanese_lowborn_2 = { set_employer = character:japanese_yamato_181 } # Enkaku + character:japanese_lowborn_3 = { set_employer = character:japanese_yamato_181 } # Akimaru + } + } + } + { + ## Ding Hui + character:ding_hui_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_mercenaries + } + } + } + { + ## Liang Zhu Quanzhong + character:liang_zhu_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_mercenaries + } + } + } + { + ## Miyoshi Kiyotsura + character:miyoshi_kiyotsura_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_scholars + } + } + } + { + ## Yang-kil + character:yang_kil_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_brigands + } + } + } + { + ## Yŏn'gi Tosŏn + character:toson_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_scholars + } + } + } + { + ## Lý Do Độc + character:ly_do_doc_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_mercenaries + } + } + } + { + ## Song Jiang + character:song_jiang_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_mercenaries + } + } + } + { + ## Yang Zongbao + character:yang_zongbao_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_mercenaries + } + } + } + { + character:furong_daokai_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_scholars + } + } + character:jojin_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_scholars + } + } + character:isawa_no_saburo_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_mercenaries + } + } + character:tsukushi_no_koretaka_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_brigands + } + } + character:kim_mu_che_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_scholars + } + } + character:baekho_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_brigands + } + } + character:khong_lo_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_scholars + } + } + character:nga_yamankan_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_mercenaries + } + } + character:mpu_bharada_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_scholars + } + } + character:wang_chuyi_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_scholars + } + } + character:jiang_kui_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_scholars + } + } + character:lembong_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_brigands + } + } + character:zhu_zhongba_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_explorers + } + } + character:quach_boc_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_mercenaries + } + } + character:bojo_jinul_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_scholars + } + } + character:gochi_in_no_tajima_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_mercenaries + } + } + character:shin_capata_1 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_scholars + } + } + ## Yoshitsune Minamoto + character:japanese_minamoto_seiwa_139 ?= { + if = { + limit = { + is_alive = yes + has_government = landless_adventurer_government + } + add_realm_law_skip_effects = camp_purpose_mercenaries + every_courtier = { + limit = { dynasty = character:japanese_minamoto_seiwa_139.dynasty } + set_employer = character:japanese_minamoto_seiwa_10 # Yoritomo + } + add_courtier = character:japanese_musashibo_1 # Benkei + add_courtier = character:japanese_ise_2_1 # Yoshimori + } + } + } + { + ### 1066 - HASAN SABBAH STORY CYCLE ### + character:41702 ?= { + if = { + limit = { + is_alive = yes + is_playable_character = yes + } + house = { set_house_head = prev } + trigger_event = { + id = hasan_sabbah.1000 + days = 1 + } + } + } + } + { + ### 1066 - EL CID STORY CYCLE ### + character:107590 ?= { + if = { + limit = { + cid_story_cycle_start_trigger = yes + } + trigger_event = { + id = cid.0001 + days = 1 + } + } + } + } + { + ## Hereweard the Wake + character:90028 ?= { + if = { + limit = { is_alive = yes } + add_realm_law_skip_effects = camp_purpose_brigands + if = { + limit = { + character:90160 = { + NOT = { is_courtier_of = character:90028 } + } + } + add_courtier = character:90160 + } } # Setup event for his story trigger_event = { @@ -1480,6 +2817,78 @@ if = { limit = { has_multiple_players = no } every_player = { + # TGP + if = { + limit = { + government_has_flag = government_is_wanua + } + add_achievement_global_variable_effect = { + VARIABLE = started_ep4_15_humble_beginnings_achievement + VALUE = yes + } + } + if = { + limit = { + has_title = title:k_chrysanthemum_throne + } + add_achievement_global_variable_effect = { + VARIABLE = started_ep4_03_sword_of_japan_achievement + VALUE = yes + } + } + if = { + limit = { + is_landed = no + tgp_is_any_minister = no + } + add_achievement_global_variable_effect = { + VARIABLE = started_ep4_05_grand_governor_achievement + VALUE = yes + } + } + if = { + limit = { + NAND = { + tgp_passed_children_examination = yes + tgp_passed_provincial_examination = yes + tgp_passed_metropolitan_examination = yes + tgp_passed_palace_examination = yes + } + } + add_achievement_global_variable_effect = { + VARIABLE = started_ep4_16_flying_colors_achievement + VALUE = yes + } + } + if = { + limit = { + NOT = { + culture = { + any_known_innovation = { + has_innovation_parameter = silk_road_innovation_parameter + } + } + } + } + add_achievement_global_variable_effect = { + VARIABLE = started_ep4_17_highway_of_ideas_achievement + VALUE = yes + } + } + if = { + limit = { + NOR = { + tgp_passed_children_examination = yes + tgp_passed_provincial_examination = yes + tgp_passed_metropolitan_examination = yes + tgp_passed_palace_examination = yes + } + } + add_achievement_global_variable_effect = { + VARIABLE = started_ep4_19_stamp_of_approval_achievement + VALUE = yes + } + } # Base Title if = { limit = { @@ -1867,7 +3276,7 @@ ##12 Turkish Eagle if = { limit = { - NOT = { this = character:3040 } # Not Alp Arslan + this != character:3040 # Not Alp Arslan house = house:house_seljuk # Seljuk game_start_date < 1067.1.1 # 1066 only, and no Seljuks in 867 } @@ -2066,136 +3475,578 @@ } if = { limit = { - highest_held_title_tier >= tier_empire - should_be_naked_trigger = yes + highest_held_title_tier >= tier_empire + should_be_naked_trigger = yes + } + add_achievement_flag_effect = { FLAG = rd_character_blocked_the_emperors_new_clothes_achievement_flag } + } + if = { + limit = { + is_from_ruler_designer = yes + OR = { + fp1_achievement_culture_norse_trigger = yes + fp1_achievement_religious_norse_trigger = yes + } + } + add_to_global_unavailable_achievements_list_effect = { FLAG = flag:rd_character_blocked_far_from_home_achievement } + add_to_global_unavailable_achievements_list_effect = { FLAG = flag:rd_character_blocked_miklagardariki_achievement } + add_to_global_unavailable_achievements_list_effect = { FLAG = flag:rd_character_blocked_faster_than_the_fox_achievement } + } + if = { + limit = { + any_ruler = { + is_from_ruler_designer = yes + } + } + add_to_global_unavailable_achievements_list_effect = { FLAG = flag:rd_character_blocked_iberia_or_iberia_achievement } + add_to_global_unavailable_achievements_list_effect = { FLAG = flag:rd_character_blocked_el_cid_achievement } + add_achievement_global_variable_effect = { + VARIABLE = any_ruler_designed_character_achievement + VALUE = yes + } + } + if = { + limit = { + has_mpo_dlc_trigger = yes + exists = character:125501 + character:125501 = { + is_alive = yes + } + } + character:125501 = { + create_story = story_temujin_flavor + trigger_event = { + days = { 12 30 } + id = mpo_temujin_flavor.0030 # Borte announces she's pregnant + } + } + } + } + } + } + { + ### ACHIEVEMENT (FP3): The Ummayad Strikes Back + every_player = { + if = { + limit = { + dynasty = character:73683.dynasty + location = { geographical_region = world_europe_west_iberia } + } + set_global_variable = fp3_the_umma_strikes_back_achievement_tracker # Is not removed (sad!) + } + } + } + + { + ### GREECE BACKWATER COUNTIES ### + if = { + limit = { has_ep3_dlc_trigger = yes } + title:c_laconia = { add_county_modifier = backwater_county_modifier } + title:c_messenia = { add_county_modifier = backwater_county_modifier } + title:c_korinthos = { add_county_modifier = backwater_county_modifier } + title:c_achaia = { add_county_modifier = backwater_county_modifier } + title:c_cephalonia = { add_county_modifier = backwater_county_modifier } + title:c_attica = { add_county_modifier = backwater_county_modifier } + title:c_boeotia = { add_county_modifier = backwater_county_modifier } + title:c_aetolia = { add_county_modifier = backwater_county_modifier } + title:c_naxos = { add_county_modifier = backwater_county_modifier } + title:c_euboea = { add_county_modifier = backwater_county_modifier } + title:c_neopatras = { add_county_modifier = backwater_county_modifier } + title:c_demetrias = { add_county_modifier = backwater_county_modifier } + title:c_thessaliotis = { add_county_modifier = backwater_county_modifier } + title:c_thessalia = { add_county_modifier = backwater_county_modifier } + title:c_epeiros = { add_county_modifier = backwater_county_modifier } + title:c_buthrotum = { add_county_modifier = backwater_county_modifier } + title:c_veria = { add_county_modifier = backwater_county_modifier } + title:c_metzovo = { add_county_modifier = backwater_county_modifier } + title:c_chalkidike = { add_county_modifier = backwater_county_modifier } + title:c_thessalonika = { add_county_modifier = backwater_county_modifier } + title:c_serres = { add_county_modifier = backwater_county_modifier } + title:c_mosynopolis = { add_county_modifier = backwater_county_modifier } + title:c_ohrid = { add_county_modifier = backwater_county_modifier } + title:c_antipatreia = { add_county_modifier = backwater_county_modifier } + title:c_dyrrachion = { add_county_modifier = backwater_county_modifier } + title:c_avlonas = { add_county_modifier = backwater_county_modifier } + } + } + + { + if = { + limit = { + title:k_magyar = { + exists = holder + } + } + title:k_magyar = { + add_title_law = confederation_elective_succession_law + } + } + } + + # Anachronistic + { + #set up cultural acceptance between China and East Asian Empires to aid in the learning of Chinese effect for on_birthday_adulthood + + if = { + limit = { game_start_date = 867.1.1 } + culture:japanese = { + change_cultural_acceptance = { + target = culture:han + value = 80 + desc = cultural_acceptance_historical_relations + } + } + culture:goguryeo = { + change_cultural_acceptance = { + target = culture:han + value = 80 + desc = cultural_acceptance_historical_relations + } + } + culture:silla = { + change_cultural_acceptance = { + target = culture:han + value = 80 + desc = cultural_acceptance_historical_relations + } + } + culture:baekje = { + change_cultural_acceptance = { + target = culture:han + value = 80 + desc = cultural_acceptance_historical_relations + } + } + culture:balhae = { + change_cultural_acceptance = { + target = culture:han + value = 80 + desc = cultural_acceptance_historical_relations + } + } + } + if = { + limit = { game_start_date = 1066.9.15 } + culture:japanese = { + change_cultural_acceptance = { + target = culture:han + value = 70 + desc = cultural_acceptance_historical_relations + } + } + culture:goryeo = { + change_cultural_acceptance = { + target = culture:han + value = 70 + desc = cultural_acceptance_historical_relations + } + } + } + if = { + limit = { game_start_date = 1178.10.1 } + culture:japanese = { + change_cultural_acceptance = { + target = culture:han + value = 60 + desc = cultural_acceptance_historical_relations + } + } + culture:goryeo = { + change_cultural_acceptance = { + target = culture:han + value = 60 + desc = cultural_acceptance_historical_relations + } + } + } + } + + { + ### DYNASTY TRACKING SETUP + japan_dynasty_tracker_setup_effect = yes + } + + { + #Starting Mandala Temple Complexes + #Dvaravati + province:10822 = { + add_great_building = mandala_capital_01 + if = { + limit = { + game_start_date >= 1066.1.1 + } + ruin_great_building = yes + } + add_to_global_variable_list = { # Add to list so it can be found by the PoI + name = mandala_poi_list + target = this + } + } + #Haripunjaya + province:11441 = { + add_great_building = mandala_capital_01 + add_to_global_variable_list = { # Add to list so it can be found by the PoI + name = mandala_poi_list + target = this + } + } + #Pagan + province:9550 = { + if = { + limit = { + game_start_date < 1066.1.1 + } + add_great_building = mandala_capital_01 + } + else_if = { + limit = { game_start_date >= 1066.1.1 } + add_great_building = mandala_capital_02 + } + add_to_global_variable_list = { # Add to list so it can be found by the PoI + name = mandala_poi_list + target = this + } + } + #Angkor + province:10816 = { + if = { + limit = { + game_start_date < 1066.1.1 + } + add_great_building = mandala_capital_01 + } + else_if = { + limit = { game_start_date >= 1066.1.1 } + add_great_building = mandala_capital_02 + } + else = { + add_great_building = mandala_capital_03 + } + add_to_global_variable_list = { # Add to list so it can be found by the PoI + name = mandala_poi_list + target = this + } + } + #Srivijaya/Palembang + province:11296 = { + add_great_building = mandala_capital_02 + if = { + limit = { + game_start_date >= 1066.1.1 } - add_achievement_flag_effect = { FLAG = rd_character_blocked_the_emperors_new_clothes_achievement_flag } + ruin_great_building = yes #Could also be completely destroyed - almost nothing left today + } + add_to_global_variable_list = { # Add to list so it can be found by the PoI + name = mandala_poi_list + target = this } + } + #Mataram + #Prambanan + province:11343 = { + add_great_building = mandala_capital_01 if = { limit = { - is_from_ruler_designer = yes - OR = { - fp1_achievement_culture_norse_trigger = yes - fp1_achievement_religious_norse_trigger = yes - } + game_start_date >= 1066.1.1 } - add_to_global_unavailable_achievements_list_effect = { FLAG = flag:rd_character_blocked_far_from_home_achievement } - add_to_global_unavailable_achievements_list_effect = { FLAG = flag:rd_character_blocked_miklagardariki_achievement } - add_to_global_unavailable_achievements_list_effect = { FLAG = flag:rd_character_blocked_faster_than_the_fox_achievement } + ruin_great_building = yes } + add_to_global_variable_list = { # Add to list so it can be found by the PoI + name = mandala_poi_list + target = this + } + } + #Champa + #Indrapura + province:10830 = { if = { limit = { - any_ruler = { - is_from_ruler_designer = yes - } + game_start_date < 1066.1.1 } - add_to_global_unavailable_achievements_list_effect = { FLAG = flag:rd_character_blocked_iberia_or_iberia_achievement } - add_to_global_unavailable_achievements_list_effect = { FLAG = flag:rd_character_blocked_el_cid_achievement } - add_achievement_global_variable_effect = { - VARIABLE = any_ruler_designed_character_achievement - VALUE = yes + add_great_building = mandala_capital_01 + add_to_global_variable_list = { # Add to list so it can be found by the PoI + name = mandala_poi_list + target = this } } + } + #Vijaya + province:10827 = { if = { - limit = { - has_mpo_dlc_trigger = yes - exists = character:125501 - character:125501 = { - is_alive = yes - } + limit = { game_start_date >= 1066.1.1 } + add_great_building = mandala_capital_01 + add_to_global_variable_list = { # Add to list so it can be found by the PoI + name = mandala_poi_list + target = this } - character:125501 = { - create_story = story_temujin_flavor - trigger_event = { - days = { 12 30 } - id = mpo_temujin_flavor.0030 # Borte announces she's pregnant - } + } + } + } + + { + ### TGP KOREA SETUP + if = { + # Special variable that UI uses to display correct title + limit = { + exists = title:e_goryeo.holder + has_tgp_dlc_trigger = yes + game_start_date >= 1066.1.1 + } + # GORYEO GOVERNORSHIP SETUP + title:d_bukgye = { add_to_temporary_list = goryeo_military_provinces } + title:d_donggye = { add_to_temporary_list = goryeo_military_provinces } + title:d_yukju = { add_to_temporary_list = goryeo_military_provinces } + every_in_list = { + list = goryeo_military_provinces + limit = { + holder ?= { is_governor = yes } + } + holder = { + vassal_contract_set_obligation_level = { + type = meritocratic_provinces + level = meritocratic_province_military + } + add_realm_law_skip_effects = meritocratic_military_appointment_succession_law + } + } + } + else_if = { + limit = { + exists = title:k_silla.holder + has_tgp_dlc_trigger = yes + game_start_date = 867.1.1 + } + # SILLA GOVERNORSHIP SETUP + title:d_bukgye = { add_to_temporary_list = silla_military_provinces } + title:d_donggye = { add_to_temporary_list = silla_military_provinces } + title:d_yukju = { add_to_temporary_list = silla_military_provinces } + every_in_list = { + list = silla_military_provinces + limit = { + holder ?= { is_governor = yes } + } + holder = { + vassal_contract_set_obligation_level = { + type = meritocratic_provinces + level = meritocratic_province_military } + add_realm_law_skip_effects = meritocratic_military_appointment_succession_law } } } } + { - ### ACHIEVEMENT (FP3): The Ummayad Strikes Back - every_player = { + ### TGP JAPAN SETUP + if = { + limit = { + exists = title:e_japan.holder + has_tgp_dlc_trigger = yes + } + title:c_chikuzen ?= { # Dazaifu + if = { + limit = { + holder ?= { is_governor = yes } + } + holder = { + vassal_contract_set_obligation_level = { + type = japan_administrative_provinces + level = japan_administrative_province_trade + } + } + } + } + title:d_hitakami ?= { add_to_temporary_list = japan_military_provinces } # Mutsu + title:d_nushiro ?= { add_to_temporary_list = japan_military_provinces } # Dewa + every_in_list = { + list = japan_military_provinces + limit = { + holder ?= { is_governor = yes } + } + holder = { + vassal_contract_set_obligation_level = { + type = japan_administrative_provinces + level = japan_administrative_province_military + } + add_realm_law_skip_effects = japanese_military_appointment_succession_law + } + } if = { limit = { - dynasty = character:73683.dynasty - location = { geographical_region = world_europe_west_iberia } + game_start_date >= 1066.1.1 + game_start_date < 1178.10.1 + } + title:e_japan.holder = { + trigger_event = tgp_japan_career.0001 + every_vassal = { + trigger_event = tgp_japan_career.0001 + } } - set_global_variable = fp3_the_umma_strikes_back_achievement_tracker # Is not removed (sad!) } } } - + + # Part of a list of realms that historically would have known Chinese, but these titles would be anachronistic for now { - ### GREECE BACKWATER COUNTIES ### - if = { - limit = { has_ep3_dlc_trigger = yes } - title:c_laconia = { add_county_modifier = backwater_county_modifier } - title:c_messenia = { add_county_modifier = backwater_county_modifier } - title:c_korinthos = { add_county_modifier = backwater_county_modifier } - title:c_achaia = { add_county_modifier = backwater_county_modifier } - title:c_cephalonia = { add_county_modifier = backwater_county_modifier } - title:c_attica = { add_county_modifier = backwater_county_modifier } - title:c_boeotia = { add_county_modifier = backwater_county_modifier } - title:c_aetolia = { add_county_modifier = backwater_county_modifier } - title:c_naxos = { add_county_modifier = backwater_county_modifier } - title:c_euboea = { add_county_modifier = backwater_county_modifier } - title:c_neopatras = { add_county_modifier = backwater_county_modifier } - title:c_demetrias = { add_county_modifier = backwater_county_modifier } - title:c_thessaliotis = { add_county_modifier = backwater_county_modifier } - title:c_thessalia = { add_county_modifier = backwater_county_modifier } - title:c_epeiros = { add_county_modifier = backwater_county_modifier } - title:c_buthrotum = { add_county_modifier = backwater_county_modifier } - title:c_veria = { add_county_modifier = backwater_county_modifier } - title:c_metzovo = { add_county_modifier = backwater_county_modifier } - title:c_chalkidike = { add_county_modifier = backwater_county_modifier } - title:c_thessalonika = { add_county_modifier = backwater_county_modifier } - title:c_serres = { add_county_modifier = backwater_county_modifier } - title:c_mosynopolis = { add_county_modifier = backwater_county_modifier } - title:c_ohrid = { add_county_modifier = backwater_county_modifier } - title:c_antipatreia = { add_county_modifier = backwater_county_modifier } - title:c_dyrrachion = { add_county_modifier = backwater_county_modifier } - title:c_avlonas = { add_county_modifier = backwater_county_modifier } + title:e_japan.holder ?= { + add_to_list = holder_to_learn_chinese + } + title:e_goryeo.holder ?= { + add_to_list = holder_to_learn_chinese } } { + ##### GENPEI WAR + ### 1178 - MINATOMO YORITOMO ### if = { limit = { - title:k_magyar = { - exists = holder + character:japanese_minamoto_seiwa_10 ?= { is_alive = yes } + } + character:japanese_minamoto_seiwa_10 ?= { trigger_event = tgp_genpei_character.1000 } + } + ### 1178 - MINATOMO YOSHINAKA ### + if = { + limit = { + character:japanese_minamoto_seiwa_207 ?= { is_alive = yes } + } + character:japanese_minamoto_seiwa_207 = { trigger_event = tgp_genpei_character.1090 } + } + ### 1178 - MINATOMO YOSHITSUNE ### + if = { + limit = { + character:japanese_minamoto_seiwa_139 ?= { is_alive = yes } + } + character:japanese_minamoto_seiwa_139 = { trigger_event = tgp_genpei_character.1100 } + } + ### 1178 - TAIRA KIYOMORI ### + if = { + limit = { + character:japanese_taira_kanmu_34 ?= { is_alive = yes } + } + character:japanese_taira_kanmu_34 = { + trigger_event = tgp_genpei_character.2000 + trigger_event = { #Delayed event + id = tgp_genpei_character.2010 + months = 6 } } - title:k_magyar = { - add_title_law = confederation_elective_succession_law + } + ### 1178 - FUJIWARA MOTOFUSA ### + if = { + limit = { + character:japanese_fujiwara_511 ?= { is_alive = yes } + } + character:japanese_fujiwara_511 = { trigger_event = tgp_genpei_character.3000 } + } + ### 1178 - FUJIWARA HIDEHIRA ### + if = { + limit = { + character:japanese_fujiwara_497 ?= { is_alive = yes } } + character:japanese_fujiwara_497 = { trigger_event = tgp_genpei_character.3100 } + } + ### 1178 - EMPEROR GO-SHIRAKAWA ### + if = { + limit = { + character:japanese_yamato_51 ?= { is_alive = yes } + } + character:japanese_yamato_51 = { trigger_event = tgp_genpei_character.4000 } } } } # End of "common/on_action/game_start.txt" "common/on_action/title_on_actions.txt" = { - { - # Am I The Chad? - if = { - limit = { root = character:easteregg_chad_uhl } - set_house = house:house_chad_uhl - } - } - + # This stuff is about West/East Francia having their name changed once the Karlings don't control it, which obviously wouldn't make much sense now that they don't start controlling those titles. We could maybe find some way of allowing the titles to be created naturally and modify these events to account for these changes. { title_event.0001 # Rename West Francia to France title_event.0002 # Rename East Francia to Germany } + { + # West Francia becomes France when no longer controlled by a Karling + else_if = { + limit = { + scope:title = { + this = title:k_france + } + NOR = { + dynasty = { this = dynasty:25061 } # Not held by a Karling + any_liege_or_above = { + dynasty = { this = dynasty:25061 } # And does not have a liege that is a Karling + } + has_global_variable = west_francia_renamed + } + } + trigger_event = { + id = title_event.0001 + days = 1 + } + } + # East Francia becomes Germany when no longer controlled by a Karling + else_if = { + limit = { + scope:title = { + this = title:k_east_francia + } + NOR = { + dynasty = { this = dynasty:25061 } # Not held by a Karling + any_liege_or_above = { + dynasty = { this = dynasty:25061 } # And does not have a liege that is a Karling + } + has_global_variable = east_francia_renamed + } + } + trigger_event = { + id = title_event.0002 + days = 1 + } + } + } { fp1_major_decisions.1011 # Harald Tanglehair becomes Harald Fairhair. + fp1_major_decisions.1012 # If Norway has just been created for the first time, flag that. + } + { + # Norway stuff + else_if = { + limit = { + # The title they've acquired is Norway. + scope:title = title:k_norway + } + # Tanglehair becomes Fairhair. + if = { + limit = { + # This character is Harald Fairhair. + exists = character:144000 + this = character:144000 + # Norway has been created by them. + scope:transfer_type = flag:created + # Norway has not been created previously. + NOT = { exists = global_var:norway_created } + } + trigger_event = { + id = fp1_major_decisions.1011 + days = 1 + } + } + # Check Norway's creation status. + if = { + limit = { + scope:transfer_type = flag:created + NOT = { exists = global_var:norway_created } + } + trigger_event = { + id = fp1_major_decisions.1012 + days = 1 + } + } + } } } -"events\title_events.txt" = { +"events/title_events.txt" = { { # West Francia becomes France when no longer controlled by a Karling title_event.0001 = { @@ -3944,8 +5795,7 @@ bookmark.0001 = { #by Mathilda Bjarnehed trigger = { this = character:33358 #Æthelred is_ai = yes - exists = player_heir - player_heir = character:7627 #Alfred the Great + player_heir ?= character:7627 #Alfred the Great } immediate = { @@ -4018,7 +5868,7 @@ bookmark.0002 = { #by Mathilda Bjarnehed trigger = { is_ai = no - is_independent_ruler = yes + top_liege = this } #Resend @@ -4036,7 +5886,7 @@ bookmark.0002 = { #by Mathilda Bjarnehed play_music_cue = "mx_cue_positive_effect" capital_province = { save_scope_as = capital } random_realm_province = { - limit = { NOT = { this = scope:capital } } + limit = { this != scope:capital } save_scope_as = province } give_nickname = nick_the_great @@ -4062,8 +5912,7 @@ bookmark.0003 = { #by Mathilda Bjarnehed scope:imprisoner = { any_close_family_member = { even_if_dead = yes - exists = killer - killer = root + killer ?= root save_temporary_scope_as = killed_character } } @@ -4071,7 +5920,7 @@ bookmark.0003 = { #by Mathilda Bjarnehed trigger_if = { limit = { any_secret = { - secret_type = secret_murder + type = secret_murder secret_target = scope:killed_character NOT = { any_secret_knower = { this = scope:imprisoner } } } @@ -4112,13 +5961,11 @@ bookmark.0003 = { #by Mathilda Bjarnehed random_close_family_member = { even_if_dead = yes limit = { - exists = killer - killer = root + killer ?= root this = character:163109 #Lodbrok } alternative_limit = { - exists = killer - killer = root + killer ?= root } save_scope_as = dead } @@ -4141,7 +5988,7 @@ bookmark.0004 = { #by Mathilda Bjarnehed trigger = { #You did not know they had killed your family-member scope:prisoner = { any_secret = { - secret_type = secret_murder + type = secret_murder secret_target = scope:dead NOT = { any_secret_knower = { this = root } } } @@ -4174,7 +6021,7 @@ bookmark.0004 = { #by Mathilda Bjarnehed limit = { scope:prisoner = { any_secret = { - secret_type = secret_murder + type = secret_murder secret_target = scope:dead NOT = { any_secret_knower = { this = root } } } @@ -4182,8 +6029,8 @@ bookmark.0004 = { #by Mathilda Bjarnehed } scope:prisoner = { random_secret = { + type = secret_murder limit = { - secret_type = secret_murder secret_target = scope:dead NOT = { any_secret_knower = { this = root } } } @@ -4208,7 +6055,7 @@ bookmark.0004 = { #by Mathilda Bjarnehed scope:dead = { every_close_family_member = { custom = bookmark.0004.a.custom - limit = { NOT = { this = root } } + limit = { this != root } add_opinion = { modifier = pleased_opinion opinion = 30 @@ -4242,7 +6089,7 @@ bookmark.0004 = { #by Mathilda Bjarnehed scope:dead = { every_close_family_member = { custom = bookmark.0004.a.custom - limit = { NOT = { this = root } } + limit = { this != root } add_opinion = { modifier = pleased_opinion opinion = 30 @@ -4579,7 +6426,7 @@ bookmark.1066 = { limit = { NOT = { any_scheme = { - scheme_type = murder + type = murder scheme_target_character = scope:hunchback } } @@ -4592,8 +6439,8 @@ bookmark.1066 = { custom_tooltip = diplomacy_family.2250.b.tt hidden_effect = { random_scheme = { + type = murder limit = { - scheme_type = murder scheme_target_character = scope:hunchback } add_scheme_modifier = { @@ -4704,7 +6551,7 @@ bookmark.1066 = { { ###We let the player decide which dynasty Sibylla's son will belong to avoid undesirable potential game overs -bookmark.0300 = { # by Nicholas Legault +bookmark.0300 = { type = character_event title = bookmark.0300.t desc = bookmark.0300.desc @@ -4724,11 +6571,9 @@ bookmark.0300 = { # by Nicholas Legault trigger = { is_ai = no - AND = { - character:223541 = { - is_ai = yes - is_alive = yes - } + character:223541 = { + is_ai = yes + is_alive = yes } } @@ -5313,7 +7158,7 @@ scripted_effect game_rule_1131_rig_english_election_effect = { scope:elect = { NOT = { is_in_list = kill_list } } - NOT = { scope:elect = scope:jiltee } + scope:elect != scope:jiltee } # Quietly erase our incumbent from the holders roll. hidden_effect = { @@ -6326,7 +8171,7 @@ game_rule.1143 = { } } -"gfx\portraits\portrait_animations\animations.txt" = { +"gfx/portraits/portrait_animations/animations.txt" = { { modifier = { add = 5000 @@ -8254,7 +10099,14 @@ restore_holy_roman_empire_decision = { } decision_group_type = major - ai_check_interval = 12 + ai_check_interval_by_tier = { + barony = 0 + county = 0 + duchy = 0 + kingdom = 12 + empire = 12 + hegemony = 0 + } desc = restore_holy_roman_empire_decision_desc selection_tooltip = restore_holy_roman_empire_decision_tooltip @@ -8268,12 +10120,11 @@ restore_holy_roman_empire_decision = { #highest_held_title_tier = tier_empire #Existing emperors likewise should not be giving up their empire. } NOR = { #It doesn't make sense for these competing empires. - has_title = title:e_byzantium - has_title = title:e_roman_empire + is_roman_emperor_trigger = yes mpo_has_gok_mongol_empire_trigger = yes } AND = { #Faith conditions. - NOT = { this = faith.religious_head } #Nice try, Mr. Pope. + this != faith.religious_head #Nice try, Mr. Pope. faith = { religion_tag = christianity_religion has_doctrine_parameter = spiritual_head_of_faith #Gotta be invested with the authority by someone other than yourself. @@ -8293,7 +10144,7 @@ restore_holy_roman_empire_decision = { is_valid = { #Standard requirements. - is_independent_ruler = yes + top_liege = this trigger_if = { limit = { is_ai = no @@ -8324,7 +10175,7 @@ restore_holy_roman_empire_decision = { custom_description = { #And have some additional royal dignity for good measure. text = decision_refound_hre_own_three_kingdoms.tt any_held_title = { - tier = tier_kingdom + title_tier = kingdom count >= 3 } } @@ -8379,7 +10230,7 @@ restore_holy_roman_empire_decision = { #Notify other players. every_player = { limit = { - NOT = { this = root } + this != root is_within_diplo_range = { CHARACTER = root } } trigger_event = middle_europe_decisions.0016 @@ -8473,8 +10324,20 @@ restore_holy_roman_empire_decision = { cost = { gold = { + value = 0 if = { limit = { + has_treasury = no + is_ai = no + } + add = 500 + } + } + treasury = { + value = 0 + if = { + limit = { + has_treasury = yes is_ai = no } add = 500 @@ -8484,7 +10347,7 @@ restore_holy_roman_empire_decision = { } ai_potential = { - is_independent_ruler = yes + top_liege = this highest_held_title_tier >= tier_kingdom } @@ -9164,7 +11027,7 @@ fp1_scandinavian_adventurers.0021 = { } } -"common\on_action\yearly_groups_on_actions.txt" = { +"common/on_action/yearly_groups_on_actions.txt" = { { 160 = fp2_yearly.1004 # The Hawk of Quarysh } @@ -9173,7 +11036,7 @@ fp1_scandinavian_adventurers.0021 = { } } -"events\dlc\fp2\fp2_yearly_events.txt" = { +"events/dlc/fp2/fp2_yearly_events.txt" = { { ################################### # The Hawk of Quarysh @@ -9273,7 +11136,7 @@ fp2_yearly.1004 = { } } -"events\dlc\fp3\fp3_heritage_events.txt" = { +"events/dlc/fp3/fp3_heritage_events.txt" = { { fp3_yearly.8020 = { type = character_event @@ -9327,7 +11190,7 @@ fp3_yearly.8020 = { } #checking that we have a HoF with the appropriate interests - NOT = { faith.religious_head = root } + faith.religious_head != root exists = root.faith.religious_head @@ -9605,7 +11468,7 @@ fp3_yearly.8020 = { limit = { fp3_bibi_shahrbanu_devotee_trigger = yes fp3_assertive_female_believer_trigger = yes - NOT = { this = scope:pious_woman } + this != scope:pious_woman } add_character_modifier = { modifier = fp3_womens_faith_galvanized_modifier @@ -9635,14 +11498,21 @@ fp3_yearly.8020 = { } } -"common\decisions\dlc_decisions\fp_3\fp3_islamic_decisions.txt" = { +"common/decisions/dlc_decisions/fp_3/fp3_islamic_decisions.txt" = { { avenge_the_battle_of_nahrawan_decision = { picture = { reference = "gfx/interface/illustrations/decisions/fp3/fp3_decision_supremacy.dds" } decision_group_type = major - ai_check_interval = 120 + ai_check_interval_by_tier = { + barony = 0 + county = 0 + duchy = 0 + kingdom = 120 + empire = 120 + hegemony = 120 + } sort_order = 30 title = { @@ -9670,8 +11540,7 @@ avenge_the_battle_of_nahrawan_decision = { is_shown = { has_fp3_dlc_trigger = yes faith = { has_doctrine = muhammad_succession_muhakkima_doctrine } - exists = capital_province - capital_province = { + capital_province ?= { OR = { geographical_region = world_persian_empire geographical_region = world_middle_east @@ -9808,7 +11677,7 @@ avenge_the_battle_of_nahrawan_decision = { trigger_event = fp3_decision.0011 every_player = { limit = { - NOT = { this = scope:avenger } + this != scope:avenger is_within_diplo_range = { CHARACTER = scope:avenger } } trigger_event = fp3_decision.0012 @@ -9883,7 +11752,7 @@ fp3_decision.0011 = { } } -"common\decisions\dlc_decisions\ep_3\06_ep3_hasan_story_cycle_decisions.txt" = { +"common/decisions/dlc_decisions/ep_3/06_ep3_hasan_story_cycle_decisions.txt" = { # Hassan Sabbah, the founder of Assasins { ############################################# @@ -9896,7 +11765,14 @@ hasan_evangelize_the_faith = { reference = "gfx/interface/illustrations/decisions/fp3/fp3_decision_secret_faith.dds" } sort_order = 500 - ai_check_interval = 120 + ai_check_interval_by_tier = { + barony = 0 + county = 0 + duchy = 36 + kingdom = 0 + empire = 0 + hegemony = 0 + } desc = hasan_evangelize_the_faith_desc selection_tooltip = hasan_evangelize_the_faith_tooltip @@ -9909,7 +11785,7 @@ hasan_evangelize_the_faith = { has_ep3_dlc_trigger = yes is_landed = no any_owned_story = { - story_type = story_hasan + type = story_hasan } } @@ -9974,7 +11850,14 @@ hasan_agitate_the_populace = { reference = "gfx/interface/illustrations/decisions/fp3/antagonistic.dds" } sort_order = 500 - ai_check_interval = 120 + ai_check_interval_by_tier = { + barony = 0 + county = 0 + duchy = 36 + kingdom = 0 + empire = 0 + hegemony = 0 + } desc = hasan_agitate_the_populace_desc selection_tooltip = hasan_agitate_the_populace_tooltip @@ -9987,7 +11870,7 @@ hasan_agitate_the_populace = { has_ep3_dlc_trigger = yes is_landed = no any_owned_story = { - story_type = story_hasan + type = story_hasan } } @@ -9995,7 +11878,7 @@ hasan_agitate_the_populace = { hasan_camp_in_foes_realm_trigger = yes OR = { domicile.domicile_location.county = { - NOT = { faith = root.faith } + faith != root.faith NOT = { has_county_modifier = ep3_agitated_populace } NOT = { has_county_modifier = tougher_to_convert } } @@ -10004,7 +11887,7 @@ hasan_agitate_the_populace = { domicile.domicile_location.county = { save_temporary_scope_as = county_check any_neighboring_county = { - NOT = { faith = root.faith } + faith != root.faith NOT = { has_county_modifier = ep3_agitated_populace } NOT = { has_county_modifier = tougher_to_convert } holder.top_liege = scope:county_check.holder.top_liege @@ -10026,7 +11909,7 @@ hasan_agitate_the_populace = { if = { limit = { domicile.domicile_location.county = { - NOT = { faith = root.faith } + faith != root.faith NOT = { has_county_modifier = ep3_agitated_populace } NOT = { has_county_modifier = tougher_to_convert } } @@ -10038,7 +11921,7 @@ hasan_agitate_the_populace = { save_temporary_scope_as = county_check random_neighboring_county = { limit = { - NOT = { faith = root.faith } + faith != root.faith NOT = { has_county_modifier = ep3_agitated_populace } NOT = { has_county_modifier = tougher_to_convert } holder.top_liege = scope:county_check.holder.top_liege @@ -10065,7 +11948,14 @@ hasan_ignite_the_flames = { reference = "gfx/interface/illustrations/decisions/fp3/fp3_decision_strength.dds" } sort_order = 500 - ai_check_interval = 120 + ai_check_interval_by_tier = { + barony = 0 + county = 0 + duchy = 36 + kingdom = 0 + empire = 0 + hegemony = 0 + } desc = hasan_ignite_the_flames_desc selection_tooltip = hasan_ignite_the_flames_tooltip @@ -10077,7 +11967,7 @@ hasan_ignite_the_flames = { #DLC check. has_ep3_dlc_trigger = yes any_owned_story = { - story_type = story_hasan + type = story_hasan } } @@ -10107,9 +11997,7 @@ hasan_ignite_the_flames = { effect = { random_owned_story = { - limit = { - story_type = story_hasan - } + type = story_hasan var:ultimate_foe = { save_scope_as = ultimate_foe } } hasan_sabbah_ignite_decision_effect = yes @@ -10131,7 +12019,14 @@ hasan_found_the_assassins = { reference = "gfx/interface/illustrations/decisions/fp3/fp3_decision_sunder.dds" } sort_order = 500 - ai_check_interval = 120 + ai_check_interval_by_tier = { + barony = 0 + county = 0 + duchy = 36 + kingdom = 0 + empire = 0 + hegemony = 0 + } desc = hasan_found_the_assassins_desc selection_tooltip = hasan_found_the_assassins_tooltip @@ -10141,7 +12036,7 @@ hasan_found_the_assassins = { #DLC check. has_ep3_dlc_trigger = yes any_owned_story = { - story_type = story_hasan + type = story_hasan NOT = { exists = var:assassins } } is_landed = no @@ -10225,7 +12120,7 @@ hasan_found_the_assassins = { } create_holy_order_effect = yes random_owned_story = { - limit = { story_type = story_hasan } + type = story_hasan set_variable = { name = assassins value = scope:new_holy_order @@ -10269,7 +12164,14 @@ hasan_expand_the_assassins = { reference = "gfx/interface/illustrations/decisions/decision_legitimacy.dds" } sort_order = 500 - ai_check_interval = 120 + ai_check_interval_by_tier = { + barony = 0 + county = 0 + duchy = 36 + kingdom = 0 + empire = 0 + hegemony = 0 + } desc = hasan_expand_the_assassins_desc selection_tooltip = hasan_expand_the_assassins_tooltip @@ -10279,7 +12181,7 @@ hasan_expand_the_assassins = { #DLC check. has_ep3_dlc_trigger = yes any_owned_story = { - story_type = story_hasan + type = story_hasan has_variable = assassins } is_landed = no @@ -10307,9 +12209,7 @@ hasan_expand_the_assassins = { effect = { random_owned_story = { - limit = { - story_type = story_hasan - } + type = story_hasan var:assassins = { save_scope_as = assassins } } show_as_tooltip = { @@ -10317,7 +12217,7 @@ hasan_expand_the_assassins = { } hidden_effect = { if = { - limit = { NOT = { domicile.domicile_location.barony.holder = root } } + limit = { domicile.domicile_location.barony.holder != root } create_title_and_vassal_change = { type = leased_out save_scope_as = change @@ -10434,7 +12334,7 @@ hasan_expand_the_assassins = { limit = { scope:defender = { primary_title = title:d_hereford - is_independent_ruler = yes + top_liege = this is_ai = yes } } @@ -10835,9 +12735,7 @@ hasan_sabbah.1000 = { text = unlock_evangelize_decision_tt create_story = story_hasan random_owned_story = { - limit = { - story_type = story_hasan - } + type = story_hasan set_variable = { name = story_phase value = 1 @@ -10864,9 +12762,7 @@ hasan_sabbah.1000 = { text = unlock_evangelize_decision_tt create_story = story_hasan random_owned_story = { - limit = { - story_type = story_hasan - } + type = story_hasan set_variable = { name = story_phase value = 1 @@ -10933,7 +12829,7 @@ hasan_sabbah.1010 = { } modifier = { factor = 0.75 - NOT = { scope:location.county.religion = root.religion } + scope:location.county.religion != root.religion } modifier = { factor = 10 @@ -10961,7 +12857,7 @@ hasan_sabbah.1010 = { } modifier = { factor = 1.25 - NOT = { scope:location.county.religion = root.religion } + scope:location.county.religion != root.religion } min = 10 send_interface_toast = { @@ -10988,7 +12884,7 @@ hasan_sabbah.1010 = { if = { limit = { any_owned_story = { - story_type = story_hasan + type = story_hasan exists = var:radical_points var:radical_points >= 5 } @@ -11010,7 +12906,7 @@ hasan_sabbah.1010 = { else_if = { limit = { any_owned_story = { - story_type = story_hasan + type = story_hasan exists = var:radical_points var:radical_points >= 15 NOT = { exists = var:ultimate_foe } @@ -11024,7 +12920,7 @@ hasan_sabbah.1010 = { else_if = { limit = { any_owned_story = { - story_type = story_hasan + type = story_hasan exists = var:story_phase var:story_phase >= 2 NOT = { exists = var:ultimate_foe } @@ -11281,9 +13177,7 @@ hasan_sabbah.1030 = { } } random_owned_story = { - limit = { - story_type = story_hasan - } + type = story_hasan save_scope_as = story } } @@ -11421,14 +13315,12 @@ hasan_sabbah.1031 = { trigger = { scope:location.county.holder.top_liege = { - NOT = { - faith = root.faith - } + faith != root.faith realm_size >= 10 highest_held_title_tier >= tier_kingdom } any_owned_story = { - story_type = story_hasan + type = story_hasan NOT = { exists = var:ultimate_foe } @@ -11438,7 +13330,7 @@ hasan_sabbah.1031 = { immediate = { scope:location.county.holder.top_liege = { save_scope_as = seljuk_equivalent } random_owned_story = { - limit = { story_type = story_hasan } + type = story_hasan save_scope_as = story } } @@ -11508,7 +13400,7 @@ hasan_sabbah.1040 = { immediate = { random_owned_story = { - limit = { story_type = story_hasan } + type = story_hasan var:ultimate_foe = { save_scope_as = ultimate_foe } } } @@ -11867,7 +13759,7 @@ scripted_effect create_el_cid_story = { save_scope_as = new_story } random_owned_story = { - limit = { story_type = story_el_cid } + type = story_el_cid save_scope_as = story_el_cid story_owner = { set_variable = { @@ -12174,7 +14066,7 @@ cid.1000 = { } trigger = { - is_landless_adventurer = yes + has_government = landless_adventurer_government NOT = { has_variable = had_cid_1000 } } @@ -12283,7 +14175,7 @@ cid.1010 = { } trigger = { - is_landless_adventurer = yes + has_government = landless_adventurer_government any_courtier = { cid_1010_courtier_trigger = yes count >= 2 @@ -12318,7 +14210,7 @@ cid.1010 = { random_courtier = { limit = { cid_1010_courtier_trigger = yes - NOT = { this = scope:friend } + this != scope:friend } weight = { modifier = { @@ -12332,15 +14224,15 @@ cid.1010 = { limit = { any_courtier = { cid_1010_courtier_trigger = yes - NOT = { this = scope:friend } - NOT = { this = scope:courtier_1 } + this != scope:friend + this != scope:courtier_1 } } random_courtier = { limit = { cid_1010_courtier_trigger = yes - NOT = { this = scope:friend } - NOT = { this = scope:courtier_1 } + this != scope:friend + this != scope:courtier_1 } weight = { modifier = { @@ -12355,17 +14247,17 @@ cid.1010 = { limit = { any_courtier = { cid_1010_courtier_trigger = yes - NOT = { this = scope:friend } - NOT = { this = scope:courtier_1 } - NOT = { this = scope:courtier_2 } + this != scope:friend + this != scope:courtier_1 + this != scope:courtier_2 } } random_courtier = { limit = { cid_1010_courtier_trigger = yes - NOT = { this = scope:friend } - NOT = { this = scope:courtier_1 } - NOT = { this = scope:courtier_2 } + this != scope:friend + this != scope:courtier_1 + this != scope:courtier_2 } weight = { modifier = { @@ -12561,13 +14453,13 @@ cid.1020 = { limit = { any_courtier = { is_child_of = root - NOT = { this = scope:child_1 } + this != scope:child_1 } } random_courtier = { limit = { is_child_of = root - NOT = { this = scope:child_1 } + this != scope:child_1 } save_scope_as = child_2 } @@ -12981,7 +14873,7 @@ cid.2000 = { add = 1 } scope:liege = { - add_gold = medium_gold_value + add_treasury_or_gold = medium_treasury_or_gold_value scope:newly_created_artifact = { set_owner = scope:liege } } @@ -13125,7 +15017,7 @@ cid.2001 = { add = 1 } scope:liege = { - add_gold = medium_gold_value + add_treasury_or_gold = medium_treasury_or_gold_value scope:newly_created_artifact = { set_owner = scope:liege } } @@ -13514,9 +15406,7 @@ cid.2020 = { after = { random_owned_story = { - limit = { - story_type = story_el_cid - } + type = story_el_cid end_story = yes } } @@ -13569,9 +15459,7 @@ cid.4000 = { after = { random_owned_story = { - limit = { - story_type = story_el_cid - } + type = story_el_cid end_story = yes } } @@ -13723,9 +15611,7 @@ cid.4010 = { after = { random_owned_story = { - limit = { - story_type = story_el_cid - } + type = story_el_cid end_story = yes } } @@ -13763,9 +15649,7 @@ cid.5000 = { after = { random_owned_story = { - limit = { - story_type = story_el_cid - } + type = story_el_cid end_story = yes } } @@ -13793,7 +15677,6 @@ ep3_hasan_assassin_war = { on_declaration = { on_declared_war = yes - # TODO_CD_EP3, add every same-faith vassal to attacker's side? } on_victory_desc = { @@ -13891,13 +15774,11 @@ ep3_hasan_assassin_war = { if = { limit = { any_owned_story = { - story_type = story_hasan + type = story_hasan } } random_owned_story = { - limit = { - story_type = story_hasan - } + type = story_hasan end_story = yes } } @@ -13930,15 +15811,18 @@ ep3_hasan_assassin_war = { on_defeat = { scope:attacker = { show_pow_release_message_effect = yes } scope:defender = { + mandala_peacemaker_perk_serenity_effect = yes + #EP2 accolade glory gain for winning against higher ranked enemy + accolade_defender_war_end_glory_gain_high_effect = yes + # Prestige for Defender + add_prestige_war_defender_effect = { + PRESTIGE_VALUE = medium_prestige_value + } add_character_flag = { flag = recent_nation_fracturing_faction_war years = faction_nation_fracturing_war_defeat_cooldown } add_dread = medium_dread_gain - # Prestige for Defender - add_prestige_war_defender_effect = { - PRESTIGE_VALUE = medium_prestige_value - } add_achievement_flag_effect = { FLAG = achievement_know_your_place_flag } # LEGITIMACY FROM WINNING FACTION WAR @@ -13950,13 +15834,11 @@ ep3_hasan_assassin_war = { if = { limit = { any_owned_story = { - story_type = story_hasan + type = story_hasan } } random_owned_story = { - limit = { - story_type = story_hasan - } + type = story_hasan end_story = yes } } @@ -14259,7 +16141,7 @@ story_el_cid = { trigger = { story_owner = { var:cid_loyalty_counter >= 5 - is_landless_adventurer = yes + has_government = landless_adventurer_government } } effect = { @@ -14272,7 +16154,7 @@ story_el_cid = { trigger = { story_owner = { var:cid_loyalty_counter <= -5 - is_landless_adventurer = yes + has_government = landless_adventurer_government } } effect = { @@ -14452,15 +16334,13 @@ story_el_cid = { if = { limit = { any_owned_story = { - story_type = story_hasan + type = story_hasan } } custom_tooltip = { text = advance_to_the_assassins_tt random_owned_story = { - limit = { - story_type = story_hasan - } + type = story_hasan if = { limit = { exists = var:radical_points @@ -14843,12 +16723,12 @@ hasan_sabbah_end_war = { if = { limit = { any_owned_story = { - story_type = story_hasan + type = story_hasan exists = var:preferred_caliph } } random_owned_story = { - limit = { story_type = story_hasan } + type = story_hasan var:preferred_caliph = { save_scope_as = caliph } } } @@ -14932,13 +16812,11 @@ hasan_sabbah_end_war = { if = { limit = { any_owned_story = { - story_type = story_hasan + type = story_hasan } } random_owned_story = { - limit = { - story_type = story_hasan - } + type = story_hasan end_story = yes } } @@ -15031,7 +16909,7 @@ apply_historic_administrative_game_rule_effect = { # Independent k_persia. if = { limit = { - title:k_persia.holder ?= { is_independent_ruler = yes } + title:k_persia.holder ?= { top_liege = this } } title:k_persia.holder ?= { convert_to_administrative_from_feudalism_game_start_effect = yes } } @@ -15223,17 +17101,18 @@ apply_historic_administrative_game_rule_effect = { } } if = { + limit = { has_tgp_dlc_trigger = yes } if = { limit = { current_date < 1066.9.15 } # so, 867 - base_867_tributary_setup_effect = yes + tgp_867_tributary_setup_effect = yes } else_if = { limit = { current_date = 1066.9.15 } - base_1066_tributary_setup_effect = yes + tgp_1066_tributary_setup_effect = yes } else_if = { limit = { current_date > 1066.9.15 } # so, 1178 - base_1178_tributary_setup_effect = yes + tgp_1178_tributary_setup_effect = yes } } } @@ -15537,3 +17416,11 @@ apply_historic_administrative_game_rule_effect = { } } } + + +"common/scripted_effects/00_major_decisions_scripted_effects.txt" = { + # Having this be removed since it'll overwrite h_roman_empire's title history since the game assumes it doesn't exist at game start, but it might with a converted save. + { + copy_title_history = title:e_byzantium + } +} \ No newline at end of file diff --git a/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks.txt b/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks.txt index 901fb4fc4..5bc4ba0f1 100644 --- a/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks.txt +++ b/ImperatorToCK3/Data_Files/configurables/replaceable_file_blocks.txt @@ -45,6 +45,86 @@ } } } + + # Base game assumes e_japan will always have a holder, changed to check if a holder exists at game start. Also made it so that if someone holds e_japan at game start, they also get k_chrysanthemum_throne, to make sure that gets handed out. + replace = { + before = { + holder = { + every_noble_family = { + holder.house ?= { + save_temporary_scope_as = house_temp + every_house_member = { + limit = { + is_married = yes + exists = primary_spouse.house + NOT = { + primary_spouse.house = { has_house_relation_with = scope:house_temp } + } + } + save_temporary_scope_as = member_temp + primary_spouse = { save_temporary_scope_as = spouse_temp } + house = { + change_house_relation_effect = { + HOUSE = scope:member_temp.primary_spouse.house + VALUE = house_relation_improve_minor_value + REASON = preexisting_marriage + CHAR = scope:member_temp + TARGET_CHAR = scope:spouse_temp + TITLE = scope:dummy_gender + } + } + } + } + } + } + } + + after = { + holder ?= { + every_noble_family = { + holder.house ?= { + save_temporary_scope_as = house_temp + every_house_member = { + limit = { + is_married = yes + exists = primary_spouse.house + NOT = { + primary_spouse.house = { has_house_relation_with = scope:house_temp } + } + } + save_temporary_scope_as = member_temp + primary_spouse = { save_temporary_scope_as = spouse_temp } + house = { + change_house_relation_effect = { + HOUSE = scope:member_temp.primary_spouse.house + VALUE = house_relation_improve_minor_value + REASON = preexisting_marriage + CHAR = scope:member_temp + TARGET_CHAR = scope:spouse_temp + TITLE = scope:dummy_gender + } + } + } + } + } + + # IRToCK3: Need to also give out k_chrysanthemum_throne + save_scope_as = japan_emp + create_title_and_vassal_change = { + type = created + save_scope_as = change + } + title:k_chrysanthemum_throne = { + change_title_holder = { + holder = scope:japan_emp + change = scope:change + } + copy_title_history = title:e_japan + } + resolve_title_and_vassal_change = scope:change + } + } + } } @@ -126,8 +206,10 @@ has_dlc_feature = roads_to_power NOR = { exists = title:e_byzantium.holder - exists = title:e_roman_empire.holder + exists = title:h_roman_empire.holder + exists = title:h_eastern_roman_empire.holder } + title:e_byzantium = { is_titular = no } OR = { culture = { OR = { @@ -141,6 +223,7 @@ faith = faith:hellenic_pagan } primary_title = { + tier <= tier_empire empire = title:e_latin_empire } } @@ -150,6 +233,7 @@ faith = faith:hellenic_pagan } primary_title = { + tier <= tier_empire empire = title:e_byzantium } } @@ -161,7 +245,8 @@ exists = title:e_byzantium.previous_holder # IRToCK3: Make sure e_byzantium has a previous holder to ensure it existed previously (otherwise why would this decision even make sense?) NOR = { exists = title:e_byzantium.holder - exists = title:e_roman_empire.holder + exists = title:h_roman_empire.holder + exists = title:h_eastern_roman_empire.holder } # IRToCK3: Will always make sure the titles don't have holders, but if the Latin Empire doesn't have a holder (implying either the Splintered Crusade hasn't launched yet, or it has been finished and e_latin_empire was destroyed) then it should also make sure that the titles don't have any de jure land. If ERE has land, it could be formed the normal way, and if Rome has land, that should be the title formed, not the ERE trigger_if = { @@ -175,7 +260,7 @@ count < 1 } } - title:e_roman_empire = { + title:h_roman_empire = { any_de_jure_county = { count < 1 } @@ -198,6 +283,7 @@ faith = faith:hellenic_pagan } primary_title = { + tier <= tier_empire empire = title:e_latin_empire } } @@ -207,6 +293,7 @@ faith = faith:hellenic_pagan } primary_title = { + tier <= tier_empire empire = title:e_byzantium } } @@ -223,7 +310,7 @@ } text = no_byz_emp_exists_tt } - is_independent_ruler = yes + top_liege = this OR = { custom_tooltip = { culture = { @@ -257,6 +344,7 @@ text = pandidakterion_tt } primary_title = { + tier <= tier_empire OR = { empire = title:e_latin_empire empire = title:e_byzantium @@ -280,17 +368,17 @@ } # end of before after = { - # IRToCK3: Can't have the WRE since they should focus on forming e_roman_empire - NOT = { has_title = title:e_western_roman_empire } - # IRToCK3: Show that e_byzantium and e_roman_empire can't have holders + # IRToCK3: Can't have the WRE since they should focus on forming h_roman_empire + NOT = { has_title = title:h_western_roman_empire } + # IRToCK3: Show that e_byzantium and h_roman_empire can't have holders custom_tooltip = { NOR = { exists = title:e_byzantium.holder - exists = title:e_roman_empire.holder + exists = title:h_roman_empire.holder } text = no_byz_emp_exists_tt } - is_independent_ruler = yes + top_liege = this OR = { # IRToCK3: Allow Greeks OR Romans, or their descendent cultures, to take decision custom_tooltip = { @@ -350,6 +438,7 @@ } primary_title = { + tier <= tier_empire OR = { empire = title:e_latin_empire empire = title:e_byzantium @@ -414,7 +503,7 @@ ai_potential = { NOT = { exists = title:e_byzantium.holder } any_held_title = { - tier = tier_kingdom + title_tier = kingdom OR = { empire = title:e_latin_empire empire = title:e_byzantium @@ -429,6 +518,7 @@ } ep3_orthodox_faith_trigger = yes primary_title = { + tier <= tier_empire empire = title:e_latin_empire } } @@ -438,6 +528,7 @@ base = 100 modifier = { primary_title = { + tier <= tier_empire empire = title:e_latin_empire } add = -60 @@ -462,15 +553,15 @@ after = { ai_potential = { - # IRToCK3: AI shouldn't bother if e_byzantium or e_roman_empire already have holders + # IRToCK3: AI shouldn't bother if e_byzantium or h_roman_empire already have holders NOR = { exists = title:e_byzantium.holder - exists = title:e_roman_empire.holder + exists = title:h_roman_empire.holder } - # IRToCK3: AI shouldn't bother if they have the WRE since they should focus on e_roman_empire - NOT = { has_title = title:e_western_roman_empire } + # IRToCK3: AI shouldn't bother if they have the WRE since they should focus on h_roman_empire + NOT = { has_title = title:h_western_roman_empire } any_held_title = { - tier = tier_kingdom + title_tier = kingdom # IRToCK3: Modified so that the de jure empire the kingdom belongs to is only checked if the Latin Empire exists, so that it is only relevant during the Splintered Crusade trigger_if = { limit = { @@ -495,6 +586,7 @@ } ep3_orthodox_faith_trigger = yes primary_title = { + tier <= tier_empire empire = title:e_latin_empire } } @@ -504,6 +596,7 @@ base = 100 modifier = { primary_title = { + tier <= tier_empire empire = title:e_latin_empire } add = -60 @@ -531,55 +624,6 @@ } # end of ai blocks - ######### - # hold_triumph_decision - ######### - - replace = { - before = { - is_shown = { - has_ep3_dlc_trigger = yes - OR = { - has_title = title:e_byzantium - has_title = title:e_roman_empire - } - culture = { has_cultural_parameter = holds_triumphs } - } - - is_valid = { - is_at_war = no - OR = { - has_title = title:e_byzantium - has_title = title:e_roman_empire - } - culture = { has_cultural_parameter = holds_triumphs } - } - } # end of before - - after = { - is_shown = { - has_ep3_dlc_trigger = yes - OR = { - has_title = title:e_byzantium - has_title = title:e_roman_empire - has_title = title:e_western_roman_empire # IRToCK3: Added WRE as possible title - } - culture = { has_cultural_parameter = holds_triumphs } - } - - is_valid = { - is_at_war = no - OR = { - has_title = title:e_byzantium - has_title = title:e_roman_empire - has_title = title:e_western_roman_empire # IRToCK3: Added WRE as possible title - } - culture = { has_cultural_parameter = holds_triumphs } - } - } # end of after - } - - ######### # retake_eastern_provinces_decision ######### @@ -648,28 +692,14 @@ has_ep3_dlc_trigger = yes # Byz emperor or governor OR = { - OR = { # IRToCK3: Extend to other Roman Empire titles - has_title = title:e_byzantium - has_title = title:e_roman_empire - has_title = title:e_western_roman_empire - } - liege = { - OR = { # IRToCK3: Extend to other Roman Empire titles - has_title = title:e_byzantium - has_title = title:e_roman_empire - has_title = title:e_western_roman_empire - } - } + is_roman_emperor_trigger = yes # IRToCK3: Extend to other Roman Empire titles + liege = { is_roman_emperor_trigger = yes } # IRToCK3: Extend to other Roman Empire titles } faith.religion = religion:christianity_religion # You border with pagans to convert trigger_if = { limit = { - OR = { # IRToCK3: Extend to other Roman Empire titles - has_title = title:e_byzantium - has_title = title:e_roman_empire - has_title = title:e_western_roman_empire - } + is_roman_emperor_trigger = yes # IRToCK3: Extend to other Roman Empire titles } any_neighboring_and_across_water_top_liege_realm_owner = { valid_for_pagan_conversion_trigger = yes @@ -712,11 +742,7 @@ government_has_flag = government_is_administrative trigger_if = { limit = { - OR = { # IRToCK3: Extend to other Roman Empire titles - has_title = title:e_byzantium - has_title = title:e_roman_empire - has_title = title:e_western_roman_empire - } + is_roman_emperor_trigger = yes # IRToCK3: Extend to other Roman Empire titles } custom_tooltip = { any_neighboring_and_across_water_top_liege_realm_owner = { @@ -748,196 +774,17 @@ after = { ai_potential = { piety > massive_piety_value - OR = { # IRToCK3: Extend to other Roman Empire titles - has_title = title:e_byzantium - has_title = title:e_roman_empire - has_title = title:e_western_roman_empire - } + is_roman_emperor_trigger = yes # IRToCK3: Extend to other Roman Empire titles } } # end of after } # end of ai_potential block ######### - # establish_silk_production_decision - ######### - - # is_shown block - replace = { - before = { - has_ep3_dlc_trigger = yes - government_allows = administrative - OR = { - this = house.house_head - AND = { - is_ai = no - house.house_head = top_liege - } - } - domicile ?= { - is_domicile_type = estate - } - top_liege ?= { - OR = { - primary_title = title:e_byzantium - primary_title = title:e_roman_empire - } - } - NOT = { - house = { - has_house_modifier = ep3_unlocked_silk - } - } - } # end of before - - after = { - has_ep3_dlc_trigger = yes - government_allows = administrative - OR = { - this = house.house_head - AND = { - is_ai = no - house.house_head = top_liege - } - } - domicile ?= { - is_domicile_type = estate - } - top_liege ?= { - OR = { - primary_title = title:e_byzantium - primary_title = title:e_roman_empire - primary_title = title:e_western_roman_empire # IRToCK3: Add WRE as possible title - } - } - NOT = { - house = { - has_house_modifier = ep3_unlocked_silk - } - } - } # end of after - } # end of is_shown block - - # is_valid block - replace = { - before = { - trigger_if = { - limit = { is_independent_ruler = yes } - OR = { - has_title = title:e_byzantium - has_title = title:e_roman_empire - } - OR = { - has_realm_law = imperial_bureaucracy_2 - has_realm_law = imperial_bureaucracy_3 - } - } - trigger_else = { - influence_level >= 3 - OR = { - has_weak_hook = top_liege - has_strong_usable_hook = top_liege - AND = { - exists = house - top_liege.house ?= house - } - } - } - } # end of before - - after = { - trigger_if = { - limit = { is_independent_ruler = yes } - OR = { - has_title = title:e_byzantium - has_title = title:e_roman_empire - has_title = title:e_western_roman_empire # IRToCK3: Add WRE as possible title - } - OR = { - has_realm_law = imperial_bureaucracy_2 - has_realm_law = imperial_bureaucracy_3 - } - } - trigger_else = { - influence_level >= 3 - OR = { - has_weak_hook = top_liege - has_strong_usable_hook = top_liege - AND = { - exists = house - top_liege.house ?= house - } - } - } - } # end of after - } # end of is_valid block - - - ######### - # reinstitute_grain_dole_decision / reconfirm_grain_dole_decision + # reinstitute_grain_dole_decision ######### - # is_shown block (reinstitute_grain_dole_decision) - replace = { - before = { - has_ep3_dlc_trigger = yes - OR = { - has_title = title:e_byzantium - has_title = title:e_roman_empire - } - NOT = { - is_target_in_global_variable_list = { - name = unavailable_unique_decisions - target = flag:reinstitute_grain_dole_decision - } - } - } # end of before - - after = { - has_ep3_dlc_trigger = yes - OR = { # IRToCK3: Extended decision to be possible for all Roman Empire titles - primary_title = title:e_byzantium - primary_title = title:e_roman_empire - primary_title = title:e_western_roman_empire - } - NOT = { - is_target_in_global_variable_list = { - name = reinstitute_grain_dole_decision - target = primary_title - } - } - } # end of after - } # end of is_shown block (reinstitute_grain_dole_decision) - - # is_shown block (reconfirm_grain_dole_decision) - replace = { - before = { - has_ep3_dlc_trigger = yes - OR = { - has_title = title:e_byzantium - has_title = title:e_roman_empire - } - is_target_in_global_variable_list = { - name = unavailable_unique_decisions - target = flag:reinstitute_grain_dole_decision - } - } # end of before - - after = { - has_ep3_dlc_trigger = yes - OR = { # IRToCK3: Extended decision to be possible for all Roman Empire titles - primary_title = title:e_byzantium - primary_title = title:e_roman_empire - primary_title = title:e_western_roman_empire - } - is_target_in_global_variable_list = { - name = reinstitute_grain_dole_decision - target = primary_title - } - } # end of after - } # end of is_shown block (reconfirm_grain_dole_decision) - - # is_valid_showing_failures_only block (reinstitute_grain_dole_decision) + # is_valid_showing_failures_only block replace = { before = { is_valid_showing_failures_only = { @@ -966,53 +813,7 @@ } } } # end of after - } # end of is_valid_showing_failures_only block (reinstitute_grain_dole_decision) - - # ai_potential block (reinstitute_grain_dole_decision) - replace = { - before = { - ai_potential = { - OR = { - has_title = title:e_byzantium - has_title = title:e_roman_empire - } - } - } # end of before - - after = { - ai_potential = { - OR = { # IRToCK3: Extended decision to be possible for all Roman empire titles - has_title = title:e_byzantium - has_title = title:e_roman_empire - has_title = title:e_western_roman_empire - } - } - } # end of after - } # end of ai_potential block (reinstitute_grain_dole_decision) - - # ai_potential block (reconfirm_grain_dole_decision) - replace = { - before = { - ai_potential = { - OR = { - has_title = title:e_byzantium - has_title = title:e_roman_empire - } - capital_county = { has_variable = unlocked_grain_dole } - } - } # end of before - - after = { - ai_potential = { - OR = { # IRToCK3: Extended decision to be possible for all Roman empire titles - has_title = title:e_byzantium - has_title = title:e_roman_empire - has_title = title:e_western_roman_empire - } - capital_county = { has_variable = unlocked_grain_dole } - } - } # end of after - } # end of ai_potential block (reconfirm_grain_dole_decision) + } # end of is_valid_showing_failures_only block ######### @@ -1024,61 +825,23 @@ before = { is_shown = { has_ep3_dlc_trigger = yes - primary_title = title:e_roman_empire - NOT = { exists = title:e_byzantium.holder } + primary_title = title:h_roman_empire + NOT = { exists = title:h_eastern_roman_empire.holder } } } # end of before after = { is_shown = { has_ep3_dlc_trigger = yes - primary_title = title:e_roman_empire + primary_title = title:h_roman_empire NOR = { # IRToCK3: Made it so both ERE and WRE can't have holders for decision to be taken - exists = title:e_byzantium.holder - exists = title:e_western_roman_empire.holder - } - } - - # IRToCK3: Added an is_valid block for any additional conditions that are necessary - is_valid = { - # IRToCK3: Need to own Constantinople - custom_tooltip = { - text = owns_constantinople_tt - any_sub_realm_county = { - this = title:c_byzantion # owns Constantinople - } - } - - # IRToCK3: Need to own land outside of the custom ERE region - custom_tooltip = { - text = own_land_outside_ere_region - any_sub_realm_county = { - NOT = { - title_province = { - geographical_region = custom_ep3_restore_rome_eastern_empire - } - } - } - } - - # IRToCK3: Need to own all of Thrace since it forcefully takes the title, and the title has no holder, you hold the title, or the holder is your vassal - completely_controls = title:d_thrace - OR = { - custom_tooltip = { - text = thrace_has_no_holder - NOT = { exists = title:d_thrace.holder } - } - has_title = title:d_thrace - custom_tooltip = { - text = top_liege_of_thrace_holder - title:d_thrace.holder.top_liege = root - } + exists = title:h_eastern_roman_empire.holder + exists = title:h_western_roman_empire.holder } } } # end of after } # end of is_shown block - # effect block replace = { before = { @@ -1109,6 +872,13 @@ save_scope_as = new_holder } } + custom_tooltip = { + text = form_eastern_roman_empire_tt + create_eastern_roman_empire_scripted_effect = yes + } + title:h_roman_empire = { + set_title_name = h_roman_empire_western + } } # end of before @@ -1126,16 +896,10 @@ any_powerful_family = { count >= 1 this != root.house - exists = house_head - house_head = { + house_head ?= { trigger_if = { - limit = { - is_landed = yes - } - - capital_county.title_province = { - geographical_region = custom_ep3_restore_rome_eastern_empire - } + limit = { is_landed = yes } + capital_county.title_province = { geographical_region = custom_ep3_restore_rome_eastern_empire } } } } @@ -1144,16 +908,10 @@ ordered_powerful_family = { limit = { this != root.house - exists = house_head - house_head = { + house_head ?= { trigger_if = { - limit = { - is_landed = yes - } - - capital_county.title_province = { - geographical_region = custom_ep3_restore_rome_eastern_empire - } + limit = { is_landed = yes } + capital_county.title_province = { geographical_region = custom_ep3_restore_rome_eastern_empire } } } } @@ -1166,23 +924,17 @@ limit = { any_powerful_vassal = { count >= 1 - capital_county.title_province = { - geographical_region = custom_ep3_restore_rome_eastern_empire - } + capital_county.title_province = { geographical_region = custom_ep3_restore_rome_eastern_empire } } } ordered_powerful_vassal = { limit = { - capital_county.title_province = { - geographical_region = custom_ep3_restore_rome_eastern_empire - } + capital_county.title_province = { geographical_region = custom_ep3_restore_rome_eastern_empire } has_same_government = root } alternative_limit = { - capital_county.title_province = { - geographical_region = custom_ep3_restore_rome_eastern_empire - } + capital_county.title_province = { geographical_region = custom_ep3_restore_rome_eastern_empire } } order_by = max_military_strength save_scope_as = new_holder @@ -1193,23 +945,17 @@ limit = { any_vassal = { count >= 1 - capital_county.title_province = { - geographical_region = custom_ep3_restore_rome_eastern_empire - } + capital_county.title_province = { geographical_region = custom_ep3_restore_rome_eastern_empire } } } ordered_vassal = { limit = { - capital_county.title_province = { - geographical_region = custom_ep3_restore_rome_eastern_empire - } + capital_county.title_province = { geographical_region = custom_ep3_restore_rome_eastern_empire } has_same_government = root } alternative_limit = { - capital_county.title_province = { - geographical_region = custom_ep3_restore_rome_eastern_empire - } + capital_county.title_province = { geographical_region = custom_ep3_restore_rome_eastern_empire } } order_by = max_military_strength save_scope_as = new_holder @@ -1233,10 +979,13 @@ add = 5 } } - save_scope_as = new_holder } } + custom_tooltip = { + text = form_eastern_roman_empire_tt + create_eastern_roman_empire_scripted_effect = yes + } } # end of after } @@ -1275,24 +1024,35 @@ if = { limit = { title:e_latin_empire = { - any_in_de_jure_hierarchy = { - tier < tier_empire + any_in_de_jure_hierarchy = { tier = tier_kingdom } + } + } + # IRToCK3: Since this decision deletes e_latin_empire if you hold it, made it so that if you have the title it transfers ALL kingdoms under it to e_byzantium, but if you don't hold it, you need to control at least half of it. + if = { + limit = { + any_held_title = { this = title:e_latin_empire } + } + title:e_latin_empire = { + every_in_de_jure_hierarchy = { + limit = { tier = tier_kingdom } + set_de_jure_liege_title = title:e_byzantium } } } - title:e_latin_empire = { - every_in_de_jure_hierarchy = { - limit = { - tier = tier_kingdom - any_de_jure_county = { # IRToCK3: Added this condition since it is a little weird how someone holding as little as 12 counties recreating the ERE can somehow magically make every single de jure kingdom under the Latin Empire now become de jure part of the ERE - percent >= 0.7 - holder.top_liege = root + else = { + title:e_latin_empire = { + every_in_de_jure_hierarchy = { + limit = { + tier = tier_kingdom + any_de_jure_county = { # IRToCK3: Added this condition since it is a little weird how someone holding as little as 12 counties recreating the ERE can somehow magically make every single de jure kingdom under the Latin Empire now become de jure part of the ERE + percent >= 0.51 + holder.top_liege = root + } } + set_de_jure_liege_title = title:e_byzantium } - set_de_jure_liege_title = title:e_byzantium } } - } # IRToCK3: For now also adding every completely controlled kingdom to e_byzantium to make sure it gains some de jure land @@ -1303,16 +1063,14 @@ NOT = { exists = kingdom.holder } kingdom.holder.top_liege ?= root # IRToCK3: This should be valid if the character themselves holds the kingdom, or they are an emperor and the holder is their vassal } - kingdom = { - save_temporary_scope_as = test_kingdom - } + kingdom = { save_temporary_scope_as = test_kingdom } OR = { # IRToCK3: Modified it so that either the character must completely control the kingdom, or control half of it and hold its title holder.top_liege = { completely_controls = scope:test_kingdom } kingdom = { AND = { holder.top_liege ?= root any_de_jure_county = { - percent >= 0.5 + percent >= 0.51 holder.top_liege = root } } @@ -1322,9 +1080,7 @@ if = { limit = { NOT = { - kingdom = { - is_in_list = additional_de_jure_kingdoms - } + kingdom = { is_in_list = additional_de_jure_kingdoms } } } kingdom = { @@ -1336,28 +1092,22 @@ # IRToCK3: Also drift all kingdoms from held empire titles to ERE, then delete title every_held_title = { + title_tier = empire limit = { - tier = tier_empire NOT = { this = title:e_byzantium } } every_in_de_jure_hierarchy = { - limit = { - tier = tier_kingdom - } - + limit = { tier = tier_kingdom } set_de_jure_liege_title = title:e_byzantium } save_scope_as = empire_to_delete - root = { - destroy_title = scope:empire_to_delete - } + root = { destroy_title = scope:empire_to_delete } } } # end of after } - } @@ -1369,32 +1119,16 @@ # is_shown block replace = { before = { - is_ruler = yes - is_playable_character = yes - has_title = title:e_roman_empire + has_title = title:h_roman_empire NOT = { capital_county = { this = title:c_roma } } - OR = { - title:c_roma.holder = { - any_liege_or_above = { this = root } - } - title:c_roma.holder = { this = root } - } } # end of before after = { - is_ruler = yes - is_playable_character = yes OR = { # IRToCK3: Also allow the WRE to take this decision - has_title = title:e_roman_empire - has_title = title:e_western_roman_empire + has_title = title:h_roman_empire + has_title = title:h_western_roman_empire } NOT = { capital_county = { this = title:c_roma } } - OR = { - title:c_roma.holder = { - any_liege_or_above = { this = root } - } - title:c_roma.holder = { this = root } - } } # end of after } @@ -1402,15 +1136,15 @@ replace = { before = { ai_potential = { - has_title = title:e_roman_empire + has_title = title:h_roman_empire } } # end of before after = { ai_potential = { OR = { # IRToCK3: Also allow the WRE to take this decision - has_title = title:e_roman_empire - has_title = title:e_western_roman_empire + has_title = title:h_roman_empire + has_title = title:h_western_roman_empire } } } # end of after @@ -1456,10 +1190,7 @@ } is_ruler = yes is_playable_character = yes - OR = { - has_title = title:e_roman_empire - has_title = title:e_hre - } + is_roman_emperor_trigger = yes NOR = { #Once an Emperor throws the challenge, he has only one chance to dismantle the Empire. has_character_flag = flag_emperor_challenging_byz #Applied below. has_character_flag = flag_emperor_challenged_byz #Applied in war. @@ -1486,36 +1217,6 @@ } - ######### - # dismantle_holy_pretender_decision - ######### - - replace = { - before = { - OR = { - has_title = title:e_roman_empire - has_title = title:e_byzantium - } - NOR = { #Once an Emperor throws the challenge, he has only one chance to dismantle the Empire. - has_character_flag = flag_emperor_challenging_hre #Applied below. - has_character_flag = flag_emperor_challenged_hre #Applied in war. - } - } # end of before - - after = { - OR = { - has_title = title:e_roman_empire - has_title = title:e_byzantium - has_title = title:e_western_roman_empire # IRToCK3: Added WRE as possible title - } - NOR = { #Once an Emperor throws the challenge, he has only one chance to dismantle the Empire. - has_character_flag = flag_emperor_challenging_hre #Applied below. - has_character_flag = flag_emperor_challenged_hre #Applied in war. - } - } # end of after - } - - ######### # restore_roman_empire_holy_decision ######### @@ -1573,9 +1274,9 @@ after = { is_ruler = yes is_playable_character = yes - OR = { - has_title = title:e_byzantium - has_title = title:e_western_roman_empire # IRToCK3: Added WRE as possible title + OR = { # IRToCK3: Making it so only the WRE/ERE can reform rome, so forming one of those first would be the priority + has_title = title:h_eastern_roman_empire + has_title = title:h_western_roman_empire } NOT = { primary_title = title:e_hre } NOT = { primary_title = title:e_italy } @@ -1600,16 +1301,16 @@ text = irtock3_only_roman_emperor OR = { AND = { - has_title = title:e_byzantium - has_title = title:e_western_roman_empire + has_title = title:h_eastern_roman_empire + has_title = title:h_western_roman_empire } AND = { - has_title = title:e_byzantium - NOT = { exists = title:e_western_roman_empire.holder } + has_title = title:h_eastern_roman_empire + NOT = { exists = title:h_western_roman_empire.holder } } AND = { - has_title = title:e_western_roman_empire - NOT = { exists = title:e_byzantium.holder } + has_title = title:h_western_roman_empire + NOT = { exists = title:h_eastern_roman_empire.holder } } } } @@ -1630,27 +1331,9 @@ NOT = { culture = culture:greek } NOT = { faith.religion = religion:christianity_religion } OR = { - is_independent_ruler = yes + top_liege = this top_liege = { faith.religion = faith:ashari.religion } } - capital_province = { - OR = { - geographical_region = world_persian_empire - geographical_region = world_asia_minor - geographical_region = custom_greater_armenia - } - } - NOR = { - exists = title:k_rum.holder - top_liege = { has_title = title:e_byzantium } - top_liege = { has_title = title:e_roman_empire } - } - NOT = { #Can only do it once. - is_target_in_global_variable_list = { - name = unavailable_unique_decisions - target = flag:flag_formed_rum_sultanate - } - } } # end of before after = { @@ -1658,54 +1341,9 @@ NOT = { culture = culture:roman } # IRToCK3: Added roman as invalid culture NOT = { faith.religion = religion:christianity_religion } OR = { - is_independent_ruler = yes + top_liege = this top_liege = { faith.religion = faith:ashari.religion } } - capital_province = { - OR = { - geographical_region = world_persian_empire - geographical_region = world_asia_minor - geographical_region = custom_greater_armenia - } - } - NOR = { - exists = title:k_rum.holder - top_liege = { has_title = title:e_byzantium } - top_liege = { has_title = title:e_roman_empire } - top_liege = { has_title = title:e_western_roman_empire } # IRToCK3: Added WRE to list of invalid titles - } - NOT = { #Can only do it once. - is_target_in_global_variable_list = { - name = unavailable_unique_decisions - target = flag:flag_formed_rum_sultanate - } - } - } # end of after - } - - - ######### - # restore_pope_in_rome_decision - ######### - - replace = { - before = { - faith = faith:catholic - NOR = { - has_title = title:k_papal_state - has_title = title:e_roman_empire #Priorities - } - NOT = { title:c_roma.holder = { has_title = title:k_papal_state } } - } # end of before - - after = { - faith = faith:catholic - NOR = { - has_title = title:k_papal_state - has_title = title:e_roman_empire #Priorities - has_title = title:e_western_roman_empire # IRToCK3: Preventing decision for WRE - } - NOT = { title:c_roma.holder = { has_title = title:k_papal_state } } } # end of after } @@ -1853,39 +1491,34 @@ } } # end of after } # End of is_valid block -} -"common/decisions/dlc_decisions/ep_3/06_ep3_admin_decisions.txt" = { ######### - # convert_to_administrative_decision + # set_capital_constantinople_decision ######### - # ai_will_do block + # is_shown block replace = { before = { - base = 0 - modifier = { - OR = { - primary_title = title:e_byzantium - primary_title = title:e_roman_empire - } - add = 100 + has_title = title:e_byzantium + NOT = { capital_county = { this = title:c_byzantion } } } - } # end of before after = { - base = 0 - modifier = { - OR = { - primary_title = title:e_byzantium - primary_title = title:e_roman_empire - primary_title = title:e_western_roman_empire # IRToCK3: Made it so the WRE is more likely to take decision too - } - add = 100 + OR = { + has_title = title:e_byzantium + has_title = title:h_eastern_roman_empire # IRToCK3: Added ERE as possible title + } + NOT = { capital_county = { this = title:c_byzantion } } } - } # end of after } +} + + +"common/decisions/dlc_decisions/ep_3/06_ep3_admin_decisions.txt" = { + ######### + # convert_to_administrative_decision + ######### # ai_will_do block replace = { @@ -1917,332 +1550,273 @@ } -# Commenting this out for now since the decision gets removed entirely right now, until we know what we want to do with the HRE content -# "common/decisions/80_major_decisions_middle_europe.txt" = { -# ######### -# # restore_holy_roman_empire_decision -# ######### - -# # For now, just making the decision not possible for the WRE title. It will likely be modified further once it is decided how the decision, and all HRE content, should be handled. (i.e. should it be remade to act as if its mimicking Rome, competing with Rome, act as the "successor" like it did historically but also take WRE into consideration, etc.) - -# replace = { -# before = { -# NOR = { #Title existence cnditions. -# exists = title:e_hre.holder #Well, that'd be redundant. -# #highest_held_title_tier = tier_empire #Existing emperors likewise should not be giving up their empire. -# } -# NOR = { #It doesn't make sense for these competing empires. -# has_title = title:e_byzantium -# has_title = title:e_roman_empire -# mpo_has_gok_mongol_empire_trigger = yes -# } -# AND = { #Faith conditions. -# NOT = { this = faith.religious_head } #Nice try, Mr. Pope. -# faith = { -# religion_tag = christianity_religion -# has_doctrine_parameter = spiritual_head_of_faith #Gotta be invested with the authority by someone other than yourself. -# } -# NAND = { #No need for a competing empire if your faith controls the ERE. -# exists = title:e_byzantium.holder -# faith = title:e_byzantium.holder.faith -# } -# } -# } # end of before - -# after = { -# NOR = { #Title existence cnditions. -# exists = title:e_hre.holder #Well, that'd be redundant. -# #highest_held_title_tier = tier_empire #Existing emperors likewise should not be giving up their empire. -# } -# NOR = { #It doesn't make sense for these competing empires. -# has_title = title:e_byzantium -# has_title = title:e_roman_empire -# mpo_has_gok_mongol_empire_trigger = yes -# has_title = title:e_western_roman_empire # IRToCK3: Added WRE to list of invalid titles -# } -# AND = { #Faith conditions. -# NOT = { this = faith.religious_head } #Nice try, Mr. Pope. -# faith = { -# religion_tag = christianity_religion -# has_doctrine_parameter = spiritual_head_of_faith #Gotta be invested with the authority by someone other than yourself. -# } -# NAND = { #No need for a competing empire if your faith controls the ERE. -# exists = title:e_byzantium.holder -# faith = title:e_byzantium.holder.faith -# } -# } -# } # end of after -# } -# } - "common/scripted_effects/00_major_decisions_scripted_effects.txt" = { ######### # create_eastern_roman_empire_scripted_effect ######### - # Commenting out the de jure drift of held empire titles + # Change Roman Empire title and de jure hierarchy to the WRE title to represent full Empire split replace = { before = { - every_held_title = { #Should shift all dejure of all Empires owned at the time. - limit = { - tier = tier_empire - } - every_in_de_jure_hierarchy = { - limit = { - tier = tier_kingdom - save_temporary_scope_as = kingdom_to_check - any_county_in_region = { - region = custom_ep3_restore_rome_eastern_empire - any_this_title_or_de_jure_above = { - this = scope:kingdom_to_check + resolve_title_and_vassal_change = scope:change + + every_empire = { + limit = { + OR = { + any_de_jure_county = { + percent >= 0.75 + holder = { + OR = { + this = scope:new_holder + any_liege_or_above = { this = scope:new_holder } } } } - add_to_list = target_titles - } - } - } # end of before - - after = { - # IRToCK3: Commenting this out to prevent the weird de jure drifting that happens because of this, making it so only fully controlled kingdoms drift - # every_held_title = { #Should shift all dejure of all Empires owned at the time. - # limit = { - # tier = tier_empire - # } - # every_in_de_jure_hierarchy = { - # limit = { - # tier = tier_kingdom - # save_temporary_scope_as = kingdom_to_check - # any_county_in_region = { - # region = custom_ep3_restore_rome_eastern_empire - # any_this_title_or_de_jure_above = { - # this = scope:kingdom_to_check - # } - # } - # } - # add_to_list = target_titles - # } - # } - } # end of after - } - - # Change it so that any fully controlled kingdom is drifted, regardless of whether you hold the title or not - replace = { - before = { - every_held_title = { #Completely Controlled Kingdoms as well. - limit = { - root = { completely_controls = prev } - tier = tier_kingdom - save_temporary_scope_as = kingdom_to_check - any_county_in_region = { - region = custom_ep3_restore_rome_eastern_empire - any_this_title_or_de_jure_above = { - this = scope:kingdom_to_check + AND = { + de_jure_liege = title:h_eastern_roman_empire + any_de_jure_county = { + percent >= 0.51 + holder = { + OR = { + this = scope:new_holder + any_liege_or_above = { this = scope:new_holder } + } + } } } } - add_to_list = target_titles } + set_de_jure_liege_title = title:h_eastern_roman_empire + } } # end of before after = { - # IRToCK3: Modified the code so that only the kingdoms that are completely controlled get de jure drifted, without requiring you to hold that specific title like normal decision requires - every_sub_realm_county = { - limit = { - exists = kingdom - NOT = { kingdom = { is_in_list = target_titles } } - kingdom = { - any_de_jure_county = { # IRToCK3: Checks if at least half of the counties are in the correct region, to ensure only relevant kingdoms are drifted - percent >= 0.5 - title_province = { geographical_region = custom_ep3_restore_rome_eastern_empire } + every_empire = { + limit = { + OR = { + any_de_jure_county = { + percent >= 0.75 + holder = { + OR = { + this = scope:new_holder + any_liege_or_above = { this = scope:new_holder } + } } } - OR = { # IRToCK3: Will de jure drift a kingdom only if the kingdom has no holder, the holder is the Roman Emperor, or the holder is a vassal of the Roman Emperor - NOT = { exists = kingdom.holder } - kingdom.holder = root - kingdom.holder.top_liege = root - } - kingdom = { - save_temporary_scope_as = test_kingdom - } - holder.top_liege = { - completely_controls = scope:test_kingdom + AND = { + de_jure_liege = title:h_eastern_roman_empire + any_de_jure_county = { + percent >= 0.51 + holder = { + OR = { + this = scope:new_holder + any_liege_or_above = { this = scope:new_holder } + } + } + } } } - - kingdom = { add_to_list = target_titles } } + set_de_jure_liege_title = title:h_eastern_roman_empire + } - # IRToCK3: Also drift over all kingdoms that are de jure under e_roman_empire where at least half of their de jure counties are in the corresponding ERE region to prevent weird gaps - title:e_roman_empire = { - every_in_de_jure_hierarchy = { - limit = { - tier = tier_kingdom - NOT = { is_in_list = target_titles } - any_de_jure_county = { # IRToCK3: Checks if at least half of the counties are in the correct region, to ensure a kingdom is drifted for having only a couple counties in the region - percent >= 0.5 - title_province = { geographical_region = custom_ep3_restore_rome_eastern_empire } - } - } + # IRToCK3: Set remaining empires to be under WRE, and swap h_roman_empire title with WRE title + title:h_roman_empire = { + every_in_de_jure_hierarchy = { + limit = { tier = tier_empire } + set_de_jure_liege_title = title:h_western_roman_empire + } + } - add_to_list = target_titles - } + title:h_western_roman_empire = { + change_title_holder = { + holder = title:h_roman_empire.holder + change = scope:change } + } + + root = { set_primary_title_to = title:h_western_roman_empire } + + resolve_title_and_vassal_change = scope:change + + root = { destroy_title = title:h_roman_empire } } # end of after } - # Change it so that only titles that are currently de facto under e_roman_empire are actually given to e_byzantium + + ######### + # split_byzantine_empire_effect + ######### + # This effect splits up e_byzantium into several regional empires that better match the Roman administrative divisions, but they need to be changed to account for the fact that converted save games won't look the same as the base game + + # Setting up e_italia replace = { before = { - every_in_de_jure_hierarchy = { - if = { limit = { - holder ?= root - tier >= tier_county - } - change_title_holder = { - holder = scope:new_holder - change = scope:change - } - } - else = { - holder ?= { - change_liege = { - liege = scope:new_holder - change = scope:change + title:e_italy ?= { is_titular = no } + tier = tier_kingdom + OR = { + title:k_trinacria ?= this + title:k_sicily ?= this + title:k_naples ?= this + title:k_venice ?= this } } - } - } - } # End of before + } after = { - every_in_de_jure_hierarchy = { - if = { - limit = { - exists = holder - holder = root - tier >= tier_county - } - change_title_holder = { - holder = scope:new_holder - change = scope:change - } - } - else_if = { # IRToCK3: Modified this block so that only titles that are de jure part of e_byzantium and a direct vassal of the Roman Emperor have their liege changed to the new Byzantine Emperor limit = { - exists = holder - exists = liege - liege = root - } - - holder = { - change_liege = { - liege = scope:new_holder - change = scope:change - } - } - } - } - - title:e_roman_empire = { - holder = { - every_held_title = { # IRToCK3: This gives every title held by the Roman Emperor that isn't de jure part of e_roman_empire and is either: a county that is in the custom ERE region; OR a duchy/kingdom where half of it is de jure in the custom ERE region, to the new Byzantine Emperor - if = { - limit = { - NOT = { empire ?= title:e_roman_empire } - OR = { - AND = { - tier = tier_county - title_province = { geographical_region = custom_ep3_restore_rome_eastern_empire } - } - AND = { - OR = { - tier = tier_duchy - tier = tier_kingdom - } - any_de_jure_county = { - percent >= 0.5 - title_province = { geographical_region = custom_ep3_restore_rome_eastern_empire } - } - } - } - } - - change_title_holder = { - holder = scope:new_holder - change = scope:change + title:e_italy ?= { is_titular = no } + tier = tier_kingdom + OR = { + title:k_trinacria ?= this + title:k_sicily ?= this + title:k_naples ?= this + title:k_venice ?= this + # IRToCK3: Added this so that any kingdom where more than half of it is in the region also gets drifted + any_de_jure_county = { + percent >= 0.51 + title_province = { geographical_region = world_europe_south_italy } } } } + } + } - every_vassal = { # IRToCK3: This makes it so that any vassal of the Roman Emperor whose primary title is either: a de jure part of e_byzantium; OR at least not de jure part of e_roman_empire but has at least half of it be de jure in the custom ERE region, change liege to the new Byzantine Emperor - if = { - limit = { - OR = { - primary_title.empire ?= title:e_byzantium - AND = { - NOT = { primary_title.empire ?= title:e_roman_empire } - any_sub_realm_county = { - percent >= 0.5 - title_province = { geographical_region = custom_ep3_restore_rome_eastern_empire } - } - } - } - - } + # Setting up e_illyria + replace = { + before = { + limit = { + tier = tier_kingdom + OR = { + title:k_trinacria ?= this + title:k_epirus ?= this + title:k_croatia ?= this + title:k_serbia ?= this + title:k_bosnia ?= this + title:k_sicily ?= this + title:k_venice ?= this + title:k_naples ?= this + } + } + } - change_liege = { - liege = scope:new_holder - change = scope:change + after = { + limit = { + tier = tier_kingdom + OR = { + title:k_trinacria ?= this + title:k_croatia ?= this + title:k_serbia ?= this + title:k_bosnia ?= this + title:k_sicily ?= this + title:k_venice ?= this + title:k_naples ?= this + # IRToCK3: Added this so that any kingdom where more than half of it is in the region also gets drifted + any_de_jure_county = { + percent >= 0.51 + title_province = { geographical_region = custom_roman_illyricum } } } } - } - } - } # End of after + } } - # Change Roman Empire title and de jure hierarchy to the WRE title to represent full Empire split + # Setting up e_macedonia replace = { before = { - resolve_title_and_vassal_change = scope:change - hidden_effect = { set_primary_title_to = title:e_byzantium } - } # end of before - - after = { - hidden_effect = { set_primary_title_to = title:e_byzantium } - - # IRToCK3: Swap e_roman_empire title with WRE title - title:e_roman_empire = { - every_in_de_jure_hierarchy = { - limit = { - tier = tier_kingdom - } - set_de_jure_liege_title = title:e_western_roman_empire - } + limit = { + tier = tier_kingdom + OR = { + title:k_thessalonika ?= this + title:k_hellas ?= this + title:k_krete ?= this + title:k_bulgaria ?= this + } + } } - title:e_western_roman_empire = { - change_title_holder = { - holder = title:e_roman_empire.holder - change = scope:change - } + after = { + limit = { + tier = tier_kingdom + OR = { + title:k_thessalonika ?= this + title:k_hellas ?= this + title:k_krete ?= this + title:k_bulgaria ?= this + title:k_epirus ?= this + # IRToCK3: Added this so that any kingdom where more than half of it is in the region also gets drifted + any_de_jure_county = { + percent >= 0.51 + title_province = { geographical_region = converter_custom_macedonia_region } + } + } + } } + } - root = { - set_primary_title_to = title:e_western_roman_empire + # Setting up e_anatolia + replace = { + before = { + limit = { + tier = tier_kingdom + OR = { + title:k_saruhan ?= this + title:k_tekke ?= this + title:k_trebizond ?= this + title:k_ottoman ?= this + title:k_rum ?= this + title:k_mentese ?= this + title:k_karaman ?= this + title:k_germiyan ?= this + title:k_cyprus ?= this + title:k_eretnid ?= this + title:k_candar ?= this + title:k_nikaea ?= this + title:k_pontus ?= this + title:k_armenia ?= this + title:k_georgia ?= this + title:k_armenian_principality ?= this + title:k_old_armenia ?= this + title:k_anatolia ?= this + title:k_aydin ?= this + } + } } - resolve_title_and_vassal_change = scope:change - - root = { - destroy_title = title:e_roman_empire + after = { + limit = { + tier = tier_kingdom + OR = { + title:k_saruhan ?= this + title:k_tekke ?= this + title:k_trebizond ?= this + title:k_ottoman ?= this + title:k_rum ?= this + title:k_mentese ?= this + title:k_karaman ?= this + title:k_germiyan ?= this + title:k_cyprus ?= this + title:k_eretnid ?= this + title:k_candar ?= this + title:k_nikaea ?= this + title:k_pontus ?= this + title:k_armenia ?= this + title:k_georgia ?= this + title:k_armenian_principality ?= this + title:k_old_armenia ?= this + title:k_anatolia ?= this + title:k_aydin ?= this + # IRToCK3: Added this so that any kingdom where more than half of it is in the region also gets drifted + any_de_jure_county = { + percent >= 0.51 + title_province = { geographical_region = converter_custom_anatolia_region } + } + } + } } - } # end of after } - } @@ -2333,10 +1907,7 @@ } has_cultural_pillar = heritage_byzantine scope:character = { - OR = { - has_title = title:e_byzantium - has_title = title:e_roman_empire - } + is_roman_emperor_trigger = yes } } # DLC check. @@ -2359,13 +1930,9 @@ #has_cultural_pillar = heritage_byzantine # IRToCK3: Removed since this heritage now represents general Hellenistic cultures, so it doesn't really fit scope:character = { OR = { - has_title = title:e_byzantium - has_title = title:e_roman_empire - has_title = title:e_western_roman_empire # IRToCK3: Added WRE as possible title + is_roman_emperor_trigger = yes # IRToCK3: Also made it so that if you are in one of the Roman empire titles, you can choose this, as if being influenced by their traditions - top_liege.primary_title = title:e_byzantium - top_liege.primary_title = title:e_roman_empire - top_liege.primary_title = title:e_western_roman_empire + top_liege = { is_roman_emperor_trigger = yes } } } } @@ -2461,30 +2028,7 @@ } -"map_data/geographical_regions/geographical_region.txt" = { - - # The base game doesn't add siberia to the custom ere region, which would leave a weird gap if they somehow held land in that area - replace = { - before = { -custom_ep3_restore_rome_eastern_empire = { - regions = { - world_asia_minor world_middle_east world_africa_east world_india world_steppe world_tibet world_burma world_europe_south_east world_europe_east - } -} - } # end of before - - after = { -custom_ep3_restore_rome_eastern_empire = { - regions = { - world_asia_minor world_middle_east world_africa_east world_india world_steppe world_tibet world_burma world_europe_south_east world_europe_east world_siberia # IRToCK3: Added Siberia to the region since the base game doesn't include it - } -} - } # end of after - } -} - - -"events\decisions_events\roman_restoration_events.txt" = { +"events/decisions_events/roman_restoration_events.txt" = { ######### # roman_restoration.0124 @@ -2635,7 +2179,7 @@ custom_ep3_restore_rome_eastern_empire = { } -"common\decisions\80_major_decisions_south_asia.txt" = { +"common/decisions/80_major_decisions_south_asia.txt" = { ################## ## become_chakravarti_decision ################## @@ -2681,22 +2225,112 @@ custom_ep3_restore_rome_eastern_empire = { completely_controls_region = world_india # IRToCK3: Normally this decision requires you to completely control the empires of Rajastan, Deccan, and Bengal, but since they will likely not exist in a converted save game, this is being changed to just require controlling all of the india region } # end of after } + + ################## + ## found_the_empire_of_hindustan_decision + ################## + # is_valid block + replace = { + before = { + trigger_if = { + limit = { + is_ai = yes + } + OR = { + completely_controls = title:k_punjab + has_title = title:k_punjab + } + OR = { + completely_controls = title:k_delhi + has_title = title:k_delhi + } + } + trigger_if = { + limit = { + is_ai = no + } #And have some additional royal dignity for good measure. + has_title = title:k_punjab + has_title = title:k_delhi + completely_controls = title:d_kuru + OR = { + has_title = title:k_kosala + has_title = title:k_malwa + has_title = title:k_rajputana + } + } + } + + after = { + trigger_if = { + limit = { + is_ai = yes + } + # IRToCK3: Base game requires AI to completely control or have the title for the kingdoms of Punjab and Delhi. These titles might not exist in a converted save, so it was made so they either control the area covered by Punjab and Delhi OR control at least half that region and have at least one kingdom title located in the Rajastan area. + OR = { + completely_controls_region = converter_custom_hindustan_region + AND = { + any_held_title = { + title_tier = kingdom + any_de_jure_county = { + percent >= 0.8 # IRToCK3: To account for weird converted de jure hierarchies + title_province = { geographical_region = world_india_rajastan } + } + } + any_county_in_region = { + region = converter_custom_hindustan_region + percent >= 0.5 + holder.top_liege ?= root + } + } + } + } + trigger_if = { + limit = { + is_ai = no + } #And have some additional royal dignity for good measure. + # IRToCK3: To account for the kingdom titles possibly not appearing in a converted save, this was changed to players need to at least completely control the areas covered by Punjab and Delhi and either: three kingdoms in the Rajastan area; OR 90% of the Rajastan area (to account for weird converted de jure hierarchies) + completely_controls_region = converter_custom_hindustan_region + OR = { + any_held_title = { + title_tier = kingdom + count >= 3 + custom_tooltip = { + text = hindustan_control_3_kingdoms + any_de_jure_county = { + percent >= 0.8 # IRToCK3: To account for weird converted de jure hierarchies + title_province = { geographical_region = world_india_rajastan } + } + } + } + custom_tooltip = { + text = hindustan_control_rajastan + any_county_in_region = { + region = world_india_rajastan + percent >= 0.8 + holder.top_liege ?= root + } + } + } + } + } + } + } # End of 80_major_decisions_south_asia.txt -"common\scripted_effects\00_decisions_effects.txt" = { +"common/scripted_effects/00_decisions_effects.txt" = { ################## ## unite_india_decision_effect ################## replace = { before = { - title:e_rajastan = { add_to_list = indian_empire } - title:e_deccan = { add_to_list = indian_empire } - title:e_bengal = { add_to_list = indian_empire } + title:e_rajastan = { set_de_jure_liege_title = title:h_india } + title:e_deccan = { set_de_jure_liege_title = title:h_india } + title:e_bengal = { set_de_jure_liege_title = title:h_india } } # end of before after = { - # IRToCK3: This effect normally adds the Empires of Rajastan, Deccan, and Bengal to a list, and then they have all of their kingdoms made de jure vassals of e_india. This is being changed to instead take all empires that are 80% in the india region. + # IRToCK3: This effect normally makes the Empires of Rajastan, Deccan, and Bengal de jure under h_india. This is being changed to instead take all empires that are 80% in the india region. every_county_in_region = { region = world_india limit = { @@ -2718,6 +2352,11 @@ custom_ep3_restore_rome_eastern_empire = { empire = { add_to_list = indian_empire } } } + + every_in_list = { + list = indian_empire + set_de_jure_liege_title = title:h_india + } } # end of after } diff --git a/ImperatorToCK3/Data_Files/configurables/title_map.txt b/ImperatorToCK3/Data_Files/configurables/title_map.txt index 5fa77c816..a6d813c81 100644 --- a/ImperatorToCK3/Data_Files/configurables/title_map.txt +++ b/ImperatorToCK3/Data_Files/configurables/title_map.txt @@ -49,7 +49,7 @@ link = { ir = JUD ck3 = k_israel rank = k } # Italic link = { - ck3 = e_byzantium + ck3 = h_eastern_roman_empire ir_name_key = ERE ir_name_key = eastern_rome_name ir_name_key = eastern_roman_republic_name @@ -58,7 +58,7 @@ link = { ir_name_key = eastern_roman_dictatorship_name } link = { - ck3 = e_western_roman_empire + ck3 = h_western_roman_empire ir_name_key = WRE ir_name_key = western_rome_name ir_name_key = western_roman_republic_name @@ -196,11 +196,10 @@ link = { ir = YMT ck3 = e_nippon rank = e } link = { ir = YMT ck3 = k_yamato rank = k } link = { ir = AIU ck3 = k_hitakami rank = k } -# Korea (Including these since they seem to be the main power in their regions) -link = { ir = JNG ck3 = e_haedong rank = e } -link = { ir = JNG ck3 = k_goryeo rank = k } -link = { ir = JSN ck3 = e_haedong rank = e } -link = { ir = JSN ck3 = k_goguryeo rank = k } +# Korea +link = { ir = GAY ck3 = k_goguryeo rank = k } # In Terra-Indomita, this is the only Goguryeo tag, and its in the correct location, so its the best mapping +link = { ir = BAE ck3 = k_baekje rank = k } +link = { ir = SRO ck3 = k_silla rank = k } # Saro seems to have been the name of the city that dominated its region, forming Silla # Burma/Indochina link = { ir = PIY ck3 = e_burma rank = e } # Terra-Indomita decision, requires controlling all of Burma region diff --git a/ImperatorToCK3/Data_Files/configurables/version.txt b/ImperatorToCK3/Data_Files/configurables/version.txt index fdc7cb37b..6b4a780b1 100644 --- a/ImperatorToCK3/Data_Files/configurables/version.txt +++ b/ImperatorToCK3/Data_Files/configurables/version.txt @@ -1,9 +1,9 @@ # Version info -name = "Marcus Aurelius" +name = "Lucius Verus" source = "Imperator" minSource = "2.0" maxSource = "2.0" target = "CK3" -minTarget = "1.17" -maxTarget = "1.17" +minTarget = "1.18" +maxTarget = "1.18" diff --git a/ImperatorToCK3/Data_Files/converter_globals/FAQ.txt b/ImperatorToCK3/Data_Files/converter_globals/FAQ.txt index 8ff37f66e..95ace9cc3 100644 --- a/ImperatorToCK3/Data_Files/converter_globals/FAQ.txt +++ b/ImperatorToCK3/Data_Files/converter_globals/FAQ.txt @@ -14,6 +14,7 @@ A: Yes. Q: What about mods? A: The converter officially supports these Imperator mods: - Imperator: Invictus (https://steamcommunity.com/workshop/filedetails/?id=2532715348) +- Imperator: Invictus 1.7.0.3 (old) (https://steamcommunity.com/sharedfiles/filedetails/?id=3181950031) - Timeline Extension for Invictus (https://steamcommunity.com/sharedfiles/filedetails/?id=2845446001) - Full Mechanical Overhaul (https://steamcommunity.com/sharedfiles/filedetails/?id=2805839904) - Imperator: Invictus - More Cultural Names (https://steamcommunity.com/sharedfiles/filedetails/?id=2827761791) @@ -34,6 +35,15 @@ The converter also supports these CK3 mods: As for other mods, unless they change the map or how cultures, religions or flags work, you can probably use them. Total map overhauls are not supported (of course), and whatever new cultures and religions are brought by the mod - you'll have to add manually in the files in configurables folder. +Q: Which mod combinations are supported? +A: The converter supports the following combinations: +- Terra Indomita -> Rajas of Asia +- Terra Indomita -> Asia Expansion Project +- Terra Indomita -> vanilla CK3 +- Invictus (latest version) -> vanilla CK3 +- Invictus 1.7 -> vanilla CK3 +- vanilla Imperator -> vanilla CK3 + Q: How can I customize my game after converting? A: Use the guide in after_converting.txt in the converter subdirectory. Scan through configurables/ folder and look into the myriad of configuration files - a great majority of these files is intended to be modified by users to achieve specific conversion results. diff --git a/ImperatorToCK3/Data_Files/converter_globals/ReadMe.txt b/ImperatorToCK3/Data_Files/converter_globals/ReadMe.txt index 05eb0fd5b..1c5e98c1f 100644 --- a/ImperatorToCK3/Data_Files/converter_globals/ReadMe.txt +++ b/ImperatorToCK3/Data_Files/converter_globals/ReadMe.txt @@ -10,7 +10,7 @@ GitHub project: https://github.com/ParadoxGameConverters/ImperatorToCK3 REQUIREMENTS ---- Imperator: Rome - version 2.0 -Crusader Kings III - version 1.17 +Crusader Kings III - version 1.18 ----- INSTRUCTIONS diff --git a/ImperatorToCK3/Imperator/Countries/Country.cs b/ImperatorToCK3/Imperator/Countries/Country.cs index 9bb609541..91ef584b4 100644 --- a/ImperatorToCK3/Imperator/Countries/Country.cs +++ b/ImperatorToCK3/Imperator/Countries/Country.cs @@ -60,6 +60,8 @@ public CountryName CountryName { public IReadOnlySet<string> Variables { get; private set; } = ImmutableHashSet<string>.Empty; private readonly HashSet<Province> ownedProvinces = []; private readonly List<bool> inventionBooleans = []; + internal float TotalPowerBase { get; set; } = 0f; + internal float NonLoyalPowerBase { get; set; } = 0f; public CK3.Titles.Title? CK3Title { get; set; } diff --git a/ImperatorToCK3/Imperator/Countries/CountryFactory.cs b/ImperatorToCK3/Imperator/Countries/CountryFactory.cs index 6dc7d47d5..57bc1e0ba 100644 --- a/ImperatorToCK3/Imperator/Countries/CountryFactory.cs +++ b/ImperatorToCK3/Imperator/Countries/CountryFactory.cs @@ -84,6 +84,8 @@ private static void RegisterCountryKeywords(Parser parser, Country parsedCountry parsedCountry.republicLaws.Add(string.Intern(reader.GetString()))); parser.RegisterRegex(tribalLawRegexStr, reader => parsedCountry.tribalLaws.Add(string.Intern(reader.GetString()))); + parser.RegisterKeyword("total_power_base", reader => parsedCountry.TotalPowerBase = reader.GetFloat()); + parser.RegisterKeyword("non_loyal_power_base", reader => parsedCountry.NonLoyalPowerBase = reader.GetFloat()); parser.RegisterKeyword("is_antagonist", ParserHelpers.IgnoreItem); parser.RegisterKeyword("has_senior_ally", ParserHelpers.IgnoreItem); parser.RegisterKeyword("cached_happiness_for_owned", ParserHelpers.IgnoreItem); diff --git a/ImperatorToCK3/Imperator/World.cs b/ImperatorToCK3/Imperator/World.cs index fb6f76b85..4352fabac 100644 --- a/ImperatorToCK3/Imperator/World.cs +++ b/ImperatorToCK3/Imperator/World.cs @@ -74,6 +74,7 @@ internal partial class World { public IReadOnlyList<Mod> UsableMods { get; private set; } = Array.Empty<Mod>(); public bool InvictusDetected { get; private set; } + public bool Invictus1_7Detected { get; private set; } // https://steamcommunity.com/sharedfiles/filedetails/?id=3181950031 public bool TerraIndomitaDetected { get; private set; } private enum SaveType { Invalid, Plaintext, CompressedEncoded } @@ -339,6 +340,7 @@ public World(Configuration config, ConverterVersion converterVersion, out Thread // Detect specific mods. InvictusDetected = GlobalFlags.Contains("is_playing_invictus"); + Invictus1_7Detected = UsableMods.Any(m => m.Name.StartsWith("Imperator: Invictus 1.7.")); TerraIndomitaDetected = Countries.Any(c => c.Variables.Contains("unification_points")) || UsableMods.Any(m => m.Name == "Antiquitas"); diff --git a/ImperatorToCK3/Mappers/Region/CK3Region.cs b/ImperatorToCK3/Mappers/Region/CK3Region.cs index 98b660845..6c6d22b59 100644 --- a/ImperatorToCK3/Mappers/Region/CK3Region.cs +++ b/ImperatorToCK3/Mappers/Region/CK3Region.cs @@ -1,23 +1,28 @@ using commonItems; +using commonItems.Serialization; using ImperatorToCK3.CK3.Titles; +using System; using System.Collections.Generic; +using System.Text; using ZLinq; namespace ImperatorToCK3.Mappers.Region; internal sealed class CK3Region { public string Name { get; } - private readonly HashSet<string> parsedRegionIds = new(); - public Dictionary<string, CK3Region> Regions { get; } = new(); - private readonly HashSet<string> parsedDuchyIds = new(); - public Dictionary<string, Title> Duchies { get; } = new(); - private readonly HashSet<string> parsedCountyIds = new(); - public Dictionary<string, Title> Counties { get; } = new(); - public SortedSet<ulong> Provinces { get; } = new(); + private readonly HashSet<string> parsedRegionIds = []; + public Dictionary<string, CK3Region> Regions { get; } = []; + private readonly HashSet<string> parsedDuchyIds = []; + private readonly HashSet<string> parsedKingdomIds = []; + public Dictionary<string, Title> Duchies { get; } = []; + private readonly HashSet<string> parsedCountyIds = []; + public Dictionary<string, Title> Counties { get; } = []; + public SortedSet<ulong> Provinces { get; } = []; + private readonly List<KeyValuePair<string, StringOfItem>> attributes = []; public CK3Region(string name) => Name = name; - public void LinkRegions(Dictionary<string, CK3Region> regions, Dictionary<string, Title> duchies, Dictionary<string, Title> counties) { + public void LinkRegions(Dictionary<string, CK3Region> regions, Dictionary<string, Title> kingdoms, Dictionary<string, Title> duchies, Dictionary<string, Title> counties) { // regions foreach (var requiredRegionName in parsedRegionIds) { if (regions.TryGetValue(requiredRegionName, out var regionToLink)) { @@ -27,6 +32,25 @@ public void LinkRegions(Dictionary<string, CK3Region> regions, Dictionary<string } } + // kingdoms + foreach (var requiredKingdomName in parsedKingdomIds) { + // We can't just keep the kingdom because the converter changes the de jure kingdoms setup. + // So get all the de jure vassals of the kingdom and link them instead. + if (kingdoms.TryGetValue(requiredKingdomName, out var kingdom)) { + foreach (var deJureVassal in kingdom.DeJureVassals) { + if (deJureVassal.Rank == TitleRank.duchy) { + LinkDuchy(deJureVassal); + } else if (deJureVassal.Rank == TitleRank.county) { + LinkCounty(deJureVassal); + } else if (deJureVassal is {Rank: TitleRank.barony, ProvinceId: not null}) { + Provinces.Add(deJureVassal.ProvinceId.Value); + } + } + } else { + Logger.Warn($"Region's {Name} kingdom {requiredKingdomName} does not exist!"); + } + } + // duchies foreach (var requiredDuchyName in parsedDuchyIds) { if (duchies.TryGetValue(requiredDuchyName, out var duchyToLink)) { @@ -75,6 +99,11 @@ static CK3Region() { regionToReturn.parsedRegionIds.Add(id); } }); + parser.RegisterKeyword("kingdoms", reader => { + foreach (var id in reader.GetStrings()) { + regionToReturn.parsedKingdomIds.Add(id); + } + }); parser.RegisterKeyword("duchies", reader => { foreach (var id in reader.GetStrings()) { regionToReturn.parsedDuchyIds.Add(id); @@ -90,11 +119,56 @@ static CK3Region() { regionToReturn.Provinces.Add(id); } }); - parser.RegisterRegex(CommonRegexes.Catchall, ParserHelpers.IgnoreAndLogItem); + parser.RegisterRegex(CommonRegexes.String, (reader, keyword) => { + regionToReturn.attributes.Add(new KeyValuePair<string, StringOfItem>(keyword, reader.GetStringOfItem())); + }); } public static CK3Region Parse(string name, BufferedReader reader) { regionToReturn = new CK3Region(name); parser.ParseStream(reader); return regionToReturn; } + + public override string ToString() { + var sb = new StringBuilder(); + sb.Append(Name).AppendLine(" = {"); + if (Regions.Count > 0) { + sb.Append("\tregions = { "); + foreach (string regionId in Regions.Keys) { + sb.Append(regionId).Append(' '); + } + sb.AppendLine("}"); + } + + if (Duchies.Count > 0) { + sb.Append("\tduchies = { "); + foreach (var duchyId in Duchies.Values) { + sb.Append(duchyId).Append(' '); + } + sb.AppendLine("}"); + } + + if (Counties.Count > 0) { + sb.Append("\tcounties = { "); + foreach (var countyId in Counties.Values) { + sb.Append(countyId).Append(' '); + } + sb.AppendLine("}"); + } + + if (Provinces.Count > 0) { + sb.Append("\tprovinces = { "); + foreach (var provinceId in Provinces) { + sb.Append(provinceId).Append(' '); + } + sb.AppendLine("}"); + } + + if (attributes.Count > 0) { + sb.AppendLine(PDXSerializer.Serialize(attributes, indent: "\t", withBraces: false)); + } + + sb.Append('}'); + return sb.ToString(); + } } \ No newline at end of file diff --git a/ImperatorToCK3/Mappers/Region/CK3RegionMapper.cs b/ImperatorToCK3/Mappers/Region/CK3RegionMapper.cs index 40e00cd9a..2559c7524 100644 --- a/ImperatorToCK3/Mappers/Region/CK3RegionMapper.cs +++ b/ImperatorToCK3/Mappers/Region/CK3RegionMapper.cs @@ -8,6 +8,8 @@ namespace ImperatorToCK3.Mappers.Region; internal sealed class CK3RegionMapper { + public IReadOnlyDictionary<string, CK3Region> Regions => regions; + public CK3RegionMapper() { } public CK3RegionMapper(ModFilesystem ck3ModFS, Title.LandedTitles landedTitles) { Logger.Info("Initializing Geography..."); @@ -32,6 +34,8 @@ public void LoadRegions(ModFilesystem ck3ModFS, Title.LandedTitles landedTitles) counties[title.Id] = title; } else if (titleRank == TitleRank.duchy) { duchies[title.Id] = title; + } else if (titleRank == TitleRank.kingdom) { + kingdoms[title.Id] = title; } } @@ -104,10 +108,11 @@ private void RegisterRegionKeys(Parser parser) { } private void LinkRegions() { foreach (var region in regions.Values) { - region.LinkRegions(regions, duchies, counties); + region.LinkRegions(regions, kingdoms, duchies, counties); } } - private readonly Dictionary<string, CK3Region> regions = new(); - private readonly Dictionary<string, Title> duchies = new(); - private readonly Dictionary<string, Title> counties = new(); + private readonly Dictionary<string, CK3Region> regions = []; + private readonly Dictionary<string, Title> kingdoms = []; + private readonly Dictionary<string, Title> duchies = []; + private readonly Dictionary<string, Title> counties = []; } \ No newline at end of file diff --git a/ImperatorToCK3/Mappers/TagTitle/TagTitleMapper.cs b/ImperatorToCK3/Mappers/TagTitle/TagTitleMapper.cs index f136cc11d..1eef4a9f7 100644 --- a/ImperatorToCK3/Mappers/TagTitle/TagTitleMapper.cs +++ b/ImperatorToCK3/Mappers/TagTitle/TagTitleMapper.cs @@ -62,7 +62,7 @@ public void RegisterGovernorship(string imperatorRegion, string imperatorCountry return generatedTitleId; } public string? GetTitleForTag(Country country, CK3LocDB ck3LocDB) { - return GetTitleForTag(country, localizedTitleName: string.Empty, maxTitleRank: TitleRank.empire, ck3LocDB); + return GetTitleForTag(country, localizedTitleName: string.Empty, maxTitleRank: TitleRank.hegemony, ck3LocDB); } public string? GetTitleForSubject(Country subject, string localizedTitleName, Country overlord, CK3LocDB ck3LocDB) { @@ -178,6 +178,7 @@ private void RegisterKeys(Parser parser) { private void LoadRankMappings(string rankMappingsPath) { Logger.Info("Parsing country rank mappings..."); var parser = new Parser(); + parser.RegisterKeyword("hegemony_keywords", reader => hegemonyKeywords.AddRange(reader.GetStrings())); parser.RegisterKeyword("empire_keywords", reader => empireKeywords.AddRange(reader.GetStrings())); parser.RegisterKeyword("kingdom_keywords", reader => kingdomKeywords.AddRange(reader.GetStrings())); parser.RegisterKeyword("duchy_keywords", reader => duchyKeywords.AddRange(reader.GetStrings())); @@ -192,6 +193,9 @@ private TitleRank GetCK3TitleRank(Country country, string localizedTitleName) { // Split the name into words. var words = localizedTitleName.Split(' '); + if (hegemonyKeywords.Any(kw => words.Contains(kw, StringComparer.OrdinalIgnoreCase))) { + return TitleRank.hegemony; + } if (empireKeywords.Any(kw => words.Contains(kw, StringComparer.OrdinalIgnoreCase))) { return TitleRank.empire; } @@ -226,6 +230,7 @@ private static TitleRank GetCK3GovernorshipRank(string ck3LiegeTitleId) { var ck3LiegeRank = Title.GetRankForId(ck3LiegeTitleId); return ck3LiegeRank switch { + TitleRank.hegemony => TitleRank.kingdom, TitleRank.empire => TitleRank.kingdom, TitleRank.kingdom => TitleRank.duchy, TitleRank.duchy => TitleRank.county, @@ -271,11 +276,12 @@ private static string GenerateNewTitleId(string imperatorRegion, string imperato private static string GetTitlePrefixForRank(TitleRank titleRank) { return titleRank switch { - TitleRank.empire => "e_", - TitleRank.kingdom => "k_", - TitleRank.duchy => "d_", - TitleRank.county => "c_", TitleRank.barony => "b_", + TitleRank.county => "c_", + TitleRank.duchy => "d_", + TitleRank.kingdom => "k_", + TitleRank.empire => "e_", + TitleRank.hegemony => "h_", _ => throw new ArgumentOutOfRangeException(nameof(titleRank)) }; } @@ -285,6 +291,7 @@ private static string GetTitlePrefixForRank(TitleRank titleRank) { private readonly Dictionary<string, string> registeredGovernorshipTitles = new(); // We store already mapped governorships here. private readonly SortedSet<string> usedTitles = new(); + private readonly HashSet<string> hegemonyKeywords = []; private readonly HashSet<string> empireKeywords = ["empire"]; private readonly HashSet<string> kingdomKeywords = ["kingdom"]; private readonly HashSet<string> duchyKeywords = ["duchy"]; diff --git a/ImperatorToCK3/Outputter/BookmarkOutputter.cs b/ImperatorToCK3/Outputter/BookmarkOutputter.cs index c2116375b..8fc4328db 100644 --- a/ImperatorToCK3/Outputter/BookmarkOutputter.cs +++ b/ImperatorToCK3/Outputter/BookmarkOutputter.cs @@ -94,6 +94,10 @@ Configuration config } } } + var subheadingLoc = ck3LocDB.GetOrCreateLocBlock($"bm_converted_{holder.Id}_subheading"); + foreach (var language in ConverterGlobals.SupportedLanguages) { + subheadingLoc[language] = "$BOOKMARK_SUBHEADING_DEFAULT$"; + } var holderDescLoc = ck3LocDB.GetOrCreateLocBlock($"bm_converted_{holder.Id}_desc"); foreach (var language in ConverterGlobals.SupportedLanguages) { holderDescLoc[language] = string.Empty; @@ -186,11 +190,11 @@ private static async Task DrawBookmarkMap(Configuration config, List<Title> play var ck3ModFS = ck3World.ModFS; var provincesMapPath = ck3ModFS.GetActualFileLocation("map_data/provinces.png"); if (provincesMapPath is null) { - throw new FileNotFoundException($"{nameof(provincesMapPath)} not found!"); + throw new FileNotFoundException("provinces.png not found!"); } - var flatmapPath = ck3ModFS.GetActualFileLocation("gfx/map/terrain/flatmap.dds"); + var flatmapPath = ck3ModFS.GetActualFileLocation("gfx/map/terrain/flat_maps/flatmap.dds"); if (flatmapPath is null) { - throw new FileNotFoundException($"{nameof(flatmapPath)} not found!"); + throw new FileNotFoundException("flatmap.dds not found!"); } const string tmpFlatmapPath = "temp/flatmap.png"; diff --git a/ImperatorToCK3/Outputter/GeographicalRegionOutputter.cs b/ImperatorToCK3/Outputter/GeographicalRegionOutputter.cs new file mode 100644 index 000000000..2f0283e12 --- /dev/null +++ b/ImperatorToCK3/Outputter/GeographicalRegionOutputter.cs @@ -0,0 +1,41 @@ +using commonItems; +using commonItems.Serialization; +using ImperatorToCK3.CommonUtils; +using ImperatorToCK3.Mappers.Region; +using System; +using System.IO; +using System.Text; +using System.Threading.Tasks; + +namespace ImperatorToCK3.Outputter; + +internal static class GeographicalRegionOutputter { + public static async Task OutputRegions(string outputModPath, CK3RegionMapper ck3RegionMapper) { + // We need to output all geographical regions, because we modify de jure kingdoms setup + // and regions now reference de jure kingdoms. + Logger.Info("Writing dynasties..."); + + var sb = new StringBuilder(); + foreach (var region in ck3RegionMapper.Regions.Values) { + sb.AppendLine(region.ToString()); + } + + const string regionsFileName = "irtock3_all_regions.txt"; + var outputPath = Path.Combine(outputModPath, "map_data/geographical_regions", regionsFileName); + var output = FileHelper.OpenWriteWithRetries(outputPath, encoding: Encoding.UTF8); + await using (output.ConfigureAwait(false)) { + await output.WriteAsync(sb.ToString()).ConfigureAwait(false); + } + + // There may be other region files due to being in the removable_file_blocks*.txt, replaceable_file_blocks*.txt + // or blankMod. Their contents are already in the irtock3_all_regions.txt file outputted above, + // so we can remove the extra files. + var regionsFiles = Directory.GetFiles(Path.Combine(outputModPath, "map_data/geographical_regions"), "*.txt"); + foreach (var file in regionsFiles) { + if (Path.GetFileName(file) == regionsFileName) { + continue; + } + File.Delete(file); + } + } +} \ No newline at end of file diff --git a/ImperatorToCK3/Outputter/WorldOutputter.cs b/ImperatorToCK3/Outputter/WorldOutputter.cs index 33c020e6d..761d9d5bd 100644 --- a/ImperatorToCK3/Outputter/WorldOutputter.cs +++ b/ImperatorToCK3/Outputter/WorldOutputter.cs @@ -28,6 +28,7 @@ public static void OutputWorld(World ck3World, Imperator.World imperatorWorld, C CreateFolders(outputPath); Task.WaitAll( + GeographicalRegionOutputter.OutputRegions(outputPath, ck3World.CK3RegionMapper), CharactersOutputter.OutputEverything(outputPath, ck3World.Characters, imperatorWorld.EndDate, config.CK3BookmarkDate, ck3World.ModFS), DynastiesOutputter.OutputDynastiesAndHouses(outputPath, ck3World.Dynasties, ck3World.DynastyHouses), @@ -183,6 +184,7 @@ private static void OutputModFile(string outputName) { modFileBuilder.AppendLine("replace_path=\"history/struggles\""); modFileBuilder.AppendLine("replace_path=\"history/titles\""); modFileBuilder.AppendLine("replace_path=\"history/wars\""); + modFileBuilder.AppendLine("replace_path=\"map_data/geographical_regions\""); var modText = modFileBuilder.ToString(); var modFilePath = Path.Combine("output", $"{outputName}.mod"); diff --git a/ImperatorToCK3/Resources/images/LatestReleaseBanner.png b/ImperatorToCK3/Resources/images/LatestReleaseBanner.png index 3889efaf0..193ee542e 100644 Binary files a/ImperatorToCK3/Resources/images/LatestReleaseBanner.png and b/ImperatorToCK3/Resources/images/LatestReleaseBanner.png differ diff --git a/ImperatorToCK3/Resources/images/LatestReleaseBanner.xcf b/ImperatorToCK3/Resources/images/LatestReleaseBanner.xcf index b1275f9f0..158524ae2 100644 Binary files a/ImperatorToCK3/Resources/images/LatestReleaseBanner.xcf and b/ImperatorToCK3/Resources/images/LatestReleaseBanner.xcf differ diff --git a/README.md b/README.md index 731af486c..ed5b226a4 100644 --- a/README.md +++ b/README.md @@ -12,6 +12,11 @@ To help with development, please visit the official [development thread](https:/ [![Codacy Badge](https://app.codacy.com/project/badge/Grade/8a9f106c7b9a43faa37ad74b5897edc5)](https://www.codacy.com/gh/ParadoxGameConverters/ImperatorToCK3/dashboard?utm_source=github.com&utm_medium=referral&utm_content=ParadoxGameConverters/ImperatorToCK3&utm_campaign=Badge_Grade) [![Coverage Status](https://coveralls.io/repos/github/ParadoxGameConverters/ImperatorToCK3/badge.svg?branch=master)](https://coveralls.io/github/ParadoxGameConverters/ImperatorToCK3?branch=master) +## Building and running +See [Building and running](https://github.com/ParadoxGameConverters/ImperatorToCK3/wiki/Building-and-running) on our GitHub wiki. + +For more exotic setups, try following the steps from `.github/workflows/build_dev_version.yml`. + ## Credits - Iohannes - Data files, ideas - comagoosie - librakaly save melter @@ -39,6 +44,6 @@ To help with development, please visit the official [development thread](https:/ - Bronze Age Reborn mod team (https://steamcommunity.com/sharedfiles/filedetails/?id=3232096613) and Svanley - Hattian religion, Elamite religion - កាបូន26 - Help with mapping Terra Indomita cultures to Asia Expansion Project - Nezaros, author of the Rajas of Asia mod for CK3 (https://steamcommunity.com/sharedfiles/filedetails/?id=2509174436) - Permission to use the Samre culture from their mod -- tanner918 - Data files, mostly for the Terra Indomita -> Rajas of Asia conversion +- tanner918 - Data files and compatching for new CK3 and mod versions - ciurlys - Definition of mithra_religion, the Iranian cult of Mithra - Astures - Help with debugging The Fallen Eagle crashes