Jump to content

GamingZacharyC

Members
  • Posts

    25
  • Joined

  • Last visited

Posts posted by GamingZacharyC

  1. Unless you have good advice, and I say this as a random person on the internet (I do not know Crazy_sheep), please do not berate Purple Shep (reference, to those who did not get it) any longer. He has set out a course and path for himself to learn Java, make a small game prototype, and then look at modding MC. He does not deserve, or, I'd be willing to bet want, any more trouble (though, he did almost literally ask for trouble in the beginning). He has good advice, though in the form of being put down 😉.

  2. Try monitoring the Task Manager as your Minecraft game loads. That may give you some insight. If you decide to go with my monitoring plan to find out what may be happening, please follow the instructions below:

     

    Follow these instructions and make sure that they match up with what you have, even if you have done this before.

    image.thumb.png.2414f34b60b913f7a9106d0e8d382fa3.png

    Above is a basic task manager. If you have not, please click "More details."

    image.png.983a8c9b5f9caed9fce6a1ae77898d8d.png 

    Change your Memory and Disc values to Percents.

     

    Once you have done this, please monitor your overall and Minecraft Java Edition values for: CPU, Memory, and Disc. Please note: the Disc percentage is based on Active Time for all discs. So, say, if you have 3 discs, and you have one of these discs is at 30% active time, it will show an overall of 10%. Of course, values will ALWAYS be different based on hardware. Using a Threadripper verses a Intel Core Duo will yield SIGNIFICANTLY different results. Using an NVMe against a a spinning Hard Disc will yield significantly different results. Using 2TB of RAM verses 2 GB will yield a literal 1000 times different result. For what can be considered a good point, I recommend doing basic tasks like watching YouTube and generally surfing the web. Should your Minecraft go down in any area below loading YouTube, then you found where you are crashing. Should you, for instance, hit 100% RAM, a hs_err_pidXXXXX.txt (where X is a digit) file might appear in your .minecraft folder (%appdata%\.minecraft).

  3. Here; Let me provide some insight, since this seems to be from two people who learned Java first against someone who doesn't know Java very well.

     

    I personally have never learned a coding language before diving into a project; I find fun in learning as I go. If I need to figure out how to do something, I either google or post on some kind of forum. I know this isn't best practice, and I know that it is highly discouraged.

     

    If you know C++, then Java should be easy. Look for patterns. Watch modding tutorials. Or, start out learning Swing. I promise, if you just try, if you put in effort, if you sit there and make connections, that most coding languages can become very easy. I started out with RBX.Lua, which is a special adaptation of Lua for Roblox. I had no clue what I was doing. I watched some tutorials, and figured it out within a month. Patterns can become very apparent within Lua in general.

     

    For learning how to mod Minecraft, learn Java an all of a sudden it's a breeze is pretty bad advice. Sure, it makes it 75% easier, but that's it. You're only 75% there. That's like only following 75% of the instructions to build a nuclear (fission) reactor without having built one before. You're bound to fail. I've seen on countless threads around the internet, and having learned Java along my journey, can attest that Minecraft Java is 99% different from regular Java. Yes, as you put it, Minecraft modding is "so damn hard." Just saying that Minecraft modding is 100% Java is a false claim, too. Setting up your modding workspace and using it requires knowledge of Gradle too, and a pretty good understanding of how Minecraft works in some situations.

     

    Minecraft modding is also "so damn hard" because it has to be so versatile. Some people just want to make a minimap mod, and some want to make the next Mekanism or Thaumcraft. Some people want to make AppleSkin, while others want to make VoxelMap. Some people want to make mods like MrCrayFish's Furniture Mod. There are so many different things that people want to make and do, and, in order to allow for it all, modding has to be "so damn hard." There is no in-between. If you're looking for an easy way around (AKA not doing much of the work yourself) with negative consequences, check out MCreator (for now, as the dev is in the same situation as Anzor). That said, I do not recommend MCreator for anyone looking to distribute a serious mod. MCreator may be great for someone looking to make a mod between friends, but it is not for making your Applied Energistics 2  (though I prefer Refined Storage, it has fewer mechanically impressive features, like Certus Quartz growth).

  4. If you would like, please read further for an explanation of what happened (in the spirit of learning how to debug)

     

    If you look below, at the section titled "What Went Wrong" in your error, try to read it, as though it were plain English.

    Execution failed for task ':downloadAssets'.
    > Failed to get asset: minecraft/sounds/music/game/calm2.ogg
      Some assets failed to download or validate, try running the task again.

    Do you see where it says "failed to get asset" and gives an asset path to a music file? Below that line, it also says that "some assets failed to download or validate."

     

    In other words, it is saying "Hey, we found a problem with the game. This was probably a one-off issue." Because it happened multiple times, I told you to delete the problem files and let your machine reacquire them from Microsoft servers.

     

    I hope you found this breakdown useful, and I hope that I gave you some useful insight.

  5. Hi! I am manually updating my mods in bulk, and, to do so, need to update Forge. However, I am experiencing an issue: I am getting an error saying that it is failing to download libraries from spongepowered.org and asm.ow2.org (aka asm.ow2.io) I am able to install most 1.16.1 forge versions perfectly fine, but I am finding issues with, in particular (the only ones I've tested) 32.0.88 and 32.0.98. If you need to ask for anything more specific, and/or am able to give general debugging advice, please do not hesitate to do so. (EDIT) Looking back, it might be useful that the error happened when the green bar at the top of the installer details window reached the far right (not a pixel in difference).

  6. So, I am trying to make an ore. All is good, right? Well, I am attempting to use an overlay on the vanilla Stone texture, so that my ore is resource-pack compatible (And not so cheeseable with X-Ray packs!).

     

    I am wondering: How would I do this in 1.15.2? I've seen a similar post for 1.7, but nothing after that. I've googled a fair amount, trying a large variety of different keywords. I've seen other modders do this on occasion, and know it's possible. Here's my .JSON for the block texture (Wherever I use ~~~ I am hiding the mod name).

    {
      "parent": "block/cube",
      "textures": {
        "down": "~~~:blocks/~~~ore-overlay",
        "up": "~~~:blocks/~~~ore-overlay",
        "north": "~~~:blocks/~~~ore-overlay",
        "east": "~~~:blocks/~~~ore-overlay",
        "south": "~~~:blocks/~~~ore-overlay",
        "west": "~~~:blocks/~~~ore-overlay",
      }
    }

     

  7. So, I am using the IndustrialCraft2 mod, which caused my game to crash. The crash report says this:

    Quote

    java.lang.NullPointerException: Ticking block entity
        at net.minecraftforge.fluids.FluidStack.<init>(FluidStack.java:72)
        at ic2.core.block.transport.TileEntityFluidPipe$PipeFluidHandler.drain(TileEntityFluidPipe.java:350)
        at ic2.core.util.LiquidUtil.drainTile(LiquidUtil.java:332)
        at ic2.core.util.LiquidUtil.drainTile(LiquidUtil.java:323)
        at ic2.core.util.LiquidUtil.transfer(LiquidUtil.java:427)
        at ic2.core.item.logistics.ItemPumpCover.onTick(ItemPumpCover.java:105)
        at ic2.core.block.transport.cover.Covers.onWorldTick(Covers.java:116)
        at ic2.core.block.TileEntityBlock.func_73660_a(TileEntityBlock.java:318)
        at net.minecraft.world.World.func_72939_s(World.java:1835)
        at net.minecraft.world.WorldServer.func_72939_s(WorldServer.java:613)
        at net.minecraft.server.MinecraftServer.func_71190_q(MinecraftServer.java:767)
        at net.minecraft.server.MinecraftServer.func_71217_p(MinecraftServer.java:668)
        at net.minecraft.server.integrated.IntegratedServer.func_71217_p(IntegratedServer.java:252)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:526)
        at java.lang.Thread.run(Thread.java:745)

     

    So, if the report means anything at all, I think the pipes that were recently added have something to do with it. I'm using GalactiCraft's Fluid Pipes in coordination with IndustriaLCraft2's Large Steel Pipes.  If I'm correct, having 2,000 pumps caused the crash. Somebody correct me if I'm wrong.

     

    So, my question is: How would I fix this without deleting my world or any of my mods?

     

     

     

    -----------------------------------[ EDIT ]-----------------------------------

    I'm gonna try using MCEdit. Hopefully that works...

     

    -----------------------------------[ EDIT 2 ]-----------------------------------

    That was a very stupid idea. Why would MCEdit be able to load GalactiCraft dimensions? (that's the location of my pump problem)

     

    I just got an idea from that.... Using Universal Minecraft Editor, I may be able to set my dimension to 1. Hopefully that works.

     

    -----------------------------------[ EDIT 3 ]-----------------------------------

    Nope! No success here!

  8. After updating the mods, I got an error that is as follows:

     

    [18:37:10] [Server thread/ERROR] [net.minecraft.server.MinecraftServer]: Encountered an unexpected exception
    net.minecraftforge.fml.common.MultipleModsErrored: 
    Missing Mods:
        unknown : need [2.8.74,): have 2.8.73-ex112

    Missing Mods:
        unknown : need [1.12.2-0.9.1a,): have 1.12.2-0.8.2


        at net.minecraftforge.fml.common.Loader.sortModList(Loader.java:298) ~[Loader.class:?]
        at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:570) ~[Loader.class:?]
        at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) ~[FMLServerHandler.class:?]
        at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) ~[FMLCommonHandler.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) ~[nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [18:37:10] [Server thread/ERROR] [net.minecraft.server.MinecraftServer]: This crash report has been saved to: C:\MS Minecraft Server\.\crash-reports\crash-2018-12-17_18.37.10-server.txt

     

    The rest of the log:

    Spoiler

    [18:36:47] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
    [18:36:47] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
    [18:36:47] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLServerTweaker
    [18:36:47] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2768 for Minecraft 1.12.2 loading
    [18:36:47] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_161, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre1.8.0_161
    [18:36:47] [main/INFO] [FML]: Searching C:\MS Minecraft Server\.\mods for mods
    [18:36:47] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Escapees-Wizardry-Mod-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [18:36:47] [main/WARN] [FML]: The coremod com.teamwizardry.wizardry.asm.WizardryCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [18:36:47] [main/WARN] [FML]: The coremod Wizardry Plugin (com.teamwizardry.wizardry.asm.WizardryCorePlugin) is not signed!
    [18:36:47] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Forgelin-1.8.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [18:36:47] [main/WARN] [FML]: The coremod net.shadowfacts.forgelin.preloader.ForgelinPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [18:36:47] [main/WARN] [FML]: The coremod ForgelinPlugin (net.shadowfacts.forgelin.preloader.ForgelinPlugin) is not signed!
    [18:36:47] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in InventoryTweaks-1.63.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [18:36:47] [main/WARN] [FML]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [18:36:47] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in LibrarianLib-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [18:36:47] [main/WARN] [FML]: The coremod com.teamwizardry.librarianlib.asm.LibLibCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [18:36:47] [main/WARN] [FML]: The coremod LibrarianLib Plugin (com.teamwizardry.librarianlib.asm.LibLibCorePlugin) is not signed!
    [18:36:47] [main/WARN] [FML]: The coremod micdoodle8.mods.miccore.MicdoodlePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [18:36:47] [main/WARN] [FML]: The coremod MicdoodlePlugin (micdoodle8.mods.miccore.MicdoodlePlugin) is not signed!
    [18:36:47] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in OpenComputers-MC1.12.2-1.7.3.146.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [18:36:47] [main/WARN] [FML]: The coremod li.cil.oc.common.launch.TransformerLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [18:36:47] [main/WARN] [FML]: The coremod TransformerLoader (li.cil.oc.common.launch.TransformerLoader) is not signed!
    [18:36:47] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in OpenSecurity-MC1.12.2-1.0-13.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [18:36:47] [main/WARN] [FML]: The coremod pcl.opensecurity.util.SoundUnpack does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [18:36:47] [main/WARN] [FML]: The coremod SoundUnpack (pcl.opensecurity.util.SoundUnpack) is not signed!
    [18:36:47] [main/INFO] [FML]: Loading tweaker optifine.OptiFineForgeTweaker from OptiFine_1.12.2_HD_U_E2.jar
    [18:36:47] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
    [18:36:47] [main/INFO] [LaunchWrapper]: Loading tweak class name optifine.OptiFineForgeTweaker
    [18:36:47] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
    [18:36:47] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
    [18:36:47] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
    [18:36:47] [main/INFO] [LaunchWrapper]: Calling tweak class optifine.OptiFineForgeTweaker
    [18:36:47] [main/INFO] [STDOUT]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: acceptOptions
    [18:36:47] [main/INFO] [STDOUT]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: Forge server detected, skipping class transformer
    [18:36:47] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [18:36:50] [main/INFO] [FML]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557
    [18:36:50] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [18:36:50] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [18:36:50] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [18:36:50] [main/INFO] [STDOUT]: [micdoodle8.mods.miccore.MicdoodlePlugin:getASMTransformerClass:99]: Successfully Registered Transformer
    [18:36:50] [main/INFO] [STDOUT]: [micdoodle8.mods.miccore.MicdoodlePlugin:injectData:292]: [Micdoodle8Core]: Patching game...
    [18:36:50] [main/INFO] [STDOUT]: [micdoodle8.mods.miccore.MicdoodlePlugin:injectData:292]: [Micdoodle8Core]: Patching game...
    [18:36:50] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [18:36:50] [main/INFO] [STDOUT]: [pcl.opensecurity.util.SoundUnpack:load:23]: Extracting sounds from: assets/opensecurity/sounds/alarms/
    [18:36:50] [main/INFO] [STDOUT]: [pcl.opensecurity.util.SoundUnpack:load:35]: Extracting file: klaxon2.ogg
    [18:36:50] [main/INFO] [STDOUT]: [pcl.opensecurity.util.SoundUnpack:load:35]: Extracting file: klaxon1.ogg
    [18:36:50] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
    [18:36:51] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [18:36:51] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [18:36:52] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [18:36:52] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [18:36:52] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [18:36:53] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
    [18:36:53] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
    [18:36:53] [main/INFO] [STDOUT]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: getLaunchArguments
    [18:36:53] [main/INFO] [dsurroundcore]: Transmorgrifying [net.minecraft.world.WorldServer]: resetRainAndThunder
    [18:36:53] [main/INFO] [dsurroundcore]: func_73051_P()V: Found!
    [18:36:53] [main/INFO] [dsurroundcore]: Transmorgrified [net.minecraft.world.WorldServer]: resetRainAndThunder
    [18:36:53] [main/INFO] [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:28]: [wizardry ASM] Successfully patched -> 'func_70071_h_', 'onUpdate' with '()V'
    [18:36:53] [main/INFO] [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:28]: [wizardry ASM] Successfully patched -> 'func_191986_a', 'travel' with '(FFF)V'
    [18:36:53] [main/INFO] [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:28]: [wizardry ASM] Successfully patched -> 'func_70091_d', 'move' with '(Lnet/minecraft/entity/MoverType;DDD)V'
    [18:36:53] [main/INFO] [LibrarianLib ASM]: Transforming Entity
    [18:36:53] [main/INFO] [LibrarianLib ASM]: Applying Transformation to method (Names [onUpdate, func_70071_h_] Descriptor ()V)
    [18:36:53] [main/INFO] [LibrarianLib ASM]: Attempting to insert: Update hook
    [18:36:53] [main/INFO] [LibrarianLib ASM]: Patch result: Success
    [18:36:53] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer}
    [18:36:55] [main/INFO] [OpenComputers]: Successfully patched net/minecraft/entity/EntityLiving.recreateLeash.
    [18:36:57] [main/INFO] [dsurroundcore]: Transmorgrifying [net.minecraft.entity.projectile.EntityArrow]: No Particles on Arrows
    [18:36:57] [main/INFO] [dsurroundcore]: func_70071_h_()V: Found!
    [18:36:57] [main/INFO] [dsurroundcore]: Transmorgrified [net.minecraft.entity.projectile.EntityArrow]: No Particles on Arrows
    [18:37:01] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Starting minecraft server version 1.12.2
    [18:37:01] [Server console handler/ERROR] [net.minecraft.server.dedicated.DedicatedServer]: Exception handling console input
    java.io.IOException: The handle is invalid
        at java.io.FileInputStream.readBytes(Native Method) ~[?:1.8.0_161]
        at java.io.FileInputStream.read(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedInputStream.read1(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedInputStream.read(Unknown Source) ~[?:1.8.0_161]
        at sun.nio.cs.StreamDecoder.readBytes(Unknown Source) ~[?:1.8.0_161]
        at sun.nio.cs.StreamDecoder.implRead(Unknown Source) ~[?:1.8.0_161]
        at sun.nio.cs.StreamDecoder.read(Unknown Source) ~[?:1.8.0_161]
        at java.io.InputStreamReader.read(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedReader.fill(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedReader.readLine(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedReader.readLine(Unknown Source) ~[?:1.8.0_161]
        at net.minecraft.server.dedicated.DedicatedServer$2.run(DedicatedServer.java:105) [nz$2.class:?]
    [18:37:01] [Server thread/INFO] [FML]: MinecraftForge v14.23.5.2768 Initialized
    [18:37:01] [Server thread/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
    [18:37:01] [Server thread/INFO] [FML]: Replaced 1036 ore ingredients
    [18:37:01] [Server thread/INFO] [FML]: Searching C:\MS Minecraft Server\.\mods for mods
    [18:37:04] [Server thread/WARN] [FML]: Mod cd4017be_lib is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 6.2.4
    [18:37:07] [Server thread/WARN] [FML]: Mod ironchest is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.12.2-7.0.54.838
    [18:37:09] [Server thread/INFO] [FML]: Disabling mod presets it is client side only.
    [18:37:09] [Server thread/INFO] [FML]: Forge Mod Loader has identified 58 mods to load
    [18:37:10] [Server thread/WARN] [FML]: Missing English translation for FML: assets/fml/lang/en_us.lang
    [18:37:10] [Server thread/WARN] [FML]: Missing English translation for buildcraftbuilders: assets/buildcraftbuilders/lang/en_us.lang
    [18:37:10] [Server thread/WARN] [FML]: Missing English translation for buildcraftcore: assets/buildcraftcore/lang/en_us.lang
    [18:37:10] [Server thread/WARN] [FML]: Missing English translation for buildcraftenergy: assets/buildcraftenergy/lang/en_us.lang
    [18:37:10] [Server thread/WARN] [FML]: Missing English translation for buildcraftfactory: assets/buildcraftfactory/lang/en_us.lang
    [18:37:10] [Server thread/WARN] [FML]: Missing English translation for buildcraftlib: assets/buildcraftlib/lang/en_us.lang
    [18:37:10] [Server thread/WARN] [FML]: Missing English translation for buildcraftrobotics: assets/buildcraftrobotics/lang/en_us.lang
    [18:37:10] [Server thread/WARN] [FML]: Missing English translation for buildcraftsilicon: assets/buildcraftsilicon/lang/en_us.lang
    [18:37:10] [Server thread/WARN] [FML]: Missing English translation for buildcrafttransport: assets/buildcrafttransport/lang/en_us.lang
    [18:37:10] [Server thread/WARN] [FML]: Missing English translation for forgelin: assets/forgelin/lang/en_us.lang
    [18:37:10] [Server thread/WARN] [FML]: Missing English translation for gottschcore: assets/gottschcore/lang/en_us.lang
    [18:37:10] [Server thread/WARN] [FML]: Missing English translation for ic2: assets/ic2/lang/en_us.lang
    [18:37:10] [Server thread/WARN] [FML]: Missing English translation for librarianliblate: assets/librarianliblate/lang/en_us.lang
    [18:37:10] [Server thread/WARN] [FML]: Missing English translation for pamscookables: assets/pamscookables/lang/en_us.lang
    [18:37:10] [Server thread/WARN] [FML]: Missing English translation for redstoneflux: assets/redstoneflux/lang/en_us.lang
    [18:37:10] [Server thread/WARN] [FML]: Missing English translation for roguelike: assets/roguelike/lang/en_us.lang
    [18:37:10] [Server thread/FATAL] [FML]: net.minecraftforge.fml.common.MissingModsException: Mod advanced_solar_panels (Advanced Solar Panels) requires [ic2@[2.8.74,)]
    [18:37:10] [Server thread/FATAL] [FML]: net.minecraftforge.fml.common.MissingModsException: Mod dynamictreesphc (Dynamic Trees PHC) requires [dynamictrees@[1.12.2-0.9.1a,)]
    [18:37:10] [Server thread/ERROR] [net.minecraft.server.MinecraftServer]: Encountered an unexpected exception
    net.minecraftforge.fml.common.MultipleModsErrored: 
    Missing Mods:
        unknown : need [2.8.74,): have 2.8.73-ex112

    Missing Mods:
        unknown : need [1.12.2-0.9.1a,): have 1.12.2-0.8.2


        at net.minecraftforge.fml.common.Loader.sortModList(Loader.java:298) ~[Loader.class:?]
        at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:570) ~[Loader.class:?]
        at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98) ~[FMLServerHandler.class:?]
        at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333) ~[FMLCommonHandler.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125) ~[nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [18:37:10] [Server thread/ERROR] [net.minecraft.server.MinecraftServer]: This crash report has been saved to: C:\MS Minecraft Server\.\crash-reports\crash-2018-12-17_18.37.10-server.txt
    [18:37:10] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Stopping server
    [18:37:10] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving worlds
    [18:37:10] [Server thread/INFO] [FML]: The state engine was in incorrect state CONSTRUCTING and forced into state SERVER_STOPPED. Errors may have been discarded.
    [18:37:10] [Server Shutdown Thread/INFO] [net.minecraft.server.MinecraftServer]: Stopping server
    [18:37:10] [Server Shutdown Thread/INFO] [net.minecraft.server.MinecraftServer]: Saving worlds
     

    The Crash Report:

    Spoiler

    ---- Minecraft Crash Report ----

    WARNING: coremods are present:
      Wizardry Plugin (Escapees-Wizardry-Mod-1.12.2.jar)
      Inventory Tweaks Coremod (InventoryTweaks-1.63.jar)
      LibrarianLib Plugin (LibrarianLib-1.12.2.jar)
      SoundUnpack (OpenSecurity-MC1.12.2-1.0-13.jar)
      TransformerLoader (OpenComputers-MC1.12.2-1.7.3.146.jar)
      DynamicSurroundingsCore (DynamicSurroundings-core-1.12.2-3.4.10.5.jar)
      ForgelinPlugin (Forgelin-1.8.2.jar)
      MicdoodlePlugin (MicdoodleCore-1.12.2-4.0.1.184.jar)
    Contact their authors BEFORE contacting forge

    // My bad.

    Time: 12/17/18 6:37 PM
    Description: Exception in server tick loop

    Missing Mods:
        unknown : need [2.8.74,): have 2.8.73-ex112

    Missing Mods:
        unknown : need [1.12.2-0.9.1a,): have 1.12.2-0.8.2

    net.minecraftforge.fml.common.MultipleModsErrored
        at net.minecraftforge.fml.common.Loader.sortModList(Loader.java:298)
        at net.minecraftforge.fml.common.Loader.loadMods(Loader.java:570)
        at net.minecraftforge.fml.server.FMLServerHandler.beginServerLoading(FMLServerHandler.java:98)
        at net.minecraftforge.fml.common.FMLCommonHandler.onServerStart(FMLCommonHandler.java:333)
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:125)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486)
        at java.lang.Thread.run(Unknown Source)


    A detailed walkthrough of the error, its code path and all known details is as follows:
    ---------------------------------------------------------------------------------------

    -- System Details --
    Details:
        Minecraft Version: 1.12.2
        Operating System: Windows 7 (amd64) version 6.1
        Java Version: 1.8.0_161, Oracle Corporation
        Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
        Memory: 356824768 bytes (340 MB) / 524812288 bytes (500 MB) up to 932184064 bytes (889 MB)
        JVM Flags: 0 total; 
        IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
        FML: MCP 9.42 Powered by Forge 14.23.5.2768 58 mods loaded, 58 mods active
        States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored

        | State | ID                    | Version                  | Source                                        | Signature                                |
        |:----- |:--------------------- |:------------------------ |:--------------------------------------------- |:---------------------------------------- |
        | U     | minecraft             | 1.12.2                   | minecraft.jar                                 | None                                     |
        | U     | mcp                   | 9.42                     | minecraft.jar                                 | None                                     |
        | U     | FML                   | 8.0.99.99                | forge-1.12.2-14.23.5.2768-universal.jar       | e3c3d50c7c986df74c645c0ac54639741c90a557 |
        | U     | forge                 | 14.23.5.2768             | forge-1.12.2-14.23.5.2768-universal.jar       | e3c3d50c7c986df74c645c0ac54639741c90a557 |
        | U     | micdoodlecore         |                          | minecraft.jar                                 | None                                     |
        | U     | opencomputers|core    | 1.7.3.146                | minecraft.jar                                 | None                                     |
        | U     | dsurroundcore         |                          | minecraft.jar                                 | None                                     |
        | U     | securitycraft         | v1.8.10                  | [1.12.2]+SecurityCraft+v1.8.10.jar            | None                                     |
        | U     | advanced_solar_panels | 4.2.0                    | Advanced+Solar+Panels-4.2.0.jar               | None                                     |
        | U     | ageofweapons          | 0.13.2_pre1              | Age-of-Weapons-Mod-1.12.2.jar                 | None                                     |
        | U     | baubles               | 1.5.2                    | Baubles-Mod-1.12.2.jar                        | None                                     |
        | U     | bibliocraft           | 2.4.5                    | BiblioCraft-Mod-1.12.2.jar                    | None                                     |
        | U     | biomesoplenty         | 7.0.1.2419               | BiomesOPlenty-1.12.2-7.0.1.2419-universal.jar | None                                     |
        | U     | birdsnests            | 2.1.0                    | BirdsNests1.12.2-2.1.0.jar                    | None                                     |
        | U     | buildcraftcompat      | 7.99.20                  | buildcraft-all-7.99.20.jar                    | None                                     |
        | U     | buildcraftbuilders    | 7.99.20                  | buildcraft-all-7.99.20.jar                    | None                                     |
        | U     | buildcraftcore        | 7.99.20                  | buildcraft-all-7.99.20.jar                    | None                                     |
        | U     | buildcraftenergy      | 7.99.20                  | buildcraft-all-7.99.20.jar                    | None                                     |
        | U     | buildcraftfactory     | 7.99.20                  | buildcraft-all-7.99.20.jar                    | None                                     |
        | U     | buildcraftlib         | 7.99.20                  | buildcraft-all-7.99.20.jar                    | None                                     |
        | U     | buildcraftrobotics    | 7.99.20                  | buildcraft-all-7.99.20.jar                    | None                                     |
        | U     | buildcraftsilicon     | 7.99.20                  | buildcraft-all-7.99.20.jar                    | None                                     |
        | U     | buildcrafttransport   | 7.99.20                  | buildcraft-all-7.99.20.jar                    | None                                     |
        | U     | cd4017be_lib          | 6.2.4                    | CD4017BE-Library-1.12.2.jar                   | None                                     |
        | U     | dungeons2             | 1.3.3                    | Dungeons2-mc1.12-f14.21.1.2387-v1.3.3.jar     | None                                     |
        | U     | dynamictrees          | 1.12.2-0.8.2             | DynamicTrees-1.12.2-0.8.2.jar                 | None                                     |
        | U     | dynamictreesphc       | 1.12.2-0.1.1a            | DynamicTreesPHC-1.12.2-0.1.1a.jar             | None                                     |
        | U     | wizardry              | 0.9.5                    | Escapees-Wizardry-Mod-1.12.2.jar              | None                                     |
        | U     | exoticbirds           | 1.0                      | Exotic+Birds+1.12.2-2.2.1.jar                 | None                                     |
        | U     | familiarfauna         | 1.0.11                   | FamiliarFauna-1.12.2-1.0.11.jar               | None                                     |
        | U     | forestry              | 5.8.0.311                | Forestry-Mod-1.12.2.jar                       | None                                     |
        | U     | forgelin              | 1.8.2                    | Forgelin-1.8.2.jar                            | None                                     |
        | U     | galacticraftplanets   | 4.0.1.184                | Galacticraft-Planets-1.12.2-4.0.1.184.jar     | None                                     |
        | U     | galacticraftcore      | 4.0.1.184                | GalacticraftCore-1.12.2-4.0.1.184.jar         | None                                     |
        | U     | gottschcore           | 1.5.1                    | GottschCore-mc1.12.2-f14.23.5.2768-v1.5.1.jar | None                                     |
        | U     | waila                 | 1.8.26                   | Hwyla-1.8.26-B41_1.12.2.jar                   | None                                     |
        | U     | ichunutil             | 7.1.4                    | iChun-Util-Mod-1.12.2.jar                     | None                                     |
        | U     | ic2                   | 2.8.73-ex112             | industrialcraft-2-2.8.73-ex112.jar            | None                                     |
        | U     | inventorytweaks       | 1.63+release.109.220f184 | InventoryTweaks-1.63.jar                      | None                                     |
        | U     | ironchest             | 1.12.2-7.0.54.838        | ironchest-1.12.2-7.0.54.838.jar               | None                                     |
        | U     | jei                   | 4.12.0.216               | jei_1.12.2-4.12.0.216.jar                     | None                                     |
        | U     | librarianliblate      | 4.12                     | LibrarianLib-1.12.2.jar                       | None                                     |
        | U     | librarianlib          | 4.12                     | LibrarianLib-1.12.2.jar                       | None                                     |
        | U     | metamorph             | 1.1.6                    | metamorph-1.1.6-1.12.2.jar                    | None                                     |
        | U     | cfm                   | 5.13.0                   | MrCrayfishs-Furniture-Mod-1.12.2.jar          | None                                     |
        | U     | opencomputers         | 1.7.3.146                | OpenComputers-MC1.12.2-1.7.3.146.jar          | None                                     |
        | U     | opensecurity          | 1.0-13                   | OpenSecurity-MC1.12.2-1.0-13.jar              | None                                     |
        | U     | harvestcraft          | 1.12.2z                  | Pam's+HarvestCraft+1.12.2za.jar               | None                                     |
        | U     | pamscookables         | 1.1                      | pamscookables-1.1.jar                         | None                                     |
        | U     | redstoneflux          | 2.1.0                    | RedstoneFlux-1.12-2.1.0.6-universal.jar       | None                                     |
        | U     | roguelike             | 1.7.2                    | Roguelike-Dungeons-Mod-1.12.2.jar             | None                                     |
        | U     | simplecorn            | 2.4.1                    | SimpleCorn1.12-1.12-2.4.1.jar                 | None                                     |
        | U     | thaumcraft            | 6.1.BETA26               | Thaumcraft-1.12.2-6.1.BETA26.jar              | None                                     |
        | U     | thermalsolars         | 1.12.2 V1.9.4            | thermalsolars-1.12.2-1.9.4.jar                | None                                     |
        | U     | toughasnails          | 3.1.0.139                | ToughAsNails-1.12.2-3.1.0.139-universal.jar   | None                                     |
        | U     | bspkrscore            | at_0.9                   | Treecapitator-1.12-at_0.9a.jar                | None                                     |
        | U     | treecapitator         | at_0.9                   | Treecapitator-1.12-at_0.9a.jar                | None                                     |
        | U     | dsurround             | 3.4.10.5                 | DynamicSurroundings-1.12.2-3.4.10.5.jar       | None                                     |

        Loaded coremods (and transformers): 
    Wizardry Plugin (Escapees-Wizardry-Mod-1.12.2.jar)
      com.teamwizardry.wizardry.asm.WizardryTransformer
    Inventory Tweaks Coremod (InventoryTweaks-1.63.jar)
      invtweaks.forge.asm.ContainerTransformer
    L

     

  9. ANOTHER crash! Why does this happen to me...???

     

    Log:

    Spoiler

    [17:02:34] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
    [17:02:34] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
    [17:02:34] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLServerTweaker
    [17:02:34] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2768 for Minecraft 1.12.2 loading
    [17:02:34] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_161, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre1.8.0_161
    [17:02:35] [main/INFO] [FML]: Searching C:\MS Minecraft Server\.\mods for mods
    [17:02:35] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Escapees-Wizardry-Mod-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [17:02:35] [main/WARN] [FML]: The coremod com.teamwizardry.wizardry.asm.WizardryCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [17:02:35] [main/WARN] [FML]: The coremod Wizardry Plugin (com.teamwizardry.wizardry.asm.WizardryCorePlugin) is not signed!
    [17:02:35] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Forgelin-1.8.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [17:02:35] [main/WARN] [FML]: The coremod net.shadowfacts.forgelin.preloader.ForgelinPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [17:02:35] [main/WARN] [FML]: The coremod ForgelinPlugin (net.shadowfacts.forgelin.preloader.ForgelinPlugin) is not signed!
    [17:02:35] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Inventory-Tweaks-Mod-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [17:02:36] [main/WARN] [FML]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [17:02:36] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in LibrarianLib-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [17:02:36] [main/WARN] [FML]: The coremod com.teamwizardry.librarianlib.asm.LibLibCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [17:02:36] [main/WARN] [FML]: The coremod LibrarianLib Plugin (com.teamwizardry.librarianlib.asm.LibLibCorePlugin) is not signed!
    [17:02:36] [main/WARN] [FML]: The coremod micdoodle8.mods.miccore.MicdoodlePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [17:02:36] [main/WARN] [FML]: The coremod MicdoodlePlugin (micdoodle8.mods.miccore.MicdoodlePlugin) is not signed!
    [17:02:36] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in OpenComputers-MC1.12.2-1.7.2.67.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [17:02:36] [main/WARN] [FML]: The coremod li.cil.oc.common.launch.TransformerLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [17:02:36] [main/WARN] [FML]: The coremod TransformerLoader (li.cil.oc.common.launch.TransformerLoader) is not signed!
    [17:02:36] [main/INFO] [FML]: Loading tweaker optifine.OptiFineForgeTweaker from OptiFine_1.12.2_HD_U_E2.jar
    [17:02:36] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
    [17:02:36] [main/INFO] [LaunchWrapper]: Loading tweak class name optifine.OptiFineForgeTweaker
    [17:02:36] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
    [17:02:36] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
    [17:02:36] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
    [17:02:36] [main/INFO] [LaunchWrapper]: Calling tweak class optifine.OptiFineForgeTweaker
    [17:02:36] [main/INFO] [STDOUT]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: acceptOptions
    [17:02:36] [main/INFO] [STDOUT]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: Forge server detected, skipping class transformer
    [17:02:36] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [17:02:39] [main/INFO] [FML]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557
    [17:02:39] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [17:02:39] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [17:02:39] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [17:02:39] [main/INFO] [STDOUT]: [micdoodle8.mods.miccore.MicdoodlePlugin:getASMTransformerClass:99]: Successfully Registered Transformer
    [17:02:39] [main/INFO] [FML]: Failed to find MicdoodleCore file in mods folder, skipping GC version check.
    [17:02:39] [main/INFO] [STDOUT]: [micdoodle8.mods.miccore.MicdoodlePlugin:injectData:292]: [Micdoodle8Core]: Patching game...
    [17:02:39] [main/INFO] [STDOUT]: [micdoodle8.mods.miccore.MicdoodlePlugin:injectData:292]: [Micdoodle8Core]: Patching game...
    [17:02:39] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
    [17:02:40] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [17:02:40] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [17:02:40] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [17:02:40] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [17:02:41] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [17:02:42] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
    [17:02:42] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
    [17:02:42] [main/INFO] [STDOUT]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: getLaunchArguments
    [17:02:42] [main/INFO] [dsurroundcore]: Transmorgrifying [net.minecraft.world.WorldServer]: resetRainAndThunder
    [17:02:42] [main/INFO] [dsurroundcore]: func_73051_P()V: Found!
    [17:02:42] [main/INFO] [dsurroundcore]: Transmorgrified [net.minecraft.world.WorldServer]: resetRainAndThunder
    [17:02:42] [main/INFO] [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:28]: [wizardry ASM] Successfully patched -> 'func_70071_h_', 'onUpdate' with '()V'
    [17:02:42] [main/INFO] [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:28]: [wizardry ASM] Successfully patched -> 'func_191986_a', 'travel' with '(FFF)V'
    [17:02:42] [main/INFO] [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:28]: [wizardry ASM] Successfully patched -> 'func_70091_d', 'move' with '(Lnet/minecraft/entity/MoverType;DDD)V'
    [17:02:42] [main/INFO] [LibrarianLib ASM]: Transforming Entity
    [17:02:42] [main/INFO] [LibrarianLib ASM]: Applying Transformation to method (Names [onUpdate, func_70071_h_] Descriptor ()V)
    [17:02:42] [main/INFO] [LibrarianLib ASM]: Attempting to insert: Update hook
    [17:02:42] [main/INFO] [LibrarianLib ASM]: Patch result: Success
    [17:02:42] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer}
    [17:02:45] [main/INFO] [OpenComputers]: Successfully patched net/minecraft/entity/EntityLiving.recreateLeash.
    [17:02:47] [main/INFO] [dsurroundcore]: Transmorgrifying [net.minecraft.entity.projectile.EntityArrow]: No Particles on Arrows
    [17:02:47] [main/INFO] [dsurroundcore]: func_70071_h_()V: Found!
    [17:02:47] [main/INFO] [dsurroundcore]: Transmorgrified [net.minecraft.entity.projectile.EntityArrow]: No Particles on Arrows
    [17:02:53] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Starting minecraft server version 1.12.2
    [17:02:53] [Server console handler/ERROR] [net.minecraft.server.dedicated.DedicatedServer]: Exception handling console input
    java.io.IOException: The handle is invalid
        at java.io.FileInputStream.readBytes(Native Method) ~[?:1.8.0_161]
        at java.io.FileInputStream.read(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedInputStream.read1(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedInputStream.read(Unknown Source) ~[?:1.8.0_161]
        at sun.nio.cs.StreamDecoder.readBytes(Unknown Source) ~[?:1.8.0_161]
        at sun.nio.cs.StreamDecoder.implRead(Unknown Source) ~[?:1.8.0_161]
        at sun.nio.cs.StreamDecoder.read(Unknown Source) ~[?:1.8.0_161]
        at java.io.InputStreamReader.read(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedReader.fill(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedReader.readLine(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedReader.readLine(Unknown Source) ~[?:1.8.0_161]
        at net.minecraft.server.dedicated.DedicatedServer$2.run(DedicatedServer.java:105) [nz$2.class:?]
    [17:02:53] [Server thread/INFO] [FML]: MinecraftForge v14.23.5.2768 Initialized
    [17:02:53] [Server thread/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
    [17:02:53] [Server thread/INFO] [FML]: Replaced 1036 ore ingredients
    [17:02:53] [Server thread/INFO] [FML]: Searching C:\MS Minecraft Server\.\mods for mods
    [17:02:58] [Server thread/WARN] [FML]: Mod cd4017be_lib is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 6.2.4
    [17:03:03] [Server thread/WARN] [FML]: Mod ironchest is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.12.2-7.0.46.831
    [17:03:07] [Server thread/INFO] [FML]: Disabling mod presets it is client side only.
    [17:03:07] [Server thread/INFO] [FML]: Forge Mod Loader has identified 53 mods to load
    [17:03:07] [Server thread/WARN] [FML]: Missing English translation for FML: assets/fml/lang/en_us.lang
    [17:03:07] [Server thread/WARN] [FML]: Missing English translation for buildcraftbuilders: assets/buildcraftbuilders/lang/en_us.lang
    [17:03:07] [Server thread/WARN] [FML]: Missing English translation for buildcraftcore: assets/buildcraftcore/lang/en_us.lang
    [17:03:07] [Server thread/WARN] [FML]: Missing English translation for buildcraftenergy: assets/buildcraftenergy/lang/en_us.lang
    [17:03:07] [Server thread/WARN] [FML]: Missing English translation for buildcraftfactory: assets/buildcraftfactory/lang/en_us.lang
    [17:03:07] [Server thread/WARN] [FML]: Missing English translation for buildcraftlib: assets/buildcraftlib/lang/en_us.lang
    [17:03:07] [Server thread/WARN] [FML]: Missing English translation for buildcraftrobotics: assets/buildcraftrobotics/lang/en_us.lang
    [17:03:07] [Server thread/WARN] [FML]: Missing English translation for buildcraftsilicon: assets/buildcraftsilicon/lang/en_us.lang
    [17:03:07] [Server thread/WARN] [FML]: Missing English translation for buildcrafttransport: assets/buildcrafttransport/lang/en_us.lang
    [17:03:07] [Server thread/WARN] [FML]: Missing English translation for forgelin: assets/forgelin/lang/en_us.lang
    [17:03:07] [Server thread/WARN] [FML]: Missing English translation for gottschcore: assets/gottschcore/lang/en_us.lang
    [17:03:08] [Server thread/WARN] [FML]: Missing English translation for ic2: assets/ic2/lang/en_us.lang
    [17:03:08] [Server thread/WARN] [FML]: Missing English translation for librarianliblate: assets/librarianliblate/lang/en_us.lang
    [17:03:08] [Server thread/WARN] [FML]: Missing English translation for redstoneflux: assets/redstoneflux/lang/en_us.lang
    [17:03:08] [Server thread/WARN] [FML]: Missing English translation for roguelike: assets/roguelike/lang/en_us.lang
    [17:03:13] [Server thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, micdoodlecore, opencomputers|core, dsurroundcore, advanced_solar_panels, ageofweapons, baubles, bibliocraft, biomesoplenty, birdsnests, buildcraftbuilders, buildcraftcore, buildcraftenergy, buildcraftfactory, buildcraftlib, buildcraftrobotics, buildcraftsilicon, buildcrafttransport, cd4017be_lib, dungeons2, dynamictrees, wizardry, exoticbirds, familiarfauna, forestry, forgelin, galacticraftcore, galacticraftplanets, gottschcore, harvestcraft, waila, ichunutil, ic2, inventorytweaks, ironchest, jei, librarianliblate, librarianlib, morph, cfm, opencomputers, redstoneflux, roguelike, securitycraft, simplecorn, thaumcraft, toughasnails, bspkrscore, treecapitator, dsurround] at CLIENT
    [17:03:13] [Server thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, micdoodlecore, opencomputers|core, dsurroundcore, advanced_solar_panels, ageofweapons, baubles, bibliocraft, biomesoplenty, birdsnests, buildcraftbuilders, buildcraftcore, buildcraftenergy, buildcraftfactory, buildcraftlib, buildcraftrobotics, buildcraftsilicon, buildcrafttransport, cd4017be_lib, dungeons2, dynamictrees, wizardry, exoticbirds, familiarfauna, forestry, forgelin, galacticraftcore, galacticraftplanets, gottschcore, harvestcraft, waila, ichunutil, ic2, inventorytweaks, ironchest, jei, librarianliblate, librarianlib, morph, cfm, opencomputers, redstoneflux, roguelike, securitycraft, simplecorn, thaumcraft, toughasnails, bspkrscore, treecapitator, dsurround] at SERVER
    [17:03:33] [Server thread/INFO] [FML]: Processing ObjectHolder annotations
    [17:03:35] [Server thread/INFO] [FML]: Found 1262 ObjectHolder annotations
    [17:03:35] [Server thread/INFO] [FML]: Identifying ItemStackHolder annotations
    [17:03:35] [Server thread/INFO] [FML]: Found 2 ItemStackHolder annotations
    [17:03:36] [Server thread/INFO] [FML]: Configured a dormant chunk cache size of 0
    [17:03:36] [Forge Version Check/INFO] [forge.VersionCheck]: [dsurround] Starting version check at https://raw.githubusercontent.com/OreCruncher/DynamicSurroundings/master/version.json
    [17:03:44] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `molecular_transformer`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.
    [17:03:44] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `quantum_generator`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.
    [17:03:44] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `advanced_solar_panel`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.
    [17:03:44] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `hybrid_solar_panel`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.
    [17:03:44] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `ultimate_solar_panel`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.
    [17:03:44] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `quantum_solar_panel`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.
    [17:03:48] [Forge Version Check/INFO] [forge.VersionCheck]: [dsurround] Found status: OUTDATED Target: 3.5.3.0
    [17:03:48] [Forge Version Check/INFO] [forge.VersionCheck]: [dungeons2] Starting version check at https://raw.githubusercontent.com/gottsch/gottsch-minecraft-Dungeons2/master/Dungeons2-1.12.2/update.json
    [17:03:48] [Forge Version Check/INFO] [forge.VersionCheck]: [dungeons2] Found status: OUTDATED Target: 1.3.3
    [17:03:48] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
    [17:03:48] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: UP_TO_DATE Target: null
    [17:03:48] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftcore] Starting version check at https://mod-buildcraft.com/version/versions.json
    [17:03:50] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftcore] Found status: OUTDATED Target: 7.99.20
    [17:03:50] [Forge Version Check/INFO] [forge.VersionCheck]: [gottschcore] Starting version check at https://raw.githubusercontent.com/gottsch/gottsch-minecraft-GottschCore/master/GottschCore1.12.2/update.json
    [17:03:50] [Forge Version Check/INFO] [forge.VersionCheck]: [gottschcore] Found status: OUTDATED Target: 1.5.1
    [17:03:50] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftlib] Starting version check at https://mod-buildcraft.com/version/versions.json
    [17:03:50] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftlib] Found status: OUTDATED Target: 7.99.20
    [17:03:50] [Forge Version Check/INFO] [forge.VersionCheck]: [securitycraft] Starting version check at https://www.github.com/Geforce132/SecurityCraft/raw/master/Updates/Forge.json
    [17:03:52] [Forge Version Check/INFO] [forge.VersionCheck]: [securitycraft] Found status: OUTDATED Target: v1.8.10
    [17:03:56] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 328 out of 328 recipes for shaped recipes
    [17:03:56] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 73 out of 73 recipes for shapeless recipes
    [17:03:57] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 41 out of 41 recipes for solid uu recipes
    [17:03:57] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 27 out of 27 recipes for furnace recipes
    [17:03:57] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 5 out of 5 recipes for blast furnace recipes
    [17:03:57] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 14 out of 14 recipes for block cutter recipes
    [17:03:57] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 50 out of 50 recipes for compressor recipes
    [17:03:57] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 12 out of 12 recipes for extractor recipes
    [17:03:57] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 74 out of 74 recipes for macerator recipes
    [17:03:57] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 5 out of 5 recipes for metal former cutting recipes
    [17:03:57] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 9 out of 9 recipes for metal former extruding recipes
    [17:03:57] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 14 out of 14 recipes for metal former rolling recipes
    [17:03:57] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 8 out of 8 recipes for ore washing recipes
    [17:03:57] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 26 out of 26 recipes for thermal centrifuge recipes
    [17:03:59] [Server thread/INFO] [advanced_solar_panels]: Loading ASP Config from C:\MS Minecraft Server\config\advanced_solar_panels.cfg
    [17:03:59] [Server thread/INFO] [advanced_solar_panels]: Loading MT Recipes from C:\MS Minecraft Server\config\advanced_solar_panels_MTRecipes.cfg
    [17:03:59] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ageofweaponstableofages`, expected `ageofweapons`. This could be a intended override, but in most cases indicates a broken mod.
    [17:03:59] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ageofweaponscrusher`, expected `ageofweapons`. This could be a intended override, but in most cases indicates a broken mod.
    [17:04:07] [Server thread/INFO] [BuildCraft]: 
    [17:04:07] [Server thread/INFO] [BuildCraft]: Starting BuildCraft 7.99.14
    [17:04:07] [Server thread/INFO] [BuildCraft]: Copyright (c) the BuildCraft team, 2011-2017
    [17:04:07] [Server thread/INFO] [BuildCraft]: https://www.mod-buildcraft.com
    [17:04:07] [Server thread/INFO] [BuildCraft]: Detailed Build Information:
    [17:04:07] [Server thread/INFO] [BuildCraft]:   Branch 7.99.14
    [17:04:07] [Server thread/INFO] [BuildCraft]:   Commit 3f79ce577ba7a3a75ebe3d6733f14841d8bd204a
    [17:04:07] [Server thread/INFO] [BuildCraft]:     Finalise build for 7.99.14. Fix gradle builder failing to handle """" chars properly. Update changelog.
    [17:04:07] [Server thread/INFO] [BuildCraft]:     committed by AlexIIL
    [17:04:07] [Server thread/INFO] [BuildCraft]: 
    [17:04:07] [Server thread/INFO] [BuildCraft]: Loaded Modules:
    [17:04:07] [Server thread/INFO] [BuildCraft]:   - lib
    [17:04:07] [Server thread/INFO] [BuildCraft]:   - core
    [17:04:07] [Server thread/INFO] [BuildCraft]:   - builders
    [17:04:07] [Server thread/INFO] [BuildCraft]:   - energy
    [17:04:07] [Server thread/INFO] [BuildCraft]:   - factory
    [17:04:07] [Server thread/INFO] [BuildCraft]:   - robotics
    [17:04:07] [Server thread/INFO] [BuildCraft]:   - silicon
    [17:04:07] [Server thread/INFO] [BuildCraft]:   - transport
    [17:04:07] [Server thread/INFO] [BuildCraft]: Missing Modules:
    [17:04:07] [Server thread/INFO] [BuildCraft]:   - compat
    [17:04:07] [Server thread/INFO] [BuildCraft]: 
    [17:04:08] [Server thread/INFO] [BuildCraft]: [debugger] Not a dev environment!
    [17:04:13] [Server thread/INFO] [RECIPE_SCRIPT]: skipped core.PRE_INIT
    [17:04:13] [Server thread/INFO] [CD4017BE_lib]: added Open Computers Energy-API with 1000.0 J / OC-unit
    [17:04:13] [Server thread/INFO] [CD4017BE_lib]: added Forge Energy-API with 100.0 J / Flux
    [17:04:13] [Server thread/INFO] [CD4017BE_lib]: added IC2 Energy-API with 400.0 J / EU
    [17:04:14] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `species_tile_entity`, expected `dynamictrees`. This could be a intended override, but in most cases indicates a broken mod.
    [17:04:14] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bonsai_tile_entity`, expected `dynamictrees`. This could be a intended override, but in most cases indicates a broken mod.
    [17:04:23] [Server thread/INFO] [wizardry]: o͡͡͡╮༼ ಠДಠ à¼½â•­oÍ¡Í¡Í¡â”?☆゚.*・。゚ IT'S LEVI-OH-SA, NOT LEVIOSAA
    [17:04:24] [Server thread/INFO] [wizardry]:     > Found manifest file. Reading...
    [17:04:24] [Server thread/INFO] [wizardry]:     >  |
    [17:04:24] [Server thread/INFO] [wizardry]:     >  |_ Category found: fire_recipes
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ sky_dust: -1314925763
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ devil_dust_secondary: -613602679
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ devil_dust: 152898967
    [17:04:24] [Server thread/INFO] [wizardry]:     >  |
    [17:04:24] [Server thread/INFO] [wizardry]:     >  |_ Category found: fluid_recipes
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ mana_orb: 952469434
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ wisdom_stairs: -1459509650
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ wisdom_log: 1357745167
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ temp_real_halo: 2097916486
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ nacre: 1121026437
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ wisdom_stick: -696918271
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ wisdom_plank: -1583206240
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ mana_battery: 1665606172
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ codex: -273995665
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ wisdom_slab: -2015098351
    [17:04:24] [Server thread/INFO] [wizardry]:     >  |
    [17:04:24] [Server thread/INFO] [wizardry]:     >  |_ Category found: modules
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ modifier_increase_speed: -1579963150
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_place: -421289969
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_burn: 35504744
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_zoom: -897004035
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_break: 128535786
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ shape_projectile: -1235329677
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_time_slow: -162385748
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ shape_self: 677607573
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_vanish: -758613488
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_low_gravity: -702227048
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ shape_beam: -90790292
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_lightning: -392159778
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_leap: -753850289
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ modifier_increase_aoe: -1004102868
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ shape_cone: -1219085543
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_frost: 1524211684
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_gravity_well: 1171369937
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_phase: 1251761030
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_leech: 2119672769
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_disarm: 1105516532
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_crasher_fall: 495775168
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_telekinesis: 1930771192
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_substitution: -535841596
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ modifier_increase_potency: -431060611
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_anti_gravity_well: -2142232894
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_thrive: -527807423
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ shape_touch: 472712715
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ shape_zone: 1757620271
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_backup: 1606330036
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ effect_light: -947078199
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ modifier_extend_range: 1071718841
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ event_collide_block: -437822181
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ modifier_extend_time: 899625958
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ event_collide_entity: 223649892
    [17:04:24] [Server thread/INFO] [wizardry]:     >  | |_ modifier_exception: 542988723
    [17:04:24] [Server thread/INFO] [wizardry]:     >  |____________________________________/
    [17:04:31] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `temperature_spread`, expected `toughasnails`. This could be a intended override, but in most cases indicates a broken mod.
    [17:04:33] [Server thread/INFO] [forestry]: Module BuildCraft 6 Statements Module failed to load: Compatible BuildCraftAPI|statements version not found
    [17:04:33] [Server thread/INFO] [forestry]: Module Actually Additions Module failed to load: Actually Additions not found
    [17:04:33] [Server thread/INFO] [forestry]: Module EnderIO Module failed to load: EnderIO not found
    [17:04:33] [Server thread/INFO] [forestry]: Module Roots Module failed to load: Roots not found
    [17:04:33] [Server thread/INFO] [forestry]: Module Mystical Agriculture Module failed to load: Mystical Agriculture not found
    [17:04:33] [Server thread/INFO] [forestry]: Module TechReborn Module failed to load: TechReborn not found
    [17:04:33] [Server thread/INFO] [forestry]: Module Better With Mods Module failed to load: Better With Mods not found
    [17:04:33] [Server thread/INFO] [forestry]: Module ImmersiveEngineering Module failed to load: ImmersiveEngineering not found
    [17:04:33] [Server thread/INFO] [forestry]: Module Natura Module failed to load: Natura not found
    [17:04:33] [Server thread/INFO] [forestry]: Module BuildCraft 6 Recipes Module failed to load: Compatible BuildCraftAPI|recipes version not found
    [17:04:33] [Server thread/INFO] [forestry]: Module rustic Module failed to load: Rustic not found
    [17:04:33] [Server thread/INFO] [forestry]: Module Extra Utilities Module failed to load: Extra Utilities not found
    [17:04:33] [Server thread/INFO] [forestry]: Module BuildCraft 6 Fuels Module failed to load: Compatible BuildCraftAPI|fuels version not found
    [17:04:40] [Server thread/INFO] [Galacticraft]: Galacticraft oil is not default, issues may occur.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `apple`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `wheat`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `potato`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `carrot`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `beetroot`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `melon`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `beef`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_beef`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `chicken`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_chicken`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `porkchop`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_porkchop`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `rabbit`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_rabbit`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `mutton`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_mutton`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cod`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_cod`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `salmon`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_salmon`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `clownfish`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pufferfish`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `mushroom_stew`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bread`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cookie`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `baked_potato`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pumpkin_pie`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `rabbit_stew`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `beetroot_soup`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:08] [Morph Resource Thread/INFO] [Morph]: Loaded NBT modifiers for presumably 18 Minecraft mobs
    [17:05:15] [Server thread/INFO] [opencomputers]: Updating config from version '@VERSION@' to '@VERSION@'.
    [17:05:15] [Server thread/INFO] [opencomputers]: Updating setting 'opencomputers.switch.relayDelayUpgrade'. 
    [17:05:15] [Server thread/INFO] [opencomputers]: Updating setting 'opencomputers.nanomachines.potionWhitelist'. 
    [17:05:15] [Server thread/INFO] [opencomputers]: Updating setting 'opencomputers.power.cost.wirelessCostPerRange'. 
    [17:05:15] [Server thread/INFO] [opencomputers]: Updating setting 'opencomputers.misc.maxWirelessRange'. 
    [17:05:15] [Server thread/INFO] [opencomputers]: Updating setting 'opencomputers.misc.maxOpenPorts'. 
    [17:05:15] [Server thread/INFO] [opencomputers]: Updating setting 'opencomputers.computer.cpuComponentCount'. 
    [17:05:15] [Server thread/INFO] [opencomputers]: Initializing blocks and items.
    [17:05:17] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `adapter`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:17] [Server thread/INFO] [OpenComputers]: Injecting interface ic2.api.energy.tile.IEnergySink into li.cil.oc.common.tileentity.traits.power.IndustrialCraft2Experimental.
    [17:05:17] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `assembler`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:17] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `cable`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:17] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `capacitor`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:17] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `carpetedcapacitor`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:17] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `case`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:17] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `charger`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:17] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `diskdrive`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:17] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `disassembler`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:17] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `keyboard`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:17] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `hologram`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:17] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `geolyzer`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:17] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `microcontroller`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:17] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `motionsensor`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:17] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `netsplitter`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:17] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `powerconverter`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:17] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `powerdistributor`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:17] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `print`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:18] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `printer`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:18] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `raid`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `redstone`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `relay`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `robot`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `screen`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `rack`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `transposer`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `waypoint`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:20] [Server thread/INFO] [OpenComputers]: Injecting interface ic2.api.item.IBoxable into li.cil.oc.common.item.Wrench.
    [17:05:20] [Server thread/INFO] [OpenComputers]: Injecting interface ic2.api.item.ISpecialElectricItem into li.cil.oc.common.item.traits.Chargeable.
    [17:05:21] [Server thread/INFO] [opencomputers]: Initializing additional OreDict entries.
    [17:05:21] [Server thread/INFO] [opencomputers]: Initializing OpenComputers API.
    [17:05:33] [Server thread/INFO] [opencomputers]: Found a compatible native library: 'OpenComputersMod-1.7.2.67-lua52-native.64.dll'.
    [17:05:35] [Server thread/INFO] [opencomputers]: Found a compatible native library: 'OpenComputersMod-1.7.2.67-lua53-native.64.dll'.
    [17:05:35] [Server thread/INFO] [opencomputers]: Done with pre init phase.
    [17:05:42] [Server thread/INFO] [Treecapitator]: Proceeding to load tree/mod configs from file.
    [17:05:52] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `crafting_plate`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `halo_infuser`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `jar`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [17:05:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `light`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `magicians_worktable`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `mana_battery`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `mana_magnet`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `mana_vacuum`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `pedestal`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `unicorn_trail`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bookcase`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `shelf`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `markerpole`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `clipboard`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bibliolight`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `furniturepaneler`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `potionshelf`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `toolrack`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `label`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `desk`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `table`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `seat`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `fancysign`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `fancyworkbench`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `framedchest`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `mapframe`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `case`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `clock`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `paintingframeborderless`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `paintingframefancy`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `paintingframeflat`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `paintingframemiddle`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `paintingframesimple`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `paintingpress`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `armorstand`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `typesettingtable`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `printingpress`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cookiejar`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `dinnerplate`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `discrack`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `swordpedestal`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bell`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:01] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `typewriter`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `eb_nest_entity`, expected `exoticbirds`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `eb_egg_sorter_entity`, expected `exoticbirds`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `eb_egg_incubator_entity`, expected `exoticbirds`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `eb_phoenix_egg_entity`, expected `exoticbirds`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.iron`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.gold`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.diamond`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.copper`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.silver`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.crystal`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.obsidian`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.dirtchest9000`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.iron`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.gold`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.diamond`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.copper`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.silver`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.crystal`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:05] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.obsidian`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:16] [Server thread/INFO] [FML]: Applying holder lookups
    [17:06:16] [Server thread/INFO] [FML]: Holder lookups applied
    [17:06:18] [Server thread/WARN] [forestry]: Missing block: driedDirt
    [17:06:18] [Server thread/WARN] [forestry]: Missing block: overgrownNetherrack
    [17:06:18] [Server thread/WARN] [forestry]: Missing block: cragRock
    [17:06:18] [Server thread/WARN] [forestry]: Missing block: ashStone
    [17:06:18] [Server thread/WARN] [forestry]: Missing block: bopGrass
    [17:06:18] [Server thread/WARN] [forestry]: Missing block: newBopGrass
    [17:06:18] [Server thread/WARN] [forestry]: Missing block: longGrass
    [17:06:18] [Server thread/WARN] [forestry]: Missing block: hardDirt
    [17:06:18] [Server thread/WARN] [forestry]: Missing block: hardSand
    [17:06:18] [Server thread/WARN] [forestry]: Missing block: originGrass
    [17:06:18] [Server thread/WARN] [forestry]: Missing block: ash
    [17:06:18] [Server thread/WARN] [forestry]: Missing block: newBopDirt
    [17:06:18] [Server thread/WARN] [forestry]: Missing block: petals
    [17:06:18] [Server thread/INFO] [FML]: Applying holder lookups
    [17:06:18] [Server thread/INFO] [FML]: Holder lookups applied
    [17:06:22] [Server thread/INFO] [dsurround]: Registering sounds
    [17:06:23] [Server thread/INFO] [dsurround]: 894 sound events in registry
    [17:06:23] [Server thread/INFO] [FML]: Applying holder lookups
    [17:06:23] [Server thread/INFO] [FML]: Holder lookups applied
    [17:06:23] [Server thread/INFO] [FML]: Applying holder lookups
    [17:06:23] [Server thread/INFO] [FML]: Holder lookups applied
    [17:06:23] [Server thread/INFO] [FML]: Injecting itemstacks
    [17:06:23] [Server thread/INFO] [FML]: Itemstack injection complete
    [17:06:23] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Loading properties
    [17:06:23] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Default game type: ADVENTURE
    [17:06:23] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Generating keypair
    [17:06:23] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Starting Minecraft server on *:25565
    [17:06:23] [Server thread/INFO] [net.minecraft.network.NetworkSystem]: Using default channel type
    [17:06:32] [Server thread/ERROR] [FML]: Parsing error loading recipe bibliocraft:markerpole
    com.google.gson.JsonSyntaxException: Invalid pattern: empty pattern not allowed
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$init$14(CraftingHelper.java:481) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:409) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:822) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:668) ~[CraftingHelper.class:?]
        at java.util.ArrayList.forEach(Unknown Source) [?:1.8.0_161]
        at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:620) [CraftingHelper.class:?]
        at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
        at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
        at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:219) [nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [17:06:33] [Server thread/ERROR] [FML]: Parsing error loading recipe bibliocraft:clipboard
    com.google.gson.JsonSyntaxException: Invalid pattern: empty pattern not allowed
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$init$14(CraftingHelper.java:481) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:409) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:822) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:668) ~[CraftingHelper.class:?]
        at java.util.ArrayList.forEach(Unknown Source) [?:1.8.0_161]
        at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:620) [CraftingHelper.class:?]
        at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
        at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
        at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:219) [nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [17:06:33] [Server thread/ERROR] [FML]: Parsing error loading recipe wizardry:syringe/fill_mana_syringe
    com.google.gson.JsonSyntaxException: Unknown item 'wizardry:mana_orb'
        at net.minecraftforge.common.crafting.CraftingHelper.getItemStackBasic(CraftingHelper.java:260) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$init$16(CraftingHelper.java:537) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:202) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$init$15(CraftingHelper.java:524) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:409) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:822) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:668) ~[CraftingHelper.class:?]
        at java.util.ArrayList.forEach(Unknown Source) [?:1.8.0_161]
        at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:620) [CraftingHelper.class:?]
        at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
        at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
        at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:219) [nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [17:06:38] [Server thread/INFO] [THAUMCRAFT]: Checking for mod & oredict compatibilities
    [17:06:38] [Server thread/INFO] [THAUMCRAFT]: Adding entities to MFR safari net blacklist.
    [17:06:38] [Server thread/INFO] [FML]: Applying holder lookups
    [17:06:38] [Server thread/INFO] [FML]: Holder lookups applied
    [17:06:41] [Server thread/INFO] [advanced_solar_panels]: Loading Molecular Transformer recipes from file
    [17:06:41] [Server thread/WARN] [advanced_solar_panels]: Skipping line 27 as the output (OreDict:dustChrome) cannot be resolved
    [17:06:41] [Server thread/WARN] [advanced_solar_panels]: Skipping line 28 as the output (OreDict:ingotChrome) cannot be resolved
    [17:06:41] [Server thread/WARN] [advanced_solar_panels]: Skipping line 29 as the output (OreDict:gemCertusQuartz) cannot be resolved
    [17:06:41] [Server thread/WARN] [advanced_solar_panels]: Skipping line 30 as the output (OreDict:ingotNickel) cannot be resolved
    [17:06:41] [Server thread/WARN] [advanced_solar_panels]: Skipping line 33 as the output (OreDict:ingotPlatinum) cannot be resolved
    [17:06:41] [Server thread/INFO] [advanced_solar_panels]: Load complete, successfully loaded 17 out of 22.
    [17:06:47] [Server thread/INFO] [CD4017BE_lib]: OpenComputers API found
    [17:06:47] [Server thread/INFO] [RECIPE_SCRIPT]: skipped core.INIT
    [17:06:49] [Server thread/INFO] [wizardry]: <<========================================================================>>
    [17:06:49] [Server thread/INFO] [wizardry]: > Starting fluid recipe loading.
    [17:06:49] [Server thread/INFO] [wizardry]: > Finished mana recipe loading.
    [17:06:49] [Server thread/INFO] [wizardry]: <<========================================================================>>
    [17:06:49] [Server thread/INFO] [wizardry]: <<========================================================================>>
    [17:06:49] [Server thread/INFO] [wizardry]: > Starting fire recipe loading.
    [17:06:49] [Server thread/INFO] [wizardry]: > Finished fire recipe loading.
    [17:06:49] [Server thread/INFO] [wizardry]: <<========================================================================>>
    [17:06:51] [Server thread/INFO] [wizardry]:  _______________________________________________________________________\\
    [17:06:51] [Server thread/INFO] [wizardry]:  | Starting module registration
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module shape_projectile
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:nether_wart
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 20.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 60.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base speed values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module shape_projectile registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module modifier_extend_range
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:dye
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |___ Found Modifiers. About to process them
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_extend_range.json: ADD -> range, 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_extend_range.json: MULTIPLY -> mana, 1.1
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_extend_range.json: MULTIPLY -> burnout, 1.1
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |___ Modifiers Registered Successfully.
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module modifier_extend_range registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_disarm
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:blaze_rod
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -1
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -65536
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_disarm registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_light
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:glowstone
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -16711681
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -65536
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 20.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_light registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_place
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:clay
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -13697025
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -786433
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 64.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_place registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_gravity_well
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item wizardry:bomb
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item Meta:          0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -65536
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -22016
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 0.5
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 0.5
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 3.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 3.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 50.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 64.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_gravity_well registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module modifier_increase_aoe
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:emerald
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |___ Found Modifiers. About to process them
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_aoe.json: ADD -> area, 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_aoe.json: MULTIPLY -> mana, 1.2
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_aoe.json: MULTIPLY -> burnout, 1.2
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |___ Modifiers Registered Successfully.
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module modifier_increase_aoe registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_anti_gravity_well
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item wizardry:bomb
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item Meta:          1
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -16771585
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -16711711
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 0.5
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 0.5
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 3.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 3.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 50.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 64.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_anti_gravity_well registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module shape_cone
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:gunpowder
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 40.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 32.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module shape_cone registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_crasher_fall
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:obsidian
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -65536
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -65536
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 300.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 2.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 2.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 40.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_crasher_fall registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module event_collide_block
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:coal
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module event_collide_block registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module modifier_exception
    [17:06:51] [Server thread/ERROR] [wizardry]: | | |_ SOMETHING WENT WRONG! Item for module modifier_exception does not exist 'wizardry:syringe_blood'
    [17:06:51] [Server thread/ERROR] [wizardry]: | |___ Failed to register module modifier_exception
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module shape_touch
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:beef
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module shape_touch registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_telekinesis
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:reeds
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -1
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -1
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 3.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 3.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_telekinesis registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_zoom
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item wizardry:fairy_wings
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -769330
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -12461580
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 32.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_zoom registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module event_collide_entity
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:apple
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module event_collide_entity registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_frost
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:snowball
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -1
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -1
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 40.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_frost registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_vanish
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:fermented_spider_eye
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -1
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -12398127
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 200.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 60.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_vanish registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_break
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:sand
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -5952982
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -22617
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 64.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 0.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 50.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.5
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_break registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_substitution
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:ender_eye
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -65536
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -16711681
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 64.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_substitution registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module shape_beam
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item wizardry:unicorn_horn
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 30.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module shape_beam registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_burn
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:blaze_powder
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -50116
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -6225920
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 2.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 2.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_burn registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_leech
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:lead
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -16711681
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -16711839
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 4.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 30.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 4.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_leech registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module shape_zone
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:glass
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 20.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 3.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 3.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 100.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module shape_zone registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module modifier_increase_speed
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:dragon_breath
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |___ Found Modifiers. About to process them
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_speed.json: ADD -> speed, 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_speed.json: MULTIPLY -> mana, 1.1
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_speed.json: MULTIPLY -> burnout, 1.1
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |___ Modifiers Registered Successfully.
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module modifier_increase_speed registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_leap
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:rabbit_foot
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -1
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -1
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 20.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 64.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_leap registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_phase
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:ender_pearl
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -8388608
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -65536
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 200.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 40.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base chargeup values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 30.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 0.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 4.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 0.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.5
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_phase registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_backup
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:rotten_flesh
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -13101312
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -7471104
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 300.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 300.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 30.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_backup registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_lightning
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:ice
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -36115
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -65312
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 70.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 4.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 4.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_lightning registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module modifier_extend_time
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:gold_nugget
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |___ Found Modifiers. About to process them
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_extend_time.json: ADD -> duration, 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_extend_time.json: MULTIPLY -> mana, 1.1
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_extend_time.json: MULTIPLY -> burnout, 1.1
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |___ Modifiers Registered Successfully.
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module modifier_extend_time registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_time_slow
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:red_flower
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -7536640
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -23131
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 300.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 200.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 80.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 2.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 2.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 40.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_time_slow registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_low_gravity
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:feather
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -1
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -16711681
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 60.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 40.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 2.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 2.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 40.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_low_gravity registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_thrive
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:bone
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -16711681
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -16711681
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 3.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 3.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module effect_thrive registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module shape_self
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:diamond
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module shape_self registered successfully!
    [17:06:51] [Server thread/INFO] [wizardry]:  | |
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Registering module modifier_increase_potency
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:prismarine_crystals
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |___ Found Modifiers. About to process them
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_potency.json: ADD -> potency, 1.0
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_potency.json: MULTIPLY -> mana, 1.1
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_potency.json: MULTIPLY -> burnout, 1.1
    [17:06:51] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [17:06:51] [Server thread/INFO] [wizardry]:  | | |___ Modifiers Registered Successfully.
    [17:06:51] [Server thread/INFO] [wizardry]:  | |_ Module modifier_increase_potency registered successfully!
    [17:06:51] [Server thread/ERROR] [wizardry]: |
    [17:06:51] [Server thread/ERROR] [wizardry]: |_ Missing or ignored modules detected in modules directory:
    [17:06:51] [Server thread/ERROR] [wizardry]: | |_ modifier_exception
    [17:06:51] [Server thread/INFO] [wizardry]:  |
    [17:06:51] [Server thread/INFO] [wizardry]:  | Module registration processing complete! (ᵔᴥᵔ)
    [17:06:51] [Server thread/INFO] [wizardry]:  |_______________________________________________________________________//
    [17:06:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `forestry.cocoon`, expected `forestry`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc treasure chest`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc air distributor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc air collector`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc oxygen pipe`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc air lock frame`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc refinery`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc nasa workbench`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc deconstructor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc air compressor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc fuel loader`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc landing pad`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc landing pad full`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc space station`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc dummy block`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc air sealer`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc dungeon boss spawner`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc oxygen detector`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc buggy fueler`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc buggy fueler single`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc cargo loader`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc cargo unloader`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc parachest tile`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc solar panel`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc radio telescope`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc magnetic crafting table`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc energy storage module`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc coal generator`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc electric furnace`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc aluminum wire`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc switchable aluminum wire`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc fallen meteor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc ingot compressor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc electric ingot compressor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc circuit fabricator`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc air lock controller`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc oxygen storage module`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc oxygen decompressor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc space station thruster`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc arc lamp`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc view screen`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc panel lighting`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc telemetry unit`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc painter`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc fluid tank`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc player detector`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc platform`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc emergency post`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc null tile`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc sealed ic2 cable`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc slimeling egg`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc tier 2 treasure chest`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc planet terraformer`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc cryogenic chamber`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc gas liquefier`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc methane synthesizer`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc water electrolyzer`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc mars dungeon spawner`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc launch controller`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc beam reflector`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc beam receiver`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc short range telepad`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc fake short range telepad`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc astro miner base builder`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc astro miner base`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc venus spout`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc venus dungeon spawner`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc tier 3 treasure chest`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc geothermal generator`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc crashed probe`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/INFO] [FML]: minecraft:ocean;OCEAN;0.5;false;false;false;[OCEAN, WATER]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:plains;MEDIUM;0.8;false;false;false;[PLAINS]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:desert;WARM;2.0;false;false;false;[DRY, HOT, SANDY]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:extreme_hills;MEDIUM;0.2;false;false;false;[MOUNTAIN, HILLS]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:forest;MEDIUM;0.7;false;false;false;[FOREST]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:taiga;MEDIUM;0.25;false;false;false;[CONIFEROUS, FOREST, COLD]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:swampland;MEDIUM;0.8;true;false;false;[WET, SWAMP]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:river;MEDIUM;0.5;false;false;false;[WATER, RIVER]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:hell;WARM;2.0;false;false;false;[DRY, NETHER, HOT]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:sky;MEDIUM;0.5;false;false;false;[END, DRY, COLD]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:frozen_ocean;OCEAN;0.0;false;false;true;[OCEAN, WATER, SNOWY, COLD]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:frozen_river;COLD;0.0;false;false;true;[WATER, SNOWY, COLD, RIVER]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:ice_flats;COLD;0.0;false;false;true;[WASTELAND, SNOWY, COLD]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:ice_mountains;COLD;0.0;false;false;true;[MOUNTAIN, SNOWY, COLD]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mushroom_island;MEDIUM;0.9;true;false;false;[MUSHROOM, RARE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mushroom_island_shore;MEDIUM;0.9;true;false;false;[MUSHROOM, BEACH, RARE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:beaches;MEDIUM;0.8;false;false;false;[BEACH]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:desert_hills;WARM;2.0;false;false;false;[HILLS, DRY, HOT, SANDY]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:forest_hills;MEDIUM;0.7;false;false;false;[HILLS, FOREST]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:taiga_hills;MEDIUM;0.25;false;false;false;[HILLS, CONIFEROUS, FOREST, COLD]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:smaller_extreme_hills;MEDIUM;0.2;false;false;false;[MOUNTAIN]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:jungle;MEDIUM;0.95;true;false;false;[WET, DENSE, HOT, JUNGLE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:jungle_hills;MEDIUM;0.95;true;false;false;[HILLS, WET, DENSE, HOT, JUNGLE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:jungle_edge;MEDIUM;0.95;false;false;false;[FOREST, WET, RARE, HOT, JUNGLE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:deep_ocean;OCEAN;0.5;false;false;false;[OCEAN, WATER]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:stone_beach;MEDIUM;0.2;false;false;false;[BEACH]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:cold_beach;COLD;0.05;false;false;true;[SNOWY, BEACH, COLD]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:birch_forest;MEDIUM;0.6;false;false;false;[FOREST]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:birch_forest_hills;MEDIUM;0.6;false;false;false;[HILLS, FOREST]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:roofed_forest;MEDIUM;0.7;false;false;false;[FOREST, DENSE, SPOOKY]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:taiga_cold;COLD;-0.5;false;false;true;[CONIFEROUS, FOREST, SNOWY, COLD]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:taiga_cold_hills;COLD;-0.5;false;false;true;[HILLS, CONIFEROUS, FOREST, SNOWY, COLD]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:redwood_taiga;MEDIUM;0.3;false;false;false;[CONIFEROUS, FOREST, COLD]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:redwood_taiga_hills;MEDIUM;0.3;false;false;false;[HILLS, CONIFEROUS, FOREST, COLD]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:extreme_hills_with_trees;MEDIUM;0.2;false;false;false;[MOUNTAIN, SPARSE, FOREST]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:savanna;WARM;1.2;false;false;false;[PLAINS, SPARSE, HOT, SAVANNA]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:savanna_rock;WARM;1.0;false;false;false;[PLAINS, SPARSE, RARE, HOT, SAVANNA]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mesa;WARM;2.0;false;false;false;[MESA, SANDY]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mesa_rock;WARM;2.0;false;false;false;[MESA, SPARSE, SANDY]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mesa_clear_rock;WARM;2.0;false;false;false;[MESA, SANDY]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:void;MEDIUM;0.5;false;false;false;[VOID]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_plains;MEDIUM;0.8;false;true;false;[PLAINS, RARE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_desert;WARM;2.0;false;true;false;[DRY, RARE, HOT, SANDY]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_extreme_hills;MEDIUM;0.2;false;true;false;[MOUNTAIN, SPARSE, RARE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_forest;MEDIUM;0.7;false;true;false;[HILLS, FOREST, RARE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_taiga;MEDIUM;0.25;false;true;false;[MOUNTAIN, CONIFEROUS, FOREST, COLD, RARE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_swampland;MEDIUM;0.8;true;true;false;[HILLS, WET, RARE, SWAMP]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_ice_flats;COLD;0.0;false;true;true;[HILLS, SNOWY, COLD, RARE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_jungle;MEDIUM;0.95;true;true;false;[MOUNTAIN, WET, DENSE, RARE, HOT, JUNGLE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_jungle_edge;MEDIUM;0.95;false;true;false;[HILLS, SPARSE, RARE, HOT, JUNGLE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_birch_forest;MEDIUM;0.6;false;true;false;[HILLS, FOREST, DENSE, RARE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_birch_forest_hills;MEDIUM;0.6;false;true;false;[MOUNTAIN, FOREST, DENSE, RARE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_roofed_forest;MEDIUM;0.7;false;true;false;[MOUNTAIN, FOREST, DENSE, SPOOKY, RARE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_taiga_cold;COLD;-0.5;false;true;true;[MOUNTAIN, CONIFEROUS, FOREST, SNOWY, COLD, RARE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_redwood_taiga;MEDIUM;0.25;false;true;false;[FOREST, DENSE, RARE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_redwood_taiga_hills;MEDIUM;0.25;false;true;false;[HILLS, FOREST, DENSE, RARE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_extreme_hills_with_trees;MEDIUM;0.2;false;true;false;[MOUNTAIN, SPARSE, RARE]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_savanna;WARM;1.1;false;true;false;[MOUNTAIN, SPARSE, DRY, RARE, HOT, SAVANNA]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_savanna_rock;WARM;1.0;false;true;false;[HILLS, SPARSE, DRY, RARE, HOT, SAVANNA]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_mesa;WARM;2.0;false;true;false;[MOUNTAIN, SPARSE, DRY, RARE, HOT, SAVANNA]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_mesa_rock;WARM;2.0;false;true;false;[HILLS, SPARSE, DRY, RARE, HOT]
    [17:06:58] [Server thread/INFO] [FML]: minecraft:mutated_mesa_clear_rock;WARM;2.0;false;true;false;[MOUNTAIN, SPARSE, DRY, RARE, HOT, SAVANNA]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:gravel_beach;MEDIUM;0.6;false;false;false;[BEACH]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:white_beach;WARM;1.0;true;false;false;[BEACH]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:origin_beach;MEDIUM;0.6;false;false;false;[BEACH, RARE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:alps;COLD;-0.25;false;false;true;[MOUNTAIN, SNOWY, DRY, COLD]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:bamboo_forest;MEDIUM;0.9;false;false;false;[FOREST, WET, DENSE, JUNGLE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:bayou;MEDIUM;0.95;true;false;false;[WET, DENSE, HOT, SWAMP]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:bog;MEDIUM;0.5;true;false;false;[FOREST, WET, COLD, SWAMP]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:boreal_forest;MEDIUM;0.3;false;false;false;[HILLS, CONIFEROUS, FOREST, DENSE, COLD]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:brushland;WARM;1.5;false;false;false;[SPARSE, DRY, HOT, SAVANNA]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:chaparral;MEDIUM;0.8;false;false;false;[PLAINS, DRY]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:cherry_blossom_grove;MEDIUM;0.55;false;false;false;[MAGICAL, LUSH, FOREST, WET, DENSE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:cold_desert;MEDIUM;0.2;false;false;false;[SNOWY, DRY, COLD]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:coniferous_forest;MEDIUM;0.45;false;false;false;[CONIFEROUS, FOREST, DENSE, COLD]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:crag;MEDIUM;0.5;false;false;false;[MOUNTAIN, MAGICAL, WASTELAND, HILLS, DRY, COLD]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:dead_forest;MEDIUM;0.3;false;false;false;[DEAD, SPARSE, FOREST, DRY, COLD]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:dead_swamp;MEDIUM;0.6;true;false;false;[DEAD, SPARSE, WET, SPOOKY, COLD, SWAMP]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:eucalyptus_forest;MEDIUM;0.95;true;false;false;[LUSH, FOREST, WET, DENSE, JUNGLE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:fen;MEDIUM;0.4;false;false;false;[DEAD, FOREST, WET, DENSE, COLD, SWAMP]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:flower_field;MEDIUM;0.6;false;false;false;[LUSH, PLAINS]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:grassland;MEDIUM;0.6;false;false;false;[PLAINS, HILLS, WET]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:grove;MEDIUM;0.6;false;false;false;[LUSH, PLAINS, SPARSE, FOREST, WET]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:highland;MEDIUM;0.6;false;false;false;[MOUNTAIN, HILLS, WET]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:land_of_lakes;MEDIUM;0.5;true;false;false;[FOREST, WET, DENSE, SWAMP]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:lavender_fields;MEDIUM;0.7;false;false;false;[MAGICAL, LUSH, PLAINS]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:lush_desert;WARM;1.2;false;false;false;[LUSH, SPARSE, DRY, HOT, SANDY, SAVANNA]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:lush_swamp;MEDIUM;0.7;true;false;false;[LUSH, WET, DENSE, SWAMP]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:mangrove;MEDIUM;0.85;false;false;false;[LUSH, WATER, WET, DENSE, SWAMP]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:maple_woods;MEDIUM;0.25;false;false;false;[CONIFEROUS, FOREST, DENSE, COLD]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:marsh;MEDIUM;0.6;false;false;false;[LUSH, WET, SWAMP]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:meadow;MEDIUM;0.4;false;false;false;[LUSH, PLAINS, SPARSE, FOREST, WET, COLD]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:moor;MEDIUM;0.6;true;false;false;[HILLS, WET, SWAMP]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:mountain;MEDIUM;0.5;false;false;false;[MOUNTAIN, SPARSE, FOREST, DRY]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:mystic_grove;MEDIUM;0.7;false;false;false;[MAGICAL, LUSH, FOREST, WET, DENSE, RARE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:ominous_woods;MEDIUM;0.6;false;false;false;[MAGICAL, DEAD, FOREST, WET, DENSE, SPOOKY, RARE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:orchard;MEDIUM;0.7;false;false;false;[LUSH, PLAINS, FOREST, DENSE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:outback;WARM;2.0;false;false;false;[SPARSE, DRY, HOT, SANDY, SAVANNA]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:overgrown_cliffs;MEDIUM;0.95;false;false;false;[MOUNTAIN, LUSH, HILLS, WET, DENSE, JUNGLE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:prairie;MEDIUM;0.8;false;false;false;[PLAINS, SPARSE, DRY]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:quagmire;MEDIUM;0.6;true;false;false;[DEAD, WASTELAND, WET, SWAMP]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:rainforest;MEDIUM;0.95;true;false;false;[LUSH, HILLS, FOREST, WET, DENSE, JUNGLE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:redwood_forest;MEDIUM;0.7;false;false;false;[FOREST, DENSE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:sacred_springs;MEDIUM;0.85;true;false;false;[MAGICAL, LUSH, FOREST, WET, DENSE, RARE, JUNGLE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:seasonal_forest;MEDIUM;0.4;false;false;false;[FOREST, DENSE, COLD]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:shield;MEDIUM;0.4;false;false;false;[FOREST, WET, DENSE, COLD]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:shrubland;MEDIUM;0.6;false;false;false;[PLAINS, SPARSE, DRY]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:snowy_coniferous_forest;COLD;-0.25;false;false;true;[CONIFEROUS, FOREST, SNOWY, DENSE, COLD]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:snowy_forest;COLD;-0.25;false;false;true;[SPARSE, FOREST, SNOWY, WET, COLD]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:steppe;MEDIUM;0.75;false;false;false;[PLAINS, DRY, SANDY]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:temperate_rainforest;MEDIUM;0.75;true;false;false;[LUSH, FOREST, WET, DENSE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:tropical_rainforest;WARM;1.0;true;false;false;[LUSH, WET, DENSE, HOT, JUNGLE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:tundra;MEDIUM;0.2;false;false;false;[DEAD, WASTELAND, SPARSE, WET, COLD]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:wasteland;WARM;2.0;false;false;false;[DEAD, WASTELAND, SPARSE, DRY]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:wetland;MEDIUM;0.6;false;false;false;[LUSH, FOREST, WET, DENSE, SWAMP]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:woodland;MEDIUM;0.7;false;false;false;[FOREST, DRY, DENSE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:xeric_shrubland;WARM;1.75;false;false;false;[LUSH, SPARSE, DRY, HOT, SANDY, SAVANNA]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:alps_foothills;COLD;-0.25;false;false;true;[MOUNTAIN, SPARSE, FOREST, SNOWY, DRY, COLD]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:mountain_foothills;MEDIUM;0.5;false;false;false;[MOUNTAIN, HILLS, SPARSE, FOREST, DRY]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:redwood_forest_edge;MEDIUM;0.7;false;false;false;[FOREST, DENSE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:pasture;MEDIUM;0.8;false;false;false;[PLAINS, SPARSE, DRY]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:glacier;COLD;-0.5;false;false;false;[WASTELAND, SNOWY, COLD]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:oasis;WARM;2.0;false;false;false;[LUSH, SPARSE, WET, HOT, SANDY, JUNGLE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:snowy_tundra;COLD;0.0;false;false;false;[DEAD, WASTELAND, SPARSE, SNOWY, WET, COLD]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:coral_reef;MEDIUM;0.5;false;false;false;[OCEAN, WATER]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:kelp_forest;MEDIUM;0.5;false;false;false;[OCEAN, WATER]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:origin_island;MEDIUM;0.6;false;false;false;[WATER, FOREST, RARE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:tropical_island;MEDIUM;0.95;true;false;false;[LUSH, WATER, WET, DENSE, JUNGLE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:volcanic_island;WARM;1.2;false;false;false;[MOUNTAIN, DEAD, WASTELAND, WATER, DRY, HOT]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:flower_island;MEDIUM;0.8;false;false;false;[LUSH, MAGICAL, PLAINS, WATER, DENSE]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:corrupted_sands;WARM;2.0;false;false;false;[DRY, NETHER, DENSE, HOT, SANDY]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:fungi_forest;WARM;2.0;false;false;false;[MUSHROOM, NETHER, DENSE, HOT]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:phantasmagoric_inferno;WARM;2.0;false;false;false;[MAGICAL, WASTELAND, DRY, NETHER, SPOOKY, HOT]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:undergarden;WARM;2.0;false;false;false;[LUSH, NETHER, HOT]
    [17:06:58] [Server thread/INFO] [FML]: biomesoplenty:visceral_heap;WARM;2.0;false;false;false;[WET, NETHER, HOT]
    [17:06:58] [Server thread/INFO] [FML]: buildcraftenergy:oil_ocean;OCEAN;0.5;false;false;false;[OCEAN, WATER]
    [17:06:58] [Server thread/INFO] [FML]: buildcraftenergy:oil_desert;WARM;2.0;false;false;false;[DRY, HOT, SANDY]
    [17:06:58] [Server thread/INFO] [FML]: wizardry:wizardry_underworld;MEDIUM;0.5;false;false;false;[MAGICAL, DRY, SPOOKY, COLD, VOID]
    [17:06:58] [Server thread/INFO] [FML]: galacticraftcore:outer space;MEDIUM;0.5;false;false;false;[DEAD, SPARSE, DRY, SPOOKY]
    [17:06:58] [Server thread/INFO] [FML]: galacticraftplanets:outer space 1;WARM;4.0;false;false;false;[DEAD, DRY, HOT, SANDY]
    [17:06:58] [Server thread/INFO] [FML]: galacticraftplanets:outer space 2;WARM;4.0;false;false;false;[DEAD, DRY, HOT, SANDY]
    [17:06:58] [Server thread/INFO] [FML]: thaumcraft:magical_forest;MEDIUM;0.8;false;false;false;[MAGICAL, FOREST]
    [17:06:58] [Server thread/INFO] [FML]: thaumcraft:eerie;MEDIUM;0.8;false;false;false;[MAGICAL, SPOOKY]
    [17:06:58] [Server thread/INFO] [FML]: thaumcraft:eldritch;MEDIUM;0.8;false;false;false;[MAGICAL, END, SPOOKY]
    [17:06:58] [Server thread/INFO] [FML]: Registering drops for shadedGarden.
    [17:06:58] [Server thread/INFO] [FML]: Registering drops for tropicalGarden.
    [17:06:58] [Server thread/INFO] [FML]: Registering drops for windyGarden.
    [17:06:58] [Server thread/INFO] [FML]: Registering drops for frostGarden.
    [17:06:58] [Server thread/INFO] [FML]: Registering drops for aridGarden.
    [17:06:58] [Server thread/INFO] [FML]: Registering drops for soggyGarden.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pamapiary`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pammarket`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pamshippingbin`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pampresser`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pamgroundtrap`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pamwatertrap`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pamwaterfilter`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:06:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pamgrinder`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmoven`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmfridge`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcabinet`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmfreezer`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmbedsidecabinet`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmmailbox`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcomputer`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmprinter`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmstereo`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmpresent`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmbin`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmwallcabinet`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmbath`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmshowerhead`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmplate`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcouch`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmtoaster`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmchoppingboard`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmblender`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmmicrowave`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmwashingmachine`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmdishwasher`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcabinetkitchen`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcup`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcookiejar`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmtree`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmmirror`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmgrill`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmeski`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmdoormat`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcrate`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmlightswitch`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmceilingfan`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmdeskcabinet`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmmodernslidingdoor`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmdigitalclock`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmtv`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmkitchencounter`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmkitchencounterdrawer`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [17:07:00] [Server thread/INFO] [opencomputers]: Registering loot disk 'plan9k' from mod opencomputers.
    [17:07:00] [Server thread/INFO] [opencomputers]: Registering loot disk 'network' from mod opencomputers.
    [17:07:00] [Server thread/INFO] [opencomputers]: Registering loot disk 'openos' from mod opencomputers.
    [17:07:00] [Server thread/INFO] [opencomputers]: Registering loot disk 'data' from mod opencomputers.
    [17:07:00] [Server thread/INFO] [opencomputers]: Registering loot disk 'openloader' from mod opencomputers.
    [17:07:00] [Server thread/INFO] [opencomputers]: Registering loot disk 'builder' from mod opencomputers.
    [17:07:00] [Server thread/INFO] [opencomputers]: Registering loot disk 'generator' from mod opencomputers.
    [17:07:00] [Server thread/INFO] [opencomputers]: Registering loot disk 'oppm' from mod opencomputers.
    [17:07:00] [Server thread/INFO] [opencomputers]: Registering loot disk 'dig' from mod opencomputers.
    [17:07:00] [Server thread/INFO] [opencomputers]: Registering loot disk 'maze' from mod opencomputers.
    [17:07:00] [Server thread/INFO] [opencomputers]: Registering loot disk 'irc' from mod opencomputers.
    [17:07:00] [Server thread/INFO] [opencomputers]: Initializing mod integration.
    [17:07:00] [Server thread/INFO] [opencomputers]: Initializing mod integration for 'forestry'.
    [17:07:00] [Server thread/INFO] [opencomputers]: Initializing mod integration for 'ic2'.
    [17:07:00] [Server thread/INFO] [opencomputers]: Initializing mod integration for 'forge'.
    [17:07:00] [Server thread/INFO] [opencomputers]: Initializing mod integration for 'minecraft'.
    [17:07:00] [Server thread/INFO] [opencomputers]: Initializing mod integration for 'waila'.
    [17:07:00] [Server thread/INFO] [opencomputers]: Initializing mod integration for 'opencomputers'.
    [17:07:04] [Server thread/INFO] [opencomputers]: Found extended redstone mods, enabling tier two redstone card.
    [17:07:04] [Server thread/INFO] [opencomputers]: Initializing recipes.
    [17:07:07] [Server thread/INFO] [opencomputers]: Initializing capabilities.
    [17:07:07] [Server thread/INFO] [opencomputers]: Done with init phase.
    [17:07:09] [Server thread/INFO] [opencomputers]: Registering new tool durability provider 'li.cil.oc.integration.ic2.EventHandlerIndustrialCraft2.getDurability' from mod opencomputers.
    [17:07:09] [Server thread/INFO] [opencomputers]: Registering new wrench usage 'li.cil.oc.integration.ic2.EventHandlerIndustrialCraft2.useWrench' from mod opencomputers.
    [17:07:09] [Server thread/INFO] [opencomputers]: Registering new wrench tool check 'li.cil.oc.integration.ic2.EventHandlerIndustrialCraft2.isWrench' from mod opencomputers.
    [17:07:09] [Server thread/INFO] [opencomputers]: Registering new item charge implementation 'IndustrialCraft2' from mod opencomputers.
    [17:07:09] [Server thread/INFO] [opencomputers]: Registering new item charge implementation 'MinecraftForge' from mod opencomputers.
    [17:07:09] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Drone (Tier 1)' from mod opencomputers.
    [17:07:09] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Drone (Tier 2)' from mod opencomputers.
    [17:07:09] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Drone (Creative)' from mod opencomputers.
    [17:07:09] [Server thread/INFO] [opencomputers]: Registering new disassembler template 'Drone' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Microcontroller (Tier 1)' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Microcontroller (Tier 2)' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Microcontroller (Creative)' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new disassembler template 'Microcontroller' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new disassembler template 'Navigation Upgrade' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Robot (Tier 1)' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Robot (Tier 2)' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Robot (Tier 3)' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Robot (Creative)' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new disassembler template 'Robot' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new disassembler template 'Server' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Tablet (Tier 1)' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Tablet (Tier 2)' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Tablet (Creative)' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new disassembler template 'Tablet' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new assembler template filter 'li.cil.oc.common.template.TemplateBlacklist.filter' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new wrench usage 'li.cil.oc.integration.opencomputers.ModOpenComputers.useWrench' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new wrench tool check 'li.cil.oc.integration.opencomputers.ModOpenComputers.isWrench' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new item charge implementation 'OpenComputers' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new ink provider 'li.cil.oc.integration.opencomputers.ModOpenComputers.inkCartridgeInkProvider' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new ink provider 'li.cil.oc.integration.opencomputers.ModOpenComputers.dyeInkProvider' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'build' being on disk 'builder' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'dig' being on disk 'dig' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'base64' being on disk 'data' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'deflate' being on disk 'data' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'gpg' being on disk 'data' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'inflate' being on disk 'data' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'md5sum' being on disk 'data' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'sha256sum' being on disk 'data' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'refuel' being on disk 'generator' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'irc' being on disk 'irc' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'maze' being on disk 'maze' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'arp' being on disk 'network' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'ifconfig' being on disk 'network' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'ping' being on disk 'network' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'route' being on disk 'network' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'opl-flash' being on disk 'openloader' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'oppm' being on disk 'oppm' from mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'geolyzer' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'motionsensor' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'keyboard' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'screen1' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'transposer' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'carpetedcapacitor' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'angelupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'batteryupgrade1' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'batteryupgrade2' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'batteryupgrade3' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'chunkloaderupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'craftingupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'experienceupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'generatorupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade1' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade2' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'inventoryupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'navigationupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'pistonupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'solargeneratorupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'tankupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'tractorbeamupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'leashupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'tradingupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'keyboard' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'screen1' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'transposer' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'carpetedcapacitor' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'apu1' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'apu2' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'graphicscard1' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'graphicscard2' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'graphicscard3' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'lancard' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'redstonecard1' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'angelupgrade' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'craftingupgrade' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade1' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade2' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'keyboard' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'screen1' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'carpetedcapacitor' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'apu1' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'apu2' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'graphicscard1' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'graphicscard2' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'graphicscard3' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'angelupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'chunkloaderupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'craftingupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'databaseupgrade1' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'databaseupgrade2' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'databaseupgrade3' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'experienceupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'generatorupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade1' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade2' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'inventoryupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'inventorycontrollerupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'navigationupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'tankupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'tankcontrollerupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'tractorbeamupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'leashupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'tradingupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'transposer' for host 'li.cil.oc.api.internal.Robot' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'carpetedcapacitor' for host 'li.cil.oc.api.internal.Robot' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'leashupgrade' for host 'li.cil.oc.api.internal.Robot' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'screen1' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'transposer' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'carpetedcapacitor' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'lancard' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'redstonecard1' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'angelupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'chunkloaderupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'craftingupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'databaseupgrade1' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'databaseupgrade2' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'databaseupgrade3' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'experienceupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'generatorupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade1' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade2' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'inventoryupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'inventorycontrollerupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'tankupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'tankcontrollerupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'leashupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [opencomputers]: Blacklisting component 'tradingupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [17:07:10] [Server thread/INFO] [FML]: Injecting itemstacks
    [17:07:10] [Server thread/INFO] [FML]: Itemstack injection complete
    [17:07:11] [Server thread/INFO] [ic2.Uu]: Loading predefined UU world scan values, run /ic2 uu-world-scan <small|medium|large> to calibrate them for your world.
    [17:07:12] [Server thread/INFO] [ic2.General]: ic2 version 2.8.100-ex112 loaded.
    [17:07:15] [Server thread/INFO] [RECIPE_SCRIPT]: skipped core.POST_INIT
    [17:07:23] [Server thread/INFO] [wizardry]:  | Registered Beam -> Lightning run override.
    [17:07:23] [Server thread/INFO] [wizardry]:  | Registered Projectile -> Lightning run override.
    [17:07:23] [Server thread/INFO] [wizardry]:  | Registered Arc -> Lightning run override.
    [17:07:23] [Server thread/INFO] [wizardry]:  | Registered Self -> Lightning run override.
    [17:07:23] [Server thread/INFO] [wizardry]:  | Registered Touch -> Lightning run override.
    [17:07:23] [Server thread/INFO] [wizardry]:  | Registered Zone -> Lightning run override.
    [17:07:23] [Server thread/INFO] [wizardry]:  | Registered Beam -> Lightning renderSpell override.
    [17:07:23] [Server thread/INFO] [wizardry]:  | Registered Projectile -> Lightning renderSpell override.
    [17:07:23] [Server thread/INFO] [wizardry]:  | Registered Arc -> Lightning renderSpell override.
    [17:07:23] [Server thread/INFO] [wizardry]:  | Registered Touch -> Lightning renderSpell override.
    [17:07:23] [Server thread/WARN] [forestry]: Failed to find item for (immersiveengineering:seed) in the Forge registry.
    [17:07:23] [Server thread/INFO] [Galacticraft]: Galacticraft: activating IndustrialCraft2 compatibility features.
    [17:07:23] [Server thread/INFO] [Galacticraft]: Galacticraft: activating BuildCraft Transport (Pipes) compatibility features.
    [17:07:23] [Server thread/INFO] [Galacticraft]: Galacticraft: activating Biomes O'Plenty compatibility feature.
    [17:07:23] [Server thread/INFO] [Galacticraft]: Galacticraft: activating WAILA compatibility features.
    [17:07:29] [Server thread/INFO] [opencomputers]: Done with post init phase.
    [17:07:34] [Server thread/INFO] [THAUMCRAFT]: Loaded 22 research entries from thaumcraft:research/alchemy
    [17:07:34] [Server thread/INFO] [THAUMCRAFT]: Loaded 5 research entries from thaumcraft:research/eldritch
    [17:07:34] [Server thread/INFO] [THAUMCRAFT]: Loaded 20 research entries from thaumcraft:research/basics
    [17:07:34] [Server thread/INFO] [THAUMCRAFT]: Loaded 23 research entries from thaumcraft:research/auromancy
    [17:07:34] [Server thread/INFO] [THAUMCRAFT]: Loaded 12 research entries from thaumcraft:research/scans
    [17:07:34] [Server thread/INFO] [THAUMCRAFT]: Loaded 20 research entries from thaumcraft:research/artifice
    [17:07:34] [Server thread/INFO] [THAUMCRAFT]: Loaded 17 research entries from thaumcraft:research/infusion
    [17:07:34] [Server thread/INFO] [THAUMCRAFT]: Loaded 29 research entries from thaumcraft:research/golemancy
    [17:07:34] [Server thread/INFO] [Treecapitator]: Prioritizing User and IMC mod configs...
    [17:07:34] [Server thread/INFO] [Treecapitator]: Registering items and trees...
    [17:07:34] [Server thread/INFO] [Waila]: Starting Waila...
    [17:07:34] [Server thread/INFO] [Waila]: Gathering annotated plugins...
    [17:07:34] [Server thread/INFO] [Waila]: Gathering wrapped IMC plugins...
    [17:07:34] [Server thread/INFO] [Waila]: Registering plugins...
    [17:07:34] [Server thread/INFO] [Waila]: Registering plugin at mcp.mobius.waila.addons.core.PluginCore
    [17:07:34] [Server thread/INFO] [Waila]: Registering plugin at mcp.mobius.waila.addons.capability.PluginCapability
    [17:07:34] [Server thread/INFO] [Waila]: Registering plugin at li.cil.oc.integration.waila.BlockDataProvider
    [17:07:34] [Server thread/INFO] [Waila]: Registering plugin at mcp.mobius.waila.addons.minecraft.PluginMinecraft
    [17:07:34] [Server thread/INFO] [Waila]: Registering plugin at com.ferreusveritas.dynamictrees.compat.WailaCompat
    [17:07:34] [Server thread/INFO] [Waila]: Registering plugin at net.geforcemods.securitycraft.compat.waila.WailaDataProvider
    [17:07:34] [Server thread/INFO] [Waila]: Registering plugin at panda.corn.other.HwylaPlugin
    [17:07:34] [Server thread/INFO] [Waila]: Starting Waila took 165.0 ms
    [17:07:38] [Server thread/INFO] [FML]: Forge Mod Loader has successfully loaded 53 mods
    [17:07:38] [Server thread/WARN] [net.minecraft.server.dedicated.DedicatedPlayerList]: Failed to load white-list: 
    com.google.gson.JsonParseException: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 2 path $[0]
        at net.minecraft.util.JsonUtils.func_193838_a(SourceFile:506) ~[rc.class:?]
        at net.minecraft.util.JsonUtils.func_193841_a(SourceFile:522) ~[rc.class:?]
        at net.minecraft.server.management.UserList.func_152679_g(SourceFile:141) ~[pp.class:?]
        at net.minecraft.server.dedicated.DedicatedPlayerList.func_72418_v(SourceFile:123) [ny.class:?]
        at net.minecraft.server.dedicated.DedicatedPlayerList.<init>(SourceFile:30) [ny.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:220) [nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    Caused by: com.google.gson.stream.MalformedJsonException: Use JsonReader.setLenient(true) to accept malformed JSON at line 1 column 2 path $[0]
        at com.google.gson.stream.JsonReader.syntaxError(JsonReader.java:1559) ~[JsonReader.class:?]
        at com.google.gson.stream.JsonReader.checkLenient(JsonReader.java:1401) ~[JsonReader.class:?]
        at com.google.gson.stream.JsonReader.doPeek(JsonReader.java:593) ~[JsonReader.class:?]
        at com.google.gson.stream.JsonReader.hasNext(JsonReader.java:414) ~[JsonReader.class:?]
        at com.google.gson.internal.bind.CollectionTypeAdapterFactory$Adapter.read(CollectionTypeAdapterFactory.java:81) ~[CollectionTypeAdapterFactory$Adapter.class:?]
        at com.google.gson.internal.bind.CollectionTypeAdapterFactory$Adapter.read(CollectionTypeAdapterFactory.java:61) ~[CollectionTypeAdapterFactory$Adapter.class:?]
        at net.minecraft.util.JsonUtils.func_193838_a(SourceFile:504) ~[rc.class:?]
        ... 7 more
    [17:07:43] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Preparing level "Lobby"
    [17:07:43] [Server thread/INFO] [STDOUT]: [biomesoplenty.common.world.BiomeProviderBOP:<init>:61]: settings for world: 
    [17:07:43] [Server thread/INFO] [STDOUT]: [biomesoplenty.common.world.BiomeProviderBOP:initialLandAndSeaLayer:93]: Setting up landmass VANILLA
    [17:07:43] [Server thread/INFO] [STDOUT]: [biomesoplenty.common.world.ChunkGeneratorOverworldBOP:<init>:88]: ChunkGeneratorOverworldBOP json: 
    [17:07:43] [Server thread/INFO] [STDOUT]: [biomesoplenty.common.world.ChunkGeneratorOverworldBOP:<init>:95]: ChunkGeneratorOverworldBOP settings: {"landScheme":"vanilla","tempScheme":"medium_zones","rainScheme":"medium_zones","biomeSize":"medium","amplitude":1.0,"generateBopOre":true,"generatePoisonIvy":false,"generateBerryBushes":true,"generateThorns":true,"generateQuicksand":true,"generateLiquidPoison":true,"generateHotSprings":true,"generateNetherHives":true,"generateEndFeatures":true,"mainNoiseScaleX":80.0,"mainNoiseScaleY":160.0,"mainNoiseScaleZ":80.0,"coordinateScale":684.412,"heightScale":684.412,"upperLimitScale":512.0,"lowerLimitScale":512.0}
    [17:07:43] [Server thread/INFO] [FML]: Loading dimension 0 (Lobby) (net.minecraft.server.dedicated.DedicatedServer@1661aaa5)
    [17:07:45] [Server thread/ERROR] [net.minecraft.advancements.AdvancementManager]: Parsing error loading built-in advancement minecraft:recipes/food/pumpkin_pie
    com.google.gson.JsonSyntaxException: Unknown recipe 'minecraft:pumpkin_pie'
        at net.minecraft.advancements.AdvancementRewards$Deserializer.deserialize(AdvancementRewards.java:171) ~[l$a.class:?]
        at net.minecraft.advancements.AdvancementRewards$Deserializer.deserialize(AdvancementRewards.java:147) ~[l$a.class:?]
        at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[TreeTypeAdapter.class:?]
        at com.google.gson.Gson.fromJson(Gson.java:887) ~[Gson.class:?]
        at com.google.gson.Gson.fromJson(Gson.java:952) ~[Gson.class:?]
        at com.google.gson.internal.bind.TreeTypeAdapter$GsonContextImpl.deserialize(TreeTypeAdapter.java:162) ~[TreeTypeAdapter$GsonContextImpl.class:?]
        at net.minecraft.util.JsonUtils.func_188179_a(SourceFile:439) ~[rc.class:?]
        at net.minecraft.util.JsonUtils.func_188177_a(SourceFile:455) ~[rc.class:?]
        at net.minecraft.advancements.Advancement$Builder.func_192059_a(SourceFile:203) ~[i$a.class:?]
        at net.minecraft.advancements.AdvancementManager$1.deserialize(AdvancementManager.java:50) ~[ns$1.class:?]
        at net.minecraft.advancements.AdvancementManager$1.deserialize(AdvancementManager.java:46) ~[ns$1.class:?]
        at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[TreeTypeAdapter.class:?]
        at net.minecraft.util.JsonUtils.func_188173_a(SourceFile:492) ~[rc.class:?]
        at net.minecraft.util.JsonUtils.func_193839_a(SourceFile:532) ~[rc.class:?]
        at net.minecraft.advancements.AdvancementManager.func_192777_a(AdvancementManager.java:184) [ns.class:?]
        at net.minecraft.advancements.AdvancementManager.func_192779_a(AdvancementManager.java:68) [ns.class:?]
        at net.minecraft.advancements.AdvancementManager.<init>(AdvancementManager.java:60) [ns.class:?]
        at net.minecraft.world.WorldServer.func_175643_b(WorldServer.java:156) [oo.class:?]
        at net.minecraft.server.MinecraftServer.func_71247_a(MinecraftServer.java:298) [MinecraftServer.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:270) [nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [17:07:45] [Server thread/ERROR] [net.minecraft.advancements.AdvancementManager]: Parsing error loading built-in advancement minecraft:recipes/food/mushroom_stew
    com.google.gson.JsonSyntaxException: Unknown recipe 'minecraft:mushroom_stew'
        at net.minecraft.advancements.AdvancementRewards$Deserializer.deserialize(AdvancementRewards.java:171) ~[l$a.class:?]
        at net.minecraft.advancements.AdvancementRewards$Deserializer.deserialize(AdvancementRewards.java:147) ~[l$a.class:?]
        at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[TreeTypeAdapter.class:?]
        at com.google.gson.Gson.fromJson(Gson.java:887) ~[Gson.class:?]
        at com.google.gson.Gson.fromJson(Gson.java:952) ~[Gson.class:?]
        at com.google.gson.internal.bind.TreeTypeAdapter$GsonContextImpl.deserialize(TreeTypeAdapter.java:162) ~[TreeTypeAdapter$GsonContextImpl.class:?]
        at net.minecraft.util.JsonUtils.func_188179_a(SourceFile:439) ~[rc.class:?]
        at net.minecraft.util.JsonUtils.func_188177_a(SourceFile:455) ~[rc.class:?]
        at net.minecraft.advancements.Advancement$Builder.func_192059_a(SourceFile:203) ~[i$a.class:?]
        at net.minecraft.advancements.AdvancementManager$1.deserialize(AdvancementManager.java:50) ~[ns$1.class:?]
        at net.minecraft.advancements.AdvancementManager$1.deserialize(AdvancementManager.java:46) ~[ns$1.class:?]
        at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[TreeTypeAdapter.class:?]
        at net.minecraft.util.JsonUtils.func_188173_a(SourceFile:492) ~[rc.class:?]
        at net.minecraft.util.JsonUtils.func_193839_a(SourceFile:532) ~[rc.class:?]
        at net.minecraft.advancements.AdvancementManager.func_192777_a(AdvancementManager.java:184) [ns.class:?]
        at net.minecraft.advancements.AdvancementManager.func_192779_a(AdvancementManager.java:68) [ns.class:?]
        at net.minecraft.advancements.AdvancementManager.<init>(AdvancementManager.java:60) [ns.class:?]
        at net.minecraft.world.WorldServer.func_175643_b(WorldServer.java:156) [oo.class:?]
        at net.minecraft.server.MinecraftServer.func_71247_a(MinecraftServer.java:298) [MinecraftServer.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:270) [nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [17:07:45] [Server thread/ERROR] [net.minecraft.advancements.AdvancementManager]: Parsing error loading built-in advancement minecraft:recipes/food/cookie
    com.google.gson.JsonSyntaxException: Unknown recipe 'minecraft:cookie'
        at net.minecraft.advancements.AdvancementRewards$Deserializer.deserialize(AdvancementRewards.java:171) ~[l$a.class:?]
        at net.minecraft.advancements.AdvancementRewards$Deserializer.deserialize(AdvancementRewards.java:147) ~[l$a.class:?]
        at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[TreeTypeAdapter.class:?]
        at com.google.gson.Gson.fromJson(Gson.java:887) ~[Gson.class:?]
        at com.google.gson.Gson.fromJson(Gson.java:952) ~[Gson.class:?]
        at com.google.gson.internal.bind.TreeTypeAdapter$GsonContextImpl.deserialize(TreeTypeAdapter.java:162) ~[TreeTypeAdapter$GsonContextImpl.class:?]
        at net.minecraft.util.JsonUtils.func_188179_a(SourceFile:439) ~[rc.class:?]
        at net.minecraft.util.JsonUtils.func_188177_a(SourceFile:455) ~[rc.class:?]
        at net.minecraft.advancements.Advancement$Builder.func_192059_a(SourceFile:203) ~[i$a.class:?]
        at net.minecraft.advancements.AdvancementManager$1.deserialize(AdvancementManager.java:50) ~[ns$1.class:?]
        at net.minecraft.advancements.AdvancementManager$1.deserialize(AdvancementManager.java:46) ~[ns$1.class:?]
        at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[TreeTypeAdapter.class:?]
        at net.minecraft.util.JsonUtils.func_188173_a(SourceFile:492) ~[rc.class:?]
        at net.minecraft.util.JsonUtils.func_193839_a(SourceFile:532) ~[rc.class:?]
        at net.minecraft.advancements.AdvancementManager.func_192777_a(AdvancementManager.java:184) [ns.class:?]
        at net.minecraft.advancements.AdvancementManager.func_192779_a(AdvancementManager.java:68) [ns.class:?]
        at net.minecraft.advancements.AdvancementManager.<init>(AdvancementManager.java:60) [ns.class:?]
        at net.minecraft.world.WorldServer.func_175643_b(WorldServer.java:156) [oo.class:?]
        at net.minecraft.server.MinecraftServer.func_71247_a(MinecraftServer.java:298) [MinecraftServer.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:270) [nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [17:07:45] [Server thread/ERROR] [net.minecraft.advancements.AdvancementManager]: Parsing error loading built-in advancement minecraft:recipes/food/bread
    com.google.gson.JsonSyntaxException: Unknown recipe 'minecraft:bread'
        at net.minecraft.advancements.AdvancementRewards$Deserializer.deserialize(AdvancementRewards.java:171) ~[l$a.class:?]
        at net.minecraft.advancements.AdvancementRewards$Deserializer.deserialize(AdvancementRewards.java:147) ~[l$a.class:?]
        at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[TreeTypeAdapter.class:?]
        at com.google.gson.Gson.fromJson(Gson.java:887) ~[Gson.class:?]
        at com.google.gson.Gson.fromJson(Gson.java:952) ~[Gson.class:?]
        at com.google.gson.internal.bind.TreeTypeAdapter$GsonContextImpl.deserialize(TreeTypeAdapter.java:162) ~[TreeTypeAdapter$GsonContextImpl.class:?]
        at net.minecraft.util.JsonUtils.func_188179_a(SourceFile:439) ~[rc.class:?]
        at net.minecraft.util.JsonUtils.func_188177_a(SourceFile:455) ~[rc.class:?]
        at net.minecraft.advancements.Advancement$Builder.func_192059_a(SourceFile:203) ~[i$a.class:?]
        at net.minecraft.advancements.AdvancementManager$1.deserialize(AdvancementManager.java:50) ~[ns$1.class:?]
        at net.minecraft.advancements.AdvancementManager$1.deserialize(AdvancementManager.java:46) ~[ns$1.class:?]
        at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[TreeTypeAdapter.class:?]
        at net.minecraft.util.JsonUtils.func_188173_a(SourceFile:492) ~[rc.class:?]
        at net.minecraft.util.JsonUtils.func_193839_a(SourceFile:532) ~[rc.class:?]
        at net.minecraft.advancements.AdvancementManager.func_192777_a(AdvancementManager.java:184) [ns.class:?]
        at net.minecraft.advancements.AdvancementManager.func_192779_a(AdvancementManager.java:68) [ns.class:?]
        at net.minecraft.advancements.AdvancementManager.<init>(AdvancementManager.java:60) [ns.class:?]
        at net.minecraft.world.WorldServer.func_175643_b(WorldServer.java:156) [oo.class:?]
        at net.minecraft.server.MinecraftServer.func_71247_a(MinecraftServer.java:298) [MinecraftServer.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:270) [nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [17:07:45] [Server thread/ERROR] [net.minecraft.advancements.AdvancementManager]: Parsing error loading built-in advancement minecraft:recipes/food/beetroot_soup
    com.google.gson.JsonSyntaxException: Unknown recipe 'minecraft:beetroot_soup'
        at net.minecraft.advancements.AdvancementRewards$Deserializer.deserialize(AdvancementRewards.java:171) ~[l$a.class:?]
        at net.minecraft.advancements.AdvancementRewards$Deserializer.deserialize(AdvancementRewards.java:147) ~[l$a.class:?]
        at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[TreeTypeAdapter.class:?]
        at com.google.gson.Gson.fromJson(Gson.java:887) ~[Gson.class:?]
        at com.google.gson.Gson.fromJson(Gson.java:952) ~[Gson.class:?]
        at com.google.gson.internal.bind.TreeTypeAdapter$GsonContextImpl.deserialize(TreeTypeAdapter.java:162) ~[TreeTypeAdapter$GsonContextImpl.class:?]
        at net.minecraft.util.JsonUtils.func_188179_a(SourceFile:439) ~[rc.class:?]
        at net.minecraft.util.JsonUtils.func_188177_a(SourceFile:455) ~[rc.class:?]
        at net.minecraft.advancements.Advancement$Builder.func_192059_a(SourceFile:203) ~[i$a.class:?]
        at net.minecraft.advancements.AdvancementManager$1.deserialize(AdvancementManager.java:50) ~[ns$1.class:?]
        at net.minecraft.advancements.AdvancementManager$1.deserialize(AdvancementManager.java:46) ~[ns$1.class:?]
        at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[TreeTypeAdapter.class:?]
        at net.minecraft.util.JsonUtils.func_188173_a(SourceFile:492) ~[rc.class:?]
        at net.minecraft.util.JsonUtils.func_193839_a(SourceFile:532) ~[rc.class:?]
        at net.minecraft.advancements.AdvancementManager.func_192777_a(AdvancementManager.java:184) [ns.class:?]
        at net.minecraft.advancements.AdvancementManager.func_192779_a(AdvancementManager.java:68) [ns.class:?]
        at net.minecraft.advancements.AdvancementManager.<init>(AdvancementManager.java:60) [ns.class:?]
        at net.minecraft.world.WorldServer.func_175643_b(WorldServer.java:156) [oo.class:?]
        at net.minecraft.server.MinecraftServer.func_71247_a(MinecraftServer.java:298) [MinecraftServer.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:270) [nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [17:07:47] [Server thread/ERROR] [FML]: Parsing error loading built-in advancement buildcraftcore:goggles
    com.google.gson.JsonSyntaxException: Expected item to be an item, was unknown string 'buildcraftcore:goggles'
        at net.minecraft.util.JsonUtils.func_188172_b(SourceFile:124) ~[rc.class:?]
        at net.minecraft.util.JsonUtils.func_188180_i(SourceFile:135) ~[rc.class:?]
        at net.minecraft.advancements.DisplayInfo.func_193221_a(DisplayInfo.java:133) ~[r.class:?]
        at net.minecraft.advancements.DisplayInfo.func_192294_a(DisplayInfo.java:111) ~[r.class:?]
        at net.minecraft.advancements.Advancement$Builder.func_192059_a(SourceFile:202) ~[i$a.class:?]
        at net.minecraft.advancements.AdvancementManager$1.deserialize(AdvancementManager.java:50) ~[ns$1.class:?]
        at net.minecraft.advancements.AdvancementManager$1.deserialize(AdvancementManager.java:46) ~[ns$1.class:?]
        at com.google.gson.internal.bind.TreeTypeAdapter.read(TreeTypeAdapter.java:69) ~[TreeTypeAdapter.class:?]
        at net.minecraft.util.JsonUtils.func_188173_a(SourceFile:492) ~[rc.class:?]
        at net.minecraft.util.JsonUtils.func_193839_a(SourceFile:532) ~[rc.class:?]
        at net.minecraftforge.common.ForgeHooks.lambda$loadAdvancements$0(ForgeHooks.java:1356) ~[ForgeHooks.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:822) [CraftingHelper.class:?]
        at net.minecraftforge.common.ForgeHooks.loadAdvancements(ForgeHooks.java:1338) [ForgeHooks.class:?]
        at net.minecraftforge.common.ForgeHooks.loadAdvancements(ForgeHooks.java:1312) [ForgeHooks.class:?]
        at net.minecraft.advancements.AdvancementManager.func_192779_a(AdvancementManager.java:69) [ns.class:?]
        at net.minecraft.advancements.AdvancementManager.<init>(AdvancementManager.java:60) [ns.class:?]
        at net.minecraft.world.WorldServer.func_175643_b(WorldServer.java:156) [oo.class:?]
        at net.minecraft.server.MinecraftServer.func_71247_a(MinecraftServer.java:298) [MinecraftServer.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:270) [nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [17:07:48] [Server thread/INFO] [net.minecraft.advancements.AdvancementList]: Loaded 780 advancements
    [17:07:52] [Server thread/INFO] [THAUMCRAFT]: Creating aura cache for world 0
    [17:07:52] [Server thread/INFO] [dsurround]: Identified the following resource pack locations
    [17:07:52] [Server thread/INFO] [dsurround]: Resource pack dsurround: Presence by Ha3, OreCruncher (https://minecraft.curseforge.com/projects/dynamic-surroundings)
    [17:07:54] [Server thread/INFO] [dsurround]: Loading [dsurround:data/mcp.json] <- [dsurround]
    [17:07:55] [Server thread/INFO] [dsurround]: Loading [dsurround:data/biomesoplenty.json] <- [dsurround]
    [17:07:56] [Server thread/INFO] [dsurround]: Loading [dsurround:data/dynamictrees.json] <- [dsurround]
    [17:07:56] [Server thread/INFO] [dsurround]: Loading [dsurround:data/toughasnails.json] <- [dsurround]
    [17:07:56] [Server thread/INFO] [dsurround]: Loading [dsurround:data/forestry.json] <- [dsurround]
    [17:07:56] [Server thread/INFO] [dsurround]: Loading [dsurround:data/galacticraftcore.json] <- [dsurround]
    [17:07:56] [Server thread/INFO] [dsurround]: Loading [dsurround:data/harvestcraft.json] <- [dsurround]
    [17:07:56] [Server thread/INFO] [dsurround]: Loading [dsurround:data/ironchest.json] <- [dsurround]
    [17:07:56] [Server thread/INFO] [dsurround]: Loading [dsurround:data/simplecorn.json] <- [dsurround]
    [17:07:56] [Server thread/INFO] [dsurround]: Loading [dsurround:data/thaumcraft.json] <- [dsurround]
    [17:07:56] [Server thread/INFO] [dsurround]: DimensionInfo{id=0, name=overworld, seaLevel=63, cloudHeight=128, skyHeight=256, haze=true, aurora=true, weather=true, fog=true}
    [17:07:57] [Server thread/INFO] [dsurround]: Creating STANDARD weather generator for dimension [overworld]
    [17:07:57] [Server thread/INFO] [FML]: Loading dimension 1 (Lobby) (net.minecraft.server.dedicated.DedicatedServer@1661aaa5)
    [17:07:57] [Server thread/INFO] [THAUMCRAFT]: Creating aura cache for world 1
    [17:07:57] [Server thread/INFO] [dsurround]: DimensionInfo{id=1, name=the_end, seaLevel=0, cloudHeight=128, skyHeight=256, haze=false, aurora=false, weather=false, fog=false}
    [17:07:57] [Server thread/INFO] [dsurround]: Creating NULL weather generator for dimension [the_end]
    [17:07:57] [Server thread/INFO] [STDOUT]: [biomesoplenty.common.world.BiomeProviderBOPHell:<init>:32]: settings for hell world: 
    [17:07:57] [Server thread/INFO] [FML]: Loading dimension -1 (Lobby) (net.minecraft.server.dedicated.DedicatedServer@1661aaa5)
    [17:07:57] [Server thread/INFO] [THAUMCRAFT]: Creating aura cache for world -1
    [17:07:57] [Server thread/INFO] [dsurround]: DimensionInfo{id=-1, name=the_nether, seaLevel=0, cloudHeight=128, skyHeight=128, haze=false, aurora=false, weather=true, fog=true}
    [17:07:57] [Server thread/INFO] [dsurround]: Creating NETHER weather generator for dimension [the_nether]
    [17:07:57] [Server thread/INFO] [FML]: Loading dimension 33 (Lobby) (net.minecraft.server.dedicated.DedicatedServer@1661aaa5)
    [17:07:57] [Server thread/INFO] [THAUMCRAFT]: Creating aura cache for world 33
    [17:07:57] [Server thread/INFO] [dsurround]: DimensionInfo{id=33, name=underworld, seaLevel=63, cloudHeight=256, skyHeight=256, haze=false, aurora=false, weather=false, fog=false}
    [17:07:57] [Server thread/INFO] [dsurround]: Creating NULL weather generator for dimension [underworld]
    [17:07:57] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing start region for level 0
    [17:07:59] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 1%
    [17:08:00] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 2%
    [17:08:01] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 2%
    [17:08:03] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 3%
    [17:08:08] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 4%
    [17:08:10] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 4%
    [17:08:12] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 6%
    [17:08:17] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 7%
    [17:08:19] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 9%
    [17:08:23] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Preparing spawn area: 10%
    [17:08:24] [Server thread/ERROR] [net.minecraft.server.MinecraftServer]: Encountered an unexpected exception
    java.lang.NoSuchMethodError: net.minecraft.world.biome.Biome.func_185359_l()Ljava/lang/String;
        at com.someguyssoftware.dungeons2.worldgen.DungeonsWorldGen.generate(DungeonsWorldGen.java:240) ~[DungeonsWorldGen.class:?]
        at net.minecraftforge.fml.common.registry.GameRegistry.generateWorld(GameRegistry.java:167) ~[GameRegistry.class:?]
        at micdoodle8.mods.galacticraft.core.TransformerHooks.otherModGenerate(TransformerHooks.java:198) ~[TransformerHooks.class:?]
        at net.minecraft.world.chunk.Chunk.func_186034_a(Chunk.java:1020) ~[axw.class:?]
        at net.minecraft.world.chunk.Chunk.func_186030_a(Chunk.java:999) ~[axw.class:?]
        at net.minecraft.world.gen.ChunkProviderServer.func_186025_d(ChunkProviderServer.java:157) ~[on.class:?]
        at net.minecraft.server.MinecraftServer.func_71222_d(MinecraftServer.java:344) ~[MinecraftServer.class:?]
        at net.minecraft.server.MinecraftServer.func_71247_a(MinecraftServer.java:314) ~[MinecraftServer.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:270) ~[nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [17:08:26] [Server thread/ERROR] [net.minecraft.server.MinecraftServer]: This crash report has been saved to: C:\MS Minecraft Server\.\crash-reports\crash-2018-12-17_17.08.26-server.txt
    [17:08:26] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Stopping server
    [17:08:26] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving players
    [17:08:26] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving worlds
    [17:08:26] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving chunks for level 'Lobby'/overworld
    [17:08:28] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving chunks for level 'Lobby'/the_nether
    [17:08:28] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving chunks for level 'Lobby'/the_end
    [17:08:28] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving chunks for level 'Lobby'/underworld
    [17:08:28] [Server thread/INFO] [THAUMCRAFT]: Removing aura cache for world 0
    [17:08:29] [Server thread/INFO] [THAUMCRAFT]: Removing aura cache for world -1
    [17:08:29] [Server thread/INFO] [THAUMCRAFT]: Removing aura cache for world 1
    [17:08:29] [Server thread/INFO] [THAUMCRAFT]: Removing aura cache for world 33
    [17:08:29] [Server thread/INFO] [FML]: Unloading dimension 0
    [17:08:29] [Server thread/INFO] [FML]: Unloading dimension -1
    [17:08:29] [Server thread/INFO] [FML]: Unloading dimension 1
    [17:08:29] [Server thread/INFO] [FML]: Unloading dimension 33
    [17:08:29] [Server thread/INFO] [FML]: The state engine was in incorrect state SERVER_STARTING and forced into state SERVER_STOPPED. Errors may have been discarded.
    [17:08:29] [Server Shutdown Thread/INFO] [net.minecraft.server.MinecraftServer]: Stopping server
    [17:08:29] [Server Shutdown Thread/INFO] [net.minecraft.server.MinecraftServer]: Saving players
    [17:08:29] [Server Shutdown Thread/INFO] [net.minecraft.server.MinecraftServer]: Saving worlds

    Crash Report:

    Spoiler

    ---- Minecraft Crash Report ----

    WARNING: coremods are present:
      MicdoodlePlugin (MicdoodleCore-1.12.2.jar)
      Wizardry Plugin (Escapees-Wizardry-Mod-1.12.2.jar)
      Inventory Tweaks Coremod (Inventory-Tweaks-Mod-1.12.2.jar)
      TransformerLoader (OpenComputers-MC1.12.2-1.7.2.67.jar)
      LibrarianLib Plugin (LibrarianLib-1.12.2.jar)
      DynamicSurroundingsCore (DynamicSurroundings-core-1.12.2-3.4.10.5.jar)
      ForgelinPlugin (Forgelin-1.8.2.jar)
    Contact their authors BEFORE contacting forge

    // This doesn't make any sense!

    Time: 12/17/18 5:08 PM
    Description: Exception in server tick loop

    java.lang.NoSuchMethodError: net.minecraft.world.biome.Biome.func_185359_l()Ljava/lang/String;
        at com.someguyssoftware.dungeons2.worldgen.DungeonsWorldGen.generate(DungeonsWorldGen.java:240)
        at net.minecraftforge.fml.common.registry.GameRegistry.generateWorld(GameRegistry.java:167)
        at micdoodle8.mods.galacticraft.core.TransformerHooks.otherModGenerate(TransformerHooks.java:198)
        at net.minecraft.world.chunk.Chunk.func_186034_a(Chunk.java:1020)
        at net.minecraft.world.chunk.Chunk.func_186030_a(Chunk.java:999)
        at net.minecraft.world.gen.ChunkProviderServer.func_186025_d(ChunkProviderServer.java:157)
        at net.minecraft.server.MinecraftServer.func_71222_d(MinecraftServer.java:344)
        at net.minecraft.server.MinecraftServer.func_71247_a(MinecraftServer.java:314)
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:270)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486)
        at java.lang.Thread.run(Unknown Source)


    A detailed walkthrough of the error, its code path and all known details is as follows:
    ---------------------------------------------------------------------------------------

    -- System Details --
    Details:
        Minecraft Version: 1.12.2
        Operating System: Windows 7 (amd64) version 6.1
        Java Version: 1.8.0_161, Oracle Corporation
        Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
        Memory: 283417432 bytes (270 MB) / 873988096 bytes (833 MB) up to 932184064 bytes (889 MB)
        JVM Flags: 0 total; 
        IntCache: cache: 0, tcache: 0, allocated: 5, tallocated: 104
        FML: MCP 9.42 Powered by Forge 14.23.5.2768 53 mods loaded, 53 mods active
        States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored

        | State   | ID                    | Version                  | Source                                         | Signature                                |
        |:------- |:--------------------- |:------------------------ |:---------------------------------------------- |:---------------------------------------- |
        | UCHIJAA | minecraft             | 1.12.2                   | minecraft.jar                                  | None                                     |
        | UCHIJAA | mcp                   | 9.42                     | minecraft.jar                                  | None                                     |
        | UCHIJAA | FML                   | 8.0.99.99                | forge-1.12.2-14.23.5.2768-universal.jar        | e3c3d50c7c986df74c645c0ac54639741c90a557 |
        | UCHIJAA | forge                 | 14.23.5.2768             | forge-1.12.2-14.23.5.2768-universal.jar        | e3c3d50c7c986df74c645c0ac54639741c90a557 |
        | UCHIJAA | micdoodlecore         |                          | minecraft.jar                                  | None                                     |
        | UCHIJAA | opencomputers|core    | 1.7.2.67                 | minecraft.jar                                  | None                                     |
        | UCHIJAA | dsurroundcore         |                          | minecraft.jar                                  | None                                     |
        | UCHIJAA | ic2                   | 2.8.100-ex112            | Industrial-Craft-2-Mod-Experimental-1.12.2.jar | de041f9f6187debbc77034a344134053277aa3b0 |
        | UCHIJAA | advanced_solar_panels | 4.2.0                    | Advanced-Solar-Panels-Mod-1.12.2.jar           | None                                     |
        | UCHIJAA | ageofweapons          | 0.13.2_pre1              | Age-of-Weapons-Mod-1.12.2.jar                  | None                                     |
        | UCHIJAA | baubles               | 1.5.2                    | Baubles-Mod-1.12.2.jar                         | None                                     |
        | UCHIJAA | bibliocraft           | 2.4.5                    | BiblioCraft-Mod-1.12.2.jar                     | None                                     |
        | UCHIJAA | biomesoplenty         | 7.0.1.2419               | BiomesOPlenty-1.12.2-7.0.1.2419-universal.jar  | None                                     |
        | UCHIJAA | birdsnests            | 2.1.0                    | BirdsNests1.12.2-2.1.0.jar                     | None                                     |
        | UCHIJAA | buildcraftlib         | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJAA | buildcraftcore        | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJAA | buildcraftbuilders    | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJAA | buildcraftenergy      | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJAA | buildcraftfactory     | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJAA | buildcraftrobotics    | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJAA | buildcraftsilicon     | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJAA | buildcrafttransport   | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJAA | cd4017be_lib          | 6.2.4                    | CD4017BE-Library-1.12.2.jar                    | None                                     |
        | UCHIJAA | gottschcore           | 1.2.0                    | GottschCore-1.12.2.jar                         | None                                     |
        | UCHIJAA | dungeons2             | 1.3.2                    | Dungeons-2-Mod-1.12.2.jar                      | None                                     |
        | UCHIJAA | dynamictrees          | 1.12.2-0.8.2             | DynamicTrees-1.12.2-0.8.2.jar                  | None                                     |
        | UCHIJAA | wizardry              | 0.9.5                    | Escapees-Wizardry-Mod-1.12.2.jar               | None                                     |
        | UCHIJAA | exoticbirds           | 1.0                      | Exotic+Birds+1.12.2-2.2.1.jar                  | None                                     |
        | UCHIJAA | familiarfauna         | 1.0.11                   | FamiliarFauna-1.12.2-1.0.11.jar                | None                                     |
        | UCHIJAA | jei                   | 4.12.0.216               | jei_1.12.2-4.12.0.216.jar                      | None                                     |
        | UCHIJAA | toughasnails          | 3.1.0.139                | ToughAsNails-1.12.2-3.1.0.139-universal.jar    | None                                     |
        | UCHIJAA | forestry              | 5.8.0.311                | Forestry-Mod-1.12.2.jar                        | None                                     |
        | UCHIJAA | forgelin              | 1.8.2                    | Forgelin-1.8.2.jar                             | None                                     |
        | UCHIJAA | galacticraftcore      | 4.0.1.181                | Galacticraft-Mod-1.12.2.jar                    | None                                     |
        | UCHIJAA | galacticraftplanets   | 4.0.1.181                | Galacticraft-Planets-Mod-1.12.2.jar            | None                                     |
        | UCHIJAA | harvestcraft          | 1.12.2w                  | HarvestCraft-Mod-1.12.2.jar                    | None                                     |
        | UCHIJAA | waila                 | 1.8.26                   | Hwyla-1.8.26-B41_1.12.2.jar                    | None                                     |
        | UCHIJAA | ichunutil             | 7.1.4                    | iChun-Util-Mod-1.12.2.jar                      | None                                     |
        | UCHIJAA | inventorytweaks       | 1.63+release.109.220f184 | Inventory-Tweaks-Mod-1.12.2.jar                | 55d2cd4f5f0961410bf7b91ef6c6bf00a766dcbe |
        | UCHIJAA | ironchest             | 1.12.2-7.0.46.831        | Iron-Chests-Mod-1.12.2.jar                     | None                                     |
        | UCHIJAA | librarianlib          | 4.12                     | LibrarianLib-1.12.2.jar                        | None                                     |
        | UCHIJAA | morph                 | 7.1.0                    | Morphing-Mod-1.12.2.jar                        | None                                     |
        | UCHIJAA | cfm                   | 5.13.0                   | MrCrayfishs-Furniture-Mod-1.12.2.jar           | None                                     |
        | UCHIJAA | opencomputers         | 1.7.2.67                 | OpenComputers-MC1.12.2-1.7.2.67.jar            | None                                     |
        | UCHIJAA | redstoneflux          | 2.1.0                    | RedstoneFlux-1.12.2(Latest).jar                | 8a6abf2cb9e141b866580d369ba6548732eff25f |
        | UCHIJAA | roguelike             | 1.7.2                    | Roguelike-Dungeons-Mod-1.12.2.jar              | None                                     |
        | UCHIJAA | securitycraft         | v1.8.9                   | SecurityCraft-Mod-1.12.2.jar                   | None                                     |
        | UCHIJAA | simplecorn            | 2.4.1                    | SimpleCorn1.12-1.12-2.4.1.jar                  | None                                     |
        | UCHIJAA | thaumcraft            | 6.1.BETA26               | Thaumcraft-1.12.2-6.1.BETA26.jar               | None                                     |
        | UCHIJAA | bspkrscore            | at_0.9                   | TreeCapitator-Mod-1.12.jar                     | None                                     |
        | UCHIJAA | treecapitator         | at_0.9                   | TreeCapitator-Mod-1.12.jar                     | None                                     |
        | UCHIJAA | dsurround             | 3.4.10.5                 | DynamicSurroundings-1.12.2-3.4.10.5.jar        | 7a2128d395ad96ceb9d9030fbd41d035b435753a |
        | UCHIJAA | librarianliblate      | 4.12                     | LibrarianLib-1.12.2.jar                        | None                                     |

        Loaded coremods (and transformers): 
    MicdoodlePlugin (MicdoodleCore-1.12.2.jar)
      micdoodle8.mods.miccore.MicdoodleTransformer
    Wizardry Plugin (Escapees-Wizardry-Mod-1.12.2.jar)
      com.teamwizardry.wizardry.asm.WizardryTransformer
    Inventory Tweaks Coremod (Inventory-Tweaks-Mod-1.12.2.jar)
      invtweaks.forge.asm.ContainerTransformer
    TransformerLoader (OpenComputers-MC1.12.2-1.7.2.67.jar)
      li.cil.oc.common.asm.ClassTransformer
    LibrarianLib Plugin (LibrarianLib-1.12.2.jar)
      com.teamwizardry.librarianlib.asm.LibLibTransformer
    DynamicSurroundingsCore (DynamicSurroundings-core-1.12.2-3.4.10.5.jar)
      org.blockartistry.DynSurround.asm.Transformer
    ForgelinPlugin (Forgelin-1.8.2.jar)
      
        Profiler Position: N/A (disabled)
        Player Count: 0 / 15; []
        Is Modded: Definitely; Server brand changed to 'fml,forge'
        Type: Dedicated Server (map_server.txt)

    I AM updating all of my mods wherever I can find them (I am trying CurseForge first, if it is only on 9Minecraft, I will not update it, for I got the mods only a few days ago)

     

    -----EDIT: UPDATED ALL MODS (I USED THE StopModReposts SITE BLOCKER)

  10. CRASH! 

     

    Crash Report:

    Spoiler

    ---- Minecraft Crash Report ----

    WARNING: coremods are present:
      MicdoodlePlugin (MicdoodleCore-1.12.2.jar)
      Wizardry Plugin (Escapees-Wizardry-Mod-1.12.2.jar)
      Inventory Tweaks Coremod (Inventory-Tweaks-Mod-1.12.2.jar)
      TransformerLoader (OpenComputers-MC1.12.2-1.7.2.67.jar)
      LibrarianLib Plugin (LibrarianLib-1.12.2.jar)
      DynamicSurroundingsCore (DynamicSurroundings-core-1.12.2-3.4.10.5.jar)
      ForgelinPlugin (Forgelin-1.8.2.jar)
    Contact their authors BEFORE contacting forge

    // Shall we play a game?

    Time: 12/17/18 6:51 AM
    Description: Exception in server tick loop

    net.minecraftforge.fml.common.LoaderExceptionModCrash: Caught exception from Thaumcraft (thaumcraft)
    Caused by: java.lang.IllegalAccessError: tried to access class net.minecraft.potion.PotionHelper$MixPredicate from class thaumcraft.common.lib.crafting.ThaumcraftCraftingManager
        at thaumcraft.common.lib.crafting.ThaumcraftCraftingManager.getPotionReagentsRecursive(ThaumcraftCraftingManager.java:337)
        at thaumcraft.common.config.ConfigAspects.getPotionAspects(ConfigAspects.java:684)
        at thaumcraft.common.config.ConfigAspects.registerItemAspects(ConfigAspects.java:521)
        at thaumcraft.common.config.ConfigAspects.postInit(ConfigAspects.java:34)
        at thaumcraft.proxies.CommonProxy.postInit(CommonProxy.java:82)
        at thaumcraft.Thaumcraft.postInit(Thaumcraft.java:54)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:624)
        at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)
        at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)
        at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)
        at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)
        at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)
        at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)
        at com.google.common.eventbus.EventBus.post(EventBus.java:217)
        at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:218)
        at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:196)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)
        at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)
        at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)
        at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)
        at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)
        at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)
        at com.google.common.eventbus.EventBus.post(EventBus.java:217)
        at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:135)
        at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:749)
        at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108)
        at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338)
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:219)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486)
        at java.lang.Thread.run(Unknown Source)


    A detailed walkthrough of the error, its code path and all known details is as follows:
    ---------------------------------------------------------------------------------------

    -- System Details --
    Details:
        Minecraft Version: 1.12.2
        Operating System: Windows 7 (amd64) version 6.1
        Java Version: 1.8.0_161, Oracle Corporation
        Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
        Memory: 482284712 bytes (459 MB) / 960495616 bytes (916 MB) up to 960495616 bytes (916 MB)
        JVM Flags: 0 total; 
        IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
        FML: MCP 9.42 Powered by Forge 14.23.5.2768 53 mods loaded, 53 mods active
        States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored

        | State  | ID                    | Version                  | Source                                         | Signature                                |
        |:------ |:--------------------- |:------------------------ |:---------------------------------------------- |:---------------------------------------- |
        | UCHIJ  | minecraft             | 1.12.2                   | minecraft.jar                                  | None                                     |
        | UCHIJ  | mcp                   | 9.42                     | minecraft.jar                                  | None                                     |
        | UCHIJ  | FML                   | 8.0.99.99                | forge-1.12.2-14.23.5.2768-universal.jar        | e3c3d50c7c986df74c645c0ac54639741c90a557 |
        | UCHIJ  | forge                 | 14.23.5.2768             | forge-1.12.2-14.23.5.2768-universal.jar        | e3c3d50c7c986df74c645c0ac54639741c90a557 |
        | UCHIJ  | micdoodlecore         |                          | minecraft.jar                                  | None                                     |
        | UCHIJ  | opencomputers|core    | 1.7.2.67                 | minecraft.jar                                  | None                                     |
        | UCHIJ  | dsurroundcore         |                          | minecraft.jar                                  | None                                     |
        | UCHIJ  | ic2                   | 2.8.100-ex112            | Industrial-Craft-2-Mod-Experimental-1.12.2.jar | de041f9f6187debbc77034a344134053277aa3b0 |
        | UCHIJ  | advanced_solar_panels | 4.2.0                    | Advanced-Solar-Panels-Mod-1.12.2.jar           | None                                     |
        | UCHIJ  | ageofweapons          | 0.13.2_pre1              | Age-of-Weapons-Mod-1.12.2.jar                  | None                                     |
        | UCHIJ  | baubles               | 1.5.2                    | Baubles-Mod-1.12.2.jar                         | None                                     |
        | UCHIJ  | bibliocraft           | 2.4.5                    | BiblioCraft-Mod-1.12.2.jar                     | None                                     |
        | UCHIJ  | biomesoplenty         | 7.0.1.2419               | BiomesOPlenty-1.12.2-7.0.1.2419-universal.jar  | None                                     |
        | UCHIJ  | birdsnests            | 2.1.0                    | BirdsNests1.12.2-2.1.0.jar                     | None                                     |
        | UCHIJ  | buildcraftlib         | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | buildcraftcore        | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | buildcraftbuilders    | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | buildcraftenergy      | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | buildcraftfactory     | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | buildcraftrobotics    | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | buildcraftsilicon     | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | buildcrafttransport   | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | cd4017be_lib          | 6.2.4                    | CD4017BE-Library-1.12.2.jar                    | None                                     |
        | UCHIJ  | gottschcore           | 1.2.0                    | GottschCore-1.12.2.jar                         | None                                     |
        | UCHIJ  | dungeons2             | 1.3.2                    | Dungeons-2-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | dynamictrees          | 1.12.2-0.8.2             | DynamicTrees-1.12.2-0.8.2.jar                  | None                                     |
        | UCHIJ  | wizardry              | 0.9.5                    | Escapees-Wizardry-Mod-1.12.2.jar               | None                                     |
        | UCHIJ  | exoticbirds           | 1.0                      | Exotic+Birds+1.12.2-2.2.1.jar                  | None                                     |
        | UCHIJ  | familiarfauna         | 1.0.11                   | FamiliarFauna-1.12.2-1.0.11.jar                | None                                     |
        | UCHIJ  | jei                   | 4.12.0.216               | jei_1.12.2-4.12.0.216.jar                      | None                                     |
        | UCHIJ  | toughasnails          | 3.1.0.139                | ToughAsNails-1.12.2-3.1.0.139-universal.jar    | None                                     |
        | UCHIJ  | forestry              | 5.8.0.311                | Forestry-Mod-1.12.2.jar                        | None                                     |
        | UCHIJ  | forgelin              | 1.8.2                    | Forgelin-1.8.2.jar                             | None                                     |
        | UCHIJ  | galacticraftcore      | 4.0.1.181                | Galacticraft-Mod-1.12.2.jar                    | None                                     |
        | UCHIJ  | galacticraftplanets   | 4.0.1.181                | Galacticraft-Planets-Mod-1.12.2.jar            | None                                     |
        | UCHIJ  | harvestcraft          | 1.12.2w                  | HarvestCraft-Mod-1.12.2.jar                    | None                                     |
        | UCHIJ  | waila                 | 1.8.26                   | Hwyla-1.8.26-B41_1.12.2.jar                    | None                                     |
        | UCHIJ  | ichunutil             | 7.1.4                    | iChun-Util-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | inventorytweaks       | 1.63+release.109.220f184 | Inventory-Tweaks-Mod-1.12.2.jar                | 55d2cd4f5f0961410bf7b91ef6c6bf00a766dcbe |
        | UCHIJ  | ironchest             | 1.12.2-7.0.46.831        | Iron-Chests-Mod-1.12.2.jar                     | None                                     |
        | UCHIJ  | librarianlib          | 4.12                     | LibrarianLib-1.12.2.jar                        | None                                     |
        | UCHIJ  | morph                 | 7.1.0                    | Morphing-Mod-1.12.2.jar                        | None                                     |
        | UCHIJ  | cfm                   | 5.13.0                   | MrCrayfishs-Furniture-Mod-1.12.2.jar           | None                                     |
        | UCHIJ  | opencomputers         | 1.7.2.67                 | OpenComputers-MC1.12.2-1.7.2.67.jar            | None                                     |
        | UCHIJ  | redstoneflux          | 2.1.0                    | RedstoneFlux-1.12.2(Latest).jar                | 8a6abf2cb9e141b866580d369ba6548732eff25f |
        | UCHIJ  | roguelike             | 1.7.2                    | Roguelike-Dungeons-Mod-1.12.2.jar              | None                                     |
        | UCHIJ  | securitycraft         | v1.8.9                   | SecurityCraft-Mod-1.12.2.jar                   | None                                     |
        | UCHIJ  | simplecorn            | 2.4.1                    | SimpleCorn1.12-1.12-2.4.1.jar                  | None                                     |
        | UCHIEE | thaumcraft            | 6.1.BETA24               | Thaumcraft-Mod-1.12.2.jar                      | None                                     |
        | UCHI   | bspkrscore            | at_0.9                   | TreeCapitator-Mod-1.12.jar                     | None                                     |
        | UCHI   | treecapitator         | at_0.9                   | TreeCapitator-Mod-1.12.jar                     | None                                     |
        | UCHI   | dsurround             | 3.4.10.5                 | DynamicSurroundings-1.12.2-3.4.10.5.jar        | 7a2128d395ad96ceb9d9030fbd41d035b435753a |
        | UCHI   | librarianliblate      | 4.12                     | LibrarianLib-1.12.2.jar                        | None                                     |

        Loaded coremods (and transformers): 
    MicdoodlePlugin (MicdoodleCore-1.12.2.jar)
      micdoodle8.mods.miccore.MicdoodleTransformer
    Wizardry Plugin (Escapees-Wizardry-Mod-1.12.2.jar)
      com.teamwizardry.wizardry.asm.WizardryTransformer
    Inventory Tweaks Coremod (Inventory-Tweaks-Mod-1.12.2.jar)
      invtweaks.forge.asm.ContainerTransformer
    TransformerLoader (OpenComputers-MC1.12.2-1.7.2.67.jar)
      li.cil.oc.common.asm.ClassTransformer
    LibrarianLib Plugin (LibrarianLib-1.12.2.jar)
      com.teamwizardry.librarianlib.asm.LibLibTransformer
    DynamicSurroundingsCore (DynamicSurroundings-core-1.12.2-3.4.10.5.jar)
      org.blockartistry.DynSurround.asm.Transformer
    ForgelinPlugin (Forgelin-1.8.2.jar)
      
        Profiler Position: N/A (disabled)
        Is Modded: Definitely; Server brand changed to 'fml,forge'
        Type: Dedicated Server (map_server.txt)

    Log:

    Spoiler

    [06:44:43] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
    [06:44:43] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
    [06:44:43] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLServerTweaker
    [06:44:43] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2768 for Minecraft 1.12.2 loading
    [06:44:43] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_161, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre1.8.0_161
    [06:44:43] [main/INFO] [FML]: Searching C:\MS Minecraft Server\.\mods for mods
    [06:44:43] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Escapees-Wizardry-Mod-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [06:44:43] [main/WARN] [FML]: The coremod com.teamwizardry.wizardry.asm.WizardryCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [06:44:43] [main/WARN] [FML]: The coremod Wizardry Plugin (com.teamwizardry.wizardry.asm.WizardryCorePlugin) is not signed!
    [06:44:43] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Forgelin-1.8.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [06:44:43] [main/WARN] [FML]: The coremod net.shadowfacts.forgelin.preloader.ForgelinPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [06:44:43] [main/WARN] [FML]: The coremod ForgelinPlugin (net.shadowfacts.forgelin.preloader.ForgelinPlugin) is not signed!
    [06:44:43] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Inventory-Tweaks-Mod-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [06:44:43] [main/WARN] [FML]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [06:44:43] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in LibrarianLib-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [06:44:43] [main/WARN] [FML]: The coremod com.teamwizardry.librarianlib.asm.LibLibCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [06:44:43] [main/WARN] [FML]: The coremod LibrarianLib Plugin (com.teamwizardry.librarianlib.asm.LibLibCorePlugin) is not signed!
    [06:44:43] [main/WARN] [FML]: The coremod micdoodle8.mods.miccore.MicdoodlePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [06:44:43] [main/WARN] [FML]: The coremod MicdoodlePlugin (micdoodle8.mods.miccore.MicdoodlePlugin) is not signed!
    [06:44:43] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in OpenComputers-MC1.12.2-1.7.2.67.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [06:44:43] [main/WARN] [FML]: The coremod li.cil.oc.common.launch.TransformerLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [06:44:43] [main/WARN] [FML]: The coremod TransformerLoader (li.cil.oc.common.launch.TransformerLoader) is not signed!
    [06:44:43] [main/INFO] [FML]: Loading tweaker optifine.OptiFineForgeTweaker from OptiFine_1.12.2_HD_U_E2.jar
    [06:44:43] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
    [06:44:43] [main/INFO] [LaunchWrapper]: Loading tweak class name optifine.OptiFineForgeTweaker
    [06:44:43] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
    [06:44:43] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
    [06:44:43] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
    [06:44:43] [main/INFO] [LaunchWrapper]: Calling tweak class optifine.OptiFineForgeTweaker
    [06:44:43] [main/INFO] [STDOUT]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: acceptOptions
    [06:44:43] [main/INFO] [STDOUT]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: Forge server detected, skipping class transformer
    [06:44:43] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [06:44:46] [main/INFO] [FML]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557
    [06:44:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [06:44:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [06:44:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [06:44:46] [main/INFO] [STDOUT]: [micdoodle8.mods.miccore.MicdoodlePlugin:getASMTransformerClass:99]: Successfully Registered Transformer
    [06:44:46] [main/INFO] [FML]: Failed to find MicdoodleCore file in mods folder, skipping GC version check.
    [06:44:46] [main/INFO] [STDOUT]: [micdoodle8.mods.miccore.MicdoodlePlugin:injectData:292]: [Micdoodle8Core]: Patching game...
    [06:44:46] [main/INFO] [STDOUT]: [micdoodle8.mods.miccore.MicdoodlePlugin:injectData:292]: [Micdoodle8Core]: Patching game...
    [06:44:46] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
    [06:44:47] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [06:44:47] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [06:44:47] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [06:44:47] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [06:44:47] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [06:44:48] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
    [06:44:48] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
    [06:44:48] [main/INFO] [STDOUT]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: getLaunchArguments
    [06:44:48] [main/INFO] [dsurroundcore]: Transmorgrifying [net.minecraft.world.WorldServer]: resetRainAndThunder
    [06:44:48] [main/INFO] [dsurroundcore]: func_73051_P()V: Found!
    [06:44:48] [main/INFO] [dsurroundcore]: Transmorgrified [net.minecraft.world.WorldServer]: resetRainAndThunder
    [06:44:49] [main/INFO] [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:28]: [wizardry ASM] Successfully patched -> 'func_70071_h_', 'onUpdate' with '()V'
    [06:44:49] [main/INFO] [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:28]: [wizardry ASM] Successfully patched -> 'func_191986_a', 'travel' with '(FFF)V'
    [06:44:49] [main/INFO] [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:28]: [wizardry ASM] Successfully patched -> 'func_70091_d', 'move' with '(Lnet/minecraft/entity/MoverType;DDD)V'
    [06:44:49] [main/INFO] [LibrarianLib ASM]: Transforming Entity
    [06:44:49] [main/INFO] [LibrarianLib ASM]: Applying Transformation to method (Names [onUpdate, func_70071_h_] Descriptor ()V)
    [06:44:49] [main/INFO] [LibrarianLib ASM]: Attempting to insert: Update hook
    [06:44:49] [main/INFO] [LibrarianLib ASM]: Patch result: Success
    [06:44:49] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer}
    [06:44:51] [main/INFO] [OpenComputers]: Successfully patched net/minecraft/entity/EntityLiving.recreateLeash.
    [06:44:52] [main/INFO] [dsurroundcore]: Transmorgrifying [net.minecraft.entity.projectile.EntityArrow]: No Particles on Arrows
    [06:44:52] [main/INFO] [dsurroundcore]: func_70071_h_()V: Found!
    [06:44:52] [main/INFO] [dsurroundcore]: Transmorgrified [net.minecraft.entity.projectile.EntityArrow]: No Particles on Arrows
    [06:44:56] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Starting minecraft server version 1.12.2
    [06:44:56] [Server console handler/ERROR] [net.minecraft.server.dedicated.DedicatedServer]: Exception handling console input
    java.io.IOException: The handle is invalid
        at java.io.FileInputStream.readBytes(Native Method) ~[?:1.8.0_161]
        at java.io.FileInputStream.read(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedInputStream.read1(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedInputStream.read(Unknown Source) ~[?:1.8.0_161]
        at sun.nio.cs.StreamDecoder.readBytes(Unknown Source) ~[?:1.8.0_161]
        at sun.nio.cs.StreamDecoder.implRead(Unknown Source) ~[?:1.8.0_161]
        at sun.nio.cs.StreamDecoder.read(Unknown Source) ~[?:1.8.0_161]
        at java.io.InputStreamReader.read(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedReader.fill(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedReader.readLine(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedReader.readLine(Unknown Source) ~[?:1.8.0_161]
        at net.minecraft.server.dedicated.DedicatedServer$2.run(DedicatedServer.java:105) [nz$2.class:?]
    [06:44:56] [Server thread/INFO] [FML]: MinecraftForge v14.23.5.2768 Initialized
    [06:44:56] [Server thread/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
    [06:44:56] [Server thread/INFO] [FML]: Replaced 1036 ore ingredients
    [06:44:57] [Server thread/INFO] [FML]: Searching C:\MS Minecraft Server\.\mods for mods
    [06:45:00] [Server thread/WARN] [FML]: Mod cd4017be_lib is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 6.2.4
    [06:45:03] [Server thread/WARN] [FML]: Mod ironchest is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.12.2-7.0.46.831
    [06:45:06] [Server thread/INFO] [FML]: Disabling mod presets it is client side only.
    [06:45:06] [Server thread/INFO] [FML]: Forge Mod Loader has identified 53 mods to load
    [06:45:07] [Server thread/WARN] [FML]: Missing English translation for FML: assets/fml/lang/en_us.lang
    [06:45:07] [Server thread/WARN] [FML]: Missing English translation for buildcraftbuilders: assets/buildcraftbuilders/lang/en_us.lang
    [06:45:07] [Server thread/WARN] [FML]: Missing English translation for buildcraftcore: assets/buildcraftcore/lang/en_us.lang
    [06:45:07] [Server thread/WARN] [FML]: Missing English translation for buildcraftenergy: assets/buildcraftenergy/lang/en_us.lang
    [06:45:07] [Server thread/WARN] [FML]: Missing English translation for buildcraftfactory: assets/buildcraftfactory/lang/en_us.lang
    [06:45:07] [Server thread/WARN] [FML]: Missing English translation for buildcraftlib: assets/buildcraftlib/lang/en_us.lang
    [06:45:07] [Server thread/WARN] [FML]: Missing English translation for buildcraftrobotics: assets/buildcraftrobotics/lang/en_us.lang
    [06:45:07] [Server thread/WARN] [FML]: Missing English translation for buildcraftsilicon: assets/buildcraftsilicon/lang/en_us.lang
    [06:45:07] [Server thread/WARN] [FML]: Missing English translation for buildcrafttransport: assets/buildcrafttransport/lang/en_us.lang
    [06:45:08] [Server thread/WARN] [FML]: Missing English translation for forgelin: assets/forgelin/lang/en_us.lang
    [06:45:08] [Server thread/WARN] [FML]: Missing English translation for gottschcore: assets/gottschcore/lang/en_us.lang
    [06:45:08] [Server thread/WARN] [FML]: Missing English translation for ic2: assets/ic2/lang/en_us.lang
    [06:45:08] [Server thread/WARN] [FML]: Missing English translation for librarianliblate: assets/librarianliblate/lang/en_us.lang
    [06:45:08] [Server thread/WARN] [FML]: Missing English translation for redstoneflux: assets/redstoneflux/lang/en_us.lang
    [06:45:08] [Server thread/WARN] [FML]: Missing English translation for roguelike: assets/roguelike/lang/en_us.lang
    [06:45:12] [Server thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, micdoodlecore, opencomputers|core, dsurroundcore, advanced_solar_panels, ageofweapons, baubles, bibliocraft, biomesoplenty, birdsnests, buildcraftbuilders, buildcraftcore, buildcraftenergy, buildcraftfactory, buildcraftlib, buildcraftrobotics, buildcraftsilicon, buildcrafttransport, cd4017be_lib, dungeons2, dynamictrees, wizardry, exoticbirds, familiarfauna, forestry, forgelin, galacticraftcore, galacticraftplanets, gottschcore, harvestcraft, waila, ichunutil, ic2, inventorytweaks, ironchest, jei, librarianliblate, librarianlib, morph, cfm, opencomputers, redstoneflux, roguelike, securitycraft, simplecorn, thaumcraft, toughasnails, bspkrscore, treecapitator, dsurround] at CLIENT
    [06:45:12] [Server thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, micdoodlecore, opencomputers|core, dsurroundcore, advanced_solar_panels, ageofweapons, baubles, bibliocraft, biomesoplenty, birdsnests, buildcraftbuilders, buildcraftcore, buildcraftenergy, buildcraftfactory, buildcraftlib, buildcraftrobotics, buildcraftsilicon, buildcrafttransport, cd4017be_lib, dungeons2, dynamictrees, wizardry, exoticbirds, familiarfauna, forestry, forgelin, galacticraftcore, galacticraftplanets, gottschcore, harvestcraft, waila, ichunutil, ic2, inventorytweaks, ironchest, jei, librarianliblate, librarianlib, morph, cfm, opencomputers, redstoneflux, roguelike, securitycraft, simplecorn, thaumcraft, toughasnails, bspkrscore, treecapitator, dsurround] at SERVER
    [06:45:32] [Server thread/INFO] [FML]: Processing ObjectHolder annotations
    [06:45:32] [Server thread/INFO] [FML]: Found 1262 ObjectHolder annotations
    [06:45:32] [Server thread/INFO] [FML]: Identifying ItemStackHolder annotations
    [06:45:32] [Server thread/INFO] [FML]: Found 2 ItemStackHolder annotations
    [06:45:32] [Server thread/INFO] [FML]: Configured a dormant chunk cache size of 0
    [06:45:33] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
    [06:45:33] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: UP_TO_DATE Target: null
    [06:45:33] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftcore] Starting version check at https://mod-buildcraft.com/version/versions.json
    [06:45:42] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftcore] Found status: OUTDATED Target: 7.99.20
    [06:45:42] [Forge Version Check/INFO] [forge.VersionCheck]: [dsurround] Starting version check at https://raw.githubusercontent.com/OreCruncher/DynamicSurroundings/master/version.json
    [06:45:43] [Forge Version Check/INFO] [forge.VersionCheck]: [dsurround] Found status: OUTDATED Target: 3.5.1.1
    [06:45:43] [Forge Version Check/INFO] [forge.VersionCheck]: [dungeons2] Starting version check at https://raw.githubusercontent.com/gottsch/gottsch-minecraft-Dungeons2/master/Dungeons2-1.12.2/update.json
    [06:45:44] [Forge Version Check/INFO] [forge.VersionCheck]: [dungeons2] Found status: OUTDATED Target: 1.3.3
    [06:45:44] [Forge Version Check/INFO] [forge.VersionCheck]: [gottschcore] Starting version check at https://raw.githubusercontent.com/gottsch/gottsch-minecraft-GottschCore/master/GottschCore1.12.2/update.json
    [06:45:44] [Forge Version Check/INFO] [forge.VersionCheck]: [gottschcore] Found status: OUTDATED Target: 1.5.1
    [06:45:44] [Forge Version Check/INFO] [forge.VersionCheck]: [securitycraft] Starting version check at https://www.github.com/Geforce132/SecurityCraft/raw/master/Updates/Forge.json
    [06:45:44] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `molecular_transformer`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.
    [06:45:44] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `quantum_generator`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.
    [06:45:44] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `advanced_solar_panel`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.
    [06:45:44] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `hybrid_solar_panel`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.
    [06:45:44] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `ultimate_solar_panel`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.
    [06:45:44] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `quantum_solar_panel`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.
    [06:45:45] [Forge Version Check/INFO] [forge.VersionCheck]: [securitycraft] Found status: OUTDATED Target: v1.8.10
    [06:45:45] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftlib] Starting version check at https://mod-buildcraft.com/version/versions.json
    [06:45:45] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftlib] Found status: OUTDATED Target: 7.99.20
    [06:46:17] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 328 out of 328 recipes for shaped recipes
    [06:46:17] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 73 out of 73 recipes for shapeless recipes
    [06:46:18] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 41 out of 41 recipes for solid uu recipes
    [06:46:19] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 27 out of 27 recipes for furnace recipes
    [06:46:19] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 5 out of 5 recipes for blast furnace recipes
    [06:46:19] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 14 out of 14 recipes for block cutter recipes
    [06:46:19] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 50 out of 50 recipes for compressor recipes
    [06:46:19] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 12 out of 12 recipes for extractor recipes
    [06:46:19] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 74 out of 74 recipes for macerator recipes
    [06:46:19] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 5 out of 5 recipes for metal former cutting recipes
    [06:46:19] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 9 out of 9 recipes for metal former extruding recipes
    [06:46:19] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 14 out of 14 recipes for metal former rolling recipes
    [06:46:19] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 8 out of 8 recipes for ore washing recipes
    [06:46:19] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 26 out of 26 recipes for thermal centrifuge recipes
    [06:46:20] [Server thread/INFO] [advanced_solar_panels]: Loading ASP Config from C:\MS Minecraft Server\config\advanced_solar_panels.cfg
    [06:46:20] [Server thread/INFO] [advanced_solar_panels]: Loading MT Recipes from C:\MS Minecraft Server\config\advanced_solar_panels_MTRecipes.cfg
    [06:46:21] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ageofweaponstableofages`, expected `ageofweapons`. This could be a intended override, but in most cases indicates a broken mod.
    [06:46:21] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ageofweaponscrusher`, expected `ageofweapons`. This could be a intended override, but in most cases indicates a broken mod.
    [06:46:29] [Server thread/INFO] [BuildCraft]: 
    [06:46:29] [Server thread/INFO] [BuildCraft]: Starting BuildCraft 7.99.14
    [06:46:29] [Server thread/INFO] [BuildCraft]: Copyright (c) the BuildCraft team, 2011-2017
    [06:46:29] [Server thread/INFO] [BuildCraft]: https://www.mod-buildcraft.com
    [06:46:29] [Server thread/INFO] [BuildCraft]: Detailed Build Information:
    [06:46:29] [Server thread/INFO] [BuildCraft]:   Branch 7.99.14
    [06:46:29] [Server thread/INFO] [BuildCraft]:   Commit 3f79ce577ba7a3a75ebe3d6733f14841d8bd204a
    [06:46:29] [Server thread/INFO] [BuildCraft]:     Finalise build for 7.99.14. Fix gradle builder failing to handle """" chars properly. Update changelog.
    [06:46:29] [Server thread/INFO] [BuildCraft]:     committed by AlexIIL
    [06:46:29] [Server thread/INFO] [BuildCraft]: 
    [06:46:29] [Server thread/INFO] [BuildCraft]: Loaded Modules:
    [06:46:29] [Server thread/INFO] [BuildCraft]:   - lib
    [06:46:29] [Server thread/INFO] [BuildCraft]:   - core
    [06:46:29] [Server thread/INFO] [BuildCraft]:   - builders
    [06:46:29] [Server thread/INFO] [BuildCraft]:   - energy
    [06:46:29] [Server thread/INFO] [BuildCraft]:   - factory
    [06:46:29] [Server thread/INFO] [BuildCraft]:   - robotics
    [06:46:29] [Server thread/INFO] [BuildCraft]:   - silicon
    [06:46:29] [Server thread/INFO] [BuildCraft]:   - transport
    [06:46:29] [Server thread/INFO] [BuildCraft]: Missing Modules:
    [06:46:29] [Server thread/INFO] [BuildCraft]:   - compat
    [06:46:29] [Server thread/INFO] [BuildCraft]: 
    [06:46:34] [Server thread/INFO] [BuildCraft]: [debugger] Not a dev environment!
    [06:46:39] [Server thread/INFO] [RECIPE_SCRIPT]: skipped core.PRE_INIT
    [06:46:39] [Server thread/INFO] [CD4017BE_lib]: added Open Computers Energy-API with 1000.0 J / OC-unit
    [06:46:39] [Server thread/INFO] [CD4017BE_lib]: added Forge Energy-API with 100.0 J / Flux
    [06:46:39] [Server thread/INFO] [CD4017BE_lib]: added IC2 Energy-API with 400.0 J / EU
    [06:46:39] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `species_tile_entity`, expected `dynamictrees`. This could be a intended override, but in most cases indicates a broken mod.
    [06:46:39] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bonsai_tile_entity`, expected `dynamictrees`. This could be a intended override, but in most cases indicates a broken mod.
    [06:46:42] [Server thread/INFO] [wizardry]: o͡͡͡╮༼ ಠДಠ à¼½â•­oÍ¡Í¡Í¡â”?☆゚.*・。゚ IT'S LEVI-OH-SA, NOT LEVIOSAA
    [06:46:42] [Server thread/INFO] [wizardry]:     > Found manifest file. Reading...
    [06:46:42] [Server thread/INFO] [wizardry]:     >  |
    [06:46:42] [Server thread/INFO] [wizardry]:     >  |_ Category found: fire_recipes
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ sky_dust: -1314925763
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ devil_dust_secondary: -613602679
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ devil_dust: 152898967
    [06:46:42] [Server thread/INFO] [wizardry]:     >  |
    [06:46:42] [Server thread/INFO] [wizardry]:     >  |_ Category found: fluid_recipes
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ mana_orb: 952469434
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ wisdom_stairs: -1459509650
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ wisdom_log: 1357745167
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ temp_real_halo: 2097916486
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ nacre: 1121026437
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ wisdom_stick: -696918271
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ wisdom_plank: -1583206240
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ mana_battery: 1665606172
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ codex: -273995665
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ wisdom_slab: -2015098351
    [06:46:42] [Server thread/INFO] [wizardry]:     >  |
    [06:46:42] [Server thread/INFO] [wizardry]:     >  |_ Category found: modules
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ modifier_increase_speed: -1579963150
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_place: -421289969
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_burn: 35504744
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_zoom: -897004035
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_break: 128535786
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ shape_projectile: -1235329677
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_time_slow: -162385748
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ shape_self: 677607573
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_vanish: -758613488
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_low_gravity: -702227048
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ shape_beam: -90790292
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_lightning: -392159778
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_leap: -753850289
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ modifier_increase_aoe: -1004102868
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ shape_cone: -1219085543
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_frost: 1524211684
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_gravity_well: 1171369937
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_phase: 1251761030
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_leech: 2119672769
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_disarm: 1105516532
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_crasher_fall: 495775168
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_telekinesis: 1930771192
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_substitution: -535841596
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ modifier_increase_potency: -431060611
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_anti_gravity_well: -2142232894
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_thrive: -527807423
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ shape_touch: 472712715
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ shape_zone: 1757620271
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_backup: 1606330036
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ effect_light: -947078199
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ modifier_extend_range: 1071718841
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ event_collide_block: -437822181
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ modifier_extend_time: 899625958
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ event_collide_entity: 223649892
    [06:46:42] [Server thread/INFO] [wizardry]:     >  | |_ modifier_exception: 542988723
    [06:46:42] [Server thread/INFO] [wizardry]:     >  |____________________________________/
    [06:46:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `temperature_spread`, expected `toughasnails`. This could be a intended override, but in most cases indicates a broken mod.
    [06:46:58] [Server thread/INFO] [forestry]: Module TechReborn Module failed to load: TechReborn not found
    [06:46:58] [Server thread/INFO] [forestry]: Module Roots Module failed to load: Roots not found
    [06:46:58] [Server thread/INFO] [forestry]: Module rustic Module failed to load: Rustic not found
    [06:46:58] [Server thread/INFO] [forestry]: Module Natura Module failed to load: Natura not found
    [06:46:58] [Server thread/INFO] [forestry]: Module BuildCraft 6 Statements Module failed to load: Compatible BuildCraftAPI|statements version not found
    [06:46:58] [Server thread/INFO] [forestry]: Module Extra Utilities Module failed to load: Extra Utilities not found
    [06:46:58] [Server thread/INFO] [forestry]: Module BuildCraft 6 Fuels Module failed to load: Compatible BuildCraftAPI|fuels version not found
    [06:46:58] [Server thread/INFO] [forestry]: Module ImmersiveEngineering Module failed to load: ImmersiveEngineering not found
    [06:46:58] [Server thread/INFO] [forestry]: Module BuildCraft 6 Recipes Module failed to load: Compatible BuildCraftAPI|recipes version not found
    [06:46:58] [Server thread/INFO] [forestry]: Module EnderIO Module failed to load: EnderIO not found
    [06:46:58] [Server thread/INFO] [forestry]: Module Actually Additions Module failed to load: Actually Additions not found
    [06:46:58] [Server thread/INFO] [forestry]: Module Better With Mods Module failed to load: Better With Mods not found
    [06:46:58] [Server thread/INFO] [forestry]: Module Mystical Agriculture Module failed to load: Mystical Agriculture not found
    [06:47:08] [Server thread/INFO] [Galacticraft]: Galacticraft oil is not default, issues may occur.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `apple`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `wheat`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `potato`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `carrot`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `beetroot`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `melon`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `beef`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_beef`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `chicken`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_chicken`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `porkchop`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_porkchop`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `rabbit`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_rabbit`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `mutton`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_mutton`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cod`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_cod`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `salmon`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_salmon`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `clownfish`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pufferfish`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `mushroom_stew`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bread`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cookie`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `baked_potato`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pumpkin_pie`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `rabbit_stew`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `beetroot_soup`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:35] [Morph Resource Thread/INFO] [Morph]: Loaded NBT modifiers for presumably 18 Minecraft mobs
    [06:47:41] [Server thread/INFO] [opencomputers]: Updating config from version '@VERSION@' to '@VERSION@'.
    [06:47:41] [Server thread/INFO] [opencomputers]: Updating setting 'opencomputers.switch.relayDelayUpgrade'. 
    [06:47:41] [Server thread/INFO] [opencomputers]: Updating setting 'opencomputers.nanomachines.potionWhitelist'. 
    [06:47:41] [Server thread/INFO] [opencomputers]: Updating setting 'opencomputers.power.cost.wirelessCostPerRange'. 
    [06:47:41] [Server thread/INFO] [opencomputers]: Updating setting 'opencomputers.misc.maxWirelessRange'. 
    [06:47:41] [Server thread/INFO] [opencomputers]: Updating setting 'opencomputers.misc.maxOpenPorts'. 
    [06:47:41] [Server thread/INFO] [opencomputers]: Updating setting 'opencomputers.computer.cpuComponentCount'. 
    [06:47:42] [Server thread/INFO] [opencomputers]: Initializing blocks and items.
    [06:47:44] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `adapter`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/INFO] [OpenComputers]: Injecting interface ic2.api.energy.tile.IEnergySink into li.cil.oc.common.tileentity.traits.power.IndustrialCraft2Experimental.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `assembler`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `cable`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `capacitor`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `carpetedcapacitor`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `case`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `charger`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `diskdrive`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `disassembler`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `keyboard`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `hologram`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `geolyzer`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `microcontroller`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `motionsensor`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `netsplitter`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `powerconverter`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `powerdistributor`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `print`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `printer`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `raid`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `redstone`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `relay`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `robot`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `screen`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `rack`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `transposer`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:46] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `waypoint`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [06:47:47] [Server thread/INFO] [OpenComputers]: Injecting interface ic2.api.item.IBoxable into li.cil.oc.common.item.Wrench.
    [06:47:47] [Server thread/INFO] [OpenComputers]: Injecting interface ic2.api.item.ISpecialElectricItem into li.cil.oc.common.item.traits.Chargeable.
    [06:47:49] [Server thread/INFO] [opencomputers]: Initializing additional OreDict entries.
    [06:47:49] [Server thread/INFO] [opencomputers]: Initializing OpenComputers API.
    [06:49:33] [Server thread/INFO] [opencomputers]: Found a compatible native library: 'OpenComputersMod-1.7.2.67-lua52-native.64.dll'.
    [06:49:33] [Server thread/INFO] [opencomputers]: Found a compatible native library: 'OpenComputersMod-1.7.2.67-lua53-native.64.dll'.
    [06:49:33] [Server thread/INFO] [opencomputers]: Done with pre init phase.
    [06:49:37] [Server thread/INFO] [Treecapitator]: Proceeding to load tree/mod configs from file.
    [06:49:52] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `crafting_plate`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:52] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `halo_infuser`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:52] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `jar`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:52] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `light`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:52] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `magicians_worktable`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:52] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `mana_battery`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:52] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `mana_magnet`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `mana_vacuum`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `pedestal`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `unicorn_trail`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bookcase`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `shelf`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `markerpole`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `clipboard`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bibliolight`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `furniturepaneler`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `potionshelf`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `toolrack`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `label`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `desk`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `table`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `seat`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `fancysign`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `fancyworkbench`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `framedchest`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `mapframe`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `case`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `clock`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `paintingframeborderless`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `paintingframefancy`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `paintingframeflat`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `paintingframemiddle`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `paintingframesimple`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `paintingpress`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `armorstand`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `typesettingtable`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `printingpress`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cookiejar`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `dinnerplate`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `discrack`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `swordpedestal`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bell`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `typewriter`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `eb_nest_entity`, expected `exoticbirds`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `eb_egg_sorter_entity`, expected `exoticbirds`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `eb_egg_incubator_entity`, expected `exoticbirds`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `eb_phoenix_egg_entity`, expected `exoticbirds`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.iron`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.gold`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.diamond`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.copper`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.silver`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.crystal`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.obsidian`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.dirtchest9000`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.iron`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.gold`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.diamond`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.copper`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.silver`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.crystal`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [06:49:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.obsidian`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:08] [Server thread/INFO] [FML]: Applying holder lookups
    [06:50:08] [Server thread/INFO] [FML]: Holder lookups applied
    [06:50:15] [Server thread/WARN] [forestry]: Missing block: driedDirt
    [06:50:15] [Server thread/WARN] [forestry]: Missing block: overgrownNetherrack
    [06:50:15] [Server thread/WARN] [forestry]: Missing block: cragRock
    [06:50:15] [Server thread/WARN] [forestry]: Missing block: ashStone
    [06:50:15] [Server thread/WARN] [forestry]: Missing block: bopGrass
    [06:50:15] [Server thread/WARN] [forestry]: Missing block: newBopGrass
    [06:50:15] [Server thread/WARN] [forestry]: Missing block: longGrass
    [06:50:15] [Server thread/WARN] [forestry]: Missing block: hardDirt
    [06:50:15] [Server thread/WARN] [forestry]: Missing block: hardSand
    [06:50:15] [Server thread/WARN] [forestry]: Missing block: originGrass
    [06:50:15] [Server thread/WARN] [forestry]: Missing block: ash
    [06:50:15] [Server thread/WARN] [forestry]: Missing block: newBopDirt
    [06:50:15] [Server thread/WARN] [forestry]: Missing block: petals
    [06:50:15] [Server thread/INFO] [FML]: Applying holder lookups
    [06:50:15] [Server thread/INFO] [FML]: Holder lookups applied
    [06:50:18] [Server thread/INFO] [dsurround]: Registering sounds
    [06:50:18] [Server thread/INFO] [dsurround]: 894 sound events in registry
    [06:50:18] [Server thread/INFO] [FML]: Applying holder lookups
    [06:50:18] [Server thread/INFO] [FML]: Holder lookups applied
    [06:50:18] [Server thread/INFO] [FML]: Applying holder lookups
    [06:50:18] [Server thread/INFO] [FML]: Holder lookups applied
    [06:50:18] [Server thread/INFO] [FML]: Injecting itemstacks
    [06:50:18] [Server thread/INFO] [FML]: Itemstack injection complete
    [06:50:18] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Loading properties
    [06:50:18] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Default game type: ADVENTURE
    [06:50:18] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Generating keypair
    [06:50:18] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Starting Minecraft server on *:25565
    [06:50:18] [Server thread/INFO] [net.minecraft.network.NetworkSystem]: Using default channel type
    [06:50:26] [Server thread/ERROR] [FML]: Parsing error loading recipe bibliocraft:markerpole
    com.google.gson.JsonSyntaxException: Invalid pattern: empty pattern not allowed
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$init$14(CraftingHelper.java:481) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:409) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:822) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:668) ~[CraftingHelper.class:?]
        at java.util.ArrayList.forEach(Unknown Source) [?:1.8.0_161]
        at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:620) [CraftingHelper.class:?]
        at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
        at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
        at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:219) [nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [06:50:26] [Server thread/ERROR] [FML]: Parsing error loading recipe bibliocraft:clipboard
    com.google.gson.JsonSyntaxException: Invalid pattern: empty pattern not allowed
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$init$14(CraftingHelper.java:481) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:409) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:822) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:668) ~[CraftingHelper.class:?]
        at java.util.ArrayList.forEach(Unknown Source) [?:1.8.0_161]
        at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:620) [CraftingHelper.class:?]
        at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
        at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
        at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:219) [nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [06:50:28] [Server thread/ERROR] [FML]: Parsing error loading recipe wizardry:syringe/fill_mana_syringe
    com.google.gson.JsonSyntaxException: Unknown item 'wizardry:mana_orb'
        at net.minecraftforge.common.crafting.CraftingHelper.getItemStackBasic(CraftingHelper.java:260) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$init$16(CraftingHelper.java:537) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:202) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$init$15(CraftingHelper.java:524) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:409) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:822) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:668) ~[CraftingHelper.class:?]
        at java.util.ArrayList.forEach(Unknown Source) [?:1.8.0_161]
        at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:620) [CraftingHelper.class:?]
        at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
        at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
        at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:219) [nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [06:50:32] [Server thread/INFO] [THAUMCRAFT]: Checking for mod & oredict compatibilities
    [06:50:36] [Server thread/INFO] [THAUMCRAFT]: Adding entities to MFR safari net blacklist.
    [06:50:37] [Server thread/INFO] [FML]: Applying holder lookups
    [06:50:37] [Server thread/INFO] [FML]: Holder lookups applied
    [06:50:41] [Server thread/INFO] [advanced_solar_panels]: Loading Molecular Transformer recipes from file
    [06:50:41] [Server thread/WARN] [advanced_solar_panels]: Skipping line 27 as the output (OreDict:dustChrome) cannot be resolved
    [06:50:41] [Server thread/WARN] [advanced_solar_panels]: Skipping line 28 as the output (OreDict:ingotChrome) cannot be resolved
    [06:50:41] [Server thread/WARN] [advanced_solar_panels]: Skipping line 29 as the output (OreDict:gemCertusQuartz) cannot be resolved
    [06:50:41] [Server thread/WARN] [advanced_solar_panels]: Skipping line 30 as the output (OreDict:ingotNickel) cannot be resolved
    [06:50:41] [Server thread/WARN] [advanced_solar_panels]: Skipping line 33 as the output (OreDict:ingotPlatinum) cannot be resolved
    [06:50:41] [Server thread/INFO] [advanced_solar_panels]: Load complete, successfully loaded 17 out of 22.
    [06:50:46] [Server thread/INFO] [CD4017BE_lib]: OpenComputers API found
    [06:50:46] [Server thread/INFO] [RECIPE_SCRIPT]: skipped core.INIT
    [06:50:48] [Server thread/INFO] [wizardry]: <<========================================================================>>
    [06:50:48] [Server thread/INFO] [wizardry]: > Starting fluid recipe loading.
    [06:50:48] [Server thread/INFO] [wizardry]: > Finished mana recipe loading.
    [06:50:48] [Server thread/INFO] [wizardry]: <<========================================================================>>
    [06:50:48] [Server thread/INFO] [wizardry]: <<========================================================================>>
    [06:50:48] [Server thread/INFO] [wizardry]: > Starting fire recipe loading.
    [06:50:48] [Server thread/INFO] [wizardry]: > Finished fire recipe loading.
    [06:50:48] [Server thread/INFO] [wizardry]: <<========================================================================>>
    [06:50:48] [Server thread/INFO] [wizardry]:  _______________________________________________________________________\\
    [06:50:48] [Server thread/INFO] [wizardry]:  | Starting module registration
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_frost
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:snowball
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -1
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -1
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 40.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module effect_frost registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_disarm
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:blaze_rod
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -1
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -65536
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module effect_disarm registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module shape_touch
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:beef
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module shape_touch registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module event_collide_entity
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:apple
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module event_collide_entity registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module modifier_increase_speed
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:dragon_breath
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |___ Found Modifiers. About to process them
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_speed.json: ADD -> speed, 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_speed.json: MULTIPLY -> mana, 1.1
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_speed.json: MULTIPLY -> burnout, 1.1
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |___ Modifiers Registered Successfully.
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module modifier_increase_speed registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_lightning
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:ice
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -36115
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -65312
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 70.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 4.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 4.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module effect_lightning registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_thrive
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:bone
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -16711681
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -16711681
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 3.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 3.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module effect_thrive registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module modifier_exception
    [06:50:48] [Server thread/ERROR] [wizardry]: | | |_ SOMETHING WENT WRONG! Item for module modifier_exception does not exist 'wizardry:syringe_blood'
    [06:50:48] [Server thread/ERROR] [wizardry]: | |___ Failed to register module modifier_exception
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module shape_self
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:diamond
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module shape_self registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_anti_gravity_well
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item wizardry:bomb
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item Meta:          1
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -16771585
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -16711711
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 0.5
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 0.5
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 3.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 3.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 50.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 64.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module effect_anti_gravity_well registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_leech
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:lead
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -16711681
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -16711839
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 4.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 30.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 4.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module effect_leech registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module shape_beam
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item wizardry:unicorn_horn
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 30.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module shape_beam registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module shape_projectile
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:nether_wart
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 20.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 60.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base speed values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module shape_projectile registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_time_slow
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:red_flower
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -7536640
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -23131
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 300.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 200.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 80.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 2.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 2.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 40.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module effect_time_slow registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_zoom
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item wizardry:fairy_wings
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -769330
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -12461580
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 32.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module effect_zoom registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_backup
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:rotten_flesh
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -13101312
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -7471104
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 300.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 300.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 30.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module effect_backup registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module modifier_increase_aoe
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:emerald
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |___ Found Modifiers. About to process them
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_aoe.json: ADD -> area, 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_aoe.json: MULTIPLY -> mana, 1.2
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_aoe.json: MULTIPLY -> burnout, 1.2
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |___ Modifiers Registered Successfully.
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module modifier_increase_aoe registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_phase
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:ender_pearl
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -8388608
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -65536
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 200.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 40.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base chargeup values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 30.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 0.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 4.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 0.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.5
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module effect_phase registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_leap
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:rabbit_foot
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -1
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -1
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 20.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 64.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module effect_leap registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_break
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:sand
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -5952982
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -22617
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 64.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 0.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 50.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.5
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module effect_break registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_substitution
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:ender_eye
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -65536
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -16711681
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 64.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module effect_substitution registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module shape_cone
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:gunpowder
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 40.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 32.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module shape_cone registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module modifier_increase_potency
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:prismarine_crystals
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |___ Found Modifiers. About to process them
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_potency.json: ADD -> potency, 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_potency.json: MULTIPLY -> mana, 1.1
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_potency.json: MULTIPLY -> burnout, 1.1
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |___ Modifiers Registered Successfully.
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module modifier_increase_potency registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_gravity_well
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item wizardry:bomb
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item Meta:          0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -65536
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -22016
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 0.5
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 0.5
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 3.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 3.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 50.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 64.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module effect_gravity_well registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module shape_zone
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:glass
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 20.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 3.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 3.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 100.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module shape_zone registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_vanish
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:fermented_spider_eye
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -1
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -12398127
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 200.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 60.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module effect_vanish registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_place
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:clay
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -13697025
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -786433
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 64.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Module effect_place registered successfully!
    [06:50:48] [Server thread/INFO] [wizardry]:  | |
    [06:50:48] [Server thread/INFO] [wizardry]:  | |_ Registering module modifier_extend_range
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:dye
    [06:50:48] [Server thread/INFO] [wizardry]:  | | |___ Found Modifiers. About to process them
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_extend_range.json: ADD -> range, 1.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_extend_range.json: MULTIPLY -> mana, 1.1
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_extend_range.json: MULTIPLY -> burnout, 1.1
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |___ Modifiers Registered Successfully.
    [06:50:50] [Server thread/INFO] [wizardry]:  | |_ Module modifier_extend_range registered successfully!
    [06:50:50] [Server thread/INFO] [wizardry]:  | |
    [06:50:50] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_light
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:glowstone
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -16711681
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -65536
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 20.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | |_ Module effect_light registered successfully!
    [06:50:50] [Server thread/INFO] [wizardry]:  | |
    [06:50:50] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_low_gravity
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:feather
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -1
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -16711681
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 60.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 40.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 2.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 2.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 40.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | |_ Module effect_low_gravity registered successfully!
    [06:50:50] [Server thread/INFO] [wizardry]:  | |
    [06:50:50] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_crasher_fall
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:obsidian
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -65536
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -65536
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 300.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 2.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 2.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 40.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | |_ Module effect_crasher_fall registered successfully!
    [06:50:50] [Server thread/INFO] [wizardry]:  | |
    [06:50:50] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_burn
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:blaze_powder
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -50116
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -6225920
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 2.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 2.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | |_ Module effect_burn registered successfully!
    [06:50:50] [Server thread/INFO] [wizardry]:  | |
    [06:50:50] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_telekinesis
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:reeds
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -1
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -1
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 3.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 10.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 3.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | |_ Module effect_telekinesis registered successfully!
    [06:50:50] [Server thread/INFO] [wizardry]:  | |
    [06:50:50] [Server thread/INFO] [wizardry]:  | |_ Registering module modifier_extend_time
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:gold_nugget
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |___ Found Modifiers. About to process them
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_extend_time.json: ADD -> duration, 1.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_extend_time.json: MULTIPLY -> mana, 1.1
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_extend_time.json: MULTIPLY -> burnout, 1.1
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |___ Modifiers Registered Successfully.
    [06:50:50] [Server thread/INFO] [wizardry]:  | |_ Module modifier_extend_time registered successfully!
    [06:50:50] [Server thread/INFO] [wizardry]:  | |
    [06:50:50] [Server thread/INFO] [wizardry]:  | |_ Registering module event_collide_block
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:coal
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [06:50:50] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [06:50:50] [Server thread/INFO] [wizardry]:  | |_ Module event_collide_block registered successfully!
    [06:50:50] [Server thread/ERROR] [wizardry]: |
    [06:50:50] [Server thread/ERROR] [wizardry]: |_ Missing or ignored modules detected in modules directory:
    [06:50:50] [Server thread/ERROR] [wizardry]: | |_ modifier_exception
    [06:50:50] [Server thread/INFO] [wizardry]:  |
    [06:50:50] [Server thread/INFO] [wizardry]:  | Module registration processing complete! (ᵔᴥᵔ)
    [06:50:50] [Server thread/INFO] [wizardry]:  |_______________________________________________________________________//
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `forestry.cocoon`, expected `forestry`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc treasure chest`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc air distributor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc air collector`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc oxygen pipe`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc air lock frame`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc refinery`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc nasa workbench`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc deconstructor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc air compressor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc fuel loader`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc landing pad`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc landing pad full`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc space station`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc dummy block`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc air sealer`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc dungeon boss spawner`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc oxygen detector`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc buggy fueler`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc buggy fueler single`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc cargo loader`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc cargo unloader`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc parachest tile`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc solar panel`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc radio telescope`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc magnetic crafting table`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc energy storage module`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc coal generator`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc electric furnace`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc aluminum wire`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc switchable aluminum wire`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc fallen meteor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc ingot compressor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc electric ingot compressor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc circuit fabricator`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc air lock controller`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc oxygen storage module`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc oxygen decompressor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc space station thruster`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc arc lamp`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc view screen`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc panel lighting`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc telemetry unit`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc painter`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc fluid tank`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc player detector`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc platform`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc emergency post`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc null tile`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:53] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc sealed ic2 cable`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc slimeling egg`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc tier 2 treasure chest`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc planet terraformer`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc cryogenic chamber`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc gas liquefier`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc methane synthesizer`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc water electrolyzer`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc mars dungeon spawner`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc launch controller`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc beam reflector`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc beam receiver`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc short range telepad`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc fake short range telepad`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc astro miner base builder`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc astro miner base`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc venus spout`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc venus dungeon spawner`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc tier 3 treasure chest`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc geothermal generator`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc crashed probe`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/INFO] [FML]: minecraft:ocean;OCEAN;0.5;false;false;false;[OCEAN, WATER]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:plains;MEDIUM;0.8;false;false;false;[PLAINS]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:desert;WARM;2.0;false;false;false;[SANDY, DRY, HOT]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:extreme_hills;MEDIUM;0.2;false;false;false;[HILLS, MOUNTAIN]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:forest;MEDIUM;0.7;false;false;false;[FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:taiga;MEDIUM;0.25;false;false;false;[COLD, CONIFEROUS, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:swampland;MEDIUM;0.8;true;false;false;[SWAMP, WET]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:river;MEDIUM;0.5;false;false;false;[WATER, RIVER]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:hell;WARM;2.0;false;false;false;[NETHER, DRY, HOT]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:sky;MEDIUM;0.5;false;false;false;[COLD, DRY, END]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:frozen_ocean;OCEAN;0.0;false;false;true;[SNOWY, OCEAN, COLD, WATER]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:frozen_river;COLD;0.0;false;false;true;[SNOWY, COLD, WATER, RIVER]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:ice_flats;COLD;0.0;false;false;true;[SNOWY, COLD, WASTELAND]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:ice_mountains;COLD;0.0;false;false;true;[SNOWY, COLD, MOUNTAIN]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mushroom_island;MEDIUM;0.9;true;false;false;[MUSHROOM, RARE]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mushroom_island_shore;MEDIUM;0.9;true;false;false;[MUSHROOM, RARE, BEACH]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:beaches;MEDIUM;0.8;false;false;false;[BEACH]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:desert_hills;WARM;2.0;false;false;false;[SANDY, DRY, HILLS, HOT]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:forest_hills;MEDIUM;0.7;false;false;false;[HILLS, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:taiga_hills;MEDIUM;0.25;false;false;false;[COLD, CONIFEROUS, HILLS, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:smaller_extreme_hills;MEDIUM;0.2;false;false;false;[MOUNTAIN]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:jungle;MEDIUM;0.95;true;false;false;[DENSE, WET, JUNGLE, HOT]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:jungle_hills;MEDIUM;0.95;true;false;false;[DENSE, WET, HILLS, JUNGLE, HOT]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:jungle_edge;MEDIUM;0.95;false;false;false;[WET, RARE, JUNGLE, HOT, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:deep_ocean;OCEAN;0.5;false;false;false;[OCEAN, WATER]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:stone_beach;MEDIUM;0.2;false;false;false;[BEACH]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:cold_beach;COLD;0.05;false;false;true;[SNOWY, COLD, BEACH]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:birch_forest;MEDIUM;0.6;false;false;false;[FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:birch_forest_hills;MEDIUM;0.6;false;false;false;[HILLS, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:roofed_forest;MEDIUM;0.7;false;false;false;[DENSE, SPOOKY, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:taiga_cold;COLD;-0.5;false;false;true;[SNOWY, COLD, CONIFEROUS, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:taiga_cold_hills;COLD;-0.5;false;false;true;[SNOWY, COLD, CONIFEROUS, HILLS, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:redwood_taiga;MEDIUM;0.3;false;false;false;[COLD, CONIFEROUS, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:redwood_taiga_hills;MEDIUM;0.3;false;false;false;[COLD, CONIFEROUS, HILLS, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:extreme_hills_with_trees;MEDIUM;0.2;false;false;false;[MOUNTAIN, SPARSE, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:savanna;WARM;1.2;false;false;false;[SPARSE, HOT, SAVANNA, PLAINS]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:savanna_rock;WARM;1.0;false;false;false;[RARE, SPARSE, HOT, SAVANNA, PLAINS]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mesa;WARM;2.0;false;false;false;[SANDY, MESA]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mesa_rock;WARM;2.0;false;false;false;[SANDY, MESA, SPARSE]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mesa_clear_rock;WARM;2.0;false;false;false;[SANDY, MESA]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:void;MEDIUM;0.5;false;false;false;[VOID]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_plains;MEDIUM;0.8;false;true;false;[RARE, PLAINS]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_desert;WARM;2.0;false;true;false;[SANDY, DRY, RARE, HOT]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_extreme_hills;MEDIUM;0.2;false;true;false;[RARE, MOUNTAIN, SPARSE]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_forest;MEDIUM;0.7;false;true;false;[HILLS, RARE, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_taiga;MEDIUM;0.25;false;true;false;[COLD, CONIFEROUS, RARE, MOUNTAIN, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_swampland;MEDIUM;0.8;true;true;false;[SWAMP, WET, HILLS, RARE]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_ice_flats;COLD;0.0;false;true;true;[SNOWY, COLD, HILLS, RARE]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_jungle;MEDIUM;0.95;true;true;false;[DENSE, WET, RARE, MOUNTAIN, JUNGLE, HOT]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_jungle_edge;MEDIUM;0.95;false;true;false;[HILLS, RARE, SPARSE, JUNGLE, HOT]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_birch_forest;MEDIUM;0.6;false;true;false;[DENSE, HILLS, RARE, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_birch_forest_hills;MEDIUM;0.6;false;true;false;[DENSE, RARE, MOUNTAIN, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_roofed_forest;MEDIUM;0.7;false;true;false;[DENSE, SPOOKY, RARE, MOUNTAIN, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_taiga_cold;COLD;-0.5;false;true;true;[SNOWY, COLD, CONIFEROUS, RARE, MOUNTAIN, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_redwood_taiga;MEDIUM;0.25;false;true;false;[DENSE, RARE, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_redwood_taiga_hills;MEDIUM;0.25;false;true;false;[DENSE, HILLS, RARE, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_extreme_hills_with_trees;MEDIUM;0.2;false;true;false;[RARE, MOUNTAIN, SPARSE]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_savanna;WARM;1.1;false;true;false;[DRY, RARE, SPARSE, MOUNTAIN, HOT, SAVANNA]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_savanna_rock;WARM;1.0;false;true;false;[DRY, HILLS, RARE, SPARSE, HOT, SAVANNA]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_mesa;WARM;2.0;false;true;false;[DRY, RARE, SPARSE, MOUNTAIN, HOT, SAVANNA]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_mesa_rock;WARM;2.0;false;true;false;[DRY, HILLS, RARE, SPARSE, HOT]
    [06:50:55] [Server thread/INFO] [FML]: minecraft:mutated_mesa_clear_rock;WARM;2.0;false;true;false;[DRY, RARE, SPARSE, MOUNTAIN, HOT, SAVANNA]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:gravel_beach;MEDIUM;0.6;false;false;false;[BEACH]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:white_beach;WARM;1.0;true;false;false;[BEACH]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:origin_beach;MEDIUM;0.6;false;false;false;[RARE, BEACH]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:alps;COLD;-0.25;false;false;true;[SNOWY, COLD, DRY, MOUNTAIN]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:bamboo_forest;MEDIUM;0.9;false;false;false;[DENSE, WET, JUNGLE, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:bayou;MEDIUM;0.95;true;false;false;[DENSE, SWAMP, WET, HOT]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:bog;MEDIUM;0.5;true;false;false;[SWAMP, COLD, WET, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:boreal_forest;MEDIUM;0.3;false;false;false;[DENSE, CONIFEROUS, COLD, HILLS, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:brushland;WARM;1.5;false;false;false;[DRY, SPARSE, SAVANNA, HOT]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:chaparral;MEDIUM;0.8;false;false;false;[DRY, PLAINS]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:cherry_blossom_grove;MEDIUM;0.55;false;false;false;[DENSE, WET, FOREST, LUSH, MAGICAL]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:cold_desert;MEDIUM;0.2;false;false;false;[SNOWY, COLD, DRY]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:coniferous_forest;MEDIUM;0.45;false;false;false;[DENSE, CONIFEROUS, COLD, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:crag;MEDIUM;0.5;false;false;false;[COLD, WASTELAND, HILLS, DRY, MOUNTAIN, MAGICAL]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:dead_forest;MEDIUM;0.3;false;false;false;[COLD, DEAD, DRY, SPARSE, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:dead_swamp;MEDIUM;0.6;true;false;false;[SWAMP, COLD, WET, DEAD, SPOOKY, SPARSE]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:eucalyptus_forest;MEDIUM;0.95;true;false;false;[DENSE, WET, JUNGLE, FOREST, LUSH]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:fen;MEDIUM;0.4;false;false;false;[DENSE, SWAMP, COLD, WET, DEAD, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:flower_field;MEDIUM;0.6;false;false;false;[PLAINS, LUSH]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:grassland;MEDIUM;0.6;false;false;false;[WET, HILLS, PLAINS]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:grove;MEDIUM;0.6;false;false;false;[WET, SPARSE, FOREST, PLAINS, LUSH]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:highland;MEDIUM;0.6;false;false;false;[WET, HILLS, MOUNTAIN]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:land_of_lakes;MEDIUM;0.5;true;false;false;[DENSE, SWAMP, WET, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:lavender_fields;MEDIUM;0.7;false;false;false;[PLAINS, LUSH, MAGICAL]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:lush_desert;WARM;1.2;false;false;false;[SANDY, DRY, SPARSE, HOT, SAVANNA, LUSH]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:lush_swamp;MEDIUM;0.7;true;false;false;[DENSE, SWAMP, WET, LUSH]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:mangrove;MEDIUM;0.85;false;false;false;[DENSE, SWAMP, WATER, WET, LUSH]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:maple_woods;MEDIUM;0.25;false;false;false;[DENSE, CONIFEROUS, COLD, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:marsh;MEDIUM;0.6;false;false;false;[SWAMP, WET, LUSH]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:meadow;MEDIUM;0.4;false;false;false;[COLD, WET, SPARSE, PLAINS, FOREST, LUSH]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:moor;MEDIUM;0.6;true;false;false;[SWAMP, WET, HILLS]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:mountain;MEDIUM;0.5;false;false;false;[DRY, MOUNTAIN, SPARSE, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:mystic_grove;MEDIUM;0.7;false;false;false;[DENSE, WET, RARE, FOREST, LUSH, MAGICAL]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:ominous_woods;MEDIUM;0.6;false;false;false;[DENSE, WET, DEAD, SPOOKY, RARE, FOREST, MAGICAL]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:orchard;MEDIUM;0.7;false;false;false;[DENSE, FOREST, PLAINS, LUSH]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:outback;WARM;2.0;false;false;false;[SANDY, DRY, SPARSE, SAVANNA, HOT]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:overgrown_cliffs;MEDIUM;0.95;false;false;false;[DENSE, WET, HILLS, MOUNTAIN, JUNGLE, LUSH]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:prairie;MEDIUM;0.8;false;false;false;[DRY, SPARSE, PLAINS]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:quagmire;MEDIUM;0.6;true;false;false;[SWAMP, WET, WASTELAND, DEAD]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:rainforest;MEDIUM;0.95;true;false;false;[DENSE, WET, HILLS, JUNGLE, FOREST, LUSH]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:redwood_forest;MEDIUM;0.7;false;false;false;[DENSE, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:sacred_springs;MEDIUM;0.85;true;false;false;[DENSE, WET, RARE, JUNGLE, FOREST, LUSH, MAGICAL]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:seasonal_forest;MEDIUM;0.4;false;false;false;[DENSE, COLD, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:shield;MEDIUM;0.4;false;false;false;[DENSE, COLD, WET, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:shrubland;MEDIUM;0.6;false;false;false;[DRY, SPARSE, PLAINS]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:snowy_coniferous_forest;COLD;-0.25;false;false;true;[SNOWY, DENSE, CONIFEROUS, COLD, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:snowy_forest;COLD;-0.25;false;false;true;[SNOWY, COLD, WET, SPARSE, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:steppe;MEDIUM;0.75;false;false;false;[SANDY, DRY, PLAINS]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:temperate_rainforest;MEDIUM;0.75;true;false;false;[DENSE, WET, FOREST, LUSH]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:tropical_rainforest;WARM;1.0;true;false;false;[DENSE, WET, JUNGLE, LUSH, HOT]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:tundra;MEDIUM;0.2;false;false;false;[COLD, WET, WASTELAND, DEAD, SPARSE]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:wasteland;WARM;2.0;false;false;false;[WASTELAND, DEAD, DRY, SPARSE]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:wetland;MEDIUM;0.6;false;false;false;[DENSE, SWAMP, WET, FOREST, LUSH]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:woodland;MEDIUM;0.7;false;false;false;[DENSE, DRY, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:xeric_shrubland;WARM;1.75;false;false;false;[SANDY, DRY, SPARSE, SAVANNA, LUSH, HOT]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:alps_foothills;COLD;-0.25;false;false;true;[SNOWY, COLD, DRY, MOUNTAIN, SPARSE, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:mountain_foothills;MEDIUM;0.5;false;false;false;[HILLS, DRY, MOUNTAIN, SPARSE, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:redwood_forest_edge;MEDIUM;0.7;false;false;false;[DENSE, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:pasture;MEDIUM;0.8;false;false;false;[DRY, SPARSE, PLAINS]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:glacier;COLD;-0.5;false;false;false;[SNOWY, COLD, WASTELAND]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:oasis;WARM;2.0;false;false;false;[SANDY, WET, SPARSE, JUNGLE, LUSH, HOT]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:snowy_tundra;COLD;0.0;false;false;false;[SNOWY, COLD, WET, WASTELAND, DEAD, SPARSE]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:coral_reef;MEDIUM;0.5;false;false;false;[OCEAN, WATER]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:kelp_forest;MEDIUM;0.5;false;false;false;[OCEAN, WATER]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:origin_island;MEDIUM;0.6;false;false;false;[WATER, RARE, FOREST]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:tropical_island;MEDIUM;0.95;true;false;false;[DENSE, WATER, WET, JUNGLE, LUSH]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:volcanic_island;WARM;1.2;false;false;false;[WATER, WASTELAND, DEAD, DRY, MOUNTAIN, HOT]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:flower_island;MEDIUM;0.8;false;false;false;[DENSE, WATER, PLAINS, LUSH, MAGICAL]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:corrupted_sands;WARM;2.0;false;false;false;[NETHER, DENSE, SANDY, DRY, HOT]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:fungi_forest;WARM;2.0;false;false;false;[NETHER, DENSE, MUSHROOM, HOT]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:phantasmagoric_inferno;WARM;2.0;false;false;false;[NETHER, WASTELAND, DRY, SPOOKY, HOT, MAGICAL]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:undergarden;WARM;2.0;false;false;false;[NETHER, HOT, LUSH]
    [06:50:55] [Server thread/INFO] [FML]: biomesoplenty:visceral_heap;WARM;2.0;false;false;false;[NETHER, WET, HOT]
    [06:50:55] [Server thread/INFO] [FML]: buildcraftenergy:oil_ocean;OCEAN;0.5;false;false;false;[OCEAN, WATER]
    [06:50:55] [Server thread/INFO] [FML]: buildcraftenergy:oil_desert;WARM;2.0;false;false;false;[SANDY, DRY, HOT]
    [06:50:55] [Server thread/INFO] [FML]: wizardry:wizardry_underworld;MEDIUM;0.5;false;false;false;[VOID, COLD, DRY, SPOOKY, MAGICAL]
    [06:50:55] [Server thread/INFO] [FML]: galacticraftcore:outer space;MEDIUM;0.5;false;false;false;[DEAD, DRY, SPOOKY, SPARSE]
    [06:50:55] [Server thread/INFO] [FML]: galacticraftplanets:outer space 1;WARM;4.0;false;false;false;[SANDY, DEAD, DRY, HOT]
    [06:50:55] [Server thread/INFO] [FML]: galacticraftplanets:outer space 2;WARM;4.0;false;false;false;[SANDY, DEAD, DRY, HOT]
    [06:50:55] [Server thread/INFO] [FML]: thaumcraft:magical_forest;MEDIUM;0.8;false;false;false;[FOREST, MAGICAL]
    [06:50:55] [Server thread/INFO] [FML]: thaumcraft:eerie;MEDIUM;0.8;false;false;false;[SPOOKY, MAGICAL]
    [06:50:55] [Server thread/INFO] [FML]: thaumcraft:eldritch;MEDIUM;0.8;false;false;false;[END, SPOOKY, MAGICAL]
    [06:50:55] [Server thread/INFO] [FML]: Registering drops for shadedGarden.
    [06:50:55] [Server thread/INFO] [FML]: Registering drops for tropicalGarden.
    [06:50:55] [Server thread/INFO] [FML]: Registering drops for windyGarden.
    [06:50:55] [Server thread/INFO] [FML]: Registering drops for frostGarden.
    [06:50:55] [Server thread/INFO] [FML]: Registering drops for aridGarden.
    [06:50:55] [Server thread/INFO] [FML]: Registering drops for soggyGarden.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pamapiary`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pammarket`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pamshippingbin`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pampresser`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pamgroundtrap`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pamwatertrap`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pamwaterfilter`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pamgrinder`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmoven`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmfridge`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcabinet`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmfreezer`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmbedsidecabinet`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmmailbox`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcomputer`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmprinter`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmstereo`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmpresent`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmbin`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmwallcabinet`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmbath`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmshowerhead`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmplate`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcouch`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmtoaster`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmchoppingboard`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmblender`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmmicrowave`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmwashingmachine`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmdishwasher`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcabinetkitchen`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcup`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcookiejar`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmtree`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmmirror`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmgrill`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmeski`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmdoormat`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcrate`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmlightswitch`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmceilingfan`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmdeskcabinet`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmmodernslidingdoor`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmdigitalclock`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmtv`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmkitchencounter`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmkitchencounterdrawer`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [06:50:55] [Server thread/INFO] [opencomputers]: Registering loot disk 'plan9k' from mod opencomputers.
    [06:50:55] [Server thread/INFO] [opencomputers]: Registering loot disk 'network' from mod opencomputers.
    [06:50:55] [Server thread/INFO] [opencomputers]: Registering loot disk 'openos' from mod opencomputers.
    [06:50:55] [Server thread/INFO] [opencomputers]: Registering loot disk 'data' from mod opencomputers.
    [06:50:55] [Server thread/INFO] [opencomputers]: Registering loot disk 'openloader' from mod opencomputers.
    [06:50:55] [Server thread/INFO] [opencomputers]: Registering loot disk 'builder' from mod opencomputers.
    [06:50:55] [Server thread/INFO] [opencomputers]: Registering loot disk 'generator' from mod opencomputers.
    [06:50:55] [Server thread/INFO] [opencomputers]: Registering loot disk 'oppm' from mod opencomputers.
    [06:50:55] [Server thread/INFO] [opencomputers]: Registering loot disk 'dig' from mod opencomputers.
    [06:50:55] [Server thread/INFO] [opencomputers]: Registering loot disk 'maze' from mod opencomputers.
    [06:50:55] [Server thread/INFO] [opencomputers]: Registering loot disk 'irc' from mod opencomputers.
    [06:50:57] [Server thread/INFO] [opencomputers]: Initializing mod integration.
    [06:50:57] [Server thread/INFO] [opencomputers]: Initializing mod integration for 'forestry'.
    [06:50:57] [Server thread/INFO] [opencomputers]: Initializing mod integration for 'ic2'.
    [06:50:57] [Server thread/INFO] [opencomputers]: Initializing mod integration for 'forge'.
    [06:50:57] [Server thread/INFO] [opencomputers]: Initializing mod integration for 'minecraft'.
    [06:50:57] [Server thread/INFO] [opencomputers]: Initializing mod integration for 'waila'.
    [06:50:57] [Server thread/INFO] [opencomputers]: Initializing mod integration for 'opencomputers'.
    [06:51:03] [Server thread/INFO] [opencomputers]: Found extended redstone mods, enabling tier two redstone card.
    [06:51:03] [Server thread/INFO] [opencomputers]: Initializing recipes.
    [06:51:05] [Server thread/INFO] [opencomputers]: Initializing capabilities.
    [06:51:05] [Server thread/INFO] [opencomputers]: Done with init phase.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new tool durability provider 'li.cil.oc.integration.ic2.EventHandlerIndustrialCraft2.getDurability' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new wrench usage 'li.cil.oc.integration.ic2.EventHandlerIndustrialCraft2.useWrench' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new wrench tool check 'li.cil.oc.integration.ic2.EventHandlerIndustrialCraft2.isWrench' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new item charge implementation 'IndustrialCraft2' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new item charge implementation 'MinecraftForge' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Drone (Tier 1)' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Drone (Tier 2)' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Drone (Creative)' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new disassembler template 'Drone' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Microcontroller (Tier 1)' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Microcontroller (Tier 2)' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Microcontroller (Creative)' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new disassembler template 'Microcontroller' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new disassembler template 'Navigation Upgrade' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Robot (Tier 1)' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Robot (Tier 2)' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Robot (Tier 3)' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Robot (Creative)' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new disassembler template 'Robot' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new disassembler template 'Server' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Tablet (Tier 1)' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Tablet (Tier 2)' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Tablet (Creative)' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new disassembler template 'Tablet' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new assembler template filter 'li.cil.oc.common.template.TemplateBlacklist.filter' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new wrench usage 'li.cil.oc.integration.opencomputers.ModOpenComputers.useWrench' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new wrench tool check 'li.cil.oc.integration.opencomputers.ModOpenComputers.isWrench' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new item charge implementation 'OpenComputers' from mod opencomputers.
    [06:51:09] [Server thread/INFO] [opencomputers]: Registering new ink provider 'li.cil.oc.integration.opencomputers.ModOpenComputers.inkCartridgeInkProvider' from mod opencomputers.
    [06:51:10] [Server thread/INFO] [opencomputers]: Registering new ink provider 'li.cil.oc.integration.opencomputers.ModOpenComputers.dyeInkProvider' from mod opencomputers.
    [06:51:10] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'build' being on disk 'builder' from mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'dig' being on disk 'dig' from mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'base64' being on disk 'data' from mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'deflate' being on disk 'data' from mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'gpg' being on disk 'data' from mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'inflate' being on disk 'data' from mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'md5sum' being on disk 'data' from mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'sha256sum' being on disk 'data' from mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'refuel' being on disk 'generator' from mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'irc' being on disk 'irc' from mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'maze' being on disk 'maze' from mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'arp' being on disk 'network' from mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'ifconfig' being on disk 'network' from mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'ping' being on disk 'network' from mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'route' being on disk 'network' from mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'opl-flash' being on disk 'openloader' from mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'oppm' being on disk 'oppm' from mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'geolyzer' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'motionsensor' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'keyboard' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'screen1' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'transposer' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'carpetedcapacitor' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'angelupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'batteryupgrade1' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'batteryupgrade2' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'batteryupgrade3' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'chunkloaderupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'craftingupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'experienceupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'generatorupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade1' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade2' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'inventoryupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'navigationupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'pistonupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'solargeneratorupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'tankupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'tractorbeamupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'leashupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'tradingupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'keyboard' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'screen1' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'transposer' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'carpetedcapacitor' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'apu1' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'apu2' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'graphicscard1' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'graphicscard2' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'graphicscard3' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'lancard' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'redstonecard1' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'angelupgrade' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'craftingupgrade' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade1' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade2' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'keyboard' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'screen1' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'carpetedcapacitor' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'apu1' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'apu2' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'graphicscard1' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'graphicscard2' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'graphicscard3' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'angelupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'chunkloaderupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'craftingupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'databaseupgrade1' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'databaseupgrade2' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'databaseupgrade3' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'experienceupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'generatorupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade1' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade2' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'inventoryupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'inventorycontrollerupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'navigationupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'tankupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'tankcontrollerupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'tractorbeamupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'leashupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'tradingupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'transposer' for host 'li.cil.oc.api.internal.Robot' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'carpetedcapacitor' for host 'li.cil.oc.api.internal.Robot' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'leashupgrade' for host 'li.cil.oc.api.internal.Robot' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'screen1' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'transposer' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'carpetedcapacitor' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'lancard' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'redstonecard1' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'angelupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'chunkloaderupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'craftingupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'databaseupgrade1' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'databaseupgrade2' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'databaseupgrade3' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'experienceupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'generatorupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade1' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade2' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'inventoryupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'inventorycontrollerupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'tankupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'tankcontrollerupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'leashupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [opencomputers]: Blacklisting component 'tradingupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [06:51:12] [Server thread/INFO] [FML]: Injecting itemstacks
    [06:51:12] [Server thread/INFO] [FML]: Itemstack injection complete
    [06:51:12] [Server thread/INFO] [ic2.Uu]: Loading predefined UU world scan values, run /ic2 uu-world-scan <small|medium|large> to calibrate them for your world.
    [06:51:12] [Server thread/INFO] [ic2.General]: ic2 version 2.8.100-ex112 loaded.
    [06:51:14] [Server thread/INFO] [RECIPE_SCRIPT]: skipped core.POST_INIT
    [06:51:25] [Server thread/INFO] [wizardry]:  | Registered Beam -> Lightning run override.
    [06:51:25] [Server thread/INFO] [wizardry]:  | Registered Projectile -> Lightning run override.
    [06:51:25] [Server thread/INFO] [wizardry]:  | Registered Arc -> Lightning run override.
    [06:51:25] [Server thread/INFO] [wizardry]:  | Registered Self -> Lightning run override.
    [06:51:25] [Server thread/INFO] [wizardry]:  | Registered Touch -> Lightning run override.
    [06:51:25] [Server thread/INFO] [wizardry]:  | Registered Zone -> Lightning run override.
    [06:51:25] [Server thread/INFO] [wizardry]:  | Registered Beam -> Lightning renderSpell override.
    [06:51:25] [Server thread/INFO] [wizardry]:  | Registered Projectile -> Lightning renderSpell override.
    [06:51:25] [Server thread/INFO] [wizardry]:  | Registered Arc -> Lightning renderSpell override.
    [06:51:25] [Server thread/INFO] [wizardry]:  | Registered Touch -> Lightning renderSpell override.
    [06:51:25] [Server thread/WARN] [forestry]: Failed to find item for (immersiveengineering:seed) in the Forge registry.
    [06:51:25] [Server thread/INFO] [Galacticraft]: Galacticraft: activating IndustrialCraft2 compatibility features.
    [06:51:25] [Server thread/INFO] [Galacticraft]: Galacticraft: activating BuildCraft Transport (Pipes) compatibility features.
    [06:51:25] [Server thread/INFO] [Galacticraft]: Galacticraft: activating Biomes O'Plenty compatibility feature.
    [06:51:25] [Server thread/INFO] [Galacticraft]: Galacticraft: activating WAILA compatibility features.
    [06:51:25] [Server thread/INFO] [opencomputers]: Done with post init phase.
    [06:51:34] [Server thread/ERROR] [net.minecraft.server.MinecraftServer]: Encountered an unexpected exception
    net.minecraftforge.fml.common.LoaderExceptionModCrash: Caught exception from Thaumcraft (thaumcraft)

    Caused by: java.lang.IllegalAccessError: tried to access class net.minecraft.potion.PotionHelper$MixPredicate from class thaumcraft.common.lib.crafting.ThaumcraftCraftingManager
        at thaumcraft.common.lib.crafting.ThaumcraftCraftingManager.getPotionReagentsRecursive(ThaumcraftCraftingManager.java:337) ~[ThaumcraftCraftingManager.class:?]
        at thaumcraft.common.config.ConfigAspects.getPotionAspects(ConfigAspects.java:684) ~[ConfigAspects.class:?]
        at thaumcraft.common.config.ConfigAspects.registerItemAspects(ConfigAspects.java:521) ~[ConfigAspects.class:?]
        at thaumcraft.common.config.ConfigAspects.postInit(ConfigAspects.java:34) ~[ConfigAspects.class:?]
        at thaumcraft.proxies.CommonProxy.postInit(CommonProxy.java:82) ~[CommonProxy.class:?]
        at thaumcraft.Thaumcraft.postInit(Thaumcraft.java:54) ~[Thaumcraft.class:?]
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_161]
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_161]
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_161]
        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_161]
        at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:624) ~[forge-1.12.2-14.23.5.2768-universal.jar:?]
        at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source) ~[?:?]
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_161]
        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_161]
        at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.EventBus.post(EventBus.java:217) ~[minecraft_server.1.12.2.jar:?]
        at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:218) ~[forge-1.12.2-14.23.5.2768-universal.jar:?]
        at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:196) ~[forge-1.12.2-14.23.5.2768-universal.jar:?]
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_161]
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_161]
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_161]
        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_161]
        at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.EventBus.post(EventBus.java:217) ~[minecraft_server.1.12.2.jar:?]
        at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:135) ~[LoadController.class:?]
        at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:749) ~[Loader.class:?]
        at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) ~[FMLServerHandler.class:?]
        at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) ~[FMLCommonHandler.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:219) ~[nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [06:51:34] [Server thread/ERROR] [net.minecraft.server.MinecraftServer]: This crash report has been saved to: C:\MS Minecraft Server\.\crash-reports\crash-2018-12-17_06.51.34-server.txt
    [06:51:34] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Stopping server
    [06:51:34] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving worlds
    [06:51:34] [Server thread/INFO] [FML]: The state engine was in incorrect state AVAILABLE and forced into state SERVER_STOPPED. Errors may have been discarded.
    [06:51:34] [Server Shutdown Thread/INFO] [net.minecraft.server.MinecraftServer]: Stopping server
     

     

    latest.log

    crash-2018-12-17_06.51.34-server.txt

  11. So, I am using a heavily modded Forge server in the (current) recommended build:14.23.5.2768. The crash report is as follows:

     

    (NOTE: ALL NEEDED INFO BASED ON OTHER FORUM RESPONDER'S REQUESTS ARE IN THE CRASH AND LOG FILES)

    Spoiler

    ---- Minecraft Crash Report ----

    WARNING: coremods are present:
      MicdoodlePlugin (MicdoodleCore-1.12.2.jar)
      Wizardry Plugin (Escapees-Wizardry-Mod-1.12.2.jar)
      Inventory Tweaks Coremod (Inventory-Tweaks-Mod-1.12.2.jar)
      IELoadingPlugin (ImmersiveEngineering-core-0.12-85.jar)
      TransformerLoader (OpenComputers-MC1.12.2-1.7.2.67.jar)
      LibrarianLib Plugin (LibrarianLib-1.12.2.jar)
      DynamicSurroundingsCore (DynamicSurroundings-core-1.12.2-3.4.10.5.jar)
      ForgelinPlugin (Forgelin-1.8.2.jar)
    Contact their authors BEFORE contacting forge

    // Don't be sad. I'll do better next time, I promise!

    Time: 12/16/18 9:48 AM
    Description: Exception in server tick loop

    net.minecraftforge.fml.common.LoaderExceptionModCrash: Caught exception from Immersive Engineering (immersiveengineering)
    Caused by: java.lang.IllegalAccessError: tried to access class net.minecraft.potion.PotionHelper$MixPredicate from class blusunrize.immersiveengineering.common.IEContent
        at blusunrize.immersiveengineering.common.IEContent.postInit(IEContent.java:1014)
        at blusunrize.immersiveengineering.ImmersiveEngineering.postInit(ImmersiveEngineering.java:145)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:624)
        at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)
        at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)
        at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)
        at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)
        at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)
        at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)
        at com.google.common.eventbus.EventBus.post(EventBus.java:217)
        at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:218)
        at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:196)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91)
        at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150)
        at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76)
        at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399)
        at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71)
        at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116)
        at com.google.common.eventbus.EventBus.post(EventBus.java:217)
        at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:135)
        at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:749)
        at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108)
        at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338)
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:219)
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486)
        at java.lang.Thread.run(Unknown Source)


    A detailed walkthrough of the error, its code path and all known details is as follows:
    ---------------------------------------------------------------------------------------

    -- System Details --
    Details:
        Minecraft Version: 1.12.2
        Operating System: Windows 7 (amd64) version 6.1
        Java Version: 1.8.0_161, Oracle Corporation
        Java VM Version: Java HotSpot(TM) 64-Bit Server VM (mixed mode), Oracle Corporation
        Memory: 199525160 bytes (190 MB) / 830472192 bytes (792 MB) up to 932184064 bytes (889 MB)
        JVM Flags: 0 total; 
        IntCache: cache: 0, tcache: 0, allocated: 0, tallocated: 0
        FML: MCP 9.42 Powered by Forge 14.23.5.2768 55 mods loaded, 55 mods active
        States: 'U' = Unloaded 'L' = Loaded 'C' = Constructed 'H' = Pre-initialized 'I' = Initialized 'J' = Post-initialized 'A' = Available 'D' = Disabled 'E' = Errored

        | State  | ID                    | Version                  | Source                                         | Signature                                |
        |:------ |:--------------------- |:------------------------ |:---------------------------------------------- |:---------------------------------------- |
        | UCHIJ  | minecraft             | 1.12.2                   | minecraft.jar                                  | None                                     |
        | UCHIJ  | mcp                   | 9.42                     | minecraft.jar                                  | None                                     |
        | UCHIJ  | FML                   | 8.0.99.99                | forge-1.12.2-14.23.5.2768-universal.jar        | e3c3d50c7c986df74c645c0ac54639741c90a557 |
        | UCHIJ  | forge                 | 14.23.5.2768             | forge-1.12.2-14.23.5.2768-universal.jar        | e3c3d50c7c986df74c645c0ac54639741c90a557 |
        | UCHIJ  | micdoodlecore         |                          | minecraft.jar                                  | None                                     |
        | UCHIJ  | opencomputers|core    | 1.7.2.67                 | minecraft.jar                                  | None                                     |
        | UCHIJ  | dsurroundcore         |                          | minecraft.jar                                  | None                                     |
        | UCHIJ  | ic2                   | 2.8.100-ex112            | Industrial-Craft-2-Mod-Experimental-1.12.2.jar | de041f9f6187debbc77034a344134053277aa3b0 |
        | UCHIJ  | advanced_solar_panels | 4.2.0                    | Advanced-Solar-Panels-Mod-1.12.2.jar           | None                                     |
        | UCHIJ  | ageofweapons          | 0.13.2_pre1              | Age-of-Weapons-Mod-1.12.2.jar                  | None                                     |
        | UCHIJ  | baubles               | 1.5.2                    | Baubles-Mod-1.12.2.jar                         | None                                     |
        | UCHIJ  | bibliocraft           | 2.4.5                    | BiblioCraft-Mod-1.12.2.jar                     | None                                     |
        | UCHIJ  | biomesoplenty         | 7.0.1.2419               | BiomesOPlenty-1.12.2-7.0.1.2419-universal.jar  | None                                     |
        | UCHIJ  | birdsnests            | 2.1.0                    | BirdsNests1.12.2-2.1.0.jar                     | None                                     |
        | UCHIJ  | buildcraftlib         | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | buildcraftcore        | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | buildcraftbuilders    | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | buildcraftenergy      | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | buildcraftfactory     | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | buildcraftrobotics    | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | buildcraftsilicon     | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | buildcrafttransport   | 7.99.14                  | BuildCraft-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | cd4017be_lib          | 6.2.4                    | CD4017BE-Library-1.12.2.jar                    | None                                     |
        | UCHIJ  | gottschcore           | 1.2.0                    | GottschCore-1.12.2.jar                         | None                                     |
        | UCHIJ  | dungeons2             | 1.3.2                    | Dungeons-2-Mod-1.12.2.jar                      | None                                     |
        | UCHIJ  | dynamictrees          | 1.12.2-0.8.2             | DynamicTrees-1.12.2-0.8.2.jar                  | None                                     |
        | UCHIJ  | wizardry              | 0.9.5                    | Escapees-Wizardry-Mod-1.12.2.jar               | None                                     |
        | UCHIJ  | exoticbirds           | 1.0                      | Exotic+Birds+1.12.2-2.2.1.jar                  | None                                     |
        | UCHIJ  | familiarfauna         | 1.0.11                   | FamiliarFauna-1.12.2-1.0.11.jar                | None                                     |
        | UCHIJ  | jei                   | 4.12.0.216               | jei_1.12.2-4.12.0.216.jar                      | None                                     |
        | UCHIJ  | toughasnails          | 3.1.0.139                | ToughAsNails-1.12.2-3.1.0.139-universal.jar    | None                                     |
        | UCHIJ  | forestry              | 5.8.0.311                | Forestry-Mod-1.12.2.jar                        | None                                     |
        | UCHIJ  | forgelin              | 1.8.2                    | Forgelin-1.8.2.jar                             | None                                     |
        | UCHIJ  | galacticraftcore      | 4.0.1.181                | Galacticraft-Mod-1.12.2.jar                    | None                                     |
        | UCHIJ  | galacticraftplanets   | 4.0.1.181                | Galacticraft-Planets-Mod-1.12.2.jar            | None                                     |
        | UCHIJ  | harvestcraft          | 1.12.2w                  | HarvestCraft-Mod-1.12.2.jar                    | None                                     |
        | UCHIJ  | waila                 | 1.8.26                   | Hwyla-1.8.26-B41_1.12.2.jar                    | None                                     |
        | UCHIJ  | ichunutil             | 7.1.4                    | iChun-Util-Mod-1.12.2.jar                      | None                                     |
        | UCHIEE | immersiveengineering  | 0.12-85                  | Immersive-Engineering-Mod-1.12.2.jar           | 4cb49fcde3b43048c9889e0a3d083225da926334 |
        | UCHI   | industrialwires       | 1.6-20                   | Industrial-Wires-Mod-1.12.jar                  | 7e11c175d1e24007afec7498a1616bef0000027d |
        | UCHI   | inventorytweaks       | 1.63+release.109.220f184 | Inventory-Tweaks-Mod-1.12.2.jar                | 55d2cd4f5f0961410bf7b91ef6c6bf00a766dcbe |
        | UCHI   | ironchest             | 1.12.2-7.0.46.831        | Iron-Chests-Mod-1.12.2.jar                     | None                                     |
        | UCHI   | librarianlib          | 4.12                     | LibrarianLib-1.12.2.jar                        | None                                     |
        | UCHI   | morph                 | 7.1.0                    | Morphing-Mod-1.12.2.jar                        | None                                     |
        | UCHI   | cfm                   | 5.13.0                   | MrCrayfishs-Furniture-Mod-1.12.2.jar           | None                                     |
        | UCHI   | opencomputers         | 1.7.2.67                 | OpenComputers-MC1.12.2-1.7.2.67.jar            | None                                     |
        | UCHI   | redstoneflux          | 2.1.0                    | RedstoneFlux-1.12.2(Latest).jar                | 8a6abf2cb9e141b866580d369ba6548732eff25f |
        | UCHI   | roguelike             | 1.7.2                    | Roguelike-Dungeons-Mod-1.12.2.jar              | None                                     |
        | UCHI   | securitycraft         | v1.8.9                   | SecurityCraft-Mod-1.12.2.jar                   | None                                     |
        | UCHI   | simplecorn            | 2.4.1                    | SimpleCorn1.12-1.12-2.4.1.jar                  | None                                     |
        | UCHI   | thaumcraft            | 6.1.BETA24               | Thaumcraft-Mod-1.12.2.jar                      | None                                     |
        | UCHI   | bspkrscore            | at_0.9                   | TreeCapitator-Mod-1.12.jar                     | None                                     |
        | UCHI   | treecapitator         | at_0.9                   | TreeCapitator-Mod-1.12.jar                     | None                                     |
        | UCHI   | dsurround             | 3.4.10.5                 | DynamicSurroundings-1.12.2-3.4.10.5.jar        | 7a2128d395ad96ceb9d9030fbd41d035b435753a |
        | UCHI   | librarianliblate      | 4.12                     | LibrarianLib-1.12.2.jar                        | None                                     |

        Loaded coremods (and transformers): 
    MicdoodlePlugin (MicdoodleCore-1.12.2.jar)
      micdoodle8.mods.miccore.MicdoodleTransformer
    Wizardry Plugin (Escapees-Wizardry-Mod-1.12.2.jar)
      com.teamwizardry.wizardry.asm.WizardryTransformer
    Inventory Tweaks Coremod (Inventory-Tweaks-Mod-1.12.2.jar)
      invtweaks.forge.asm.ContainerTransformer
    IELoadingPlugin (ImmersiveEngineering-core-0.12-85.jar)
      blusunrize.immersiveengineering.common.asm.IEClassTransformer
    TransformerLoader (OpenComputers-MC1.12.2-1.7.2.67.jar)
      li.cil.oc.common.asm.ClassTransformer
    LibrarianLib Plugin (LibrarianLib-1.12.2.jar)
      com.teamwizardry.librarianlib.asm.LibLibTransformer
    DynamicSurroundingsCore (DynamicSurroundings-core-1.12.2-3.4.10.5.jar)
      org.blockartistry.DynSurround.asm.Transformer
    ForgelinPlugin (Forgelin-1.8.2.jar)
      
        Profiler Position: N/A (disabled)
        Is Modded: Definitely; Server brand changed to 'fml,forge'
        Type: Dedicated Server (map_server.txt)

    The log is as follows:

    Spoiler

    [05:36:19] [main/INFO] [LaunchWrapper]: Using primary tweak class name net.minecraftforge.fml.common.launcher.FMLServerTweaker
    [05:36:19] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLServerTweaker
    [05:36:19] [main/INFO] [FML]: Forge Mod Loader version 14.23.5.2768 for Minecraft 1.12.2 loading
    [05:36:19] [main/INFO] [FML]: Java is Java HotSpot(TM) 64-Bit Server VM, version 1.8.0_161, running on Windows 7:amd64:6.1, installed at C:\Program Files\Java\jre1.8.0_161
    [05:36:20] [main/INFO] [FML]: Searching C:\MS Minecraft Server\.\mods for mods
    [05:36:20] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Escapees-Wizardry-Mod-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [05:36:20] [main/WARN] [FML]: The coremod com.teamwizardry.wizardry.asm.WizardryCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [05:36:20] [main/WARN] [FML]: The coremod Wizardry Plugin (com.teamwizardry.wizardry.asm.WizardryCorePlugin) is not signed!
    [05:36:20] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Forgelin-1.8.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [05:36:20] [main/WARN] [FML]: The coremod net.shadowfacts.forgelin.preloader.ForgelinPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [05:36:20] [main/WARN] [FML]: The coremod ForgelinPlugin (net.shadowfacts.forgelin.preloader.ForgelinPlugin) is not signed!
    [05:36:20] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in Inventory-Tweaks-Mod-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [05:36:21] [main/WARN] [FML]: The coremod invtweaks.forge.asm.FMLPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [05:36:21] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in LibrarianLib-1.12.2.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [05:36:21] [main/WARN] [FML]: The coremod com.teamwizardry.librarianlib.asm.LibLibCorePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [05:36:21] [main/WARN] [FML]: The coremod LibrarianLib Plugin (com.teamwizardry.librarianlib.asm.LibLibCorePlugin) is not signed!
    [05:36:21] [main/WARN] [FML]: The coremod micdoodle8.mods.miccore.MicdoodlePlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [05:36:21] [main/WARN] [FML]: The coremod MicdoodlePlugin (micdoodle8.mods.miccore.MicdoodlePlugin) is not signed!
    [05:36:21] [main/WARN] [FML]: Found FMLCorePluginContainsFMLMod marker in OpenComputers-MC1.12.2-1.7.2.67.jar. This is not recommended, @Mods should be in a separate jar from the coremod.
    [05:36:21] [main/WARN] [FML]: The coremod li.cil.oc.common.launch.TransformerLoader does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [05:36:21] [main/WARN] [FML]: The coremod TransformerLoader (li.cil.oc.common.launch.TransformerLoader) is not signed!
    [05:36:21] [main/INFO] [FML]: Loading tweaker optifine.OptiFineForgeTweaker from OptiFine_1.12.2_HD_U_E2.jar
    [05:36:21] [main/WARN] [FML]: The coremod blusunrize.immersiveengineering.common.asm.IELoadingPlugin does not have a MCVersion annotation, it may cause issues with this version of Minecraft
    [05:36:21] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
    [05:36:21] [main/INFO] [LaunchWrapper]: Loading tweak class name optifine.OptiFineForgeTweaker
    [05:36:21] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
    [05:36:21] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
    [05:36:21] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLInjectionAndSortingTweaker
    [05:36:21] [main/INFO] [LaunchWrapper]: Calling tweak class optifine.OptiFineForgeTweaker
    [05:36:21] [main/INFO] [STDOUT]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: acceptOptions
    [05:36:21] [main/INFO] [STDOUT]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: Forge server detected, skipping class transformer
    [05:36:21] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [05:36:23] [main/INFO] [FML]: Found valid fingerprint for Minecraft Forge. Certificate fingerprint e3c3d50c7c986df74c645c0ac54639741c90a557
    [05:36:23] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [05:36:23] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [05:36:23] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [05:36:23] [main/INFO] [STDOUT]: [micdoodle8.mods.miccore.MicdoodlePlugin:getASMTransformerClass:99]: Successfully Registered Transformer
    [05:36:24] [main/INFO] [FML]: Failed to find MicdoodleCore file in mods folder, skipping GC version check.
    [05:36:24] [main/INFO] [STDOUT]: [micdoodle8.mods.miccore.MicdoodlePlugin:injectData:292]: [Micdoodle8Core]: Patching game...
    [05:36:24] [main/INFO] [STDOUT]: [micdoodle8.mods.miccore.MicdoodlePlugin:injectData:292]: [Micdoodle8Core]: Patching game...
    [05:36:24] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.FMLDeobfTweaker
    [05:36:25] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [05:36:25] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [05:36:25] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [05:36:25] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [05:36:25] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [05:36:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.relauncher.CoreModManager$FMLPluginWrapper
    [05:36:26] [main/INFO] [LaunchWrapper]: Loading tweak class name net.minecraftforge.fml.common.launcher.TerminalTweaker
    [05:36:26] [main/INFO] [LaunchWrapper]: Calling tweak class net.minecraftforge.fml.common.launcher.TerminalTweaker
    [05:36:26] [main/INFO] [STDOUT]: [optifine.OptiFineForgeTweaker:dbg:56]: OptiFineForgeTweaker: getLaunchArguments
    [05:36:26] [main/INFO] [dsurroundcore]: Transmorgrifying [net.minecraft.world.WorldServer]: resetRainAndThunder
    [05:36:26] [main/INFO] [dsurroundcore]: func_73051_P()V: Found!
    [05:36:26] [main/INFO] [dsurroundcore]: Transmorgrified [net.minecraft.world.WorldServer]: resetRainAndThunder
    [05:36:26] [main/INFO] [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:28]: [wizardry ASM] Successfully patched -> 'func_70071_h_', 'onUpdate' with '()V'
    [05:36:26] [main/INFO] [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:28]: [wizardry ASM] Successfully patched -> 'func_191986_a', 'travel' with '(FFF)V'
    [05:36:26] [main/INFO] [STDOUT]: [com.teamwizardry.wizardry.asm.WizardryTransformer:log:28]: [wizardry ASM] Successfully patched -> 'func_70091_d', 'move' with '(Lnet/minecraft/entity/MoverType;DDD)V'
    [05:36:26] [main/INFO] [LibrarianLib ASM]: Transforming Entity
    [05:36:26] [main/INFO] [LibrarianLib ASM]: Applying Transformation to method (Names [onUpdate, func_70071_h_] Descriptor ()V)
    [05:36:26] [main/INFO] [LibrarianLib ASM]: Attempting to insert: Update hook
    [05:36:26] [main/INFO] [LibrarianLib ASM]: Patch result: Success
    [05:36:27] [main/INFO] [LaunchWrapper]: Launching wrapped minecraft {net.minecraft.server.MinecraftServer}
    [05:36:29] [main/INFO] [OpenComputers]: Successfully patched net/minecraft/entity/EntityLiving.recreateLeash.
    [05:36:30] [main/INFO] [dsurroundcore]: Transmorgrifying [net.minecraft.entity.projectile.EntityArrow]: No Particles on Arrows
    [05:36:30] [main/INFO] [dsurroundcore]: func_70071_h_()V: Found!
    [05:36:30] [main/INFO] [dsurroundcore]: Transmorgrified [net.minecraft.entity.projectile.EntityArrow]: No Particles on Arrows
    [05:36:37] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Starting minecraft server version 1.12.2
    [05:36:37] [Server thread/INFO] [FML]: MinecraftForge v14.23.5.2768 Initialized
    [05:36:37] [Server thread/INFO] [FML]: Starts to replace vanilla recipe ingredients with ore ingredients.
    [05:36:37] [Server thread/INFO] [FML]: Replaced 1036 ore ingredients
    [05:36:37] [Server console handler/ERROR] [net.minecraft.server.dedicated.DedicatedServer]: Exception handling console input
    java.io.IOException: The handle is invalid
        at java.io.FileInputStream.readBytes(Native Method) ~[?:1.8.0_161]
        at java.io.FileInputStream.read(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedInputStream.read1(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedInputStream.read(Unknown Source) ~[?:1.8.0_161]
        at sun.nio.cs.StreamDecoder.readBytes(Unknown Source) ~[?:1.8.0_161]
        at sun.nio.cs.StreamDecoder.implRead(Unknown Source) ~[?:1.8.0_161]
        at sun.nio.cs.StreamDecoder.read(Unknown Source) ~[?:1.8.0_161]
        at java.io.InputStreamReader.read(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedReader.fill(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedReader.readLine(Unknown Source) ~[?:1.8.0_161]
        at java.io.BufferedReader.readLine(Unknown Source) ~[?:1.8.0_161]
        at net.minecraft.server.dedicated.DedicatedServer$2.run(DedicatedServer.java:105) [nz$2.class:?]
    [05:36:39] [Server thread/INFO] [FML]: Searching C:\MS Minecraft Server\.\mods for mods
    [05:36:42] [Server thread/WARN] [FML]: Mod cd4017be_lib is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 6.2.4
    [05:36:47] [Server thread/WARN] [FML]: Mod ironchest is missing the required element 'version' and a version.properties file could not be found. Falling back to metadata version 1.12.2-7.0.46.831
    [05:36:52] [Server thread/INFO] [FML]: Disabling mod presets it is client side only.
    [05:36:53] [Server thread/INFO] [FML]: Forge Mod Loader has identified 55 mods to load
    [05:36:53] [Server thread/WARN] [FML]: Missing English translation for FML: assets/fml/lang/en_us.lang
    [05:36:53] [Server thread/WARN] [FML]: Missing English translation for buildcraftbuilders: assets/buildcraftbuilders/lang/en_us.lang
    [05:36:53] [Server thread/WARN] [FML]: Missing English translation for buildcraftcore: assets/buildcraftcore/lang/en_us.lang
    [05:36:53] [Server thread/WARN] [FML]: Missing English translation for buildcraftenergy: assets/buildcraftenergy/lang/en_us.lang
    [05:36:53] [Server thread/WARN] [FML]: Missing English translation for buildcraftfactory: assets/buildcraftfactory/lang/en_us.lang
    [05:36:53] [Server thread/WARN] [FML]: Missing English translation for buildcraftlib: assets/buildcraftlib/lang/en_us.lang
    [05:36:53] [Server thread/WARN] [FML]: Missing English translation for buildcraftrobotics: assets/buildcraftrobotics/lang/en_us.lang
    [05:36:53] [Server thread/WARN] [FML]: Missing English translation for buildcraftsilicon: assets/buildcraftsilicon/lang/en_us.lang
    [05:36:53] [Server thread/WARN] [FML]: Missing English translation for buildcrafttransport: assets/buildcrafttransport/lang/en_us.lang
    [05:36:54] [Server thread/WARN] [FML]: Missing English translation for forgelin: assets/forgelin/lang/en_us.lang
    [05:36:54] [Server thread/WARN] [FML]: Missing English translation for gottschcore: assets/gottschcore/lang/en_us.lang
    [05:36:54] [Server thread/WARN] [FML]: Missing English translation for ic2: assets/ic2/lang/en_us.lang
    [05:36:54] [Server thread/WARN] [FML]: Missing English translation for librarianliblate: assets/librarianliblate/lang/en_us.lang
    [05:36:54] [Server thread/WARN] [FML]: Missing English translation for redstoneflux: assets/redstoneflux/lang/en_us.lang
    [05:36:54] [Server thread/WARN] [FML]: Missing English translation for roguelike: assets/roguelike/lang/en_us.lang
    [05:37:00] [Server thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, micdoodlecore, opencomputers|core, dsurroundcore, advanced_solar_panels, ageofweapons, baubles, bibliocraft, biomesoplenty, birdsnests, buildcraftbuilders, buildcraftcore, buildcraftenergy, buildcraftfactory, buildcraftlib, buildcraftrobotics, buildcraftsilicon, buildcrafttransport, cd4017be_lib, dungeons2, dynamictrees, wizardry, exoticbirds, familiarfauna, forestry, forgelin, galacticraftcore, galacticraftplanets, gottschcore, harvestcraft, waila, ichunutil, ic2, industrialwires, inventorytweaks, ironchest, jei, librarianliblate, librarianlib, morph, cfm, opencomputers, redstoneflux, roguelike, securitycraft, simplecorn, thaumcraft, toughasnails, bspkrscore, treecapitator, dsurround, immersiveengineering] at CLIENT
    [05:37:00] [Server thread/INFO] [FML]: Attempting connection with missing mods [minecraft, mcp, FML, forge, micdoodlecore, opencomputers|core, dsurroundcore, advanced_solar_panels, ageofweapons, baubles, bibliocraft, biomesoplenty, birdsnests, buildcraftbuilders, buildcraftcore, buildcraftenergy, buildcraftfactory, buildcraftlib, buildcraftrobotics, buildcraftsilicon, buildcrafttransport, cd4017be_lib, dungeons2, dynamictrees, wizardry, exoticbirds, familiarfauna, forestry, forgelin, galacticraftcore, galacticraftplanets, gottschcore, harvestcraft, waila, ichunutil, ic2, industrialwires, inventorytweaks, ironchest, jei, librarianliblate, librarianlib, morph, cfm, opencomputers, redstoneflux, roguelike, securitycraft, simplecorn, thaumcraft, toughasnails, bspkrscore, treecapitator, dsurround, immersiveengineering] at SERVER
    [05:37:19] [Server thread/INFO] [FML]: Processing ObjectHolder annotations
    [05:37:20] [Server thread/INFO] [FML]: Found 1272 ObjectHolder annotations
    [05:37:20] [Server thread/INFO] [FML]: Identifying ItemStackHolder annotations
    [05:37:20] [Server thread/INFO] [FML]: Found 2 ItemStackHolder annotations
    [05:37:20] [Server thread/INFO] [FML]: Configured a dormant chunk cache size of 0
    [05:37:20] [Forge Version Check/INFO] [forge.VersionCheck]: [dsurround] Starting version check at https://raw.githubusercontent.com/OreCruncher/DynamicSurroundings/master/version.json
    [05:37:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `molecular_transformer`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.
    [05:37:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `quantum_generator`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.
    [05:37:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `advanced_solar_panel`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.
    [05:37:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `hybrid_solar_panel`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.
    [05:37:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `ultimate_solar_panel`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.
    [05:37:25] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `advanced_solar_panels` for name `quantum_solar_panel`, expected `ic2`. This could be a intended override, but in most cases indicates a broken mod.
    [05:37:34] [Forge Version Check/INFO] [forge.VersionCheck]: [dsurround] Found status: OUTDATED Target: 3.5.1.1
    [05:37:34] [Forge Version Check/INFO] [forge.VersionCheck]: [immersiveengineering] Starting version check at https://raw.githubusercontent.com/BluSunrize/ImmersiveEngineering/master/changelog.json
    [05:37:36] [Forge Version Check/INFO] [forge.VersionCheck]: [immersiveengineering] Found status: OUTDATED Target: 0.12-87
    [05:37:36] [Forge Version Check/INFO] [forge.VersionCheck]: [gottschcore] Starting version check at https://raw.githubusercontent.com/gottsch/gottsch-minecraft-GottschCore/master/GottschCore1.12.2/update.json
    [05:37:36] [Forge Version Check/INFO] [forge.VersionCheck]: [gottschcore] Found status: OUTDATED Target: 1.5.1
    [05:37:36] [Forge Version Check/INFO] [forge.VersionCheck]: [securitycraft] Starting version check at https://www.github.com/Geforce132/SecurityCraft/raw/master/Updates/Forge.json
    [05:37:38] [Forge Version Check/INFO] [forge.VersionCheck]: [securitycraft] Found status: OUTDATED Target: v1.8.10
    [05:37:38] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftlib] Starting version check at https://mod-buildcraft.com/version/versions.json
    [05:37:40] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftlib] Found status: OUTDATED Target: 7.99.20
    [05:37:40] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Starting version check at http://files.minecraftforge.net/maven/net/minecraftforge/forge/promotions_slim.json
    [05:37:41] [Forge Version Check/INFO] [forge.VersionCheck]: [forge] Found status: UP_TO_DATE Target: null
    [05:37:41] [Forge Version Check/INFO] [forge.VersionCheck]: [dungeons2] Starting version check at https://raw.githubusercontent.com/gottsch/gottsch-minecraft-Dungeons2/master/Dungeons2-1.12.2/update.json
    [05:37:41] [Forge Version Check/INFO] [forge.VersionCheck]: [dungeons2] Found status: OUTDATED Target: 1.3.3
    [05:37:41] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftcore] Starting version check at https://mod-buildcraft.com/version/versions.json
    [05:37:41] [Forge Version Check/INFO] [forge.VersionCheck]: [buildcraftcore] Found status: OUTDATED Target: 7.99.20
    [05:37:44] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 328 out of 328 recipes for shaped recipes
    [05:37:44] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 73 out of 73 recipes for shapeless recipes
    [05:37:44] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 41 out of 41 recipes for solid uu recipes
    [05:37:44] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 27 out of 27 recipes for furnace recipes
    [05:37:44] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 5 out of 5 recipes for blast furnace recipes
    [05:37:44] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 14 out of 14 recipes for block cutter recipes
    [05:37:44] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 50 out of 50 recipes for compressor recipes
    [05:37:44] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 12 out of 12 recipes for extractor recipes
    [05:37:44] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 74 out of 74 recipes for macerator recipes
    [05:37:44] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 5 out of 5 recipes for metal former cutting recipes
    [05:37:44] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 9 out of 9 recipes for metal former extruding recipes
    [05:37:44] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 14 out of 14 recipes for metal former rolling recipes
    [05:37:44] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 8 out of 8 recipes for ore washing recipes
    [05:37:44] [Server thread/INFO] [ic2.Recipe]: Successfully loaded 26 out of 26 recipes for thermal centrifuge recipes
    [05:37:46] [Server thread/INFO] [advanced_solar_panels]: Loading ASP Config from C:\MS Minecraft Server\config\advanced_solar_panels.cfg
    [05:37:46] [Server thread/INFO] [advanced_solar_panels]: Loading MT Recipes from C:\MS Minecraft Server\config\advanced_solar_panels_MTRecipes.cfg
    [05:37:47] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ageofweaponstableofages`, expected `ageofweapons`. This could be a intended override, but in most cases indicates a broken mod.
    [05:37:47] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ageofweaponscrusher`, expected `ageofweapons`. This could be a intended override, but in most cases indicates a broken mod.
    [05:37:54] [Server thread/INFO] [BuildCraft]: 
    [05:37:54] [Server thread/INFO] [BuildCraft]: Starting BuildCraft 7.99.14
    [05:37:54] [Server thread/INFO] [BuildCraft]: Copyright (c) the BuildCraft team, 2011-2017
    [05:37:54] [Server thread/INFO] [BuildCraft]: https://www.mod-buildcraft.com
    [05:37:54] [Server thread/INFO] [BuildCraft]: Detailed Build Information:
    [05:37:54] [Server thread/INFO] [BuildCraft]:   Branch 7.99.14
    [05:37:54] [Server thread/INFO] [BuildCraft]:   Commit 3f79ce577ba7a3a75ebe3d6733f14841d8bd204a
    [05:37:54] [Server thread/INFO] [BuildCraft]:     Finalise build for 7.99.14. Fix gradle builder failing to handle """" chars properly. Update changelog.
    [05:37:54] [Server thread/INFO] [BuildCraft]:     committed by AlexIIL
    [05:37:54] [Server thread/INFO] [BuildCraft]: 
    [05:37:54] [Server thread/INFO] [BuildCraft]: Loaded Modules:
    [05:37:54] [Server thread/INFO] [BuildCraft]:   - lib
    [05:37:54] [Server thread/INFO] [BuildCraft]:   - core
    [05:37:54] [Server thread/INFO] [BuildCraft]:   - builders
    [05:37:54] [Server thread/INFO] [BuildCraft]:   - energy
    [05:37:54] [Server thread/INFO] [BuildCraft]:   - factory
    [05:37:54] [Server thread/INFO] [BuildCraft]:   - robotics
    [05:37:54] [Server thread/INFO] [BuildCraft]:   - silicon
    [05:37:54] [Server thread/INFO] [BuildCraft]:   - transport
    [05:37:54] [Server thread/INFO] [BuildCraft]: Missing Modules:
    [05:37:54] [Server thread/INFO] [BuildCraft]:   - compat
    [05:37:54] [Server thread/INFO] [BuildCraft]: 
    [05:37:56] [Server thread/INFO] [BuildCraft]: [debugger] Not a dev environment!
    [05:38:00] [Server thread/WARN] [CD4017BE_lib|RecipeAPI]: Problem occoured adding ImmersiveEngineering handler CrusherRecipe: java.lang.NoSuchMethodException: blusunrize.immersiveengineering.api.crafting.CrusherRecipe.removeRecipes(net.minecraft.item.ItemStack)
    [05:38:00] [Server thread/WARN] [CD4017BE_lib|RecipeAPI]: Problem occoured adding ImmersiveEngineering handler FermenterRecipe: java.lang.NoSuchMethodException: blusunrize.immersiveengineering.api.crafting.FermenterRecipe.removeRecipes(net.minecraft.item.ItemStack)
    [05:38:00] [Server thread/WARN] [CD4017BE_lib|RecipeAPI]: Problem occoured adding ImmersiveEngineering handler MixerRecipe: java.lang.NoSuchMethodException: blusunrize.immersiveengineering.api.crafting.MixerRecipe.removeRecipes(net.minecraft.item.ItemStack)
    [05:38:00] [Server thread/WARN] [CD4017BE_lib|RecipeAPI]: Problem occoured adding ImmersiveEngineering handler RefineryRecipe: java.lang.NoSuchMethodException: blusunrize.immersiveengineering.api.crafting.RefineryRecipe.removeRecipes(net.minecraft.item.ItemStack)
    [05:38:00] [Server thread/WARN] [CD4017BE_lib|RecipeAPI]: Problem occoured adding ImmersiveEngineering handler SqueezerRecipe: java.lang.NoSuchMethodException: blusunrize.immersiveengineering.api.crafting.SqueezerRecipe.removeRecipes(net.minecraft.item.ItemStack)
    [05:38:00] [Server thread/INFO] [CD4017BE_lib|RecipeAPI]: added ImmersiveEngineering wrapper module
    [05:38:00] [Server thread/INFO] [STDOUT]: [cd4017be.lib.script.ScriptFiles:createCompiledPackage:43]: > compiled
    [05:38:00] [Server thread/INFO] [RECIPE_SCRIPT]: skipped core.PRE_INIT
    [05:38:00] [Server thread/INFO] [CD4017BE_lib]: added Open Computers Energy-API with 1000.0 J / OC-unit
    [05:38:00] [Server thread/INFO] [CD4017BE_lib]: added Forge Energy-API with 100.0 J / Flux
    [05:38:00] [Server thread/INFO] [CD4017BE_lib]: added IC2 Energy-API with 400.0 J / EU
    [05:38:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `species_tile_entity`, expected `dynamictrees`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bonsai_tile_entity`, expected `dynamictrees`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:02] [Server thread/INFO] [wizardry]: o͡͡͡╮༼ ಠДಠ à¼½â•­oÍ¡Í¡Í¡â”?☆゚.*・。゚ IT'S LEVI-OH-SA, NOT LEVIOSAA
    [05:38:03] [Server thread/INFO] [wizardry]:     > Found manifest file. Reading...
    [05:38:03] [Server thread/INFO] [wizardry]:     >  |
    [05:38:03] [Server thread/INFO] [wizardry]:     >  |_ Category found: fire_recipes
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ sky_dust: -1314925763
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ devil_dust_secondary: -613602679
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ devil_dust: 152898967
    [05:38:03] [Server thread/INFO] [wizardry]:     >  |
    [05:38:03] [Server thread/INFO] [wizardry]:     >  |_ Category found: fluid_recipes
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ mana_orb: 952469434
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ wisdom_stairs: -1459509650
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ wisdom_log: 1357745167
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ temp_real_halo: 2097916486
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ nacre: 1121026437
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ wisdom_stick: -696918271
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ wisdom_plank: -1583206240
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ mana_battery: 1665606172
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ codex: -273995665
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ wisdom_slab: -2015098351
    [05:38:03] [Server thread/INFO] [wizardry]:     >  |
    [05:38:03] [Server thread/INFO] [wizardry]:     >  |_ Category found: modules
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ modifier_increase_speed: -1579963150
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_place: -421289969
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_burn: 35504744
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_zoom: -897004035
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_break: 128535786
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ shape_projectile: -1235329677
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_time_slow: -162385748
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ shape_self: 677607573
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_vanish: -758613488
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_low_gravity: -702227048
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ shape_beam: -90790292
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_lightning: -392159778
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_leap: -753850289
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ modifier_increase_aoe: -1004102868
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ shape_cone: -1219085543
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_frost: 1524211684
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_gravity_well: 1171369937
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_phase: 1251761030
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_leech: 2119672769
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_disarm: 1105516532
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_crasher_fall: 495775168
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_telekinesis: 1930771192
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_substitution: -535841596
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ modifier_increase_potency: -431060611
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_anti_gravity_well: -2142232894
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_thrive: -527807423
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ shape_touch: 472712715
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ shape_zone: 1757620271
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_backup: 1606330036
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ effect_light: -947078199
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ modifier_extend_range: 1071718841
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ event_collide_block: -437822181
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ modifier_extend_time: 899625958
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ event_collide_entity: 223649892
    [05:38:03] [Server thread/INFO] [wizardry]:     >  | |_ modifier_exception: 542988723
    [05:38:03] [Server thread/INFO] [wizardry]:     >  |____________________________________/
    [05:38:10] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `temperature_spread`, expected `toughasnails`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:11] [Server thread/INFO] [forestry]: Module BuildCraft 6 Statements Module failed to load: Compatible BuildCraftAPI|statements version not found
    [05:38:11] [Server thread/INFO] [forestry]: Module Better With Mods Module failed to load: Better With Mods not found
    [05:38:11] [Server thread/INFO] [forestry]: Module BuildCraft 6 Recipes Module failed to load: Compatible BuildCraftAPI|recipes version not found
    [05:38:11] [Server thread/INFO] [forestry]: Module TechReborn Module failed to load: TechReborn not found
    [05:38:11] [Server thread/INFO] [forestry]: Module Roots Module failed to load: Roots not found
    [05:38:11] [Server thread/INFO] [forestry]: Module EnderIO Module failed to load: EnderIO not found
    [05:38:11] [Server thread/INFO] [forestry]: Module Extra Utilities Module failed to load: Extra Utilities not found
    [05:38:11] [Server thread/INFO] [forestry]: Module rustic Module failed to load: Rustic not found
    [05:38:11] [Server thread/INFO] [forestry]: Module BuildCraft 6 Fuels Module failed to load: Compatible BuildCraftAPI|fuels version not found
    [05:38:11] [Server thread/INFO] [forestry]: Module Mystical Agriculture Module failed to load: Mystical Agriculture not found
    [05:38:11] [Server thread/INFO] [forestry]: Module Actually Additions Module failed to load: Actually Additions not found
    [05:38:11] [Server thread/INFO] [forestry]: Module Natura Module failed to load: Natura not found
    [05:38:19] [Server thread/INFO] [Galacticraft]: Galacticraft oil is not default, issues may occur.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `apple`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `wheat`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `potato`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `carrot`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `beetroot`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `melon`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `beef`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_beef`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `chicken`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_chicken`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `porkchop`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_porkchop`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `rabbit`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_rabbit`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `mutton`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_mutton`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cod`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_cod`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `salmon`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cooked_salmon`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `clownfish`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pufferfish`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `mushroom_stew`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bread`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cookie`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `baked_potato`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pumpkin_pie`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `rabbit_stew`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:27] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `beetroot_soup`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:33] [Immersive Engineering Contributors Thread/INFO] [immersiveengineering]: Attempting to download special revolvers from GitHub
    [05:38:33] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `industrialwiresic2connectortin`, expected `industrialwires`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:33] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `industrialwiresic2connectorcopper`, expected `industrialwires`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:33] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `industrialwiresic2connectorgold`, expected `industrialwires`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:33] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `industrialwiresic2connectorhv`, expected `industrialwires`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:33] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `industrialwiresic2connectorglass`, expected `industrialwires`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:36] [Morph Resource Thread/INFO] [Morph]: Loaded NBT modifiers for presumably 18 Minecraft mobs
    [05:38:39] [Server thread/INFO] [opencomputers]: Updating config from version '@VERSION@' to '@VERSION@'.
    [05:38:39] [Server thread/INFO] [opencomputers]: Updating setting 'opencomputers.switch.relayDelayUpgrade'. 
    [05:38:39] [Server thread/INFO] [opencomputers]: Updating setting 'opencomputers.nanomachines.potionWhitelist'. 
    [05:38:39] [Server thread/INFO] [opencomputers]: Updating setting 'opencomputers.power.cost.wirelessCostPerRange'. 
    [05:38:39] [Server thread/INFO] [opencomputers]: Updating setting 'opencomputers.misc.maxWirelessRange'. 
    [05:38:39] [Server thread/INFO] [opencomputers]: Updating setting 'opencomputers.misc.maxOpenPorts'. 
    [05:38:39] [Server thread/INFO] [opencomputers]: Updating setting 'opencomputers.computer.cpuComponentCount'. 
    [05:38:39] [Server thread/INFO] [opencomputers]: Initializing blocks and items.
    [05:38:41] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `adapter`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:41] [Server thread/INFO] [OpenComputers]: Injecting interface ic2.api.energy.tile.IEnergySink into li.cil.oc.common.tileentity.traits.power.IndustrialCraft2Experimental.
    [05:38:41] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `assembler`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:41] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `cable`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:41] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `capacitor`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:41] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `carpetedcapacitor`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:41] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `case`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:41] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `charger`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `diskdrive`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `disassembler`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `keyboard`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `hologram`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `geolyzer`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `microcontroller`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `motionsensor`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `netsplitter`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `powerconverter`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `powerdistributor`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `print`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `printer`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `raid`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `redstone`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `relay`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `robot`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `screen`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `rack`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `transposer`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `oc` for name `waypoint`, expected `opencomputers`. This could be a intended override, but in most cases indicates a broken mod.
    [05:38:43] [Server thread/INFO] [OpenComputers]: Injecting interface ic2.api.item.IBoxable into li.cil.oc.common.item.Wrench.
    [05:38:43] [Server thread/INFO] [OpenComputers]: Injecting interface ic2.api.item.ISpecialElectricItem into li.cil.oc.common.item.traits.Chargeable.
    [05:38:45] [Server thread/INFO] [opencomputers]: Initializing additional OreDict entries.
    [05:38:45] [Server thread/INFO] [opencomputers]: Initializing OpenComputers API.
    [05:39:07] [Server thread/INFO] [opencomputers]: Found a compatible native library: 'OpenComputersMod-1.7.2.67-lua52-native.64.dll'.
    [05:39:07] [Server thread/INFO] [opencomputers]: Found a compatible native library: 'OpenComputersMod-1.7.2.67-lua53-native.64.dll'.
    [05:39:07] [Server thread/INFO] [opencomputers]: Done with pre init phase.
    [05:39:10] [Server thread/INFO] [Treecapitator]: Proceeding to load tree/mod configs from file.
    [05:39:18] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `crafting_plate`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:18] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `halo_infuser`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:18] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `jar`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:18] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `light`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:18] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `magicians_worktable`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:18] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `mana_battery`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:18] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `mana_magnet`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:18] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `mana_vacuum`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:18] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `pedestal`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:18] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `wizardry` for name `unicorn_trail`, expected `librarianliblate`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bookcase`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `shelf`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `markerpole`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `clipboard`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bibliolight`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `furniturepaneler`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `potionshelf`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `toolrack`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `label`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `desk`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `table`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `seat`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `fancysign`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `fancyworkbench`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `framedchest`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `mapframe`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `case`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `clock`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `paintingframeborderless`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `paintingframefancy`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:19] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `paintingframeflat`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `paintingframemiddle`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `paintingframesimple`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `paintingpress`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `armorstand`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `typesettingtable`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `printingpress`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cookiejar`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `dinnerplate`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `discrack`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `swordpedestal`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `bell`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `typewriter`, expected `bibliocraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `eb_nest_entity`, expected `exoticbirds`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `eb_egg_sorter_entity`, expected `exoticbirds`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `eb_egg_incubator_entity`, expected `exoticbirds`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `eb_phoenix_egg_entity`, expected `exoticbirds`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.iron`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.gold`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.diamond`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.copper`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.silver`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.crystal`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.obsidian`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironchest.dirtchest9000`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.iron`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.gold`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.diamond`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.copper`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.silver`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.crystal`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:20] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `ironshulkerbox.obsidian`, expected `ironchest`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:23] [Server thread/INFO] [FML]: Applying holder lookups
    [05:39:23] [Server thread/INFO] [FML]: Holder lookups applied
    [05:39:25] [Server thread/WARN] [forestry]: Missing block: driedDirt
    [05:39:25] [Server thread/WARN] [forestry]: Missing block: overgrownNetherrack
    [05:39:25] [Server thread/WARN] [forestry]: Missing block: cragRock
    [05:39:25] [Server thread/WARN] [forestry]: Missing block: ashStone
    [05:39:25] [Server thread/WARN] [forestry]: Missing block: bopGrass
    [05:39:25] [Server thread/WARN] [forestry]: Missing block: newBopGrass
    [05:39:25] [Server thread/WARN] [forestry]: Missing block: longGrass
    [05:39:25] [Server thread/WARN] [forestry]: Missing block: hardDirt
    [05:39:25] [Server thread/WARN] [forestry]: Missing block: hardSand
    [05:39:25] [Server thread/WARN] [forestry]: Missing block: originGrass
    [05:39:25] [Server thread/WARN] [forestry]: Missing block: ash
    [05:39:25] [Server thread/WARN] [forestry]: Missing block: newBopDirt
    [05:39:25] [Server thread/WARN] [forestry]: Missing block: petals
    [05:39:25] [Server thread/INFO] [FML]: Applying holder lookups
    [05:39:25] [Server thread/INFO] [FML]: Holder lookups applied
    [05:39:26] [Server thread/INFO] [dsurround]: Registering sounds
    [05:39:27] [Server thread/INFO] [dsurround]: 894 sound events in registry
    [05:39:27] [Server thread/INFO] [FML]: Applying holder lookups
    [05:39:27] [Server thread/INFO] [FML]: Holder lookups applied
    [05:39:27] [Server thread/INFO] [FML]: Applying holder lookups
    [05:39:27] [Server thread/INFO] [FML]: Holder lookups applied
    [05:39:27] [Server thread/INFO] [FML]: Injecting itemstacks
    [05:39:27] [Server thread/INFO] [FML]: Itemstack injection complete
    [05:39:27] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Loading properties
    [05:39:27] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Default game type: ADVENTURE
    [05:39:27] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Generating keypair
    [05:39:27] [Server thread/INFO] [net.minecraft.server.dedicated.DedicatedServer]: Starting Minecraft server on *:25565
    [05:39:27] [Server thread/INFO] [net.minecraft.network.NetworkSystem]: Using default channel type
    [05:39:30] [Server thread/ERROR] [FML]: Parsing error loading recipe bibliocraft:markerpole
    com.google.gson.JsonSyntaxException: Invalid pattern: empty pattern not allowed
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$init$14(CraftingHelper.java:481) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:409) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:822) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:668) ~[CraftingHelper.class:?]
        at java.util.ArrayList.forEach(Unknown Source) [?:1.8.0_161]
        at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:620) [CraftingHelper.class:?]
        at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
        at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
        at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:219) [nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [05:39:33] [Server thread/ERROR] [FML]: Parsing error loading recipe bibliocraft:clipboard
    com.google.gson.JsonSyntaxException: Invalid pattern: empty pattern not allowed
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$init$14(CraftingHelper.java:481) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:409) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:822) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:668) ~[CraftingHelper.class:?]
        at java.util.ArrayList.forEach(Unknown Source) [?:1.8.0_161]
        at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:620) [CraftingHelper.class:?]
        at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
        at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
        at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:219) [nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [05:39:33] [Server thread/ERROR] [FML]: Parsing error loading recipe wizardry:syringe/fill_mana_syringe
    com.google.gson.JsonSyntaxException: Unknown item 'wizardry:mana_orb'
        at net.minecraftforge.common.crafting.CraftingHelper.getItemStackBasic(CraftingHelper.java:260) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$init$16(CraftingHelper.java:537) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.getIngredient(CraftingHelper.java:202) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$init$15(CraftingHelper.java:524) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.getRecipe(CraftingHelper.java:409) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.lambda$loadRecipes$22(CraftingHelper.java:711) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.findFiles(CraftingHelper.java:822) ~[CraftingHelper.class:?]
        at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:668) ~[CraftingHelper.class:?]
        at java.util.ArrayList.forEach(Unknown Source) [?:1.8.0_161]
        at net.minecraftforge.common.crafting.CraftingHelper.loadRecipes(CraftingHelper.java:620) [CraftingHelper.class:?]
        at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:742) [Loader.class:?]
        at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) [FMLServerHandler.class:?]
        at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) [FMLCommonHandler.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:219) [nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [05:39:45] [Server thread/INFO] [THAUMCRAFT]: Checking for mod & oredict compatibilities
    [05:39:45] [Server thread/INFO] [THAUMCRAFT]: Adding entities to MFR safari net blacklist.
    [05:39:45] [Server thread/INFO] [FML]: Applying holder lookups
    [05:39:45] [Server thread/INFO] [FML]: Holder lookups applied
    [05:39:47] [Server thread/INFO] [advanced_solar_panels]: Loading Molecular Transformer recipes from file
    [05:39:47] [Server thread/WARN] [advanced_solar_panels]: Skipping line 27 as the output (OreDict:dustChrome) cannot be resolved
    [05:39:47] [Server thread/WARN] [advanced_solar_panels]: Skipping line 28 as the output (OreDict:ingotChrome) cannot be resolved
    [05:39:47] [Server thread/WARN] [advanced_solar_panels]: Skipping line 29 as the output (OreDict:gemCertusQuartz) cannot be resolved
    [05:39:47] [Server thread/WARN] [advanced_solar_panels]: Skipping line 33 as the output (OreDict:ingotPlatinum) cannot be resolved
    [05:39:47] [Server thread/INFO] [advanced_solar_panels]: Load complete, successfully loaded 18 out of 22.
    [05:39:51] [Server thread/INFO] [CD4017BE_lib]: OpenComputers API found
    [05:39:51] [Server thread/INFO] [RECIPE_SCRIPT]: skipped core.INIT
    [05:39:53] [Server thread/INFO] [wizardry]: <<========================================================================>>
    [05:39:53] [Server thread/INFO] [wizardry]: > Starting fluid recipe loading.
    [05:39:54] [Server thread/INFO] [wizardry]: > Finished mana recipe loading.
    [05:39:54] [Server thread/INFO] [wizardry]: <<========================================================================>>
    [05:39:54] [Server thread/INFO] [wizardry]: <<========================================================================>>
    [05:39:54] [Server thread/INFO] [wizardry]: > Starting fire recipe loading.
    [05:39:54] [Server thread/INFO] [wizardry]: > Finished fire recipe loading.
    [05:39:54] [Server thread/INFO] [wizardry]: <<========================================================================>>
    [05:39:54] [Server thread/INFO] [wizardry]:  _______________________________________________________________________\\
    [05:39:54] [Server thread/INFO] [wizardry]:  | Starting module registration
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_burn
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:blaze_powder
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -50116
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -6225920
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 2.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 2.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_burn registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_low_gravity
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:feather
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -1
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -16711681
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 60.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 40.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 2.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 2.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 40.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_low_gravity registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_gravity_well
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item wizardry:bomb
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item Meta:          0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -65536
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -22016
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 0.5
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 0.5
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 3.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 3.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 50.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 64.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_gravity_well registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module shape_touch
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:beef
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module shape_touch registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module event_collide_entity
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:apple
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module event_collide_entity registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_vanish
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:fermented_spider_eye
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -1
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -12398127
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 200.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 60.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_vanish registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_backup
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:rotten_flesh
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -13101312
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -7471104
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 300.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 300.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 30.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_backup registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module modifier_increase_potency
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:prismarine_crystals
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |___ Found Modifiers. About to process them
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_potency.json: ADD -> potency, 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_potency.json: MULTIPLY -> mana, 1.1
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_potency.json: MULTIPLY -> burnout, 1.1
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |___ Modifiers Registered Successfully.
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module modifier_increase_potency registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_leap
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:rabbit_foot
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -1
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -1
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 20.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 64.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_leap registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_lightning
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:ice
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -36115
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -65312
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 70.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 4.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 4.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_lightning registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module modifier_increase_aoe
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:emerald
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |___ Found Modifiers. About to process them
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_aoe.json: ADD -> area, 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_aoe.json: MULTIPLY -> mana, 1.2
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_aoe.json: MULTIPLY -> burnout, 1.2
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |___ Modifiers Registered Successfully.
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module modifier_increase_aoe registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_anti_gravity_well
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item wizardry:bomb
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item Meta:          1
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -16771585
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -16711711
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 0.5
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 0.5
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 3.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 3.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 50.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 64.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_anti_gravity_well registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_zoom
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item wizardry:fairy_wings
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -769330
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -12461580
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 32.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_zoom registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_place
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:clay
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -13697025
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -786433
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 64.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_place registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_telekinesis
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:reeds
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -1
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -1
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 3.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 3.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_telekinesis registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_leech
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:lead
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -16711681
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -16711839
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 4.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 30.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 4.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_leech registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module modifier_extend_time
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:gold_nugget
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |___ Found Modifiers. About to process them
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_extend_time.json: ADD -> duration, 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_extend_time.json: MULTIPLY -> mana, 1.1
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_extend_time.json: MULTIPLY -> burnout, 1.1
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |___ Modifiers Registered Successfully.
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module modifier_extend_time registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module shape_zone
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:glass
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 20.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 3.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 3.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 100.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module shape_zone registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_frost
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:snowball
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -1
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -1
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 40.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_frost registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module modifier_exception
    [05:39:54] [Server thread/ERROR] [wizardry]: | | |_ SOMETHING WENT WRONG! Item for module modifier_exception does not exist 'wizardry:syringe_blood'
    [05:39:54] [Server thread/ERROR] [wizardry]: | |___ Failed to register module modifier_exception
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module modifier_extend_range
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:dye
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |___ Found Modifiers. About to process them
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_extend_range.json: ADD -> range, 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_extend_range.json: MULTIPLY -> mana, 1.1
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_extend_range.json: MULTIPLY -> burnout, 1.1
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |___ Modifiers Registered Successfully.
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module modifier_extend_range registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_light
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:glowstone
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -16711681
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -65536
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 20.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_light registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_phase
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:ender_pearl
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -8388608
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -65536
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 200.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 40.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base chargeup values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 30.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 0.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 4.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 0.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.5
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_phase registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_substitution
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:ender_eye
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -65536
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -16711681
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 64.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_substitution registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module modifier_increase_speed
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:dragon_breath
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |___ Found Modifiers. About to process them
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_speed.json: ADD -> speed, 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_speed.json: MULTIPLY -> mana, 1.1
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Loading AttributeModifier for modifier_increase_speed.json: MULTIPLY -> burnout, 1.1
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | | |_ AttributeModifier registered successfully
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |___ Modifiers Registered Successfully.
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module modifier_increase_speed registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module shape_beam
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item wizardry:unicorn_horn
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 30.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module shape_beam registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module event_collide_block
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:coal
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module event_collide_block registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_disarm
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:blaze_rod
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -1
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -65536
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_disarm registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_time_slow
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:red_flower
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -7536640
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -23131
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 300.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 200.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 80.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 2.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 2.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 40.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_time_slow registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module shape_cone
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:gunpowder
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 40.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 16.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 32.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module shape_cone registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module shape_projectile
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:nether_wart
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 20.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 60.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 10.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base speed values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module shape_projectile registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_break
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:sand
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -5952982
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -22617
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base area values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 64.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 0.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 50.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 1.5
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_break registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_crasher_fall
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:obsidian
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -65536
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -65536
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 300.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base range values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 2.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 2.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base duration values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 40.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 5.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_crasher_fall registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module effect_thrive
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:bone
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Primary Color:      -16711681
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Secondary Color:    -16711681
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 100.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 50.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base potency values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Minimum: 3.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Maximum: 20.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 3.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module effect_thrive registered successfully!
    [05:39:54] [Server thread/INFO] [wizardry]:  | |
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Registering module shape_self
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found Item minecraft:diamond
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base mana values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base burnout values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | | |_ Found base cooldown values:
    [05:39:54] [Server thread/INFO] [wizardry]:  | | | |_ Base: 30.0
    [05:39:54] [Server thread/INFO] [wizardry]:  | |_ Module shape_self registered successfully!
    [05:39:54] [Server thread/ERROR] [wizardry]: |
    [05:39:54] [Server thread/ERROR] [wizardry]: |_ Missing or ignored modules detected in modules directory:
    [05:39:54] [Server thread/ERROR] [wizardry]: | |_ modifier_exception
    [05:39:54] [Server thread/INFO] [wizardry]:  |
    [05:39:54] [Server thread/INFO] [wizardry]:  | Module registration processing complete! (ᵔᴥᵔ)
    [05:39:54] [Server thread/INFO] [wizardry]:  |_______________________________________________________________________//
    [05:39:56] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `forestry.cocoon`, expected `forestry`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc treasure chest`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc air distributor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc air collector`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc oxygen pipe`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc air lock frame`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc refinery`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc nasa workbench`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc deconstructor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc air compressor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc fuel loader`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc landing pad`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc landing pad full`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc space station`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc dummy block`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc air sealer`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc dungeon boss spawner`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc oxygen detector`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc buggy fueler`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc buggy fueler single`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc cargo loader`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc cargo unloader`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc parachest tile`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc solar panel`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc radio telescope`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc magnetic crafting table`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc energy storage module`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc coal generator`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc electric furnace`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc aluminum wire`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc switchable aluminum wire`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc fallen meteor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc ingot compressor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc electric ingot compressor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc circuit fabricator`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc air lock controller`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc oxygen storage module`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc oxygen decompressor`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc space station thruster`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc arc lamp`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc view screen`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc panel lighting`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc telemetry unit`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc painter`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc fluid tank`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc player detector`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc platform`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc emergency post`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc null tile`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc sealed ic2 cable`, expected `galacticraftcore`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc slimeling egg`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc tier 2 treasure chest`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc planet terraformer`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc cryogenic chamber`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc gas liquefier`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc methane synthesizer`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc water electrolyzer`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc mars dungeon spawner`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc launch controller`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc beam reflector`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc beam receiver`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc short range telepad`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc fake short range telepad`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc astro miner base builder`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc astro miner base`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc venus spout`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc venus dungeon spawner`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc tier 3 treasure chest`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc geothermal generator`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:39:58] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `gc crashed probe`, expected `galacticraftplanets`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:00] [Server thread/INFO] [FML]: minecraft:ocean;OCEAN;0.5;false;false;false;[WATER, OCEAN]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:plains;MEDIUM;0.8;false;false;false;[PLAINS]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:desert;WARM;2.0;false;false;false;[DRY, HOT, SANDY]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:extreme_hills;MEDIUM;0.2;false;false;false;[MOUNTAIN, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:forest;MEDIUM;0.7;false;false;false;[FOREST]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:taiga;MEDIUM;0.25;false;false;false;[CONIFEROUS, COLD, FOREST]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:swampland;MEDIUM;0.8;true;false;false;[WET, SWAMP]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:river;MEDIUM;0.5;false;false;false;[WATER, RIVER]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:hell;WARM;2.0;false;false;false;[DRY, HOT, NETHER]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:sky;MEDIUM;0.5;false;false;false;[END, DRY, COLD]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:frozen_ocean;OCEAN;0.0;false;false;true;[SNOWY, WATER, COLD, OCEAN]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:frozen_river;COLD;0.0;false;false;true;[SNOWY, WATER, COLD, RIVER]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:ice_flats;COLD;0.0;false;false;true;[SNOWY, COLD, WASTELAND]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:ice_mountains;COLD;0.0;false;false;true;[SNOWY, COLD, MOUNTAIN]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mushroom_island;MEDIUM;0.9;true;false;false;[MUSHROOM, RARE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mushroom_island_shore;MEDIUM;0.9;true;false;false;[BEACH, MUSHROOM, RARE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:beaches;MEDIUM;0.8;false;false;false;[BEACH]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:desert_hills;WARM;2.0;false;false;false;[DRY, HOT, SANDY, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:forest_hills;MEDIUM;0.7;false;false;false;[FOREST, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:taiga_hills;MEDIUM;0.25;false;false;false;[CONIFEROUS, COLD, FOREST, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:smaller_extreme_hills;MEDIUM;0.2;false;false;false;[MOUNTAIN]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:jungle;MEDIUM;0.95;true;false;false;[WET, HOT, DENSE, JUNGLE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:jungle_hills;MEDIUM;0.95;true;false;false;[WET, HOT, DENSE, JUNGLE, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:jungle_edge;MEDIUM;0.95;false;false;false;[WET, HOT, FOREST, RARE, JUNGLE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:deep_ocean;OCEAN;0.5;false;false;false;[WATER, OCEAN]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:stone_beach;MEDIUM;0.2;false;false;false;[BEACH]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:cold_beach;COLD;0.05;false;false;true;[SNOWY, COLD, BEACH]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:birch_forest;MEDIUM;0.6;false;false;false;[FOREST]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:birch_forest_hills;MEDIUM;0.6;false;false;false;[FOREST, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:roofed_forest;MEDIUM;0.7;false;false;false;[FOREST, SPOOKY, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:taiga_cold;COLD;-0.5;false;false;true;[CONIFEROUS, SNOWY, COLD, FOREST]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:taiga_cold_hills;COLD;-0.5;false;false;true;[CONIFEROUS, SNOWY, COLD, FOREST, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:redwood_taiga;MEDIUM;0.3;false;false;false;[CONIFEROUS, COLD, FOREST]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:redwood_taiga_hills;MEDIUM;0.3;false;false;false;[CONIFEROUS, COLD, FOREST, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:extreme_hills_with_trees;MEDIUM;0.2;false;false;false;[MOUNTAIN, FOREST, SPARSE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:savanna;WARM;1.2;false;false;false;[SAVANNA, HOT, PLAINS, SPARSE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:savanna_rock;WARM;1.0;false;false;false;[SAVANNA, HOT, PLAINS, SPARSE, RARE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mesa;WARM;2.0;false;false;false;[SANDY, MESA]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mesa_rock;WARM;2.0;false;false;false;[SPARSE, SANDY, MESA]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mesa_clear_rock;WARM;2.0;false;false;false;[SANDY, MESA]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:void;MEDIUM;0.5;false;false;false;[VOID]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_plains;MEDIUM;0.8;false;true;false;[PLAINS, RARE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_desert;WARM;2.0;false;true;false;[DRY, HOT, SANDY, RARE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_extreme_hills;MEDIUM;0.2;false;true;false;[MOUNTAIN, SPARSE, RARE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_forest;MEDIUM;0.7;false;true;false;[FOREST, RARE, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_taiga;MEDIUM;0.25;false;true;false;[CONIFEROUS, COLD, MOUNTAIN, FOREST, RARE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_swampland;MEDIUM;0.8;true;true;false;[WET, SWAMP, RARE, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_ice_flats;COLD;0.0;false;true;true;[SNOWY, COLD, RARE, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_jungle;MEDIUM;0.95;true;true;false;[WET, MOUNTAIN, HOT, RARE, DENSE, JUNGLE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_jungle_edge;MEDIUM;0.95;false;true;false;[HOT, SPARSE, RARE, JUNGLE, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_birch_forest;MEDIUM;0.6;false;true;false;[FOREST, RARE, DENSE, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_birch_forest_hills;MEDIUM;0.6;false;true;false;[MOUNTAIN, FOREST, RARE, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_roofed_forest;MEDIUM;0.7;false;true;false;[MOUNTAIN, FOREST, SPOOKY, RARE, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_taiga_cold;COLD;-0.5;false;true;true;[CONIFEROUS, SNOWY, COLD, MOUNTAIN, FOREST, RARE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_redwood_taiga;MEDIUM;0.25;false;true;false;[FOREST, RARE, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_redwood_taiga_hills;MEDIUM;0.25;false;true;false;[FOREST, RARE, DENSE, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_extreme_hills_with_trees;MEDIUM;0.2;false;true;false;[MOUNTAIN, SPARSE, RARE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_savanna;WARM;1.1;false;true;false;[SAVANNA, DRY, MOUNTAIN, HOT, SPARSE, RARE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_savanna_rock;WARM;1.0;false;true;false;[SAVANNA, DRY, HOT, SPARSE, RARE, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_mesa;WARM;2.0;false;true;false;[SAVANNA, DRY, MOUNTAIN, HOT, SPARSE, RARE]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_mesa_rock;WARM;2.0;false;true;false;[DRY, HOT, SPARSE, RARE, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: minecraft:mutated_mesa_clear_rock;WARM;2.0;false;true;false;[SAVANNA, DRY, MOUNTAIN, HOT, SPARSE, RARE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:gravel_beach;MEDIUM;0.6;false;false;false;[BEACH]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:white_beach;WARM;1.0;true;false;false;[BEACH]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:origin_beach;MEDIUM;0.6;false;false;false;[BEACH, RARE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:alps;COLD;-0.25;false;false;true;[SNOWY, DRY, COLD, MOUNTAIN]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:bamboo_forest;MEDIUM;0.9;false;false;false;[WET, FOREST, DENSE, JUNGLE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:bayou;MEDIUM;0.95;true;false;false;[WET, HOT, SWAMP, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:bog;MEDIUM;0.5;true;false;false;[WET, COLD, FOREST, SWAMP]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:boreal_forest;MEDIUM;0.3;false;false;false;[CONIFEROUS, COLD, FOREST, DENSE, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:brushland;WARM;1.5;false;false;false;[SAVANNA, DRY, HOT, SPARSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:chaparral;MEDIUM;0.8;false;false;false;[DRY, PLAINS]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:cherry_blossom_grove;MEDIUM;0.55;false;false;false;[WET, MAGICAL, FOREST, LUSH, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:cold_desert;MEDIUM;0.2;false;false;false;[SNOWY, DRY, COLD]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:coniferous_forest;MEDIUM;0.45;false;false;false;[CONIFEROUS, COLD, FOREST, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:crag;MEDIUM;0.5;false;false;false;[DRY, MAGICAL, COLD, MOUNTAIN, WASTELAND, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:dead_forest;MEDIUM;0.3;false;false;false;[DRY, COLD, FOREST, SPARSE, DEAD]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:dead_swamp;MEDIUM;0.6;true;false;false;[WET, COLD, SPARSE, SWAMP, DEAD, SPOOKY]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:eucalyptus_forest;MEDIUM;0.95;true;false;false;[WET, FOREST, LUSH, DENSE, JUNGLE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:fen;MEDIUM;0.4;false;false;false;[WET, COLD, FOREST, SWAMP, DEAD, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:flower_field;MEDIUM;0.6;false;false;false;[PLAINS, LUSH]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:grassland;MEDIUM;0.6;false;false;false;[WET, PLAINS, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:grove;MEDIUM;0.6;false;false;false;[WET, PLAINS, FOREST, SPARSE, LUSH]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:highland;MEDIUM;0.6;false;false;false;[WET, MOUNTAIN, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:land_of_lakes;MEDIUM;0.5;true;false;false;[WET, FOREST, SWAMP, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:lavender_fields;MEDIUM;0.7;false;false;false;[MAGICAL, PLAINS, LUSH]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:lush_desert;WARM;1.2;false;false;false;[SAVANNA, DRY, HOT, SANDY, SPARSE, LUSH]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:lush_swamp;MEDIUM;0.7;true;false;false;[WET, SWAMP, LUSH, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:mangrove;MEDIUM;0.85;false;false;false;[WET, WATER, SWAMP, LUSH, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:maple_woods;MEDIUM;0.25;false;false;false;[CONIFEROUS, COLD, FOREST, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:marsh;MEDIUM;0.6;false;false;false;[WET, SWAMP, LUSH]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:meadow;MEDIUM;0.4;false;false;false;[WET, COLD, PLAINS, FOREST, SPARSE, LUSH]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:moor;MEDIUM;0.6;true;false;false;[WET, SWAMP, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:mountain;MEDIUM;0.5;false;false;false;[DRY, MOUNTAIN, FOREST, SPARSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:mystic_grove;MEDIUM;0.7;false;false;false;[WET, MAGICAL, FOREST, RARE, LUSH, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:ominous_woods;MEDIUM;0.6;false;false;false;[WET, MAGICAL, FOREST, SPOOKY, DEAD, RARE, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:orchard;MEDIUM;0.7;false;false;false;[PLAINS, FOREST, DENSE, LUSH]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:outback;WARM;2.0;false;false;false;[SAVANNA, DRY, HOT, SANDY, SPARSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:overgrown_cliffs;MEDIUM;0.95;false;false;false;[WET, MOUNTAIN, LUSH, DENSE, JUNGLE, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:prairie;MEDIUM;0.8;false;false;false;[DRY, PLAINS, SPARSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:quagmire;MEDIUM;0.6;true;false;false;[WET, SWAMP, DEAD, WASTELAND]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:rainforest;MEDIUM;0.95;true;false;false;[WET, FOREST, LUSH, DENSE, JUNGLE, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:redwood_forest;MEDIUM;0.7;false;false;false;[FOREST, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:sacred_springs;MEDIUM;0.85;true;false;false;[WET, MAGICAL, FOREST, RARE, LUSH, DENSE, JUNGLE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:seasonal_forest;MEDIUM;0.4;false;false;false;[COLD, FOREST, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:shield;MEDIUM;0.4;false;false;false;[WET, COLD, FOREST, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:shrubland;MEDIUM;0.6;false;false;false;[DRY, PLAINS, SPARSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:snowy_coniferous_forest;COLD;-0.25;false;false;true;[CONIFEROUS, SNOWY, COLD, FOREST, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:snowy_forest;COLD;-0.25;false;false;true;[WET, SNOWY, COLD, FOREST, SPARSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:steppe;MEDIUM;0.75;false;false;false;[DRY, PLAINS, SANDY]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:temperate_rainforest;MEDIUM;0.75;true;false;false;[WET, FOREST, LUSH, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:tropical_rainforest;WARM;1.0;true;false;false;[WET, HOT, LUSH, DENSE, JUNGLE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:tundra;MEDIUM;0.2;false;false;false;[WET, COLD, SPARSE, DEAD, WASTELAND]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:wasteland;WARM;2.0;false;false;false;[DRY, SPARSE, DEAD, WASTELAND]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:wetland;MEDIUM;0.6;false;false;false;[WET, FOREST, SWAMP, LUSH, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:woodland;MEDIUM;0.7;false;false;false;[DRY, FOREST, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:xeric_shrubland;WARM;1.75;false;false;false;[SAVANNA, DRY, HOT, SANDY, SPARSE, LUSH]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:alps_foothills;COLD;-0.25;false;false;true;[SNOWY, DRY, COLD, MOUNTAIN, FOREST, SPARSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:mountain_foothills;MEDIUM;0.5;false;false;false;[DRY, MOUNTAIN, FOREST, SPARSE, HILLS]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:redwood_forest_edge;MEDIUM;0.7;false;false;false;[FOREST, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:pasture;MEDIUM;0.8;false;false;false;[DRY, PLAINS, SPARSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:glacier;COLD;-0.5;false;false;false;[SNOWY, COLD, WASTELAND]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:oasis;WARM;2.0;false;false;false;[WET, HOT, SANDY, SPARSE, LUSH, JUNGLE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:snowy_tundra;COLD;0.0;false;false;false;[WET, SNOWY, COLD, SPARSE, DEAD, WASTELAND]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:coral_reef;MEDIUM;0.5;false;false;false;[WATER, OCEAN]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:kelp_forest;MEDIUM;0.5;false;false;false;[WATER, OCEAN]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:origin_island;MEDIUM;0.6;false;false;false;[WATER, FOREST, RARE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:tropical_island;MEDIUM;0.95;true;false;false;[WET, WATER, LUSH, DENSE, JUNGLE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:volcanic_island;WARM;1.2;false;false;false;[WATER, DRY, MOUNTAIN, HOT, DEAD, WASTELAND]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:flower_island;MEDIUM;0.8;false;false;false;[WATER, MAGICAL, PLAINS, LUSH, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:corrupted_sands;WARM;2.0;false;false;false;[DRY, HOT, SANDY, NETHER, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:fungi_forest;WARM;2.0;false;false;false;[HOT, MUSHROOM, NETHER, DENSE]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:phantasmagoric_inferno;WARM;2.0;false;false;false;[DRY, MAGICAL, HOT, SPOOKY, NETHER, WASTELAND]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:undergarden;WARM;2.0;false;false;false;[HOT, NETHER, LUSH]
    [05:40:00] [Server thread/INFO] [FML]: biomesoplenty:visceral_heap;WARM;2.0;false;false;false;[WET, HOT, NETHER]
    [05:40:00] [Server thread/INFO] [FML]: buildcraftenergy:oil_ocean;OCEAN;0.5;false;false;false;[WATER, OCEAN]
    [05:40:00] [Server thread/INFO] [FML]: buildcraftenergy:oil_desert;WARM;2.0;false;false;false;[DRY, HOT, SANDY]
    [05:40:00] [Server thread/INFO] [FML]: wizardry:wizardry_underworld;MEDIUM;0.5;false;false;false;[DRY, MAGICAL, COLD, SPOOKY, VOID]
    [05:40:00] [Server thread/INFO] [FML]: galacticraftcore:outer space;MEDIUM;0.5;false;false;false;[DRY, SPARSE, DEAD, SPOOKY]
    [05:40:00] [Server thread/INFO] [FML]: galacticraftplanets:outer space 1;WARM;4.0;false;false;false;[DRY, HOT, SANDY, DEAD]
    [05:40:00] [Server thread/INFO] [FML]: galacticraftplanets:outer space 2;WARM;4.0;false;false;false;[DRY, HOT, SANDY, DEAD]
    [05:40:00] [Server thread/INFO] [FML]: thaumcraft:magical_forest;MEDIUM;0.8;false;false;false;[MAGICAL, FOREST]
    [05:40:00] [Server thread/INFO] [FML]: thaumcraft:eerie;MEDIUM;0.8;false;false;false;[MAGICAL, SPOOKY]
    [05:40:00] [Server thread/INFO] [FML]: thaumcraft:eldritch;MEDIUM;0.8;false;false;false;[END, MAGICAL, SPOOKY]
    [05:40:00] [Server thread/INFO] [FML]: Registering drops for shadedGarden.
    [05:40:00] [Server thread/INFO] [FML]: Registering drops for tropicalGarden.
    [05:40:00] [Server thread/INFO] [FML]: Registering drops for windyGarden.
    [05:40:00] [Server thread/INFO] [FML]: Registering drops for frostGarden.
    [05:40:00] [Server thread/INFO] [FML]: Registering drops for aridGarden.
    [05:40:00] [Server thread/INFO] [FML]: Registering drops for soggyGarden.
    [05:40:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pamapiary`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pammarket`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pamshippingbin`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pampresser`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pamgroundtrap`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pamwatertrap`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pamwaterfilter`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:00] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `pamgrinder`, expected `harvestcraft`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:00] [Thread-10/INFO] [immersiveengineering]: Arc Recycling: Removed 0 old recipes
    [05:40:00] [Thread-10/INFO] [immersiveengineering]: Finished recipe profiler for Arc Recycling, took 156 milliseconds
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmoven`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmfridge`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcabinet`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmfreezer`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmbedsidecabinet`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmmailbox`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcomputer`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmprinter`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmstereo`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmpresent`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmbin`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmwallcabinet`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmbath`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmshowerhead`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmplate`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcouch`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmtoaster`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmchoppingboard`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmblender`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmmicrowave`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmwashingmachine`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmdishwasher`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcabinetkitchen`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcup`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcookiejar`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmtree`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmmirror`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmgrill`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmeski`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmdoormat`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmcrate`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmlightswitch`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmceilingfan`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmdeskcabinet`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmmodernslidingdoor`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmdigitalclock`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmtv`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmkitchencounter`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:03] [Server thread/WARN] [FML]: Potentially Dangerous alternative prefix `minecraft` for name `cfmkitchencounterdrawer`, expected `cfm`. This could be a intended override, but in most cases indicates a broken mod.
    [05:40:05] [Server thread/INFO] [opencomputers]: Registering loot disk 'plan9k' from mod opencomputers.
    [05:40:05] [Server thread/INFO] [opencomputers]: Registering loot disk 'network' from mod opencomputers.
    [05:40:05] [Server thread/INFO] [opencomputers]: Registering loot disk 'openos' from mod opencomputers.
    [05:40:05] [Server thread/INFO] [opencomputers]: Registering loot disk 'data' from mod opencomputers.
    [05:40:05] [Server thread/INFO] [opencomputers]: Registering loot disk 'openloader' from mod opencomputers.
    [05:40:05] [Server thread/INFO] [opencomputers]: Registering loot disk 'builder' from mod opencomputers.
    [05:40:05] [Server thread/INFO] [opencomputers]: Registering loot disk 'generator' from mod opencomputers.
    [05:40:05] [Server thread/INFO] [opencomputers]: Registering loot disk 'oppm' from mod opencomputers.
    [05:40:05] [Server thread/INFO] [opencomputers]: Registering loot disk 'dig' from mod opencomputers.
    [05:40:05] [Server thread/INFO] [opencomputers]: Registering loot disk 'maze' from mod opencomputers.
    [05:40:05] [Server thread/INFO] [opencomputers]: Registering loot disk 'irc' from mod opencomputers.
    [05:40:05] [Server thread/INFO] [opencomputers]: Initializing mod integration.
    [05:40:05] [Server thread/INFO] [opencomputers]: Initializing mod integration for 'forestry'.
    [05:40:05] [Server thread/INFO] [opencomputers]: Initializing mod integration for 'ic2'.
    [05:40:05] [Server thread/INFO] [opencomputers]: Initializing mod integration for 'forge'.
    [05:40:05] [Server thread/INFO] [opencomputers]: Initializing mod integration for 'minecraft'.
    [05:40:05] [Server thread/INFO] [opencomputers]: Initializing mod integration for 'waila'.
    [05:40:05] [Server thread/INFO] [opencomputers]: Initializing mod integration for 'opencomputers'.
    [05:40:07] [Server thread/INFO] [opencomputers]: Found extended redstone mods, enabling tier two redstone card.
    [05:40:07] [Server thread/INFO] [opencomputers]: Initializing recipes.
    [05:40:11] [Server thread/INFO] [opencomputers]: Initializing capabilities.
    [05:40:11] [Server thread/INFO] [opencomputers]: Done with init phase.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new tool durability provider 'li.cil.oc.integration.ic2.EventHandlerIndustrialCraft2.getDurability' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new wrench usage 'li.cil.oc.integration.ic2.EventHandlerIndustrialCraft2.useWrench' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new wrench tool check 'li.cil.oc.integration.ic2.EventHandlerIndustrialCraft2.isWrench' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new item charge implementation 'IndustrialCraft2' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new item charge implementation 'MinecraftForge' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Drone (Tier 1)' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Drone (Tier 2)' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Drone (Creative)' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new disassembler template 'Drone' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Microcontroller (Tier 1)' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Microcontroller (Tier 2)' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Microcontroller (Creative)' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new disassembler template 'Microcontroller' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new disassembler template 'Navigation Upgrade' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Robot (Tier 1)' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Robot (Tier 2)' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Robot (Tier 3)' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Robot (Creative)' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new disassembler template 'Robot' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new disassembler template 'Server' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Tablet (Tier 1)' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Tablet (Tier 2)' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new assembler template 'Tablet (Creative)' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new disassembler template 'Tablet' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new assembler template filter 'li.cil.oc.common.template.TemplateBlacklist.filter' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new wrench usage 'li.cil.oc.integration.opencomputers.ModOpenComputers.useWrench' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new wrench tool check 'li.cil.oc.integration.opencomputers.ModOpenComputers.isWrench' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new item charge implementation 'OpenComputers' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new ink provider 'li.cil.oc.integration.opencomputers.ModOpenComputers.inkCartridgeInkProvider' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new ink provider 'li.cil.oc.integration.opencomputers.ModOpenComputers.dyeInkProvider' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'build' being on disk 'builder' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'dig' being on disk 'dig' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'base64' being on disk 'data' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'deflate' being on disk 'data' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'gpg' being on disk 'data' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'inflate' being on disk 'data' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'md5sum' being on disk 'data' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'sha256sum' being on disk 'data' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'refuel' being on disk 'generator' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'irc' being on disk 'irc' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'maze' being on disk 'maze' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'arp' being on disk 'network' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'ifconfig' being on disk 'network' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'ping' being on disk 'network' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'route' being on disk 'network' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'opl-flash' being on disk 'openloader' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Registering new program location mapping for program 'oppm' being on disk 'oppm' from mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'geolyzer' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'motionsensor' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'keyboard' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'screen1' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'transposer' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'carpetedcapacitor' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'angelupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'batteryupgrade1' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'batteryupgrade2' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'batteryupgrade3' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'chunkloaderupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'craftingupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'experienceupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'generatorupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade1' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade2' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'inventoryupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'navigationupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'pistonupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'solargeneratorupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'tankupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'tractorbeamupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'leashupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'tradingupgrade' for host 'li.cil.oc.api.internal.Adapter' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'keyboard' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'screen1' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'transposer' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'carpetedcapacitor' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'apu1' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'apu2' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'graphicscard1' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'graphicscard2' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'graphicscard3' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'lancard' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'redstonecard1' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'angelupgrade' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'craftingupgrade' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade1' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade2' for host 'li.cil.oc.api.internal.Drone' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'keyboard' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'screen1' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'carpetedcapacitor' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'apu1' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'apu2' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'graphicscard1' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'graphicscard2' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'graphicscard3' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'angelupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'chunkloaderupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'craftingupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'databaseupgrade1' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'databaseupgrade2' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'databaseupgrade3' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'experienceupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'generatorupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade1' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade2' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'inventoryupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'inventorycontrollerupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'navigationupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'tankupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'tankcontrollerupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'tractorbeamupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'leashupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'tradingupgrade' for host 'li.cil.oc.api.internal.Microcontroller' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'transposer' for host 'li.cil.oc.api.internal.Robot' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'carpetedcapacitor' for host 'li.cil.oc.api.internal.Robot' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'leashupgrade' for host 'li.cil.oc.api.internal.Robot' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'screen1' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'transposer' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'carpetedcapacitor' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'lancard' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'redstonecard1' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'angelupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'chunkloaderupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'craftingupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'databaseupgrade1' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'databaseupgrade2' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'databaseupgrade3' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'experienceupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'generatorupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade1' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'hoverupgrade2' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'inventoryupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'inventorycontrollerupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'tankupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'tankcontrollerupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'leashupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [opencomputers]: Blacklisting component 'tradingupgrade' for host 'li.cil.oc.api.internal.Tablet' as requested by mod opencomputers.
    [05:40:13] [Server thread/INFO] [FML]: Injecting itemstacks
    [05:40:13] [Server thread/INFO] [FML]: Itemstack injection complete
    [05:40:13] [Server thread/INFO] [ic2.Uu]: Loading predefined UU world scan values, run /ic2 uu-world-scan <small|medium|large> to calibrate them for your world.
    [05:40:15] [Server thread/INFO] [ic2.General]: ic2 version 2.8.100-ex112 loaded.
    [05:40:18] [Server thread/INFO] [RECIPE_SCRIPT]: skipped core.POST_INIT
    [05:40:23] [Server thread/INFO] [wizardry]:  | Registered Beam -> Lightning run override.
    [05:40:23] [Server thread/INFO] [wizardry]:  | Registered Projectile -> Lightning run override.
    [05:40:23] [Server thread/INFO] [wizardry]:  | Registered Arc -> Lightning run override.
    [05:40:23] [Server thread/INFO] [wizardry]:  | Registered Self -> Lightning run override.
    [05:40:23] [Server thread/INFO] [wizardry]:  | Registered Touch -> Lightning run override.
    [05:40:23] [Server thread/INFO] [wizardry]:  | Registered Zone -> Lightning run override.
    [05:40:23] [Server thread/INFO] [wizardry]:  | Registered Beam -> Lightning renderSpell override.
    [05:40:23] [Server thread/INFO] [wizardry]:  | Registered Projectile -> Lightning renderSpell override.
    [05:40:23] [Server thread/INFO] [wizardry]:  | Registered Arc -> Lightning renderSpell override.
    [05:40:23] [Server thread/INFO] [wizardry]:  | Registered Touch -> Lightning renderSpell override.
    [05:40:24] [Server thread/INFO] [Galacticraft]: Galacticraft: activating IndustrialCraft2 compatibility features.
    [05:40:24] [Server thread/INFO] [Galacticraft]: Galacticraft: activating BuildCraft Transport (Pipes) compatibility features.
    [05:40:24] [Server thread/INFO] [Galacticraft]: Galacticraft: activating Biomes O'Plenty compatibility feature.
    [05:40:24] [Server thread/INFO] [Galacticraft]: Galacticraft: activating WAILA compatibility features.
    [05:40:26] [Server thread/ERROR] [net.minecraft.server.MinecraftServer]: Encountered an unexpected exception
    net.minecraftforge.fml.common.LoaderExceptionModCrash: Caught exception from Immersive Engineering (immersiveengineering)

    Caused by: java.lang.IllegalAccessError: tried to access class net.minecraft.potion.PotionHelper$MixPredicate from class blusunrize.immersiveengineering.common.IEContent
        at blusunrize.immersiveengineering.common.IEContent.postInit(IEContent.java:1014) ~[IEContent.class:?]
        at blusunrize.immersiveengineering.ImmersiveEngineering.postInit(ImmersiveEngineering.java:145) ~[ImmersiveEngineering.class:?]
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_161]
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_161]
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_161]
        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_161]
        at net.minecraftforge.fml.common.FMLModContainer.handleModStateEvent(FMLModContainer.java:624) ~[forge-1.12.2-14.23.5.2768-universal.jar:?]
        at sun.reflect.GeneratedMethodAccessor10.invoke(Unknown Source) ~[?:?]
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_161]
        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_161]
        at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.EventBus.post(EventBus.java:217) ~[minecraft_server.1.12.2.jar:?]
        at net.minecraftforge.fml.common.LoadController.sendEventToModContainer(LoadController.java:218) ~[forge-1.12.2-14.23.5.2768-universal.jar:?]
        at net.minecraftforge.fml.common.LoadController.propogateStateMessage(LoadController.java:196) ~[forge-1.12.2-14.23.5.2768-universal.jar:?]
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[?:1.8.0_161]
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_161]
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) ~[?:1.8.0_161]
        at java.lang.reflect.Method.invoke(Unknown Source) ~[?:1.8.0_161]
        at com.google.common.eventbus.Subscriber.invokeSubscriberMethod(Subscriber.java:91) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.Subscriber$SynchronizedSubscriber.invokeSubscriberMethod(Subscriber.java:150) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.Subscriber$1.run(Subscriber.java:76) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.util.concurrent.MoreExecutors$DirectExecutor.execute(MoreExecutors.java:399) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.Subscriber.dispatchEvent(Subscriber.java:71) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.Dispatcher$PerThreadQueuedDispatcher.dispatch(Dispatcher.java:116) ~[minecraft_server.1.12.2.jar:?]
        at com.google.common.eventbus.EventBus.post(EventBus.java:217) ~[minecraft_server.1.12.2.jar:?]
        at net.minecraftforge.fml.common.LoadController.distributeStateMessage(LoadController.java:135) ~[LoadController.class:?]
        at net.minecraftforge.fml.common.Loader.initializeMods(Loader.java:749) ~[Loader.class:?]
        at net.minecraftforge.fml.server.FMLServerHandler.finishServerLoading(FMLServerHandler.java:108) ~[FMLServerHandler.class:?]
        at net.minecraftforge.fml.common.FMLCommonHandler.onServerStarted(FMLCommonHandler.java:338) ~[FMLCommonHandler.class:?]
        at net.minecraft.server.dedicated.DedicatedServer.func_71197_b(DedicatedServer.java:219) ~[nz.class:?]
        at net.minecraft.server.MinecraftServer.run(MinecraftServer.java:486) [MinecraftServer.class:?]
        at java.lang.Thread.run(Unknown Source) [?:1.8.0_161]
    [05:40:26] [Server thread/ERROR] [net.minecraft.server.MinecraftServer]: This crash report has been saved to: C:\MS Minecraft Server\.\crash-reports\crash-2018-12-17_05.40.26-server.txt
    [05:40:26] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Stopping server
    [05:40:26] [Server thread/INFO] [net.minecraft.server.MinecraftServer]: Saving worlds
    [05:40:26] [Server thread/ERROR] [FML]: Skipping event FMLServerStoppedEvent and marking errored mod industrialwires since required dependency immersiveengineering has errored
    [05:40:26] [Server thread/INFO] [FML]: The state engine was in incorrect state AVAILABLE and forced into state SERVER_STOPPED. Errors may have been discarded.
    [05:40:26] [Server Shutdown Thread/INFO] [net.minecraft.server.MinecraftServer]: Stopping server

     

    latest.log

    crash-2018-12-17_05.40.26-server.txt

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.