From bb5b63b4eb1fc2ac96702d2fb61bec97ed18f4dc Mon Sep 17 00:00:00 2001 From: sisby-folk Date: Sat, 23 Dec 2023 16:51:38 +1100 Subject: [PATCH] configurable star seed and limit --- build.gradle | 1 + gradle.properties | 2 +- libs.versions.toml | 2 + .../client/StarcallerClientNetworking.java | 3 +- .../client/mixin/MixinClientWorld.java | 27 +- .../client/mixin/MixinWorldRenderer.java | 79 +- .../java/folk/sisby/starcaller/StarState.java | 31 +- .../folk/sisby/starcaller/Starcaller.java | 17 +- .../sisby/starcaller/StarcallerConfig.java | 19 + .../starcaller/duck/StarcallerWorld.java | 3 +- .../starcaller/mixin/MixinServerWorld.java | 29 +- .../folk/sisby/starcaller/util/StarUtil.java | 30 +- .../assets/starcaller/lang/en_us.json | 6689 ++++++++++++++++- 13 files changed, 6788 insertions(+), 144 deletions(-) create mode 100644 src/main/java/folk/sisby/starcaller/StarcallerConfig.java diff --git a/build.gradle b/build.gradle index 4da7c3d..65d8469 100644 --- a/build.gradle +++ b/build.gradle @@ -29,6 +29,7 @@ dependencies { mappings libs.yarn modImplementation libs.fl modImplementation libs.fapi + modImplementation libs.kaleidoConfig } processResources { diff --git a/gradle.properties b/gradle.properties index 8d70255..c9ef0eb 100644 --- a/gradle.properties +++ b/gradle.properties @@ -7,6 +7,6 @@ org.gradle.configureondemand=true # Enable advanced multi-module optimizations (share tiny-remaper instance between projects) fabric.loom.multiProjectOptimisation=true # Mod Properties -baseVersion = 0.1.1 +baseVersion = 0.2.0 defaultBranch = 1.20.4 branch = 1.20.4 diff --git a/libs.versions.toml b/libs.versions.toml index ad3f87d..64707c7 100644 --- a/libs.versions.toml +++ b/libs.versions.toml @@ -7,6 +7,7 @@ mc = "1.20.4" fl = "0.15.2" yarn = "1.20.4+build.3" fapi = "0.91.3+1.20.4" +kaleidoConfig = "0.1.1+1.1.0-beta.3" [plugins] loom = { id = "fabric-loom", version.ref = "loom" } @@ -18,3 +19,4 @@ mc = { group = "mojang", name = "minecraft", version.ref = "mc" } fl = { group = "net.fabricmc", name = "fabric-loader", version.ref = "fl" } yarn = { group = "net.fabricmc", name = "yarn", version.ref = "yarn" } fapi = { group = "net.fabricmc.fabric-api", name = "fabric-api", version.ref = "fapi" } +kaleidoConfig = { group = "folk.sisby", name = "kaleido-config", version.ref = "kaleidoConfig" } \ No newline at end of file diff --git a/src/client/java/folk/sisby/starcaller/client/StarcallerClientNetworking.java b/src/client/java/folk/sisby/starcaller/client/StarcallerClientNetworking.java index c53de90..b29dcfc 100644 --- a/src/client/java/folk/sisby/starcaller/client/StarcallerClientNetworking.java +++ b/src/client/java/folk/sisby/starcaller/client/StarcallerClientNetworking.java @@ -22,8 +22,7 @@ public static void init() { private static void setInitialStarState(MinecraftClient client, ClientPlayNetworkHandler handler, PacketByteBuf buf, PacketSender responseSender) { client.execute(() -> { if (client.world instanceof StarcallerWorld scw) { - scw.starcaller$setSeed(buf.readLong()); - scw.starcaller$setIterations(buf.readInt()); + scw.starcaller$setGeneratorValues(buf.readLong(), buf.readInt()); updateGrounded(client, handler, buf, responseSender); updateColors(client, handler, buf, responseSender); } diff --git a/src/client/java/folk/sisby/starcaller/client/mixin/MixinClientWorld.java b/src/client/java/folk/sisby/starcaller/client/mixin/MixinClientWorld.java index 5fa72b9..e183411 100644 --- a/src/client/java/folk/sisby/starcaller/client/mixin/MixinClientWorld.java +++ b/src/client/java/folk/sisby/starcaller/client/mixin/MixinClientWorld.java @@ -6,34 +6,21 @@ import folk.sisby.starcaller.duck.StarcallerWorld; import folk.sisby.starcaller.util.StarUtil; import net.minecraft.client.MinecraftClient; -import net.minecraft.client.network.ClientPlayNetworkHandler; -import net.minecraft.client.render.WorldRenderer; import net.minecraft.client.world.ClientWorld; import net.minecraft.entity.player.PlayerEntity; -import net.minecraft.registry.RegistryKey; -import net.minecraft.registry.entry.RegistryEntry; -import net.minecraft.util.profiler.Profiler; -import net.minecraft.world.World; import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.Unique; import org.spongepowered.asm.mixin.injection.At; import org.spongepowered.asm.mixin.injection.Inject; -import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; import java.util.List; -import java.util.function.Supplier; @Mixin(ClientWorld.class) public abstract class MixinClientWorld implements StarcallerWorld { - @Unique private long starcaller$seed = Starcaller.STAR_SEED; - @Unique private int starcaller$iterations = Starcaller.STAR_ITERATIONS; - @Unique private List starcaller$stars; - - @Inject(method = "", at = @At("TAIL")) - public void generateStars(ClientPlayNetworkHandler clientPlayNetworkHandler, ClientWorld.Properties properties, RegistryKey registryKey, RegistryEntry registryEntry, int i, int j, Supplier supplier, WorldRenderer worldRenderer, boolean bl, long l, CallbackInfo ci) { - starcaller$stars = StarUtil.generateStars(starcaller$seed, starcaller$iterations); - } + @Unique private long starcaller$seed = 10842L; + @Unique private int starcaller$iterations = 1500; + @Unique private List starcaller$stars = StarUtil.generateStars(starcaller$seed, starcaller$iterations); @Inject(method = "method_23787", at = @At("HEAD"), cancellable = true) public void fullBrightStarsWithSpear(float f, CallbackInfoReturnable cir) { @@ -75,12 +62,10 @@ public void fullBrightStarsWithSpear(float f, CallbackInfoReturnable cir) } @Override - public void starcaller$setSeed(long seed) { + public void starcaller$setGeneratorValues(long seed, int iterations) { this.starcaller$seed = seed; - } - - @Override - public void starcaller$setIterations(int iterations) { this.starcaller$iterations = iterations; + this.starcaller$stars = StarUtil.generateStars(starcaller$seed, starcaller$iterations); + StarcallerClient.reloadStars((ClientWorld) (Object) this); } } diff --git a/src/client/java/folk/sisby/starcaller/client/mixin/MixinWorldRenderer.java b/src/client/java/folk/sisby/starcaller/client/mixin/MixinWorldRenderer.java index 758b6a9..ab4ae29 100644 --- a/src/client/java/folk/sisby/starcaller/client/mixin/MixinWorldRenderer.java +++ b/src/client/java/folk/sisby/starcaller/client/mixin/MixinWorldRenderer.java @@ -18,8 +18,10 @@ import org.spongepowered.asm.mixin.Shadow; import org.spongepowered.asm.mixin.Unique; import org.spongepowered.asm.mixin.injection.At; +import org.spongepowered.asm.mixin.injection.Constant; import org.spongepowered.asm.mixin.injection.Inject; import org.spongepowered.asm.mixin.injection.ModifyArg; +import org.spongepowered.asm.mixin.injection.ModifyConstant; import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; import org.spongepowered.asm.mixin.injection.callback.LocalCapture; @@ -37,13 +39,26 @@ public void resetStarDebug(BufferBuilder bufferBuilder, CallbackInfoReturnable cir, Random random, int i, double d, double e, double f, double g, double h, double j, double k, double l, double m, double n, double o, double p, double q, double r) { - if (Starcaller.DEBUG_SKY) { - Starcaller.LOGGER.info("Gen Star {} {} {}", j, k, l); - } + public void countSuccessfulStars(BufferBuilder bufferBuilder, CallbackInfoReturnable cir, Random random, int i, double d, double e, double f, double g, double h, double j, double k, double l, double m, double n, double o, double p, double q, double r) { starIndex++; } + @ModifyArg(method = "renderStars(Lnet/minecraft/client/render/BufferBuilder;)Lnet/minecraft/client/render/BufferBuilder$BuiltBuffer;", at = @At(value = "INVOKE", target = "Lnet/minecraft/util/math/random/Random;create(J)Lnet/minecraft/util/math/random/Random;")) + public long useCustomSeed(long original) { + if (world instanceof StarcallerWorld scw) { + return scw.starcaller$getSeed(); + } + return original; + } + + @ModifyConstant(method = "renderStars(Lnet/minecraft/client/render/BufferBuilder;)Lnet/minecraft/client/render/BufferBuilder$BuiltBuffer;", constant = @Constant(intValue = 1500)) + public int useCustomLimit(int constant) { + if (world instanceof StarcallerWorld scw) { + return scw.starcaller$getIterations(); + } + return constant; + } + @ModifyReceiver(method = "renderStars(Lnet/minecraft/client/render/BufferBuilder;)Lnet/minecraft/client/render/BufferBuilder$BuiltBuffer;", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/render/VertexConsumer;next()V")) public VertexConsumer setColorPerStar(VertexConsumer instance, BufferBuilder builder) { int color = Star.DEFAULT_COLOR; @@ -76,60 +91,4 @@ public VertexFormat useColorBuffer(VertexFormat vertexFormat) { public ShaderProgram useColorProgram(ShaderProgram shaderProgram) { return GameRenderer.getPositionColorProgram(); } - - @Inject(method = "renderStars(Lnet/minecraft/client/render/BufferBuilder;)Lnet/minecraft/client/render/BufferBuilder$BuiltBuffer;", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/render/BufferBuilder;end()Lnet/minecraft/client/render/BufferBuilder$BuiltBuffer;")) - public void renderDebugStars(BufferBuilder bufferBuilder, CallbackInfoReturnable cir) { - if (Starcaller.DEBUG_SKY) { - // D, E, F -> Z, Y, -X - // X, Y, Z -> -F, E, D - - // +Z - bufferBuilder.vertex(100.0F, 0 - 2, 0 - 2).next(); - bufferBuilder.vertex(100.0F, 0 - 2, 0 + 2).next(); - bufferBuilder.vertex(100.0F, 0 + 2, 0 + 2).next(); - bufferBuilder.vertex(100.0F, 0 + 2, 0 - 2).next(); - - // -Z - bufferBuilder.vertex(-100.0F, 0 - 2, 0).next(); - bufferBuilder.vertex(-100.0F, 0, 0 - 2).next(); - bufferBuilder.vertex(-100.0F, 0 + 2, 0).next(); - bufferBuilder.vertex(-100.0F, 0, 0 + 2).next(); - - // Y - bufferBuilder.vertex(0 - 8, 100F, 0 - 8).next(); - bufferBuilder.vertex(0 + 8, 100F, 0 - 8).next(); - bufferBuilder.vertex(0 + 8, 100F, 0 + 8).next(); - bufferBuilder.vertex(0 - 8, 100F, 0 + 8).next(); - - // -Y - bufferBuilder.vertex(0 - 8, -100F, 0).next(); - bufferBuilder.vertex(0, -100F, 0 + 8).next(); - bufferBuilder.vertex(0 + 8, -100F, 0).next(); - bufferBuilder.vertex(0, -100F, 0 - 8).next(); - - // X - bufferBuilder.vertex(0 - 2, 0 - 2, -100.0F).next(); - bufferBuilder.vertex(0 - 2, 0 + 2, -100.0F).next(); - bufferBuilder.vertex(0 + 2, 0 + 2, -100.0F).next(); - bufferBuilder.vertex(0 + 2, 0 - 2, -100.0F).next(); - - // -X - bufferBuilder.vertex(0 - 2, 0, 100.0F).next(); - bufferBuilder.vertex(0, 0 - 2, 100.0F).next(); - bufferBuilder.vertex(0 + 2, 0, 100.0F).next(); - bufferBuilder.vertex(0, 0 + 2, 100.0F).next(); - - // +ZX - bufferBuilder.vertex(70.0F, 0 - 2, -70.0F - 2).next(); - bufferBuilder.vertex(70.0F, 0 - 2, -70.0F + 2).next(); - bufferBuilder.vertex(70.0F, 0 + 2, -70.0F + 2).next(); - bufferBuilder.vertex(70.0F, 0 + 2, -70.0F - 2).next(); - - // -ZX - bufferBuilder.vertex(-70.0F, 0 - 2, 70.0F).next(); - bufferBuilder.vertex(-70.0F, 0, 70.0F - 2).next(); - bufferBuilder.vertex(-70.0F, 0 + 2, 70.0F).next(); - bufferBuilder.vertex(-70.0F, 0, 70.0F + 2).next(); - } - } } diff --git a/src/main/java/folk/sisby/starcaller/StarState.java b/src/main/java/folk/sisby/starcaller/StarState.java index 3723882..ce90aff 100644 --- a/src/main/java/folk/sisby/starcaller/StarState.java +++ b/src/main/java/folk/sisby/starcaller/StarState.java @@ -10,32 +10,37 @@ public class StarState extends PersistentState { public static final String KEY_SEED = "seed"; - public static final String KEY_ITERATIONS = "iterations"; + public static final String KEY_LIMIT = "limit"; public static final String KEY_STARS = "stars"; public long seed; - public int iterations; + public int limit; + public int iterations; // Not persistent, just convenient for the client. public List stars; - public static PersistentState.Type getPersistentStateType() { - return new PersistentState.Type<>(StarState::new, StarState::fromNbt, null); + public static PersistentState.Type getPersistentStateType(long worldSeed) { + return new PersistentState.Type<>(() -> new StarState(worldSeed), nbt -> StarState.fromNbt(nbt, worldSeed), null); } - public StarState() { - this.seed = Starcaller.STAR_SEED; - this.iterations = Starcaller.STAR_ITERATIONS; + public StarState(long worldSeed) { + this.seed = (Starcaller.CONFIG.starSeed != -1 ? Starcaller.CONFIG.starSeed : worldSeed); + this.limit = Starcaller.CONFIG.starLimit; + this.iterations = StarUtil.getGeneratorIterations(seed, limit); this.stars = StarUtil.generateStars(this.seed, this.iterations); + markDirty(); } - public StarState(long seed, int iterations, List stars) { + public StarState(long seed, int limit, int iterations, List stars) { this.seed = seed; + this.limit = limit; this.iterations = iterations; this.stars = stars; } - public static StarState fromNbt(NbtCompound nbt) { - long seed = nbt.contains(KEY_SEED) ? nbt.getLong(KEY_SEED) : Starcaller.STAR_SEED; - int iterations = nbt.contains(KEY_ITERATIONS) ? nbt.getInt(KEY_ITERATIONS) : Starcaller.STAR_ITERATIONS; + public static StarState fromNbt(NbtCompound nbt, long worldSeed) { + long seed = nbt.contains(KEY_SEED) ? nbt.getLong(KEY_SEED) : (Starcaller.CONFIG.starSeed != -1 ? Starcaller.CONFIG.starSeed : worldSeed); + int limit = nbt.contains(KEY_LIMIT) ? nbt.getInt(KEY_LIMIT) : Starcaller.CONFIG.starLimit; + int iterations = StarUtil.getGeneratorIterations(seed, limit); List stars = StarUtil.generateStars(seed, iterations); int i = 0; for (NbtElement starElement : nbt.getList(KEY_STARS, NbtElement.COMPOUND_TYPE)) { @@ -44,7 +49,7 @@ public static StarState fromNbt(NbtCompound nbt) { } i++; } - return new StarState(seed, iterations, stars); + return new StarState(seed, limit, iterations, stars); } @Override @@ -54,7 +59,7 @@ public NbtCompound writeNbt(NbtCompound nbt) { nbtList.add(star.toNbt()); } nbt.putLong(KEY_SEED, this.seed); - nbt.putLong(KEY_ITERATIONS, this.iterations); + nbt.putInt(KEY_LIMIT, this.limit); nbt.put(KEY_STARS, nbtList); return nbt; } diff --git a/src/main/java/folk/sisby/starcaller/Starcaller.java b/src/main/java/folk/sisby/starcaller/Starcaller.java index f41b035..73e744b 100644 --- a/src/main/java/folk/sisby/starcaller/Starcaller.java +++ b/src/main/java/folk/sisby/starcaller/Starcaller.java @@ -7,6 +7,7 @@ import net.fabricmc.fabric.api.event.lifecycle.v1.ServerTickEvents; import net.fabricmc.fabric.api.event.lifecycle.v1.ServerWorldEvents; import net.fabricmc.fabric.api.item.v1.FabricItemSettings; +import net.fabricmc.loader.api.FabricLoader; import net.minecraft.entity.player.PlayerEntity; import net.minecraft.registry.Registries; import net.minecraft.registry.Registry; @@ -20,25 +21,19 @@ public class Starcaller implements ModInitializer { public static final String ID = "starcaller"; public static final Logger LOGGER = LoggerFactory.getLogger(ID); - public static final boolean DEBUG_SKY = false; - public static final long STAR_SEED = 10842L; - public static final int STAR_ITERATIONS = 1500; public static final int STAR_GROUNDED_TICKS = 1200; public static final String STATE_KEY = "starcaller_stars"; public static final StardustItem STARDUST = Registry.register(Registries.ITEM, id("stardust"), new StardustItem(new FabricItemSettings().maxCount(1))); public static final SpearItem SPEAR = Registry.register(Registries.ITEM, id("spear"), new SpearItem(new FabricItemSettings().maxCount(1))); + public static final StarcallerConfig CONFIG = StarcallerConfig.createToml(FabricLoader.getInstance().getConfigDir(), "", ID, StarcallerConfig.class); + @Override public void onInitialize() { ServerWorldEvents.LOAD.register(((server, world) -> { if (world.getRegistryKey() == World.OVERWORLD) { - StarState state = world.getPersistentStateManager().getOrCreate(StarState.getPersistentStateType(), STATE_KEY); - if (Starcaller.DEBUG_SKY) { - LOGGER.info("[Starcaller] Start Logging World Stars"); - state.stars.forEach(s -> LOGGER.info("[Starcaller] {}", s)); - LOGGER.info("[Starcaller] End Logging World Stars"); - } + world.getPersistentStateManager().getOrCreate(StarState.getPersistentStateType(world.getSeed()), STATE_KEY); } })); ServerTickEvents.END_WORLD_TICK.register((world -> { @@ -67,7 +62,7 @@ public static void freeStar(PlayerEntity cause, ServerWorld world, Star star) { private static void updateStarGrounded(PlayerEntity cause, ServerWorld world, Star star, long time) { if (star.groundedTick != time) { star.groundedTick = time; - world.getPersistentStateManager().get(StarState.getPersistentStateType(), STATE_KEY).markDirty(); + world.getPersistentStateManager().get(StarState.getPersistentStateType(world.getSeed()), STATE_KEY).markDirty(); StarcallerNetworking.syncStarGrounded(cause, world, star); } } @@ -80,6 +75,6 @@ public static void colorStar(PlayerEntity cause, ServerWorld world, Star star, i TextColor nameColor = cause.getDisplayName().getStyle().getColor(); star.editor = cause.getDisplayName().getString(); star.editorColor = nameColor != null ? nameColor.getRgb() : 0xFFFFFF; - world.getPersistentStateManager().get(StarState.getPersistentStateType(), STATE_KEY).markDirty(); + world.getPersistentStateManager().get(StarState.getPersistentStateType(world.getSeed()), STATE_KEY).markDirty(); } } diff --git a/src/main/java/folk/sisby/starcaller/StarcallerConfig.java b/src/main/java/folk/sisby/starcaller/StarcallerConfig.java new file mode 100644 index 0000000..be27145 --- /dev/null +++ b/src/main/java/folk/sisby/starcaller/StarcallerConfig.java @@ -0,0 +1,19 @@ +package folk.sisby.starcaller; + +import folk.sisby.kaleido.api.WrappedConfig; +import folk.sisby.kaleido.lib.quiltconfig.api.annotations.Comment; + +public class StarcallerConfig extends WrappedConfig { + @Comment("The seed used by star generation.") + @Comment("The default seed generates identical stars to vanilla.") + @Comment("To change the seed or limit of an existing world, delete data/starcaller_stars.dat") + @Comment("To keep existing colorings (but not positions), edit the values in the file manually.") + @Comment("Set to -1 to use the world seed.") + public final Long starSeed = 10842L; + + @Comment("The maximum amount of stars the generator may place.") + @Comment("The generator will iterate 3x of the limit, so less may appear.") + @Comment("Star names are provided via indexed translations e.g. star.starcaller.overworld.11") + @Comment("Starcaller provides \"proper names\" up to 780 stars, and fake bayer designations up to 7468 stars.") + public final Integer starLimit = 780; +} diff --git a/src/main/java/folk/sisby/starcaller/duck/StarcallerWorld.java b/src/main/java/folk/sisby/starcaller/duck/StarcallerWorld.java index 67c4d8c..5001760 100644 --- a/src/main/java/folk/sisby/starcaller/duck/StarcallerWorld.java +++ b/src/main/java/folk/sisby/starcaller/duck/StarcallerWorld.java @@ -10,8 +10,7 @@ public interface StarcallerWorld { int starcaller$getIterations(); List starcaller$getStars(); - void starcaller$setSeed(long seed); - void starcaller$setIterations(int iterations); + void starcaller$setGeneratorValues(long seed, int iterations); void starcaller$groundStar(PlayerEntity cause, Star star); diff --git a/src/main/java/folk/sisby/starcaller/mixin/MixinServerWorld.java b/src/main/java/folk/sisby/starcaller/mixin/MixinServerWorld.java index 41dd468..693d2f9 100644 --- a/src/main/java/folk/sisby/starcaller/mixin/MixinServerWorld.java +++ b/src/main/java/folk/sisby/starcaller/mixin/MixinServerWorld.java @@ -30,41 +30,26 @@ public abstract class MixinServerWorld implements StarcallerWorld { @Override public long starcaller$getSeed() { ServerWorld self = (ServerWorld) (Object) this; - StarState state = self.getPersistentStateManager().get(StarState.getPersistentStateType(), Starcaller.STATE_KEY); - return state != null ? state.seed : Starcaller.STAR_SEED; + StarState state = self.getPersistentStateManager().get(StarState.getPersistentStateType(self.getSeed()), Starcaller.STATE_KEY); + return state != null ? state.seed : (Starcaller.CONFIG.starSeed != -1 ? Starcaller.CONFIG.starSeed : self.getSeed()); } @Override public int starcaller$getIterations() { ServerWorld self = (ServerWorld) (Object) this; - StarState state = self.getPersistentStateManager().get(StarState.getPersistentStateType(), Starcaller.STATE_KEY); - return state != null ? state.iterations : Starcaller.STAR_ITERATIONS; + StarState state = self.getPersistentStateManager().get(StarState.getPersistentStateType(self.getSeed()), Starcaller.STATE_KEY); + return state != null ? state.limit : Starcaller.CONFIG.starLimit; } @Override public List starcaller$getStars() { ServerWorld self = (ServerWorld) (Object) this; - StarState state = self.getPersistentStateManager().get(StarState.getPersistentStateType(), Starcaller.STATE_KEY); + StarState state = self.getPersistentStateManager().get(StarState.getPersistentStateType(self.getSeed()), Starcaller.STATE_KEY); return state != null ? state.stars : List.of(); } @Override - public void starcaller$setSeed(long seed) { - ServerWorld self = (ServerWorld) (Object) this; - StarState state = self.getPersistentStateManager().get(StarState.getPersistentStateType(), Starcaller.STATE_KEY); - if (state != null) { - state.seed = seed; - state.markDirty(); - } - } - - @Override - public void starcaller$setIterations(int iterations) { - ServerWorld self = (ServerWorld) (Object) this; - StarState state = self.getPersistentStateManager().get(StarState.getPersistentStateType(), Starcaller.STATE_KEY); - if (state != null) { - state.iterations = iterations; - state.markDirty(); - } + public void starcaller$setGeneratorValues(long seed, int iterations) { + throw new UnsupportedOperationException("Server generator values are set through the config!"); } } diff --git a/src/main/java/folk/sisby/starcaller/util/StarUtil.java b/src/main/java/folk/sisby/starcaller/util/StarUtil.java index d280314..6850136 100644 --- a/src/main/java/folk/sisby/starcaller/util/StarUtil.java +++ b/src/main/java/folk/sisby/starcaller/util/StarUtil.java @@ -1,6 +1,5 @@ package folk.sisby.starcaller.util; -import folk.sisby.starcaller.Starcaller; import folk.sisby.starcaller.Star; import net.minecraft.util.math.Vec3d; import net.minecraft.util.math.random.Random; @@ -28,19 +27,28 @@ public static List generateStars(long seed, int iterations) { list.add(new Star(new Vec3d(-f * 100.0, e * 100.0, d * 100.0))); } } - if (Starcaller.DEBUG_SKY) { - list.add(new Star(new Vec3d(0, 0, 100.0F))); - list.add(new Star(new Vec3d(0, 0, -100.0F))); - list.add(new Star(new Vec3d(0, 100.0F, 0))); - list.add(new Star(new Vec3d(0, -100.0F, 0))); - list.add(new Star(new Vec3d(100.0F, 0, 0))); - list.add(new Star(new Vec3d(-100.0F, 0, 0))); - list.add(new Star(new Vec3d(70.0F, 0, 70.0F))); - list.add(new Star(new Vec3d(-70.0F, 0, -70.0F))); - } return list; } + public static int getGeneratorIterations(long seed, int limit) { + Random random = Random.create(seed); + int stars = 0; + + for (int i = 0; i < limit * 3; ++i) { + double d = random.nextFloat() * 2.0F - 1.0F; + double e = random.nextFloat() * 2.0F - 1.0F; + double f = random.nextFloat() * 2.0F - 1.0F; + random.nextFloat(); + double r2 = d * d + e * e + f * f; + if (r2 < 1.0 && r2 > 0.01) { + random.nextDouble(); + stars++; + if (stars >= limit) return i; + } + } + return limit * 3; + } + public static Vec3d getStarCursor(float yawDegrees, float pitchDegrees) { double azimuth = (yawDegrees) * Math.PI / 180; double inclination = (90.0F + pitchDegrees) * Math.PI / 180; diff --git a/src/main/resources/assets/starcaller/lang/en_us.json b/src/main/resources/assets/starcaller/lang/en_us.json index ec986f6..d8566ab 100644 --- a/src/main/resources/assets/starcaller/lang/en_us.json +++ b/src/main/resources/assets/starcaller/lang/en_us.json @@ -787,5 +787,6692 @@ "star.starcaller.overworld.777": "Wadirum", "star.starcaller.overworld.778": "Xólotl", "star.starcaller.overworld.779": "Yanyan", - "star.starcaller.overworld.780": "Yvaga" + "star.starcaller.overworld.780": "α Andromeda", + "star.starcaller.overworld.781": "α Antlia", + "star.starcaller.overworld.782": "α Apus", + "star.starcaller.overworld.783": "α Aquarius", + "star.starcaller.overworld.784": "α Aquila", + "star.starcaller.overworld.785": "α Ara", + "star.starcaller.overworld.786": "α Aries", + "star.starcaller.overworld.787": "α Auriga", + "star.starcaller.overworld.788": "α Boötes", + "star.starcaller.overworld.789": "α Caelum", + "star.starcaller.overworld.790": "α Camelopardalis", + "star.starcaller.overworld.791": "α Cancer", + "star.starcaller.overworld.792": "α Canes Venatici", + "star.starcaller.overworld.793": "α Canis Major", + "star.starcaller.overworld.794": "α Canis Minor", + "star.starcaller.overworld.795": "α Capricornus", + "star.starcaller.overworld.796": "α Carina", + "star.starcaller.overworld.797": "α Cassiopeia", + "star.starcaller.overworld.798": "α Centaurus", + "star.starcaller.overworld.799": "α Cepheus", + "star.starcaller.overworld.800": "α Cetus", + "star.starcaller.overworld.801": "α Chamaeleon", + "star.starcaller.overworld.802": "α Circinus", + "star.starcaller.overworld.803": "α Columba", + "star.starcaller.overworld.804": "α Coma Berenices", + "star.starcaller.overworld.805": "α Corona Australis", + "star.starcaller.overworld.806": "α Corona Borealis", + "star.starcaller.overworld.807": "α Corvus", + "star.starcaller.overworld.808": "α Crater", + "star.starcaller.overworld.809": "α Crux", + "star.starcaller.overworld.810": "α Cygnus", + "star.starcaller.overworld.811": "α Delphinus", + "star.starcaller.overworld.812": "α Dorado", + "star.starcaller.overworld.813": "α Draco", + "star.starcaller.overworld.814": "α Equuleus", + "star.starcaller.overworld.815": "α Eridanus", + "star.starcaller.overworld.816": "α Fornax", + "star.starcaller.overworld.817": "α Gemini", + "star.starcaller.overworld.818": "α Grus", + "star.starcaller.overworld.819": "α Hercules", + "star.starcaller.overworld.820": "α Horologium", + "star.starcaller.overworld.821": "α Hydra", + "star.starcaller.overworld.822": "α Hydrus", + "star.starcaller.overworld.823": "α Indus", + "star.starcaller.overworld.824": "α Lacerta", + "star.starcaller.overworld.825": "α Leo", + "star.starcaller.overworld.826": "α Leo Minor", + "star.starcaller.overworld.827": "α Lepus", + "star.starcaller.overworld.828": "α Libra", + "star.starcaller.overworld.829": "α Lupus", + "star.starcaller.overworld.830": "α Lynx", + "star.starcaller.overworld.831": "α Lyra", + "star.starcaller.overworld.832": "α Mensa", + "star.starcaller.overworld.833": "α Microscopium", + "star.starcaller.overworld.834": "α Monoceros", + "star.starcaller.overworld.835": "α Musca", + "star.starcaller.overworld.836": "α Norma", + "star.starcaller.overworld.837": "α Octans", + "star.starcaller.overworld.838": "α Ophiuchus", + "star.starcaller.overworld.839": "α Orion", + "star.starcaller.overworld.840": "α Pavo", + "star.starcaller.overworld.841": "α Pegasus", + "star.starcaller.overworld.842": "α Perseus", + "star.starcaller.overworld.843": "α Phoenix", + "star.starcaller.overworld.844": "α Pictor", + "star.starcaller.overworld.845": "α Pisces", + "star.starcaller.overworld.846": "α Piscis Austrinus", + "star.starcaller.overworld.847": "α Puppis", + "star.starcaller.overworld.848": "α Pyxis", + "star.starcaller.overworld.849": "α Reticulum", + "star.starcaller.overworld.850": "α Sagitta", + "star.starcaller.overworld.851": "α Sagittarius", + "star.starcaller.overworld.852": "α Scorpius", + "star.starcaller.overworld.853": "α Sculptor", + "star.starcaller.overworld.854": "α Scutum", + "star.starcaller.overworld.855": "α Serpens", + "star.starcaller.overworld.856": "α Sextans", + "star.starcaller.overworld.857": "α Taurus", + "star.starcaller.overworld.858": "α Telescopium", + "star.starcaller.overworld.859": "α Triangulum", + "star.starcaller.overworld.860": "α Triangulum Australe", + "star.starcaller.overworld.861": "α Tucana", + "star.starcaller.overworld.862": "α Ursa Major", + "star.starcaller.overworld.863": "α Ursa Minor", + "star.starcaller.overworld.864": "α Vela", + "star.starcaller.overworld.865": "α Virgo", + "star.starcaller.overworld.866": "α Volans", + "star.starcaller.overworld.867": "α Vulpecula", + "star.starcaller.overworld.868": "β Andromeda", + "star.starcaller.overworld.869": "β Antlia", + "star.starcaller.overworld.870": "β Apus", + "star.starcaller.overworld.871": "β Aquarius", + "star.starcaller.overworld.872": "β Aquila", + "star.starcaller.overworld.873": "β Ara", + "star.starcaller.overworld.874": "β Aries", + "star.starcaller.overworld.875": "β Auriga", + "star.starcaller.overworld.876": "β Boötes", + "star.starcaller.overworld.877": "β Caelum", + "star.starcaller.overworld.878": "β Camelopardalis", + "star.starcaller.overworld.879": "β Cancer", + "star.starcaller.overworld.880": "β Canes Venatici", + "star.starcaller.overworld.881": "β Canis Major", + "star.starcaller.overworld.882": "β Canis Minor", + "star.starcaller.overworld.883": "β Capricornus", + "star.starcaller.overworld.884": "β Carina", + "star.starcaller.overworld.885": "β Cassiopeia", + "star.starcaller.overworld.886": "β Centaurus", + "star.starcaller.overworld.887": "β Cepheus", + "star.starcaller.overworld.888": "β Cetus", + "star.starcaller.overworld.889": "β Chamaeleon", + "star.starcaller.overworld.890": "β Circinus", + "star.starcaller.overworld.891": "β Columba", + "star.starcaller.overworld.892": "β Coma Berenices", + "star.starcaller.overworld.893": "β Corona Australis", + "star.starcaller.overworld.894": "β Corona Borealis", + "star.starcaller.overworld.895": "β Corvus", + "star.starcaller.overworld.896": "β Crater", + "star.starcaller.overworld.897": "β Crux", + "star.starcaller.overworld.898": "β Cygnus", + "star.starcaller.overworld.899": "β Delphinus", + "star.starcaller.overworld.900": "β Dorado", + "star.starcaller.overworld.901": "β Draco", + "star.starcaller.overworld.902": "β Equuleus", + "star.starcaller.overworld.903": "β Eridanus", + "star.starcaller.overworld.904": "β Fornax", + "star.starcaller.overworld.905": "β Gemini", + "star.starcaller.overworld.906": "β Grus", + "star.starcaller.overworld.907": "β Hercules", + "star.starcaller.overworld.908": "β Horologium", + "star.starcaller.overworld.909": "β Hydra", + "star.starcaller.overworld.910": "β Hydrus", + "star.starcaller.overworld.911": "β Indus", + "star.starcaller.overworld.912": "β Lacerta", + "star.starcaller.overworld.913": "β Leo", + "star.starcaller.overworld.914": "β Leo Minor", + "star.starcaller.overworld.915": "β Lepus", + "star.starcaller.overworld.916": "β Libra", + "star.starcaller.overworld.917": "β Lupus", + "star.starcaller.overworld.918": "β Lynx", + "star.starcaller.overworld.919": "β Lyra", + "star.starcaller.overworld.920": "β Mensa", + "star.starcaller.overworld.921": "β Microscopium", + "star.starcaller.overworld.922": "β Monoceros", + "star.starcaller.overworld.923": "β Musca", + "star.starcaller.overworld.924": "β Norma", + "star.starcaller.overworld.925": "β Octans", + "star.starcaller.overworld.926": "β Ophiuchus", + "star.starcaller.overworld.927": "β Orion", + "star.starcaller.overworld.928": "β Pavo", + "star.starcaller.overworld.929": "β Pegasus", + "star.starcaller.overworld.930": "β Perseus", + "star.starcaller.overworld.931": "β Phoenix", + "star.starcaller.overworld.932": "β Pictor", + "star.starcaller.overworld.933": "β Pisces", + "star.starcaller.overworld.934": "β Piscis Austrinus", + "star.starcaller.overworld.935": "β Puppis", + "star.starcaller.overworld.936": "β Pyxis", + "star.starcaller.overworld.937": "β Reticulum", + "star.starcaller.overworld.938": "β Sagitta", + "star.starcaller.overworld.939": "β Sagittarius", + "star.starcaller.overworld.940": "β Scorpius", + "star.starcaller.overworld.941": "β Sculptor", + "star.starcaller.overworld.942": "β Scutum", + "star.starcaller.overworld.943": "β Serpens", + "star.starcaller.overworld.944": "β Sextans", + "star.starcaller.overworld.945": "β Taurus", + "star.starcaller.overworld.946": "β Telescopium", + "star.starcaller.overworld.947": "β Triangulum", + "star.starcaller.overworld.948": "β Triangulum Australe", + "star.starcaller.overworld.949": "β Tucana", + "star.starcaller.overworld.950": "β Ursa Major", + "star.starcaller.overworld.951": "β Ursa Minor", + "star.starcaller.overworld.952": "β Vela", + "star.starcaller.overworld.953": "β Virgo", + "star.starcaller.overworld.954": "β Volans", + "star.starcaller.overworld.955": "β Vulpecula", + "star.starcaller.overworld.956": "γ Andromeda", + "star.starcaller.overworld.957": "γ Antlia", + "star.starcaller.overworld.958": "γ Apus", + "star.starcaller.overworld.959": "γ Aquarius", + "star.starcaller.overworld.960": "γ Aquila", + "star.starcaller.overworld.961": "γ Ara", + "star.starcaller.overworld.962": "γ Aries", + "star.starcaller.overworld.963": "γ Auriga", + "star.starcaller.overworld.964": "γ Boötes", + "star.starcaller.overworld.965": "γ Caelum", + "star.starcaller.overworld.966": "γ Camelopardalis", + "star.starcaller.overworld.967": "γ Cancer", + "star.starcaller.overworld.968": "γ Canes Venatici", + "star.starcaller.overworld.969": "γ Canis Major", + "star.starcaller.overworld.970": "γ Canis Minor", + "star.starcaller.overworld.971": "γ Capricornus", + "star.starcaller.overworld.972": "γ Carina", + "star.starcaller.overworld.973": "γ Cassiopeia", + "star.starcaller.overworld.974": "γ Centaurus", + "star.starcaller.overworld.975": "γ Cepheus", + "star.starcaller.overworld.976": "γ Cetus", + "star.starcaller.overworld.977": "γ Chamaeleon", + "star.starcaller.overworld.978": "γ Circinus", + "star.starcaller.overworld.979": "γ Columba", + "star.starcaller.overworld.980": "γ Coma Berenices", + "star.starcaller.overworld.981": "γ Corona Australis", + "star.starcaller.overworld.982": "γ Corona Borealis", + "star.starcaller.overworld.983": "γ Corvus", + "star.starcaller.overworld.984": "γ Crater", + "star.starcaller.overworld.985": "γ Crux", + "star.starcaller.overworld.986": "γ Cygnus", + "star.starcaller.overworld.987": "γ Delphinus", + "star.starcaller.overworld.988": "γ Dorado", + "star.starcaller.overworld.989": "γ Draco", + "star.starcaller.overworld.990": "γ Equuleus", + "star.starcaller.overworld.991": "γ Eridanus", + "star.starcaller.overworld.992": "γ Fornax", + "star.starcaller.overworld.993": "γ Gemini", + "star.starcaller.overworld.994": "γ Grus", + "star.starcaller.overworld.995": "γ Hercules", + "star.starcaller.overworld.996": "γ Horologium", + "star.starcaller.overworld.997": "γ Hydra", + "star.starcaller.overworld.998": "γ Hydrus", + "star.starcaller.overworld.999": "γ Indus", + "star.starcaller.overworld.1000": "γ Lacerta", + "star.starcaller.overworld.1001": "γ Leo", + "star.starcaller.overworld.1002": "γ Leo Minor", + "star.starcaller.overworld.1003": "γ Lepus", + "star.starcaller.overworld.1004": "γ Libra", + "star.starcaller.overworld.1005": "γ Lupus", + "star.starcaller.overworld.1006": "γ Lynx", + "star.starcaller.overworld.1007": "γ Lyra", + "star.starcaller.overworld.1008": "γ Mensa", + "star.starcaller.overworld.1009": "γ Microscopium", + "star.starcaller.overworld.1010": "γ Monoceros", + "star.starcaller.overworld.1011": "γ Musca", + "star.starcaller.overworld.1012": "γ Norma", + "star.starcaller.overworld.1013": "γ Octans", + "star.starcaller.overworld.1014": "γ Ophiuchus", + "star.starcaller.overworld.1015": "γ Orion", + "star.starcaller.overworld.1016": "γ Pavo", + "star.starcaller.overworld.1017": "γ Pegasus", + "star.starcaller.overworld.1018": "γ Perseus", + "star.starcaller.overworld.1019": "γ Phoenix", + "star.starcaller.overworld.1020": "γ Pictor", + "star.starcaller.overworld.1021": "γ Pisces", + "star.starcaller.overworld.1022": "γ Piscis Austrinus", + "star.starcaller.overworld.1023": "γ Puppis", + "star.starcaller.overworld.1024": "γ Pyxis", + "star.starcaller.overworld.1025": "γ Reticulum", + "star.starcaller.overworld.1026": "γ Sagitta", + "star.starcaller.overworld.1027": "γ Sagittarius", + "star.starcaller.overworld.1028": "γ Scorpius", + "star.starcaller.overworld.1029": "γ Sculptor", + "star.starcaller.overworld.1030": "γ Scutum", + "star.starcaller.overworld.1031": "γ Serpens", + "star.starcaller.overworld.1032": "γ Sextans", + "star.starcaller.overworld.1033": "γ Taurus", + "star.starcaller.overworld.1034": "γ Telescopium", + "star.starcaller.overworld.1035": "γ Triangulum", + "star.starcaller.overworld.1036": "γ Triangulum Australe", + "star.starcaller.overworld.1037": "γ Tucana", + "star.starcaller.overworld.1038": "γ Ursa Major", + "star.starcaller.overworld.1039": "γ Ursa Minor", + "star.starcaller.overworld.1040": "γ Vela", + "star.starcaller.overworld.1041": "γ Virgo", + "star.starcaller.overworld.1042": "γ Volans", + "star.starcaller.overworld.1043": "γ Vulpecula", + "star.starcaller.overworld.1044": "δ Andromeda", + "star.starcaller.overworld.1045": "δ Antlia", + "star.starcaller.overworld.1046": "δ Apus", + "star.starcaller.overworld.1047": "δ Aquarius", + "star.starcaller.overworld.1048": "δ Aquila", + "star.starcaller.overworld.1049": "δ Ara", + "star.starcaller.overworld.1050": "δ Aries", + "star.starcaller.overworld.1051": "δ Auriga", + "star.starcaller.overworld.1052": "δ Boötes", + "star.starcaller.overworld.1053": "δ Caelum", + "star.starcaller.overworld.1054": "δ Camelopardalis", + "star.starcaller.overworld.1055": "δ Cancer", + "star.starcaller.overworld.1056": "δ Canes Venatici", + "star.starcaller.overworld.1057": "δ Canis Major", + "star.starcaller.overworld.1058": "δ Canis Minor", + "star.starcaller.overworld.1059": "δ Capricornus", + "star.starcaller.overworld.1060": "δ Carina", + "star.starcaller.overworld.1061": "δ Cassiopeia", + "star.starcaller.overworld.1062": "δ Centaurus", + "star.starcaller.overworld.1063": "δ Cepheus", + "star.starcaller.overworld.1064": "δ Cetus", + "star.starcaller.overworld.1065": "δ Chamaeleon", + "star.starcaller.overworld.1066": "δ Circinus", + "star.starcaller.overworld.1067": "δ Columba", + "star.starcaller.overworld.1068": "δ Coma Berenices", + "star.starcaller.overworld.1069": "δ Corona Australis", + "star.starcaller.overworld.1070": "δ Corona Borealis", + "star.starcaller.overworld.1071": "δ Corvus", + "star.starcaller.overworld.1072": "δ Crater", + "star.starcaller.overworld.1073": "δ Crux", + "star.starcaller.overworld.1074": "δ Cygnus", + "star.starcaller.overworld.1075": "δ Delphinus", + "star.starcaller.overworld.1076": "δ Dorado", + "star.starcaller.overworld.1077": "δ Draco", + "star.starcaller.overworld.1078": "δ Equuleus", + "star.starcaller.overworld.1079": "δ Eridanus", + "star.starcaller.overworld.1080": "δ Fornax", + "star.starcaller.overworld.1081": "δ Gemini", + "star.starcaller.overworld.1082": "δ Grus", + "star.starcaller.overworld.1083": "δ Hercules", + "star.starcaller.overworld.1084": "δ Horologium", + "star.starcaller.overworld.1085": "δ Hydra", + "star.starcaller.overworld.1086": "δ Hydrus", + "star.starcaller.overworld.1087": "δ Indus", + "star.starcaller.overworld.1088": "δ Lacerta", + "star.starcaller.overworld.1089": "δ Leo", + "star.starcaller.overworld.1090": "δ Leo Minor", + "star.starcaller.overworld.1091": "δ Lepus", + "star.starcaller.overworld.1092": "δ Libra", + "star.starcaller.overworld.1093": "δ Lupus", + "star.starcaller.overworld.1094": "δ Lynx", + "star.starcaller.overworld.1095": "δ Lyra", + "star.starcaller.overworld.1096": "δ Mensa", + "star.starcaller.overworld.1097": "δ Microscopium", + "star.starcaller.overworld.1098": "δ Monoceros", + "star.starcaller.overworld.1099": "δ Musca", + "star.starcaller.overworld.1100": "δ Norma", + "star.starcaller.overworld.1101": "δ Octans", + "star.starcaller.overworld.1102": "δ Ophiuchus", + "star.starcaller.overworld.1103": "δ Orion", + "star.starcaller.overworld.1104": "δ Pavo", + "star.starcaller.overworld.1105": "δ Pegasus", + "star.starcaller.overworld.1106": "δ Perseus", + "star.starcaller.overworld.1107": "δ Phoenix", + "star.starcaller.overworld.1108": "δ Pictor", + "star.starcaller.overworld.1109": "δ Pisces", + "star.starcaller.overworld.1110": "δ Piscis Austrinus", + "star.starcaller.overworld.1111": "δ Puppis", + "star.starcaller.overworld.1112": "δ Pyxis", + "star.starcaller.overworld.1113": "δ Reticulum", + "star.starcaller.overworld.1114": "δ Sagitta", + "star.starcaller.overworld.1115": "δ Sagittarius", + "star.starcaller.overworld.1116": "δ Scorpius", + "star.starcaller.overworld.1117": "δ Sculptor", + "star.starcaller.overworld.1118": "δ Scutum", + "star.starcaller.overworld.1119": "δ Serpens", + "star.starcaller.overworld.1120": "δ Sextans", + "star.starcaller.overworld.1121": "δ Taurus", + "star.starcaller.overworld.1122": "δ Telescopium", + "star.starcaller.overworld.1123": "δ Triangulum", + "star.starcaller.overworld.1124": "δ Triangulum Australe", + "star.starcaller.overworld.1125": "δ Tucana", + "star.starcaller.overworld.1126": "δ Ursa Major", + "star.starcaller.overworld.1127": "δ Ursa Minor", + "star.starcaller.overworld.1128": "δ Vela", + "star.starcaller.overworld.1129": "δ Virgo", + "star.starcaller.overworld.1130": "δ Volans", + "star.starcaller.overworld.1131": "δ Vulpecula", + "star.starcaller.overworld.1132": "ε Andromeda", + "star.starcaller.overworld.1133": "ε Antlia", + "star.starcaller.overworld.1134": "ε Apus", + "star.starcaller.overworld.1135": "ε Aquarius", + "star.starcaller.overworld.1136": "ε Aquila", + "star.starcaller.overworld.1137": "ε Ara", + "star.starcaller.overworld.1138": "ε Aries", + "star.starcaller.overworld.1139": "ε Auriga", + "star.starcaller.overworld.1140": "ε Boötes", + "star.starcaller.overworld.1141": "ε Caelum", + "star.starcaller.overworld.1142": "ε Camelopardalis", + "star.starcaller.overworld.1143": "ε Cancer", + "star.starcaller.overworld.1144": "ε Canes Venatici", + "star.starcaller.overworld.1145": "ε Canis Major", + "star.starcaller.overworld.1146": "ε Canis Minor", + "star.starcaller.overworld.1147": "ε Capricornus", + "star.starcaller.overworld.1148": "ε Carina", + "star.starcaller.overworld.1149": "ε Cassiopeia", + "star.starcaller.overworld.1150": "ε Centaurus", + "star.starcaller.overworld.1151": "ε Cepheus", + "star.starcaller.overworld.1152": "ε Cetus", + "star.starcaller.overworld.1153": "ε Chamaeleon", + "star.starcaller.overworld.1154": "ε Circinus", + "star.starcaller.overworld.1155": "ε Columba", + "star.starcaller.overworld.1156": "ε Coma Berenices", + "star.starcaller.overworld.1157": "ε Corona Australis", + "star.starcaller.overworld.1158": "ε Corona Borealis", + "star.starcaller.overworld.1159": "ε Corvus", + "star.starcaller.overworld.1160": "ε Crater", + "star.starcaller.overworld.1161": "ε Crux", + "star.starcaller.overworld.1162": "ε Cygnus", + "star.starcaller.overworld.1163": "ε Delphinus", + "star.starcaller.overworld.1164": "ε Dorado", + "star.starcaller.overworld.1165": "ε Draco", + "star.starcaller.overworld.1166": "ε Equuleus", + "star.starcaller.overworld.1167": "ε Eridanus", + "star.starcaller.overworld.1168": "ε Fornax", + "star.starcaller.overworld.1169": "ε Gemini", + "star.starcaller.overworld.1170": "ε Grus", + "star.starcaller.overworld.1171": "ε Hercules", + "star.starcaller.overworld.1172": "ε Horologium", + "star.starcaller.overworld.1173": "ε Hydra", + "star.starcaller.overworld.1174": "ε Hydrus", + "star.starcaller.overworld.1175": "ε Indus", + "star.starcaller.overworld.1176": "ε Lacerta", + "star.starcaller.overworld.1177": "ε Leo", + "star.starcaller.overworld.1178": "ε Leo Minor", + "star.starcaller.overworld.1179": "ε Lepus", + "star.starcaller.overworld.1180": "ε Libra", + "star.starcaller.overworld.1181": "ε Lupus", + "star.starcaller.overworld.1182": "ε Lynx", + "star.starcaller.overworld.1183": "ε Lyra", + "star.starcaller.overworld.1184": "ε Mensa", + "star.starcaller.overworld.1185": "ε Microscopium", + "star.starcaller.overworld.1186": "ε Monoceros", + "star.starcaller.overworld.1187": "ε Musca", + "star.starcaller.overworld.1188": "ε Norma", + "star.starcaller.overworld.1189": "ε Octans", + "star.starcaller.overworld.1190": "ε Ophiuchus", + "star.starcaller.overworld.1191": "ε Orion", + "star.starcaller.overworld.1192": "ε Pavo", + "star.starcaller.overworld.1193": "ε Pegasus", + "star.starcaller.overworld.1194": "ε Perseus", + "star.starcaller.overworld.1195": "ε Phoenix", + "star.starcaller.overworld.1196": "ε Pictor", + "star.starcaller.overworld.1197": "ε Pisces", + "star.starcaller.overworld.1198": "ε Piscis Austrinus", + "star.starcaller.overworld.1199": "ε Puppis", + "star.starcaller.overworld.1200": "ε Pyxis", + "star.starcaller.overworld.1201": "ε Reticulum", + "star.starcaller.overworld.1202": "ε Sagitta", + "star.starcaller.overworld.1203": "ε Sagittarius", + "star.starcaller.overworld.1204": "ε Scorpius", + "star.starcaller.overworld.1205": "ε Sculptor", + "star.starcaller.overworld.1206": "ε Scutum", + "star.starcaller.overworld.1207": "ε Serpens", + "star.starcaller.overworld.1208": "ε Sextans", + "star.starcaller.overworld.1209": "ε Taurus", + "star.starcaller.overworld.1210": "ε Telescopium", + "star.starcaller.overworld.1211": "ε Triangulum", + "star.starcaller.overworld.1212": "ε Triangulum Australe", + "star.starcaller.overworld.1213": "ε Tucana", + "star.starcaller.overworld.1214": "ε Ursa Major", + "star.starcaller.overworld.1215": "ε Ursa Minor", + "star.starcaller.overworld.1216": "ε Vela", + "star.starcaller.overworld.1217": "ε Virgo", + "star.starcaller.overworld.1218": "ε Volans", + "star.starcaller.overworld.1219": "ε Vulpecula", + "star.starcaller.overworld.1220": "ζ Andromeda", + "star.starcaller.overworld.1221": "ζ Antlia", + "star.starcaller.overworld.1222": "ζ Apus", + "star.starcaller.overworld.1223": "ζ Aquarius", + "star.starcaller.overworld.1224": "ζ Aquila", + "star.starcaller.overworld.1225": "ζ Ara", + "star.starcaller.overworld.1226": "ζ Aries", + "star.starcaller.overworld.1227": "ζ Auriga", + "star.starcaller.overworld.1228": "ζ Boötes", + "star.starcaller.overworld.1229": "ζ Caelum", + "star.starcaller.overworld.1230": "ζ Camelopardalis", + "star.starcaller.overworld.1231": "ζ Cancer", + "star.starcaller.overworld.1232": "ζ Canes Venatici", + "star.starcaller.overworld.1233": "ζ Canis Major", + "star.starcaller.overworld.1234": "ζ Canis Minor", + "star.starcaller.overworld.1235": "ζ Capricornus", + "star.starcaller.overworld.1236": "ζ Carina", + "star.starcaller.overworld.1237": "ζ Cassiopeia", + "star.starcaller.overworld.1238": "ζ Centaurus", + "star.starcaller.overworld.1239": "ζ Cepheus", + "star.starcaller.overworld.1240": "ζ Cetus", + "star.starcaller.overworld.1241": "ζ Chamaeleon", + "star.starcaller.overworld.1242": "ζ Circinus", + "star.starcaller.overworld.1243": "ζ Columba", + "star.starcaller.overworld.1244": "ζ Coma Berenices", + "star.starcaller.overworld.1245": "ζ Corona Australis", + "star.starcaller.overworld.1246": "ζ Corona Borealis", + "star.starcaller.overworld.1247": "ζ Corvus", + "star.starcaller.overworld.1248": "ζ Crater", + "star.starcaller.overworld.1249": "ζ Crux", + "star.starcaller.overworld.1250": "ζ Cygnus", + "star.starcaller.overworld.1251": "ζ Delphinus", + "star.starcaller.overworld.1252": "ζ Dorado", + "star.starcaller.overworld.1253": "ζ Draco", + "star.starcaller.overworld.1254": "ζ Equuleus", + "star.starcaller.overworld.1255": "ζ Eridanus", + "star.starcaller.overworld.1256": "ζ Fornax", + "star.starcaller.overworld.1257": "ζ Gemini", + "star.starcaller.overworld.1258": "ζ Grus", + "star.starcaller.overworld.1259": "ζ Hercules", + "star.starcaller.overworld.1260": "ζ Horologium", + "star.starcaller.overworld.1261": "ζ Hydra", + "star.starcaller.overworld.1262": "ζ Hydrus", + "star.starcaller.overworld.1263": "ζ Indus", + "star.starcaller.overworld.1264": "ζ Lacerta", + "star.starcaller.overworld.1265": "ζ Leo", + "star.starcaller.overworld.1266": "ζ Leo Minor", + "star.starcaller.overworld.1267": "ζ Lepus", + "star.starcaller.overworld.1268": "ζ Libra", + "star.starcaller.overworld.1269": "ζ Lupus", + "star.starcaller.overworld.1270": "ζ Lynx", + "star.starcaller.overworld.1271": "ζ Lyra", + "star.starcaller.overworld.1272": "ζ Mensa", + "star.starcaller.overworld.1273": "ζ Microscopium", + "star.starcaller.overworld.1274": "ζ Monoceros", + "star.starcaller.overworld.1275": "ζ Musca", + "star.starcaller.overworld.1276": "ζ Norma", + "star.starcaller.overworld.1277": "ζ Octans", + "star.starcaller.overworld.1278": "ζ Ophiuchus", + "star.starcaller.overworld.1279": "ζ Orion", + "star.starcaller.overworld.1280": "ζ Pavo", + "star.starcaller.overworld.1281": "ζ Pegasus", + "star.starcaller.overworld.1282": "ζ Perseus", + "star.starcaller.overworld.1283": "ζ Phoenix", + "star.starcaller.overworld.1284": "ζ Pictor", + "star.starcaller.overworld.1285": "ζ Pisces", + "star.starcaller.overworld.1286": "ζ Piscis Austrinus", + "star.starcaller.overworld.1287": "ζ Puppis", + "star.starcaller.overworld.1288": "ζ Pyxis", + "star.starcaller.overworld.1289": "ζ Reticulum", + "star.starcaller.overworld.1290": "ζ Sagitta", + "star.starcaller.overworld.1291": "ζ Sagittarius", + "star.starcaller.overworld.1292": "ζ Scorpius", + "star.starcaller.overworld.1293": "ζ Sculptor", + "star.starcaller.overworld.1294": "ζ Scutum", + "star.starcaller.overworld.1295": "ζ Serpens", + "star.starcaller.overworld.1296": "ζ Sextans", + "star.starcaller.overworld.1297": "ζ Taurus", + "star.starcaller.overworld.1298": "ζ Telescopium", + "star.starcaller.overworld.1299": "ζ Triangulum", + "star.starcaller.overworld.1300": "ζ Triangulum Australe", + "star.starcaller.overworld.1301": "ζ Tucana", + "star.starcaller.overworld.1302": "ζ Ursa Major", + "star.starcaller.overworld.1303": "ζ Ursa Minor", + "star.starcaller.overworld.1304": "ζ Vela", + "star.starcaller.overworld.1305": "ζ Virgo", + "star.starcaller.overworld.1306": "ζ Volans", + "star.starcaller.overworld.1307": "ζ Vulpecula", + "star.starcaller.overworld.1308": "η Andromeda", + "star.starcaller.overworld.1309": "η Antlia", + "star.starcaller.overworld.1310": "η Apus", + "star.starcaller.overworld.1311": "η Aquarius", + "star.starcaller.overworld.1312": "η Aquila", + "star.starcaller.overworld.1313": "η Ara", + "star.starcaller.overworld.1314": "η Aries", + "star.starcaller.overworld.1315": "η Auriga", + "star.starcaller.overworld.1316": "η Boötes", + "star.starcaller.overworld.1317": "η Caelum", + "star.starcaller.overworld.1318": "η Camelopardalis", + "star.starcaller.overworld.1319": "η Cancer", + "star.starcaller.overworld.1320": "η Canes Venatici", + "star.starcaller.overworld.1321": "η Canis Major", + "star.starcaller.overworld.1322": "η Canis Minor", + "star.starcaller.overworld.1323": "η Capricornus", + "star.starcaller.overworld.1324": "η Carina", + "star.starcaller.overworld.1325": "η Cassiopeia", + "star.starcaller.overworld.1326": "η Centaurus", + "star.starcaller.overworld.1327": "η Cepheus", + "star.starcaller.overworld.1328": "η Cetus", + "star.starcaller.overworld.1329": "η Chamaeleon", + "star.starcaller.overworld.1330": "η Circinus", + "star.starcaller.overworld.1331": "η Columba", + "star.starcaller.overworld.1332": "η Coma Berenices", + "star.starcaller.overworld.1333": "η Corona Australis", + "star.starcaller.overworld.1334": "η Corona Borealis", + "star.starcaller.overworld.1335": "η Corvus", + "star.starcaller.overworld.1336": "η Crater", + "star.starcaller.overworld.1337": "η Crux", + "star.starcaller.overworld.1338": "η Cygnus", + "star.starcaller.overworld.1339": "η Delphinus", + "star.starcaller.overworld.1340": "η Dorado", + "star.starcaller.overworld.1341": "η Draco", + "star.starcaller.overworld.1342": "η Equuleus", + "star.starcaller.overworld.1343": "η Eridanus", + "star.starcaller.overworld.1344": "η Fornax", + "star.starcaller.overworld.1345": "η Gemini", + "star.starcaller.overworld.1346": "η Grus", + "star.starcaller.overworld.1347": "η Hercules", + "star.starcaller.overworld.1348": "η Horologium", + "star.starcaller.overworld.1349": "η Hydra", + "star.starcaller.overworld.1350": "η Hydrus", + "star.starcaller.overworld.1351": "η Indus", + "star.starcaller.overworld.1352": "η Lacerta", + "star.starcaller.overworld.1353": "η Leo", + "star.starcaller.overworld.1354": "η Leo Minor", + "star.starcaller.overworld.1355": "η Lepus", + "star.starcaller.overworld.1356": "η Libra", + "star.starcaller.overworld.1357": "η Lupus", + "star.starcaller.overworld.1358": "η Lynx", + "star.starcaller.overworld.1359": "η Lyra", + "star.starcaller.overworld.1360": "η Mensa", + "star.starcaller.overworld.1361": "η Microscopium", + "star.starcaller.overworld.1362": "η Monoceros", + "star.starcaller.overworld.1363": "η Musca", + "star.starcaller.overworld.1364": "η Norma", + "star.starcaller.overworld.1365": "η Octans", + "star.starcaller.overworld.1366": "η Ophiuchus", + "star.starcaller.overworld.1367": "η Orion", + "star.starcaller.overworld.1368": "η Pavo", + "star.starcaller.overworld.1369": "η Pegasus", + "star.starcaller.overworld.1370": "η Perseus", + "star.starcaller.overworld.1371": "η Phoenix", + "star.starcaller.overworld.1372": "η Pictor", + "star.starcaller.overworld.1373": "η Pisces", + "star.starcaller.overworld.1374": "η Piscis Austrinus", + "star.starcaller.overworld.1375": "η Puppis", + "star.starcaller.overworld.1376": "η Pyxis", + "star.starcaller.overworld.1377": "η Reticulum", + "star.starcaller.overworld.1378": "η Sagitta", + "star.starcaller.overworld.1379": "η Sagittarius", + "star.starcaller.overworld.1380": "η Scorpius", + "star.starcaller.overworld.1381": "η Sculptor", + "star.starcaller.overworld.1382": "η Scutum", + "star.starcaller.overworld.1383": "η Serpens", + "star.starcaller.overworld.1384": "η Sextans", + "star.starcaller.overworld.1385": "η Taurus", + "star.starcaller.overworld.1386": "η Telescopium", + "star.starcaller.overworld.1387": "η Triangulum", + "star.starcaller.overworld.1388": "η Triangulum Australe", + "star.starcaller.overworld.1389": "η Tucana", + "star.starcaller.overworld.1390": "η Ursa Major", + "star.starcaller.overworld.1391": "η Ursa Minor", + "star.starcaller.overworld.1392": "η Vela", + "star.starcaller.overworld.1393": "η Virgo", + "star.starcaller.overworld.1394": "η Volans", + "star.starcaller.overworld.1395": "η Vulpecula", + "star.starcaller.overworld.1396": "θ Andromeda", + "star.starcaller.overworld.1397": "θ Antlia", + "star.starcaller.overworld.1398": "θ Apus", + "star.starcaller.overworld.1399": "θ Aquarius", + "star.starcaller.overworld.1400": "θ Aquila", + "star.starcaller.overworld.1401": "θ Ara", + "star.starcaller.overworld.1402": "θ Aries", + "star.starcaller.overworld.1403": "θ Auriga", + "star.starcaller.overworld.1404": "θ Boötes", + "star.starcaller.overworld.1405": "θ Caelum", + "star.starcaller.overworld.1406": "θ Camelopardalis", + "star.starcaller.overworld.1407": "θ Cancer", + "star.starcaller.overworld.1408": "θ Canes Venatici", + "star.starcaller.overworld.1409": "θ Canis Major", + "star.starcaller.overworld.1410": "θ Canis Minor", + "star.starcaller.overworld.1411": "θ Capricornus", + "star.starcaller.overworld.1412": "θ Carina", + "star.starcaller.overworld.1413": "θ Cassiopeia", + "star.starcaller.overworld.1414": "θ Centaurus", + "star.starcaller.overworld.1415": "θ Cepheus", + "star.starcaller.overworld.1416": "θ Cetus", + "star.starcaller.overworld.1417": "θ Chamaeleon", + "star.starcaller.overworld.1418": "θ Circinus", + "star.starcaller.overworld.1419": "θ Columba", + "star.starcaller.overworld.1420": "θ Coma Berenices", + "star.starcaller.overworld.1421": "θ Corona Australis", + "star.starcaller.overworld.1422": "θ Corona Borealis", + "star.starcaller.overworld.1423": "θ Corvus", + "star.starcaller.overworld.1424": "θ Crater", + "star.starcaller.overworld.1425": "θ Crux", + "star.starcaller.overworld.1426": "θ Cygnus", + "star.starcaller.overworld.1427": "θ Delphinus", + "star.starcaller.overworld.1428": "θ Dorado", + "star.starcaller.overworld.1429": "θ Draco", + "star.starcaller.overworld.1430": "θ Equuleus", + "star.starcaller.overworld.1431": "θ Eridanus", + "star.starcaller.overworld.1432": "θ Fornax", + "star.starcaller.overworld.1433": "θ Gemini", + "star.starcaller.overworld.1434": "θ Grus", + "star.starcaller.overworld.1435": "θ Hercules", + "star.starcaller.overworld.1436": "θ Horologium", + "star.starcaller.overworld.1437": "θ Hydra", + "star.starcaller.overworld.1438": "θ Hydrus", + "star.starcaller.overworld.1439": "θ Indus", + "star.starcaller.overworld.1440": "θ Lacerta", + "star.starcaller.overworld.1441": "θ Leo", + "star.starcaller.overworld.1442": "θ Leo Minor", + "star.starcaller.overworld.1443": "θ Lepus", + "star.starcaller.overworld.1444": "θ Libra", + "star.starcaller.overworld.1445": "θ Lupus", + "star.starcaller.overworld.1446": "θ Lynx", + "star.starcaller.overworld.1447": "θ Lyra", + "star.starcaller.overworld.1448": "θ Mensa", + "star.starcaller.overworld.1449": "θ Microscopium", + "star.starcaller.overworld.1450": "θ Monoceros", + "star.starcaller.overworld.1451": "θ Musca", + "star.starcaller.overworld.1452": "θ Norma", + "star.starcaller.overworld.1453": "θ Octans", + "star.starcaller.overworld.1454": "θ Ophiuchus", + "star.starcaller.overworld.1455": "θ Orion", + "star.starcaller.overworld.1456": "θ Pavo", + "star.starcaller.overworld.1457": "θ Pegasus", + "star.starcaller.overworld.1458": "θ Perseus", + "star.starcaller.overworld.1459": "θ Phoenix", + "star.starcaller.overworld.1460": "θ Pictor", + "star.starcaller.overworld.1461": "θ Pisces", + "star.starcaller.overworld.1462": "θ Piscis Austrinus", + "star.starcaller.overworld.1463": "θ Puppis", + "star.starcaller.overworld.1464": "θ Pyxis", + "star.starcaller.overworld.1465": "θ Reticulum", + "star.starcaller.overworld.1466": "θ Sagitta", + "star.starcaller.overworld.1467": "θ Sagittarius", + "star.starcaller.overworld.1468": "θ Scorpius", + "star.starcaller.overworld.1469": "θ Sculptor", + "star.starcaller.overworld.1470": "θ Scutum", + "star.starcaller.overworld.1471": "θ Serpens", + "star.starcaller.overworld.1472": "θ Sextans", + "star.starcaller.overworld.1473": "θ Taurus", + "star.starcaller.overworld.1474": "θ Telescopium", + "star.starcaller.overworld.1475": "θ Triangulum", + "star.starcaller.overworld.1476": "θ Triangulum Australe", + "star.starcaller.overworld.1477": "θ Tucana", + "star.starcaller.overworld.1478": "θ Ursa Major", + "star.starcaller.overworld.1479": "θ Ursa Minor", + "star.starcaller.overworld.1480": "θ Vela", + "star.starcaller.overworld.1481": "θ Virgo", + "star.starcaller.overworld.1482": "θ Volans", + "star.starcaller.overworld.1483": "θ Vulpecula", + "star.starcaller.overworld.1484": "ι Andromeda", + "star.starcaller.overworld.1485": "ι Antlia", + "star.starcaller.overworld.1486": "ι Apus", + "star.starcaller.overworld.1487": "ι Aquarius", + "star.starcaller.overworld.1488": "ι Aquila", + "star.starcaller.overworld.1489": "ι Ara", + "star.starcaller.overworld.1490": "ι Aries", + "star.starcaller.overworld.1491": "ι Auriga", + "star.starcaller.overworld.1492": "ι Boötes", + "star.starcaller.overworld.1493": "ι Caelum", + "star.starcaller.overworld.1494": "ι Camelopardalis", + "star.starcaller.overworld.1495": "ι Cancer", + "star.starcaller.overworld.1496": "ι Canes Venatici", + "star.starcaller.overworld.1497": "ι Canis Major", + "star.starcaller.overworld.1498": "ι Canis Minor", + "star.starcaller.overworld.1499": "ι Capricornus", + "star.starcaller.overworld.1500": "ι Carina", + "star.starcaller.overworld.1501": "ι Cassiopeia", + "star.starcaller.overworld.1502": "ι Centaurus", + "star.starcaller.overworld.1503": "ι Cepheus", + "star.starcaller.overworld.1504": "ι Cetus", + "star.starcaller.overworld.1505": "ι Chamaeleon", + "star.starcaller.overworld.1506": "ι Circinus", + "star.starcaller.overworld.1507": "ι Columba", + "star.starcaller.overworld.1508": "ι Coma Berenices", + "star.starcaller.overworld.1509": "ι Corona Australis", + "star.starcaller.overworld.1510": "ι Corona Borealis", + "star.starcaller.overworld.1511": "ι Corvus", + "star.starcaller.overworld.1512": "ι Crater", + "star.starcaller.overworld.1513": "ι Crux", + "star.starcaller.overworld.1514": "ι Cygnus", + "star.starcaller.overworld.1515": "ι Delphinus", + "star.starcaller.overworld.1516": "ι Dorado", + "star.starcaller.overworld.1517": "ι Draco", + "star.starcaller.overworld.1518": "ι Equuleus", + "star.starcaller.overworld.1519": "ι Eridanus", + "star.starcaller.overworld.1520": "ι Fornax", + "star.starcaller.overworld.1521": "ι Gemini", + "star.starcaller.overworld.1522": "ι Grus", + "star.starcaller.overworld.1523": "ι Hercules", + "star.starcaller.overworld.1524": "ι Horologium", + "star.starcaller.overworld.1525": "ι Hydra", + "star.starcaller.overworld.1526": "ι Hydrus", + "star.starcaller.overworld.1527": "ι Indus", + "star.starcaller.overworld.1528": "ι Lacerta", + "star.starcaller.overworld.1529": "ι Leo", + "star.starcaller.overworld.1530": "ι Leo Minor", + "star.starcaller.overworld.1531": "ι Lepus", + "star.starcaller.overworld.1532": "ι Libra", + "star.starcaller.overworld.1533": "ι Lupus", + "star.starcaller.overworld.1534": "ι Lynx", + "star.starcaller.overworld.1535": "ι Lyra", + "star.starcaller.overworld.1536": "ι Mensa", + "star.starcaller.overworld.1537": "ι Microscopium", + "star.starcaller.overworld.1538": "ι Monoceros", + "star.starcaller.overworld.1539": "ι Musca", + "star.starcaller.overworld.1540": "ι Norma", + "star.starcaller.overworld.1541": "ι Octans", + "star.starcaller.overworld.1542": "ι Ophiuchus", + "star.starcaller.overworld.1543": "ι Orion", + "star.starcaller.overworld.1544": "ι Pavo", + "star.starcaller.overworld.1545": "ι Pegasus", + "star.starcaller.overworld.1546": "ι Perseus", + "star.starcaller.overworld.1547": "ι Phoenix", + "star.starcaller.overworld.1548": "ι Pictor", + "star.starcaller.overworld.1549": "ι Pisces", + "star.starcaller.overworld.1550": "ι Piscis Austrinus", + "star.starcaller.overworld.1551": "ι Puppis", + "star.starcaller.overworld.1552": "ι Pyxis", + "star.starcaller.overworld.1553": "ι Reticulum", + "star.starcaller.overworld.1554": "ι Sagitta", + "star.starcaller.overworld.1555": "ι Sagittarius", + "star.starcaller.overworld.1556": "ι Scorpius", + "star.starcaller.overworld.1557": "ι Sculptor", + "star.starcaller.overworld.1558": "ι Scutum", + "star.starcaller.overworld.1559": "ι Serpens", + "star.starcaller.overworld.1560": "ι Sextans", + "star.starcaller.overworld.1561": "ι Taurus", + "star.starcaller.overworld.1562": "ι Telescopium", + "star.starcaller.overworld.1563": "ι Triangulum", + "star.starcaller.overworld.1564": "ι Triangulum Australe", + "star.starcaller.overworld.1565": "ι Tucana", + "star.starcaller.overworld.1566": "ι Ursa Major", + "star.starcaller.overworld.1567": "ι Ursa Minor", + "star.starcaller.overworld.1568": "ι Vela", + "star.starcaller.overworld.1569": "ι Virgo", + "star.starcaller.overworld.1570": "ι Volans", + "star.starcaller.overworld.1571": "ι Vulpecula", + "star.starcaller.overworld.1572": "κ Andromeda", + "star.starcaller.overworld.1573": "κ Antlia", + "star.starcaller.overworld.1574": "κ Apus", + "star.starcaller.overworld.1575": "κ Aquarius", + "star.starcaller.overworld.1576": "κ Aquila", + "star.starcaller.overworld.1577": "κ Ara", + "star.starcaller.overworld.1578": "κ Aries", + "star.starcaller.overworld.1579": "κ Auriga", + "star.starcaller.overworld.1580": "κ Boötes", + "star.starcaller.overworld.1581": "κ Caelum", + "star.starcaller.overworld.1582": "κ Camelopardalis", + "star.starcaller.overworld.1583": "κ Cancer", + "star.starcaller.overworld.1584": "κ Canes Venatici", + "star.starcaller.overworld.1585": "κ Canis Major", + "star.starcaller.overworld.1586": "κ Canis Minor", + "star.starcaller.overworld.1587": "κ Capricornus", + "star.starcaller.overworld.1588": "κ Carina", + "star.starcaller.overworld.1589": "κ Cassiopeia", + "star.starcaller.overworld.1590": "κ Centaurus", + "star.starcaller.overworld.1591": "κ Cepheus", + "star.starcaller.overworld.1592": "κ Cetus", + "star.starcaller.overworld.1593": "κ Chamaeleon", + "star.starcaller.overworld.1594": "κ Circinus", + "star.starcaller.overworld.1595": "κ Columba", + "star.starcaller.overworld.1596": "κ Coma Berenices", + "star.starcaller.overworld.1597": "κ Corona Australis", + "star.starcaller.overworld.1598": "κ Corona Borealis", + "star.starcaller.overworld.1599": "κ Corvus", + "star.starcaller.overworld.1600": "κ Crater", + "star.starcaller.overworld.1601": "κ Crux", + "star.starcaller.overworld.1602": "κ Cygnus", + "star.starcaller.overworld.1603": "κ Delphinus", + "star.starcaller.overworld.1604": "κ Dorado", + "star.starcaller.overworld.1605": "κ Draco", + "star.starcaller.overworld.1606": "κ Equuleus", + "star.starcaller.overworld.1607": "κ Eridanus", + "star.starcaller.overworld.1608": "κ Fornax", + "star.starcaller.overworld.1609": "κ Gemini", + "star.starcaller.overworld.1610": "κ Grus", + "star.starcaller.overworld.1611": "κ Hercules", + "star.starcaller.overworld.1612": "κ Horologium", + "star.starcaller.overworld.1613": "κ Hydra", + "star.starcaller.overworld.1614": "κ Hydrus", + "star.starcaller.overworld.1615": "κ Indus", + "star.starcaller.overworld.1616": "κ Lacerta", + "star.starcaller.overworld.1617": "κ Leo", + "star.starcaller.overworld.1618": "κ Leo Minor", + "star.starcaller.overworld.1619": "κ Lepus", + "star.starcaller.overworld.1620": "κ Libra", + "star.starcaller.overworld.1621": "κ Lupus", + "star.starcaller.overworld.1622": "κ Lynx", + "star.starcaller.overworld.1623": "κ Lyra", + "star.starcaller.overworld.1624": "κ Mensa", + "star.starcaller.overworld.1625": "κ Microscopium", + "star.starcaller.overworld.1626": "κ Monoceros", + "star.starcaller.overworld.1627": "κ Musca", + "star.starcaller.overworld.1628": "κ Norma", + "star.starcaller.overworld.1629": "κ Octans", + "star.starcaller.overworld.1630": "κ Ophiuchus", + "star.starcaller.overworld.1631": "κ Orion", + "star.starcaller.overworld.1632": "κ Pavo", + "star.starcaller.overworld.1633": "κ Pegasus", + "star.starcaller.overworld.1634": "κ Perseus", + "star.starcaller.overworld.1635": "κ Phoenix", + "star.starcaller.overworld.1636": "κ Pictor", + "star.starcaller.overworld.1637": "κ Pisces", + "star.starcaller.overworld.1638": "κ Piscis Austrinus", + "star.starcaller.overworld.1639": "κ Puppis", + "star.starcaller.overworld.1640": "κ Pyxis", + "star.starcaller.overworld.1641": "κ Reticulum", + "star.starcaller.overworld.1642": "κ Sagitta", + "star.starcaller.overworld.1643": "κ Sagittarius", + "star.starcaller.overworld.1644": "κ Scorpius", + "star.starcaller.overworld.1645": "κ Sculptor", + "star.starcaller.overworld.1646": "κ Scutum", + "star.starcaller.overworld.1647": "κ Serpens", + "star.starcaller.overworld.1648": "κ Sextans", + "star.starcaller.overworld.1649": "κ Taurus", + "star.starcaller.overworld.1650": "κ Telescopium", + "star.starcaller.overworld.1651": "κ Triangulum", + "star.starcaller.overworld.1652": "κ Triangulum Australe", + "star.starcaller.overworld.1653": "κ Tucana", + "star.starcaller.overworld.1654": "κ Ursa Major", + "star.starcaller.overworld.1655": "κ Ursa Minor", + "star.starcaller.overworld.1656": "κ Vela", + "star.starcaller.overworld.1657": "κ Virgo", + "star.starcaller.overworld.1658": "κ Volans", + "star.starcaller.overworld.1659": "κ Vulpecula", + "star.starcaller.overworld.1660": "λ Andromeda", + "star.starcaller.overworld.1661": "λ Antlia", + "star.starcaller.overworld.1662": "λ Apus", + "star.starcaller.overworld.1663": "λ Aquarius", + "star.starcaller.overworld.1664": "λ Aquila", + "star.starcaller.overworld.1665": "λ Ara", + "star.starcaller.overworld.1666": "λ Aries", + "star.starcaller.overworld.1667": "λ Auriga", + "star.starcaller.overworld.1668": "λ Boötes", + "star.starcaller.overworld.1669": "λ Caelum", + "star.starcaller.overworld.1670": "λ Camelopardalis", + "star.starcaller.overworld.1671": "λ Cancer", + "star.starcaller.overworld.1672": "λ Canes Venatici", + "star.starcaller.overworld.1673": "λ Canis Major", + "star.starcaller.overworld.1674": "λ Canis Minor", + "star.starcaller.overworld.1675": "λ Capricornus", + "star.starcaller.overworld.1676": "λ Carina", + "star.starcaller.overworld.1677": "λ Cassiopeia", + "star.starcaller.overworld.1678": "λ Centaurus", + "star.starcaller.overworld.1679": "λ Cepheus", + "star.starcaller.overworld.1680": "λ Cetus", + "star.starcaller.overworld.1681": "λ Chamaeleon", + "star.starcaller.overworld.1682": "λ Circinus", + "star.starcaller.overworld.1683": "λ Columba", + "star.starcaller.overworld.1684": "λ Coma Berenices", + "star.starcaller.overworld.1685": "λ Corona Australis", + "star.starcaller.overworld.1686": "λ Corona Borealis", + "star.starcaller.overworld.1687": "λ Corvus", + "star.starcaller.overworld.1688": "λ Crater", + "star.starcaller.overworld.1689": "λ Crux", + "star.starcaller.overworld.1690": "λ Cygnus", + "star.starcaller.overworld.1691": "λ Delphinus", + "star.starcaller.overworld.1692": "λ Dorado", + "star.starcaller.overworld.1693": "λ Draco", + "star.starcaller.overworld.1694": "λ Equuleus", + "star.starcaller.overworld.1695": "λ Eridanus", + "star.starcaller.overworld.1696": "λ Fornax", + "star.starcaller.overworld.1697": "λ Gemini", + "star.starcaller.overworld.1698": "λ Grus", + "star.starcaller.overworld.1699": "λ Hercules", + "star.starcaller.overworld.1700": "λ Horologium", + "star.starcaller.overworld.1701": "λ Hydra", + "star.starcaller.overworld.1702": "λ Hydrus", + "star.starcaller.overworld.1703": "λ Indus", + "star.starcaller.overworld.1704": "λ Lacerta", + "star.starcaller.overworld.1705": "λ Leo", + "star.starcaller.overworld.1706": "λ Leo Minor", + "star.starcaller.overworld.1707": "λ Lepus", + "star.starcaller.overworld.1708": "λ Libra", + "star.starcaller.overworld.1709": "λ Lupus", + "star.starcaller.overworld.1710": "λ Lynx", + "star.starcaller.overworld.1711": "λ Lyra", + "star.starcaller.overworld.1712": "λ Mensa", + "star.starcaller.overworld.1713": "λ Microscopium", + "star.starcaller.overworld.1714": "λ Monoceros", + "star.starcaller.overworld.1715": "λ Musca", + "star.starcaller.overworld.1716": "λ Norma", + "star.starcaller.overworld.1717": "λ Octans", + "star.starcaller.overworld.1718": "λ Ophiuchus", + "star.starcaller.overworld.1719": "λ Orion", + "star.starcaller.overworld.1720": "λ Pavo", + "star.starcaller.overworld.1721": "λ Pegasus", + "star.starcaller.overworld.1722": "λ Perseus", + "star.starcaller.overworld.1723": "λ Phoenix", + "star.starcaller.overworld.1724": "λ Pictor", + "star.starcaller.overworld.1725": "λ Pisces", + "star.starcaller.overworld.1726": "λ Piscis Austrinus", + "star.starcaller.overworld.1727": "λ Puppis", + "star.starcaller.overworld.1728": "λ Pyxis", + "star.starcaller.overworld.1729": "λ Reticulum", + "star.starcaller.overworld.1730": "λ Sagitta", + "star.starcaller.overworld.1731": "λ Sagittarius", + "star.starcaller.overworld.1732": "λ Scorpius", + "star.starcaller.overworld.1733": "λ Sculptor", + "star.starcaller.overworld.1734": "λ Scutum", + "star.starcaller.overworld.1735": "λ Serpens", + "star.starcaller.overworld.1736": "λ Sextans", + "star.starcaller.overworld.1737": "λ Taurus", + "star.starcaller.overworld.1738": "λ Telescopium", + "star.starcaller.overworld.1739": "λ Triangulum", + "star.starcaller.overworld.1740": "λ Triangulum Australe", + "star.starcaller.overworld.1741": "λ Tucana", + "star.starcaller.overworld.1742": "λ Ursa Major", + "star.starcaller.overworld.1743": "λ Ursa Minor", + "star.starcaller.overworld.1744": "λ Vela", + "star.starcaller.overworld.1745": "λ Virgo", + "star.starcaller.overworld.1746": "λ Volans", + "star.starcaller.overworld.1747": "λ Vulpecula", + "star.starcaller.overworld.1748": "μ Andromeda", + "star.starcaller.overworld.1749": "μ Antlia", + "star.starcaller.overworld.1750": "μ Apus", + "star.starcaller.overworld.1751": "μ Aquarius", + "star.starcaller.overworld.1752": "μ Aquila", + "star.starcaller.overworld.1753": "μ Ara", + "star.starcaller.overworld.1754": "μ Aries", + "star.starcaller.overworld.1755": "μ Auriga", + "star.starcaller.overworld.1756": "μ Boötes", + "star.starcaller.overworld.1757": "μ Caelum", + "star.starcaller.overworld.1758": "μ Camelopardalis", + "star.starcaller.overworld.1759": "μ Cancer", + "star.starcaller.overworld.1760": "μ Canes Venatici", + "star.starcaller.overworld.1761": "μ Canis Major", + "star.starcaller.overworld.1762": "μ Canis Minor", + "star.starcaller.overworld.1763": "μ Capricornus", + "star.starcaller.overworld.1764": "μ Carina", + "star.starcaller.overworld.1765": "μ Cassiopeia", + "star.starcaller.overworld.1766": "μ Centaurus", + "star.starcaller.overworld.1767": "μ Cepheus", + "star.starcaller.overworld.1768": "μ Cetus", + "star.starcaller.overworld.1769": "μ Chamaeleon", + "star.starcaller.overworld.1770": "μ Circinus", + "star.starcaller.overworld.1771": "μ Columba", + "star.starcaller.overworld.1772": "μ Coma Berenices", + "star.starcaller.overworld.1773": "μ Corona Australis", + "star.starcaller.overworld.1774": "μ Corona Borealis", + "star.starcaller.overworld.1775": "μ Corvus", + "star.starcaller.overworld.1776": "μ Crater", + "star.starcaller.overworld.1777": "μ Crux", + "star.starcaller.overworld.1778": "μ Cygnus", + "star.starcaller.overworld.1779": "μ Delphinus", + "star.starcaller.overworld.1780": "μ Dorado", + "star.starcaller.overworld.1781": "μ Draco", + "star.starcaller.overworld.1782": "μ Equuleus", + "star.starcaller.overworld.1783": "μ Eridanus", + "star.starcaller.overworld.1784": "μ Fornax", + "star.starcaller.overworld.1785": "μ Gemini", + "star.starcaller.overworld.1786": "μ Grus", + "star.starcaller.overworld.1787": "μ Hercules", + "star.starcaller.overworld.1788": "μ Horologium", + "star.starcaller.overworld.1789": "μ Hydra", + "star.starcaller.overworld.1790": "μ Hydrus", + "star.starcaller.overworld.1791": "μ Indus", + "star.starcaller.overworld.1792": "μ Lacerta", + "star.starcaller.overworld.1793": "μ Leo", + "star.starcaller.overworld.1794": "μ Leo Minor", + "star.starcaller.overworld.1795": "μ Lepus", + "star.starcaller.overworld.1796": "μ Libra", + "star.starcaller.overworld.1797": "μ Lupus", + "star.starcaller.overworld.1798": "μ Lynx", + "star.starcaller.overworld.1799": "μ Lyra", + "star.starcaller.overworld.1800": "μ Mensa", + "star.starcaller.overworld.1801": "μ Microscopium", + "star.starcaller.overworld.1802": "μ Monoceros", + "star.starcaller.overworld.1803": "μ Musca", + "star.starcaller.overworld.1804": "μ Norma", + "star.starcaller.overworld.1805": "μ Octans", + "star.starcaller.overworld.1806": "μ Ophiuchus", + "star.starcaller.overworld.1807": "μ Orion", + "star.starcaller.overworld.1808": "μ Pavo", + "star.starcaller.overworld.1809": "μ Pegasus", + "star.starcaller.overworld.1810": "μ Perseus", + "star.starcaller.overworld.1811": "μ Phoenix", + "star.starcaller.overworld.1812": "μ Pictor", + "star.starcaller.overworld.1813": "μ Pisces", + "star.starcaller.overworld.1814": "μ Piscis Austrinus", + "star.starcaller.overworld.1815": "μ Puppis", + "star.starcaller.overworld.1816": "μ Pyxis", + "star.starcaller.overworld.1817": "μ Reticulum", + "star.starcaller.overworld.1818": "μ Sagitta", + "star.starcaller.overworld.1819": "μ Sagittarius", + "star.starcaller.overworld.1820": "μ Scorpius", + "star.starcaller.overworld.1821": "μ Sculptor", + "star.starcaller.overworld.1822": "μ Scutum", + "star.starcaller.overworld.1823": "μ Serpens", + "star.starcaller.overworld.1824": "μ Sextans", + "star.starcaller.overworld.1825": "μ Taurus", + "star.starcaller.overworld.1826": "μ Telescopium", + "star.starcaller.overworld.1827": "μ Triangulum", + "star.starcaller.overworld.1828": "μ Triangulum Australe", + "star.starcaller.overworld.1829": "μ Tucana", + "star.starcaller.overworld.1830": "μ Ursa Major", + "star.starcaller.overworld.1831": "μ Ursa Minor", + "star.starcaller.overworld.1832": "μ Vela", + "star.starcaller.overworld.1833": "μ Virgo", + "star.starcaller.overworld.1834": "μ Volans", + "star.starcaller.overworld.1835": "μ Vulpecula", + "star.starcaller.overworld.1836": "ν Andromeda", + "star.starcaller.overworld.1837": "ν Antlia", + "star.starcaller.overworld.1838": "ν Apus", + "star.starcaller.overworld.1839": "ν Aquarius", + "star.starcaller.overworld.1840": "ν Aquila", + "star.starcaller.overworld.1841": "ν Ara", + "star.starcaller.overworld.1842": "ν Aries", + "star.starcaller.overworld.1843": "ν Auriga", + "star.starcaller.overworld.1844": "ν Boötes", + "star.starcaller.overworld.1845": "ν Caelum", + "star.starcaller.overworld.1846": "ν Camelopardalis", + "star.starcaller.overworld.1847": "ν Cancer", + "star.starcaller.overworld.1848": "ν Canes Venatici", + "star.starcaller.overworld.1849": "ν Canis Major", + "star.starcaller.overworld.1850": "ν Canis Minor", + "star.starcaller.overworld.1851": "ν Capricornus", + "star.starcaller.overworld.1852": "ν Carina", + "star.starcaller.overworld.1853": "ν Cassiopeia", + "star.starcaller.overworld.1854": "ν Centaurus", + "star.starcaller.overworld.1855": "ν Cepheus", + "star.starcaller.overworld.1856": "ν Cetus", + "star.starcaller.overworld.1857": "ν Chamaeleon", + "star.starcaller.overworld.1858": "ν Circinus", + "star.starcaller.overworld.1859": "ν Columba", + "star.starcaller.overworld.1860": "ν Coma Berenices", + "star.starcaller.overworld.1861": "ν Corona Australis", + "star.starcaller.overworld.1862": "ν Corona Borealis", + "star.starcaller.overworld.1863": "ν Corvus", + "star.starcaller.overworld.1864": "ν Crater", + "star.starcaller.overworld.1865": "ν Crux", + "star.starcaller.overworld.1866": "ν Cygnus", + "star.starcaller.overworld.1867": "ν Delphinus", + "star.starcaller.overworld.1868": "ν Dorado", + "star.starcaller.overworld.1869": "ν Draco", + "star.starcaller.overworld.1870": "ν Equuleus", + "star.starcaller.overworld.1871": "ν Eridanus", + "star.starcaller.overworld.1872": "ν Fornax", + "star.starcaller.overworld.1873": "ν Gemini", + "star.starcaller.overworld.1874": "ν Grus", + "star.starcaller.overworld.1875": "ν Hercules", + "star.starcaller.overworld.1876": "ν Horologium", + "star.starcaller.overworld.1877": "ν Hydra", + "star.starcaller.overworld.1878": "ν Hydrus", + "star.starcaller.overworld.1879": "ν Indus", + "star.starcaller.overworld.1880": "ν Lacerta", + "star.starcaller.overworld.1881": "ν Leo", + "star.starcaller.overworld.1882": "ν Leo Minor", + "star.starcaller.overworld.1883": "ν Lepus", + "star.starcaller.overworld.1884": "ν Libra", + "star.starcaller.overworld.1885": "ν Lupus", + "star.starcaller.overworld.1886": "ν Lynx", + "star.starcaller.overworld.1887": "ν Lyra", + "star.starcaller.overworld.1888": "ν Mensa", + "star.starcaller.overworld.1889": "ν Microscopium", + "star.starcaller.overworld.1890": "ν Monoceros", + "star.starcaller.overworld.1891": "ν Musca", + "star.starcaller.overworld.1892": "ν Norma", + "star.starcaller.overworld.1893": "ν Octans", + "star.starcaller.overworld.1894": "ν Ophiuchus", + "star.starcaller.overworld.1895": "ν Orion", + "star.starcaller.overworld.1896": "ν Pavo", + "star.starcaller.overworld.1897": "ν Pegasus", + "star.starcaller.overworld.1898": "ν Perseus", + "star.starcaller.overworld.1899": "ν Phoenix", + "star.starcaller.overworld.1900": "ν Pictor", + "star.starcaller.overworld.1901": "ν Pisces", + "star.starcaller.overworld.1902": "ν Piscis Austrinus", + "star.starcaller.overworld.1903": "ν Puppis", + "star.starcaller.overworld.1904": "ν Pyxis", + "star.starcaller.overworld.1905": "ν Reticulum", + "star.starcaller.overworld.1906": "ν Sagitta", + "star.starcaller.overworld.1907": "ν Sagittarius", + "star.starcaller.overworld.1908": "ν Scorpius", + "star.starcaller.overworld.1909": "ν Sculptor", + "star.starcaller.overworld.1910": "ν Scutum", + "star.starcaller.overworld.1911": "ν Serpens", + "star.starcaller.overworld.1912": "ν Sextans", + "star.starcaller.overworld.1913": "ν Taurus", + "star.starcaller.overworld.1914": "ν Telescopium", + "star.starcaller.overworld.1915": "ν Triangulum", + "star.starcaller.overworld.1916": "ν Triangulum Australe", + "star.starcaller.overworld.1917": "ν Tucana", + "star.starcaller.overworld.1918": "ν Ursa Major", + "star.starcaller.overworld.1919": "ν Ursa Minor", + "star.starcaller.overworld.1920": "ν Vela", + "star.starcaller.overworld.1921": "ν Virgo", + "star.starcaller.overworld.1922": "ν Volans", + "star.starcaller.overworld.1923": "ν Vulpecula", + "star.starcaller.overworld.1924": "ξ Andromeda", + "star.starcaller.overworld.1925": "ξ Antlia", + "star.starcaller.overworld.1926": "ξ Apus", + "star.starcaller.overworld.1927": "ξ Aquarius", + "star.starcaller.overworld.1928": "ξ Aquila", + "star.starcaller.overworld.1929": "ξ Ara", + "star.starcaller.overworld.1930": "ξ Aries", + "star.starcaller.overworld.1931": "ξ Auriga", + "star.starcaller.overworld.1932": "ξ Boötes", + "star.starcaller.overworld.1933": "ξ Caelum", + "star.starcaller.overworld.1934": "ξ Camelopardalis", + "star.starcaller.overworld.1935": "ξ Cancer", + "star.starcaller.overworld.1936": "ξ Canes Venatici", + "star.starcaller.overworld.1937": "ξ Canis Major", + "star.starcaller.overworld.1938": "ξ Canis Minor", + "star.starcaller.overworld.1939": "ξ Capricornus", + "star.starcaller.overworld.1940": "ξ Carina", + "star.starcaller.overworld.1941": "ξ Cassiopeia", + "star.starcaller.overworld.1942": "ξ Centaurus", + "star.starcaller.overworld.1943": "ξ Cepheus", + "star.starcaller.overworld.1944": "ξ Cetus", + "star.starcaller.overworld.1945": "ξ Chamaeleon", + "star.starcaller.overworld.1946": "ξ Circinus", + "star.starcaller.overworld.1947": "ξ Columba", + "star.starcaller.overworld.1948": "ξ Coma Berenices", + "star.starcaller.overworld.1949": "ξ Corona Australis", + "star.starcaller.overworld.1950": "ξ Corona Borealis", + "star.starcaller.overworld.1951": "ξ Corvus", + "star.starcaller.overworld.1952": "ξ Crater", + "star.starcaller.overworld.1953": "ξ Crux", + "star.starcaller.overworld.1954": "ξ Cygnus", + "star.starcaller.overworld.1955": "ξ Delphinus", + "star.starcaller.overworld.1956": "ξ Dorado", + "star.starcaller.overworld.1957": "ξ Draco", + "star.starcaller.overworld.1958": "ξ Equuleus", + "star.starcaller.overworld.1959": "ξ Eridanus", + "star.starcaller.overworld.1960": "ξ Fornax", + "star.starcaller.overworld.1961": "ξ Gemini", + "star.starcaller.overworld.1962": "ξ Grus", + "star.starcaller.overworld.1963": "ξ Hercules", + "star.starcaller.overworld.1964": "ξ Horologium", + "star.starcaller.overworld.1965": "ξ Hydra", + "star.starcaller.overworld.1966": "ξ Hydrus", + "star.starcaller.overworld.1967": "ξ Indus", + "star.starcaller.overworld.1968": "ξ Lacerta", + "star.starcaller.overworld.1969": "ξ Leo", + "star.starcaller.overworld.1970": "ξ Leo Minor", + "star.starcaller.overworld.1971": "ξ Lepus", + "star.starcaller.overworld.1972": "ξ Libra", + "star.starcaller.overworld.1973": "ξ Lupus", + "star.starcaller.overworld.1974": "ξ Lynx", + "star.starcaller.overworld.1975": "ξ Lyra", + "star.starcaller.overworld.1976": "ξ Mensa", + "star.starcaller.overworld.1977": "ξ Microscopium", + "star.starcaller.overworld.1978": "ξ Monoceros", + "star.starcaller.overworld.1979": "ξ Musca", + "star.starcaller.overworld.1980": "ξ Norma", + "star.starcaller.overworld.1981": "ξ Octans", + "star.starcaller.overworld.1982": "ξ Ophiuchus", + "star.starcaller.overworld.1983": "ξ Orion", + "star.starcaller.overworld.1984": "ξ Pavo", + "star.starcaller.overworld.1985": "ξ Pegasus", + "star.starcaller.overworld.1986": "ξ Perseus", + "star.starcaller.overworld.1987": "ξ Phoenix", + "star.starcaller.overworld.1988": "ξ Pictor", + "star.starcaller.overworld.1989": "ξ Pisces", + "star.starcaller.overworld.1990": "ξ Piscis Austrinus", + "star.starcaller.overworld.1991": "ξ Puppis", + "star.starcaller.overworld.1992": "ξ Pyxis", + "star.starcaller.overworld.1993": "ξ Reticulum", + "star.starcaller.overworld.1994": "ξ Sagitta", + "star.starcaller.overworld.1995": "ξ Sagittarius", + "star.starcaller.overworld.1996": "ξ Scorpius", + "star.starcaller.overworld.1997": "ξ Sculptor", + "star.starcaller.overworld.1998": "ξ Scutum", + "star.starcaller.overworld.1999": "ξ Serpens", + "star.starcaller.overworld.2000": "ξ Sextans", + "star.starcaller.overworld.2001": "ξ Taurus", + "star.starcaller.overworld.2002": "ξ Telescopium", + "star.starcaller.overworld.2003": "ξ Triangulum", + "star.starcaller.overworld.2004": "ξ Triangulum Australe", + "star.starcaller.overworld.2005": "ξ Tucana", + "star.starcaller.overworld.2006": "ξ Ursa Major", + "star.starcaller.overworld.2007": "ξ Ursa Minor", + "star.starcaller.overworld.2008": "ξ Vela", + "star.starcaller.overworld.2009": "ξ Virgo", + "star.starcaller.overworld.2010": "ξ Volans", + "star.starcaller.overworld.2011": "ξ Vulpecula", + "star.starcaller.overworld.2012": "ο Andromeda", + "star.starcaller.overworld.2013": "ο Antlia", + "star.starcaller.overworld.2014": "ο Apus", + "star.starcaller.overworld.2015": "ο Aquarius", + "star.starcaller.overworld.2016": "ο Aquila", + "star.starcaller.overworld.2017": "ο Ara", + "star.starcaller.overworld.2018": "ο Aries", + "star.starcaller.overworld.2019": "ο Auriga", + "star.starcaller.overworld.2020": "ο Boötes", + "star.starcaller.overworld.2021": "ο Caelum", + "star.starcaller.overworld.2022": "ο Camelopardalis", + "star.starcaller.overworld.2023": "ο Cancer", + "star.starcaller.overworld.2024": "ο Canes Venatici", + "star.starcaller.overworld.2025": "ο Canis Major", + "star.starcaller.overworld.2026": "ο Canis Minor", + "star.starcaller.overworld.2027": "ο Capricornus", + "star.starcaller.overworld.2028": "ο Carina", + "star.starcaller.overworld.2029": "ο Cassiopeia", + "star.starcaller.overworld.2030": "ο Centaurus", + "star.starcaller.overworld.2031": "ο Cepheus", + "star.starcaller.overworld.2032": "ο Cetus", + "star.starcaller.overworld.2033": "ο Chamaeleon", + "star.starcaller.overworld.2034": "ο Circinus", + "star.starcaller.overworld.2035": "ο Columba", + "star.starcaller.overworld.2036": "ο Coma Berenices", + "star.starcaller.overworld.2037": "ο Corona Australis", + "star.starcaller.overworld.2038": "ο Corona Borealis", + "star.starcaller.overworld.2039": "ο Corvus", + "star.starcaller.overworld.2040": "ο Crater", + "star.starcaller.overworld.2041": "ο Crux", + "star.starcaller.overworld.2042": "ο Cygnus", + "star.starcaller.overworld.2043": "ο Delphinus", + "star.starcaller.overworld.2044": "ο Dorado", + "star.starcaller.overworld.2045": "ο Draco", + "star.starcaller.overworld.2046": "ο Equuleus", + "star.starcaller.overworld.2047": "ο Eridanus", + "star.starcaller.overworld.2048": "ο Fornax", + "star.starcaller.overworld.2049": "ο Gemini", + "star.starcaller.overworld.2050": "ο Grus", + "star.starcaller.overworld.2051": "ο Hercules", + "star.starcaller.overworld.2052": "ο Horologium", + "star.starcaller.overworld.2053": "ο Hydra", + "star.starcaller.overworld.2054": "ο Hydrus", + "star.starcaller.overworld.2055": "ο Indus", + "star.starcaller.overworld.2056": "ο Lacerta", + "star.starcaller.overworld.2057": "ο Leo", + "star.starcaller.overworld.2058": "ο Leo Minor", + "star.starcaller.overworld.2059": "ο Lepus", + "star.starcaller.overworld.2060": "ο Libra", + "star.starcaller.overworld.2061": "ο Lupus", + "star.starcaller.overworld.2062": "ο Lynx", + "star.starcaller.overworld.2063": "ο Lyra", + "star.starcaller.overworld.2064": "ο Mensa", + "star.starcaller.overworld.2065": "ο Microscopium", + "star.starcaller.overworld.2066": "ο Monoceros", + "star.starcaller.overworld.2067": "ο Musca", + "star.starcaller.overworld.2068": "ο Norma", + "star.starcaller.overworld.2069": "ο Octans", + "star.starcaller.overworld.2070": "ο Ophiuchus", + "star.starcaller.overworld.2071": "ο Orion", + "star.starcaller.overworld.2072": "ο Pavo", + "star.starcaller.overworld.2073": "ο Pegasus", + "star.starcaller.overworld.2074": "ο Perseus", + "star.starcaller.overworld.2075": "ο Phoenix", + "star.starcaller.overworld.2076": "ο Pictor", + "star.starcaller.overworld.2077": "ο Pisces", + "star.starcaller.overworld.2078": "ο Piscis Austrinus", + "star.starcaller.overworld.2079": "ο Puppis", + "star.starcaller.overworld.2080": "ο Pyxis", + "star.starcaller.overworld.2081": "ο Reticulum", + "star.starcaller.overworld.2082": "ο Sagitta", + "star.starcaller.overworld.2083": "ο Sagittarius", + "star.starcaller.overworld.2084": "ο Scorpius", + "star.starcaller.overworld.2085": "ο Sculptor", + "star.starcaller.overworld.2086": "ο Scutum", + "star.starcaller.overworld.2087": "ο Serpens", + "star.starcaller.overworld.2088": "ο Sextans", + "star.starcaller.overworld.2089": "ο Taurus", + "star.starcaller.overworld.2090": "ο Telescopium", + "star.starcaller.overworld.2091": "ο Triangulum", + "star.starcaller.overworld.2092": "ο Triangulum Australe", + "star.starcaller.overworld.2093": "ο Tucana", + "star.starcaller.overworld.2094": "ο Ursa Major", + "star.starcaller.overworld.2095": "ο Ursa Minor", + "star.starcaller.overworld.2096": "ο Vela", + "star.starcaller.overworld.2097": "ο Virgo", + "star.starcaller.overworld.2098": "ο Volans", + "star.starcaller.overworld.2099": "ο Vulpecula", + "star.starcaller.overworld.2100": "π Andromeda", + "star.starcaller.overworld.2101": "π Antlia", + "star.starcaller.overworld.2102": "π Apus", + "star.starcaller.overworld.2103": "π Aquarius", + "star.starcaller.overworld.2104": "π Aquila", + "star.starcaller.overworld.2105": "π Ara", + "star.starcaller.overworld.2106": "π Aries", + "star.starcaller.overworld.2107": "π Auriga", + "star.starcaller.overworld.2108": "π Boötes", + "star.starcaller.overworld.2109": "π Caelum", + "star.starcaller.overworld.2110": "π Camelopardalis", + "star.starcaller.overworld.2111": "π Cancer", + "star.starcaller.overworld.2112": "π Canes Venatici", + "star.starcaller.overworld.2113": "π Canis Major", + "star.starcaller.overworld.2114": "π Canis Minor", + "star.starcaller.overworld.2115": "π Capricornus", + "star.starcaller.overworld.2116": "π Carina", + "star.starcaller.overworld.2117": "π Cassiopeia", + "star.starcaller.overworld.2118": "π Centaurus", + "star.starcaller.overworld.2119": "π Cepheus", + "star.starcaller.overworld.2120": "π Cetus", + "star.starcaller.overworld.2121": "π Chamaeleon", + "star.starcaller.overworld.2122": "π Circinus", + "star.starcaller.overworld.2123": "π Columba", + "star.starcaller.overworld.2124": "π Coma Berenices", + "star.starcaller.overworld.2125": "π Corona Australis", + "star.starcaller.overworld.2126": "π Corona Borealis", + "star.starcaller.overworld.2127": "π Corvus", + "star.starcaller.overworld.2128": "π Crater", + "star.starcaller.overworld.2129": "π Crux", + "star.starcaller.overworld.2130": "π Cygnus", + "star.starcaller.overworld.2131": "π Delphinus", + "star.starcaller.overworld.2132": "π Dorado", + "star.starcaller.overworld.2133": "π Draco", + "star.starcaller.overworld.2134": "π Equuleus", + "star.starcaller.overworld.2135": "π Eridanus", + "star.starcaller.overworld.2136": "π Fornax", + "star.starcaller.overworld.2137": "π Gemini", + "star.starcaller.overworld.2138": "π Grus", + "star.starcaller.overworld.2139": "π Hercules", + "star.starcaller.overworld.2140": "π Horologium", + "star.starcaller.overworld.2141": "π Hydra", + "star.starcaller.overworld.2142": "π Hydrus", + "star.starcaller.overworld.2143": "π Indus", + "star.starcaller.overworld.2144": "π Lacerta", + "star.starcaller.overworld.2145": "π Leo", + "star.starcaller.overworld.2146": "π Leo Minor", + "star.starcaller.overworld.2147": "π Lepus", + "star.starcaller.overworld.2148": "π Libra", + "star.starcaller.overworld.2149": "π Lupus", + "star.starcaller.overworld.2150": "π Lynx", + "star.starcaller.overworld.2151": "π Lyra", + "star.starcaller.overworld.2152": "π Mensa", + "star.starcaller.overworld.2153": "π Microscopium", + "star.starcaller.overworld.2154": "π Monoceros", + "star.starcaller.overworld.2155": "π Musca", + "star.starcaller.overworld.2156": "π Norma", + "star.starcaller.overworld.2157": "π Octans", + "star.starcaller.overworld.2158": "π Ophiuchus", + "star.starcaller.overworld.2159": "π Orion", + "star.starcaller.overworld.2160": "π Pavo", + "star.starcaller.overworld.2161": "π Pegasus", + "star.starcaller.overworld.2162": "π Perseus", + "star.starcaller.overworld.2163": "π Phoenix", + "star.starcaller.overworld.2164": "π Pictor", + "star.starcaller.overworld.2165": "π Pisces", + "star.starcaller.overworld.2166": "π Piscis Austrinus", + "star.starcaller.overworld.2167": "π Puppis", + "star.starcaller.overworld.2168": "π Pyxis", + "star.starcaller.overworld.2169": "π Reticulum", + "star.starcaller.overworld.2170": "π Sagitta", + "star.starcaller.overworld.2171": "π Sagittarius", + "star.starcaller.overworld.2172": "π Scorpius", + "star.starcaller.overworld.2173": "π Sculptor", + "star.starcaller.overworld.2174": "π Scutum", + "star.starcaller.overworld.2175": "π Serpens", + "star.starcaller.overworld.2176": "π Sextans", + "star.starcaller.overworld.2177": "π Taurus", + "star.starcaller.overworld.2178": "π Telescopium", + "star.starcaller.overworld.2179": "π Triangulum", + "star.starcaller.overworld.2180": "π Triangulum Australe", + "star.starcaller.overworld.2181": "π Tucana", + "star.starcaller.overworld.2182": "π Ursa Major", + "star.starcaller.overworld.2183": "π Ursa Minor", + "star.starcaller.overworld.2184": "π Vela", + "star.starcaller.overworld.2185": "π Virgo", + "star.starcaller.overworld.2186": "π Volans", + "star.starcaller.overworld.2187": "π Vulpecula", + "star.starcaller.overworld.2188": "ρ Andromeda", + "star.starcaller.overworld.2189": "ρ Antlia", + "star.starcaller.overworld.2190": "ρ Apus", + "star.starcaller.overworld.2191": "ρ Aquarius", + "star.starcaller.overworld.2192": "ρ Aquila", + "star.starcaller.overworld.2193": "ρ Ara", + "star.starcaller.overworld.2194": "ρ Aries", + "star.starcaller.overworld.2195": "ρ Auriga", + "star.starcaller.overworld.2196": "ρ Boötes", + "star.starcaller.overworld.2197": "ρ Caelum", + "star.starcaller.overworld.2198": "ρ Camelopardalis", + "star.starcaller.overworld.2199": "ρ Cancer", + "star.starcaller.overworld.2200": "ρ Canes Venatici", + "star.starcaller.overworld.2201": "ρ Canis Major", + "star.starcaller.overworld.2202": "ρ Canis Minor", + "star.starcaller.overworld.2203": "ρ Capricornus", + "star.starcaller.overworld.2204": "ρ Carina", + "star.starcaller.overworld.2205": "ρ Cassiopeia", + "star.starcaller.overworld.2206": "ρ Centaurus", + "star.starcaller.overworld.2207": "ρ Cepheus", + "star.starcaller.overworld.2208": "ρ Cetus", + "star.starcaller.overworld.2209": "ρ Chamaeleon", + "star.starcaller.overworld.2210": "ρ Circinus", + "star.starcaller.overworld.2211": "ρ Columba", + "star.starcaller.overworld.2212": "ρ Coma Berenices", + "star.starcaller.overworld.2213": "ρ Corona Australis", + "star.starcaller.overworld.2214": "ρ Corona Borealis", + "star.starcaller.overworld.2215": "ρ Corvus", + "star.starcaller.overworld.2216": "ρ Crater", + "star.starcaller.overworld.2217": "ρ Crux", + "star.starcaller.overworld.2218": "ρ Cygnus", + "star.starcaller.overworld.2219": "ρ Delphinus", + "star.starcaller.overworld.2220": "ρ Dorado", + "star.starcaller.overworld.2221": "ρ Draco", + "star.starcaller.overworld.2222": "ρ Equuleus", + "star.starcaller.overworld.2223": "ρ Eridanus", + "star.starcaller.overworld.2224": "ρ Fornax", + "star.starcaller.overworld.2225": "ρ Gemini", + "star.starcaller.overworld.2226": "ρ Grus", + "star.starcaller.overworld.2227": "ρ Hercules", + "star.starcaller.overworld.2228": "ρ Horologium", + "star.starcaller.overworld.2229": "ρ Hydra", + "star.starcaller.overworld.2230": "ρ Hydrus", + "star.starcaller.overworld.2231": "ρ Indus", + "star.starcaller.overworld.2232": "ρ Lacerta", + "star.starcaller.overworld.2233": "ρ Leo", + "star.starcaller.overworld.2234": "ρ Leo Minor", + "star.starcaller.overworld.2235": "ρ Lepus", + "star.starcaller.overworld.2236": "ρ Libra", + "star.starcaller.overworld.2237": "ρ Lupus", + "star.starcaller.overworld.2238": "ρ Lynx", + "star.starcaller.overworld.2239": "ρ Lyra", + "star.starcaller.overworld.2240": "ρ Mensa", + "star.starcaller.overworld.2241": "ρ Microscopium", + "star.starcaller.overworld.2242": "ρ Monoceros", + "star.starcaller.overworld.2243": "ρ Musca", + "star.starcaller.overworld.2244": "ρ Norma", + "star.starcaller.overworld.2245": "ρ Octans", + "star.starcaller.overworld.2246": "ρ Ophiuchus", + "star.starcaller.overworld.2247": "ρ Orion", + "star.starcaller.overworld.2248": "ρ Pavo", + "star.starcaller.overworld.2249": "ρ Pegasus", + "star.starcaller.overworld.2250": "ρ Perseus", + "star.starcaller.overworld.2251": "ρ Phoenix", + "star.starcaller.overworld.2252": "ρ Pictor", + "star.starcaller.overworld.2253": "ρ Pisces", + "star.starcaller.overworld.2254": "ρ Piscis Austrinus", + "star.starcaller.overworld.2255": "ρ Puppis", + "star.starcaller.overworld.2256": "ρ Pyxis", + "star.starcaller.overworld.2257": "ρ Reticulum", + "star.starcaller.overworld.2258": "ρ Sagitta", + "star.starcaller.overworld.2259": "ρ Sagittarius", + "star.starcaller.overworld.2260": "ρ Scorpius", + "star.starcaller.overworld.2261": "ρ Sculptor", + "star.starcaller.overworld.2262": "ρ Scutum", + "star.starcaller.overworld.2263": "ρ Serpens", + "star.starcaller.overworld.2264": "ρ Sextans", + "star.starcaller.overworld.2265": "ρ Taurus", + "star.starcaller.overworld.2266": "ρ Telescopium", + "star.starcaller.overworld.2267": "ρ Triangulum", + "star.starcaller.overworld.2268": "ρ Triangulum Australe", + "star.starcaller.overworld.2269": "ρ Tucana", + "star.starcaller.overworld.2270": "ρ Ursa Major", + "star.starcaller.overworld.2271": "ρ Ursa Minor", + "star.starcaller.overworld.2272": "ρ Vela", + "star.starcaller.overworld.2273": "ρ Virgo", + "star.starcaller.overworld.2274": "ρ Volans", + "star.starcaller.overworld.2275": "ρ Vulpecula", + "star.starcaller.overworld.2276": "σ Andromeda", + "star.starcaller.overworld.2277": "σ Antlia", + "star.starcaller.overworld.2278": "σ Apus", + "star.starcaller.overworld.2279": "σ Aquarius", + "star.starcaller.overworld.2280": "σ Aquila", + "star.starcaller.overworld.2281": "σ Ara", + "star.starcaller.overworld.2282": "σ Aries", + "star.starcaller.overworld.2283": "σ Auriga", + "star.starcaller.overworld.2284": "σ Boötes", + "star.starcaller.overworld.2285": "σ Caelum", + "star.starcaller.overworld.2286": "σ Camelopardalis", + "star.starcaller.overworld.2287": "σ Cancer", + "star.starcaller.overworld.2288": "σ Canes Venatici", + "star.starcaller.overworld.2289": "σ Canis Major", + "star.starcaller.overworld.2290": "σ Canis Minor", + "star.starcaller.overworld.2291": "σ Capricornus", + "star.starcaller.overworld.2292": "σ Carina", + "star.starcaller.overworld.2293": "σ Cassiopeia", + "star.starcaller.overworld.2294": "σ Centaurus", + "star.starcaller.overworld.2295": "σ Cepheus", + "star.starcaller.overworld.2296": "σ Cetus", + "star.starcaller.overworld.2297": "σ Chamaeleon", + "star.starcaller.overworld.2298": "σ Circinus", + "star.starcaller.overworld.2299": "σ Columba", + "star.starcaller.overworld.2300": "σ Coma Berenices", + "star.starcaller.overworld.2301": "σ Corona Australis", + "star.starcaller.overworld.2302": "σ Corona Borealis", + "star.starcaller.overworld.2303": "σ Corvus", + "star.starcaller.overworld.2304": "σ Crater", + "star.starcaller.overworld.2305": "σ Crux", + "star.starcaller.overworld.2306": "σ Cygnus", + "star.starcaller.overworld.2307": "σ Delphinus", + "star.starcaller.overworld.2308": "σ Dorado", + "star.starcaller.overworld.2309": "σ Draco", + "star.starcaller.overworld.2310": "σ Equuleus", + "star.starcaller.overworld.2311": "σ Eridanus", + "star.starcaller.overworld.2312": "σ Fornax", + "star.starcaller.overworld.2313": "σ Gemini", + "star.starcaller.overworld.2314": "σ Grus", + "star.starcaller.overworld.2315": "σ Hercules", + "star.starcaller.overworld.2316": "σ Horologium", + "star.starcaller.overworld.2317": "σ Hydra", + "star.starcaller.overworld.2318": "σ Hydrus", + "star.starcaller.overworld.2319": "σ Indus", + "star.starcaller.overworld.2320": "σ Lacerta", + "star.starcaller.overworld.2321": "σ Leo", + "star.starcaller.overworld.2322": "σ Leo Minor", + "star.starcaller.overworld.2323": "σ Lepus", + "star.starcaller.overworld.2324": "σ Libra", + "star.starcaller.overworld.2325": "σ Lupus", + "star.starcaller.overworld.2326": "σ Lynx", + "star.starcaller.overworld.2327": "σ Lyra", + "star.starcaller.overworld.2328": "σ Mensa", + "star.starcaller.overworld.2329": "σ Microscopium", + "star.starcaller.overworld.2330": "σ Monoceros", + "star.starcaller.overworld.2331": "σ Musca", + "star.starcaller.overworld.2332": "σ Norma", + "star.starcaller.overworld.2333": "σ Octans", + "star.starcaller.overworld.2334": "σ Ophiuchus", + "star.starcaller.overworld.2335": "σ Orion", + "star.starcaller.overworld.2336": "σ Pavo", + "star.starcaller.overworld.2337": "σ Pegasus", + "star.starcaller.overworld.2338": "σ Perseus", + "star.starcaller.overworld.2339": "σ Phoenix", + "star.starcaller.overworld.2340": "σ Pictor", + "star.starcaller.overworld.2341": "σ Pisces", + "star.starcaller.overworld.2342": "σ Piscis Austrinus", + "star.starcaller.overworld.2343": "σ Puppis", + "star.starcaller.overworld.2344": "σ Pyxis", + "star.starcaller.overworld.2345": "σ Reticulum", + "star.starcaller.overworld.2346": "σ Sagitta", + "star.starcaller.overworld.2347": "σ Sagittarius", + "star.starcaller.overworld.2348": "σ Scorpius", + "star.starcaller.overworld.2349": "σ Sculptor", + "star.starcaller.overworld.2350": "σ Scutum", + "star.starcaller.overworld.2351": "σ Serpens", + "star.starcaller.overworld.2352": "σ Sextans", + "star.starcaller.overworld.2353": "σ Taurus", + "star.starcaller.overworld.2354": "σ Telescopium", + "star.starcaller.overworld.2355": "σ Triangulum", + "star.starcaller.overworld.2356": "σ Triangulum Australe", + "star.starcaller.overworld.2357": "σ Tucana", + "star.starcaller.overworld.2358": "σ Ursa Major", + "star.starcaller.overworld.2359": "σ Ursa Minor", + "star.starcaller.overworld.2360": "σ Vela", + "star.starcaller.overworld.2361": "σ Virgo", + "star.starcaller.overworld.2362": "σ Volans", + "star.starcaller.overworld.2363": "σ Vulpecula", + "star.starcaller.overworld.2364": "τ Andromeda", + "star.starcaller.overworld.2365": "τ Antlia", + "star.starcaller.overworld.2366": "τ Apus", + "star.starcaller.overworld.2367": "τ Aquarius", + "star.starcaller.overworld.2368": "τ Aquila", + "star.starcaller.overworld.2369": "τ Ara", + "star.starcaller.overworld.2370": "τ Aries", + "star.starcaller.overworld.2371": "τ Auriga", + "star.starcaller.overworld.2372": "τ Boötes", + "star.starcaller.overworld.2373": "τ Caelum", + "star.starcaller.overworld.2374": "τ Camelopardalis", + "star.starcaller.overworld.2375": "τ Cancer", + "star.starcaller.overworld.2376": "τ Canes Venatici", + "star.starcaller.overworld.2377": "τ Canis Major", + "star.starcaller.overworld.2378": "τ Canis Minor", + "star.starcaller.overworld.2379": "τ Capricornus", + "star.starcaller.overworld.2380": "τ Carina", + "star.starcaller.overworld.2381": "τ Cassiopeia", + "star.starcaller.overworld.2382": "τ Centaurus", + "star.starcaller.overworld.2383": "τ Cepheus", + "star.starcaller.overworld.2384": "τ Cetus", + "star.starcaller.overworld.2385": "τ Chamaeleon", + "star.starcaller.overworld.2386": "τ Circinus", + "star.starcaller.overworld.2387": "τ Columba", + "star.starcaller.overworld.2388": "τ Coma Berenices", + "star.starcaller.overworld.2389": "τ Corona Australis", + "star.starcaller.overworld.2390": "τ Corona Borealis", + "star.starcaller.overworld.2391": "τ Corvus", + "star.starcaller.overworld.2392": "τ Crater", + "star.starcaller.overworld.2393": "τ Crux", + "star.starcaller.overworld.2394": "τ Cygnus", + "star.starcaller.overworld.2395": "τ Delphinus", + "star.starcaller.overworld.2396": "τ Dorado", + "star.starcaller.overworld.2397": "τ Draco", + "star.starcaller.overworld.2398": "τ Equuleus", + "star.starcaller.overworld.2399": "τ Eridanus", + "star.starcaller.overworld.2400": "τ Fornax", + "star.starcaller.overworld.2401": "τ Gemini", + "star.starcaller.overworld.2402": "τ Grus", + "star.starcaller.overworld.2403": "τ Hercules", + "star.starcaller.overworld.2404": "τ Horologium", + "star.starcaller.overworld.2405": "τ Hydra", + "star.starcaller.overworld.2406": "τ Hydrus", + "star.starcaller.overworld.2407": "τ Indus", + "star.starcaller.overworld.2408": "τ Lacerta", + "star.starcaller.overworld.2409": "τ Leo", + "star.starcaller.overworld.2410": "τ Leo Minor", + "star.starcaller.overworld.2411": "τ Lepus", + "star.starcaller.overworld.2412": "τ Libra", + "star.starcaller.overworld.2413": "τ Lupus", + "star.starcaller.overworld.2414": "τ Lynx", + "star.starcaller.overworld.2415": "τ Lyra", + "star.starcaller.overworld.2416": "τ Mensa", + "star.starcaller.overworld.2417": "τ Microscopium", + "star.starcaller.overworld.2418": "τ Monoceros", + "star.starcaller.overworld.2419": "τ Musca", + "star.starcaller.overworld.2420": "τ Norma", + "star.starcaller.overworld.2421": "τ Octans", + "star.starcaller.overworld.2422": "τ Ophiuchus", + "star.starcaller.overworld.2423": "τ Orion", + "star.starcaller.overworld.2424": "τ Pavo", + "star.starcaller.overworld.2425": "τ Pegasus", + "star.starcaller.overworld.2426": "τ Perseus", + "star.starcaller.overworld.2427": "τ Phoenix", + "star.starcaller.overworld.2428": "τ Pictor", + "star.starcaller.overworld.2429": "τ Pisces", + "star.starcaller.overworld.2430": "τ Piscis Austrinus", + "star.starcaller.overworld.2431": "τ Puppis", + "star.starcaller.overworld.2432": "τ Pyxis", + "star.starcaller.overworld.2433": "τ Reticulum", + "star.starcaller.overworld.2434": "τ Sagitta", + "star.starcaller.overworld.2435": "τ Sagittarius", + "star.starcaller.overworld.2436": "τ Scorpius", + "star.starcaller.overworld.2437": "τ Sculptor", + "star.starcaller.overworld.2438": "τ Scutum", + "star.starcaller.overworld.2439": "τ Serpens", + "star.starcaller.overworld.2440": "τ Sextans", + "star.starcaller.overworld.2441": "τ Taurus", + "star.starcaller.overworld.2442": "τ Telescopium", + "star.starcaller.overworld.2443": "τ Triangulum", + "star.starcaller.overworld.2444": "τ Triangulum Australe", + "star.starcaller.overworld.2445": "τ Tucana", + "star.starcaller.overworld.2446": "τ Ursa Major", + "star.starcaller.overworld.2447": "τ Ursa Minor", + "star.starcaller.overworld.2448": "τ Vela", + "star.starcaller.overworld.2449": "τ Virgo", + "star.starcaller.overworld.2450": "τ Volans", + "star.starcaller.overworld.2451": "τ Vulpecula", + "star.starcaller.overworld.2452": "υ Andromeda", + "star.starcaller.overworld.2453": "υ Antlia", + "star.starcaller.overworld.2454": "υ Apus", + "star.starcaller.overworld.2455": "υ Aquarius", + "star.starcaller.overworld.2456": "υ Aquila", + "star.starcaller.overworld.2457": "υ Ara", + "star.starcaller.overworld.2458": "υ Aries", + "star.starcaller.overworld.2459": "υ Auriga", + "star.starcaller.overworld.2460": "υ Boötes", + "star.starcaller.overworld.2461": "υ Caelum", + "star.starcaller.overworld.2462": "υ Camelopardalis", + "star.starcaller.overworld.2463": "υ Cancer", + "star.starcaller.overworld.2464": "υ Canes Venatici", + "star.starcaller.overworld.2465": "υ Canis Major", + "star.starcaller.overworld.2466": "υ Canis Minor", + "star.starcaller.overworld.2467": "υ Capricornus", + "star.starcaller.overworld.2468": "υ Carina", + "star.starcaller.overworld.2469": "υ Cassiopeia", + "star.starcaller.overworld.2470": "υ Centaurus", + "star.starcaller.overworld.2471": "υ Cepheus", + "star.starcaller.overworld.2472": "υ Cetus", + "star.starcaller.overworld.2473": "υ Chamaeleon", + "star.starcaller.overworld.2474": "υ Circinus", + "star.starcaller.overworld.2475": "υ Columba", + "star.starcaller.overworld.2476": "υ Coma Berenices", + "star.starcaller.overworld.2477": "υ Corona Australis", + "star.starcaller.overworld.2478": "υ Corona Borealis", + "star.starcaller.overworld.2479": "υ Corvus", + "star.starcaller.overworld.2480": "υ Crater", + "star.starcaller.overworld.2481": "υ Crux", + "star.starcaller.overworld.2482": "υ Cygnus", + "star.starcaller.overworld.2483": "υ Delphinus", + "star.starcaller.overworld.2484": "υ Dorado", + "star.starcaller.overworld.2485": "υ Draco", + "star.starcaller.overworld.2486": "υ Equuleus", + "star.starcaller.overworld.2487": "υ Eridanus", + "star.starcaller.overworld.2488": "υ Fornax", + "star.starcaller.overworld.2489": "υ Gemini", + "star.starcaller.overworld.2490": "υ Grus", + "star.starcaller.overworld.2491": "υ Hercules", + "star.starcaller.overworld.2492": "υ Horologium", + "star.starcaller.overworld.2493": "υ Hydra", + "star.starcaller.overworld.2494": "υ Hydrus", + "star.starcaller.overworld.2495": "υ Indus", + "star.starcaller.overworld.2496": "υ Lacerta", + "star.starcaller.overworld.2497": "υ Leo", + "star.starcaller.overworld.2498": "υ Leo Minor", + "star.starcaller.overworld.2499": "υ Lepus", + "star.starcaller.overworld.2500": "υ Libra", + "star.starcaller.overworld.2501": "υ Lupus", + "star.starcaller.overworld.2502": "υ Lynx", + "star.starcaller.overworld.2503": "υ Lyra", + "star.starcaller.overworld.2504": "υ Mensa", + "star.starcaller.overworld.2505": "υ Microscopium", + "star.starcaller.overworld.2506": "υ Monoceros", + "star.starcaller.overworld.2507": "υ Musca", + "star.starcaller.overworld.2508": "υ Norma", + "star.starcaller.overworld.2509": "υ Octans", + "star.starcaller.overworld.2510": "υ Ophiuchus", + "star.starcaller.overworld.2511": "υ Orion", + "star.starcaller.overworld.2512": "υ Pavo", + "star.starcaller.overworld.2513": "υ Pegasus", + "star.starcaller.overworld.2514": "υ Perseus", + "star.starcaller.overworld.2515": "υ Phoenix", + "star.starcaller.overworld.2516": "υ Pictor", + "star.starcaller.overworld.2517": "υ Pisces", + "star.starcaller.overworld.2518": "υ Piscis Austrinus", + "star.starcaller.overworld.2519": "υ Puppis", + "star.starcaller.overworld.2520": "υ Pyxis", + "star.starcaller.overworld.2521": "υ Reticulum", + "star.starcaller.overworld.2522": "υ Sagitta", + "star.starcaller.overworld.2523": "υ Sagittarius", + "star.starcaller.overworld.2524": "υ Scorpius", + "star.starcaller.overworld.2525": "υ Sculptor", + "star.starcaller.overworld.2526": "υ Scutum", + "star.starcaller.overworld.2527": "υ Serpens", + "star.starcaller.overworld.2528": "υ Sextans", + "star.starcaller.overworld.2529": "υ Taurus", + "star.starcaller.overworld.2530": "υ Telescopium", + "star.starcaller.overworld.2531": "υ Triangulum", + "star.starcaller.overworld.2532": "υ Triangulum Australe", + "star.starcaller.overworld.2533": "υ Tucana", + "star.starcaller.overworld.2534": "υ Ursa Major", + "star.starcaller.overworld.2535": "υ Ursa Minor", + "star.starcaller.overworld.2536": "υ Vela", + "star.starcaller.overworld.2537": "υ Virgo", + "star.starcaller.overworld.2538": "υ Volans", + "star.starcaller.overworld.2539": "υ Vulpecula", + "star.starcaller.overworld.2540": "φ Andromeda", + "star.starcaller.overworld.2541": "φ Antlia", + "star.starcaller.overworld.2542": "φ Apus", + "star.starcaller.overworld.2543": "φ Aquarius", + "star.starcaller.overworld.2544": "φ Aquila", + "star.starcaller.overworld.2545": "φ Ara", + "star.starcaller.overworld.2546": "φ Aries", + "star.starcaller.overworld.2547": "φ Auriga", + "star.starcaller.overworld.2548": "φ Boötes", + "star.starcaller.overworld.2549": "φ Caelum", + "star.starcaller.overworld.2550": "φ Camelopardalis", + "star.starcaller.overworld.2551": "φ Cancer", + "star.starcaller.overworld.2552": "φ Canes Venatici", + "star.starcaller.overworld.2553": "φ Canis Major", + "star.starcaller.overworld.2554": "φ Canis Minor", + "star.starcaller.overworld.2555": "φ Capricornus", + "star.starcaller.overworld.2556": "φ Carina", + "star.starcaller.overworld.2557": "φ Cassiopeia", + "star.starcaller.overworld.2558": "φ Centaurus", + "star.starcaller.overworld.2559": "φ Cepheus", + "star.starcaller.overworld.2560": "φ Cetus", + "star.starcaller.overworld.2561": "φ Chamaeleon", + "star.starcaller.overworld.2562": "φ Circinus", + "star.starcaller.overworld.2563": "φ Columba", + "star.starcaller.overworld.2564": "φ Coma Berenices", + "star.starcaller.overworld.2565": "φ Corona Australis", + "star.starcaller.overworld.2566": "φ Corona Borealis", + "star.starcaller.overworld.2567": "φ Corvus", + "star.starcaller.overworld.2568": "φ Crater", + "star.starcaller.overworld.2569": "φ Crux", + "star.starcaller.overworld.2570": "φ Cygnus", + "star.starcaller.overworld.2571": "φ Delphinus", + "star.starcaller.overworld.2572": "φ Dorado", + "star.starcaller.overworld.2573": "φ Draco", + "star.starcaller.overworld.2574": "φ Equuleus", + "star.starcaller.overworld.2575": "φ Eridanus", + "star.starcaller.overworld.2576": "φ Fornax", + "star.starcaller.overworld.2577": "φ Gemini", + "star.starcaller.overworld.2578": "φ Grus", + "star.starcaller.overworld.2579": "φ Hercules", + "star.starcaller.overworld.2580": "φ Horologium", + "star.starcaller.overworld.2581": "φ Hydra", + "star.starcaller.overworld.2582": "φ Hydrus", + "star.starcaller.overworld.2583": "φ Indus", + "star.starcaller.overworld.2584": "φ Lacerta", + "star.starcaller.overworld.2585": "φ Leo", + "star.starcaller.overworld.2586": "φ Leo Minor", + "star.starcaller.overworld.2587": "φ Lepus", + "star.starcaller.overworld.2588": "φ Libra", + "star.starcaller.overworld.2589": "φ Lupus", + "star.starcaller.overworld.2590": "φ Lynx", + "star.starcaller.overworld.2591": "φ Lyra", + "star.starcaller.overworld.2592": "φ Mensa", + "star.starcaller.overworld.2593": "φ Microscopium", + "star.starcaller.overworld.2594": "φ Monoceros", + "star.starcaller.overworld.2595": "φ Musca", + "star.starcaller.overworld.2596": "φ Norma", + "star.starcaller.overworld.2597": "φ Octans", + "star.starcaller.overworld.2598": "φ Ophiuchus", + "star.starcaller.overworld.2599": "φ Orion", + "star.starcaller.overworld.2600": "φ Pavo", + "star.starcaller.overworld.2601": "φ Pegasus", + "star.starcaller.overworld.2602": "φ Perseus", + "star.starcaller.overworld.2603": "φ Phoenix", + "star.starcaller.overworld.2604": "φ Pictor", + "star.starcaller.overworld.2605": "φ Pisces", + "star.starcaller.overworld.2606": "φ Piscis Austrinus", + "star.starcaller.overworld.2607": "φ Puppis", + "star.starcaller.overworld.2608": "φ Pyxis", + "star.starcaller.overworld.2609": "φ Reticulum", + "star.starcaller.overworld.2610": "φ Sagitta", + "star.starcaller.overworld.2611": "φ Sagittarius", + "star.starcaller.overworld.2612": "φ Scorpius", + "star.starcaller.overworld.2613": "φ Sculptor", + "star.starcaller.overworld.2614": "φ Scutum", + "star.starcaller.overworld.2615": "φ Serpens", + "star.starcaller.overworld.2616": "φ Sextans", + "star.starcaller.overworld.2617": "φ Taurus", + "star.starcaller.overworld.2618": "φ Telescopium", + "star.starcaller.overworld.2619": "φ Triangulum", + "star.starcaller.overworld.2620": "φ Triangulum Australe", + "star.starcaller.overworld.2621": "φ Tucana", + "star.starcaller.overworld.2622": "φ Ursa Major", + "star.starcaller.overworld.2623": "φ Ursa Minor", + "star.starcaller.overworld.2624": "φ Vela", + "star.starcaller.overworld.2625": "φ Virgo", + "star.starcaller.overworld.2626": "φ Volans", + "star.starcaller.overworld.2627": "φ Vulpecula", + "star.starcaller.overworld.2628": "χ Andromeda", + "star.starcaller.overworld.2629": "χ Antlia", + "star.starcaller.overworld.2630": "χ Apus", + "star.starcaller.overworld.2631": "χ Aquarius", + "star.starcaller.overworld.2632": "χ Aquila", + "star.starcaller.overworld.2633": "χ Ara", + "star.starcaller.overworld.2634": "χ Aries", + "star.starcaller.overworld.2635": "χ Auriga", + "star.starcaller.overworld.2636": "χ Boötes", + "star.starcaller.overworld.2637": "χ Caelum", + "star.starcaller.overworld.2638": "χ Camelopardalis", + "star.starcaller.overworld.2639": "χ Cancer", + "star.starcaller.overworld.2640": "χ Canes Venatici", + "star.starcaller.overworld.2641": "χ Canis Major", + "star.starcaller.overworld.2642": "χ Canis Minor", + "star.starcaller.overworld.2643": "χ Capricornus", + "star.starcaller.overworld.2644": "χ Carina", + "star.starcaller.overworld.2645": "χ Cassiopeia", + "star.starcaller.overworld.2646": "χ Centaurus", + "star.starcaller.overworld.2647": "χ Cepheus", + "star.starcaller.overworld.2648": "χ Cetus", + "star.starcaller.overworld.2649": "χ Chamaeleon", + "star.starcaller.overworld.2650": "χ Circinus", + "star.starcaller.overworld.2651": "χ Columba", + "star.starcaller.overworld.2652": "χ Coma Berenices", + "star.starcaller.overworld.2653": "χ Corona Australis", + "star.starcaller.overworld.2654": "χ Corona Borealis", + "star.starcaller.overworld.2655": "χ Corvus", + "star.starcaller.overworld.2656": "χ Crater", + "star.starcaller.overworld.2657": "χ Crux", + "star.starcaller.overworld.2658": "χ Cygnus", + "star.starcaller.overworld.2659": "χ Delphinus", + "star.starcaller.overworld.2660": "χ Dorado", + "star.starcaller.overworld.2661": "χ Draco", + "star.starcaller.overworld.2662": "χ Equuleus", + "star.starcaller.overworld.2663": "χ Eridanus", + "star.starcaller.overworld.2664": "χ Fornax", + "star.starcaller.overworld.2665": "χ Gemini", + "star.starcaller.overworld.2666": "χ Grus", + "star.starcaller.overworld.2667": "χ Hercules", + "star.starcaller.overworld.2668": "χ Horologium", + "star.starcaller.overworld.2669": "χ Hydra", + "star.starcaller.overworld.2670": "χ Hydrus", + "star.starcaller.overworld.2671": "χ Indus", + "star.starcaller.overworld.2672": "χ Lacerta", + "star.starcaller.overworld.2673": "χ Leo", + "star.starcaller.overworld.2674": "χ Leo Minor", + "star.starcaller.overworld.2675": "χ Lepus", + "star.starcaller.overworld.2676": "χ Libra", + "star.starcaller.overworld.2677": "χ Lupus", + "star.starcaller.overworld.2678": "χ Lynx", + "star.starcaller.overworld.2679": "χ Lyra", + "star.starcaller.overworld.2680": "χ Mensa", + "star.starcaller.overworld.2681": "χ Microscopium", + "star.starcaller.overworld.2682": "χ Monoceros", + "star.starcaller.overworld.2683": "χ Musca", + "star.starcaller.overworld.2684": "χ Norma", + "star.starcaller.overworld.2685": "χ Octans", + "star.starcaller.overworld.2686": "χ Ophiuchus", + "star.starcaller.overworld.2687": "χ Orion", + "star.starcaller.overworld.2688": "χ Pavo", + "star.starcaller.overworld.2689": "χ Pegasus", + "star.starcaller.overworld.2690": "χ Perseus", + "star.starcaller.overworld.2691": "χ Phoenix", + "star.starcaller.overworld.2692": "χ Pictor", + "star.starcaller.overworld.2693": "χ Pisces", + "star.starcaller.overworld.2694": "χ Piscis Austrinus", + "star.starcaller.overworld.2695": "χ Puppis", + "star.starcaller.overworld.2696": "χ Pyxis", + "star.starcaller.overworld.2697": "χ Reticulum", + "star.starcaller.overworld.2698": "χ Sagitta", + "star.starcaller.overworld.2699": "χ Sagittarius", + "star.starcaller.overworld.2700": "χ Scorpius", + "star.starcaller.overworld.2701": "χ Sculptor", + "star.starcaller.overworld.2702": "χ Scutum", + "star.starcaller.overworld.2703": "χ Serpens", + "star.starcaller.overworld.2704": "χ Sextans", + "star.starcaller.overworld.2705": "χ Taurus", + "star.starcaller.overworld.2706": "χ Telescopium", + "star.starcaller.overworld.2707": "χ Triangulum", + "star.starcaller.overworld.2708": "χ Triangulum Australe", + "star.starcaller.overworld.2709": "χ Tucana", + "star.starcaller.overworld.2710": "χ Ursa Major", + "star.starcaller.overworld.2711": "χ Ursa Minor", + "star.starcaller.overworld.2712": "χ Vela", + "star.starcaller.overworld.2713": "χ Virgo", + "star.starcaller.overworld.2714": "χ Volans", + "star.starcaller.overworld.2715": "χ Vulpecula", + "star.starcaller.overworld.2716": "ψ Andromeda", + "star.starcaller.overworld.2717": "ψ Antlia", + "star.starcaller.overworld.2718": "ψ Apus", + "star.starcaller.overworld.2719": "ψ Aquarius", + "star.starcaller.overworld.2720": "ψ Aquila", + "star.starcaller.overworld.2721": "ψ Ara", + "star.starcaller.overworld.2722": "ψ Aries", + "star.starcaller.overworld.2723": "ψ Auriga", + "star.starcaller.overworld.2724": "ψ Boötes", + "star.starcaller.overworld.2725": "ψ Caelum", + "star.starcaller.overworld.2726": "ψ Camelopardalis", + "star.starcaller.overworld.2727": "ψ Cancer", + "star.starcaller.overworld.2728": "ψ Canes Venatici", + "star.starcaller.overworld.2729": "ψ Canis Major", + "star.starcaller.overworld.2730": "ψ Canis Minor", + "star.starcaller.overworld.2731": "ψ Capricornus", + "star.starcaller.overworld.2732": "ψ Carina", + "star.starcaller.overworld.2733": "ψ Cassiopeia", + "star.starcaller.overworld.2734": "ψ Centaurus", + "star.starcaller.overworld.2735": "ψ Cepheus", + "star.starcaller.overworld.2736": "ψ Cetus", + "star.starcaller.overworld.2737": "ψ Chamaeleon", + "star.starcaller.overworld.2738": "ψ Circinus", + "star.starcaller.overworld.2739": "ψ Columba", + "star.starcaller.overworld.2740": "ψ Coma Berenices", + "star.starcaller.overworld.2741": "ψ Corona Australis", + "star.starcaller.overworld.2742": "ψ Corona Borealis", + "star.starcaller.overworld.2743": "ψ Corvus", + "star.starcaller.overworld.2744": "ψ Crater", + "star.starcaller.overworld.2745": "ψ Crux", + "star.starcaller.overworld.2746": "ψ Cygnus", + "star.starcaller.overworld.2747": "ψ Delphinus", + "star.starcaller.overworld.2748": "ψ Dorado", + "star.starcaller.overworld.2749": "ψ Draco", + "star.starcaller.overworld.2750": "ψ Equuleus", + "star.starcaller.overworld.2751": "ψ Eridanus", + "star.starcaller.overworld.2752": "ψ Fornax", + "star.starcaller.overworld.2753": "ψ Gemini", + "star.starcaller.overworld.2754": "ψ Grus", + "star.starcaller.overworld.2755": "ψ Hercules", + "star.starcaller.overworld.2756": "ψ Horologium", + "star.starcaller.overworld.2757": "ψ Hydra", + "star.starcaller.overworld.2758": "ψ Hydrus", + "star.starcaller.overworld.2759": "ψ Indus", + "star.starcaller.overworld.2760": "ψ Lacerta", + "star.starcaller.overworld.2761": "ψ Leo", + "star.starcaller.overworld.2762": "ψ Leo Minor", + "star.starcaller.overworld.2763": "ψ Lepus", + "star.starcaller.overworld.2764": "ψ Libra", + "star.starcaller.overworld.2765": "ψ Lupus", + "star.starcaller.overworld.2766": "ψ Lynx", + "star.starcaller.overworld.2767": "ψ Lyra", + "star.starcaller.overworld.2768": "ψ Mensa", + "star.starcaller.overworld.2769": "ψ Microscopium", + "star.starcaller.overworld.2770": "ψ Monoceros", + "star.starcaller.overworld.2771": "ψ Musca", + "star.starcaller.overworld.2772": "ψ Norma", + "star.starcaller.overworld.2773": "ψ Octans", + "star.starcaller.overworld.2774": "ψ Ophiuchus", + "star.starcaller.overworld.2775": "ψ Orion", + "star.starcaller.overworld.2776": "ψ Pavo", + "star.starcaller.overworld.2777": "ψ Pegasus", + "star.starcaller.overworld.2778": "ψ Perseus", + "star.starcaller.overworld.2779": "ψ Phoenix", + "star.starcaller.overworld.2780": "ψ Pictor", + "star.starcaller.overworld.2781": "ψ Pisces", + "star.starcaller.overworld.2782": "ψ Piscis Austrinus", + "star.starcaller.overworld.2783": "ψ Puppis", + "star.starcaller.overworld.2784": "ψ Pyxis", + "star.starcaller.overworld.2785": "ψ Reticulum", + "star.starcaller.overworld.2786": "ψ Sagitta", + "star.starcaller.overworld.2787": "ψ Sagittarius", + "star.starcaller.overworld.2788": "ψ Scorpius", + "star.starcaller.overworld.2789": "ψ Sculptor", + "star.starcaller.overworld.2790": "ψ Scutum", + "star.starcaller.overworld.2791": "ψ Serpens", + "star.starcaller.overworld.2792": "ψ Sextans", + "star.starcaller.overworld.2793": "ψ Taurus", + "star.starcaller.overworld.2794": "ψ Telescopium", + "star.starcaller.overworld.2795": "ψ Triangulum", + "star.starcaller.overworld.2796": "ψ Triangulum Australe", + "star.starcaller.overworld.2797": "ψ Tucana", + "star.starcaller.overworld.2798": "ψ Ursa Major", + "star.starcaller.overworld.2799": "ψ Ursa Minor", + "star.starcaller.overworld.2800": "ψ Vela", + "star.starcaller.overworld.2801": "ψ Virgo", + "star.starcaller.overworld.2802": "ψ Volans", + "star.starcaller.overworld.2803": "ψ Vulpecula", + "star.starcaller.overworld.2804": "ω Andromeda", + "star.starcaller.overworld.2805": "ω Antlia", + "star.starcaller.overworld.2806": "ω Apus", + "star.starcaller.overworld.2807": "ω Aquarius", + "star.starcaller.overworld.2808": "ω Aquila", + "star.starcaller.overworld.2809": "ω Ara", + "star.starcaller.overworld.2810": "ω Aries", + "star.starcaller.overworld.2811": "ω Auriga", + "star.starcaller.overworld.2812": "ω Boötes", + "star.starcaller.overworld.2813": "ω Caelum", + "star.starcaller.overworld.2814": "ω Camelopardalis", + "star.starcaller.overworld.2815": "ω Cancer", + "star.starcaller.overworld.2816": "ω Canes Venatici", + "star.starcaller.overworld.2817": "ω Canis Major", + "star.starcaller.overworld.2818": "ω Canis Minor", + "star.starcaller.overworld.2819": "ω Capricornus", + "star.starcaller.overworld.2820": "ω Carina", + "star.starcaller.overworld.2821": "ω Cassiopeia", + "star.starcaller.overworld.2822": "ω Centaurus", + "star.starcaller.overworld.2823": "ω Cepheus", + "star.starcaller.overworld.2824": "ω Cetus", + "star.starcaller.overworld.2825": "ω Chamaeleon", + "star.starcaller.overworld.2826": "ω Circinus", + "star.starcaller.overworld.2827": "ω Columba", + "star.starcaller.overworld.2828": "ω Coma Berenices", + "star.starcaller.overworld.2829": "ω Corona Australis", + "star.starcaller.overworld.2830": "ω Corona Borealis", + "star.starcaller.overworld.2831": "ω Corvus", + "star.starcaller.overworld.2832": "ω Crater", + "star.starcaller.overworld.2833": "ω Crux", + "star.starcaller.overworld.2834": "ω Cygnus", + "star.starcaller.overworld.2835": "ω Delphinus", + "star.starcaller.overworld.2836": "ω Dorado", + "star.starcaller.overworld.2837": "ω Draco", + "star.starcaller.overworld.2838": "ω Equuleus", + "star.starcaller.overworld.2839": "ω Eridanus", + "star.starcaller.overworld.2840": "ω Fornax", + "star.starcaller.overworld.2841": "ω Gemini", + "star.starcaller.overworld.2842": "ω Grus", + "star.starcaller.overworld.2843": "ω Hercules", + "star.starcaller.overworld.2844": "ω Horologium", + "star.starcaller.overworld.2845": "ω Hydra", + "star.starcaller.overworld.2846": "ω Hydrus", + "star.starcaller.overworld.2847": "ω Indus", + "star.starcaller.overworld.2848": "ω Lacerta", + "star.starcaller.overworld.2849": "ω Leo", + "star.starcaller.overworld.2850": "ω Leo Minor", + "star.starcaller.overworld.2851": "ω Lepus", + "star.starcaller.overworld.2852": "ω Libra", + "star.starcaller.overworld.2853": "ω Lupus", + "star.starcaller.overworld.2854": "ω Lynx", + "star.starcaller.overworld.2855": "ω Lyra", + "star.starcaller.overworld.2856": "ω Mensa", + "star.starcaller.overworld.2857": "ω Microscopium", + "star.starcaller.overworld.2858": "ω Monoceros", + "star.starcaller.overworld.2859": "ω Musca", + "star.starcaller.overworld.2860": "ω Norma", + "star.starcaller.overworld.2861": "ω Octans", + "star.starcaller.overworld.2862": "ω Ophiuchus", + "star.starcaller.overworld.2863": "ω Orion", + "star.starcaller.overworld.2864": "ω Pavo", + "star.starcaller.overworld.2865": "ω Pegasus", + "star.starcaller.overworld.2866": "ω Perseus", + "star.starcaller.overworld.2867": "ω Phoenix", + "star.starcaller.overworld.2868": "ω Pictor", + "star.starcaller.overworld.2869": "ω Pisces", + "star.starcaller.overworld.2870": "ω Piscis Austrinus", + "star.starcaller.overworld.2871": "ω Puppis", + "star.starcaller.overworld.2872": "ω Pyxis", + "star.starcaller.overworld.2873": "ω Reticulum", + "star.starcaller.overworld.2874": "ω Sagitta", + "star.starcaller.overworld.2875": "ω Sagittarius", + "star.starcaller.overworld.2876": "ω Scorpius", + "star.starcaller.overworld.2877": "ω Sculptor", + "star.starcaller.overworld.2878": "ω Scutum", + "star.starcaller.overworld.2879": "ω Serpens", + "star.starcaller.overworld.2880": "ω Sextans", + "star.starcaller.overworld.2881": "ω Taurus", + "star.starcaller.overworld.2882": "ω Telescopium", + "star.starcaller.overworld.2883": "ω Triangulum", + "star.starcaller.overworld.2884": "ω Triangulum Australe", + "star.starcaller.overworld.2885": "ω Tucana", + "star.starcaller.overworld.2886": "ω Ursa Major", + "star.starcaller.overworld.2887": "ω Ursa Minor", + "star.starcaller.overworld.2888": "ω Vela", + "star.starcaller.overworld.2889": "ω Virgo", + "star.starcaller.overworld.2890": "ω Volans", + "star.starcaller.overworld.2891": "ω Vulpecula", + "star.starcaller.overworld.2892": "a Andromeda", + "star.starcaller.overworld.2893": "a Antlia", + "star.starcaller.overworld.2894": "a Apus", + "star.starcaller.overworld.2895": "a Aquarius", + "star.starcaller.overworld.2896": "a Aquila", + "star.starcaller.overworld.2897": "a Ara", + "star.starcaller.overworld.2898": "a Aries", + "star.starcaller.overworld.2899": "a Auriga", + "star.starcaller.overworld.2900": "a Boötes", + "star.starcaller.overworld.2901": "a Caelum", + "star.starcaller.overworld.2902": "a Camelopardalis", + "star.starcaller.overworld.2903": "a Cancer", + "star.starcaller.overworld.2904": "a Canes Venatici", + "star.starcaller.overworld.2905": "a Canis Major", + "star.starcaller.overworld.2906": "a Canis Minor", + "star.starcaller.overworld.2907": "a Capricornus", + "star.starcaller.overworld.2908": "a Carina", + "star.starcaller.overworld.2909": "a Cassiopeia", + "star.starcaller.overworld.2910": "a Centaurus", + "star.starcaller.overworld.2911": "a Cepheus", + "star.starcaller.overworld.2912": "a Cetus", + "star.starcaller.overworld.2913": "a Chamaeleon", + "star.starcaller.overworld.2914": "a Circinus", + "star.starcaller.overworld.2915": "a Columba", + "star.starcaller.overworld.2916": "a Coma Berenices", + "star.starcaller.overworld.2917": "a Corona Australis", + "star.starcaller.overworld.2918": "a Corona Borealis", + "star.starcaller.overworld.2919": "a Corvus", + "star.starcaller.overworld.2920": "a Crater", + "star.starcaller.overworld.2921": "a Crux", + "star.starcaller.overworld.2922": "a Cygnus", + "star.starcaller.overworld.2923": "a Delphinus", + "star.starcaller.overworld.2924": "a Dorado", + "star.starcaller.overworld.2925": "a Draco", + "star.starcaller.overworld.2926": "a Equuleus", + "star.starcaller.overworld.2927": "a Eridanus", + "star.starcaller.overworld.2928": "a Fornax", + "star.starcaller.overworld.2929": "a Gemini", + "star.starcaller.overworld.2930": "a Grus", + "star.starcaller.overworld.2931": "a Hercules", + "star.starcaller.overworld.2932": "a Horologium", + "star.starcaller.overworld.2933": "a Hydra", + "star.starcaller.overworld.2934": "a Hydrus", + "star.starcaller.overworld.2935": "a Indus", + "star.starcaller.overworld.2936": "a Lacerta", + "star.starcaller.overworld.2937": "a Leo", + "star.starcaller.overworld.2938": "a Leo Minor", + "star.starcaller.overworld.2939": "a Lepus", + "star.starcaller.overworld.2940": "a Libra", + "star.starcaller.overworld.2941": "a Lupus", + "star.starcaller.overworld.2942": "a Lynx", + "star.starcaller.overworld.2943": "a Lyra", + "star.starcaller.overworld.2944": "a Mensa", + "star.starcaller.overworld.2945": "a Microscopium", + "star.starcaller.overworld.2946": "a Monoceros", + "star.starcaller.overworld.2947": "a Musca", + "star.starcaller.overworld.2948": "a Norma", + "star.starcaller.overworld.2949": "a Octans", + "star.starcaller.overworld.2950": "a Ophiuchus", + "star.starcaller.overworld.2951": "a Orion", + "star.starcaller.overworld.2952": "a Pavo", + "star.starcaller.overworld.2953": "a Pegasus", + "star.starcaller.overworld.2954": "a Perseus", + "star.starcaller.overworld.2955": "a Phoenix", + "star.starcaller.overworld.2956": "a Pictor", + "star.starcaller.overworld.2957": "a Pisces", + "star.starcaller.overworld.2958": "a Piscis Austrinus", + "star.starcaller.overworld.2959": "a Puppis", + "star.starcaller.overworld.2960": "a Pyxis", + "star.starcaller.overworld.2961": "a Reticulum", + "star.starcaller.overworld.2962": "a Sagitta", + "star.starcaller.overworld.2963": "a Sagittarius", + "star.starcaller.overworld.2964": "a Scorpius", + "star.starcaller.overworld.2965": "a Sculptor", + "star.starcaller.overworld.2966": "a Scutum", + "star.starcaller.overworld.2967": "a Serpens", + "star.starcaller.overworld.2968": "a Sextans", + "star.starcaller.overworld.2969": "a Taurus", + "star.starcaller.overworld.2970": "a Telescopium", + "star.starcaller.overworld.2971": "a Triangulum", + "star.starcaller.overworld.2972": "a Triangulum Australe", + "star.starcaller.overworld.2973": "a Tucana", + "star.starcaller.overworld.2974": "a Ursa Major", + "star.starcaller.overworld.2975": "a Ursa Minor", + "star.starcaller.overworld.2976": "a Vela", + "star.starcaller.overworld.2977": "a Virgo", + "star.starcaller.overworld.2978": "a Volans", + "star.starcaller.overworld.2979": "a Vulpecula", + "star.starcaller.overworld.2980": "b Andromeda", + "star.starcaller.overworld.2981": "b Antlia", + "star.starcaller.overworld.2982": "b Apus", + "star.starcaller.overworld.2983": "b Aquarius", + "star.starcaller.overworld.2984": "b Aquila", + "star.starcaller.overworld.2985": "b Ara", + "star.starcaller.overworld.2986": "b Aries", + "star.starcaller.overworld.2987": "b Auriga", + "star.starcaller.overworld.2988": "b Boötes", + "star.starcaller.overworld.2989": "b Caelum", + "star.starcaller.overworld.2990": "b Camelopardalis", + "star.starcaller.overworld.2991": "b Cancer", + "star.starcaller.overworld.2992": "b Canes Venatici", + "star.starcaller.overworld.2993": "b Canis Major", + "star.starcaller.overworld.2994": "b Canis Minor", + "star.starcaller.overworld.2995": "b Capricornus", + "star.starcaller.overworld.2996": "b Carina", + "star.starcaller.overworld.2997": "b Cassiopeia", + "star.starcaller.overworld.2998": "b Centaurus", + "star.starcaller.overworld.2999": "b Cepheus", + "star.starcaller.overworld.3000": "b Cetus", + "star.starcaller.overworld.3001": "b Chamaeleon", + "star.starcaller.overworld.3002": "b Circinus", + "star.starcaller.overworld.3003": "b Columba", + "star.starcaller.overworld.3004": "b Coma Berenices", + "star.starcaller.overworld.3005": "b Corona Australis", + "star.starcaller.overworld.3006": "b Corona Borealis", + "star.starcaller.overworld.3007": "b Corvus", + "star.starcaller.overworld.3008": "b Crater", + "star.starcaller.overworld.3009": "b Crux", + "star.starcaller.overworld.3010": "b Cygnus", + "star.starcaller.overworld.3011": "b Delphinus", + "star.starcaller.overworld.3012": "b Dorado", + "star.starcaller.overworld.3013": "b Draco", + "star.starcaller.overworld.3014": "b Equuleus", + "star.starcaller.overworld.3015": "b Eridanus", + "star.starcaller.overworld.3016": "b Fornax", + "star.starcaller.overworld.3017": "b Gemini", + "star.starcaller.overworld.3018": "b Grus", + "star.starcaller.overworld.3019": "b Hercules", + "star.starcaller.overworld.3020": "b Horologium", + "star.starcaller.overworld.3021": "b Hydra", + "star.starcaller.overworld.3022": "b Hydrus", + "star.starcaller.overworld.3023": "b Indus", + "star.starcaller.overworld.3024": "b Lacerta", + "star.starcaller.overworld.3025": "b Leo", + "star.starcaller.overworld.3026": "b Leo Minor", + "star.starcaller.overworld.3027": "b Lepus", + "star.starcaller.overworld.3028": "b Libra", + "star.starcaller.overworld.3029": "b Lupus", + "star.starcaller.overworld.3030": "b Lynx", + "star.starcaller.overworld.3031": "b Lyra", + "star.starcaller.overworld.3032": "b Mensa", + "star.starcaller.overworld.3033": "b Microscopium", + "star.starcaller.overworld.3034": "b Monoceros", + "star.starcaller.overworld.3035": "b Musca", + "star.starcaller.overworld.3036": "b Norma", + "star.starcaller.overworld.3037": "b Octans", + "star.starcaller.overworld.3038": "b Ophiuchus", + "star.starcaller.overworld.3039": "b Orion", + "star.starcaller.overworld.3040": "b Pavo", + "star.starcaller.overworld.3041": "b Pegasus", + "star.starcaller.overworld.3042": "b Perseus", + "star.starcaller.overworld.3043": "b Phoenix", + "star.starcaller.overworld.3044": "b Pictor", + "star.starcaller.overworld.3045": "b Pisces", + "star.starcaller.overworld.3046": "b Piscis Austrinus", + "star.starcaller.overworld.3047": "b Puppis", + "star.starcaller.overworld.3048": "b Pyxis", + "star.starcaller.overworld.3049": "b Reticulum", + "star.starcaller.overworld.3050": "b Sagitta", + "star.starcaller.overworld.3051": "b Sagittarius", + "star.starcaller.overworld.3052": "b Scorpius", + "star.starcaller.overworld.3053": "b Sculptor", + "star.starcaller.overworld.3054": "b Scutum", + "star.starcaller.overworld.3055": "b Serpens", + "star.starcaller.overworld.3056": "b Sextans", + "star.starcaller.overworld.3057": "b Taurus", + "star.starcaller.overworld.3058": "b Telescopium", + "star.starcaller.overworld.3059": "b Triangulum", + "star.starcaller.overworld.3060": "b Triangulum Australe", + "star.starcaller.overworld.3061": "b Tucana", + "star.starcaller.overworld.3062": "b Ursa Major", + "star.starcaller.overworld.3063": "b Ursa Minor", + "star.starcaller.overworld.3064": "b Vela", + "star.starcaller.overworld.3065": "b Virgo", + "star.starcaller.overworld.3066": "b Volans", + "star.starcaller.overworld.3067": "b Vulpecula", + "star.starcaller.overworld.3068": "c Andromeda", + "star.starcaller.overworld.3069": "c Antlia", + "star.starcaller.overworld.3070": "c Apus", + "star.starcaller.overworld.3071": "c Aquarius", + "star.starcaller.overworld.3072": "c Aquila", + "star.starcaller.overworld.3073": "c Ara", + "star.starcaller.overworld.3074": "c Aries", + "star.starcaller.overworld.3075": "c Auriga", + "star.starcaller.overworld.3076": "c Boötes", + "star.starcaller.overworld.3077": "c Caelum", + "star.starcaller.overworld.3078": "c Camelopardalis", + "star.starcaller.overworld.3079": "c Cancer", + "star.starcaller.overworld.3080": "c Canes Venatici", + "star.starcaller.overworld.3081": "c Canis Major", + "star.starcaller.overworld.3082": "c Canis Minor", + "star.starcaller.overworld.3083": "c Capricornus", + "star.starcaller.overworld.3084": "c Carina", + "star.starcaller.overworld.3085": "c Cassiopeia", + "star.starcaller.overworld.3086": "c Centaurus", + "star.starcaller.overworld.3087": "c Cepheus", + "star.starcaller.overworld.3088": "c Cetus", + "star.starcaller.overworld.3089": "c Chamaeleon", + "star.starcaller.overworld.3090": "c Circinus", + "star.starcaller.overworld.3091": "c Columba", + "star.starcaller.overworld.3092": "c Coma Berenices", + "star.starcaller.overworld.3093": "c Corona Australis", + "star.starcaller.overworld.3094": "c Corona Borealis", + "star.starcaller.overworld.3095": "c Corvus", + "star.starcaller.overworld.3096": "c Crater", + "star.starcaller.overworld.3097": "c Crux", + "star.starcaller.overworld.3098": "c Cygnus", + "star.starcaller.overworld.3099": "c Delphinus", + "star.starcaller.overworld.3100": "c Dorado", + "star.starcaller.overworld.3101": "c Draco", + "star.starcaller.overworld.3102": "c Equuleus", + "star.starcaller.overworld.3103": "c Eridanus", + "star.starcaller.overworld.3104": "c Fornax", + "star.starcaller.overworld.3105": "c Gemini", + "star.starcaller.overworld.3106": "c Grus", + "star.starcaller.overworld.3107": "c Hercules", + "star.starcaller.overworld.3108": "c Horologium", + "star.starcaller.overworld.3109": "c Hydra", + "star.starcaller.overworld.3110": "c Hydrus", + "star.starcaller.overworld.3111": "c Indus", + "star.starcaller.overworld.3112": "c Lacerta", + "star.starcaller.overworld.3113": "c Leo", + "star.starcaller.overworld.3114": "c Leo Minor", + "star.starcaller.overworld.3115": "c Lepus", + "star.starcaller.overworld.3116": "c Libra", + "star.starcaller.overworld.3117": "c Lupus", + "star.starcaller.overworld.3118": "c Lynx", + "star.starcaller.overworld.3119": "c Lyra", + "star.starcaller.overworld.3120": "c Mensa", + "star.starcaller.overworld.3121": "c Microscopium", + "star.starcaller.overworld.3122": "c Monoceros", + "star.starcaller.overworld.3123": "c Musca", + "star.starcaller.overworld.3124": "c Norma", + "star.starcaller.overworld.3125": "c Octans", + "star.starcaller.overworld.3126": "c Ophiuchus", + "star.starcaller.overworld.3127": "c Orion", + "star.starcaller.overworld.3128": "c Pavo", + "star.starcaller.overworld.3129": "c Pegasus", + "star.starcaller.overworld.3130": "c Perseus", + "star.starcaller.overworld.3131": "c Phoenix", + "star.starcaller.overworld.3132": "c Pictor", + "star.starcaller.overworld.3133": "c Pisces", + "star.starcaller.overworld.3134": "c Piscis Austrinus", + "star.starcaller.overworld.3135": "c Puppis", + "star.starcaller.overworld.3136": "c Pyxis", + "star.starcaller.overworld.3137": "c Reticulum", + "star.starcaller.overworld.3138": "c Sagitta", + "star.starcaller.overworld.3139": "c Sagittarius", + "star.starcaller.overworld.3140": "c Scorpius", + "star.starcaller.overworld.3141": "c Sculptor", + "star.starcaller.overworld.3142": "c Scutum", + "star.starcaller.overworld.3143": "c Serpens", + "star.starcaller.overworld.3144": "c Sextans", + "star.starcaller.overworld.3145": "c Taurus", + "star.starcaller.overworld.3146": "c Telescopium", + "star.starcaller.overworld.3147": "c Triangulum", + "star.starcaller.overworld.3148": "c Triangulum Australe", + "star.starcaller.overworld.3149": "c Tucana", + "star.starcaller.overworld.3150": "c Ursa Major", + "star.starcaller.overworld.3151": "c Ursa Minor", + "star.starcaller.overworld.3152": "c Vela", + "star.starcaller.overworld.3153": "c Virgo", + "star.starcaller.overworld.3154": "c Volans", + "star.starcaller.overworld.3155": "c Vulpecula", + "star.starcaller.overworld.3156": "d Andromeda", + "star.starcaller.overworld.3157": "d Antlia", + "star.starcaller.overworld.3158": "d Apus", + "star.starcaller.overworld.3159": "d Aquarius", + "star.starcaller.overworld.3160": "d Aquila", + "star.starcaller.overworld.3161": "d Ara", + "star.starcaller.overworld.3162": "d Aries", + "star.starcaller.overworld.3163": "d Auriga", + "star.starcaller.overworld.3164": "d Boötes", + "star.starcaller.overworld.3165": "d Caelum", + "star.starcaller.overworld.3166": "d Camelopardalis", + "star.starcaller.overworld.3167": "d Cancer", + "star.starcaller.overworld.3168": "d Canes Venatici", + "star.starcaller.overworld.3169": "d Canis Major", + "star.starcaller.overworld.3170": "d Canis Minor", + "star.starcaller.overworld.3171": "d Capricornus", + "star.starcaller.overworld.3172": "d Carina", + "star.starcaller.overworld.3173": "d Cassiopeia", + "star.starcaller.overworld.3174": "d Centaurus", + "star.starcaller.overworld.3175": "d Cepheus", + "star.starcaller.overworld.3176": "d Cetus", + "star.starcaller.overworld.3177": "d Chamaeleon", + "star.starcaller.overworld.3178": "d Circinus", + "star.starcaller.overworld.3179": "d Columba", + "star.starcaller.overworld.3180": "d Coma Berenices", + "star.starcaller.overworld.3181": "d Corona Australis", + "star.starcaller.overworld.3182": "d Corona Borealis", + "star.starcaller.overworld.3183": "d Corvus", + "star.starcaller.overworld.3184": "d Crater", + "star.starcaller.overworld.3185": "d Crux", + "star.starcaller.overworld.3186": "d Cygnus", + "star.starcaller.overworld.3187": "d Delphinus", + "star.starcaller.overworld.3188": "d Dorado", + "star.starcaller.overworld.3189": "d Draco", + "star.starcaller.overworld.3190": "d Equuleus", + "star.starcaller.overworld.3191": "d Eridanus", + "star.starcaller.overworld.3192": "d Fornax", + "star.starcaller.overworld.3193": "d Gemini", + "star.starcaller.overworld.3194": "d Grus", + "star.starcaller.overworld.3195": "d Hercules", + "star.starcaller.overworld.3196": "d Horologium", + "star.starcaller.overworld.3197": "d Hydra", + "star.starcaller.overworld.3198": "d Hydrus", + "star.starcaller.overworld.3199": "d Indus", + "star.starcaller.overworld.3200": "d Lacerta", + "star.starcaller.overworld.3201": "d Leo", + "star.starcaller.overworld.3202": "d Leo Minor", + "star.starcaller.overworld.3203": "d Lepus", + "star.starcaller.overworld.3204": "d Libra", + "star.starcaller.overworld.3205": "d Lupus", + "star.starcaller.overworld.3206": "d Lynx", + "star.starcaller.overworld.3207": "d Lyra", + "star.starcaller.overworld.3208": "d Mensa", + "star.starcaller.overworld.3209": "d Microscopium", + "star.starcaller.overworld.3210": "d Monoceros", + "star.starcaller.overworld.3211": "d Musca", + "star.starcaller.overworld.3212": "d Norma", + "star.starcaller.overworld.3213": "d Octans", + "star.starcaller.overworld.3214": "d Ophiuchus", + "star.starcaller.overworld.3215": "d Orion", + "star.starcaller.overworld.3216": "d Pavo", + "star.starcaller.overworld.3217": "d Pegasus", + "star.starcaller.overworld.3218": "d Perseus", + "star.starcaller.overworld.3219": "d Phoenix", + "star.starcaller.overworld.3220": "d Pictor", + "star.starcaller.overworld.3221": "d Pisces", + "star.starcaller.overworld.3222": "d Piscis Austrinus", + "star.starcaller.overworld.3223": "d Puppis", + "star.starcaller.overworld.3224": "d Pyxis", + "star.starcaller.overworld.3225": "d Reticulum", + "star.starcaller.overworld.3226": "d Sagitta", + "star.starcaller.overworld.3227": "d Sagittarius", + "star.starcaller.overworld.3228": "d Scorpius", + "star.starcaller.overworld.3229": "d Sculptor", + "star.starcaller.overworld.3230": "d Scutum", + "star.starcaller.overworld.3231": "d Serpens", + "star.starcaller.overworld.3232": "d Sextans", + "star.starcaller.overworld.3233": "d Taurus", + "star.starcaller.overworld.3234": "d Telescopium", + "star.starcaller.overworld.3235": "d Triangulum", + "star.starcaller.overworld.3236": "d Triangulum Australe", + "star.starcaller.overworld.3237": "d Tucana", + "star.starcaller.overworld.3238": "d Ursa Major", + "star.starcaller.overworld.3239": "d Ursa Minor", + "star.starcaller.overworld.3240": "d Vela", + "star.starcaller.overworld.3241": "d Virgo", + "star.starcaller.overworld.3242": "d Volans", + "star.starcaller.overworld.3243": "d Vulpecula", + "star.starcaller.overworld.3244": "e Andromeda", + "star.starcaller.overworld.3245": "e Antlia", + "star.starcaller.overworld.3246": "e Apus", + "star.starcaller.overworld.3247": "e Aquarius", + "star.starcaller.overworld.3248": "e Aquila", + "star.starcaller.overworld.3249": "e Ara", + "star.starcaller.overworld.3250": "e Aries", + "star.starcaller.overworld.3251": "e Auriga", + "star.starcaller.overworld.3252": "e Boötes", + "star.starcaller.overworld.3253": "e Caelum", + "star.starcaller.overworld.3254": "e Camelopardalis", + "star.starcaller.overworld.3255": "e Cancer", + "star.starcaller.overworld.3256": "e Canes Venatici", + "star.starcaller.overworld.3257": "e Canis Major", + "star.starcaller.overworld.3258": "e Canis Minor", + "star.starcaller.overworld.3259": "e Capricornus", + "star.starcaller.overworld.3260": "e Carina", + "star.starcaller.overworld.3261": "e Cassiopeia", + "star.starcaller.overworld.3262": "e Centaurus", + "star.starcaller.overworld.3263": "e Cepheus", + "star.starcaller.overworld.3264": "e Cetus", + "star.starcaller.overworld.3265": "e Chamaeleon", + "star.starcaller.overworld.3266": "e Circinus", + "star.starcaller.overworld.3267": "e Columba", + "star.starcaller.overworld.3268": "e Coma Berenices", + "star.starcaller.overworld.3269": "e Corona Australis", + "star.starcaller.overworld.3270": "e Corona Borealis", + "star.starcaller.overworld.3271": "e Corvus", + "star.starcaller.overworld.3272": "e Crater", + "star.starcaller.overworld.3273": "e Crux", + "star.starcaller.overworld.3274": "e Cygnus", + "star.starcaller.overworld.3275": "e Delphinus", + "star.starcaller.overworld.3276": "e Dorado", + "star.starcaller.overworld.3277": "e Draco", + "star.starcaller.overworld.3278": "e Equuleus", + "star.starcaller.overworld.3279": "e Eridanus", + "star.starcaller.overworld.3280": "e Fornax", + "star.starcaller.overworld.3281": "e Gemini", + "star.starcaller.overworld.3282": "e Grus", + "star.starcaller.overworld.3283": "e Hercules", + "star.starcaller.overworld.3284": "e Horologium", + "star.starcaller.overworld.3285": "e Hydra", + "star.starcaller.overworld.3286": "e Hydrus", + "star.starcaller.overworld.3287": "e Indus", + "star.starcaller.overworld.3288": "e Lacerta", + "star.starcaller.overworld.3289": "e Leo", + "star.starcaller.overworld.3290": "e Leo Minor", + "star.starcaller.overworld.3291": "e Lepus", + "star.starcaller.overworld.3292": "e Libra", + "star.starcaller.overworld.3293": "e Lupus", + "star.starcaller.overworld.3294": "e Lynx", + "star.starcaller.overworld.3295": "e Lyra", + "star.starcaller.overworld.3296": "e Mensa", + "star.starcaller.overworld.3297": "e Microscopium", + "star.starcaller.overworld.3298": "e Monoceros", + "star.starcaller.overworld.3299": "e Musca", + "star.starcaller.overworld.3300": "e Norma", + "star.starcaller.overworld.3301": "e Octans", + "star.starcaller.overworld.3302": "e Ophiuchus", + "star.starcaller.overworld.3303": "e Orion", + "star.starcaller.overworld.3304": "e Pavo", + "star.starcaller.overworld.3305": "e Pegasus", + "star.starcaller.overworld.3306": "e Perseus", + "star.starcaller.overworld.3307": "e Phoenix", + "star.starcaller.overworld.3308": "e Pictor", + "star.starcaller.overworld.3309": "e Pisces", + "star.starcaller.overworld.3310": "e Piscis Austrinus", + "star.starcaller.overworld.3311": "e Puppis", + "star.starcaller.overworld.3312": "e Pyxis", + "star.starcaller.overworld.3313": "e Reticulum", + "star.starcaller.overworld.3314": "e Sagitta", + "star.starcaller.overworld.3315": "e Sagittarius", + "star.starcaller.overworld.3316": "e Scorpius", + "star.starcaller.overworld.3317": "e Sculptor", + "star.starcaller.overworld.3318": "e Scutum", + "star.starcaller.overworld.3319": "e Serpens", + "star.starcaller.overworld.3320": "e Sextans", + "star.starcaller.overworld.3321": "e Taurus", + "star.starcaller.overworld.3322": "e Telescopium", + "star.starcaller.overworld.3323": "e Triangulum", + "star.starcaller.overworld.3324": "e Triangulum Australe", + "star.starcaller.overworld.3325": "e Tucana", + "star.starcaller.overworld.3326": "e Ursa Major", + "star.starcaller.overworld.3327": "e Ursa Minor", + "star.starcaller.overworld.3328": "e Vela", + "star.starcaller.overworld.3329": "e Virgo", + "star.starcaller.overworld.3330": "e Volans", + "star.starcaller.overworld.3331": "e Vulpecula", + "star.starcaller.overworld.3332": "f Andromeda", + "star.starcaller.overworld.3333": "f Antlia", + "star.starcaller.overworld.3334": "f Apus", + "star.starcaller.overworld.3335": "f Aquarius", + "star.starcaller.overworld.3336": "f Aquila", + "star.starcaller.overworld.3337": "f Ara", + "star.starcaller.overworld.3338": "f Aries", + "star.starcaller.overworld.3339": "f Auriga", + "star.starcaller.overworld.3340": "f Boötes", + "star.starcaller.overworld.3341": "f Caelum", + "star.starcaller.overworld.3342": "f Camelopardalis", + "star.starcaller.overworld.3343": "f Cancer", + "star.starcaller.overworld.3344": "f Canes Venatici", + "star.starcaller.overworld.3345": "f Canis Major", + "star.starcaller.overworld.3346": "f Canis Minor", + "star.starcaller.overworld.3347": "f Capricornus", + "star.starcaller.overworld.3348": "f Carina", + "star.starcaller.overworld.3349": "f Cassiopeia", + "star.starcaller.overworld.3350": "f Centaurus", + "star.starcaller.overworld.3351": "f Cepheus", + "star.starcaller.overworld.3352": "f Cetus", + "star.starcaller.overworld.3353": "f Chamaeleon", + "star.starcaller.overworld.3354": "f Circinus", + "star.starcaller.overworld.3355": "f Columba", + "star.starcaller.overworld.3356": "f Coma Berenices", + "star.starcaller.overworld.3357": "f Corona Australis", + "star.starcaller.overworld.3358": "f Corona Borealis", + "star.starcaller.overworld.3359": "f Corvus", + "star.starcaller.overworld.3360": "f Crater", + "star.starcaller.overworld.3361": "f Crux", + "star.starcaller.overworld.3362": "f Cygnus", + "star.starcaller.overworld.3363": "f Delphinus", + "star.starcaller.overworld.3364": "f Dorado", + "star.starcaller.overworld.3365": "f Draco", + "star.starcaller.overworld.3366": "f Equuleus", + "star.starcaller.overworld.3367": "f Eridanus", + "star.starcaller.overworld.3368": "f Fornax", + "star.starcaller.overworld.3369": "f Gemini", + "star.starcaller.overworld.3370": "f Grus", + "star.starcaller.overworld.3371": "f Hercules", + "star.starcaller.overworld.3372": "f Horologium", + "star.starcaller.overworld.3373": "f Hydra", + "star.starcaller.overworld.3374": "f Hydrus", + "star.starcaller.overworld.3375": "f Indus", + "star.starcaller.overworld.3376": "f Lacerta", + "star.starcaller.overworld.3377": "f Leo", + "star.starcaller.overworld.3378": "f Leo Minor", + "star.starcaller.overworld.3379": "f Lepus", + "star.starcaller.overworld.3380": "f Libra", + "star.starcaller.overworld.3381": "f Lupus", + "star.starcaller.overworld.3382": "f Lynx", + "star.starcaller.overworld.3383": "f Lyra", + "star.starcaller.overworld.3384": "f Mensa", + "star.starcaller.overworld.3385": "f Microscopium", + "star.starcaller.overworld.3386": "f Monoceros", + "star.starcaller.overworld.3387": "f Musca", + "star.starcaller.overworld.3388": "f Norma", + "star.starcaller.overworld.3389": "f Octans", + "star.starcaller.overworld.3390": "f Ophiuchus", + "star.starcaller.overworld.3391": "f Orion", + "star.starcaller.overworld.3392": "f Pavo", + "star.starcaller.overworld.3393": "f Pegasus", + "star.starcaller.overworld.3394": "f Perseus", + "star.starcaller.overworld.3395": "f Phoenix", + "star.starcaller.overworld.3396": "f Pictor", + "star.starcaller.overworld.3397": "f Pisces", + "star.starcaller.overworld.3398": "f Piscis Austrinus", + "star.starcaller.overworld.3399": "f Puppis", + "star.starcaller.overworld.3400": "f Pyxis", + "star.starcaller.overworld.3401": "f Reticulum", + "star.starcaller.overworld.3402": "f Sagitta", + "star.starcaller.overworld.3403": "f Sagittarius", + "star.starcaller.overworld.3404": "f Scorpius", + "star.starcaller.overworld.3405": "f Sculptor", + "star.starcaller.overworld.3406": "f Scutum", + "star.starcaller.overworld.3407": "f Serpens", + "star.starcaller.overworld.3408": "f Sextans", + "star.starcaller.overworld.3409": "f Taurus", + "star.starcaller.overworld.3410": "f Telescopium", + "star.starcaller.overworld.3411": "f Triangulum", + "star.starcaller.overworld.3412": "f Triangulum Australe", + "star.starcaller.overworld.3413": "f Tucana", + "star.starcaller.overworld.3414": "f Ursa Major", + "star.starcaller.overworld.3415": "f Ursa Minor", + "star.starcaller.overworld.3416": "f Vela", + "star.starcaller.overworld.3417": "f Virgo", + "star.starcaller.overworld.3418": "f Volans", + "star.starcaller.overworld.3419": "f Vulpecula", + "star.starcaller.overworld.3420": "g Andromeda", + "star.starcaller.overworld.3421": "g Antlia", + "star.starcaller.overworld.3422": "g Apus", + "star.starcaller.overworld.3423": "g Aquarius", + "star.starcaller.overworld.3424": "g Aquila", + "star.starcaller.overworld.3425": "g Ara", + "star.starcaller.overworld.3426": "g Aries", + "star.starcaller.overworld.3427": "g Auriga", + "star.starcaller.overworld.3428": "g Boötes", + "star.starcaller.overworld.3429": "g Caelum", + "star.starcaller.overworld.3430": "g Camelopardalis", + "star.starcaller.overworld.3431": "g Cancer", + "star.starcaller.overworld.3432": "g Canes Venatici", + "star.starcaller.overworld.3433": "g Canis Major", + "star.starcaller.overworld.3434": "g Canis Minor", + "star.starcaller.overworld.3435": "g Capricornus", + "star.starcaller.overworld.3436": "g Carina", + "star.starcaller.overworld.3437": "g Cassiopeia", + "star.starcaller.overworld.3438": "g Centaurus", + "star.starcaller.overworld.3439": "g Cepheus", + "star.starcaller.overworld.3440": "g Cetus", + "star.starcaller.overworld.3441": "g Chamaeleon", + "star.starcaller.overworld.3442": "g Circinus", + "star.starcaller.overworld.3443": "g Columba", + "star.starcaller.overworld.3444": "g Coma Berenices", + "star.starcaller.overworld.3445": "g Corona Australis", + "star.starcaller.overworld.3446": "g Corona Borealis", + "star.starcaller.overworld.3447": "g Corvus", + "star.starcaller.overworld.3448": "g Crater", + "star.starcaller.overworld.3449": "g Crux", + "star.starcaller.overworld.3450": "g Cygnus", + "star.starcaller.overworld.3451": "g Delphinus", + "star.starcaller.overworld.3452": "g Dorado", + "star.starcaller.overworld.3453": "g Draco", + "star.starcaller.overworld.3454": "g Equuleus", + "star.starcaller.overworld.3455": "g Eridanus", + "star.starcaller.overworld.3456": "g Fornax", + "star.starcaller.overworld.3457": "g Gemini", + "star.starcaller.overworld.3458": "g Grus", + "star.starcaller.overworld.3459": "g Hercules", + "star.starcaller.overworld.3460": "g Horologium", + "star.starcaller.overworld.3461": "g Hydra", + "star.starcaller.overworld.3462": "g Hydrus", + "star.starcaller.overworld.3463": "g Indus", + "star.starcaller.overworld.3464": "g Lacerta", + "star.starcaller.overworld.3465": "g Leo", + "star.starcaller.overworld.3466": "g Leo Minor", + "star.starcaller.overworld.3467": "g Lepus", + "star.starcaller.overworld.3468": "g Libra", + "star.starcaller.overworld.3469": "g Lupus", + "star.starcaller.overworld.3470": "g Lynx", + "star.starcaller.overworld.3471": "g Lyra", + "star.starcaller.overworld.3472": "g Mensa", + "star.starcaller.overworld.3473": "g Microscopium", + "star.starcaller.overworld.3474": "g Monoceros", + "star.starcaller.overworld.3475": "g Musca", + "star.starcaller.overworld.3476": "g Norma", + "star.starcaller.overworld.3477": "g Octans", + "star.starcaller.overworld.3478": "g Ophiuchus", + "star.starcaller.overworld.3479": "g Orion", + "star.starcaller.overworld.3480": "g Pavo", + "star.starcaller.overworld.3481": "g Pegasus", + "star.starcaller.overworld.3482": "g Perseus", + "star.starcaller.overworld.3483": "g Phoenix", + "star.starcaller.overworld.3484": "g Pictor", + "star.starcaller.overworld.3485": "g Pisces", + "star.starcaller.overworld.3486": "g Piscis Austrinus", + "star.starcaller.overworld.3487": "g Puppis", + "star.starcaller.overworld.3488": "g Pyxis", + "star.starcaller.overworld.3489": "g Reticulum", + "star.starcaller.overworld.3490": "g Sagitta", + "star.starcaller.overworld.3491": "g Sagittarius", + "star.starcaller.overworld.3492": "g Scorpius", + "star.starcaller.overworld.3493": "g Sculptor", + "star.starcaller.overworld.3494": "g Scutum", + "star.starcaller.overworld.3495": "g Serpens", + "star.starcaller.overworld.3496": "g Sextans", + "star.starcaller.overworld.3497": "g Taurus", + "star.starcaller.overworld.3498": "g Telescopium", + "star.starcaller.overworld.3499": "g Triangulum", + "star.starcaller.overworld.3500": "g Triangulum Australe", + "star.starcaller.overworld.3501": "g Tucana", + "star.starcaller.overworld.3502": "g Ursa Major", + "star.starcaller.overworld.3503": "g Ursa Minor", + "star.starcaller.overworld.3504": "g Vela", + "star.starcaller.overworld.3505": "g Virgo", + "star.starcaller.overworld.3506": "g Volans", + "star.starcaller.overworld.3507": "g Vulpecula", + "star.starcaller.overworld.3508": "h Andromeda", + "star.starcaller.overworld.3509": "h Antlia", + "star.starcaller.overworld.3510": "h Apus", + "star.starcaller.overworld.3511": "h Aquarius", + "star.starcaller.overworld.3512": "h Aquila", + "star.starcaller.overworld.3513": "h Ara", + "star.starcaller.overworld.3514": "h Aries", + "star.starcaller.overworld.3515": "h Auriga", + "star.starcaller.overworld.3516": "h Boötes", + "star.starcaller.overworld.3517": "h Caelum", + "star.starcaller.overworld.3518": "h Camelopardalis", + "star.starcaller.overworld.3519": "h Cancer", + "star.starcaller.overworld.3520": "h Canes Venatici", + "star.starcaller.overworld.3521": "h Canis Major", + "star.starcaller.overworld.3522": "h Canis Minor", + "star.starcaller.overworld.3523": "h Capricornus", + "star.starcaller.overworld.3524": "h Carina", + "star.starcaller.overworld.3525": "h Cassiopeia", + "star.starcaller.overworld.3526": "h Centaurus", + "star.starcaller.overworld.3527": "h Cepheus", + "star.starcaller.overworld.3528": "h Cetus", + "star.starcaller.overworld.3529": "h Chamaeleon", + "star.starcaller.overworld.3530": "h Circinus", + "star.starcaller.overworld.3531": "h Columba", + "star.starcaller.overworld.3532": "h Coma Berenices", + "star.starcaller.overworld.3533": "h Corona Australis", + "star.starcaller.overworld.3534": "h Corona Borealis", + "star.starcaller.overworld.3535": "h Corvus", + "star.starcaller.overworld.3536": "h Crater", + "star.starcaller.overworld.3537": "h Crux", + "star.starcaller.overworld.3538": "h Cygnus", + "star.starcaller.overworld.3539": "h Delphinus", + "star.starcaller.overworld.3540": "h Dorado", + "star.starcaller.overworld.3541": "h Draco", + "star.starcaller.overworld.3542": "h Equuleus", + "star.starcaller.overworld.3543": "h Eridanus", + "star.starcaller.overworld.3544": "h Fornax", + "star.starcaller.overworld.3545": "h Gemini", + "star.starcaller.overworld.3546": "h Grus", + "star.starcaller.overworld.3547": "h Hercules", + "star.starcaller.overworld.3548": "h Horologium", + "star.starcaller.overworld.3549": "h Hydra", + "star.starcaller.overworld.3550": "h Hydrus", + "star.starcaller.overworld.3551": "h Indus", + "star.starcaller.overworld.3552": "h Lacerta", + "star.starcaller.overworld.3553": "h Leo", + "star.starcaller.overworld.3554": "h Leo Minor", + "star.starcaller.overworld.3555": "h Lepus", + "star.starcaller.overworld.3556": "h Libra", + "star.starcaller.overworld.3557": "h Lupus", + "star.starcaller.overworld.3558": "h Lynx", + "star.starcaller.overworld.3559": "h Lyra", + "star.starcaller.overworld.3560": "h Mensa", + "star.starcaller.overworld.3561": "h Microscopium", + "star.starcaller.overworld.3562": "h Monoceros", + "star.starcaller.overworld.3563": "h Musca", + "star.starcaller.overworld.3564": "h Norma", + "star.starcaller.overworld.3565": "h Octans", + "star.starcaller.overworld.3566": "h Ophiuchus", + "star.starcaller.overworld.3567": "h Orion", + "star.starcaller.overworld.3568": "h Pavo", + "star.starcaller.overworld.3569": "h Pegasus", + "star.starcaller.overworld.3570": "h Perseus", + "star.starcaller.overworld.3571": "h Phoenix", + "star.starcaller.overworld.3572": "h Pictor", + "star.starcaller.overworld.3573": "h Pisces", + "star.starcaller.overworld.3574": "h Piscis Austrinus", + "star.starcaller.overworld.3575": "h Puppis", + "star.starcaller.overworld.3576": "h Pyxis", + "star.starcaller.overworld.3577": "h Reticulum", + "star.starcaller.overworld.3578": "h Sagitta", + "star.starcaller.overworld.3579": "h Sagittarius", + "star.starcaller.overworld.3580": "h Scorpius", + "star.starcaller.overworld.3581": "h Sculptor", + "star.starcaller.overworld.3582": "h Scutum", + "star.starcaller.overworld.3583": "h Serpens", + "star.starcaller.overworld.3584": "h Sextans", + "star.starcaller.overworld.3585": "h Taurus", + "star.starcaller.overworld.3586": "h Telescopium", + "star.starcaller.overworld.3587": "h Triangulum", + "star.starcaller.overworld.3588": "h Triangulum Australe", + "star.starcaller.overworld.3589": "h Tucana", + "star.starcaller.overworld.3590": "h Ursa Major", + "star.starcaller.overworld.3591": "h Ursa Minor", + "star.starcaller.overworld.3592": "h Vela", + "star.starcaller.overworld.3593": "h Virgo", + "star.starcaller.overworld.3594": "h Volans", + "star.starcaller.overworld.3595": "h Vulpecula", + "star.starcaller.overworld.3596": "i Andromeda", + "star.starcaller.overworld.3597": "i Antlia", + "star.starcaller.overworld.3598": "i Apus", + "star.starcaller.overworld.3599": "i Aquarius", + "star.starcaller.overworld.3600": "i Aquila", + "star.starcaller.overworld.3601": "i Ara", + "star.starcaller.overworld.3602": "i Aries", + "star.starcaller.overworld.3603": "i Auriga", + "star.starcaller.overworld.3604": "i Boötes", + "star.starcaller.overworld.3605": "i Caelum", + "star.starcaller.overworld.3606": "i Camelopardalis", + "star.starcaller.overworld.3607": "i Cancer", + "star.starcaller.overworld.3608": "i Canes Venatici", + "star.starcaller.overworld.3609": "i Canis Major", + "star.starcaller.overworld.3610": "i Canis Minor", + "star.starcaller.overworld.3611": "i Capricornus", + "star.starcaller.overworld.3612": "i Carina", + "star.starcaller.overworld.3613": "i Cassiopeia", + "star.starcaller.overworld.3614": "i Centaurus", + "star.starcaller.overworld.3615": "i Cepheus", + "star.starcaller.overworld.3616": "i Cetus", + "star.starcaller.overworld.3617": "i Chamaeleon", + "star.starcaller.overworld.3618": "i Circinus", + "star.starcaller.overworld.3619": "i Columba", + "star.starcaller.overworld.3620": "i Coma Berenices", + "star.starcaller.overworld.3621": "i Corona Australis", + "star.starcaller.overworld.3622": "i Corona Borealis", + "star.starcaller.overworld.3623": "i Corvus", + "star.starcaller.overworld.3624": "i Crater", + "star.starcaller.overworld.3625": "i Crux", + "star.starcaller.overworld.3626": "i Cygnus", + "star.starcaller.overworld.3627": "i Delphinus", + "star.starcaller.overworld.3628": "i Dorado", + "star.starcaller.overworld.3629": "i Draco", + "star.starcaller.overworld.3630": "i Equuleus", + "star.starcaller.overworld.3631": "i Eridanus", + "star.starcaller.overworld.3632": "i Fornax", + "star.starcaller.overworld.3633": "i Gemini", + "star.starcaller.overworld.3634": "i Grus", + "star.starcaller.overworld.3635": "i Hercules", + "star.starcaller.overworld.3636": "i Horologium", + "star.starcaller.overworld.3637": "i Hydra", + "star.starcaller.overworld.3638": "i Hydrus", + "star.starcaller.overworld.3639": "i Indus", + "star.starcaller.overworld.3640": "i Lacerta", + "star.starcaller.overworld.3641": "i Leo", + "star.starcaller.overworld.3642": "i Leo Minor", + "star.starcaller.overworld.3643": "i Lepus", + "star.starcaller.overworld.3644": "i Libra", + "star.starcaller.overworld.3645": "i Lupus", + "star.starcaller.overworld.3646": "i Lynx", + "star.starcaller.overworld.3647": "i Lyra", + "star.starcaller.overworld.3648": "i Mensa", + "star.starcaller.overworld.3649": "i Microscopium", + "star.starcaller.overworld.3650": "i Monoceros", + "star.starcaller.overworld.3651": "i Musca", + "star.starcaller.overworld.3652": "i Norma", + "star.starcaller.overworld.3653": "i Octans", + "star.starcaller.overworld.3654": "i Ophiuchus", + "star.starcaller.overworld.3655": "i Orion", + "star.starcaller.overworld.3656": "i Pavo", + "star.starcaller.overworld.3657": "i Pegasus", + "star.starcaller.overworld.3658": "i Perseus", + "star.starcaller.overworld.3659": "i Phoenix", + "star.starcaller.overworld.3660": "i Pictor", + "star.starcaller.overworld.3661": "i Pisces", + "star.starcaller.overworld.3662": "i Piscis Austrinus", + "star.starcaller.overworld.3663": "i Puppis", + "star.starcaller.overworld.3664": "i Pyxis", + "star.starcaller.overworld.3665": "i Reticulum", + "star.starcaller.overworld.3666": "i Sagitta", + "star.starcaller.overworld.3667": "i Sagittarius", + "star.starcaller.overworld.3668": "i Scorpius", + "star.starcaller.overworld.3669": "i Sculptor", + "star.starcaller.overworld.3670": "i Scutum", + "star.starcaller.overworld.3671": "i Serpens", + "star.starcaller.overworld.3672": "i Sextans", + "star.starcaller.overworld.3673": "i Taurus", + "star.starcaller.overworld.3674": "i Telescopium", + "star.starcaller.overworld.3675": "i Triangulum", + "star.starcaller.overworld.3676": "i Triangulum Australe", + "star.starcaller.overworld.3677": "i Tucana", + "star.starcaller.overworld.3678": "i Ursa Major", + "star.starcaller.overworld.3679": "i Ursa Minor", + "star.starcaller.overworld.3680": "i Vela", + "star.starcaller.overworld.3681": "i Virgo", + "star.starcaller.overworld.3682": "i Volans", + "star.starcaller.overworld.3683": "i Vulpecula", + "star.starcaller.overworld.3684": "j Andromeda", + "star.starcaller.overworld.3685": "j Antlia", + "star.starcaller.overworld.3686": "j Apus", + "star.starcaller.overworld.3687": "j Aquarius", + "star.starcaller.overworld.3688": "j Aquila", + "star.starcaller.overworld.3689": "j Ara", + "star.starcaller.overworld.3690": "j Aries", + "star.starcaller.overworld.3691": "j Auriga", + "star.starcaller.overworld.3692": "j Boötes", + "star.starcaller.overworld.3693": "j Caelum", + "star.starcaller.overworld.3694": "j Camelopardalis", + "star.starcaller.overworld.3695": "j Cancer", + "star.starcaller.overworld.3696": "j Canes Venatici", + "star.starcaller.overworld.3697": "j Canis Major", + "star.starcaller.overworld.3698": "j Canis Minor", + "star.starcaller.overworld.3699": "j Capricornus", + "star.starcaller.overworld.3700": "j Carina", + "star.starcaller.overworld.3701": "j Cassiopeia", + "star.starcaller.overworld.3702": "j Centaurus", + "star.starcaller.overworld.3703": "j Cepheus", + "star.starcaller.overworld.3704": "j Cetus", + "star.starcaller.overworld.3705": "j Chamaeleon", + "star.starcaller.overworld.3706": "j Circinus", + "star.starcaller.overworld.3707": "j Columba", + "star.starcaller.overworld.3708": "j Coma Berenices", + "star.starcaller.overworld.3709": "j Corona Australis", + "star.starcaller.overworld.3710": "j Corona Borealis", + "star.starcaller.overworld.3711": "j Corvus", + "star.starcaller.overworld.3712": "j Crater", + "star.starcaller.overworld.3713": "j Crux", + "star.starcaller.overworld.3714": "j Cygnus", + "star.starcaller.overworld.3715": "j Delphinus", + "star.starcaller.overworld.3716": "j Dorado", + "star.starcaller.overworld.3717": "j Draco", + "star.starcaller.overworld.3718": "j Equuleus", + "star.starcaller.overworld.3719": "j Eridanus", + "star.starcaller.overworld.3720": "j Fornax", + "star.starcaller.overworld.3721": "j Gemini", + "star.starcaller.overworld.3722": "j Grus", + "star.starcaller.overworld.3723": "j Hercules", + "star.starcaller.overworld.3724": "j Horologium", + "star.starcaller.overworld.3725": "j Hydra", + "star.starcaller.overworld.3726": "j Hydrus", + "star.starcaller.overworld.3727": "j Indus", + "star.starcaller.overworld.3728": "j Lacerta", + "star.starcaller.overworld.3729": "j Leo", + "star.starcaller.overworld.3730": "j Leo Minor", + "star.starcaller.overworld.3731": "j Lepus", + "star.starcaller.overworld.3732": "j Libra", + "star.starcaller.overworld.3733": "j Lupus", + "star.starcaller.overworld.3734": "j Lynx", + "star.starcaller.overworld.3735": "j Lyra", + "star.starcaller.overworld.3736": "j Mensa", + "star.starcaller.overworld.3737": "j Microscopium", + "star.starcaller.overworld.3738": "j Monoceros", + "star.starcaller.overworld.3739": "j Musca", + "star.starcaller.overworld.3740": "j Norma", + "star.starcaller.overworld.3741": "j Octans", + "star.starcaller.overworld.3742": "j Ophiuchus", + "star.starcaller.overworld.3743": "j Orion", + "star.starcaller.overworld.3744": "j Pavo", + "star.starcaller.overworld.3745": "j Pegasus", + "star.starcaller.overworld.3746": "j Perseus", + "star.starcaller.overworld.3747": "j Phoenix", + "star.starcaller.overworld.3748": "j Pictor", + "star.starcaller.overworld.3749": "j Pisces", + "star.starcaller.overworld.3750": "j Piscis Austrinus", + "star.starcaller.overworld.3751": "j Puppis", + "star.starcaller.overworld.3752": "j Pyxis", + "star.starcaller.overworld.3753": "j Reticulum", + "star.starcaller.overworld.3754": "j Sagitta", + "star.starcaller.overworld.3755": "j Sagittarius", + "star.starcaller.overworld.3756": "j Scorpius", + "star.starcaller.overworld.3757": "j Sculptor", + "star.starcaller.overworld.3758": "j Scutum", + "star.starcaller.overworld.3759": "j Serpens", + "star.starcaller.overworld.3760": "j Sextans", + "star.starcaller.overworld.3761": "j Taurus", + "star.starcaller.overworld.3762": "j Telescopium", + "star.starcaller.overworld.3763": "j Triangulum", + "star.starcaller.overworld.3764": "j Triangulum Australe", + "star.starcaller.overworld.3765": "j Tucana", + "star.starcaller.overworld.3766": "j Ursa Major", + "star.starcaller.overworld.3767": "j Ursa Minor", + "star.starcaller.overworld.3768": "j Vela", + "star.starcaller.overworld.3769": "j Virgo", + "star.starcaller.overworld.3770": "j Volans", + "star.starcaller.overworld.3771": "j Vulpecula", + "star.starcaller.overworld.3772": "k Andromeda", + "star.starcaller.overworld.3773": "k Antlia", + "star.starcaller.overworld.3774": "k Apus", + "star.starcaller.overworld.3775": "k Aquarius", + "star.starcaller.overworld.3776": "k Aquila", + "star.starcaller.overworld.3777": "k Ara", + "star.starcaller.overworld.3778": "k Aries", + "star.starcaller.overworld.3779": "k Auriga", + "star.starcaller.overworld.3780": "k Boötes", + "star.starcaller.overworld.3781": "k Caelum", + "star.starcaller.overworld.3782": "k Camelopardalis", + "star.starcaller.overworld.3783": "k Cancer", + "star.starcaller.overworld.3784": "k Canes Venatici", + "star.starcaller.overworld.3785": "k Canis Major", + "star.starcaller.overworld.3786": "k Canis Minor", + "star.starcaller.overworld.3787": "k Capricornus", + "star.starcaller.overworld.3788": "k Carina", + "star.starcaller.overworld.3789": "k Cassiopeia", + "star.starcaller.overworld.3790": "k Centaurus", + "star.starcaller.overworld.3791": "k Cepheus", + "star.starcaller.overworld.3792": "k Cetus", + "star.starcaller.overworld.3793": "k Chamaeleon", + "star.starcaller.overworld.3794": "k Circinus", + "star.starcaller.overworld.3795": "k Columba", + "star.starcaller.overworld.3796": "k Coma Berenices", + "star.starcaller.overworld.3797": "k Corona Australis", + "star.starcaller.overworld.3798": "k Corona Borealis", + "star.starcaller.overworld.3799": "k Corvus", + "star.starcaller.overworld.3800": "k Crater", + "star.starcaller.overworld.3801": "k Crux", + "star.starcaller.overworld.3802": "k Cygnus", + "star.starcaller.overworld.3803": "k Delphinus", + "star.starcaller.overworld.3804": "k Dorado", + "star.starcaller.overworld.3805": "k Draco", + "star.starcaller.overworld.3806": "k Equuleus", + "star.starcaller.overworld.3807": "k Eridanus", + "star.starcaller.overworld.3808": "k Fornax", + "star.starcaller.overworld.3809": "k Gemini", + "star.starcaller.overworld.3810": "k Grus", + "star.starcaller.overworld.3811": "k Hercules", + "star.starcaller.overworld.3812": "k Horologium", + "star.starcaller.overworld.3813": "k Hydra", + "star.starcaller.overworld.3814": "k Hydrus", + "star.starcaller.overworld.3815": "k Indus", + "star.starcaller.overworld.3816": "k Lacerta", + "star.starcaller.overworld.3817": "k Leo", + "star.starcaller.overworld.3818": "k Leo Minor", + "star.starcaller.overworld.3819": "k Lepus", + "star.starcaller.overworld.3820": "k Libra", + "star.starcaller.overworld.3821": "k Lupus", + "star.starcaller.overworld.3822": "k Lynx", + "star.starcaller.overworld.3823": "k Lyra", + "star.starcaller.overworld.3824": "k Mensa", + "star.starcaller.overworld.3825": "k Microscopium", + "star.starcaller.overworld.3826": "k Monoceros", + "star.starcaller.overworld.3827": "k Musca", + "star.starcaller.overworld.3828": "k Norma", + "star.starcaller.overworld.3829": "k Octans", + "star.starcaller.overworld.3830": "k Ophiuchus", + "star.starcaller.overworld.3831": "k Orion", + "star.starcaller.overworld.3832": "k Pavo", + "star.starcaller.overworld.3833": "k Pegasus", + "star.starcaller.overworld.3834": "k Perseus", + "star.starcaller.overworld.3835": "k Phoenix", + "star.starcaller.overworld.3836": "k Pictor", + "star.starcaller.overworld.3837": "k Pisces", + "star.starcaller.overworld.3838": "k Piscis Austrinus", + "star.starcaller.overworld.3839": "k Puppis", + "star.starcaller.overworld.3840": "k Pyxis", + "star.starcaller.overworld.3841": "k Reticulum", + "star.starcaller.overworld.3842": "k Sagitta", + "star.starcaller.overworld.3843": "k Sagittarius", + "star.starcaller.overworld.3844": "k Scorpius", + "star.starcaller.overworld.3845": "k Sculptor", + "star.starcaller.overworld.3846": "k Scutum", + "star.starcaller.overworld.3847": "k Serpens", + "star.starcaller.overworld.3848": "k Sextans", + "star.starcaller.overworld.3849": "k Taurus", + "star.starcaller.overworld.3850": "k Telescopium", + "star.starcaller.overworld.3851": "k Triangulum", + "star.starcaller.overworld.3852": "k Triangulum Australe", + "star.starcaller.overworld.3853": "k Tucana", + "star.starcaller.overworld.3854": "k Ursa Major", + "star.starcaller.overworld.3855": "k Ursa Minor", + "star.starcaller.overworld.3856": "k Vela", + "star.starcaller.overworld.3857": "k Virgo", + "star.starcaller.overworld.3858": "k Volans", + "star.starcaller.overworld.3859": "k Vulpecula", + "star.starcaller.overworld.3860": "l Andromeda", + "star.starcaller.overworld.3861": "l Antlia", + "star.starcaller.overworld.3862": "l Apus", + "star.starcaller.overworld.3863": "l Aquarius", + "star.starcaller.overworld.3864": "l Aquila", + "star.starcaller.overworld.3865": "l Ara", + "star.starcaller.overworld.3866": "l Aries", + "star.starcaller.overworld.3867": "l Auriga", + "star.starcaller.overworld.3868": "l Boötes", + "star.starcaller.overworld.3869": "l Caelum", + "star.starcaller.overworld.3870": "l Camelopardalis", + "star.starcaller.overworld.3871": "l Cancer", + "star.starcaller.overworld.3872": "l Canes Venatici", + "star.starcaller.overworld.3873": "l Canis Major", + "star.starcaller.overworld.3874": "l Canis Minor", + "star.starcaller.overworld.3875": "l Capricornus", + "star.starcaller.overworld.3876": "l Carina", + "star.starcaller.overworld.3877": "l Cassiopeia", + "star.starcaller.overworld.3878": "l Centaurus", + "star.starcaller.overworld.3879": "l Cepheus", + "star.starcaller.overworld.3880": "l Cetus", + "star.starcaller.overworld.3881": "l Chamaeleon", + "star.starcaller.overworld.3882": "l Circinus", + "star.starcaller.overworld.3883": "l Columba", + "star.starcaller.overworld.3884": "l Coma Berenices", + "star.starcaller.overworld.3885": "l Corona Australis", + "star.starcaller.overworld.3886": "l Corona Borealis", + "star.starcaller.overworld.3887": "l Corvus", + "star.starcaller.overworld.3888": "l Crater", + "star.starcaller.overworld.3889": "l Crux", + "star.starcaller.overworld.3890": "l Cygnus", + "star.starcaller.overworld.3891": "l Delphinus", + "star.starcaller.overworld.3892": "l Dorado", + "star.starcaller.overworld.3893": "l Draco", + "star.starcaller.overworld.3894": "l Equuleus", + "star.starcaller.overworld.3895": "l Eridanus", + "star.starcaller.overworld.3896": "l Fornax", + "star.starcaller.overworld.3897": "l Gemini", + "star.starcaller.overworld.3898": "l Grus", + "star.starcaller.overworld.3899": "l Hercules", + "star.starcaller.overworld.3900": "l Horologium", + "star.starcaller.overworld.3901": "l Hydra", + "star.starcaller.overworld.3902": "l Hydrus", + "star.starcaller.overworld.3903": "l Indus", + "star.starcaller.overworld.3904": "l Lacerta", + "star.starcaller.overworld.3905": "l Leo", + "star.starcaller.overworld.3906": "l Leo Minor", + "star.starcaller.overworld.3907": "l Lepus", + "star.starcaller.overworld.3908": "l Libra", + "star.starcaller.overworld.3909": "l Lupus", + "star.starcaller.overworld.3910": "l Lynx", + "star.starcaller.overworld.3911": "l Lyra", + "star.starcaller.overworld.3912": "l Mensa", + "star.starcaller.overworld.3913": "l Microscopium", + "star.starcaller.overworld.3914": "l Monoceros", + "star.starcaller.overworld.3915": "l Musca", + "star.starcaller.overworld.3916": "l Norma", + "star.starcaller.overworld.3917": "l Octans", + "star.starcaller.overworld.3918": "l Ophiuchus", + "star.starcaller.overworld.3919": "l Orion", + "star.starcaller.overworld.3920": "l Pavo", + "star.starcaller.overworld.3921": "l Pegasus", + "star.starcaller.overworld.3922": "l Perseus", + "star.starcaller.overworld.3923": "l Phoenix", + "star.starcaller.overworld.3924": "l Pictor", + "star.starcaller.overworld.3925": "l Pisces", + "star.starcaller.overworld.3926": "l Piscis Austrinus", + "star.starcaller.overworld.3927": "l Puppis", + "star.starcaller.overworld.3928": "l Pyxis", + "star.starcaller.overworld.3929": "l Reticulum", + "star.starcaller.overworld.3930": "l Sagitta", + "star.starcaller.overworld.3931": "l Sagittarius", + "star.starcaller.overworld.3932": "l Scorpius", + "star.starcaller.overworld.3933": "l Sculptor", + "star.starcaller.overworld.3934": "l Scutum", + "star.starcaller.overworld.3935": "l Serpens", + "star.starcaller.overworld.3936": "l Sextans", + "star.starcaller.overworld.3937": "l Taurus", + "star.starcaller.overworld.3938": "l Telescopium", + "star.starcaller.overworld.3939": "l Triangulum", + "star.starcaller.overworld.3940": "l Triangulum Australe", + "star.starcaller.overworld.3941": "l Tucana", + "star.starcaller.overworld.3942": "l Ursa Major", + "star.starcaller.overworld.3943": "l Ursa Minor", + "star.starcaller.overworld.3944": "l Vela", + "star.starcaller.overworld.3945": "l Virgo", + "star.starcaller.overworld.3946": "l Volans", + "star.starcaller.overworld.3947": "l Vulpecula", + "star.starcaller.overworld.3948": "m Andromeda", + "star.starcaller.overworld.3949": "m Antlia", + "star.starcaller.overworld.3950": "m Apus", + "star.starcaller.overworld.3951": "m Aquarius", + "star.starcaller.overworld.3952": "m Aquila", + "star.starcaller.overworld.3953": "m Ara", + "star.starcaller.overworld.3954": "m Aries", + "star.starcaller.overworld.3955": "m Auriga", + "star.starcaller.overworld.3956": "m Boötes", + "star.starcaller.overworld.3957": "m Caelum", + "star.starcaller.overworld.3958": "m Camelopardalis", + "star.starcaller.overworld.3959": "m Cancer", + "star.starcaller.overworld.3960": "m Canes Venatici", + "star.starcaller.overworld.3961": "m Canis Major", + "star.starcaller.overworld.3962": "m Canis Minor", + "star.starcaller.overworld.3963": "m Capricornus", + "star.starcaller.overworld.3964": "m Carina", + "star.starcaller.overworld.3965": "m Cassiopeia", + "star.starcaller.overworld.3966": "m Centaurus", + "star.starcaller.overworld.3967": "m Cepheus", + "star.starcaller.overworld.3968": "m Cetus", + "star.starcaller.overworld.3969": "m Chamaeleon", + "star.starcaller.overworld.3970": "m Circinus", + "star.starcaller.overworld.3971": "m Columba", + "star.starcaller.overworld.3972": "m Coma Berenices", + "star.starcaller.overworld.3973": "m Corona Australis", + "star.starcaller.overworld.3974": "m Corona Borealis", + "star.starcaller.overworld.3975": "m Corvus", + "star.starcaller.overworld.3976": "m Crater", + "star.starcaller.overworld.3977": "m Crux", + "star.starcaller.overworld.3978": "m Cygnus", + "star.starcaller.overworld.3979": "m Delphinus", + "star.starcaller.overworld.3980": "m Dorado", + "star.starcaller.overworld.3981": "m Draco", + "star.starcaller.overworld.3982": "m Equuleus", + "star.starcaller.overworld.3983": "m Eridanus", + "star.starcaller.overworld.3984": "m Fornax", + "star.starcaller.overworld.3985": "m Gemini", + "star.starcaller.overworld.3986": "m Grus", + "star.starcaller.overworld.3987": "m Hercules", + "star.starcaller.overworld.3988": "m Horologium", + "star.starcaller.overworld.3989": "m Hydra", + "star.starcaller.overworld.3990": "m Hydrus", + "star.starcaller.overworld.3991": "m Indus", + "star.starcaller.overworld.3992": "m Lacerta", + "star.starcaller.overworld.3993": "m Leo", + "star.starcaller.overworld.3994": "m Leo Minor", + "star.starcaller.overworld.3995": "m Lepus", + "star.starcaller.overworld.3996": "m Libra", + "star.starcaller.overworld.3997": "m Lupus", + "star.starcaller.overworld.3998": "m Lynx", + "star.starcaller.overworld.3999": "m Lyra", + "star.starcaller.overworld.4000": "m Mensa", + "star.starcaller.overworld.4001": "m Microscopium", + "star.starcaller.overworld.4002": "m Monoceros", + "star.starcaller.overworld.4003": "m Musca", + "star.starcaller.overworld.4004": "m Norma", + "star.starcaller.overworld.4005": "m Octans", + "star.starcaller.overworld.4006": "m Ophiuchus", + "star.starcaller.overworld.4007": "m Orion", + "star.starcaller.overworld.4008": "m Pavo", + "star.starcaller.overworld.4009": "m Pegasus", + "star.starcaller.overworld.4010": "m Perseus", + "star.starcaller.overworld.4011": "m Phoenix", + "star.starcaller.overworld.4012": "m Pictor", + "star.starcaller.overworld.4013": "m Pisces", + "star.starcaller.overworld.4014": "m Piscis Austrinus", + "star.starcaller.overworld.4015": "m Puppis", + "star.starcaller.overworld.4016": "m Pyxis", + "star.starcaller.overworld.4017": "m Reticulum", + "star.starcaller.overworld.4018": "m Sagitta", + "star.starcaller.overworld.4019": "m Sagittarius", + "star.starcaller.overworld.4020": "m Scorpius", + "star.starcaller.overworld.4021": "m Sculptor", + "star.starcaller.overworld.4022": "m Scutum", + "star.starcaller.overworld.4023": "m Serpens", + "star.starcaller.overworld.4024": "m Sextans", + "star.starcaller.overworld.4025": "m Taurus", + "star.starcaller.overworld.4026": "m Telescopium", + "star.starcaller.overworld.4027": "m Triangulum", + "star.starcaller.overworld.4028": "m Triangulum Australe", + "star.starcaller.overworld.4029": "m Tucana", + "star.starcaller.overworld.4030": "m Ursa Major", + "star.starcaller.overworld.4031": "m Ursa Minor", + "star.starcaller.overworld.4032": "m Vela", + "star.starcaller.overworld.4033": "m Virgo", + "star.starcaller.overworld.4034": "m Volans", + "star.starcaller.overworld.4035": "m Vulpecula", + "star.starcaller.overworld.4036": "n Andromeda", + "star.starcaller.overworld.4037": "n Antlia", + "star.starcaller.overworld.4038": "n Apus", + "star.starcaller.overworld.4039": "n Aquarius", + "star.starcaller.overworld.4040": "n Aquila", + "star.starcaller.overworld.4041": "n Ara", + "star.starcaller.overworld.4042": "n Aries", + "star.starcaller.overworld.4043": "n Auriga", + "star.starcaller.overworld.4044": "n Boötes", + "star.starcaller.overworld.4045": "n Caelum", + "star.starcaller.overworld.4046": "n Camelopardalis", + "star.starcaller.overworld.4047": "n Cancer", + "star.starcaller.overworld.4048": "n Canes Venatici", + "star.starcaller.overworld.4049": "n Canis Major", + "star.starcaller.overworld.4050": "n Canis Minor", + "star.starcaller.overworld.4051": "n Capricornus", + "star.starcaller.overworld.4052": "n Carina", + "star.starcaller.overworld.4053": "n Cassiopeia", + "star.starcaller.overworld.4054": "n Centaurus", + "star.starcaller.overworld.4055": "n Cepheus", + "star.starcaller.overworld.4056": "n Cetus", + "star.starcaller.overworld.4057": "n Chamaeleon", + "star.starcaller.overworld.4058": "n Circinus", + "star.starcaller.overworld.4059": "n Columba", + "star.starcaller.overworld.4060": "n Coma Berenices", + "star.starcaller.overworld.4061": "n Corona Australis", + "star.starcaller.overworld.4062": "n Corona Borealis", + "star.starcaller.overworld.4063": "n Corvus", + "star.starcaller.overworld.4064": "n Crater", + "star.starcaller.overworld.4065": "n Crux", + "star.starcaller.overworld.4066": "n Cygnus", + "star.starcaller.overworld.4067": "n Delphinus", + "star.starcaller.overworld.4068": "n Dorado", + "star.starcaller.overworld.4069": "n Draco", + "star.starcaller.overworld.4070": "n Equuleus", + "star.starcaller.overworld.4071": "n Eridanus", + "star.starcaller.overworld.4072": "n Fornax", + "star.starcaller.overworld.4073": "n Gemini", + "star.starcaller.overworld.4074": "n Grus", + "star.starcaller.overworld.4075": "n Hercules", + "star.starcaller.overworld.4076": "n Horologium", + "star.starcaller.overworld.4077": "n Hydra", + "star.starcaller.overworld.4078": "n Hydrus", + "star.starcaller.overworld.4079": "n Indus", + "star.starcaller.overworld.4080": "n Lacerta", + "star.starcaller.overworld.4081": "n Leo", + "star.starcaller.overworld.4082": "n Leo Minor", + "star.starcaller.overworld.4083": "n Lepus", + "star.starcaller.overworld.4084": "n Libra", + "star.starcaller.overworld.4085": "n Lupus", + "star.starcaller.overworld.4086": "n Lynx", + "star.starcaller.overworld.4087": "n Lyra", + "star.starcaller.overworld.4088": "n Mensa", + "star.starcaller.overworld.4089": "n Microscopium", + "star.starcaller.overworld.4090": "n Monoceros", + "star.starcaller.overworld.4091": "n Musca", + "star.starcaller.overworld.4092": "n Norma", + "star.starcaller.overworld.4093": "n Octans", + "star.starcaller.overworld.4094": "n Ophiuchus", + "star.starcaller.overworld.4095": "n Orion", + "star.starcaller.overworld.4096": "n Pavo", + "star.starcaller.overworld.4097": "n Pegasus", + "star.starcaller.overworld.4098": "n Perseus", + "star.starcaller.overworld.4099": "n Phoenix", + "star.starcaller.overworld.4100": "n Pictor", + "star.starcaller.overworld.4101": "n Pisces", + "star.starcaller.overworld.4102": "n Piscis Austrinus", + "star.starcaller.overworld.4103": "n Puppis", + "star.starcaller.overworld.4104": "n Pyxis", + "star.starcaller.overworld.4105": "n Reticulum", + "star.starcaller.overworld.4106": "n Sagitta", + "star.starcaller.overworld.4107": "n Sagittarius", + "star.starcaller.overworld.4108": "n Scorpius", + "star.starcaller.overworld.4109": "n Sculptor", + "star.starcaller.overworld.4110": "n Scutum", + "star.starcaller.overworld.4111": "n Serpens", + "star.starcaller.overworld.4112": "n Sextans", + "star.starcaller.overworld.4113": "n Taurus", + "star.starcaller.overworld.4114": "n Telescopium", + "star.starcaller.overworld.4115": "n Triangulum", + "star.starcaller.overworld.4116": "n Triangulum Australe", + "star.starcaller.overworld.4117": "n Tucana", + "star.starcaller.overworld.4118": "n Ursa Major", + "star.starcaller.overworld.4119": "n Ursa Minor", + "star.starcaller.overworld.4120": "n Vela", + "star.starcaller.overworld.4121": "n Virgo", + "star.starcaller.overworld.4122": "n Volans", + "star.starcaller.overworld.4123": "n Vulpecula", + "star.starcaller.overworld.4124": "o Andromeda", + "star.starcaller.overworld.4125": "o Antlia", + "star.starcaller.overworld.4126": "o Apus", + "star.starcaller.overworld.4127": "o Aquarius", + "star.starcaller.overworld.4128": "o Aquila", + "star.starcaller.overworld.4129": "o Ara", + "star.starcaller.overworld.4130": "o Aries", + "star.starcaller.overworld.4131": "o Auriga", + "star.starcaller.overworld.4132": "o Boötes", + "star.starcaller.overworld.4133": "o Caelum", + "star.starcaller.overworld.4134": "o Camelopardalis", + "star.starcaller.overworld.4135": "o Cancer", + "star.starcaller.overworld.4136": "o Canes Venatici", + "star.starcaller.overworld.4137": "o Canis Major", + "star.starcaller.overworld.4138": "o Canis Minor", + "star.starcaller.overworld.4139": "o Capricornus", + "star.starcaller.overworld.4140": "o Carina", + "star.starcaller.overworld.4141": "o Cassiopeia", + "star.starcaller.overworld.4142": "o Centaurus", + "star.starcaller.overworld.4143": "o Cepheus", + "star.starcaller.overworld.4144": "o Cetus", + "star.starcaller.overworld.4145": "o Chamaeleon", + "star.starcaller.overworld.4146": "o Circinus", + "star.starcaller.overworld.4147": "o Columba", + "star.starcaller.overworld.4148": "o Coma Berenices", + "star.starcaller.overworld.4149": "o Corona Australis", + "star.starcaller.overworld.4150": "o Corona Borealis", + "star.starcaller.overworld.4151": "o Corvus", + "star.starcaller.overworld.4152": "o Crater", + "star.starcaller.overworld.4153": "o Crux", + "star.starcaller.overworld.4154": "o Cygnus", + "star.starcaller.overworld.4155": "o Delphinus", + "star.starcaller.overworld.4156": "o Dorado", + "star.starcaller.overworld.4157": "o Draco", + "star.starcaller.overworld.4158": "o Equuleus", + "star.starcaller.overworld.4159": "o Eridanus", + "star.starcaller.overworld.4160": "o Fornax", + "star.starcaller.overworld.4161": "o Gemini", + "star.starcaller.overworld.4162": "o Grus", + "star.starcaller.overworld.4163": "o Hercules", + "star.starcaller.overworld.4164": "o Horologium", + "star.starcaller.overworld.4165": "o Hydra", + "star.starcaller.overworld.4166": "o Hydrus", + "star.starcaller.overworld.4167": "o Indus", + "star.starcaller.overworld.4168": "o Lacerta", + "star.starcaller.overworld.4169": "o Leo", + "star.starcaller.overworld.4170": "o Leo Minor", + "star.starcaller.overworld.4171": "o Lepus", + "star.starcaller.overworld.4172": "o Libra", + "star.starcaller.overworld.4173": "o Lupus", + "star.starcaller.overworld.4174": "o Lynx", + "star.starcaller.overworld.4175": "o Lyra", + "star.starcaller.overworld.4176": "o Mensa", + "star.starcaller.overworld.4177": "o Microscopium", + "star.starcaller.overworld.4178": "o Monoceros", + "star.starcaller.overworld.4179": "o Musca", + "star.starcaller.overworld.4180": "o Norma", + "star.starcaller.overworld.4181": "o Octans", + "star.starcaller.overworld.4182": "o Ophiuchus", + "star.starcaller.overworld.4183": "o Orion", + "star.starcaller.overworld.4184": "o Pavo", + "star.starcaller.overworld.4185": "o Pegasus", + "star.starcaller.overworld.4186": "o Perseus", + "star.starcaller.overworld.4187": "o Phoenix", + "star.starcaller.overworld.4188": "o Pictor", + "star.starcaller.overworld.4189": "o Pisces", + "star.starcaller.overworld.4190": "o Piscis Austrinus", + "star.starcaller.overworld.4191": "o Puppis", + "star.starcaller.overworld.4192": "o Pyxis", + "star.starcaller.overworld.4193": "o Reticulum", + "star.starcaller.overworld.4194": "o Sagitta", + "star.starcaller.overworld.4195": "o Sagittarius", + "star.starcaller.overworld.4196": "o Scorpius", + "star.starcaller.overworld.4197": "o Sculptor", + "star.starcaller.overworld.4198": "o Scutum", + "star.starcaller.overworld.4199": "o Serpens", + "star.starcaller.overworld.4200": "o Sextans", + "star.starcaller.overworld.4201": "o Taurus", + "star.starcaller.overworld.4202": "o Telescopium", + "star.starcaller.overworld.4203": "o Triangulum", + "star.starcaller.overworld.4204": "o Triangulum Australe", + "star.starcaller.overworld.4205": "o Tucana", + "star.starcaller.overworld.4206": "o Ursa Major", + "star.starcaller.overworld.4207": "o Ursa Minor", + "star.starcaller.overworld.4208": "o Vela", + "star.starcaller.overworld.4209": "o Virgo", + "star.starcaller.overworld.4210": "o Volans", + "star.starcaller.overworld.4211": "o Vulpecula", + "star.starcaller.overworld.4212": "p Andromeda", + "star.starcaller.overworld.4213": "p Antlia", + "star.starcaller.overworld.4214": "p Apus", + "star.starcaller.overworld.4215": "p Aquarius", + "star.starcaller.overworld.4216": "p Aquila", + "star.starcaller.overworld.4217": "p Ara", + "star.starcaller.overworld.4218": "p Aries", + "star.starcaller.overworld.4219": "p Auriga", + "star.starcaller.overworld.4220": "p Boötes", + "star.starcaller.overworld.4221": "p Caelum", + "star.starcaller.overworld.4222": "p Camelopardalis", + "star.starcaller.overworld.4223": "p Cancer", + "star.starcaller.overworld.4224": "p Canes Venatici", + "star.starcaller.overworld.4225": "p Canis Major", + "star.starcaller.overworld.4226": "p Canis Minor", + "star.starcaller.overworld.4227": "p Capricornus", + "star.starcaller.overworld.4228": "p Carina", + "star.starcaller.overworld.4229": "p Cassiopeia", + "star.starcaller.overworld.4230": "p Centaurus", + "star.starcaller.overworld.4231": "p Cepheus", + "star.starcaller.overworld.4232": "p Cetus", + "star.starcaller.overworld.4233": "p Chamaeleon", + "star.starcaller.overworld.4234": "p Circinus", + "star.starcaller.overworld.4235": "p Columba", + "star.starcaller.overworld.4236": "p Coma Berenices", + "star.starcaller.overworld.4237": "p Corona Australis", + "star.starcaller.overworld.4238": "p Corona Borealis", + "star.starcaller.overworld.4239": "p Corvus", + "star.starcaller.overworld.4240": "p Crater", + "star.starcaller.overworld.4241": "p Crux", + "star.starcaller.overworld.4242": "p Cygnus", + "star.starcaller.overworld.4243": "p Delphinus", + "star.starcaller.overworld.4244": "p Dorado", + "star.starcaller.overworld.4245": "p Draco", + "star.starcaller.overworld.4246": "p Equuleus", + "star.starcaller.overworld.4247": "p Eridanus", + "star.starcaller.overworld.4248": "p Fornax", + "star.starcaller.overworld.4249": "p Gemini", + "star.starcaller.overworld.4250": "p Grus", + "star.starcaller.overworld.4251": "p Hercules", + "star.starcaller.overworld.4252": "p Horologium", + "star.starcaller.overworld.4253": "p Hydra", + "star.starcaller.overworld.4254": "p Hydrus", + "star.starcaller.overworld.4255": "p Indus", + "star.starcaller.overworld.4256": "p Lacerta", + "star.starcaller.overworld.4257": "p Leo", + "star.starcaller.overworld.4258": "p Leo Minor", + "star.starcaller.overworld.4259": "p Lepus", + "star.starcaller.overworld.4260": "p Libra", + "star.starcaller.overworld.4261": "p Lupus", + "star.starcaller.overworld.4262": "p Lynx", + "star.starcaller.overworld.4263": "p Lyra", + "star.starcaller.overworld.4264": "p Mensa", + "star.starcaller.overworld.4265": "p Microscopium", + "star.starcaller.overworld.4266": "p Monoceros", + "star.starcaller.overworld.4267": "p Musca", + "star.starcaller.overworld.4268": "p Norma", + "star.starcaller.overworld.4269": "p Octans", + "star.starcaller.overworld.4270": "p Ophiuchus", + "star.starcaller.overworld.4271": "p Orion", + "star.starcaller.overworld.4272": "p Pavo", + "star.starcaller.overworld.4273": "p Pegasus", + "star.starcaller.overworld.4274": "p Perseus", + "star.starcaller.overworld.4275": "p Phoenix", + "star.starcaller.overworld.4276": "p Pictor", + "star.starcaller.overworld.4277": "p Pisces", + "star.starcaller.overworld.4278": "p Piscis Austrinus", + "star.starcaller.overworld.4279": "p Puppis", + "star.starcaller.overworld.4280": "p Pyxis", + "star.starcaller.overworld.4281": "p Reticulum", + "star.starcaller.overworld.4282": "p Sagitta", + "star.starcaller.overworld.4283": "p Sagittarius", + "star.starcaller.overworld.4284": "p Scorpius", + "star.starcaller.overworld.4285": "p Sculptor", + "star.starcaller.overworld.4286": "p Scutum", + "star.starcaller.overworld.4287": "p Serpens", + "star.starcaller.overworld.4288": "p Sextans", + "star.starcaller.overworld.4289": "p Taurus", + "star.starcaller.overworld.4290": "p Telescopium", + "star.starcaller.overworld.4291": "p Triangulum", + "star.starcaller.overworld.4292": "p Triangulum Australe", + "star.starcaller.overworld.4293": "p Tucana", + "star.starcaller.overworld.4294": "p Ursa Major", + "star.starcaller.overworld.4295": "p Ursa Minor", + "star.starcaller.overworld.4296": "p Vela", + "star.starcaller.overworld.4297": "p Virgo", + "star.starcaller.overworld.4298": "p Volans", + "star.starcaller.overworld.4299": "p Vulpecula", + "star.starcaller.overworld.4300": "q Andromeda", + "star.starcaller.overworld.4301": "q Antlia", + "star.starcaller.overworld.4302": "q Apus", + "star.starcaller.overworld.4303": "q Aquarius", + "star.starcaller.overworld.4304": "q Aquila", + "star.starcaller.overworld.4305": "q Ara", + "star.starcaller.overworld.4306": "q Aries", + "star.starcaller.overworld.4307": "q Auriga", + "star.starcaller.overworld.4308": "q Boötes", + "star.starcaller.overworld.4309": "q Caelum", + "star.starcaller.overworld.4310": "q Camelopardalis", + "star.starcaller.overworld.4311": "q Cancer", + "star.starcaller.overworld.4312": "q Canes Venatici", + "star.starcaller.overworld.4313": "q Canis Major", + "star.starcaller.overworld.4314": "q Canis Minor", + "star.starcaller.overworld.4315": "q Capricornus", + "star.starcaller.overworld.4316": "q Carina", + "star.starcaller.overworld.4317": "q Cassiopeia", + "star.starcaller.overworld.4318": "q Centaurus", + "star.starcaller.overworld.4319": "q Cepheus", + "star.starcaller.overworld.4320": "q Cetus", + "star.starcaller.overworld.4321": "q Chamaeleon", + "star.starcaller.overworld.4322": "q Circinus", + "star.starcaller.overworld.4323": "q Columba", + "star.starcaller.overworld.4324": "q Coma Berenices", + "star.starcaller.overworld.4325": "q Corona Australis", + "star.starcaller.overworld.4326": "q Corona Borealis", + "star.starcaller.overworld.4327": "q Corvus", + "star.starcaller.overworld.4328": "q Crater", + "star.starcaller.overworld.4329": "q Crux", + "star.starcaller.overworld.4330": "q Cygnus", + "star.starcaller.overworld.4331": "q Delphinus", + "star.starcaller.overworld.4332": "q Dorado", + "star.starcaller.overworld.4333": "q Draco", + "star.starcaller.overworld.4334": "q Equuleus", + "star.starcaller.overworld.4335": "q Eridanus", + "star.starcaller.overworld.4336": "q Fornax", + "star.starcaller.overworld.4337": "q Gemini", + "star.starcaller.overworld.4338": "q Grus", + "star.starcaller.overworld.4339": "q Hercules", + "star.starcaller.overworld.4340": "q Horologium", + "star.starcaller.overworld.4341": "q Hydra", + "star.starcaller.overworld.4342": "q Hydrus", + "star.starcaller.overworld.4343": "q Indus", + "star.starcaller.overworld.4344": "q Lacerta", + "star.starcaller.overworld.4345": "q Leo", + "star.starcaller.overworld.4346": "q Leo Minor", + "star.starcaller.overworld.4347": "q Lepus", + "star.starcaller.overworld.4348": "q Libra", + "star.starcaller.overworld.4349": "q Lupus", + "star.starcaller.overworld.4350": "q Lynx", + "star.starcaller.overworld.4351": "q Lyra", + "star.starcaller.overworld.4352": "q Mensa", + "star.starcaller.overworld.4353": "q Microscopium", + "star.starcaller.overworld.4354": "q Monoceros", + "star.starcaller.overworld.4355": "q Musca", + "star.starcaller.overworld.4356": "q Norma", + "star.starcaller.overworld.4357": "q Octans", + "star.starcaller.overworld.4358": "q Ophiuchus", + "star.starcaller.overworld.4359": "q Orion", + "star.starcaller.overworld.4360": "q Pavo", + "star.starcaller.overworld.4361": "q Pegasus", + "star.starcaller.overworld.4362": "q Perseus", + "star.starcaller.overworld.4363": "q Phoenix", + "star.starcaller.overworld.4364": "q Pictor", + "star.starcaller.overworld.4365": "q Pisces", + "star.starcaller.overworld.4366": "q Piscis Austrinus", + "star.starcaller.overworld.4367": "q Puppis", + "star.starcaller.overworld.4368": "q Pyxis", + "star.starcaller.overworld.4369": "q Reticulum", + "star.starcaller.overworld.4370": "q Sagitta", + "star.starcaller.overworld.4371": "q Sagittarius", + "star.starcaller.overworld.4372": "q Scorpius", + "star.starcaller.overworld.4373": "q Sculptor", + "star.starcaller.overworld.4374": "q Scutum", + "star.starcaller.overworld.4375": "q Serpens", + "star.starcaller.overworld.4376": "q Sextans", + "star.starcaller.overworld.4377": "q Taurus", + "star.starcaller.overworld.4378": "q Telescopium", + "star.starcaller.overworld.4379": "q Triangulum", + "star.starcaller.overworld.4380": "q Triangulum Australe", + "star.starcaller.overworld.4381": "q Tucana", + "star.starcaller.overworld.4382": "q Ursa Major", + "star.starcaller.overworld.4383": "q Ursa Minor", + "star.starcaller.overworld.4384": "q Vela", + "star.starcaller.overworld.4385": "q Virgo", + "star.starcaller.overworld.4386": "q Volans", + "star.starcaller.overworld.4387": "q Vulpecula", + "star.starcaller.overworld.4388": "r Andromeda", + "star.starcaller.overworld.4389": "r Antlia", + "star.starcaller.overworld.4390": "r Apus", + "star.starcaller.overworld.4391": "r Aquarius", + "star.starcaller.overworld.4392": "r Aquila", + "star.starcaller.overworld.4393": "r Ara", + "star.starcaller.overworld.4394": "r Aries", + "star.starcaller.overworld.4395": "r Auriga", + "star.starcaller.overworld.4396": "r Boötes", + "star.starcaller.overworld.4397": "r Caelum", + "star.starcaller.overworld.4398": "r Camelopardalis", + "star.starcaller.overworld.4399": "r Cancer", + "star.starcaller.overworld.4400": "r Canes Venatici", + "star.starcaller.overworld.4401": "r Canis Major", + "star.starcaller.overworld.4402": "r Canis Minor", + "star.starcaller.overworld.4403": "r Capricornus", + "star.starcaller.overworld.4404": "r Carina", + "star.starcaller.overworld.4405": "r Cassiopeia", + "star.starcaller.overworld.4406": "r Centaurus", + "star.starcaller.overworld.4407": "r Cepheus", + "star.starcaller.overworld.4408": "r Cetus", + "star.starcaller.overworld.4409": "r Chamaeleon", + "star.starcaller.overworld.4410": "r Circinus", + "star.starcaller.overworld.4411": "r Columba", + "star.starcaller.overworld.4412": "r Coma Berenices", + "star.starcaller.overworld.4413": "r Corona Australis", + "star.starcaller.overworld.4414": "r Corona Borealis", + "star.starcaller.overworld.4415": "r Corvus", + "star.starcaller.overworld.4416": "r Crater", + "star.starcaller.overworld.4417": "r Crux", + "star.starcaller.overworld.4418": "r Cygnus", + "star.starcaller.overworld.4419": "r Delphinus", + "star.starcaller.overworld.4420": "r Dorado", + "star.starcaller.overworld.4421": "r Draco", + "star.starcaller.overworld.4422": "r Equuleus", + "star.starcaller.overworld.4423": "r Eridanus", + "star.starcaller.overworld.4424": "r Fornax", + "star.starcaller.overworld.4425": "r Gemini", + "star.starcaller.overworld.4426": "r Grus", + "star.starcaller.overworld.4427": "r Hercules", + "star.starcaller.overworld.4428": "r Horologium", + "star.starcaller.overworld.4429": "r Hydra", + "star.starcaller.overworld.4430": "r Hydrus", + "star.starcaller.overworld.4431": "r Indus", + "star.starcaller.overworld.4432": "r Lacerta", + "star.starcaller.overworld.4433": "r Leo", + "star.starcaller.overworld.4434": "r Leo Minor", + "star.starcaller.overworld.4435": "r Lepus", + "star.starcaller.overworld.4436": "r Libra", + "star.starcaller.overworld.4437": "r Lupus", + "star.starcaller.overworld.4438": "r Lynx", + "star.starcaller.overworld.4439": "r Lyra", + "star.starcaller.overworld.4440": "r Mensa", + "star.starcaller.overworld.4441": "r Microscopium", + "star.starcaller.overworld.4442": "r Monoceros", + "star.starcaller.overworld.4443": "r Musca", + "star.starcaller.overworld.4444": "r Norma", + "star.starcaller.overworld.4445": "r Octans", + "star.starcaller.overworld.4446": "r Ophiuchus", + "star.starcaller.overworld.4447": "r Orion", + "star.starcaller.overworld.4448": "r Pavo", + "star.starcaller.overworld.4449": "r Pegasus", + "star.starcaller.overworld.4450": "r Perseus", + "star.starcaller.overworld.4451": "r Phoenix", + "star.starcaller.overworld.4452": "r Pictor", + "star.starcaller.overworld.4453": "r Pisces", + "star.starcaller.overworld.4454": "r Piscis Austrinus", + "star.starcaller.overworld.4455": "r Puppis", + "star.starcaller.overworld.4456": "r Pyxis", + "star.starcaller.overworld.4457": "r Reticulum", + "star.starcaller.overworld.4458": "r Sagitta", + "star.starcaller.overworld.4459": "r Sagittarius", + "star.starcaller.overworld.4460": "r Scorpius", + "star.starcaller.overworld.4461": "r Sculptor", + "star.starcaller.overworld.4462": "r Scutum", + "star.starcaller.overworld.4463": "r Serpens", + "star.starcaller.overworld.4464": "r Sextans", + "star.starcaller.overworld.4465": "r Taurus", + "star.starcaller.overworld.4466": "r Telescopium", + "star.starcaller.overworld.4467": "r Triangulum", + "star.starcaller.overworld.4468": "r Triangulum Australe", + "star.starcaller.overworld.4469": "r Tucana", + "star.starcaller.overworld.4470": "r Ursa Major", + "star.starcaller.overworld.4471": "r Ursa Minor", + "star.starcaller.overworld.4472": "r Vela", + "star.starcaller.overworld.4473": "r Virgo", + "star.starcaller.overworld.4474": "r Volans", + "star.starcaller.overworld.4475": "r Vulpecula", + "star.starcaller.overworld.4476": "s Andromeda", + "star.starcaller.overworld.4477": "s Antlia", + "star.starcaller.overworld.4478": "s Apus", + "star.starcaller.overworld.4479": "s Aquarius", + "star.starcaller.overworld.4480": "s Aquila", + "star.starcaller.overworld.4481": "s Ara", + "star.starcaller.overworld.4482": "s Aries", + "star.starcaller.overworld.4483": "s Auriga", + "star.starcaller.overworld.4484": "s Boötes", + "star.starcaller.overworld.4485": "s Caelum", + "star.starcaller.overworld.4486": "s Camelopardalis", + "star.starcaller.overworld.4487": "s Cancer", + "star.starcaller.overworld.4488": "s Canes Venatici", + "star.starcaller.overworld.4489": "s Canis Major", + "star.starcaller.overworld.4490": "s Canis Minor", + "star.starcaller.overworld.4491": "s Capricornus", + "star.starcaller.overworld.4492": "s Carina", + "star.starcaller.overworld.4493": "s Cassiopeia", + "star.starcaller.overworld.4494": "s Centaurus", + "star.starcaller.overworld.4495": "s Cepheus", + "star.starcaller.overworld.4496": "s Cetus", + "star.starcaller.overworld.4497": "s Chamaeleon", + "star.starcaller.overworld.4498": "s Circinus", + "star.starcaller.overworld.4499": "s Columba", + "star.starcaller.overworld.4500": "s Coma Berenices", + "star.starcaller.overworld.4501": "s Corona Australis", + "star.starcaller.overworld.4502": "s Corona Borealis", + "star.starcaller.overworld.4503": "s Corvus", + "star.starcaller.overworld.4504": "s Crater", + "star.starcaller.overworld.4505": "s Crux", + "star.starcaller.overworld.4506": "s Cygnus", + "star.starcaller.overworld.4507": "s Delphinus", + "star.starcaller.overworld.4508": "s Dorado", + "star.starcaller.overworld.4509": "s Draco", + "star.starcaller.overworld.4510": "s Equuleus", + "star.starcaller.overworld.4511": "s Eridanus", + "star.starcaller.overworld.4512": "s Fornax", + "star.starcaller.overworld.4513": "s Gemini", + "star.starcaller.overworld.4514": "s Grus", + "star.starcaller.overworld.4515": "s Hercules", + "star.starcaller.overworld.4516": "s Horologium", + "star.starcaller.overworld.4517": "s Hydra", + "star.starcaller.overworld.4518": "s Hydrus", + "star.starcaller.overworld.4519": "s Indus", + "star.starcaller.overworld.4520": "s Lacerta", + "star.starcaller.overworld.4521": "s Leo", + "star.starcaller.overworld.4522": "s Leo Minor", + "star.starcaller.overworld.4523": "s Lepus", + "star.starcaller.overworld.4524": "s Libra", + "star.starcaller.overworld.4525": "s Lupus", + "star.starcaller.overworld.4526": "s Lynx", + "star.starcaller.overworld.4527": "s Lyra", + "star.starcaller.overworld.4528": "s Mensa", + "star.starcaller.overworld.4529": "s Microscopium", + "star.starcaller.overworld.4530": "s Monoceros", + "star.starcaller.overworld.4531": "s Musca", + "star.starcaller.overworld.4532": "s Norma", + "star.starcaller.overworld.4533": "s Octans", + "star.starcaller.overworld.4534": "s Ophiuchus", + "star.starcaller.overworld.4535": "s Orion", + "star.starcaller.overworld.4536": "s Pavo", + "star.starcaller.overworld.4537": "s Pegasus", + "star.starcaller.overworld.4538": "s Perseus", + "star.starcaller.overworld.4539": "s Phoenix", + "star.starcaller.overworld.4540": "s Pictor", + "star.starcaller.overworld.4541": "s Pisces", + "star.starcaller.overworld.4542": "s Piscis Austrinus", + "star.starcaller.overworld.4543": "s Puppis", + "star.starcaller.overworld.4544": "s Pyxis", + "star.starcaller.overworld.4545": "s Reticulum", + "star.starcaller.overworld.4546": "s Sagitta", + "star.starcaller.overworld.4547": "s Sagittarius", + "star.starcaller.overworld.4548": "s Scorpius", + "star.starcaller.overworld.4549": "s Sculptor", + "star.starcaller.overworld.4550": "s Scutum", + "star.starcaller.overworld.4551": "s Serpens", + "star.starcaller.overworld.4552": "s Sextans", + "star.starcaller.overworld.4553": "s Taurus", + "star.starcaller.overworld.4554": "s Telescopium", + "star.starcaller.overworld.4555": "s Triangulum", + "star.starcaller.overworld.4556": "s Triangulum Australe", + "star.starcaller.overworld.4557": "s Tucana", + "star.starcaller.overworld.4558": "s Ursa Major", + "star.starcaller.overworld.4559": "s Ursa Minor", + "star.starcaller.overworld.4560": "s Vela", + "star.starcaller.overworld.4561": "s Virgo", + "star.starcaller.overworld.4562": "s Volans", + "star.starcaller.overworld.4563": "s Vulpecula", + "star.starcaller.overworld.4564": "t Andromeda", + "star.starcaller.overworld.4565": "t Antlia", + "star.starcaller.overworld.4566": "t Apus", + "star.starcaller.overworld.4567": "t Aquarius", + "star.starcaller.overworld.4568": "t Aquila", + "star.starcaller.overworld.4569": "t Ara", + "star.starcaller.overworld.4570": "t Aries", + "star.starcaller.overworld.4571": "t Auriga", + "star.starcaller.overworld.4572": "t Boötes", + "star.starcaller.overworld.4573": "t Caelum", + "star.starcaller.overworld.4574": "t Camelopardalis", + "star.starcaller.overworld.4575": "t Cancer", + "star.starcaller.overworld.4576": "t Canes Venatici", + "star.starcaller.overworld.4577": "t Canis Major", + "star.starcaller.overworld.4578": "t Canis Minor", + "star.starcaller.overworld.4579": "t Capricornus", + "star.starcaller.overworld.4580": "t Carina", + "star.starcaller.overworld.4581": "t Cassiopeia", + "star.starcaller.overworld.4582": "t Centaurus", + "star.starcaller.overworld.4583": "t Cepheus", + "star.starcaller.overworld.4584": "t Cetus", + "star.starcaller.overworld.4585": "t Chamaeleon", + "star.starcaller.overworld.4586": "t Circinus", + "star.starcaller.overworld.4587": "t Columba", + "star.starcaller.overworld.4588": "t Coma Berenices", + "star.starcaller.overworld.4589": "t Corona Australis", + "star.starcaller.overworld.4590": "t Corona Borealis", + "star.starcaller.overworld.4591": "t Corvus", + "star.starcaller.overworld.4592": "t Crater", + "star.starcaller.overworld.4593": "t Crux", + "star.starcaller.overworld.4594": "t Cygnus", + "star.starcaller.overworld.4595": "t Delphinus", + "star.starcaller.overworld.4596": "t Dorado", + "star.starcaller.overworld.4597": "t Draco", + "star.starcaller.overworld.4598": "t Equuleus", + "star.starcaller.overworld.4599": "t Eridanus", + "star.starcaller.overworld.4600": "t Fornax", + "star.starcaller.overworld.4601": "t Gemini", + "star.starcaller.overworld.4602": "t Grus", + "star.starcaller.overworld.4603": "t Hercules", + "star.starcaller.overworld.4604": "t Horologium", + "star.starcaller.overworld.4605": "t Hydra", + "star.starcaller.overworld.4606": "t Hydrus", + "star.starcaller.overworld.4607": "t Indus", + "star.starcaller.overworld.4608": "t Lacerta", + "star.starcaller.overworld.4609": "t Leo", + "star.starcaller.overworld.4610": "t Leo Minor", + "star.starcaller.overworld.4611": "t Lepus", + "star.starcaller.overworld.4612": "t Libra", + "star.starcaller.overworld.4613": "t Lupus", + "star.starcaller.overworld.4614": "t Lynx", + "star.starcaller.overworld.4615": "t Lyra", + "star.starcaller.overworld.4616": "t Mensa", + "star.starcaller.overworld.4617": "t Microscopium", + "star.starcaller.overworld.4618": "t Monoceros", + "star.starcaller.overworld.4619": "t Musca", + "star.starcaller.overworld.4620": "t Norma", + "star.starcaller.overworld.4621": "t Octans", + "star.starcaller.overworld.4622": "t Ophiuchus", + "star.starcaller.overworld.4623": "t Orion", + "star.starcaller.overworld.4624": "t Pavo", + "star.starcaller.overworld.4625": "t Pegasus", + "star.starcaller.overworld.4626": "t Perseus", + "star.starcaller.overworld.4627": "t Phoenix", + "star.starcaller.overworld.4628": "t Pictor", + "star.starcaller.overworld.4629": "t Pisces", + "star.starcaller.overworld.4630": "t Piscis Austrinus", + "star.starcaller.overworld.4631": "t Puppis", + "star.starcaller.overworld.4632": "t Pyxis", + "star.starcaller.overworld.4633": "t Reticulum", + "star.starcaller.overworld.4634": "t Sagitta", + "star.starcaller.overworld.4635": "t Sagittarius", + "star.starcaller.overworld.4636": "t Scorpius", + "star.starcaller.overworld.4637": "t Sculptor", + "star.starcaller.overworld.4638": "t Scutum", + "star.starcaller.overworld.4639": "t Serpens", + "star.starcaller.overworld.4640": "t Sextans", + "star.starcaller.overworld.4641": "t Taurus", + "star.starcaller.overworld.4642": "t Telescopium", + "star.starcaller.overworld.4643": "t Triangulum", + "star.starcaller.overworld.4644": "t Triangulum Australe", + "star.starcaller.overworld.4645": "t Tucana", + "star.starcaller.overworld.4646": "t Ursa Major", + "star.starcaller.overworld.4647": "t Ursa Minor", + "star.starcaller.overworld.4648": "t Vela", + "star.starcaller.overworld.4649": "t Virgo", + "star.starcaller.overworld.4650": "t Volans", + "star.starcaller.overworld.4651": "t Vulpecula", + "star.starcaller.overworld.4652": "u Andromeda", + "star.starcaller.overworld.4653": "u Antlia", + "star.starcaller.overworld.4654": "u Apus", + "star.starcaller.overworld.4655": "u Aquarius", + "star.starcaller.overworld.4656": "u Aquila", + "star.starcaller.overworld.4657": "u Ara", + "star.starcaller.overworld.4658": "u Aries", + "star.starcaller.overworld.4659": "u Auriga", + "star.starcaller.overworld.4660": "u Boötes", + "star.starcaller.overworld.4661": "u Caelum", + "star.starcaller.overworld.4662": "u Camelopardalis", + "star.starcaller.overworld.4663": "u Cancer", + "star.starcaller.overworld.4664": "u Canes Venatici", + "star.starcaller.overworld.4665": "u Canis Major", + "star.starcaller.overworld.4666": "u Canis Minor", + "star.starcaller.overworld.4667": "u Capricornus", + "star.starcaller.overworld.4668": "u Carina", + "star.starcaller.overworld.4669": "u Cassiopeia", + "star.starcaller.overworld.4670": "u Centaurus", + "star.starcaller.overworld.4671": "u Cepheus", + "star.starcaller.overworld.4672": "u Cetus", + "star.starcaller.overworld.4673": "u Chamaeleon", + "star.starcaller.overworld.4674": "u Circinus", + "star.starcaller.overworld.4675": "u Columba", + "star.starcaller.overworld.4676": "u Coma Berenices", + "star.starcaller.overworld.4677": "u Corona Australis", + "star.starcaller.overworld.4678": "u Corona Borealis", + "star.starcaller.overworld.4679": "u Corvus", + "star.starcaller.overworld.4680": "u Crater", + "star.starcaller.overworld.4681": "u Crux", + "star.starcaller.overworld.4682": "u Cygnus", + "star.starcaller.overworld.4683": "u Delphinus", + "star.starcaller.overworld.4684": "u Dorado", + "star.starcaller.overworld.4685": "u Draco", + "star.starcaller.overworld.4686": "u Equuleus", + "star.starcaller.overworld.4687": "u Eridanus", + "star.starcaller.overworld.4688": "u Fornax", + "star.starcaller.overworld.4689": "u Gemini", + "star.starcaller.overworld.4690": "u Grus", + "star.starcaller.overworld.4691": "u Hercules", + "star.starcaller.overworld.4692": "u Horologium", + "star.starcaller.overworld.4693": "u Hydra", + "star.starcaller.overworld.4694": "u Hydrus", + "star.starcaller.overworld.4695": "u Indus", + "star.starcaller.overworld.4696": "u Lacerta", + "star.starcaller.overworld.4697": "u Leo", + "star.starcaller.overworld.4698": "u Leo Minor", + "star.starcaller.overworld.4699": "u Lepus", + "star.starcaller.overworld.4700": "u Libra", + "star.starcaller.overworld.4701": "u Lupus", + "star.starcaller.overworld.4702": "u Lynx", + "star.starcaller.overworld.4703": "u Lyra", + "star.starcaller.overworld.4704": "u Mensa", + "star.starcaller.overworld.4705": "u Microscopium", + "star.starcaller.overworld.4706": "u Monoceros", + "star.starcaller.overworld.4707": "u Musca", + "star.starcaller.overworld.4708": "u Norma", + "star.starcaller.overworld.4709": "u Octans", + "star.starcaller.overworld.4710": "u Ophiuchus", + "star.starcaller.overworld.4711": "u Orion", + "star.starcaller.overworld.4712": "u Pavo", + "star.starcaller.overworld.4713": "u Pegasus", + "star.starcaller.overworld.4714": "u Perseus", + "star.starcaller.overworld.4715": "u Phoenix", + "star.starcaller.overworld.4716": "u Pictor", + "star.starcaller.overworld.4717": "u Pisces", + "star.starcaller.overworld.4718": "u Piscis Austrinus", + "star.starcaller.overworld.4719": "u Puppis", + "star.starcaller.overworld.4720": "u Pyxis", + "star.starcaller.overworld.4721": "u Reticulum", + "star.starcaller.overworld.4722": "u Sagitta", + "star.starcaller.overworld.4723": "u Sagittarius", + "star.starcaller.overworld.4724": "u Scorpius", + "star.starcaller.overworld.4725": "u Sculptor", + "star.starcaller.overworld.4726": "u Scutum", + "star.starcaller.overworld.4727": "u Serpens", + "star.starcaller.overworld.4728": "u Sextans", + "star.starcaller.overworld.4729": "u Taurus", + "star.starcaller.overworld.4730": "u Telescopium", + "star.starcaller.overworld.4731": "u Triangulum", + "star.starcaller.overworld.4732": "u Triangulum Australe", + "star.starcaller.overworld.4733": "u Tucana", + "star.starcaller.overworld.4734": "u Ursa Major", + "star.starcaller.overworld.4735": "u Ursa Minor", + "star.starcaller.overworld.4736": "u Vela", + "star.starcaller.overworld.4737": "u Virgo", + "star.starcaller.overworld.4738": "u Volans", + "star.starcaller.overworld.4739": "u Vulpecula", + "star.starcaller.overworld.4740": "v Andromeda", + "star.starcaller.overworld.4741": "v Antlia", + "star.starcaller.overworld.4742": "v Apus", + "star.starcaller.overworld.4743": "v Aquarius", + "star.starcaller.overworld.4744": "v Aquila", + "star.starcaller.overworld.4745": "v Ara", + "star.starcaller.overworld.4746": "v Aries", + "star.starcaller.overworld.4747": "v Auriga", + "star.starcaller.overworld.4748": "v Boötes", + "star.starcaller.overworld.4749": "v Caelum", + "star.starcaller.overworld.4750": "v Camelopardalis", + "star.starcaller.overworld.4751": "v Cancer", + "star.starcaller.overworld.4752": "v Canes Venatici", + "star.starcaller.overworld.4753": "v Canis Major", + "star.starcaller.overworld.4754": "v Canis Minor", + "star.starcaller.overworld.4755": "v Capricornus", + "star.starcaller.overworld.4756": "v Carina", + "star.starcaller.overworld.4757": "v Cassiopeia", + "star.starcaller.overworld.4758": "v Centaurus", + "star.starcaller.overworld.4759": "v Cepheus", + "star.starcaller.overworld.4760": "v Cetus", + "star.starcaller.overworld.4761": "v Chamaeleon", + "star.starcaller.overworld.4762": "v Circinus", + "star.starcaller.overworld.4763": "v Columba", + "star.starcaller.overworld.4764": "v Coma Berenices", + "star.starcaller.overworld.4765": "v Corona Australis", + "star.starcaller.overworld.4766": "v Corona Borealis", + "star.starcaller.overworld.4767": "v Corvus", + "star.starcaller.overworld.4768": "v Crater", + "star.starcaller.overworld.4769": "v Crux", + "star.starcaller.overworld.4770": "v Cygnus", + "star.starcaller.overworld.4771": "v Delphinus", + "star.starcaller.overworld.4772": "v Dorado", + "star.starcaller.overworld.4773": "v Draco", + "star.starcaller.overworld.4774": "v Equuleus", + "star.starcaller.overworld.4775": "v Eridanus", + "star.starcaller.overworld.4776": "v Fornax", + "star.starcaller.overworld.4777": "v Gemini", + "star.starcaller.overworld.4778": "v Grus", + "star.starcaller.overworld.4779": "v Hercules", + "star.starcaller.overworld.4780": "v Horologium", + "star.starcaller.overworld.4781": "v Hydra", + "star.starcaller.overworld.4782": "v Hydrus", + "star.starcaller.overworld.4783": "v Indus", + "star.starcaller.overworld.4784": "v Lacerta", + "star.starcaller.overworld.4785": "v Leo", + "star.starcaller.overworld.4786": "v Leo Minor", + "star.starcaller.overworld.4787": "v Lepus", + "star.starcaller.overworld.4788": "v Libra", + "star.starcaller.overworld.4789": "v Lupus", + "star.starcaller.overworld.4790": "v Lynx", + "star.starcaller.overworld.4791": "v Lyra", + "star.starcaller.overworld.4792": "v Mensa", + "star.starcaller.overworld.4793": "v Microscopium", + "star.starcaller.overworld.4794": "v Monoceros", + "star.starcaller.overworld.4795": "v Musca", + "star.starcaller.overworld.4796": "v Norma", + "star.starcaller.overworld.4797": "v Octans", + "star.starcaller.overworld.4798": "v Ophiuchus", + "star.starcaller.overworld.4799": "v Orion", + "star.starcaller.overworld.4800": "v Pavo", + "star.starcaller.overworld.4801": "v Pegasus", + "star.starcaller.overworld.4802": "v Perseus", + "star.starcaller.overworld.4803": "v Phoenix", + "star.starcaller.overworld.4804": "v Pictor", + "star.starcaller.overworld.4805": "v Pisces", + "star.starcaller.overworld.4806": "v Piscis Austrinus", + "star.starcaller.overworld.4807": "v Puppis", + "star.starcaller.overworld.4808": "v Pyxis", + "star.starcaller.overworld.4809": "v Reticulum", + "star.starcaller.overworld.4810": "v Sagitta", + "star.starcaller.overworld.4811": "v Sagittarius", + "star.starcaller.overworld.4812": "v Scorpius", + "star.starcaller.overworld.4813": "v Sculptor", + "star.starcaller.overworld.4814": "v Scutum", + "star.starcaller.overworld.4815": "v Serpens", + "star.starcaller.overworld.4816": "v Sextans", + "star.starcaller.overworld.4817": "v Taurus", + "star.starcaller.overworld.4818": "v Telescopium", + "star.starcaller.overworld.4819": "v Triangulum", + "star.starcaller.overworld.4820": "v Triangulum Australe", + "star.starcaller.overworld.4821": "v Tucana", + "star.starcaller.overworld.4822": "v Ursa Major", + "star.starcaller.overworld.4823": "v Ursa Minor", + "star.starcaller.overworld.4824": "v Vela", + "star.starcaller.overworld.4825": "v Virgo", + "star.starcaller.overworld.4826": "v Volans", + "star.starcaller.overworld.4827": "v Vulpecula", + "star.starcaller.overworld.4828": "w Andromeda", + "star.starcaller.overworld.4829": "w Antlia", + "star.starcaller.overworld.4830": "w Apus", + "star.starcaller.overworld.4831": "w Aquarius", + "star.starcaller.overworld.4832": "w Aquila", + "star.starcaller.overworld.4833": "w Ara", + "star.starcaller.overworld.4834": "w Aries", + "star.starcaller.overworld.4835": "w Auriga", + "star.starcaller.overworld.4836": "w Boötes", + "star.starcaller.overworld.4837": "w Caelum", + "star.starcaller.overworld.4838": "w Camelopardalis", + "star.starcaller.overworld.4839": "w Cancer", + "star.starcaller.overworld.4840": "w Canes Venatici", + "star.starcaller.overworld.4841": "w Canis Major", + "star.starcaller.overworld.4842": "w Canis Minor", + "star.starcaller.overworld.4843": "w Capricornus", + "star.starcaller.overworld.4844": "w Carina", + "star.starcaller.overworld.4845": "w Cassiopeia", + "star.starcaller.overworld.4846": "w Centaurus", + "star.starcaller.overworld.4847": "w Cepheus", + "star.starcaller.overworld.4848": "w Cetus", + "star.starcaller.overworld.4849": "w Chamaeleon", + "star.starcaller.overworld.4850": "w Circinus", + "star.starcaller.overworld.4851": "w Columba", + "star.starcaller.overworld.4852": "w Coma Berenices", + "star.starcaller.overworld.4853": "w Corona Australis", + "star.starcaller.overworld.4854": "w Corona Borealis", + "star.starcaller.overworld.4855": "w Corvus", + "star.starcaller.overworld.4856": "w Crater", + "star.starcaller.overworld.4857": "w Crux", + "star.starcaller.overworld.4858": "w Cygnus", + "star.starcaller.overworld.4859": "w Delphinus", + "star.starcaller.overworld.4860": "w Dorado", + "star.starcaller.overworld.4861": "w Draco", + "star.starcaller.overworld.4862": "w Equuleus", + "star.starcaller.overworld.4863": "w Eridanus", + "star.starcaller.overworld.4864": "w Fornax", + "star.starcaller.overworld.4865": "w Gemini", + "star.starcaller.overworld.4866": "w Grus", + "star.starcaller.overworld.4867": "w Hercules", + "star.starcaller.overworld.4868": "w Horologium", + "star.starcaller.overworld.4869": "w Hydra", + "star.starcaller.overworld.4870": "w Hydrus", + "star.starcaller.overworld.4871": "w Indus", + "star.starcaller.overworld.4872": "w Lacerta", + "star.starcaller.overworld.4873": "w Leo", + "star.starcaller.overworld.4874": "w Leo Minor", + "star.starcaller.overworld.4875": "w Lepus", + "star.starcaller.overworld.4876": "w Libra", + "star.starcaller.overworld.4877": "w Lupus", + "star.starcaller.overworld.4878": "w Lynx", + "star.starcaller.overworld.4879": "w Lyra", + "star.starcaller.overworld.4880": "w Mensa", + "star.starcaller.overworld.4881": "w Microscopium", + "star.starcaller.overworld.4882": "w Monoceros", + "star.starcaller.overworld.4883": "w Musca", + "star.starcaller.overworld.4884": "w Norma", + "star.starcaller.overworld.4885": "w Octans", + "star.starcaller.overworld.4886": "w Ophiuchus", + "star.starcaller.overworld.4887": "w Orion", + "star.starcaller.overworld.4888": "w Pavo", + "star.starcaller.overworld.4889": "w Pegasus", + "star.starcaller.overworld.4890": "w Perseus", + "star.starcaller.overworld.4891": "w Phoenix", + "star.starcaller.overworld.4892": "w Pictor", + "star.starcaller.overworld.4893": "w Pisces", + "star.starcaller.overworld.4894": "w Piscis Austrinus", + "star.starcaller.overworld.4895": "w Puppis", + "star.starcaller.overworld.4896": "w Pyxis", + "star.starcaller.overworld.4897": "w Reticulum", + "star.starcaller.overworld.4898": "w Sagitta", + "star.starcaller.overworld.4899": "w Sagittarius", + "star.starcaller.overworld.4900": "w Scorpius", + "star.starcaller.overworld.4901": "w Sculptor", + "star.starcaller.overworld.4902": "w Scutum", + "star.starcaller.overworld.4903": "w Serpens", + "star.starcaller.overworld.4904": "w Sextans", + "star.starcaller.overworld.4905": "w Taurus", + "star.starcaller.overworld.4906": "w Telescopium", + "star.starcaller.overworld.4907": "w Triangulum", + "star.starcaller.overworld.4908": "w Triangulum Australe", + "star.starcaller.overworld.4909": "w Tucana", + "star.starcaller.overworld.4910": "w Ursa Major", + "star.starcaller.overworld.4911": "w Ursa Minor", + "star.starcaller.overworld.4912": "w Vela", + "star.starcaller.overworld.4913": "w Virgo", + "star.starcaller.overworld.4914": "w Volans", + "star.starcaller.overworld.4915": "w Vulpecula", + "star.starcaller.overworld.4916": "x Andromeda", + "star.starcaller.overworld.4917": "x Antlia", + "star.starcaller.overworld.4918": "x Apus", + "star.starcaller.overworld.4919": "x Aquarius", + "star.starcaller.overworld.4920": "x Aquila", + "star.starcaller.overworld.4921": "x Ara", + "star.starcaller.overworld.4922": "x Aries", + "star.starcaller.overworld.4923": "x Auriga", + "star.starcaller.overworld.4924": "x Boötes", + "star.starcaller.overworld.4925": "x Caelum", + "star.starcaller.overworld.4926": "x Camelopardalis", + "star.starcaller.overworld.4927": "x Cancer", + "star.starcaller.overworld.4928": "x Canes Venatici", + "star.starcaller.overworld.4929": "x Canis Major", + "star.starcaller.overworld.4930": "x Canis Minor", + "star.starcaller.overworld.4931": "x Capricornus", + "star.starcaller.overworld.4932": "x Carina", + "star.starcaller.overworld.4933": "x Cassiopeia", + "star.starcaller.overworld.4934": "x Centaurus", + "star.starcaller.overworld.4935": "x Cepheus", + "star.starcaller.overworld.4936": "x Cetus", + "star.starcaller.overworld.4937": "x Chamaeleon", + "star.starcaller.overworld.4938": "x Circinus", + "star.starcaller.overworld.4939": "x Columba", + "star.starcaller.overworld.4940": "x Coma Berenices", + "star.starcaller.overworld.4941": "x Corona Australis", + "star.starcaller.overworld.4942": "x Corona Borealis", + "star.starcaller.overworld.4943": "x Corvus", + "star.starcaller.overworld.4944": "x Crater", + "star.starcaller.overworld.4945": "x Crux", + "star.starcaller.overworld.4946": "x Cygnus", + "star.starcaller.overworld.4947": "x Delphinus", + "star.starcaller.overworld.4948": "x Dorado", + "star.starcaller.overworld.4949": "x Draco", + "star.starcaller.overworld.4950": "x Equuleus", + "star.starcaller.overworld.4951": "x Eridanus", + "star.starcaller.overworld.4952": "x Fornax", + "star.starcaller.overworld.4953": "x Gemini", + "star.starcaller.overworld.4954": "x Grus", + "star.starcaller.overworld.4955": "x Hercules", + "star.starcaller.overworld.4956": "x Horologium", + "star.starcaller.overworld.4957": "x Hydra", + "star.starcaller.overworld.4958": "x Hydrus", + "star.starcaller.overworld.4959": "x Indus", + "star.starcaller.overworld.4960": "x Lacerta", + "star.starcaller.overworld.4961": "x Leo", + "star.starcaller.overworld.4962": "x Leo Minor", + "star.starcaller.overworld.4963": "x Lepus", + "star.starcaller.overworld.4964": "x Libra", + "star.starcaller.overworld.4965": "x Lupus", + "star.starcaller.overworld.4966": "x Lynx", + "star.starcaller.overworld.4967": "x Lyra", + "star.starcaller.overworld.4968": "x Mensa", + "star.starcaller.overworld.4969": "x Microscopium", + "star.starcaller.overworld.4970": "x Monoceros", + "star.starcaller.overworld.4971": "x Musca", + "star.starcaller.overworld.4972": "x Norma", + "star.starcaller.overworld.4973": "x Octans", + "star.starcaller.overworld.4974": "x Ophiuchus", + "star.starcaller.overworld.4975": "x Orion", + "star.starcaller.overworld.4976": "x Pavo", + "star.starcaller.overworld.4977": "x Pegasus", + "star.starcaller.overworld.4978": "x Perseus", + "star.starcaller.overworld.4979": "x Phoenix", + "star.starcaller.overworld.4980": "x Pictor", + "star.starcaller.overworld.4981": "x Pisces", + "star.starcaller.overworld.4982": "x Piscis Austrinus", + "star.starcaller.overworld.4983": "x Puppis", + "star.starcaller.overworld.4984": "x Pyxis", + "star.starcaller.overworld.4985": "x Reticulum", + "star.starcaller.overworld.4986": "x Sagitta", + "star.starcaller.overworld.4987": "x Sagittarius", + "star.starcaller.overworld.4988": "x Scorpius", + "star.starcaller.overworld.4989": "x Sculptor", + "star.starcaller.overworld.4990": "x Scutum", + "star.starcaller.overworld.4991": "x Serpens", + "star.starcaller.overworld.4992": "x Sextans", + "star.starcaller.overworld.4993": "x Taurus", + "star.starcaller.overworld.4994": "x Telescopium", + "star.starcaller.overworld.4995": "x Triangulum", + "star.starcaller.overworld.4996": "x Triangulum Australe", + "star.starcaller.overworld.4997": "x Tucana", + "star.starcaller.overworld.4998": "x Ursa Major", + "star.starcaller.overworld.4999": "x Ursa Minor", + "star.starcaller.overworld.5000": "x Vela", + "star.starcaller.overworld.5001": "x Virgo", + "star.starcaller.overworld.5002": "x Volans", + "star.starcaller.overworld.5003": "x Vulpecula", + "star.starcaller.overworld.5004": "y Andromeda", + "star.starcaller.overworld.5005": "y Antlia", + "star.starcaller.overworld.5006": "y Apus", + "star.starcaller.overworld.5007": "y Aquarius", + "star.starcaller.overworld.5008": "y Aquila", + "star.starcaller.overworld.5009": "y Ara", + "star.starcaller.overworld.5010": "y Aries", + "star.starcaller.overworld.5011": "y Auriga", + "star.starcaller.overworld.5012": "y Boötes", + "star.starcaller.overworld.5013": "y Caelum", + "star.starcaller.overworld.5014": "y Camelopardalis", + "star.starcaller.overworld.5015": "y Cancer", + "star.starcaller.overworld.5016": "y Canes Venatici", + "star.starcaller.overworld.5017": "y Canis Major", + "star.starcaller.overworld.5018": "y Canis Minor", + "star.starcaller.overworld.5019": "y Capricornus", + "star.starcaller.overworld.5020": "y Carina", + "star.starcaller.overworld.5021": "y Cassiopeia", + "star.starcaller.overworld.5022": "y Centaurus", + "star.starcaller.overworld.5023": "y Cepheus", + "star.starcaller.overworld.5024": "y Cetus", + "star.starcaller.overworld.5025": "y Chamaeleon", + "star.starcaller.overworld.5026": "y Circinus", + "star.starcaller.overworld.5027": "y Columba", + "star.starcaller.overworld.5028": "y Coma Berenices", + "star.starcaller.overworld.5029": "y Corona Australis", + "star.starcaller.overworld.5030": "y Corona Borealis", + "star.starcaller.overworld.5031": "y Corvus", + "star.starcaller.overworld.5032": "y Crater", + "star.starcaller.overworld.5033": "y Crux", + "star.starcaller.overworld.5034": "y Cygnus", + "star.starcaller.overworld.5035": "y Delphinus", + "star.starcaller.overworld.5036": "y Dorado", + "star.starcaller.overworld.5037": "y Draco", + "star.starcaller.overworld.5038": "y Equuleus", + "star.starcaller.overworld.5039": "y Eridanus", + "star.starcaller.overworld.5040": "y Fornax", + "star.starcaller.overworld.5041": "y Gemini", + "star.starcaller.overworld.5042": "y Grus", + "star.starcaller.overworld.5043": "y Hercules", + "star.starcaller.overworld.5044": "y Horologium", + "star.starcaller.overworld.5045": "y Hydra", + "star.starcaller.overworld.5046": "y Hydrus", + "star.starcaller.overworld.5047": "y Indus", + "star.starcaller.overworld.5048": "y Lacerta", + "star.starcaller.overworld.5049": "y Leo", + "star.starcaller.overworld.5050": "y Leo Minor", + "star.starcaller.overworld.5051": "y Lepus", + "star.starcaller.overworld.5052": "y Libra", + "star.starcaller.overworld.5053": "y Lupus", + "star.starcaller.overworld.5054": "y Lynx", + "star.starcaller.overworld.5055": "y Lyra", + "star.starcaller.overworld.5056": "y Mensa", + "star.starcaller.overworld.5057": "y Microscopium", + "star.starcaller.overworld.5058": "y Monoceros", + "star.starcaller.overworld.5059": "y Musca", + "star.starcaller.overworld.5060": "y Norma", + "star.starcaller.overworld.5061": "y Octans", + "star.starcaller.overworld.5062": "y Ophiuchus", + "star.starcaller.overworld.5063": "y Orion", + "star.starcaller.overworld.5064": "y Pavo", + "star.starcaller.overworld.5065": "y Pegasus", + "star.starcaller.overworld.5066": "y Perseus", + "star.starcaller.overworld.5067": "y Phoenix", + "star.starcaller.overworld.5068": "y Pictor", + "star.starcaller.overworld.5069": "y Pisces", + "star.starcaller.overworld.5070": "y Piscis Austrinus", + "star.starcaller.overworld.5071": "y Puppis", + "star.starcaller.overworld.5072": "y Pyxis", + "star.starcaller.overworld.5073": "y Reticulum", + "star.starcaller.overworld.5074": "y Sagitta", + "star.starcaller.overworld.5075": "y Sagittarius", + "star.starcaller.overworld.5076": "y Scorpius", + "star.starcaller.overworld.5077": "y Sculptor", + "star.starcaller.overworld.5078": "y Scutum", + "star.starcaller.overworld.5079": "y Serpens", + "star.starcaller.overworld.5080": "y Sextans", + "star.starcaller.overworld.5081": "y Taurus", + "star.starcaller.overworld.5082": "y Telescopium", + "star.starcaller.overworld.5083": "y Triangulum", + "star.starcaller.overworld.5084": "y Triangulum Australe", + "star.starcaller.overworld.5085": "y Tucana", + "star.starcaller.overworld.5086": "y Ursa Major", + "star.starcaller.overworld.5087": "y Ursa Minor", + "star.starcaller.overworld.5088": "y Vela", + "star.starcaller.overworld.5089": "y Virgo", + "star.starcaller.overworld.5090": "y Volans", + "star.starcaller.overworld.5091": "y Vulpecula", + "star.starcaller.overworld.5092": "z Andromeda", + "star.starcaller.overworld.5093": "z Antlia", + "star.starcaller.overworld.5094": "z Apus", + "star.starcaller.overworld.5095": "z Aquarius", + "star.starcaller.overworld.5096": "z Aquila", + "star.starcaller.overworld.5097": "z Ara", + "star.starcaller.overworld.5098": "z Aries", + "star.starcaller.overworld.5099": "z Auriga", + "star.starcaller.overworld.5100": "z Boötes", + "star.starcaller.overworld.5101": "z Caelum", + "star.starcaller.overworld.5102": "z Camelopardalis", + "star.starcaller.overworld.5103": "z Cancer", + "star.starcaller.overworld.5104": "z Canes Venatici", + "star.starcaller.overworld.5105": "z Canis Major", + "star.starcaller.overworld.5106": "z Canis Minor", + "star.starcaller.overworld.5107": "z Capricornus", + "star.starcaller.overworld.5108": "z Carina", + "star.starcaller.overworld.5109": "z Cassiopeia", + "star.starcaller.overworld.5110": "z Centaurus", + "star.starcaller.overworld.5111": "z Cepheus", + "star.starcaller.overworld.5112": "z Cetus", + "star.starcaller.overworld.5113": "z Chamaeleon", + "star.starcaller.overworld.5114": "z Circinus", + "star.starcaller.overworld.5115": "z Columba", + "star.starcaller.overworld.5116": "z Coma Berenices", + "star.starcaller.overworld.5117": "z Corona Australis", + "star.starcaller.overworld.5118": "z Corona Borealis", + "star.starcaller.overworld.5119": "z Corvus", + "star.starcaller.overworld.5120": "z Crater", + "star.starcaller.overworld.5121": "z Crux", + "star.starcaller.overworld.5122": "z Cygnus", + "star.starcaller.overworld.5123": "z Delphinus", + "star.starcaller.overworld.5124": "z Dorado", + "star.starcaller.overworld.5125": "z Draco", + "star.starcaller.overworld.5126": "z Equuleus", + "star.starcaller.overworld.5127": "z Eridanus", + "star.starcaller.overworld.5128": "z Fornax", + "star.starcaller.overworld.5129": "z Gemini", + "star.starcaller.overworld.5130": "z Grus", + "star.starcaller.overworld.5131": "z Hercules", + "star.starcaller.overworld.5132": "z Horologium", + "star.starcaller.overworld.5133": "z Hydra", + "star.starcaller.overworld.5134": "z Hydrus", + "star.starcaller.overworld.5135": "z Indus", + "star.starcaller.overworld.5136": "z Lacerta", + "star.starcaller.overworld.5137": "z Leo", + "star.starcaller.overworld.5138": "z Leo Minor", + "star.starcaller.overworld.5139": "z Lepus", + "star.starcaller.overworld.5140": "z Libra", + "star.starcaller.overworld.5141": "z Lupus", + "star.starcaller.overworld.5142": "z Lynx", + "star.starcaller.overworld.5143": "z Lyra", + "star.starcaller.overworld.5144": "z Mensa", + "star.starcaller.overworld.5145": "z Microscopium", + "star.starcaller.overworld.5146": "z Monoceros", + "star.starcaller.overworld.5147": "z Musca", + "star.starcaller.overworld.5148": "z Norma", + "star.starcaller.overworld.5149": "z Octans", + "star.starcaller.overworld.5150": "z Ophiuchus", + "star.starcaller.overworld.5151": "z Orion", + "star.starcaller.overworld.5152": "z Pavo", + "star.starcaller.overworld.5153": "z Pegasus", + "star.starcaller.overworld.5154": "z Perseus", + "star.starcaller.overworld.5155": "z Phoenix", + "star.starcaller.overworld.5156": "z Pictor", + "star.starcaller.overworld.5157": "z Pisces", + "star.starcaller.overworld.5158": "z Piscis Austrinus", + "star.starcaller.overworld.5159": "z Puppis", + "star.starcaller.overworld.5160": "z Pyxis", + "star.starcaller.overworld.5161": "z Reticulum", + "star.starcaller.overworld.5162": "z Sagitta", + "star.starcaller.overworld.5163": "z Sagittarius", + "star.starcaller.overworld.5164": "z Scorpius", + "star.starcaller.overworld.5165": "z Sculptor", + "star.starcaller.overworld.5166": "z Scutum", + "star.starcaller.overworld.5167": "z Serpens", + "star.starcaller.overworld.5168": "z Sextans", + "star.starcaller.overworld.5169": "z Taurus", + "star.starcaller.overworld.5170": "z Telescopium", + "star.starcaller.overworld.5171": "z Triangulum", + "star.starcaller.overworld.5172": "z Triangulum Australe", + "star.starcaller.overworld.5173": "z Tucana", + "star.starcaller.overworld.5174": "z Ursa Major", + "star.starcaller.overworld.5175": "z Ursa Minor", + "star.starcaller.overworld.5176": "z Vela", + "star.starcaller.overworld.5177": "z Virgo", + "star.starcaller.overworld.5178": "z Volans", + "star.starcaller.overworld.5179": "z Vulpecula", + "star.starcaller.overworld.5180": "A Andromeda", + "star.starcaller.overworld.5181": "A Antlia", + "star.starcaller.overworld.5182": "A Apus", + "star.starcaller.overworld.5183": "A Aquarius", + "star.starcaller.overworld.5184": "A Aquila", + "star.starcaller.overworld.5185": "A Ara", + "star.starcaller.overworld.5186": "A Aries", + "star.starcaller.overworld.5187": "A Auriga", + "star.starcaller.overworld.5188": "A Boötes", + "star.starcaller.overworld.5189": "A Caelum", + "star.starcaller.overworld.5190": "A Camelopardalis", + "star.starcaller.overworld.5191": "A Cancer", + "star.starcaller.overworld.5192": "A Canes Venatici", + "star.starcaller.overworld.5193": "A Canis Major", + "star.starcaller.overworld.5194": "A Canis Minor", + "star.starcaller.overworld.5195": "A Capricornus", + "star.starcaller.overworld.5196": "A Carina", + "star.starcaller.overworld.5197": "A Cassiopeia", + "star.starcaller.overworld.5198": "A Centaurus", + "star.starcaller.overworld.5199": "A Cepheus", + "star.starcaller.overworld.5200": "A Cetus", + "star.starcaller.overworld.5201": "A Chamaeleon", + "star.starcaller.overworld.5202": "A Circinus", + "star.starcaller.overworld.5203": "A Columba", + "star.starcaller.overworld.5204": "A Coma Berenices", + "star.starcaller.overworld.5205": "A Corona Australis", + "star.starcaller.overworld.5206": "A Corona Borealis", + "star.starcaller.overworld.5207": "A Corvus", + "star.starcaller.overworld.5208": "A Crater", + "star.starcaller.overworld.5209": "A Crux", + "star.starcaller.overworld.5210": "A Cygnus", + "star.starcaller.overworld.5211": "A Delphinus", + "star.starcaller.overworld.5212": "A Dorado", + "star.starcaller.overworld.5213": "A Draco", + "star.starcaller.overworld.5214": "A Equuleus", + "star.starcaller.overworld.5215": "A Eridanus", + "star.starcaller.overworld.5216": "A Fornax", + "star.starcaller.overworld.5217": "A Gemini", + "star.starcaller.overworld.5218": "A Grus", + "star.starcaller.overworld.5219": "A Hercules", + "star.starcaller.overworld.5220": "A Horologium", + "star.starcaller.overworld.5221": "A Hydra", + "star.starcaller.overworld.5222": "A Hydrus", + "star.starcaller.overworld.5223": "A Indus", + "star.starcaller.overworld.5224": "A Lacerta", + "star.starcaller.overworld.5225": "A Leo", + "star.starcaller.overworld.5226": "A Leo Minor", + "star.starcaller.overworld.5227": "A Lepus", + "star.starcaller.overworld.5228": "A Libra", + "star.starcaller.overworld.5229": "A Lupus", + "star.starcaller.overworld.5230": "A Lynx", + "star.starcaller.overworld.5231": "A Lyra", + "star.starcaller.overworld.5232": "A Mensa", + "star.starcaller.overworld.5233": "A Microscopium", + "star.starcaller.overworld.5234": "A Monoceros", + "star.starcaller.overworld.5235": "A Musca", + "star.starcaller.overworld.5236": "A Norma", + "star.starcaller.overworld.5237": "A Octans", + "star.starcaller.overworld.5238": "A Ophiuchus", + "star.starcaller.overworld.5239": "A Orion", + "star.starcaller.overworld.5240": "A Pavo", + "star.starcaller.overworld.5241": "A Pegasus", + "star.starcaller.overworld.5242": "A Perseus", + "star.starcaller.overworld.5243": "A Phoenix", + "star.starcaller.overworld.5244": "A Pictor", + "star.starcaller.overworld.5245": "A Pisces", + "star.starcaller.overworld.5246": "A Piscis Austrinus", + "star.starcaller.overworld.5247": "A Puppis", + "star.starcaller.overworld.5248": "A Pyxis", + "star.starcaller.overworld.5249": "A Reticulum", + "star.starcaller.overworld.5250": "A Sagitta", + "star.starcaller.overworld.5251": "A Sagittarius", + "star.starcaller.overworld.5252": "A Scorpius", + "star.starcaller.overworld.5253": "A Sculptor", + "star.starcaller.overworld.5254": "A Scutum", + "star.starcaller.overworld.5255": "A Serpens", + "star.starcaller.overworld.5256": "A Sextans", + "star.starcaller.overworld.5257": "A Taurus", + "star.starcaller.overworld.5258": "A Telescopium", + "star.starcaller.overworld.5259": "A Triangulum", + "star.starcaller.overworld.5260": "A Triangulum Australe", + "star.starcaller.overworld.5261": "A Tucana", + "star.starcaller.overworld.5262": "A Ursa Major", + "star.starcaller.overworld.5263": "A Ursa Minor", + "star.starcaller.overworld.5264": "A Vela", + "star.starcaller.overworld.5265": "A Virgo", + "star.starcaller.overworld.5266": "A Volans", + "star.starcaller.overworld.5267": "A Vulpecula", + "star.starcaller.overworld.5268": "B Andromeda", + "star.starcaller.overworld.5269": "B Antlia", + "star.starcaller.overworld.5270": "B Apus", + "star.starcaller.overworld.5271": "B Aquarius", + "star.starcaller.overworld.5272": "B Aquila", + "star.starcaller.overworld.5273": "B Ara", + "star.starcaller.overworld.5274": "B Aries", + "star.starcaller.overworld.5275": "B Auriga", + "star.starcaller.overworld.5276": "B Boötes", + "star.starcaller.overworld.5277": "B Caelum", + "star.starcaller.overworld.5278": "B Camelopardalis", + "star.starcaller.overworld.5279": "B Cancer", + "star.starcaller.overworld.5280": "B Canes Venatici", + "star.starcaller.overworld.5281": "B Canis Major", + "star.starcaller.overworld.5282": "B Canis Minor", + "star.starcaller.overworld.5283": "B Capricornus", + "star.starcaller.overworld.5284": "B Carina", + "star.starcaller.overworld.5285": "B Cassiopeia", + "star.starcaller.overworld.5286": "B Centaurus", + "star.starcaller.overworld.5287": "B Cepheus", + "star.starcaller.overworld.5288": "B Cetus", + "star.starcaller.overworld.5289": "B Chamaeleon", + "star.starcaller.overworld.5290": "B Circinus", + "star.starcaller.overworld.5291": "B Columba", + "star.starcaller.overworld.5292": "B Coma Berenices", + "star.starcaller.overworld.5293": "B Corona Australis", + "star.starcaller.overworld.5294": "B Corona Borealis", + "star.starcaller.overworld.5295": "B Corvus", + "star.starcaller.overworld.5296": "B Crater", + "star.starcaller.overworld.5297": "B Crux", + "star.starcaller.overworld.5298": "B Cygnus", + "star.starcaller.overworld.5299": "B Delphinus", + "star.starcaller.overworld.5300": "B Dorado", + "star.starcaller.overworld.5301": "B Draco", + "star.starcaller.overworld.5302": "B Equuleus", + "star.starcaller.overworld.5303": "B Eridanus", + "star.starcaller.overworld.5304": "B Fornax", + "star.starcaller.overworld.5305": "B Gemini", + "star.starcaller.overworld.5306": "B Grus", + "star.starcaller.overworld.5307": "B Hercules", + "star.starcaller.overworld.5308": "B Horologium", + "star.starcaller.overworld.5309": "B Hydra", + "star.starcaller.overworld.5310": "B Hydrus", + "star.starcaller.overworld.5311": "B Indus", + "star.starcaller.overworld.5312": "B Lacerta", + "star.starcaller.overworld.5313": "B Leo", + "star.starcaller.overworld.5314": "B Leo Minor", + "star.starcaller.overworld.5315": "B Lepus", + "star.starcaller.overworld.5316": "B Libra", + "star.starcaller.overworld.5317": "B Lupus", + "star.starcaller.overworld.5318": "B Lynx", + "star.starcaller.overworld.5319": "B Lyra", + "star.starcaller.overworld.5320": "B Mensa", + "star.starcaller.overworld.5321": "B Microscopium", + "star.starcaller.overworld.5322": "B Monoceros", + "star.starcaller.overworld.5323": "B Musca", + "star.starcaller.overworld.5324": "B Norma", + "star.starcaller.overworld.5325": "B Octans", + "star.starcaller.overworld.5326": "B Ophiuchus", + "star.starcaller.overworld.5327": "B Orion", + "star.starcaller.overworld.5328": "B Pavo", + "star.starcaller.overworld.5329": "B Pegasus", + "star.starcaller.overworld.5330": "B Perseus", + "star.starcaller.overworld.5331": "B Phoenix", + "star.starcaller.overworld.5332": "B Pictor", + "star.starcaller.overworld.5333": "B Pisces", + "star.starcaller.overworld.5334": "B Piscis Austrinus", + "star.starcaller.overworld.5335": "B Puppis", + "star.starcaller.overworld.5336": "B Pyxis", + "star.starcaller.overworld.5337": "B Reticulum", + "star.starcaller.overworld.5338": "B Sagitta", + "star.starcaller.overworld.5339": "B Sagittarius", + "star.starcaller.overworld.5340": "B Scorpius", + "star.starcaller.overworld.5341": "B Sculptor", + "star.starcaller.overworld.5342": "B Scutum", + "star.starcaller.overworld.5343": "B Serpens", + "star.starcaller.overworld.5344": "B Sextans", + "star.starcaller.overworld.5345": "B Taurus", + "star.starcaller.overworld.5346": "B Telescopium", + "star.starcaller.overworld.5347": "B Triangulum", + "star.starcaller.overworld.5348": "B Triangulum Australe", + "star.starcaller.overworld.5349": "B Tucana", + "star.starcaller.overworld.5350": "B Ursa Major", + "star.starcaller.overworld.5351": "B Ursa Minor", + "star.starcaller.overworld.5352": "B Vela", + "star.starcaller.overworld.5353": "B Virgo", + "star.starcaller.overworld.5354": "B Volans", + "star.starcaller.overworld.5355": "B Vulpecula", + "star.starcaller.overworld.5356": "C Andromeda", + "star.starcaller.overworld.5357": "C Antlia", + "star.starcaller.overworld.5358": "C Apus", + "star.starcaller.overworld.5359": "C Aquarius", + "star.starcaller.overworld.5360": "C Aquila", + "star.starcaller.overworld.5361": "C Ara", + "star.starcaller.overworld.5362": "C Aries", + "star.starcaller.overworld.5363": "C Auriga", + "star.starcaller.overworld.5364": "C Boötes", + "star.starcaller.overworld.5365": "C Caelum", + "star.starcaller.overworld.5366": "C Camelopardalis", + "star.starcaller.overworld.5367": "C Cancer", + "star.starcaller.overworld.5368": "C Canes Venatici", + "star.starcaller.overworld.5369": "C Canis Major", + "star.starcaller.overworld.5370": "C Canis Minor", + "star.starcaller.overworld.5371": "C Capricornus", + "star.starcaller.overworld.5372": "C Carina", + "star.starcaller.overworld.5373": "C Cassiopeia", + "star.starcaller.overworld.5374": "C Centaurus", + "star.starcaller.overworld.5375": "C Cepheus", + "star.starcaller.overworld.5376": "C Cetus", + "star.starcaller.overworld.5377": "C Chamaeleon", + "star.starcaller.overworld.5378": "C Circinus", + "star.starcaller.overworld.5379": "C Columba", + "star.starcaller.overworld.5380": "C Coma Berenices", + "star.starcaller.overworld.5381": "C Corona Australis", + "star.starcaller.overworld.5382": "C Corona Borealis", + "star.starcaller.overworld.5383": "C Corvus", + "star.starcaller.overworld.5384": "C Crater", + "star.starcaller.overworld.5385": "C Crux", + "star.starcaller.overworld.5386": "C Cygnus", + "star.starcaller.overworld.5387": "C Delphinus", + "star.starcaller.overworld.5388": "C Dorado", + "star.starcaller.overworld.5389": "C Draco", + "star.starcaller.overworld.5390": "C Equuleus", + "star.starcaller.overworld.5391": "C Eridanus", + "star.starcaller.overworld.5392": "C Fornax", + "star.starcaller.overworld.5393": "C Gemini", + "star.starcaller.overworld.5394": "C Grus", + "star.starcaller.overworld.5395": "C Hercules", + "star.starcaller.overworld.5396": "C Horologium", + "star.starcaller.overworld.5397": "C Hydra", + "star.starcaller.overworld.5398": "C Hydrus", + "star.starcaller.overworld.5399": "C Indus", + "star.starcaller.overworld.5400": "C Lacerta", + "star.starcaller.overworld.5401": "C Leo", + "star.starcaller.overworld.5402": "C Leo Minor", + "star.starcaller.overworld.5403": "C Lepus", + "star.starcaller.overworld.5404": "C Libra", + "star.starcaller.overworld.5405": "C Lupus", + "star.starcaller.overworld.5406": "C Lynx", + "star.starcaller.overworld.5407": "C Lyra", + "star.starcaller.overworld.5408": "C Mensa", + "star.starcaller.overworld.5409": "C Microscopium", + "star.starcaller.overworld.5410": "C Monoceros", + "star.starcaller.overworld.5411": "C Musca", + "star.starcaller.overworld.5412": "C Norma", + "star.starcaller.overworld.5413": "C Octans", + "star.starcaller.overworld.5414": "C Ophiuchus", + "star.starcaller.overworld.5415": "C Orion", + "star.starcaller.overworld.5416": "C Pavo", + "star.starcaller.overworld.5417": "C Pegasus", + "star.starcaller.overworld.5418": "C Perseus", + "star.starcaller.overworld.5419": "C Phoenix", + "star.starcaller.overworld.5420": "C Pictor", + "star.starcaller.overworld.5421": "C Pisces", + "star.starcaller.overworld.5422": "C Piscis Austrinus", + "star.starcaller.overworld.5423": "C Puppis", + "star.starcaller.overworld.5424": "C Pyxis", + "star.starcaller.overworld.5425": "C Reticulum", + "star.starcaller.overworld.5426": "C Sagitta", + "star.starcaller.overworld.5427": "C Sagittarius", + "star.starcaller.overworld.5428": "C Scorpius", + "star.starcaller.overworld.5429": "C Sculptor", + "star.starcaller.overworld.5430": "C Scutum", + "star.starcaller.overworld.5431": "C Serpens", + "star.starcaller.overworld.5432": "C Sextans", + "star.starcaller.overworld.5433": "C Taurus", + "star.starcaller.overworld.5434": "C Telescopium", + "star.starcaller.overworld.5435": "C Triangulum", + "star.starcaller.overworld.5436": "C Triangulum Australe", + "star.starcaller.overworld.5437": "C Tucana", + "star.starcaller.overworld.5438": "C Ursa Major", + "star.starcaller.overworld.5439": "C Ursa Minor", + "star.starcaller.overworld.5440": "C Vela", + "star.starcaller.overworld.5441": "C Virgo", + "star.starcaller.overworld.5442": "C Volans", + "star.starcaller.overworld.5443": "C Vulpecula", + "star.starcaller.overworld.5444": "D Andromeda", + "star.starcaller.overworld.5445": "D Antlia", + "star.starcaller.overworld.5446": "D Apus", + "star.starcaller.overworld.5447": "D Aquarius", + "star.starcaller.overworld.5448": "D Aquila", + "star.starcaller.overworld.5449": "D Ara", + "star.starcaller.overworld.5450": "D Aries", + "star.starcaller.overworld.5451": "D Auriga", + "star.starcaller.overworld.5452": "D Boötes", + "star.starcaller.overworld.5453": "D Caelum", + "star.starcaller.overworld.5454": "D Camelopardalis", + "star.starcaller.overworld.5455": "D Cancer", + "star.starcaller.overworld.5456": "D Canes Venatici", + "star.starcaller.overworld.5457": "D Canis Major", + "star.starcaller.overworld.5458": "D Canis Minor", + "star.starcaller.overworld.5459": "D Capricornus", + "star.starcaller.overworld.5460": "D Carina", + "star.starcaller.overworld.5461": "D Cassiopeia", + "star.starcaller.overworld.5462": "D Centaurus", + "star.starcaller.overworld.5463": "D Cepheus", + "star.starcaller.overworld.5464": "D Cetus", + "star.starcaller.overworld.5465": "D Chamaeleon", + "star.starcaller.overworld.5466": "D Circinus", + "star.starcaller.overworld.5467": "D Columba", + "star.starcaller.overworld.5468": "D Coma Berenices", + "star.starcaller.overworld.5469": "D Corona Australis", + "star.starcaller.overworld.5470": "D Corona Borealis", + "star.starcaller.overworld.5471": "D Corvus", + "star.starcaller.overworld.5472": "D Crater", + "star.starcaller.overworld.5473": "D Crux", + "star.starcaller.overworld.5474": "D Cygnus", + "star.starcaller.overworld.5475": "D Delphinus", + "star.starcaller.overworld.5476": "D Dorado", + "star.starcaller.overworld.5477": "D Draco", + "star.starcaller.overworld.5478": "D Equuleus", + "star.starcaller.overworld.5479": "D Eridanus", + "star.starcaller.overworld.5480": "D Fornax", + "star.starcaller.overworld.5481": "D Gemini", + "star.starcaller.overworld.5482": "D Grus", + "star.starcaller.overworld.5483": "D Hercules", + "star.starcaller.overworld.5484": "D Horologium", + "star.starcaller.overworld.5485": "D Hydra", + "star.starcaller.overworld.5486": "D Hydrus", + "star.starcaller.overworld.5487": "D Indus", + "star.starcaller.overworld.5488": "D Lacerta", + "star.starcaller.overworld.5489": "D Leo", + "star.starcaller.overworld.5490": "D Leo Minor", + "star.starcaller.overworld.5491": "D Lepus", + "star.starcaller.overworld.5492": "D Libra", + "star.starcaller.overworld.5493": "D Lupus", + "star.starcaller.overworld.5494": "D Lynx", + "star.starcaller.overworld.5495": "D Lyra", + "star.starcaller.overworld.5496": "D Mensa", + "star.starcaller.overworld.5497": "D Microscopium", + "star.starcaller.overworld.5498": "D Monoceros", + "star.starcaller.overworld.5499": "D Musca", + "star.starcaller.overworld.5500": "D Norma", + "star.starcaller.overworld.5501": "D Octans", + "star.starcaller.overworld.5502": "D Ophiuchus", + "star.starcaller.overworld.5503": "D Orion", + "star.starcaller.overworld.5504": "D Pavo", + "star.starcaller.overworld.5505": "D Pegasus", + "star.starcaller.overworld.5506": "D Perseus", + "star.starcaller.overworld.5507": "D Phoenix", + "star.starcaller.overworld.5508": "D Pictor", + "star.starcaller.overworld.5509": "D Pisces", + "star.starcaller.overworld.5510": "D Piscis Austrinus", + "star.starcaller.overworld.5511": "D Puppis", + "star.starcaller.overworld.5512": "D Pyxis", + "star.starcaller.overworld.5513": "D Reticulum", + "star.starcaller.overworld.5514": "D Sagitta", + "star.starcaller.overworld.5515": "D Sagittarius", + "star.starcaller.overworld.5516": "D Scorpius", + "star.starcaller.overworld.5517": "D Sculptor", + "star.starcaller.overworld.5518": "D Scutum", + "star.starcaller.overworld.5519": "D Serpens", + "star.starcaller.overworld.5520": "D Sextans", + "star.starcaller.overworld.5521": "D Taurus", + "star.starcaller.overworld.5522": "D Telescopium", + "star.starcaller.overworld.5523": "D Triangulum", + "star.starcaller.overworld.5524": "D Triangulum Australe", + "star.starcaller.overworld.5525": "D Tucana", + "star.starcaller.overworld.5526": "D Ursa Major", + "star.starcaller.overworld.5527": "D Ursa Minor", + "star.starcaller.overworld.5528": "D Vela", + "star.starcaller.overworld.5529": "D Virgo", + "star.starcaller.overworld.5530": "D Volans", + "star.starcaller.overworld.5531": "D Vulpecula", + "star.starcaller.overworld.5532": "E Andromeda", + "star.starcaller.overworld.5533": "E Antlia", + "star.starcaller.overworld.5534": "E Apus", + "star.starcaller.overworld.5535": "E Aquarius", + "star.starcaller.overworld.5536": "E Aquila", + "star.starcaller.overworld.5537": "E Ara", + "star.starcaller.overworld.5538": "E Aries", + "star.starcaller.overworld.5539": "E Auriga", + "star.starcaller.overworld.5540": "E Boötes", + "star.starcaller.overworld.5541": "E Caelum", + "star.starcaller.overworld.5542": "E Camelopardalis", + "star.starcaller.overworld.5543": "E Cancer", + "star.starcaller.overworld.5544": "E Canes Venatici", + "star.starcaller.overworld.5545": "E Canis Major", + "star.starcaller.overworld.5546": "E Canis Minor", + "star.starcaller.overworld.5547": "E Capricornus", + "star.starcaller.overworld.5548": "E Carina", + "star.starcaller.overworld.5549": "E Cassiopeia", + "star.starcaller.overworld.5550": "E Centaurus", + "star.starcaller.overworld.5551": "E Cepheus", + "star.starcaller.overworld.5552": "E Cetus", + "star.starcaller.overworld.5553": "E Chamaeleon", + "star.starcaller.overworld.5554": "E Circinus", + "star.starcaller.overworld.5555": "E Columba", + "star.starcaller.overworld.5556": "E Coma Berenices", + "star.starcaller.overworld.5557": "E Corona Australis", + "star.starcaller.overworld.5558": "E Corona Borealis", + "star.starcaller.overworld.5559": "E Corvus", + "star.starcaller.overworld.5560": "E Crater", + "star.starcaller.overworld.5561": "E Crux", + "star.starcaller.overworld.5562": "E Cygnus", + "star.starcaller.overworld.5563": "E Delphinus", + "star.starcaller.overworld.5564": "E Dorado", + "star.starcaller.overworld.5565": "E Draco", + "star.starcaller.overworld.5566": "E Equuleus", + "star.starcaller.overworld.5567": "E Eridanus", + "star.starcaller.overworld.5568": "E Fornax", + "star.starcaller.overworld.5569": "E Gemini", + "star.starcaller.overworld.5570": "E Grus", + "star.starcaller.overworld.5571": "E Hercules", + "star.starcaller.overworld.5572": "E Horologium", + "star.starcaller.overworld.5573": "E Hydra", + "star.starcaller.overworld.5574": "E Hydrus", + "star.starcaller.overworld.5575": "E Indus", + "star.starcaller.overworld.5576": "E Lacerta", + "star.starcaller.overworld.5577": "E Leo", + "star.starcaller.overworld.5578": "E Leo Minor", + "star.starcaller.overworld.5579": "E Lepus", + "star.starcaller.overworld.5580": "E Libra", + "star.starcaller.overworld.5581": "E Lupus", + "star.starcaller.overworld.5582": "E Lynx", + "star.starcaller.overworld.5583": "E Lyra", + "star.starcaller.overworld.5584": "E Mensa", + "star.starcaller.overworld.5585": "E Microscopium", + "star.starcaller.overworld.5586": "E Monoceros", + "star.starcaller.overworld.5587": "E Musca", + "star.starcaller.overworld.5588": "E Norma", + "star.starcaller.overworld.5589": "E Octans", + "star.starcaller.overworld.5590": "E Ophiuchus", + "star.starcaller.overworld.5591": "E Orion", + "star.starcaller.overworld.5592": "E Pavo", + "star.starcaller.overworld.5593": "E Pegasus", + "star.starcaller.overworld.5594": "E Perseus", + "star.starcaller.overworld.5595": "E Phoenix", + "star.starcaller.overworld.5596": "E Pictor", + "star.starcaller.overworld.5597": "E Pisces", + "star.starcaller.overworld.5598": "E Piscis Austrinus", + "star.starcaller.overworld.5599": "E Puppis", + "star.starcaller.overworld.5600": "E Pyxis", + "star.starcaller.overworld.5601": "E Reticulum", + "star.starcaller.overworld.5602": "E Sagitta", + "star.starcaller.overworld.5603": "E Sagittarius", + "star.starcaller.overworld.5604": "E Scorpius", + "star.starcaller.overworld.5605": "E Sculptor", + "star.starcaller.overworld.5606": "E Scutum", + "star.starcaller.overworld.5607": "E Serpens", + "star.starcaller.overworld.5608": "E Sextans", + "star.starcaller.overworld.5609": "E Taurus", + "star.starcaller.overworld.5610": "E Telescopium", + "star.starcaller.overworld.5611": "E Triangulum", + "star.starcaller.overworld.5612": "E Triangulum Australe", + "star.starcaller.overworld.5613": "E Tucana", + "star.starcaller.overworld.5614": "E Ursa Major", + "star.starcaller.overworld.5615": "E Ursa Minor", + "star.starcaller.overworld.5616": "E Vela", + "star.starcaller.overworld.5617": "E Virgo", + "star.starcaller.overworld.5618": "E Volans", + "star.starcaller.overworld.5619": "E Vulpecula", + "star.starcaller.overworld.5620": "F Andromeda", + "star.starcaller.overworld.5621": "F Antlia", + "star.starcaller.overworld.5622": "F Apus", + "star.starcaller.overworld.5623": "F Aquarius", + "star.starcaller.overworld.5624": "F Aquila", + "star.starcaller.overworld.5625": "F Ara", + "star.starcaller.overworld.5626": "F Aries", + "star.starcaller.overworld.5627": "F Auriga", + "star.starcaller.overworld.5628": "F Boötes", + "star.starcaller.overworld.5629": "F Caelum", + "star.starcaller.overworld.5630": "F Camelopardalis", + "star.starcaller.overworld.5631": "F Cancer", + "star.starcaller.overworld.5632": "F Canes Venatici", + "star.starcaller.overworld.5633": "F Canis Major", + "star.starcaller.overworld.5634": "F Canis Minor", + "star.starcaller.overworld.5635": "F Capricornus", + "star.starcaller.overworld.5636": "F Carina", + "star.starcaller.overworld.5637": "F Cassiopeia", + "star.starcaller.overworld.5638": "F Centaurus", + "star.starcaller.overworld.5639": "F Cepheus", + "star.starcaller.overworld.5640": "F Cetus", + "star.starcaller.overworld.5641": "F Chamaeleon", + "star.starcaller.overworld.5642": "F Circinus", + "star.starcaller.overworld.5643": "F Columba", + "star.starcaller.overworld.5644": "F Coma Berenices", + "star.starcaller.overworld.5645": "F Corona Australis", + "star.starcaller.overworld.5646": "F Corona Borealis", + "star.starcaller.overworld.5647": "F Corvus", + "star.starcaller.overworld.5648": "F Crater", + "star.starcaller.overworld.5649": "F Crux", + "star.starcaller.overworld.5650": "F Cygnus", + "star.starcaller.overworld.5651": "F Delphinus", + "star.starcaller.overworld.5652": "F Dorado", + "star.starcaller.overworld.5653": "F Draco", + "star.starcaller.overworld.5654": "F Equuleus", + "star.starcaller.overworld.5655": "F Eridanus", + "star.starcaller.overworld.5656": "F Fornax", + "star.starcaller.overworld.5657": "F Gemini", + "star.starcaller.overworld.5658": "F Grus", + "star.starcaller.overworld.5659": "F Hercules", + "star.starcaller.overworld.5660": "F Horologium", + "star.starcaller.overworld.5661": "F Hydra", + "star.starcaller.overworld.5662": "F Hydrus", + "star.starcaller.overworld.5663": "F Indus", + "star.starcaller.overworld.5664": "F Lacerta", + "star.starcaller.overworld.5665": "F Leo", + "star.starcaller.overworld.5666": "F Leo Minor", + "star.starcaller.overworld.5667": "F Lepus", + "star.starcaller.overworld.5668": "F Libra", + "star.starcaller.overworld.5669": "F Lupus", + "star.starcaller.overworld.5670": "F Lynx", + "star.starcaller.overworld.5671": "F Lyra", + "star.starcaller.overworld.5672": "F Mensa", + "star.starcaller.overworld.5673": "F Microscopium", + "star.starcaller.overworld.5674": "F Monoceros", + "star.starcaller.overworld.5675": "F Musca", + "star.starcaller.overworld.5676": "F Norma", + "star.starcaller.overworld.5677": "F Octans", + "star.starcaller.overworld.5678": "F Ophiuchus", + "star.starcaller.overworld.5679": "F Orion", + "star.starcaller.overworld.5680": "F Pavo", + "star.starcaller.overworld.5681": "F Pegasus", + "star.starcaller.overworld.5682": "F Perseus", + "star.starcaller.overworld.5683": "F Phoenix", + "star.starcaller.overworld.5684": "F Pictor", + "star.starcaller.overworld.5685": "F Pisces", + "star.starcaller.overworld.5686": "F Piscis Austrinus", + "star.starcaller.overworld.5687": "F Puppis", + "star.starcaller.overworld.5688": "F Pyxis", + "star.starcaller.overworld.5689": "F Reticulum", + "star.starcaller.overworld.5690": "F Sagitta", + "star.starcaller.overworld.5691": "F Sagittarius", + "star.starcaller.overworld.5692": "F Scorpius", + "star.starcaller.overworld.5693": "F Sculptor", + "star.starcaller.overworld.5694": "F Scutum", + "star.starcaller.overworld.5695": "F Serpens", + "star.starcaller.overworld.5696": "F Sextans", + "star.starcaller.overworld.5697": "F Taurus", + "star.starcaller.overworld.5698": "F Telescopium", + "star.starcaller.overworld.5699": "F Triangulum", + "star.starcaller.overworld.5700": "F Triangulum Australe", + "star.starcaller.overworld.5701": "F Tucana", + "star.starcaller.overworld.5702": "F Ursa Major", + "star.starcaller.overworld.5703": "F Ursa Minor", + "star.starcaller.overworld.5704": "F Vela", + "star.starcaller.overworld.5705": "F Virgo", + "star.starcaller.overworld.5706": "F Volans", + "star.starcaller.overworld.5707": "F Vulpecula", + "star.starcaller.overworld.5708": "G Andromeda", + "star.starcaller.overworld.5709": "G Antlia", + "star.starcaller.overworld.5710": "G Apus", + "star.starcaller.overworld.5711": "G Aquarius", + "star.starcaller.overworld.5712": "G Aquila", + "star.starcaller.overworld.5713": "G Ara", + "star.starcaller.overworld.5714": "G Aries", + "star.starcaller.overworld.5715": "G Auriga", + "star.starcaller.overworld.5716": "G Boötes", + "star.starcaller.overworld.5717": "G Caelum", + "star.starcaller.overworld.5718": "G Camelopardalis", + "star.starcaller.overworld.5719": "G Cancer", + "star.starcaller.overworld.5720": "G Canes Venatici", + "star.starcaller.overworld.5721": "G Canis Major", + "star.starcaller.overworld.5722": "G Canis Minor", + "star.starcaller.overworld.5723": "G Capricornus", + "star.starcaller.overworld.5724": "G Carina", + "star.starcaller.overworld.5725": "G Cassiopeia", + "star.starcaller.overworld.5726": "G Centaurus", + "star.starcaller.overworld.5727": "G Cepheus", + "star.starcaller.overworld.5728": "G Cetus", + "star.starcaller.overworld.5729": "G Chamaeleon", + "star.starcaller.overworld.5730": "G Circinus", + "star.starcaller.overworld.5731": "G Columba", + "star.starcaller.overworld.5732": "G Coma Berenices", + "star.starcaller.overworld.5733": "G Corona Australis", + "star.starcaller.overworld.5734": "G Corona Borealis", + "star.starcaller.overworld.5735": "G Corvus", + "star.starcaller.overworld.5736": "G Crater", + "star.starcaller.overworld.5737": "G Crux", + "star.starcaller.overworld.5738": "G Cygnus", + "star.starcaller.overworld.5739": "G Delphinus", + "star.starcaller.overworld.5740": "G Dorado", + "star.starcaller.overworld.5741": "G Draco", + "star.starcaller.overworld.5742": "G Equuleus", + "star.starcaller.overworld.5743": "G Eridanus", + "star.starcaller.overworld.5744": "G Fornax", + "star.starcaller.overworld.5745": "G Gemini", + "star.starcaller.overworld.5746": "G Grus", + "star.starcaller.overworld.5747": "G Hercules", + "star.starcaller.overworld.5748": "G Horologium", + "star.starcaller.overworld.5749": "G Hydra", + "star.starcaller.overworld.5750": "G Hydrus", + "star.starcaller.overworld.5751": "G Indus", + "star.starcaller.overworld.5752": "G Lacerta", + "star.starcaller.overworld.5753": "G Leo", + "star.starcaller.overworld.5754": "G Leo Minor", + "star.starcaller.overworld.5755": "G Lepus", + "star.starcaller.overworld.5756": "G Libra", + "star.starcaller.overworld.5757": "G Lupus", + "star.starcaller.overworld.5758": "G Lynx", + "star.starcaller.overworld.5759": "G Lyra", + "star.starcaller.overworld.5760": "G Mensa", + "star.starcaller.overworld.5761": "G Microscopium", + "star.starcaller.overworld.5762": "G Monoceros", + "star.starcaller.overworld.5763": "G Musca", + "star.starcaller.overworld.5764": "G Norma", + "star.starcaller.overworld.5765": "G Octans", + "star.starcaller.overworld.5766": "G Ophiuchus", + "star.starcaller.overworld.5767": "G Orion", + "star.starcaller.overworld.5768": "G Pavo", + "star.starcaller.overworld.5769": "G Pegasus", + "star.starcaller.overworld.5770": "G Perseus", + "star.starcaller.overworld.5771": "G Phoenix", + "star.starcaller.overworld.5772": "G Pictor", + "star.starcaller.overworld.5773": "G Pisces", + "star.starcaller.overworld.5774": "G Piscis Austrinus", + "star.starcaller.overworld.5775": "G Puppis", + "star.starcaller.overworld.5776": "G Pyxis", + "star.starcaller.overworld.5777": "G Reticulum", + "star.starcaller.overworld.5778": "G Sagitta", + "star.starcaller.overworld.5779": "G Sagittarius", + "star.starcaller.overworld.5780": "G Scorpius", + "star.starcaller.overworld.5781": "G Sculptor", + "star.starcaller.overworld.5782": "G Scutum", + "star.starcaller.overworld.5783": "G Serpens", + "star.starcaller.overworld.5784": "G Sextans", + "star.starcaller.overworld.5785": "G Taurus", + "star.starcaller.overworld.5786": "G Telescopium", + "star.starcaller.overworld.5787": "G Triangulum", + "star.starcaller.overworld.5788": "G Triangulum Australe", + "star.starcaller.overworld.5789": "G Tucana", + "star.starcaller.overworld.5790": "G Ursa Major", + "star.starcaller.overworld.5791": "G Ursa Minor", + "star.starcaller.overworld.5792": "G Vela", + "star.starcaller.overworld.5793": "G Virgo", + "star.starcaller.overworld.5794": "G Volans", + "star.starcaller.overworld.5795": "G Vulpecula", + "star.starcaller.overworld.5796": "H Andromeda", + "star.starcaller.overworld.5797": "H Antlia", + "star.starcaller.overworld.5798": "H Apus", + "star.starcaller.overworld.5799": "H Aquarius", + "star.starcaller.overworld.5800": "H Aquila", + "star.starcaller.overworld.5801": "H Ara", + "star.starcaller.overworld.5802": "H Aries", + "star.starcaller.overworld.5803": "H Auriga", + "star.starcaller.overworld.5804": "H Boötes", + "star.starcaller.overworld.5805": "H Caelum", + "star.starcaller.overworld.5806": "H Camelopardalis", + "star.starcaller.overworld.5807": "H Cancer", + "star.starcaller.overworld.5808": "H Canes Venatici", + "star.starcaller.overworld.5809": "H Canis Major", + "star.starcaller.overworld.5810": "H Canis Minor", + "star.starcaller.overworld.5811": "H Capricornus", + "star.starcaller.overworld.5812": "H Carina", + "star.starcaller.overworld.5813": "H Cassiopeia", + "star.starcaller.overworld.5814": "H Centaurus", + "star.starcaller.overworld.5815": "H Cepheus", + "star.starcaller.overworld.5816": "H Cetus", + "star.starcaller.overworld.5817": "H Chamaeleon", + "star.starcaller.overworld.5818": "H Circinus", + "star.starcaller.overworld.5819": "H Columba", + "star.starcaller.overworld.5820": "H Coma Berenices", + "star.starcaller.overworld.5821": "H Corona Australis", + "star.starcaller.overworld.5822": "H Corona Borealis", + "star.starcaller.overworld.5823": "H Corvus", + "star.starcaller.overworld.5824": "H Crater", + "star.starcaller.overworld.5825": "H Crux", + "star.starcaller.overworld.5826": "H Cygnus", + "star.starcaller.overworld.5827": "H Delphinus", + "star.starcaller.overworld.5828": "H Dorado", + "star.starcaller.overworld.5829": "H Draco", + "star.starcaller.overworld.5830": "H Equuleus", + "star.starcaller.overworld.5831": "H Eridanus", + "star.starcaller.overworld.5832": "H Fornax", + "star.starcaller.overworld.5833": "H Gemini", + "star.starcaller.overworld.5834": "H Grus", + "star.starcaller.overworld.5835": "H Hercules", + "star.starcaller.overworld.5836": "H Horologium", + "star.starcaller.overworld.5837": "H Hydra", + "star.starcaller.overworld.5838": "H Hydrus", + "star.starcaller.overworld.5839": "H Indus", + "star.starcaller.overworld.5840": "H Lacerta", + "star.starcaller.overworld.5841": "H Leo", + "star.starcaller.overworld.5842": "H Leo Minor", + "star.starcaller.overworld.5843": "H Lepus", + "star.starcaller.overworld.5844": "H Libra", + "star.starcaller.overworld.5845": "H Lupus", + "star.starcaller.overworld.5846": "H Lynx", + "star.starcaller.overworld.5847": "H Lyra", + "star.starcaller.overworld.5848": "H Mensa", + "star.starcaller.overworld.5849": "H Microscopium", + "star.starcaller.overworld.5850": "H Monoceros", + "star.starcaller.overworld.5851": "H Musca", + "star.starcaller.overworld.5852": "H Norma", + "star.starcaller.overworld.5853": "H Octans", + "star.starcaller.overworld.5854": "H Ophiuchus", + "star.starcaller.overworld.5855": "H Orion", + "star.starcaller.overworld.5856": "H Pavo", + "star.starcaller.overworld.5857": "H Pegasus", + "star.starcaller.overworld.5858": "H Perseus", + "star.starcaller.overworld.5859": "H Phoenix", + "star.starcaller.overworld.5860": "H Pictor", + "star.starcaller.overworld.5861": "H Pisces", + "star.starcaller.overworld.5862": "H Piscis Austrinus", + "star.starcaller.overworld.5863": "H Puppis", + "star.starcaller.overworld.5864": "H Pyxis", + "star.starcaller.overworld.5865": "H Reticulum", + "star.starcaller.overworld.5866": "H Sagitta", + "star.starcaller.overworld.5867": "H Sagittarius", + "star.starcaller.overworld.5868": "H Scorpius", + "star.starcaller.overworld.5869": "H Sculptor", + "star.starcaller.overworld.5870": "H Scutum", + "star.starcaller.overworld.5871": "H Serpens", + "star.starcaller.overworld.5872": "H Sextans", + "star.starcaller.overworld.5873": "H Taurus", + "star.starcaller.overworld.5874": "H Telescopium", + "star.starcaller.overworld.5875": "H Triangulum", + "star.starcaller.overworld.5876": "H Triangulum Australe", + "star.starcaller.overworld.5877": "H Tucana", + "star.starcaller.overworld.5878": "H Ursa Major", + "star.starcaller.overworld.5879": "H Ursa Minor", + "star.starcaller.overworld.5880": "H Vela", + "star.starcaller.overworld.5881": "H Virgo", + "star.starcaller.overworld.5882": "H Volans", + "star.starcaller.overworld.5883": "H Vulpecula", + "star.starcaller.overworld.5884": "I Andromeda", + "star.starcaller.overworld.5885": "I Antlia", + "star.starcaller.overworld.5886": "I Apus", + "star.starcaller.overworld.5887": "I Aquarius", + "star.starcaller.overworld.5888": "I Aquila", + "star.starcaller.overworld.5889": "I Ara", + "star.starcaller.overworld.5890": "I Aries", + "star.starcaller.overworld.5891": "I Auriga", + "star.starcaller.overworld.5892": "I Boötes", + "star.starcaller.overworld.5893": "I Caelum", + "star.starcaller.overworld.5894": "I Camelopardalis", + "star.starcaller.overworld.5895": "I Cancer", + "star.starcaller.overworld.5896": "I Canes Venatici", + "star.starcaller.overworld.5897": "I Canis Major", + "star.starcaller.overworld.5898": "I Canis Minor", + "star.starcaller.overworld.5899": "I Capricornus", + "star.starcaller.overworld.5900": "I Carina", + "star.starcaller.overworld.5901": "I Cassiopeia", + "star.starcaller.overworld.5902": "I Centaurus", + "star.starcaller.overworld.5903": "I Cepheus", + "star.starcaller.overworld.5904": "I Cetus", + "star.starcaller.overworld.5905": "I Chamaeleon", + "star.starcaller.overworld.5906": "I Circinus", + "star.starcaller.overworld.5907": "I Columba", + "star.starcaller.overworld.5908": "I Coma Berenices", + "star.starcaller.overworld.5909": "I Corona Australis", + "star.starcaller.overworld.5910": "I Corona Borealis", + "star.starcaller.overworld.5911": "I Corvus", + "star.starcaller.overworld.5912": "I Crater", + "star.starcaller.overworld.5913": "I Crux", + "star.starcaller.overworld.5914": "I Cygnus", + "star.starcaller.overworld.5915": "I Delphinus", + "star.starcaller.overworld.5916": "I Dorado", + "star.starcaller.overworld.5917": "I Draco", + "star.starcaller.overworld.5918": "I Equuleus", + "star.starcaller.overworld.5919": "I Eridanus", + "star.starcaller.overworld.5920": "I Fornax", + "star.starcaller.overworld.5921": "I Gemini", + "star.starcaller.overworld.5922": "I Grus", + "star.starcaller.overworld.5923": "I Hercules", + "star.starcaller.overworld.5924": "I Horologium", + "star.starcaller.overworld.5925": "I Hydra", + "star.starcaller.overworld.5926": "I Hydrus", + "star.starcaller.overworld.5927": "I Indus", + "star.starcaller.overworld.5928": "I Lacerta", + "star.starcaller.overworld.5929": "I Leo", + "star.starcaller.overworld.5930": "I Leo Minor", + "star.starcaller.overworld.5931": "I Lepus", + "star.starcaller.overworld.5932": "I Libra", + "star.starcaller.overworld.5933": "I Lupus", + "star.starcaller.overworld.5934": "I Lynx", + "star.starcaller.overworld.5935": "I Lyra", + "star.starcaller.overworld.5936": "I Mensa", + "star.starcaller.overworld.5937": "I Microscopium", + "star.starcaller.overworld.5938": "I Monoceros", + "star.starcaller.overworld.5939": "I Musca", + "star.starcaller.overworld.5940": "I Norma", + "star.starcaller.overworld.5941": "I Octans", + "star.starcaller.overworld.5942": "I Ophiuchus", + "star.starcaller.overworld.5943": "I Orion", + "star.starcaller.overworld.5944": "I Pavo", + "star.starcaller.overworld.5945": "I Pegasus", + "star.starcaller.overworld.5946": "I Perseus", + "star.starcaller.overworld.5947": "I Phoenix", + "star.starcaller.overworld.5948": "I Pictor", + "star.starcaller.overworld.5949": "I Pisces", + "star.starcaller.overworld.5950": "I Piscis Austrinus", + "star.starcaller.overworld.5951": "I Puppis", + "star.starcaller.overworld.5952": "I Pyxis", + "star.starcaller.overworld.5953": "I Reticulum", + "star.starcaller.overworld.5954": "I Sagitta", + "star.starcaller.overworld.5955": "I Sagittarius", + "star.starcaller.overworld.5956": "I Scorpius", + "star.starcaller.overworld.5957": "I Sculptor", + "star.starcaller.overworld.5958": "I Scutum", + "star.starcaller.overworld.5959": "I Serpens", + "star.starcaller.overworld.5960": "I Sextans", + "star.starcaller.overworld.5961": "I Taurus", + "star.starcaller.overworld.5962": "I Telescopium", + "star.starcaller.overworld.5963": "I Triangulum", + "star.starcaller.overworld.5964": "I Triangulum Australe", + "star.starcaller.overworld.5965": "I Tucana", + "star.starcaller.overworld.5966": "I Ursa Major", + "star.starcaller.overworld.5967": "I Ursa Minor", + "star.starcaller.overworld.5968": "I Vela", + "star.starcaller.overworld.5969": "I Virgo", + "star.starcaller.overworld.5970": "I Volans", + "star.starcaller.overworld.5971": "I Vulpecula", + "star.starcaller.overworld.5972": "J Andromeda", + "star.starcaller.overworld.5973": "J Antlia", + "star.starcaller.overworld.5974": "J Apus", + "star.starcaller.overworld.5975": "J Aquarius", + "star.starcaller.overworld.5976": "J Aquila", + "star.starcaller.overworld.5977": "J Ara", + "star.starcaller.overworld.5978": "J Aries", + "star.starcaller.overworld.5979": "J Auriga", + "star.starcaller.overworld.5980": "J Boötes", + "star.starcaller.overworld.5981": "J Caelum", + "star.starcaller.overworld.5982": "J Camelopardalis", + "star.starcaller.overworld.5983": "J Cancer", + "star.starcaller.overworld.5984": "J Canes Venatici", + "star.starcaller.overworld.5985": "J Canis Major", + "star.starcaller.overworld.5986": "J Canis Minor", + "star.starcaller.overworld.5987": "J Capricornus", + "star.starcaller.overworld.5988": "J Carina", + "star.starcaller.overworld.5989": "J Cassiopeia", + "star.starcaller.overworld.5990": "J Centaurus", + "star.starcaller.overworld.5991": "J Cepheus", + "star.starcaller.overworld.5992": "J Cetus", + "star.starcaller.overworld.5993": "J Chamaeleon", + "star.starcaller.overworld.5994": "J Circinus", + "star.starcaller.overworld.5995": "J Columba", + "star.starcaller.overworld.5996": "J Coma Berenices", + "star.starcaller.overworld.5997": "J Corona Australis", + "star.starcaller.overworld.5998": "J Corona Borealis", + "star.starcaller.overworld.5999": "J Corvus", + "star.starcaller.overworld.6000": "J Crater", + "star.starcaller.overworld.6001": "J Crux", + "star.starcaller.overworld.6002": "J Cygnus", + "star.starcaller.overworld.6003": "J Delphinus", + "star.starcaller.overworld.6004": "J Dorado", + "star.starcaller.overworld.6005": "J Draco", + "star.starcaller.overworld.6006": "J Equuleus", + "star.starcaller.overworld.6007": "J Eridanus", + "star.starcaller.overworld.6008": "J Fornax", + "star.starcaller.overworld.6009": "J Gemini", + "star.starcaller.overworld.6010": "J Grus", + "star.starcaller.overworld.6011": "J Hercules", + "star.starcaller.overworld.6012": "J Horologium", + "star.starcaller.overworld.6013": "J Hydra", + "star.starcaller.overworld.6014": "J Hydrus", + "star.starcaller.overworld.6015": "J Indus", + "star.starcaller.overworld.6016": "J Lacerta", + "star.starcaller.overworld.6017": "J Leo", + "star.starcaller.overworld.6018": "J Leo Minor", + "star.starcaller.overworld.6019": "J Lepus", + "star.starcaller.overworld.6020": "J Libra", + "star.starcaller.overworld.6021": "J Lupus", + "star.starcaller.overworld.6022": "J Lynx", + "star.starcaller.overworld.6023": "J Lyra", + "star.starcaller.overworld.6024": "J Mensa", + "star.starcaller.overworld.6025": "J Microscopium", + "star.starcaller.overworld.6026": "J Monoceros", + "star.starcaller.overworld.6027": "J Musca", + "star.starcaller.overworld.6028": "J Norma", + "star.starcaller.overworld.6029": "J Octans", + "star.starcaller.overworld.6030": "J Ophiuchus", + "star.starcaller.overworld.6031": "J Orion", + "star.starcaller.overworld.6032": "J Pavo", + "star.starcaller.overworld.6033": "J Pegasus", + "star.starcaller.overworld.6034": "J Perseus", + "star.starcaller.overworld.6035": "J Phoenix", + "star.starcaller.overworld.6036": "J Pictor", + "star.starcaller.overworld.6037": "J Pisces", + "star.starcaller.overworld.6038": "J Piscis Austrinus", + "star.starcaller.overworld.6039": "J Puppis", + "star.starcaller.overworld.6040": "J Pyxis", + "star.starcaller.overworld.6041": "J Reticulum", + "star.starcaller.overworld.6042": "J Sagitta", + "star.starcaller.overworld.6043": "J Sagittarius", + "star.starcaller.overworld.6044": "J Scorpius", + "star.starcaller.overworld.6045": "J Sculptor", + "star.starcaller.overworld.6046": "J Scutum", + "star.starcaller.overworld.6047": "J Serpens", + "star.starcaller.overworld.6048": "J Sextans", + "star.starcaller.overworld.6049": "J Taurus", + "star.starcaller.overworld.6050": "J Telescopium", + "star.starcaller.overworld.6051": "J Triangulum", + "star.starcaller.overworld.6052": "J Triangulum Australe", + "star.starcaller.overworld.6053": "J Tucana", + "star.starcaller.overworld.6054": "J Ursa Major", + "star.starcaller.overworld.6055": "J Ursa Minor", + "star.starcaller.overworld.6056": "J Vela", + "star.starcaller.overworld.6057": "J Virgo", + "star.starcaller.overworld.6058": "J Volans", + "star.starcaller.overworld.6059": "J Vulpecula", + "star.starcaller.overworld.6060": "K Andromeda", + "star.starcaller.overworld.6061": "K Antlia", + "star.starcaller.overworld.6062": "K Apus", + "star.starcaller.overworld.6063": "K Aquarius", + "star.starcaller.overworld.6064": "K Aquila", + "star.starcaller.overworld.6065": "K Ara", + "star.starcaller.overworld.6066": "K Aries", + "star.starcaller.overworld.6067": "K Auriga", + "star.starcaller.overworld.6068": "K Boötes", + "star.starcaller.overworld.6069": "K Caelum", + "star.starcaller.overworld.6070": "K Camelopardalis", + "star.starcaller.overworld.6071": "K Cancer", + "star.starcaller.overworld.6072": "K Canes Venatici", + "star.starcaller.overworld.6073": "K Canis Major", + "star.starcaller.overworld.6074": "K Canis Minor", + "star.starcaller.overworld.6075": "K Capricornus", + "star.starcaller.overworld.6076": "K Carina", + "star.starcaller.overworld.6077": "K Cassiopeia", + "star.starcaller.overworld.6078": "K Centaurus", + "star.starcaller.overworld.6079": "K Cepheus", + "star.starcaller.overworld.6080": "K Cetus", + "star.starcaller.overworld.6081": "K Chamaeleon", + "star.starcaller.overworld.6082": "K Circinus", + "star.starcaller.overworld.6083": "K Columba", + "star.starcaller.overworld.6084": "K Coma Berenices", + "star.starcaller.overworld.6085": "K Corona Australis", + "star.starcaller.overworld.6086": "K Corona Borealis", + "star.starcaller.overworld.6087": "K Corvus", + "star.starcaller.overworld.6088": "K Crater", + "star.starcaller.overworld.6089": "K Crux", + "star.starcaller.overworld.6090": "K Cygnus", + "star.starcaller.overworld.6091": "K Delphinus", + "star.starcaller.overworld.6092": "K Dorado", + "star.starcaller.overworld.6093": "K Draco", + "star.starcaller.overworld.6094": "K Equuleus", + "star.starcaller.overworld.6095": "K Eridanus", + "star.starcaller.overworld.6096": "K Fornax", + "star.starcaller.overworld.6097": "K Gemini", + "star.starcaller.overworld.6098": "K Grus", + "star.starcaller.overworld.6099": "K Hercules", + "star.starcaller.overworld.6100": "K Horologium", + "star.starcaller.overworld.6101": "K Hydra", + "star.starcaller.overworld.6102": "K Hydrus", + "star.starcaller.overworld.6103": "K Indus", + "star.starcaller.overworld.6104": "K Lacerta", + "star.starcaller.overworld.6105": "K Leo", + "star.starcaller.overworld.6106": "K Leo Minor", + "star.starcaller.overworld.6107": "K Lepus", + "star.starcaller.overworld.6108": "K Libra", + "star.starcaller.overworld.6109": "K Lupus", + "star.starcaller.overworld.6110": "K Lynx", + "star.starcaller.overworld.6111": "K Lyra", + "star.starcaller.overworld.6112": "K Mensa", + "star.starcaller.overworld.6113": "K Microscopium", + "star.starcaller.overworld.6114": "K Monoceros", + "star.starcaller.overworld.6115": "K Musca", + "star.starcaller.overworld.6116": "K Norma", + "star.starcaller.overworld.6117": "K Octans", + "star.starcaller.overworld.6118": "K Ophiuchus", + "star.starcaller.overworld.6119": "K Orion", + "star.starcaller.overworld.6120": "K Pavo", + "star.starcaller.overworld.6121": "K Pegasus", + "star.starcaller.overworld.6122": "K Perseus", + "star.starcaller.overworld.6123": "K Phoenix", + "star.starcaller.overworld.6124": "K Pictor", + "star.starcaller.overworld.6125": "K Pisces", + "star.starcaller.overworld.6126": "K Piscis Austrinus", + "star.starcaller.overworld.6127": "K Puppis", + "star.starcaller.overworld.6128": "K Pyxis", + "star.starcaller.overworld.6129": "K Reticulum", + "star.starcaller.overworld.6130": "K Sagitta", + "star.starcaller.overworld.6131": "K Sagittarius", + "star.starcaller.overworld.6132": "K Scorpius", + "star.starcaller.overworld.6133": "K Sculptor", + "star.starcaller.overworld.6134": "K Scutum", + "star.starcaller.overworld.6135": "K Serpens", + "star.starcaller.overworld.6136": "K Sextans", + "star.starcaller.overworld.6137": "K Taurus", + "star.starcaller.overworld.6138": "K Telescopium", + "star.starcaller.overworld.6139": "K Triangulum", + "star.starcaller.overworld.6140": "K Triangulum Australe", + "star.starcaller.overworld.6141": "K Tucana", + "star.starcaller.overworld.6142": "K Ursa Major", + "star.starcaller.overworld.6143": "K Ursa Minor", + "star.starcaller.overworld.6144": "K Vela", + "star.starcaller.overworld.6145": "K Virgo", + "star.starcaller.overworld.6146": "K Volans", + "star.starcaller.overworld.6147": "K Vulpecula", + "star.starcaller.overworld.6148": "L Andromeda", + "star.starcaller.overworld.6149": "L Antlia", + "star.starcaller.overworld.6150": "L Apus", + "star.starcaller.overworld.6151": "L Aquarius", + "star.starcaller.overworld.6152": "L Aquila", + "star.starcaller.overworld.6153": "L Ara", + "star.starcaller.overworld.6154": "L Aries", + "star.starcaller.overworld.6155": "L Auriga", + "star.starcaller.overworld.6156": "L Boötes", + "star.starcaller.overworld.6157": "L Caelum", + "star.starcaller.overworld.6158": "L Camelopardalis", + "star.starcaller.overworld.6159": "L Cancer", + "star.starcaller.overworld.6160": "L Canes Venatici", + "star.starcaller.overworld.6161": "L Canis Major", + "star.starcaller.overworld.6162": "L Canis Minor", + "star.starcaller.overworld.6163": "L Capricornus", + "star.starcaller.overworld.6164": "L Carina", + "star.starcaller.overworld.6165": "L Cassiopeia", + "star.starcaller.overworld.6166": "L Centaurus", + "star.starcaller.overworld.6167": "L Cepheus", + "star.starcaller.overworld.6168": "L Cetus", + "star.starcaller.overworld.6169": "L Chamaeleon", + "star.starcaller.overworld.6170": "L Circinus", + "star.starcaller.overworld.6171": "L Columba", + "star.starcaller.overworld.6172": "L Coma Berenices", + "star.starcaller.overworld.6173": "L Corona Australis", + "star.starcaller.overworld.6174": "L Corona Borealis", + "star.starcaller.overworld.6175": "L Corvus", + "star.starcaller.overworld.6176": "L Crater", + "star.starcaller.overworld.6177": "L Crux", + "star.starcaller.overworld.6178": "L Cygnus", + "star.starcaller.overworld.6179": "L Delphinus", + "star.starcaller.overworld.6180": "L Dorado", + "star.starcaller.overworld.6181": "L Draco", + "star.starcaller.overworld.6182": "L Equuleus", + "star.starcaller.overworld.6183": "L Eridanus", + "star.starcaller.overworld.6184": "L Fornax", + "star.starcaller.overworld.6185": "L Gemini", + "star.starcaller.overworld.6186": "L Grus", + "star.starcaller.overworld.6187": "L Hercules", + "star.starcaller.overworld.6188": "L Horologium", + "star.starcaller.overworld.6189": "L Hydra", + "star.starcaller.overworld.6190": "L Hydrus", + "star.starcaller.overworld.6191": "L Indus", + "star.starcaller.overworld.6192": "L Lacerta", + "star.starcaller.overworld.6193": "L Leo", + "star.starcaller.overworld.6194": "L Leo Minor", + "star.starcaller.overworld.6195": "L Lepus", + "star.starcaller.overworld.6196": "L Libra", + "star.starcaller.overworld.6197": "L Lupus", + "star.starcaller.overworld.6198": "L Lynx", + "star.starcaller.overworld.6199": "L Lyra", + "star.starcaller.overworld.6200": "L Mensa", + "star.starcaller.overworld.6201": "L Microscopium", + "star.starcaller.overworld.6202": "L Monoceros", + "star.starcaller.overworld.6203": "L Musca", + "star.starcaller.overworld.6204": "L Norma", + "star.starcaller.overworld.6205": "L Octans", + "star.starcaller.overworld.6206": "L Ophiuchus", + "star.starcaller.overworld.6207": "L Orion", + "star.starcaller.overworld.6208": "L Pavo", + "star.starcaller.overworld.6209": "L Pegasus", + "star.starcaller.overworld.6210": "L Perseus", + "star.starcaller.overworld.6211": "L Phoenix", + "star.starcaller.overworld.6212": "L Pictor", + "star.starcaller.overworld.6213": "L Pisces", + "star.starcaller.overworld.6214": "L Piscis Austrinus", + "star.starcaller.overworld.6215": "L Puppis", + "star.starcaller.overworld.6216": "L Pyxis", + "star.starcaller.overworld.6217": "L Reticulum", + "star.starcaller.overworld.6218": "L Sagitta", + "star.starcaller.overworld.6219": "L Sagittarius", + "star.starcaller.overworld.6220": "L Scorpius", + "star.starcaller.overworld.6221": "L Sculptor", + "star.starcaller.overworld.6222": "L Scutum", + "star.starcaller.overworld.6223": "L Serpens", + "star.starcaller.overworld.6224": "L Sextans", + "star.starcaller.overworld.6225": "L Taurus", + "star.starcaller.overworld.6226": "L Telescopium", + "star.starcaller.overworld.6227": "L Triangulum", + "star.starcaller.overworld.6228": "L Triangulum Australe", + "star.starcaller.overworld.6229": "L Tucana", + "star.starcaller.overworld.6230": "L Ursa Major", + "star.starcaller.overworld.6231": "L Ursa Minor", + "star.starcaller.overworld.6232": "L Vela", + "star.starcaller.overworld.6233": "L Virgo", + "star.starcaller.overworld.6234": "L Volans", + "star.starcaller.overworld.6235": "L Vulpecula", + "star.starcaller.overworld.6236": "M Andromeda", + "star.starcaller.overworld.6237": "M Antlia", + "star.starcaller.overworld.6238": "M Apus", + "star.starcaller.overworld.6239": "M Aquarius", + "star.starcaller.overworld.6240": "M Aquila", + "star.starcaller.overworld.6241": "M Ara", + "star.starcaller.overworld.6242": "M Aries", + "star.starcaller.overworld.6243": "M Auriga", + "star.starcaller.overworld.6244": "M Boötes", + "star.starcaller.overworld.6245": "M Caelum", + "star.starcaller.overworld.6246": "M Camelopardalis", + "star.starcaller.overworld.6247": "M Cancer", + "star.starcaller.overworld.6248": "M Canes Venatici", + "star.starcaller.overworld.6249": "M Canis Major", + "star.starcaller.overworld.6250": "M Canis Minor", + "star.starcaller.overworld.6251": "M Capricornus", + "star.starcaller.overworld.6252": "M Carina", + "star.starcaller.overworld.6253": "M Cassiopeia", + "star.starcaller.overworld.6254": "M Centaurus", + "star.starcaller.overworld.6255": "M Cepheus", + "star.starcaller.overworld.6256": "M Cetus", + "star.starcaller.overworld.6257": "M Chamaeleon", + "star.starcaller.overworld.6258": "M Circinus", + "star.starcaller.overworld.6259": "M Columba", + "star.starcaller.overworld.6260": "M Coma Berenices", + "star.starcaller.overworld.6261": "M Corona Australis", + "star.starcaller.overworld.6262": "M Corona Borealis", + "star.starcaller.overworld.6263": "M Corvus", + "star.starcaller.overworld.6264": "M Crater", + "star.starcaller.overworld.6265": "M Crux", + "star.starcaller.overworld.6266": "M Cygnus", + "star.starcaller.overworld.6267": "M Delphinus", + "star.starcaller.overworld.6268": "M Dorado", + "star.starcaller.overworld.6269": "M Draco", + "star.starcaller.overworld.6270": "M Equuleus", + "star.starcaller.overworld.6271": "M Eridanus", + "star.starcaller.overworld.6272": "M Fornax", + "star.starcaller.overworld.6273": "M Gemini", + "star.starcaller.overworld.6274": "M Grus", + "star.starcaller.overworld.6275": "M Hercules", + "star.starcaller.overworld.6276": "M Horologium", + "star.starcaller.overworld.6277": "M Hydra", + "star.starcaller.overworld.6278": "M Hydrus", + "star.starcaller.overworld.6279": "M Indus", + "star.starcaller.overworld.6280": "M Lacerta", + "star.starcaller.overworld.6281": "M Leo", + "star.starcaller.overworld.6282": "M Leo Minor", + "star.starcaller.overworld.6283": "M Lepus", + "star.starcaller.overworld.6284": "M Libra", + "star.starcaller.overworld.6285": "M Lupus", + "star.starcaller.overworld.6286": "M Lynx", + "star.starcaller.overworld.6287": "M Lyra", + "star.starcaller.overworld.6288": "M Mensa", + "star.starcaller.overworld.6289": "M Microscopium", + "star.starcaller.overworld.6290": "M Monoceros", + "star.starcaller.overworld.6291": "M Musca", + "star.starcaller.overworld.6292": "M Norma", + "star.starcaller.overworld.6293": "M Octans", + "star.starcaller.overworld.6294": "M Ophiuchus", + "star.starcaller.overworld.6295": "M Orion", + "star.starcaller.overworld.6296": "M Pavo", + "star.starcaller.overworld.6297": "M Pegasus", + "star.starcaller.overworld.6298": "M Perseus", + "star.starcaller.overworld.6299": "M Phoenix", + "star.starcaller.overworld.6300": "M Pictor", + "star.starcaller.overworld.6301": "M Pisces", + "star.starcaller.overworld.6302": "M Piscis Austrinus", + "star.starcaller.overworld.6303": "M Puppis", + "star.starcaller.overworld.6304": "M Pyxis", + "star.starcaller.overworld.6305": "M Reticulum", + "star.starcaller.overworld.6306": "M Sagitta", + "star.starcaller.overworld.6307": "M Sagittarius", + "star.starcaller.overworld.6308": "M Scorpius", + "star.starcaller.overworld.6309": "M Sculptor", + "star.starcaller.overworld.6310": "M Scutum", + "star.starcaller.overworld.6311": "M Serpens", + "star.starcaller.overworld.6312": "M Sextans", + "star.starcaller.overworld.6313": "M Taurus", + "star.starcaller.overworld.6314": "M Telescopium", + "star.starcaller.overworld.6315": "M Triangulum", + "star.starcaller.overworld.6316": "M Triangulum Australe", + "star.starcaller.overworld.6317": "M Tucana", + "star.starcaller.overworld.6318": "M Ursa Major", + "star.starcaller.overworld.6319": "M Ursa Minor", + "star.starcaller.overworld.6320": "M Vela", + "star.starcaller.overworld.6321": "M Virgo", + "star.starcaller.overworld.6322": "M Volans", + "star.starcaller.overworld.6323": "M Vulpecula", + "star.starcaller.overworld.6324": "N Andromeda", + "star.starcaller.overworld.6325": "N Antlia", + "star.starcaller.overworld.6326": "N Apus", + "star.starcaller.overworld.6327": "N Aquarius", + "star.starcaller.overworld.6328": "N Aquila", + "star.starcaller.overworld.6329": "N Ara", + "star.starcaller.overworld.6330": "N Aries", + "star.starcaller.overworld.6331": "N Auriga", + "star.starcaller.overworld.6332": "N Boötes", + "star.starcaller.overworld.6333": "N Caelum", + "star.starcaller.overworld.6334": "N Camelopardalis", + "star.starcaller.overworld.6335": "N Cancer", + "star.starcaller.overworld.6336": "N Canes Venatici", + "star.starcaller.overworld.6337": "N Canis Major", + "star.starcaller.overworld.6338": "N Canis Minor", + "star.starcaller.overworld.6339": "N Capricornus", + "star.starcaller.overworld.6340": "N Carina", + "star.starcaller.overworld.6341": "N Cassiopeia", + "star.starcaller.overworld.6342": "N Centaurus", + "star.starcaller.overworld.6343": "N Cepheus", + "star.starcaller.overworld.6344": "N Cetus", + "star.starcaller.overworld.6345": "N Chamaeleon", + "star.starcaller.overworld.6346": "N Circinus", + "star.starcaller.overworld.6347": "N Columba", + "star.starcaller.overworld.6348": "N Coma Berenices", + "star.starcaller.overworld.6349": "N Corona Australis", + "star.starcaller.overworld.6350": "N Corona Borealis", + "star.starcaller.overworld.6351": "N Corvus", + "star.starcaller.overworld.6352": "N Crater", + "star.starcaller.overworld.6353": "N Crux", + "star.starcaller.overworld.6354": "N Cygnus", + "star.starcaller.overworld.6355": "N Delphinus", + "star.starcaller.overworld.6356": "N Dorado", + "star.starcaller.overworld.6357": "N Draco", + "star.starcaller.overworld.6358": "N Equuleus", + "star.starcaller.overworld.6359": "N Eridanus", + "star.starcaller.overworld.6360": "N Fornax", + "star.starcaller.overworld.6361": "N Gemini", + "star.starcaller.overworld.6362": "N Grus", + "star.starcaller.overworld.6363": "N Hercules", + "star.starcaller.overworld.6364": "N Horologium", + "star.starcaller.overworld.6365": "N Hydra", + "star.starcaller.overworld.6366": "N Hydrus", + "star.starcaller.overworld.6367": "N Indus", + "star.starcaller.overworld.6368": "N Lacerta", + "star.starcaller.overworld.6369": "N Leo", + "star.starcaller.overworld.6370": "N Leo Minor", + "star.starcaller.overworld.6371": "N Lepus", + "star.starcaller.overworld.6372": "N Libra", + "star.starcaller.overworld.6373": "N Lupus", + "star.starcaller.overworld.6374": "N Lynx", + "star.starcaller.overworld.6375": "N Lyra", + "star.starcaller.overworld.6376": "N Mensa", + "star.starcaller.overworld.6377": "N Microscopium", + "star.starcaller.overworld.6378": "N Monoceros", + "star.starcaller.overworld.6379": "N Musca", + "star.starcaller.overworld.6380": "N Norma", + "star.starcaller.overworld.6381": "N Octans", + "star.starcaller.overworld.6382": "N Ophiuchus", + "star.starcaller.overworld.6383": "N Orion", + "star.starcaller.overworld.6384": "N Pavo", + "star.starcaller.overworld.6385": "N Pegasus", + "star.starcaller.overworld.6386": "N Perseus", + "star.starcaller.overworld.6387": "N Phoenix", + "star.starcaller.overworld.6388": "N Pictor", + "star.starcaller.overworld.6389": "N Pisces", + "star.starcaller.overworld.6390": "N Piscis Austrinus", + "star.starcaller.overworld.6391": "N Puppis", + "star.starcaller.overworld.6392": "N Pyxis", + "star.starcaller.overworld.6393": "N Reticulum", + "star.starcaller.overworld.6394": "N Sagitta", + "star.starcaller.overworld.6395": "N Sagittarius", + "star.starcaller.overworld.6396": "N Scorpius", + "star.starcaller.overworld.6397": "N Sculptor", + "star.starcaller.overworld.6398": "N Scutum", + "star.starcaller.overworld.6399": "N Serpens", + "star.starcaller.overworld.6400": "N Sextans", + "star.starcaller.overworld.6401": "N Taurus", + "star.starcaller.overworld.6402": "N Telescopium", + "star.starcaller.overworld.6403": "N Triangulum", + "star.starcaller.overworld.6404": "N Triangulum Australe", + "star.starcaller.overworld.6405": "N Tucana", + "star.starcaller.overworld.6406": "N Ursa Major", + "star.starcaller.overworld.6407": "N Ursa Minor", + "star.starcaller.overworld.6408": "N Vela", + "star.starcaller.overworld.6409": "N Virgo", + "star.starcaller.overworld.6410": "N Volans", + "star.starcaller.overworld.6411": "N Vulpecula", + "star.starcaller.overworld.6412": "O Andromeda", + "star.starcaller.overworld.6413": "O Antlia", + "star.starcaller.overworld.6414": "O Apus", + "star.starcaller.overworld.6415": "O Aquarius", + "star.starcaller.overworld.6416": "O Aquila", + "star.starcaller.overworld.6417": "O Ara", + "star.starcaller.overworld.6418": "O Aries", + "star.starcaller.overworld.6419": "O Auriga", + "star.starcaller.overworld.6420": "O Boötes", + "star.starcaller.overworld.6421": "O Caelum", + "star.starcaller.overworld.6422": "O Camelopardalis", + "star.starcaller.overworld.6423": "O Cancer", + "star.starcaller.overworld.6424": "O Canes Venatici", + "star.starcaller.overworld.6425": "O Canis Major", + "star.starcaller.overworld.6426": "O Canis Minor", + "star.starcaller.overworld.6427": "O Capricornus", + "star.starcaller.overworld.6428": "O Carina", + "star.starcaller.overworld.6429": "O Cassiopeia", + "star.starcaller.overworld.6430": "O Centaurus", + "star.starcaller.overworld.6431": "O Cepheus", + "star.starcaller.overworld.6432": "O Cetus", + "star.starcaller.overworld.6433": "O Chamaeleon", + "star.starcaller.overworld.6434": "O Circinus", + "star.starcaller.overworld.6435": "O Columba", + "star.starcaller.overworld.6436": "O Coma Berenices", + "star.starcaller.overworld.6437": "O Corona Australis", + "star.starcaller.overworld.6438": "O Corona Borealis", + "star.starcaller.overworld.6439": "O Corvus", + "star.starcaller.overworld.6440": "O Crater", + "star.starcaller.overworld.6441": "O Crux", + "star.starcaller.overworld.6442": "O Cygnus", + "star.starcaller.overworld.6443": "O Delphinus", + "star.starcaller.overworld.6444": "O Dorado", + "star.starcaller.overworld.6445": "O Draco", + "star.starcaller.overworld.6446": "O Equuleus", + "star.starcaller.overworld.6447": "O Eridanus", + "star.starcaller.overworld.6448": "O Fornax", + "star.starcaller.overworld.6449": "O Gemini", + "star.starcaller.overworld.6450": "O Grus", + "star.starcaller.overworld.6451": "O Hercules", + "star.starcaller.overworld.6452": "O Horologium", + "star.starcaller.overworld.6453": "O Hydra", + "star.starcaller.overworld.6454": "O Hydrus", + "star.starcaller.overworld.6455": "O Indus", + "star.starcaller.overworld.6456": "O Lacerta", + "star.starcaller.overworld.6457": "O Leo", + "star.starcaller.overworld.6458": "O Leo Minor", + "star.starcaller.overworld.6459": "O Lepus", + "star.starcaller.overworld.6460": "O Libra", + "star.starcaller.overworld.6461": "O Lupus", + "star.starcaller.overworld.6462": "O Lynx", + "star.starcaller.overworld.6463": "O Lyra", + "star.starcaller.overworld.6464": "O Mensa", + "star.starcaller.overworld.6465": "O Microscopium", + "star.starcaller.overworld.6466": "O Monoceros", + "star.starcaller.overworld.6467": "O Musca", + "star.starcaller.overworld.6468": "O Norma", + "star.starcaller.overworld.6469": "O Octans", + "star.starcaller.overworld.6470": "O Ophiuchus", + "star.starcaller.overworld.6471": "O Orion", + "star.starcaller.overworld.6472": "O Pavo", + "star.starcaller.overworld.6473": "O Pegasus", + "star.starcaller.overworld.6474": "O Perseus", + "star.starcaller.overworld.6475": "O Phoenix", + "star.starcaller.overworld.6476": "O Pictor", + "star.starcaller.overworld.6477": "O Pisces", + "star.starcaller.overworld.6478": "O Piscis Austrinus", + "star.starcaller.overworld.6479": "O Puppis", + "star.starcaller.overworld.6480": "O Pyxis", + "star.starcaller.overworld.6481": "O Reticulum", + "star.starcaller.overworld.6482": "O Sagitta", + "star.starcaller.overworld.6483": "O Sagittarius", + "star.starcaller.overworld.6484": "O Scorpius", + "star.starcaller.overworld.6485": "O Sculptor", + "star.starcaller.overworld.6486": "O Scutum", + "star.starcaller.overworld.6487": "O Serpens", + "star.starcaller.overworld.6488": "O Sextans", + "star.starcaller.overworld.6489": "O Taurus", + "star.starcaller.overworld.6490": "O Telescopium", + "star.starcaller.overworld.6491": "O Triangulum", + "star.starcaller.overworld.6492": "O Triangulum Australe", + "star.starcaller.overworld.6493": "O Tucana", + "star.starcaller.overworld.6494": "O Ursa Major", + "star.starcaller.overworld.6495": "O Ursa Minor", + "star.starcaller.overworld.6496": "O Vela", + "star.starcaller.overworld.6497": "O Virgo", + "star.starcaller.overworld.6498": "O Volans", + "star.starcaller.overworld.6499": "O Vulpecula", + "star.starcaller.overworld.6500": "P Andromeda", + "star.starcaller.overworld.6501": "P Antlia", + "star.starcaller.overworld.6502": "P Apus", + "star.starcaller.overworld.6503": "P Aquarius", + "star.starcaller.overworld.6504": "P Aquila", + "star.starcaller.overworld.6505": "P Ara", + "star.starcaller.overworld.6506": "P Aries", + "star.starcaller.overworld.6507": "P Auriga", + "star.starcaller.overworld.6508": "P Boötes", + "star.starcaller.overworld.6509": "P Caelum", + "star.starcaller.overworld.6510": "P Camelopardalis", + "star.starcaller.overworld.6511": "P Cancer", + "star.starcaller.overworld.6512": "P Canes Venatici", + "star.starcaller.overworld.6513": "P Canis Major", + "star.starcaller.overworld.6514": "P Canis Minor", + "star.starcaller.overworld.6515": "P Capricornus", + "star.starcaller.overworld.6516": "P Carina", + "star.starcaller.overworld.6517": "P Cassiopeia", + "star.starcaller.overworld.6518": "P Centaurus", + "star.starcaller.overworld.6519": "P Cepheus", + "star.starcaller.overworld.6520": "P Cetus", + "star.starcaller.overworld.6521": "P Chamaeleon", + "star.starcaller.overworld.6522": "P Circinus", + "star.starcaller.overworld.6523": "P Columba", + "star.starcaller.overworld.6524": "P Coma Berenices", + "star.starcaller.overworld.6525": "P Corona Australis", + "star.starcaller.overworld.6526": "P Corona Borealis", + "star.starcaller.overworld.6527": "P Corvus", + "star.starcaller.overworld.6528": "P Crater", + "star.starcaller.overworld.6529": "P Crux", + "star.starcaller.overworld.6530": "P Cygnus", + "star.starcaller.overworld.6531": "P Delphinus", + "star.starcaller.overworld.6532": "P Dorado", + "star.starcaller.overworld.6533": "P Draco", + "star.starcaller.overworld.6534": "P Equuleus", + "star.starcaller.overworld.6535": "P Eridanus", + "star.starcaller.overworld.6536": "P Fornax", + "star.starcaller.overworld.6537": "P Gemini", + "star.starcaller.overworld.6538": "P Grus", + "star.starcaller.overworld.6539": "P Hercules", + "star.starcaller.overworld.6540": "P Horologium", + "star.starcaller.overworld.6541": "P Hydra", + "star.starcaller.overworld.6542": "P Hydrus", + "star.starcaller.overworld.6543": "P Indus", + "star.starcaller.overworld.6544": "P Lacerta", + "star.starcaller.overworld.6545": "P Leo", + "star.starcaller.overworld.6546": "P Leo Minor", + "star.starcaller.overworld.6547": "P Lepus", + "star.starcaller.overworld.6548": "P Libra", + "star.starcaller.overworld.6549": "P Lupus", + "star.starcaller.overworld.6550": "P Lynx", + "star.starcaller.overworld.6551": "P Lyra", + "star.starcaller.overworld.6552": "P Mensa", + "star.starcaller.overworld.6553": "P Microscopium", + "star.starcaller.overworld.6554": "P Monoceros", + "star.starcaller.overworld.6555": "P Musca", + "star.starcaller.overworld.6556": "P Norma", + "star.starcaller.overworld.6557": "P Octans", + "star.starcaller.overworld.6558": "P Ophiuchus", + "star.starcaller.overworld.6559": "P Orion", + "star.starcaller.overworld.6560": "P Pavo", + "star.starcaller.overworld.6561": "P Pegasus", + "star.starcaller.overworld.6562": "P Perseus", + "star.starcaller.overworld.6563": "P Phoenix", + "star.starcaller.overworld.6564": "P Pictor", + "star.starcaller.overworld.6565": "P Pisces", + "star.starcaller.overworld.6566": "P Piscis Austrinus", + "star.starcaller.overworld.6567": "P Puppis", + "star.starcaller.overworld.6568": "P Pyxis", + "star.starcaller.overworld.6569": "P Reticulum", + "star.starcaller.overworld.6570": "P Sagitta", + "star.starcaller.overworld.6571": "P Sagittarius", + "star.starcaller.overworld.6572": "P Scorpius", + "star.starcaller.overworld.6573": "P Sculptor", + "star.starcaller.overworld.6574": "P Scutum", + "star.starcaller.overworld.6575": "P Serpens", + "star.starcaller.overworld.6576": "P Sextans", + "star.starcaller.overworld.6577": "P Taurus", + "star.starcaller.overworld.6578": "P Telescopium", + "star.starcaller.overworld.6579": "P Triangulum", + "star.starcaller.overworld.6580": "P Triangulum Australe", + "star.starcaller.overworld.6581": "P Tucana", + "star.starcaller.overworld.6582": "P Ursa Major", + "star.starcaller.overworld.6583": "P Ursa Minor", + "star.starcaller.overworld.6584": "P Vela", + "star.starcaller.overworld.6585": "P Virgo", + "star.starcaller.overworld.6586": "P Volans", + "star.starcaller.overworld.6587": "P Vulpecula", + "star.starcaller.overworld.6588": "Q Andromeda", + "star.starcaller.overworld.6589": "Q Antlia", + "star.starcaller.overworld.6590": "Q Apus", + "star.starcaller.overworld.6591": "Q Aquarius", + "star.starcaller.overworld.6592": "Q Aquila", + "star.starcaller.overworld.6593": "Q Ara", + "star.starcaller.overworld.6594": "Q Aries", + "star.starcaller.overworld.6595": "Q Auriga", + "star.starcaller.overworld.6596": "Q Boötes", + "star.starcaller.overworld.6597": "Q Caelum", + "star.starcaller.overworld.6598": "Q Camelopardalis", + "star.starcaller.overworld.6599": "Q Cancer", + "star.starcaller.overworld.6600": "Q Canes Venatici", + "star.starcaller.overworld.6601": "Q Canis Major", + "star.starcaller.overworld.6602": "Q Canis Minor", + "star.starcaller.overworld.6603": "Q Capricornus", + "star.starcaller.overworld.6604": "Q Carina", + "star.starcaller.overworld.6605": "Q Cassiopeia", + "star.starcaller.overworld.6606": "Q Centaurus", + "star.starcaller.overworld.6607": "Q Cepheus", + "star.starcaller.overworld.6608": "Q Cetus", + "star.starcaller.overworld.6609": "Q Chamaeleon", + "star.starcaller.overworld.6610": "Q Circinus", + "star.starcaller.overworld.6611": "Q Columba", + "star.starcaller.overworld.6612": "Q Coma Berenices", + "star.starcaller.overworld.6613": "Q Corona Australis", + "star.starcaller.overworld.6614": "Q Corona Borealis", + "star.starcaller.overworld.6615": "Q Corvus", + "star.starcaller.overworld.6616": "Q Crater", + "star.starcaller.overworld.6617": "Q Crux", + "star.starcaller.overworld.6618": "Q Cygnus", + "star.starcaller.overworld.6619": "Q Delphinus", + "star.starcaller.overworld.6620": "Q Dorado", + "star.starcaller.overworld.6621": "Q Draco", + "star.starcaller.overworld.6622": "Q Equuleus", + "star.starcaller.overworld.6623": "Q Eridanus", + "star.starcaller.overworld.6624": "Q Fornax", + "star.starcaller.overworld.6625": "Q Gemini", + "star.starcaller.overworld.6626": "Q Grus", + "star.starcaller.overworld.6627": "Q Hercules", + "star.starcaller.overworld.6628": "Q Horologium", + "star.starcaller.overworld.6629": "Q Hydra", + "star.starcaller.overworld.6630": "Q Hydrus", + "star.starcaller.overworld.6631": "Q Indus", + "star.starcaller.overworld.6632": "Q Lacerta", + "star.starcaller.overworld.6633": "Q Leo", + "star.starcaller.overworld.6634": "Q Leo Minor", + "star.starcaller.overworld.6635": "Q Lepus", + "star.starcaller.overworld.6636": "Q Libra", + "star.starcaller.overworld.6637": "Q Lupus", + "star.starcaller.overworld.6638": "Q Lynx", + "star.starcaller.overworld.6639": "Q Lyra", + "star.starcaller.overworld.6640": "Q Mensa", + "star.starcaller.overworld.6641": "Q Microscopium", + "star.starcaller.overworld.6642": "Q Monoceros", + "star.starcaller.overworld.6643": "Q Musca", + "star.starcaller.overworld.6644": "Q Norma", + "star.starcaller.overworld.6645": "Q Octans", + "star.starcaller.overworld.6646": "Q Ophiuchus", + "star.starcaller.overworld.6647": "Q Orion", + "star.starcaller.overworld.6648": "Q Pavo", + "star.starcaller.overworld.6649": "Q Pegasus", + "star.starcaller.overworld.6650": "Q Perseus", + "star.starcaller.overworld.6651": "Q Phoenix", + "star.starcaller.overworld.6652": "Q Pictor", + "star.starcaller.overworld.6653": "Q Pisces", + "star.starcaller.overworld.6654": "Q Piscis Austrinus", + "star.starcaller.overworld.6655": "Q Puppis", + "star.starcaller.overworld.6656": "Q Pyxis", + "star.starcaller.overworld.6657": "Q Reticulum", + "star.starcaller.overworld.6658": "Q Sagitta", + "star.starcaller.overworld.6659": "Q Sagittarius", + "star.starcaller.overworld.6660": "Q Scorpius", + "star.starcaller.overworld.6661": "Q Sculptor", + "star.starcaller.overworld.6662": "Q Scutum", + "star.starcaller.overworld.6663": "Q Serpens", + "star.starcaller.overworld.6664": "Q Sextans", + "star.starcaller.overworld.6665": "Q Taurus", + "star.starcaller.overworld.6666": "Q Telescopium", + "star.starcaller.overworld.6667": "Q Triangulum", + "star.starcaller.overworld.6668": "Q Triangulum Australe", + "star.starcaller.overworld.6669": "Q Tucana", + "star.starcaller.overworld.6670": "Q Ursa Major", + "star.starcaller.overworld.6671": "Q Ursa Minor", + "star.starcaller.overworld.6672": "Q Vela", + "star.starcaller.overworld.6673": "Q Virgo", + "star.starcaller.overworld.6674": "Q Volans", + "star.starcaller.overworld.6675": "Q Vulpecula", + "star.starcaller.overworld.6676": "R Andromeda", + "star.starcaller.overworld.6677": "R Antlia", + "star.starcaller.overworld.6678": "R Apus", + "star.starcaller.overworld.6679": "R Aquarius", + "star.starcaller.overworld.6680": "R Aquila", + "star.starcaller.overworld.6681": "R Ara", + "star.starcaller.overworld.6682": "R Aries", + "star.starcaller.overworld.6683": "R Auriga", + "star.starcaller.overworld.6684": "R Boötes", + "star.starcaller.overworld.6685": "R Caelum", + "star.starcaller.overworld.6686": "R Camelopardalis", + "star.starcaller.overworld.6687": "R Cancer", + "star.starcaller.overworld.6688": "R Canes Venatici", + "star.starcaller.overworld.6689": "R Canis Major", + "star.starcaller.overworld.6690": "R Canis Minor", + "star.starcaller.overworld.6691": "R Capricornus", + "star.starcaller.overworld.6692": "R Carina", + "star.starcaller.overworld.6693": "R Cassiopeia", + "star.starcaller.overworld.6694": "R Centaurus", + "star.starcaller.overworld.6695": "R Cepheus", + "star.starcaller.overworld.6696": "R Cetus", + "star.starcaller.overworld.6697": "R Chamaeleon", + "star.starcaller.overworld.6698": "R Circinus", + "star.starcaller.overworld.6699": "R Columba", + "star.starcaller.overworld.6700": "R Coma Berenices", + "star.starcaller.overworld.6701": "R Corona Australis", + "star.starcaller.overworld.6702": "R Corona Borealis", + "star.starcaller.overworld.6703": "R Corvus", + "star.starcaller.overworld.6704": "R Crater", + "star.starcaller.overworld.6705": "R Crux", + "star.starcaller.overworld.6706": "R Cygnus", + "star.starcaller.overworld.6707": "R Delphinus", + "star.starcaller.overworld.6708": "R Dorado", + "star.starcaller.overworld.6709": "R Draco", + "star.starcaller.overworld.6710": "R Equuleus", + "star.starcaller.overworld.6711": "R Eridanus", + "star.starcaller.overworld.6712": "R Fornax", + "star.starcaller.overworld.6713": "R Gemini", + "star.starcaller.overworld.6714": "R Grus", + "star.starcaller.overworld.6715": "R Hercules", + "star.starcaller.overworld.6716": "R Horologium", + "star.starcaller.overworld.6717": "R Hydra", + "star.starcaller.overworld.6718": "R Hydrus", + "star.starcaller.overworld.6719": "R Indus", + "star.starcaller.overworld.6720": "R Lacerta", + "star.starcaller.overworld.6721": "R Leo", + "star.starcaller.overworld.6722": "R Leo Minor", + "star.starcaller.overworld.6723": "R Lepus", + "star.starcaller.overworld.6724": "R Libra", + "star.starcaller.overworld.6725": "R Lupus", + "star.starcaller.overworld.6726": "R Lynx", + "star.starcaller.overworld.6727": "R Lyra", + "star.starcaller.overworld.6728": "R Mensa", + "star.starcaller.overworld.6729": "R Microscopium", + "star.starcaller.overworld.6730": "R Monoceros", + "star.starcaller.overworld.6731": "R Musca", + "star.starcaller.overworld.6732": "R Norma", + "star.starcaller.overworld.6733": "R Octans", + "star.starcaller.overworld.6734": "R Ophiuchus", + "star.starcaller.overworld.6735": "R Orion", + "star.starcaller.overworld.6736": "R Pavo", + "star.starcaller.overworld.6737": "R Pegasus", + "star.starcaller.overworld.6738": "R Perseus", + "star.starcaller.overworld.6739": "R Phoenix", + "star.starcaller.overworld.6740": "R Pictor", + "star.starcaller.overworld.6741": "R Pisces", + "star.starcaller.overworld.6742": "R Piscis Austrinus", + "star.starcaller.overworld.6743": "R Puppis", + "star.starcaller.overworld.6744": "R Pyxis", + "star.starcaller.overworld.6745": "R Reticulum", + "star.starcaller.overworld.6746": "R Sagitta", + "star.starcaller.overworld.6747": "R Sagittarius", + "star.starcaller.overworld.6748": "R Scorpius", + "star.starcaller.overworld.6749": "R Sculptor", + "star.starcaller.overworld.6750": "R Scutum", + "star.starcaller.overworld.6751": "R Serpens", + "star.starcaller.overworld.6752": "R Sextans", + "star.starcaller.overworld.6753": "R Taurus", + "star.starcaller.overworld.6754": "R Telescopium", + "star.starcaller.overworld.6755": "R Triangulum", + "star.starcaller.overworld.6756": "R Triangulum Australe", + "star.starcaller.overworld.6757": "R Tucana", + "star.starcaller.overworld.6758": "R Ursa Major", + "star.starcaller.overworld.6759": "R Ursa Minor", + "star.starcaller.overworld.6760": "R Vela", + "star.starcaller.overworld.6761": "R Virgo", + "star.starcaller.overworld.6762": "R Volans", + "star.starcaller.overworld.6763": "R Vulpecula", + "star.starcaller.overworld.6764": "S Andromeda", + "star.starcaller.overworld.6765": "S Antlia", + "star.starcaller.overworld.6766": "S Apus", + "star.starcaller.overworld.6767": "S Aquarius", + "star.starcaller.overworld.6768": "S Aquila", + "star.starcaller.overworld.6769": "S Ara", + "star.starcaller.overworld.6770": "S Aries", + "star.starcaller.overworld.6771": "S Auriga", + "star.starcaller.overworld.6772": "S Boötes", + "star.starcaller.overworld.6773": "S Caelum", + "star.starcaller.overworld.6774": "S Camelopardalis", + "star.starcaller.overworld.6775": "S Cancer", + "star.starcaller.overworld.6776": "S Canes Venatici", + "star.starcaller.overworld.6777": "S Canis Major", + "star.starcaller.overworld.6778": "S Canis Minor", + "star.starcaller.overworld.6779": "S Capricornus", + "star.starcaller.overworld.6780": "S Carina", + "star.starcaller.overworld.6781": "S Cassiopeia", + "star.starcaller.overworld.6782": "S Centaurus", + "star.starcaller.overworld.6783": "S Cepheus", + "star.starcaller.overworld.6784": "S Cetus", + "star.starcaller.overworld.6785": "S Chamaeleon", + "star.starcaller.overworld.6786": "S Circinus", + "star.starcaller.overworld.6787": "S Columba", + "star.starcaller.overworld.6788": "S Coma Berenices", + "star.starcaller.overworld.6789": "S Corona Australis", + "star.starcaller.overworld.6790": "S Corona Borealis", + "star.starcaller.overworld.6791": "S Corvus", + "star.starcaller.overworld.6792": "S Crater", + "star.starcaller.overworld.6793": "S Crux", + "star.starcaller.overworld.6794": "S Cygnus", + "star.starcaller.overworld.6795": "S Delphinus", + "star.starcaller.overworld.6796": "S Dorado", + "star.starcaller.overworld.6797": "S Draco", + "star.starcaller.overworld.6798": "S Equuleus", + "star.starcaller.overworld.6799": "S Eridanus", + "star.starcaller.overworld.6800": "S Fornax", + "star.starcaller.overworld.6801": "S Gemini", + "star.starcaller.overworld.6802": "S Grus", + "star.starcaller.overworld.6803": "S Hercules", + "star.starcaller.overworld.6804": "S Horologium", + "star.starcaller.overworld.6805": "S Hydra", + "star.starcaller.overworld.6806": "S Hydrus", + "star.starcaller.overworld.6807": "S Indus", + "star.starcaller.overworld.6808": "S Lacerta", + "star.starcaller.overworld.6809": "S Leo", + "star.starcaller.overworld.6810": "S Leo Minor", + "star.starcaller.overworld.6811": "S Lepus", + "star.starcaller.overworld.6812": "S Libra", + "star.starcaller.overworld.6813": "S Lupus", + "star.starcaller.overworld.6814": "S Lynx", + "star.starcaller.overworld.6815": "S Lyra", + "star.starcaller.overworld.6816": "S Mensa", + "star.starcaller.overworld.6817": "S Microscopium", + "star.starcaller.overworld.6818": "S Monoceros", + "star.starcaller.overworld.6819": "S Musca", + "star.starcaller.overworld.6820": "S Norma", + "star.starcaller.overworld.6821": "S Octans", + "star.starcaller.overworld.6822": "S Ophiuchus", + "star.starcaller.overworld.6823": "S Orion", + "star.starcaller.overworld.6824": "S Pavo", + "star.starcaller.overworld.6825": "S Pegasus", + "star.starcaller.overworld.6826": "S Perseus", + "star.starcaller.overworld.6827": "S Phoenix", + "star.starcaller.overworld.6828": "S Pictor", + "star.starcaller.overworld.6829": "S Pisces", + "star.starcaller.overworld.6830": "S Piscis Austrinus", + "star.starcaller.overworld.6831": "S Puppis", + "star.starcaller.overworld.6832": "S Pyxis", + "star.starcaller.overworld.6833": "S Reticulum", + "star.starcaller.overworld.6834": "S Sagitta", + "star.starcaller.overworld.6835": "S Sagittarius", + "star.starcaller.overworld.6836": "S Scorpius", + "star.starcaller.overworld.6837": "S Sculptor", + "star.starcaller.overworld.6838": "S Scutum", + "star.starcaller.overworld.6839": "S Serpens", + "star.starcaller.overworld.6840": "S Sextans", + "star.starcaller.overworld.6841": "S Taurus", + "star.starcaller.overworld.6842": "S Telescopium", + "star.starcaller.overworld.6843": "S Triangulum", + "star.starcaller.overworld.6844": "S Triangulum Australe", + "star.starcaller.overworld.6845": "S Tucana", + "star.starcaller.overworld.6846": "S Ursa Major", + "star.starcaller.overworld.6847": "S Ursa Minor", + "star.starcaller.overworld.6848": "S Vela", + "star.starcaller.overworld.6849": "S Virgo", + "star.starcaller.overworld.6850": "S Volans", + "star.starcaller.overworld.6851": "S Vulpecula", + "star.starcaller.overworld.6852": "T Andromeda", + "star.starcaller.overworld.6853": "T Antlia", + "star.starcaller.overworld.6854": "T Apus", + "star.starcaller.overworld.6855": "T Aquarius", + "star.starcaller.overworld.6856": "T Aquila", + "star.starcaller.overworld.6857": "T Ara", + "star.starcaller.overworld.6858": "T Aries", + "star.starcaller.overworld.6859": "T Auriga", + "star.starcaller.overworld.6860": "T Boötes", + "star.starcaller.overworld.6861": "T Caelum", + "star.starcaller.overworld.6862": "T Camelopardalis", + "star.starcaller.overworld.6863": "T Cancer", + "star.starcaller.overworld.6864": "T Canes Venatici", + "star.starcaller.overworld.6865": "T Canis Major", + "star.starcaller.overworld.6866": "T Canis Minor", + "star.starcaller.overworld.6867": "T Capricornus", + "star.starcaller.overworld.6868": "T Carina", + "star.starcaller.overworld.6869": "T Cassiopeia", + "star.starcaller.overworld.6870": "T Centaurus", + "star.starcaller.overworld.6871": "T Cepheus", + "star.starcaller.overworld.6872": "T Cetus", + "star.starcaller.overworld.6873": "T Chamaeleon", + "star.starcaller.overworld.6874": "T Circinus", + "star.starcaller.overworld.6875": "T Columba", + "star.starcaller.overworld.6876": "T Coma Berenices", + "star.starcaller.overworld.6877": "T Corona Australis", + "star.starcaller.overworld.6878": "T Corona Borealis", + "star.starcaller.overworld.6879": "T Corvus", + "star.starcaller.overworld.6880": "T Crater", + "star.starcaller.overworld.6881": "T Crux", + "star.starcaller.overworld.6882": "T Cygnus", + "star.starcaller.overworld.6883": "T Delphinus", + "star.starcaller.overworld.6884": "T Dorado", + "star.starcaller.overworld.6885": "T Draco", + "star.starcaller.overworld.6886": "T Equuleus", + "star.starcaller.overworld.6887": "T Eridanus", + "star.starcaller.overworld.6888": "T Fornax", + "star.starcaller.overworld.6889": "T Gemini", + "star.starcaller.overworld.6890": "T Grus", + "star.starcaller.overworld.6891": "T Hercules", + "star.starcaller.overworld.6892": "T Horologium", + "star.starcaller.overworld.6893": "T Hydra", + "star.starcaller.overworld.6894": "T Hydrus", + "star.starcaller.overworld.6895": "T Indus", + "star.starcaller.overworld.6896": "T Lacerta", + "star.starcaller.overworld.6897": "T Leo", + "star.starcaller.overworld.6898": "T Leo Minor", + "star.starcaller.overworld.6899": "T Lepus", + "star.starcaller.overworld.6900": "T Libra", + "star.starcaller.overworld.6901": "T Lupus", + "star.starcaller.overworld.6902": "T Lynx", + "star.starcaller.overworld.6903": "T Lyra", + "star.starcaller.overworld.6904": "T Mensa", + "star.starcaller.overworld.6905": "T Microscopium", + "star.starcaller.overworld.6906": "T Monoceros", + "star.starcaller.overworld.6907": "T Musca", + "star.starcaller.overworld.6908": "T Norma", + "star.starcaller.overworld.6909": "T Octans", + "star.starcaller.overworld.6910": "T Ophiuchus", + "star.starcaller.overworld.6911": "T Orion", + "star.starcaller.overworld.6912": "T Pavo", + "star.starcaller.overworld.6913": "T Pegasus", + "star.starcaller.overworld.6914": "T Perseus", + "star.starcaller.overworld.6915": "T Phoenix", + "star.starcaller.overworld.6916": "T Pictor", + "star.starcaller.overworld.6917": "T Pisces", + "star.starcaller.overworld.6918": "T Piscis Austrinus", + "star.starcaller.overworld.6919": "T Puppis", + "star.starcaller.overworld.6920": "T Pyxis", + "star.starcaller.overworld.6921": "T Reticulum", + "star.starcaller.overworld.6922": "T Sagitta", + "star.starcaller.overworld.6923": "T Sagittarius", + "star.starcaller.overworld.6924": "T Scorpius", + "star.starcaller.overworld.6925": "T Sculptor", + "star.starcaller.overworld.6926": "T Scutum", + "star.starcaller.overworld.6927": "T Serpens", + "star.starcaller.overworld.6928": "T Sextans", + "star.starcaller.overworld.6929": "T Taurus", + "star.starcaller.overworld.6930": "T Telescopium", + "star.starcaller.overworld.6931": "T Triangulum", + "star.starcaller.overworld.6932": "T Triangulum Australe", + "star.starcaller.overworld.6933": "T Tucana", + "star.starcaller.overworld.6934": "T Ursa Major", + "star.starcaller.overworld.6935": "T Ursa Minor", + "star.starcaller.overworld.6936": "T Vela", + "star.starcaller.overworld.6937": "T Virgo", + "star.starcaller.overworld.6938": "T Volans", + "star.starcaller.overworld.6939": "T Vulpecula", + "star.starcaller.overworld.6940": "U Andromeda", + "star.starcaller.overworld.6941": "U Antlia", + "star.starcaller.overworld.6942": "U Apus", + "star.starcaller.overworld.6943": "U Aquarius", + "star.starcaller.overworld.6944": "U Aquila", + "star.starcaller.overworld.6945": "U Ara", + "star.starcaller.overworld.6946": "U Aries", + "star.starcaller.overworld.6947": "U Auriga", + "star.starcaller.overworld.6948": "U Boötes", + "star.starcaller.overworld.6949": "U Caelum", + "star.starcaller.overworld.6950": "U Camelopardalis", + "star.starcaller.overworld.6951": "U Cancer", + "star.starcaller.overworld.6952": "U Canes Venatici", + "star.starcaller.overworld.6953": "U Canis Major", + "star.starcaller.overworld.6954": "U Canis Minor", + "star.starcaller.overworld.6955": "U Capricornus", + "star.starcaller.overworld.6956": "U Carina", + "star.starcaller.overworld.6957": "U Cassiopeia", + "star.starcaller.overworld.6958": "U Centaurus", + "star.starcaller.overworld.6959": "U Cepheus", + "star.starcaller.overworld.6960": "U Cetus", + "star.starcaller.overworld.6961": "U Chamaeleon", + "star.starcaller.overworld.6962": "U Circinus", + "star.starcaller.overworld.6963": "U Columba", + "star.starcaller.overworld.6964": "U Coma Berenices", + "star.starcaller.overworld.6965": "U Corona Australis", + "star.starcaller.overworld.6966": "U Corona Borealis", + "star.starcaller.overworld.6967": "U Corvus", + "star.starcaller.overworld.6968": "U Crater", + "star.starcaller.overworld.6969": "U Crux", + "star.starcaller.overworld.6970": "U Cygnus", + "star.starcaller.overworld.6971": "U Delphinus", + "star.starcaller.overworld.6972": "U Dorado", + "star.starcaller.overworld.6973": "U Draco", + "star.starcaller.overworld.6974": "U Equuleus", + "star.starcaller.overworld.6975": "U Eridanus", + "star.starcaller.overworld.6976": "U Fornax", + "star.starcaller.overworld.6977": "U Gemini", + "star.starcaller.overworld.6978": "U Grus", + "star.starcaller.overworld.6979": "U Hercules", + "star.starcaller.overworld.6980": "U Horologium", + "star.starcaller.overworld.6981": "U Hydra", + "star.starcaller.overworld.6982": "U Hydrus", + "star.starcaller.overworld.6983": "U Indus", + "star.starcaller.overworld.6984": "U Lacerta", + "star.starcaller.overworld.6985": "U Leo", + "star.starcaller.overworld.6986": "U Leo Minor", + "star.starcaller.overworld.6987": "U Lepus", + "star.starcaller.overworld.6988": "U Libra", + "star.starcaller.overworld.6989": "U Lupus", + "star.starcaller.overworld.6990": "U Lynx", + "star.starcaller.overworld.6991": "U Lyra", + "star.starcaller.overworld.6992": "U Mensa", + "star.starcaller.overworld.6993": "U Microscopium", + "star.starcaller.overworld.6994": "U Monoceros", + "star.starcaller.overworld.6995": "U Musca", + "star.starcaller.overworld.6996": "U Norma", + "star.starcaller.overworld.6997": "U Octans", + "star.starcaller.overworld.6998": "U Ophiuchus", + "star.starcaller.overworld.6999": "U Orion", + "star.starcaller.overworld.7000": "U Pavo", + "star.starcaller.overworld.7001": "U Pegasus", + "star.starcaller.overworld.7002": "U Perseus", + "star.starcaller.overworld.7003": "U Phoenix", + "star.starcaller.overworld.7004": "U Pictor", + "star.starcaller.overworld.7005": "U Pisces", + "star.starcaller.overworld.7006": "U Piscis Austrinus", + "star.starcaller.overworld.7007": "U Puppis", + "star.starcaller.overworld.7008": "U Pyxis", + "star.starcaller.overworld.7009": "U Reticulum", + "star.starcaller.overworld.7010": "U Sagitta", + "star.starcaller.overworld.7011": "U Sagittarius", + "star.starcaller.overworld.7012": "U Scorpius", + "star.starcaller.overworld.7013": "U Sculptor", + "star.starcaller.overworld.7014": "U Scutum", + "star.starcaller.overworld.7015": "U Serpens", + "star.starcaller.overworld.7016": "U Sextans", + "star.starcaller.overworld.7017": "U Taurus", + "star.starcaller.overworld.7018": "U Telescopium", + "star.starcaller.overworld.7019": "U Triangulum", + "star.starcaller.overworld.7020": "U Triangulum Australe", + "star.starcaller.overworld.7021": "U Tucana", + "star.starcaller.overworld.7022": "U Ursa Major", + "star.starcaller.overworld.7023": "U Ursa Minor", + "star.starcaller.overworld.7024": "U Vela", + "star.starcaller.overworld.7025": "U Virgo", + "star.starcaller.overworld.7026": "U Volans", + "star.starcaller.overworld.7027": "U Vulpecula", + "star.starcaller.overworld.7028": "V Andromeda", + "star.starcaller.overworld.7029": "V Antlia", + "star.starcaller.overworld.7030": "V Apus", + "star.starcaller.overworld.7031": "V Aquarius", + "star.starcaller.overworld.7032": "V Aquila", + "star.starcaller.overworld.7033": "V Ara", + "star.starcaller.overworld.7034": "V Aries", + "star.starcaller.overworld.7035": "V Auriga", + "star.starcaller.overworld.7036": "V Boötes", + "star.starcaller.overworld.7037": "V Caelum", + "star.starcaller.overworld.7038": "V Camelopardalis", + "star.starcaller.overworld.7039": "V Cancer", + "star.starcaller.overworld.7040": "V Canes Venatici", + "star.starcaller.overworld.7041": "V Canis Major", + "star.starcaller.overworld.7042": "V Canis Minor", + "star.starcaller.overworld.7043": "V Capricornus", + "star.starcaller.overworld.7044": "V Carina", + "star.starcaller.overworld.7045": "V Cassiopeia", + "star.starcaller.overworld.7046": "V Centaurus", + "star.starcaller.overworld.7047": "V Cepheus", + "star.starcaller.overworld.7048": "V Cetus", + "star.starcaller.overworld.7049": "V Chamaeleon", + "star.starcaller.overworld.7050": "V Circinus", + "star.starcaller.overworld.7051": "V Columba", + "star.starcaller.overworld.7052": "V Coma Berenices", + "star.starcaller.overworld.7053": "V Corona Australis", + "star.starcaller.overworld.7054": "V Corona Borealis", + "star.starcaller.overworld.7055": "V Corvus", + "star.starcaller.overworld.7056": "V Crater", + "star.starcaller.overworld.7057": "V Crux", + "star.starcaller.overworld.7058": "V Cygnus", + "star.starcaller.overworld.7059": "V Delphinus", + "star.starcaller.overworld.7060": "V Dorado", + "star.starcaller.overworld.7061": "V Draco", + "star.starcaller.overworld.7062": "V Equuleus", + "star.starcaller.overworld.7063": "V Eridanus", + "star.starcaller.overworld.7064": "V Fornax", + "star.starcaller.overworld.7065": "V Gemini", + "star.starcaller.overworld.7066": "V Grus", + "star.starcaller.overworld.7067": "V Hercules", + "star.starcaller.overworld.7068": "V Horologium", + "star.starcaller.overworld.7069": "V Hydra", + "star.starcaller.overworld.7070": "V Hydrus", + "star.starcaller.overworld.7071": "V Indus", + "star.starcaller.overworld.7072": "V Lacerta", + "star.starcaller.overworld.7073": "V Leo", + "star.starcaller.overworld.7074": "V Leo Minor", + "star.starcaller.overworld.7075": "V Lepus", + "star.starcaller.overworld.7076": "V Libra", + "star.starcaller.overworld.7077": "V Lupus", + "star.starcaller.overworld.7078": "V Lynx", + "star.starcaller.overworld.7079": "V Lyra", + "star.starcaller.overworld.7080": "V Mensa", + "star.starcaller.overworld.7081": "V Microscopium", + "star.starcaller.overworld.7082": "V Monoceros", + "star.starcaller.overworld.7083": "V Musca", + "star.starcaller.overworld.7084": "V Norma", + "star.starcaller.overworld.7085": "V Octans", + "star.starcaller.overworld.7086": "V Ophiuchus", + "star.starcaller.overworld.7087": "V Orion", + "star.starcaller.overworld.7088": "V Pavo", + "star.starcaller.overworld.7089": "V Pegasus", + "star.starcaller.overworld.7090": "V Perseus", + "star.starcaller.overworld.7091": "V Phoenix", + "star.starcaller.overworld.7092": "V Pictor", + "star.starcaller.overworld.7093": "V Pisces", + "star.starcaller.overworld.7094": "V Piscis Austrinus", + "star.starcaller.overworld.7095": "V Puppis", + "star.starcaller.overworld.7096": "V Pyxis", + "star.starcaller.overworld.7097": "V Reticulum", + "star.starcaller.overworld.7098": "V Sagitta", + "star.starcaller.overworld.7099": "V Sagittarius", + "star.starcaller.overworld.7100": "V Scorpius", + "star.starcaller.overworld.7101": "V Sculptor", + "star.starcaller.overworld.7102": "V Scutum", + "star.starcaller.overworld.7103": "V Serpens", + "star.starcaller.overworld.7104": "V Sextans", + "star.starcaller.overworld.7105": "V Taurus", + "star.starcaller.overworld.7106": "V Telescopium", + "star.starcaller.overworld.7107": "V Triangulum", + "star.starcaller.overworld.7108": "V Triangulum Australe", + "star.starcaller.overworld.7109": "V Tucana", + "star.starcaller.overworld.7110": "V Ursa Major", + "star.starcaller.overworld.7111": "V Ursa Minor", + "star.starcaller.overworld.7112": "V Vela", + "star.starcaller.overworld.7113": "V Virgo", + "star.starcaller.overworld.7114": "V Volans", + "star.starcaller.overworld.7115": "V Vulpecula", + "star.starcaller.overworld.7116": "W Andromeda", + "star.starcaller.overworld.7117": "W Antlia", + "star.starcaller.overworld.7118": "W Apus", + "star.starcaller.overworld.7119": "W Aquarius", + "star.starcaller.overworld.7120": "W Aquila", + "star.starcaller.overworld.7121": "W Ara", + "star.starcaller.overworld.7122": "W Aries", + "star.starcaller.overworld.7123": "W Auriga", + "star.starcaller.overworld.7124": "W Boötes", + "star.starcaller.overworld.7125": "W Caelum", + "star.starcaller.overworld.7126": "W Camelopardalis", + "star.starcaller.overworld.7127": "W Cancer", + "star.starcaller.overworld.7128": "W Canes Venatici", + "star.starcaller.overworld.7129": "W Canis Major", + "star.starcaller.overworld.7130": "W Canis Minor", + "star.starcaller.overworld.7131": "W Capricornus", + "star.starcaller.overworld.7132": "W Carina", + "star.starcaller.overworld.7133": "W Cassiopeia", + "star.starcaller.overworld.7134": "W Centaurus", + "star.starcaller.overworld.7135": "W Cepheus", + "star.starcaller.overworld.7136": "W Cetus", + "star.starcaller.overworld.7137": "W Chamaeleon", + "star.starcaller.overworld.7138": "W Circinus", + "star.starcaller.overworld.7139": "W Columba", + "star.starcaller.overworld.7140": "W Coma Berenices", + "star.starcaller.overworld.7141": "W Corona Australis", + "star.starcaller.overworld.7142": "W Corona Borealis", + "star.starcaller.overworld.7143": "W Corvus", + "star.starcaller.overworld.7144": "W Crater", + "star.starcaller.overworld.7145": "W Crux", + "star.starcaller.overworld.7146": "W Cygnus", + "star.starcaller.overworld.7147": "W Delphinus", + "star.starcaller.overworld.7148": "W Dorado", + "star.starcaller.overworld.7149": "W Draco", + "star.starcaller.overworld.7150": "W Equuleus", + "star.starcaller.overworld.7151": "W Eridanus", + "star.starcaller.overworld.7152": "W Fornax", + "star.starcaller.overworld.7153": "W Gemini", + "star.starcaller.overworld.7154": "W Grus", + "star.starcaller.overworld.7155": "W Hercules", + "star.starcaller.overworld.7156": "W Horologium", + "star.starcaller.overworld.7157": "W Hydra", + "star.starcaller.overworld.7158": "W Hydrus", + "star.starcaller.overworld.7159": "W Indus", + "star.starcaller.overworld.7160": "W Lacerta", + "star.starcaller.overworld.7161": "W Leo", + "star.starcaller.overworld.7162": "W Leo Minor", + "star.starcaller.overworld.7163": "W Lepus", + "star.starcaller.overworld.7164": "W Libra", + "star.starcaller.overworld.7165": "W Lupus", + "star.starcaller.overworld.7166": "W Lynx", + "star.starcaller.overworld.7167": "W Lyra", + "star.starcaller.overworld.7168": "W Mensa", + "star.starcaller.overworld.7169": "W Microscopium", + "star.starcaller.overworld.7170": "W Monoceros", + "star.starcaller.overworld.7171": "W Musca", + "star.starcaller.overworld.7172": "W Norma", + "star.starcaller.overworld.7173": "W Octans", + "star.starcaller.overworld.7174": "W Ophiuchus", + "star.starcaller.overworld.7175": "W Orion", + "star.starcaller.overworld.7176": "W Pavo", + "star.starcaller.overworld.7177": "W Pegasus", + "star.starcaller.overworld.7178": "W Perseus", + "star.starcaller.overworld.7179": "W Phoenix", + "star.starcaller.overworld.7180": "W Pictor", + "star.starcaller.overworld.7181": "W Pisces", + "star.starcaller.overworld.7182": "W Piscis Austrinus", + "star.starcaller.overworld.7183": "W Puppis", + "star.starcaller.overworld.7184": "W Pyxis", + "star.starcaller.overworld.7185": "W Reticulum", + "star.starcaller.overworld.7186": "W Sagitta", + "star.starcaller.overworld.7187": "W Sagittarius", + "star.starcaller.overworld.7188": "W Scorpius", + "star.starcaller.overworld.7189": "W Sculptor", + "star.starcaller.overworld.7190": "W Scutum", + "star.starcaller.overworld.7191": "W Serpens", + "star.starcaller.overworld.7192": "W Sextans", + "star.starcaller.overworld.7193": "W Taurus", + "star.starcaller.overworld.7194": "W Telescopium", + "star.starcaller.overworld.7195": "W Triangulum", + "star.starcaller.overworld.7196": "W Triangulum Australe", + "star.starcaller.overworld.7197": "W Tucana", + "star.starcaller.overworld.7198": "W Ursa Major", + "star.starcaller.overworld.7199": "W Ursa Minor", + "star.starcaller.overworld.7200": "W Vela", + "star.starcaller.overworld.7201": "W Virgo", + "star.starcaller.overworld.7202": "W Volans", + "star.starcaller.overworld.7203": "W Vulpecula", + "star.starcaller.overworld.7204": "X Andromeda", + "star.starcaller.overworld.7205": "X Antlia", + "star.starcaller.overworld.7206": "X Apus", + "star.starcaller.overworld.7207": "X Aquarius", + "star.starcaller.overworld.7208": "X Aquila", + "star.starcaller.overworld.7209": "X Ara", + "star.starcaller.overworld.7210": "X Aries", + "star.starcaller.overworld.7211": "X Auriga", + "star.starcaller.overworld.7212": "X Boötes", + "star.starcaller.overworld.7213": "X Caelum", + "star.starcaller.overworld.7214": "X Camelopardalis", + "star.starcaller.overworld.7215": "X Cancer", + "star.starcaller.overworld.7216": "X Canes Venatici", + "star.starcaller.overworld.7217": "X Canis Major", + "star.starcaller.overworld.7218": "X Canis Minor", + "star.starcaller.overworld.7219": "X Capricornus", + "star.starcaller.overworld.7220": "X Carina", + "star.starcaller.overworld.7221": "X Cassiopeia", + "star.starcaller.overworld.7222": "X Centaurus", + "star.starcaller.overworld.7223": "X Cepheus", + "star.starcaller.overworld.7224": "X Cetus", + "star.starcaller.overworld.7225": "X Chamaeleon", + "star.starcaller.overworld.7226": "X Circinus", + "star.starcaller.overworld.7227": "X Columba", + "star.starcaller.overworld.7228": "X Coma Berenices", + "star.starcaller.overworld.7229": "X Corona Australis", + "star.starcaller.overworld.7230": "X Corona Borealis", + "star.starcaller.overworld.7231": "X Corvus", + "star.starcaller.overworld.7232": "X Crater", + "star.starcaller.overworld.7233": "X Crux", + "star.starcaller.overworld.7234": "X Cygnus", + "star.starcaller.overworld.7235": "X Delphinus", + "star.starcaller.overworld.7236": "X Dorado", + "star.starcaller.overworld.7237": "X Draco", + "star.starcaller.overworld.7238": "X Equuleus", + "star.starcaller.overworld.7239": "X Eridanus", + "star.starcaller.overworld.7240": "X Fornax", + "star.starcaller.overworld.7241": "X Gemini", + "star.starcaller.overworld.7242": "X Grus", + "star.starcaller.overworld.7243": "X Hercules", + "star.starcaller.overworld.7244": "X Horologium", + "star.starcaller.overworld.7245": "X Hydra", + "star.starcaller.overworld.7246": "X Hydrus", + "star.starcaller.overworld.7247": "X Indus", + "star.starcaller.overworld.7248": "X Lacerta", + "star.starcaller.overworld.7249": "X Leo", + "star.starcaller.overworld.7250": "X Leo Minor", + "star.starcaller.overworld.7251": "X Lepus", + "star.starcaller.overworld.7252": "X Libra", + "star.starcaller.overworld.7253": "X Lupus", + "star.starcaller.overworld.7254": "X Lynx", + "star.starcaller.overworld.7255": "X Lyra", + "star.starcaller.overworld.7256": "X Mensa", + "star.starcaller.overworld.7257": "X Microscopium", + "star.starcaller.overworld.7258": "X Monoceros", + "star.starcaller.overworld.7259": "X Musca", + "star.starcaller.overworld.7260": "X Norma", + "star.starcaller.overworld.7261": "X Octans", + "star.starcaller.overworld.7262": "X Ophiuchus", + "star.starcaller.overworld.7263": "X Orion", + "star.starcaller.overworld.7264": "X Pavo", + "star.starcaller.overworld.7265": "X Pegasus", + "star.starcaller.overworld.7266": "X Perseus", + "star.starcaller.overworld.7267": "X Phoenix", + "star.starcaller.overworld.7268": "X Pictor", + "star.starcaller.overworld.7269": "X Pisces", + "star.starcaller.overworld.7270": "X Piscis Austrinus", + "star.starcaller.overworld.7271": "X Puppis", + "star.starcaller.overworld.7272": "X Pyxis", + "star.starcaller.overworld.7273": "X Reticulum", + "star.starcaller.overworld.7274": "X Sagitta", + "star.starcaller.overworld.7275": "X Sagittarius", + "star.starcaller.overworld.7276": "X Scorpius", + "star.starcaller.overworld.7277": "X Sculptor", + "star.starcaller.overworld.7278": "X Scutum", + "star.starcaller.overworld.7279": "X Serpens", + "star.starcaller.overworld.7280": "X Sextans", + "star.starcaller.overworld.7281": "X Taurus", + "star.starcaller.overworld.7282": "X Telescopium", + "star.starcaller.overworld.7283": "X Triangulum", + "star.starcaller.overworld.7284": "X Triangulum Australe", + "star.starcaller.overworld.7285": "X Tucana", + "star.starcaller.overworld.7286": "X Ursa Major", + "star.starcaller.overworld.7287": "X Ursa Minor", + "star.starcaller.overworld.7288": "X Vela", + "star.starcaller.overworld.7289": "X Virgo", + "star.starcaller.overworld.7290": "X Volans", + "star.starcaller.overworld.7291": "X Vulpecula", + "star.starcaller.overworld.7292": "Y Andromeda", + "star.starcaller.overworld.7293": "Y Antlia", + "star.starcaller.overworld.7294": "Y Apus", + "star.starcaller.overworld.7295": "Y Aquarius", + "star.starcaller.overworld.7296": "Y Aquila", + "star.starcaller.overworld.7297": "Y Ara", + "star.starcaller.overworld.7298": "Y Aries", + "star.starcaller.overworld.7299": "Y Auriga", + "star.starcaller.overworld.7300": "Y Boötes", + "star.starcaller.overworld.7301": "Y Caelum", + "star.starcaller.overworld.7302": "Y Camelopardalis", + "star.starcaller.overworld.7303": "Y Cancer", + "star.starcaller.overworld.7304": "Y Canes Venatici", + "star.starcaller.overworld.7305": "Y Canis Major", + "star.starcaller.overworld.7306": "Y Canis Minor", + "star.starcaller.overworld.7307": "Y Capricornus", + "star.starcaller.overworld.7308": "Y Carina", + "star.starcaller.overworld.7309": "Y Cassiopeia", + "star.starcaller.overworld.7310": "Y Centaurus", + "star.starcaller.overworld.7311": "Y Cepheus", + "star.starcaller.overworld.7312": "Y Cetus", + "star.starcaller.overworld.7313": "Y Chamaeleon", + "star.starcaller.overworld.7314": "Y Circinus", + "star.starcaller.overworld.7315": "Y Columba", + "star.starcaller.overworld.7316": "Y Coma Berenices", + "star.starcaller.overworld.7317": "Y Corona Australis", + "star.starcaller.overworld.7318": "Y Corona Borealis", + "star.starcaller.overworld.7319": "Y Corvus", + "star.starcaller.overworld.7320": "Y Crater", + "star.starcaller.overworld.7321": "Y Crux", + "star.starcaller.overworld.7322": "Y Cygnus", + "star.starcaller.overworld.7323": "Y Delphinus", + "star.starcaller.overworld.7324": "Y Dorado", + "star.starcaller.overworld.7325": "Y Draco", + "star.starcaller.overworld.7326": "Y Equuleus", + "star.starcaller.overworld.7327": "Y Eridanus", + "star.starcaller.overworld.7328": "Y Fornax", + "star.starcaller.overworld.7329": "Y Gemini", + "star.starcaller.overworld.7330": "Y Grus", + "star.starcaller.overworld.7331": "Y Hercules", + "star.starcaller.overworld.7332": "Y Horologium", + "star.starcaller.overworld.7333": "Y Hydra", + "star.starcaller.overworld.7334": "Y Hydrus", + "star.starcaller.overworld.7335": "Y Indus", + "star.starcaller.overworld.7336": "Y Lacerta", + "star.starcaller.overworld.7337": "Y Leo", + "star.starcaller.overworld.7338": "Y Leo Minor", + "star.starcaller.overworld.7339": "Y Lepus", + "star.starcaller.overworld.7340": "Y Libra", + "star.starcaller.overworld.7341": "Y Lupus", + "star.starcaller.overworld.7342": "Y Lynx", + "star.starcaller.overworld.7343": "Y Lyra", + "star.starcaller.overworld.7344": "Y Mensa", + "star.starcaller.overworld.7345": "Y Microscopium", + "star.starcaller.overworld.7346": "Y Monoceros", + "star.starcaller.overworld.7347": "Y Musca", + "star.starcaller.overworld.7348": "Y Norma", + "star.starcaller.overworld.7349": "Y Octans", + "star.starcaller.overworld.7350": "Y Ophiuchus", + "star.starcaller.overworld.7351": "Y Orion", + "star.starcaller.overworld.7352": "Y Pavo", + "star.starcaller.overworld.7353": "Y Pegasus", + "star.starcaller.overworld.7354": "Y Perseus", + "star.starcaller.overworld.7355": "Y Phoenix", + "star.starcaller.overworld.7356": "Y Pictor", + "star.starcaller.overworld.7357": "Y Pisces", + "star.starcaller.overworld.7358": "Y Piscis Austrinus", + "star.starcaller.overworld.7359": "Y Puppis", + "star.starcaller.overworld.7360": "Y Pyxis", + "star.starcaller.overworld.7361": "Y Reticulum", + "star.starcaller.overworld.7362": "Y Sagitta", + "star.starcaller.overworld.7363": "Y Sagittarius", + "star.starcaller.overworld.7364": "Y Scorpius", + "star.starcaller.overworld.7365": "Y Sculptor", + "star.starcaller.overworld.7366": "Y Scutum", + "star.starcaller.overworld.7367": "Y Serpens", + "star.starcaller.overworld.7368": "Y Sextans", + "star.starcaller.overworld.7369": "Y Taurus", + "star.starcaller.overworld.7370": "Y Telescopium", + "star.starcaller.overworld.7371": "Y Triangulum", + "star.starcaller.overworld.7372": "Y Triangulum Australe", + "star.starcaller.overworld.7373": "Y Tucana", + "star.starcaller.overworld.7374": "Y Ursa Major", + "star.starcaller.overworld.7375": "Y Ursa Minor", + "star.starcaller.overworld.7376": "Y Vela", + "star.starcaller.overworld.7377": "Y Virgo", + "star.starcaller.overworld.7378": "Y Volans", + "star.starcaller.overworld.7379": "Y Vulpecula", + "star.starcaller.overworld.7380": "Z Andromeda", + "star.starcaller.overworld.7381": "Z Antlia", + "star.starcaller.overworld.7382": "Z Apus", + "star.starcaller.overworld.7383": "Z Aquarius", + "star.starcaller.overworld.7384": "Z Aquila", + "star.starcaller.overworld.7385": "Z Ara", + "star.starcaller.overworld.7386": "Z Aries", + "star.starcaller.overworld.7387": "Z Auriga", + "star.starcaller.overworld.7388": "Z Boötes", + "star.starcaller.overworld.7389": "Z Caelum", + "star.starcaller.overworld.7390": "Z Camelopardalis", + "star.starcaller.overworld.7391": "Z Cancer", + "star.starcaller.overworld.7392": "Z Canes Venatici", + "star.starcaller.overworld.7393": "Z Canis Major", + "star.starcaller.overworld.7394": "Z Canis Minor", + "star.starcaller.overworld.7395": "Z Capricornus", + "star.starcaller.overworld.7396": "Z Carina", + "star.starcaller.overworld.7397": "Z Cassiopeia", + "star.starcaller.overworld.7398": "Z Centaurus", + "star.starcaller.overworld.7399": "Z Cepheus", + "star.starcaller.overworld.7400": "Z Cetus", + "star.starcaller.overworld.7401": "Z Chamaeleon", + "star.starcaller.overworld.7402": "Z Circinus", + "star.starcaller.overworld.7403": "Z Columba", + "star.starcaller.overworld.7404": "Z Coma Berenices", + "star.starcaller.overworld.7405": "Z Corona Australis", + "star.starcaller.overworld.7406": "Z Corona Borealis", + "star.starcaller.overworld.7407": "Z Corvus", + "star.starcaller.overworld.7408": "Z Crater", + "star.starcaller.overworld.7409": "Z Crux", + "star.starcaller.overworld.7410": "Z Cygnus", + "star.starcaller.overworld.7411": "Z Delphinus", + "star.starcaller.overworld.7412": "Z Dorado", + "star.starcaller.overworld.7413": "Z Draco", + "star.starcaller.overworld.7414": "Z Equuleus", + "star.starcaller.overworld.7415": "Z Eridanus", + "star.starcaller.overworld.7416": "Z Fornax", + "star.starcaller.overworld.7417": "Z Gemini", + "star.starcaller.overworld.7418": "Z Grus", + "star.starcaller.overworld.7419": "Z Hercules", + "star.starcaller.overworld.7420": "Z Horologium", + "star.starcaller.overworld.7421": "Z Hydra", + "star.starcaller.overworld.7422": "Z Hydrus", + "star.starcaller.overworld.7423": "Z Indus", + "star.starcaller.overworld.7424": "Z Lacerta", + "star.starcaller.overworld.7425": "Z Leo", + "star.starcaller.overworld.7426": "Z Leo Minor", + "star.starcaller.overworld.7427": "Z Lepus", + "star.starcaller.overworld.7428": "Z Libra", + "star.starcaller.overworld.7429": "Z Lupus", + "star.starcaller.overworld.7430": "Z Lynx", + "star.starcaller.overworld.7431": "Z Lyra", + "star.starcaller.overworld.7432": "Z Mensa", + "star.starcaller.overworld.7433": "Z Microscopium", + "star.starcaller.overworld.7434": "Z Monoceros", + "star.starcaller.overworld.7435": "Z Musca", + "star.starcaller.overworld.7436": "Z Norma", + "star.starcaller.overworld.7437": "Z Octans", + "star.starcaller.overworld.7438": "Z Ophiuchus", + "star.starcaller.overworld.7439": "Z Orion", + "star.starcaller.overworld.7440": "Z Pavo", + "star.starcaller.overworld.7441": "Z Pegasus", + "star.starcaller.overworld.7442": "Z Perseus", + "star.starcaller.overworld.7443": "Z Phoenix", + "star.starcaller.overworld.7444": "Z Pictor", + "star.starcaller.overworld.7445": "Z Pisces", + "star.starcaller.overworld.7446": "Z Piscis Austrinus", + "star.starcaller.overworld.7447": "Z Puppis", + "star.starcaller.overworld.7448": "Z Pyxis", + "star.starcaller.overworld.7449": "Z Reticulum", + "star.starcaller.overworld.7450": "Z Sagitta", + "star.starcaller.overworld.7451": "Z Sagittarius", + "star.starcaller.overworld.7452": "Z Scorpius", + "star.starcaller.overworld.7453": "Z Sculptor", + "star.starcaller.overworld.7454": "Z Scutum", + "star.starcaller.overworld.7455": "Z Serpens", + "star.starcaller.overworld.7456": "Z Sextans", + "star.starcaller.overworld.7457": "Z Taurus", + "star.starcaller.overworld.7458": "Z Telescopium", + "star.starcaller.overworld.7459": "Z Triangulum", + "star.starcaller.overworld.7460": "Z Triangulum Australe", + "star.starcaller.overworld.7461": "Z Tucana", + "star.starcaller.overworld.7462": "Z Ursa Major", + "star.starcaller.overworld.7463": "Z Ursa Minor", + "star.starcaller.overworld.7464": "Z Vela", + "star.starcaller.overworld.7465": "Z Virgo", + "star.starcaller.overworld.7466": "Z Volans", + "star.starcaller.overworld.7467": "Z Vulpecula" } \ No newline at end of file