Меню

Could not reserve enough space for 3145728kb object heap ошибка

Sometimes, this error indicates that physical memory and swap on the server actually are fully utilized!

I was seeing this problem recently on a server running RedHat Enterprise Linux 5.7 with 48 GB of RAM. I found that even just running

java -version

caused the same error, which established that the problem was not specific to my application.

Running

cat /proc/meminfo

reported that MemFree and SwapFree were both well under 1% of the MemTotal and SwapTotal values, respectively:

MemTotal:     49300620 kB
MemFree:        146376 kB
...
SwapTotal:     4192956 kB
SwapFree:         1364 kB

Stopping a few other running applications on the machine brought the free memory figures up somewhat:

MemTotal:     49300620 kB
MemFree:       2908664 kB
...
SwapTotal:     4192956 kB
SwapFree:      1016052 kB

At this point, a new instance of Java would start up okay, and I was able to run my application.

(Obviously, for me, this was just a temporary solution; I still have an outstanding task to do a more thorough examination of the processes running on that machine to see if there’s something that can be done to reduce the nominal memory utilization levels, without having to resort to stopping applications.)

In this post, we will see an error(Could not reserve enough space for 2097152kb object heap object heap) which you might have encountered while dealing with JVM.We will see how can we fix this issue.

Table of Contents

  • Heap size
    • Maximum heap size
  • Cause 1: Did not specify heap size
    • Fix 1
  • Cause 2: Too large Xmx value
    • Fix 2
  • Cause 3: Specifying large heap size more than physical memory
    • Fix 3
    • Set _JAVA_OPTIONS environment variable
  • Could not reserve enough space for 2097152kb object heap
    • Apache cordova
    • Minecraft
    • Jfrog artifactory
  • Conclusion

error occurred during initialization of vm could not reserve enough space for 2097152kb object heap is generally raised when Java process can not create java virtual machine due to memory limitations.

Before we go through causes and fixes for this issue, let’s go through few basic things.

Heap size

Heap size is memory allocation space for storing java objects at run time. This heap size can have minimum and maxiumn heap size. You can specify minimum and maximum size using Xmx and Xms VM arguments.

Maximum heap size

The maximum possible heap size can be determined by available memory space. It is different on 32 bit and 64 bit as follows.

  1. 2^32 (~4GB) on 32 bit JVM
  2. 2^64 (~16EB) on 64 bit JVM.

In general, you will get 1.4-1.6 GB on 32 bit windows and approximately 3GB on on 32 bit linux.

If you require large heap, then you should generally use 64 bit JVM.

Cause 1: Did not specify heap size

Let’s say you run your java program without specifying any heap size and you get below error.

Error occurred during initialization of VM
Could not reserve enough space for object heap
Could not create the Java virtual machine.

You will get this error more often in 32 bit JVM rather than 64-bit JVM

Reason
32-bit Java requires contiguous free space in memory to run. If you specify a large heap size, there may not be so much contiguous free space in memory even if you have much more free space available than necessary.
Installing 64-bit version might solve this issue in this case.

Fix 1

You can fix this error by running Java with lower heap size such as -Xmx512m.

java Xmx512M MyApplication

Cause 2: Too large Xmx value

If you specify too large memory with -Xmx option on 32 bit VM, you may also get this error.
For example:
Let’s say you are getting an error with below execution.

java Xms1536M Xmx1536M MyApplication

Fix 2

You might not have enough contiguous free space in memory.You can run the application with slightly lower heap size to resolve the issue.

javaXms1336M Xmx1336M MyApplication

Cause 3: Specifying large heap size more than physical memory

If you specify large heap size more than physical memory available on 64-bit or 32-bit  machine, you will get this error.
For example:
Let’s say You have 3 GB RAM on your machine and you are executing below command, you will get this error.

java Xms4096M Xmx4096M MyApplication

Fix 3

You can run the application with heap size which is less than your physical memory.

javaXms2048M Xmx2048M MyApplication

Sometimes above solutions might not work.

Set _JAVA_OPTIONS environment variable

So you can set _JAVA_OPTIONS as the environment variable.

In Linux

-bash-3.2$ export _JAVA_OPTIONS =»-Xmx512M»
-bash-3.2$ javac MyApp.java

In Window

Go to Start->Control Panel->System->Advanced(tab)->Environment Variables->System
Variables->New: Variable name: _JAVA_OPTIONS
Variable value: -Xmx512M

💡 Did you know?

JDK_JAVA_OPTIONS is prefered environment variable from Java 9+ onward to specify Java options. It will be ignored in the version lesser than Java 9.

You might get an specific error Could not reserve enough space for 2097152kb object heap in case you are using any tool. It simply means that JVM is not able to acquire 2 GB heap space which is required by the tool by default.

Apache cordova

Apache Cordova is a mobile application development framework originally created by Nitobi.
If you are getting this error on Apache cordova, here are solutions.

  1. Switch from 32 bit JVM to 64 bit JVM
  2. set _JAVA_OPTIONS environment variable with -Xmx512M
  3. Change

    args.push(‘-Dorg.gradle.jvmargs=-Xmx2048m’)

    to  

    args.push(‘-Dorg.gradle.jvmargs=-Xmx1024m’);

    on the following files located on your machine.

    project-folderplatformsandroidcordovalibbuildersbuilders.js
    project-folderplatformsandroidcordovalibbuildersGradleBuilder.js
    project-folderplatformsandroidcordovalibbuildersStudioBuilder.js

Minecraft

If you are getting this error, while launching Minecraft game, then you need to switch from 32 bit JVM to 64 bit JVM.

Jfrog artifactory

If you are using JFrom artifactory as artifact life-cycle management tool and getting Could not reserve enough space for 2097152kb object heap while launching it.
Go to bin directory of your JFrog Artifactory installation, change following line in arifactory.bat file.

set JAVA_OPTIONS=-server Xms512m Xmx2g Xss256k XX:+UseG1GC

to

set JAVA_OPTIONS=-server Xms512m Xmx1024m Xss256k XX:+UseG1GC

This should resolve this error for JFrog Artifactory installation.

Conclusion

  • If you might have installed 32 bit JVM in 64 bit machine.Upon uninstalling that version and installing 64 bit version of Java
  • You might have provided too large heap size which might be greater than physical memory. In this case, you need to reduce heap size of JVM.
  • If above solution does not work, you can set JAVA_OPTS as the environment variable to solve this issue. If you set JAVA_OPTS environment variable, then each JVM initialization will automatically use configuration from this environment variable

I hope this will resolve your issue with error occurred during initialization of vm could not reserve enough space for 2097152kb object heap.


  • Search


    • Search all Forums


    • Search this Forum


    • Search this Thread


  • Tools


    • Jump to Forum


  • #1

    Jun 9, 2015


    Gafwmn2


    • View User Profile


    • View Posts


    • Send Message



    View Gafwmn2's Profile

    • Out of the Water
    • Join Date:

      2/4/2014
    • Posts:

      9
    • Minecraft:

      Gafwmn
    • Member Details

    Ok, getting a problem launching. I am met with the following message: Error occurred during initialization of VM. Could not reserve enough space for 3145728KB object heap.

    and here is this…….

    [11:10:03 INFO]: Minecraft Launcher 1.6.11 (through bootstrap 5) started on windows…
    [11:10:03 INFO]: Current time is Jun 9, 2015 11:10:03 AM
    [11:10:03 INFO]: System.getProperty(‘os.name’) == ‘Windows 7’
    [11:10:03 INFO]: System.getProperty(‘os.version’) == ‘6.1’
    [11:10:03 INFO]: System.getProperty(‘os.arch’) == ‘x86’
    [11:10:03 INFO]: System.getProperty(‘java.version’) == ‘1.8.0_45’
    [11:10:03 INFO]: System.getProperty(‘java.vendor’) == ‘Oracle Corporation’
    [11:10:03 INFO]: System.getProperty(‘sun.arch.data.model’) == ’32’
    [11:10:03 INFO]: proxy == DIRECT
    [11:10:03 INFO]: JFX is already initialized
    [11:10:03 INFO]: Refreshing local version list…
    [11:10:03 INFO]: Refreshing remote version list…
    [11:10:04 INFO]: Refresh complete.
    [11:10:04 INFO]: Loaded 1 profile(s); selected ‘Gafwmn’
    [11:10:04 INFO]: Refreshing auth…
    [11:10:04 INFO]: Logging in with access token
    [11:10:08 INFO]: Getting syncinfo for selected version
    [11:10:08 INFO]: Queueing library & version downloads
    [11:10:09 INFO]: Download job ‘Version & Libraries’ started (16 threads, 34 files)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnajna3.4.0jna-3.4.0.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.6jopt-simple-4.6.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesionettynetty-all4.0.23.Finalnetty-all-4.0.23.Final.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.4-nightly-20150209lwjgl-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnaplatform3.4.0platform-3.4.0.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput-platform2.0.5jinput-platform-2.0.5-natives-windows.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.3.2commons-lang3-3.3.2.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Download job ‘Resources’ skipped as there are no files to download
    [11:10:09 INFO]: Job ‘Resources’ finished successfully (took 0:00:00.000)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnajna3.4.0jna-3.4.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-platform6.5twitch-platform-6.5-natives-windows-32.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangrealms1.7.21realms-1.7.21.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.4-nightly-20150209lwjgl-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnaplatform3.4.0platform-3.4.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput-platform2.0.5jinput-platform-2.0.5-natives-windows.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesionettynetty-all4.0.23.Finalnetty-all-4.0.23.Final.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.3.2commons-lang3-3.3.2.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesoshi-projectoshi-core1.1oshi-core-1.1.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-external-platform4.5twitch-external-platform-4.5-natives-windows-32.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch6.5twitch-6.5.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.4-nightly-20150209lwjgl_util-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl-platform2.9.4-nightly-20150209lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7.jar for job ‘Version & Libraries’… (try 0)
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.6jopt-simple-4.6.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangrealms1.7.21realms-1.7.21.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesoshi-projectoshi-core1.1oshi-core-1.1.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl-platform2.9.4-nightly-20150209lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch6.5twitch-6.5.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.4-nightly-20150209lwjgl_util-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-external-platform4.5twitch-external-platform-4.5-natives-windows-32.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-platform6.5twitch-platform-6.5-natives-windows-32.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:09 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:12 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:10:38 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7.jar for job ‘Version & Libraries’: Used own copy as it matched etag
    [11:10:38 INFO]: Job ‘Version & Libraries’ finished successfully (took 0:00:29.469)
    [11:10:38 INFO]: Launching game
    [11:10:38 INFO]: Unpacking natives to C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7-natives-534907447079
    [11:10:39 INFO]: Launching in C:UsersDrewsAppDataRoaming.minecraft
    [11:10:39 INFO]: Half command: C:Program Files (x86)Javajre1.8.0_45binjavaw.exe -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx3G -Djava.library.path=C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7-natives-534907447079 -cp C:UsersDrewsAppDataRoaming.minecraftlibrariesoshi-projectoshi-core1.1oshi-core-1.1.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnajna3.4.0jna-3.4.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnaplatform3.4.0platform-3.4.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.6jopt-simple-4.6.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesionettynetty-all4.0.23.Finalnetty-all-4.0.23.Final.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.3.2commons-lang3-3.3.2.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangrealms1.7.21realms-1.7.21.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.4-nightly-20150209lwjgl-2.9.4-nightly-20150209.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.4-nightly-20150209lwjgl_util-2.9.4-nightly-20150209.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch6.5twitch-6.5.jar;C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7.jar net.minecraft.client.main.Main
    [11:10:39 INFO]: Looking for orphaned versions to clean up…
    [11:10:39 ERROR]: Game ended with bad state (exit code 1)
    [11:10:39 INFO]: Ignoring visibility rule and showing launcher due to a game crash
    [11:10:39 INFO]: Looking for old natives & assets to clean up…
    [11:10:39 INFO]: Deleting C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7-natives-534907447079
    [11:15:45 INFO]: Getting syncinfo for selected version
    [11:15:45 INFO]: Queueing library & version downloads
    [11:15:45 INFO]: Download job ‘Version & Libraries’ started (16 threads, 34 files)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput-platform2.0.5jinput-platform-2.0.5-natives-windows.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-external-platform4.5twitch-external-platform-4.5-natives-windows-32.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.4-nightly-20150209lwjgl_util-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesionettynetty-all4.0.23.Finalnetty-all-4.0.23.Final.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnajna3.4.0jna-3.4.0.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar for job ‘Version & Libraries’… (try 0)
    [11:15:45 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.3.2commons-lang3-3.3.2.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Download job ‘Resources’ skipped as there are no files to download
    [11:15:46 INFO]: Job ‘Resources’ finished successfully (took 0:00:00.000)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnajna3.4.0jna-3.4.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnaplatform3.4.0platform-3.4.0.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-external-platform4.5twitch-external-platform-4.5-natives-windows-32.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-platform6.5twitch-platform-6.5-natives-windows-32.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesionettynetty-all4.0.23.Finalnetty-all-4.0.23.Final.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesoshi-projectoshi-core1.1oshi-core-1.1.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.4-nightly-20150209lwjgl_util-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.3.2commons-lang3-3.3.2.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl-platform2.9.4-nightly-20150209lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.6jopt-simple-4.6.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput-platform2.0.5jinput-platform-2.0.5-natives-windows.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangrealms1.7.21realms-1.7.21.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.4-nightly-20150209lwjgl-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch6.5twitch-6.5.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesoshi-projectoshi-core1.1oshi-core-1.1.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Attempting to download C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7.jar for job ‘Version & Libraries’… (try 0)
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangrealms1.7.21realms-1.7.21.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.6jopt-simple-4.6.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch6.5twitch-6.5.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl-platform2.9.4-nightly-20150209lwjgl-platform-2.9.4-nightly-20150209-natives-windows.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnaplatform3.4.0platform-3.4.0.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.4-nightly-20150209lwjgl-2.9.4-nightly-20150209.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:15:46 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch-platform6.5twitch-platform-6.5-natives-windows-32.jar for job ‘Version & Libraries’: Local file matches local checksum, using that
    [11:16:14 INFO]: Finished downloading C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7.jar for job ‘Version & Libraries’: Used own copy as it matched etag
    [11:16:14 INFO]: Job ‘Version & Libraries’ finished successfully (took 0:00:28.801)
    [11:16:14 INFO]: Launching game
    [11:16:14 INFO]: Unpacking natives to C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7-natives-870903639777
    [11:16:15 INFO]: Launching in C:UsersDrewsAppDataRoaming.minecraft
    [11:16:15 INFO]: Half command: C:Program Files (x86)Javajre1.8.0_45binjavaw.exe -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xmx3G -Djava.library.path=C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7-natives-870903639777 -cp C:UsersDrewsAppDataRoaming.minecraftlibrariesoshi-projectoshi-core1.1oshi-core-1.1.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnajna3.4.0jna-3.4.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavadevjnaplatform3.4.0platform-3.4.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescomibmicuicu4j-core-mojang51.2icu4j-core-mojang-51.2.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetsfjopt-simplejopt-simple4.6jopt-simple-4.6.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecjorbis20101023codecjorbis-20101023.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodecodecwav20101023codecwav-20101023.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibraryjavasound20101123libraryjavasound-20101123.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodelibrarylwjglopenal20100824librarylwjglopenal-20100824.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescompaulscodesoundsystem20120107soundsystem-20120107.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesionettynetty-all4.0.23.Finalnetty-all-4.0.23.Final.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescomgoogleguavaguava17.0guava-17.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-lang33.3.2commons-lang3-3.3.2.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-iocommons-io2.4commons-io-2.4.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-codeccommons-codec1.9commons-codec-1.9.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajinputjinput2.0.5jinput-2.0.5.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesnetjavajutilsjutils1.0.0jutils-1.0.0.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescomgooglecodegsongson2.2.4gson-2.2.4.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangauthlib1.5.21authlib-1.5.21.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommojangrealms1.7.21realms-1.7.21.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachecommonscommons-compress1.8.1commons-compress-1.8.1.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpclient4.3.3httpclient-4.3.3.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariescommons-loggingcommons-logging1.1.3commons-logging-1.1.3.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachehttpcomponentshttpcore4.3.2httpcore-4.3.2.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-api2.0-beta9log4j-api-2.0-beta9.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorgapachelogginglog4jlog4j-core2.0-beta9log4j-core-2.0-beta9.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl2.9.4-nightly-20150209lwjgl-2.9.4-nightly-20150209.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariesorglwjgllwjgllwjgl_util2.9.4-nightly-20150209lwjgl_util-2.9.4-nightly-20150209.jar;C:UsersDrewsAppDataRoaming.minecraftlibrariestvtwitchtwitch6.5twitch-6.5.jar;C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7.jar net.minecraft.client.main.Main
    [11:16:15 INFO]: Looking for orphaned versions to clean up…
    [11:16:15 INFO]: Looking for old natives & assets to clean up…
    [11:16:17 ERROR]: Game ended with bad state (exit code 1)
    [11:16:17 INFO]: Ignoring visibility rule and showing launcher due to a game crash
    [11:16:17 INFO]: Deleting C:UsersDrewsAppDataRoaming.minecraftversions1.8.71.8.7-natives-870903639777

    Any ideas on what to do ?


  • #3

    Jun 9, 2015


    Kyrobi


    • View User Profile


    • View Posts


    • Send Message



    View Kyrobi's Profile

    • Tree Puncher
    • Join Date:

      6/7/2015
    • Posts:

      21
    • Member Details

    So how is he suppose to fix that? I had the same problem, but I just switched and played on a different computer.

    There are none you fool!


  • #4

    Jun 9, 2015


    Gafwmn2


    • View User Profile


    • View Posts


    • Send Message



    View Gafwmn2's Profile

    • Out of the Water
    • Join Date:

      2/4/2014
    • Posts:

      9
    • Minecraft:

      Gafwmn
    • Member Details

    and actually, I run 64 bit OS, unless you mean 32 for Java.

    I can provide system specs if that would help.

    And Gerbil wins the cookie…..yeah, needed to DL 64bit Java. All better now.

    Last edited by Gafwmn2: Jun 9, 2015

  • To post a comment, please login.

Posts Quoted:

Reply

Clear All Quotes


By

DerpTheHammer · Posted 31 minutes ago

I have a ATM8 single player world that keeps crashing once I choose the world to load.  it starts the process and then hangs in the green screen.  Log is below, any help is appreciated.

—- Minecraft Crash Report —-
// This doesn’t make any sense!

Time: 2023-01-28 11:47:51
Description: Exception in server tick loop

net.minecraftforge.fml.config.ConfigFileTypeHandler$ConfigLoadingException: Failed loading config file rangedpumps-server.toml of type SERVER for modid rangedpumps
    at net.minecraftforge.fml.config.ConfigFileTypeHandler.lambda$reader$1(ConfigFileTypeHandler.java:47) ~[fmlcore-1.19.2-43.2.3.jar%23812!/:?] {}
    at net.minecraftforge.fml.config.ConfigTracker.openConfig(ConfigTracker.java:60) ~[fmlcore-1.19.2-43.2.3.jar%23812!/:?] {}
    at net.minecraftforge.fml.config.ConfigTracker.lambda$loadConfigs$1(ConfigTracker.java:50) ~[fmlcore-1.19.2-43.2.3.jar%23812!/:?] {}
    at java.lang.Iterable.forEach(Iterable.java:75) ~[?:?] {re:mixin}
    at java.util.Collections$SynchronizedCollection.forEach(Collections.java:2131) ~[?:?] {}
    at net.minecraftforge.fml.config.ConfigTracker.loadConfigs(ConfigTracker.java:50) ~[fmlcore-1.19.2-43.2.3.jar%23812!/:?] {}
    at net.minecraftforge.server.ServerLifecycleHooks.handleServerAboutToStart(ServerLifecycleHooks.java:90) ~[forge-1.19.2-43.2.3-universal.jar%23816!/:?] {re:classloading}
    at net.minecraft.client.server.IntegratedServer.m_7038_(IntegratedServer.java:61) ~[client-1.19.2-20220805.130853-srg.jar%23811!/:?] {re:mixin,pl:runtimedistcleaner:A,re:classloading,pl:mixin:APP:smoothboot.mixins.json:client.IntegratedServerMixin,pl:mixin:A,pl:runtimedistcleaner:A}
    at net.minecraft.server.MinecraftServer.m_130011_(MinecraftServer.java:625) ~[client-1.19.2-20220805.130853-srg.jar%23811!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}
    at net.minecraft.server.MinecraftServer.m_206580_(MinecraftServer.java:244) ~[client-1.19.2-20220805.130853-srg.jar%23811!/:?] {re:mixin,pl:accesstransformer:B,re:classloading,pl:accesstransformer:B,pl:mixin:A}
    at java.lang.Thread.run(Thread.java:833) [?:?] {re:mixin}
Caused by: com.electronwill.nightconfig.core.io.ParsingException: Not enough data available
    at com.electronwill.nightconfig.core.io.ParsingException.notEnoughData(ParsingException.java:22) ~[core-3.6.4.jar%2384!/:?] {}
    at com.electronwill.nightconfig.core.io.ReaderInput.directReadChar(ReaderInput.java:36) ~[core-3.6.4.jar%2384!/:?] {}
    at com.electronwill.nightconfig.core.io.AbstractInput.readChar(AbstractInput.java:49) ~[core-3.6.4.jar%2384!/:?] {}
    at com.electronwill.nightconfig.core.io.AbstractInput.readCharsUntil(AbstractInput.java:123) ~[core-3.6.4.jar%2384!/:?] {}
    at com.electronwill.nightconfig.toml.TableParser.parseKey(TableParser.java:166) ~[toml-3.6.4.jar%2385!/:?] {}
    at com.electronwill.nightconfig.toml.TableParser.parseDottedKey(TableParser.java:145) ~[toml-3.6.4.jar%2385!/:?] {}
    at com.electronwill.nightconfig.toml.TableParser.parseNormal(TableParser.java:55) ~[toml-3.6.4.jar%2385!/:?] {}
    at com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:44) ~[toml-3.6.4.jar%2385!/:?] {}
    at com.electronwill.nightconfig.toml.TomlParser.parse(TomlParser.java:37) ~[toml-3.6.4.jar%2385!/:?] {}
    at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:113) ~[core-3.6.4.jar%2384!/:?] {}
    at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:219) ~[core-3.6.4.jar%2384!/:?] {}
    at com.electronwill.nightconfig.core.io.ConfigParser.parse(ConfigParser.java:202) ~[core-3.6.4.jar%2384!/:?] {}
    at com.electronwill.nightconfig.core.file.WriteSyncFileConfig.load(WriteSyncFileConfig.java:73) ~[core-3.6.4.jar%2384!/:?] {}
    at com.electronwill.nightconfig.core.file.AutosaveCommentedFileConfig.load(AutosaveCommentedFileConfig.java:85) ~[core-3.6.4.jar%2384!/:?] {}
    at net.minecraftforge.fml.config.ConfigFileTypeHandler.lambda$reader$1(ConfigFileTypeHandler.java:43) ~[fmlcore-1.19.2-43.2.3.jar%23812!/:?] {}
    … 10 more

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

— System Details —
Details:
    Minecraft Version: 1.19.2
    Minecraft Version ID: 1.19.2
    Operating System: Windows 10 (amd64) version 10.0
    Java Version: 17.0.3, Microsoft
    Java VM Version: OpenJDK 64-Bit Server VM (mixed mode), Microsoft
    Memory: 885739400 bytes (844 MiB) / 5184159744 bytes (4944 MiB) up to 9294577664 bytes (8864 MiB)
    CPUs: 8
    Processor Vendor: GenuineIntel
    Processor Name: Intel(R) Core(TM) i7-7700HQ CPU @ 2.80GHz
    Identifier: Intel64 Family 6 Model 158 Stepping 9
    Microarchitecture: Kaby Lake
    Frequency (GHz): 2.81
    Number of physical packages: 1
    Number of physical CPUs: 4
    Number of logical CPUs: 8
    Graphics card #0 name: NVIDIA GeForce GTX 1070
    Graphics card #0 vendor: NVIDIA (0x10de)
    Graphics card #0 VRAM (MB): 4095.00
    Graphics card #0 deviceId: 0x1be1
    Graphics card #0 versionInfo: DriverVersion=31.0.15.2802
    Graphics card #1 name: Citrix Indirect Display Adapter
    Graphics card #1 vendor: Citrix Systems Inc. (0x5853)
    Graphics card #1 VRAM (MB): 0.00
    Graphics card #1 deviceId: 0x1003
    Graphics card #1 versionInfo: DriverVersion=10.50.21.200
    Memory slot #0 capacity (MB): 8192.00
    Memory slot #0 clockSpeed (GHz): 2.40
    Memory slot #0 type: DDR4
    Memory slot #1 capacity (MB): 8192.00
    Memory slot #1 clockSpeed (GHz): 2.40
    Memory slot #1 type: DDR4
    Virtual memory max (MB): 40908.03
    Virtual memory used (MB): 22518.00
    Swap memory total (MB): 24576.00
    Swap memory used (MB): 357.42
    JVM Flags: 4 total; -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Xss1M -Xmx8864m -Xms256m
    Loaded Shaderpack: ComplementaryReimagined_r1.3.zip
        Profile: HIGH (+0 options changed by user)
    Server Running: true
    Player Count: 0 / 8; []
    Data Packs: vanilla, mod:saturn (incompatible), mod:betterdungeons, mod:supermartijn642configlib (incompatible), mod:paucal (incompatible), mod:quarryplus, mod:simplemagnets (incompatible), mod:botarium, mod:integratedterminals (incompatible), mod:paragon, mod:entitycollisionfpsfix (incompatible), mod:rubidium (incompatible), mod:modnametooltip (incompatible), mod:ironjetpacks (incompatible), mod:laserio (incompatible), mod:evilcraft (incompatible), mod:yungsapi, mod:powah (incompatible), mod:gateways (incompatible), mod:cabletiers (incompatible), mod:rangedpumps, mod:wstweaks (incompatible), mod:shrink (incompatible), mod:guardvillagers (incompatible), mod:universalgrid (incompatible), mod:darkutils (incompatible), mod:apotheosis (incompatible), mod:clickadv (incompatible), mod:balm (incompatible), mod:jeresources (incompatible), mod:cloth_config (incompatible), mod:shetiphiancore (incompatible), mod:ctov, mod:supplementaries (incompatible), mod:structure_gel, mod:advancementplaques (incompatible), mod:packmenu (incompatible), mod:alltheores (incompatible), mod:industrialforegoing (incompatible), mod:torchmaster (incompatible), mod:handcrafted, mod:repurposed_structures, mod:botanytrees (incompatible), mod:ironfurnaces (incompatible), mod:structurecompass, mod:mcwtrpdoors, mod:supermartijn642corelib (incompatible), mod:botania (incompatible), mod:resourcefulconfig, mod:spark (incompatible), mod:curios, mod:corail_woodcutter, mod:oculus (incompatible), mod:advgenerators, mod:angelring (incompatible), mod:tombstone, mod:antighost (incompatible), mod:naturesaura (incompatible), mod:constructionwand, mod:mcwroofs, mod:littlelogistics (incompatible), mod:cfm (incompatible), mod:fastleafdecay, mod:bettermineshafts, mod:geckolib3 (incompatible), mod:sfm (incompatible), mod:vitalize, mod:mcwlights, mod:crafting_on_a_stick (incompatible), mod:smartbrainlib, mod:elytraslot, mod:nomowanderer (incompatible), mod:rechiseled (incompatible), mod:harvestwithease, mod:jei (incompatible), mod:attributefix (incompatible), mod:tesseract (incompatible), mod:mekanism, mod:gravitationalmodulatingunittweaks (incompatible), mod:caelus (incompatible), mod:bdlib, mod:allthecompressed (incompatible), mod:naturescompass (incompatible), mod:jumpboat (incompatible), mod:libx, mod:compactmachines, mod:botanypots (incompatible), mod:phosphophyllite (incompatible), mod:farmingforblockheads (incompatible), mod:pneumaticcraft, mod:additional_lights, mod:extradisks, mod:edivadlib, mod:forge, mod:silentgear, mod:integratedcrafting (incompatible), mod:dungeons_arise, mod:alchemistry (incompatible), mod:cofh_core, mod:thermal, mod:thermal_integration, mod:redstone_arsenal (incompatible), mod:thermal_innovation, mod:thermal_foundation, mod:thermal_locomotion, mod:radon (incompatible), mod:systeams (incompatible), mod:simplebackups, mod:theoneprobe (incompatible), mod:terrablender, mod:mousetweaks, mod:immersiveengineering (incompatible), mod:nochatreports (incompatible), mod:allthemodium (incompatible), mod:spectrelib (incompatible), mod:domum_ornamentum, mod:kotlinforforge (incompatible), mod:pipez (incompatible), mod:flywheel (incompatible), mod:integrateddynamics (incompatible), mod:integratednbt (incompatible), mod:itemcollectors (incompatible), mod:croptopia (incompatible), mod:thermal_cultivation, mod:bhc (incompatible), mod:polymorph, mod:justenoughprofessions, mod:autoreglib (incompatible), mod:securitycraft, mod:almostunified (incompatible), mod:entityculling (incompatible), mod:structurize, mod:fastfurnace (incompatible), mod:appleskin, mod:lootr (incompatible), mod:connectedglass (incompatible), mod:occultism, mod:allthetweaks (incompatible), mod:byg, mod:aquaculture, mod:extremesoundmuffler (incompatible), mod:cosmeticarmorreworked (incompatible), mod:ad_astra (incompatible), mod:ad_astra_giselle_addon (incompatible), mod:rsrequestify (incompatible), mod:hexerei (incompatible), mod:cyclopscore (incompatible), mod:blue_skies, mod:alchemylib (incompatible), mod:netherportalfix (incompatible), mod:aiotbotania, mod:advancedperipherals (incompatible), mod:utilitix, mod:naturalist, mod:healthoverlay (incompatible), mod:betteroceanmonuments, mod:connectivity (incompatible), mod:sophisticatedcore (incompatible), mod:glassential (incompatible), mod:controlling (incompatible), mod:prism, mod:placebo (incompatible), mod:dankstorage (incompatible), mod:potionsmaster (incompatible), mod:bookshelf (incompatible), mod:sophisticatedbackpacks (incompatible), mod:littlecontraptions (incompatible), mod:buildinggadgets (incompatible), mod:framedblocks, mod:mcwdoors, mod:mekanismgenerators, mod:absentbydesign (incompatible), mod:twilightforest (incompatible), mod:mob_grinding_utils (incompatible), mod:experiencebugfix, mod:rsinfinitybooster (incompatible), mod:mcwbridges, mod:farmersdelight (incompatible), mod:tempad (incompatible), mod:hostilenetworks (incompatible), mod:entangled (incompatible), mod:endertanks (incompatible), mod:commoncapabilities (incompatible), mod:crashutilities (incompatible), mod:getittogetherdrops, mod:mcwfences, mod:fuelgoeshere, mod:wirelesschargers (incompatible), mod:simplylight (incompatible), mod:modelfix (incompatible), mod:dpanvil (incompatible), mod:blockui, mod:multipiston, mod:tiab (incompatible), mod:villagertools (incompatible), mod:thermal_expansion, mod:integratedtunnels (incompatible), mod:mysticalcustomization (incompatible), mod:elevatorid (incompatible), mod:ftbultimine (incompatible), mod:betterstrongholds, mod:runelic (incompatible), mod:resourcefullib (incompatible), mod:spirit (incompatible), mod:mekanismtools, mod:inventoryprofilesnext (incompatible), mod:deeperdarker, mod:architectury (incompatible), mod:bambooeverything (incompatible), mod:ftblibrary (incompatible), mod:ftbic (incompatible), mod:myrtrees (incompatible), mod:findme (incompatible), mod:ftbteams (incompatible), mod:ftbranks (incompatible), mod:ftbessentials (incompatible), mod:computercraft (incompatible), mod:energymeter (incompatible), mod:moreoverlays (incompatible), mod:productivebees, mod:trashcans (incompatible), mod:inventoryessentials (incompatible), mod:smallships (incompatible), mod:bwncr (incompatible), mod:observable (incompatible), mod:letmedespawn (incompatible), mod:gamemenumodoption, mod:voidtotem (incompatible), mod:darkmodeeverywhere (incompatible), mod:betteradvancements (incompatible), mod:rhino (incompatible), mod:kubejs (incompatible), mod:biggerreactors (incompatible), mod:rootsclassic, mod:cucumber (incompatible), mod:trashslot (incompatible), mod:jmi (incompatible), mod:blueflame, mod:sophisticatedstorage (incompatible), mod:additionallanterns (incompatible), mod:itemfilters (incompatible), mod:ftbquests (incompatible), mod:platforms (incompatible), mod:travelanchors, mod:ensorcellation, mod:create, mod:waystones (incompatible), mod:thermal_extra (incompatible), mod:fastsuite (incompatible), mod:clumps (incompatible), mod:journeymap (incompatible), mod:comforts, mod:artifacts, mod:configured (incompatible), mod:dimstorage, mod:myserveriscompatible (incompatible), mod:dungeoncrawl, mod:defaultsettings, mod:charginggadgets (incompatible), mod:mcjtylib (incompatible), mod:rftoolsbase (incompatible), mod:xnet (incompatible), mod:rftoolspower (incompatible), mod:rftoolsbuilder (incompatible), mod:deepresonance (incompatible), mod:xnetgases (incompatible), mod:rftoolsstorage (incompatible), mod:rftoolscontrol (incompatible), mod:mahoutsukai, mod:farsight_view (incompatible), mod:toastcontrol (incompatible), mod:mininggadgets (incompatible), mod:hexcasting (incompatible), mod:ftbchunks (incompatible), mod:xycraft_core, mod:xycraft_world, mod:xycraft_override, mod:mysticalagriculture (incompatible), mod:mysticalagradditions (incompatible), mod:craftingtweaks (incompatible), mod:rftoolsutility (incompatible), mod:libipn (incompatible), mod:sebastrnlib (incompatible), mod:appliedcooking (incompatible), mod:refinedcooking (incompatible), mod:refinedstorage, mod:extrastorage, mod:ae2 (incompatible), mod:aeinfinitybooster (incompatible), mod:cookingforblockheads (incompatible), mod:rebornstorage (incompatible), mod:merequester (incompatible), mod:patchouli (incompatible), mod:ars_nouveau (incompatible), mod:delightful (incompatible), mod:ars_creo (incompatible), mod:ae2wtlib (incompatible), mod:elementalcraft (incompatible), mod:moonlight (incompatible), mod:eccentrictome, mod:toolbelt, mod:titanium (incompatible), mod:silentlib (incompatible), mod:ae2things (incompatible), mod:theurgy, mod:smoothboot, mod:iceberg (incompatible), mod:reliquary (incompatible), mod:quark (incompatible), mod:legendarytooltips (incompatible), mod:chemlib (incompatible), mod:pigpen (incompatible), mod:fastbench (incompatible), mod:fluxnetworks (incompatible), mod:ars_elemental, mod:enderchests (incompatible), mod:appbot (incompatible), mod:modonomicon, mod:quartz (incompatible), mod:minecolonies (incompatible), mod:pylons, mod:creeperoverhaul (incompatible), mod:ferritecore (incompatible), mod:engineersdecor, mod:solcarrot (incompatible), mod:functionalstorage (incompatible), mod:moredragoneggs (incompatible), mod:modularrouters, mod:charmofundying, mod:betterf3 (incompatible), mod:refinedstorageaddons, mod:appmek (incompatible), mod:ae2additions (incompatible), mod:megacells (incompatible), mod:expandability (incompatible), mod:morphtool (incompatible), mod:flickerfix, mod:createaddition (incompatible), Supplementaries Generated Pack
    World Generation: Stable
    Type: Integrated Server (map_client.txt)
    Is Modded: Definitely; Client brand changed to ‘forge’; Server brand changed to ‘forge’
    Launched Version: forge-43.2.3
    ModLauncher: 10.0.8+10.0.8+main.0ef7e830
    ModLauncher launch target: forgeclient
    ModLauncher naming: srg
    ModLauncher services: 
        mixin-0.8.5.jar mixin PLUGINSERVICE 
        eventbus-6.0.3.jar eventbus PLUGINSERVICE 
        fmlloader-1.19.2-43.2.3.jar slf4jfixer PLUGINSERVICE 
        fmlloader-1.19.2-43.2.3.jar object_holder_definalize PLUGINSERVICE 
        fmlloader-1.19.2-43.2.3.jar runtime_enum_extender PLUGINSERVICE 
        fmlloader-1.19.2-43.2.3.jar capability_token_subclass PLUGINSERVICE 
        accesstransformers-8.0.4.jar accesstransformer PLUGINSERVICE 
        fmlloader-1.19.2-43.2.3.jar runtimedistcleaner PLUGINSERVICE 
        modlauncher-10.0.8.jar jcplugin TRANSFORMATIONSERVICE 
        modlauncher-10.0.8.jar mixin TRANSFORMATIONSERVICE 
        modlauncher-10.0.8.jar fml TRANSFORMATIONSERVICE 
    FML Language Providers: 
        minecraft@1.0
        javafml@null
        kotlinforforge@3.9.1
        lowcodefml@null
        kotori_scala@2.13.10-build-10
    Mod List: 
        saturn-mc1.19.2-0.0.1.jar                         |Saturn                        |saturn                        |0.0.1               |DONE      |Manifest: NOSIGNATURE
        YungsBetterDungeons-1.19.2-Forge-3.2.2.jar        |YUNG’s Better Dungeons        |betterdungeons                |1.19.2-Forge-3.2.2  |DONE      |Manifest: NOSIGNATURE
        supermartijn642configlib-1.1.6b-forge-mc1.19.jar  |SuperMartijn642’s Config Libra|supermartijn642configlib      |1.1.6b              |DONE      |Manifest: NOSIGNATURE
        paucal-forge-1.19.2-0.5.0.jar                     |PAUCAL                        |paucal                        |0.5.0               |DONE      |Manifest: NOSIGNATURE
        AdditionalEnchantedMiner-1.19.2-19.10.4.jar       |QuarryPlus                    |quarryplus                    |19.10.4             |DONE      |Manifest: 1a:13:52:63:6f:dc:0c:ad:7f:8a:64:ac:46:58:8a:0c:90:ea:2c:5d:11:ac:4c:d4:62:85:c7:d1:00:fa:9c:76
        simplemagnets-1.1.9-forge-mc1.19.jar              |Simple Magnets                |simplemagnets                 |1.1.9               |DONE      |Manifest: NOSIGNATURE
        botarium-forge-1.19.2-1.8.2.jar                   |Botarium                      |botarium                      |1.8.2               |DONE      |Manifest: NOSIGNATURE
        IntegratedTerminals-1.19.2-1.4.2.jar              |IntegratedTerminals           |integratedterminals           |1.4.2               |DONE      |Manifest: NOSIGNATURE
        paragon-forge-3.0.2-1.19x.jar                     |Paragon                       |paragon                       |3.0.2               |DONE      |Manifest: NOSIGNATURE
        Entity_Collision_FPS_Fix-forge-1.19-2.0.0.0.jar   |Entity Collision FPS Fix      |entitycollisionfpsfix         |2.0.0.0             |DONE      |Manifest: NOSIGNATURE
        rubidium-0.6.2.jar                                |Rubidium                      |rubidium                      |0.6.2               |DONE      |Manifest: NOSIGNATURE
        modnametooltip-1.19-1.19.0.jar                    |Mod Name Tooltip              |modnametooltip                |1.19.0              |DONE      |Manifest: NOSIGNATURE
        IronJetpacks-1.19.2-6.0.3.jar                     |Iron Jetpacks                 |ironjetpacks                  |6.0.3               |DONE      |Manifest: NOSIGNATURE
        laserio-1.5.2.jar                                 |LaserIO                       |laserio                       |1.5.2               |DONE      |Manifest: NOSIGNATURE
        EvilCraft-1.19.2-1.2.13.jar                       |EvilCraft                     |evilcraft                     |1.2.13              |DONE      |Manifest: NOSIGNATURE
        YungsApi-1.19.2-Forge-3.8.2.jar                   |YUNG’s API                    |yungsapi                      |1.19.2-Forge-3.8.2  |DONE      |Manifest: NOSIGNATURE
        Powah-4.0.6.jar                                   |Powah                         |powah                         |4.0.6               |DONE      |Manifest: NOSIGNATURE
        GatewaysToEternity-1.19.2-3.1.1.jar               |Gateways To Eternity          |gateways                      |3.1.1               |DONE      |Manifest: NOSIGNATURE
        cabletiers-1.19.2-0.5471.jar                      |Cable Tiers                   |cabletiers                    |1.19.2-0.5471       |DONE      |Manifest: NOSIGNATURE
        rangedpumps-1.0.0.jar                             |Ranged Pumps                  |rangedpumps                   |1.0.0               |DONE      |Manifest: NOSIGNATURE
        WitherSkeletonTweaks-1.19.2-8.0.0.jar             |Wither Skeleton Tweaks        |wstweaks                      |8.0.0               |DONE      |Manifest: NOSIGNATURE
        Shrink-1.19-1.3.4.jar                             |Shrink                        |shrink                        |1.3.4               |DONE      |Manifest: NOSIGNATURE
        guardvillagers-1.19.2-1.5.2.jar                   |Guard Villagers               |guardvillagers                |1.19.2-1.5.2        |DONE      |Manifest: NOSIGNATURE
        universalgrid-1.19.2-1.033.jar                    |Universal Grid                |universalgrid                 |1.19.2-1.033        |DONE      |Manifest: NOSIGNATURE
        DarkUtilities-Forge-1.19.2-13.1.7.jar             |DarkUtilities                 |darkutils                     |13.1.7              |DONE      |Manifest: NOSIGNATURE
        Apotheosis-1.19.2-6.0.3.jar                       |Apotheosis                    |apotheosis                    |6.0.3               |DONE      |Manifest: NOSIGNATURE
        clickadv-1.19.2-3.0.jar                           |clickadv mod                  |clickadv                      |1.19.2-3.0          |DONE      |Manifest: NOSIGNATURE
        balm-4.5.3.jar                                    |Balm                          |balm                          |4.5.3               |DONE      |Manifest: NOSIGNATURE
        JustEnoughResources-1.19.2-1.2.1.193.jar          |Just Enough Resources         |jeresources                   |1.2.1.193           |DONE      |Manifest: NOSIGNATURE
        cloth-config-8.2.88-forge.jar                     |Cloth Config v8 API           |cloth_config                  |8.2.88              |DONE      |Manifest: NOSIGNATURE
        shetiphiancore-1.19-3.11.3.jar                    |ShetiPhian-Core               |shetiphiancore                |3.11.3              |DONE      |Manifest: NOSIGNATURE
        ctov-3.1.4.jar                                    |ChoiceTheorem’s Overhauled Vil|ctov                          |3.1.4               |DONE      |Manifest: NOSIGNATURE
        supplementaries-1.19.2-2.2.43.jar                 |Supplementaries               |supplementaries               |1.19.2-2.2.43       |DONE      |Manifest: NOSIGNATURE
        structure_gel-1.19.2-2.7.1.jar                    |Structure Gel API             |structure_gel                 |2.7.1               |DONE      |Manifest: NOSIGNATURE
        AdvancementPlaques-1.19.2-1.4.7.jar               |Advancement Plaques           |advancementplaques            |1.4.7               |DONE      |Manifest: NOSIGNATURE
        PackMenu-1.19.2-5.1.0.jar                         |PackMenu                      |packmenu                      |5.1.0               |DONE      |Manifest: NOSIGNATURE
        alltheores-2.0.2-1.19.2-43.1.3.jar                |AllTheOres                    |alltheores                    |2.0.2-1.19.2-43.1.3 |DONE      |Manifest: NOSIGNATURE
        industrial-foregoing-1.19.2-3.3.2.1-3.jar         |Industrial Foregoing          |industrialforegoing           |3.3.2.1             |DONE      |Manifest: NOSIGNATURE
        torchmaster-19.2.0.jar                            |Torchmaster                   |torchmaster                   |19.2.0              |DONE      |Manifest: NOSIGNATURE
        handcrafted-forge-1.19.2-2.0.2.jar                |Handcrafted                   |handcrafted                   |2.0.2               |DONE      |Manifest: NOSIGNATURE
        repurposed_structures_forge-6.3.8+1.19.2.jar      |Repurposed Structures         |repurposed_structures         |6.3.8+1.19.2        |DONE      |Manifest: NOSIGNATURE
        BotanyTrees-Forge-1.19.2-5.0.4.jar                |BotanyTrees                   |botanytrees                   |5.0.4               |DONE      |Manifest: NOSIGNATURE
        ironfurnaces-1.19.2-3.6.3.jar                     |Iron Furnaces                 |ironfurnaces                  |3.6.3               |DONE      |Manifest: NOSIGNATURE
        StructureCompass-1.19.2-1.3.5.jar                 |Structure Compass Mod         |structurecompass              |1.3.5               |DONE      |Manifest: NOSIGNATURE
        mcw-trapdoors-1.0.8-mc1.19.2forge.jar             |Macaw’s Trapdoors             |mcwtrpdoors                   |1.0.8               |DONE      |Manifest: NOSIGNATURE
        supermartijn642corelib-1.1.1-forge-mc1.19.jar     |SuperMartijn642’s Core Lib    |supermartijn642corelib        |1.1.1               |DONE      |Manifest: NOSIGNATURE
        Botania-1.19.2-436-FORGE.jar                      |Botania                       |botania                       |1.19.2-436-FORGE    |DONE      |Manifest: NOSIGNATURE
        resourcefulconfig-forge-1.19.2-1.0.18.jar         |Resourcefulconfig             |resourcefulconfig             |1.0.18              |DONE      |Manifest: NOSIGNATURE
        spark-1.10.17-forge.jar                           |spark                         |spark                         |1.10.17             |DONE      |Manifest: NOSIGNATURE
        curios-forge-1.19.2-5.1.1.0.jar                   |Curios API                    |curios                        |1.19.2-5.1.1.0      |DONE      |Manifest: NOSIGNATURE
        corail_woodcutter-1.19.2-2.5.1.jar                |Corail Woodcutter             |corail_woodcutter             |2.5.1               |DONE      |Manifest: NOSIGNATURE
        oculus-mc1.19.2-1.2.8a.jar                        |Oculus                        |oculus                        |1.2.8a              |DONE      |Manifest: NOSIGNATURE
        advgenerators-1.4.0.5-mc1.19.2.jar                |Advanced Generators           |advgenerators                 |1.4.0.5             |DONE      |Manifest: NOSIGNATURE
        AngelRing2-1.19.2-2.1.5.jar                       |Angel Ring 2                  |angelring                     |2.1.5               |DONE      |Manifest: NOSIGNATURE
        tombstone-8.2.4-1.19.2.jar                        |Corail Tombstone              |tombstone                     |8.2.4               |DONE      |Manifest: NOSIGNATURE
        antighost-1.19.1-forge42.0.1-1.1.2.jar            |AntiGhost                     |antighost                     |1.19.1-forge42.0.1-1|DONE      |Manifest: NOSIGNATURE
        NaturesAura-37.4.jar                              |Nature’s Aura                 |naturesaura                   |37.4                |DONE      |Manifest: NOSIGNATURE
        constructionwand-1.19.1-2.8.jar                   |Construction Wand             |constructionwand              |1.19.1-2.8          |DONE      |Manifest: NOSIGNATURE
        mcw-roofs-2.2.2-mc1.19.2forge.jar                 |Macaw’s Roofs                 |mcwroofs                      |2.2.2               |DONE      |Manifest: NOSIGNATURE
        littlelogistics-mc1.19.2-v1.3.1.jar               |Little Logistics              |littlelogistics               |1.3.1               |DONE      |Manifest: NOSIGNATURE
        cfm-7.0.0-pre34-1.19.jar                          |MrCrayfish’s Furniture Mod    |cfm                           |7.0.0-pre34         |DONE      |Manifest: NOSIGNATURE
        FastLeafDecay-30.jar                              |FastLeafDecay                 |fastleafdecay                 |30                  |DONE      |Manifest: NOSIGNATURE
        YungsBetterMineshafts-1.19.2-Forge-3.2.0.jar      |YUNG’s Better Mineshafts      |bettermineshafts              |1.19.2-Forge-3.2.0  |DONE      |Manifest: NOSIGNATURE
        geckolib-forge-1.19-3.1.39.jar                    |GeckoLib                      |geckolib3                     |3.1.39              |DONE      |Manifest: NOSIGNATURE
        SuperFactoryManager-1.19.2-4.4.4.jar              |Super Factory Manager         |sfm                           |4.4.4               |DONE      |Manifest: NOSIGNATURE
        vitalize-forge-1.19.2-1.1.1.jar                   |Vitalize                      |vitalize                      |1.1.1               |DONE      |Manifest: NOSIGNATURE
        mcw-lights-1.0.5-mc1.19.2forge.jar                |Macaw’s Lights and Lamps      |mcwlights                     |1.0.5               |DONE      |Manifest: NOSIGNATURE
        crafting-on-a-stick-1.19.2-1.0.3.jar              |Crafting On A Stick           |crafting_on_a_stick           |1.0.1               |DONE      |Manifest: NOSIGNATURE
        SmartBrainLib-forge-1.19.2-1.8.jar                |SmartBrainLib                 |smartbrainlib                 |1.8                 |DONE      |Manifest: NOSIGNATURE
        elytraslot-forge-6.0.0+1.19.2.jar                 |Elytra Slot                   |elytraslot                    |6.0.0+1.19.2        |DONE      |Manifest: NOSIGNATURE
        nomowanderer-1.19.2_1.3.6.jar                     |NoMoWanderer                  |nomowanderer                  |1.19.2_1.3.6        |DONE      |Manifest: NOSIGNATURE
        rechiseled-1.0.12-forge-mc1.19.jar                |Rechiseled                    |rechiseled                    |1.0.12              |DONE      |Manifest: NOSIGNATURE
        harvestwithease-1.19.2-4.0.0.3-forge.jar          |Harvest with ease             |harvestwithease               |4.0.0.3             |DONE      |Manifest: NOSIGNATURE
        jei-1.19.2-forge-11.5.2.1007.jar                  |Just Enough Items             |jei                           |11.5.2.1007         |DONE      |Manifest: NOSIGNATURE
        AttributeFix-Forge-1.19.2-17.1.3.jar              |AttributeFix                  |attributefix                  |17.1.3              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5
        tesseract-1.0.28-forge-mc1.19.jar                 |Tesseract                     |tesseract                     |1.0.28              |DONE      |Manifest: NOSIGNATURE
        Mekanism-1.19.2-10.3.5.473.jar                    |Mekanism                      |mekanism                      |10.3.5              |DONE      |Manifest: NOSIGNATURE
        GravitationalModulatingAdditionalUnit-1.19.2-2.8.j|Gravitational Modulating Addit|gravitationalmodulatingunittwe|1.19.2-2.8          |DONE      |Manifest: NOSIGNATURE
        caelus-forge-1.19.2-3.0.0.6.jar                   |Caelus API                    |caelus                        |1.19.2-3.0.0.6      |DONE      |Manifest: NOSIGNATURE
        bdlib-1.25.0.5-mc1.19.2.jar                       |BdLib                         |bdlib                         |1.25.0.5            |DONE      |Manifest: NOSIGNATURE
        AllTheCompressed-1.19.2-2.0.0.jar                 |AllTheCompressed              |allthecompressed              |2.0.0               |DONE      |Manifest: NOSIGNATURE
        NaturesCompass-1.19.2-1.10.0-forge.jar            |Nature’s Compass              |naturescompass                |1.19.2-1.10.0-forge |DONE      |Manifest: NOSIGNATURE
        jumpboat-1.19-0.1.0.5.jar                         |Jumpy Boats                   |jumpboat                      |1.19-0.1.0.5        |DONE      |Manifest: NOSIGNATURE
        LibX-1.19.2-4.2.8.jar                             |LibX                          |libx                          |1.19.2-4.2.8        |DONE      |Manifest: NOSIGNATURE
        compactmachines-5.1.0.jar                         |Compact Machines 5            |compactmachines               |5.1.0               |DONE      |Manifest: NOSIGNATURE
        BotanyPots-Forge-1.19.2-9.0.24.jar                |BotanyPots                    |botanypots                    |9.0.24              |DONE      |Manifest: NOSIGNATURE
        phosphophyllite-1.19.2-0.6.0-beta.6.4.jar         |Phosphophyllite               |phosphophyllite               |0.6.0-beta.6.4      |DONE      |Manifest: NOSIGNATURE
        farmingforblockheads-forge-1.19-11.1.0.jar        |Farming for Blockheads        |farmingforblockheads          |11.1.0              |DONE      |Manifest: NOSIGNATURE
        pneumaticcraft-repressurized-1.19.2-4.2.0-16.jar  |PneumaticCraft: Repressurized |pneumaticcraft                |1.19.2-4.2.0-16     |DONE      |Manifest: NOSIGNATURE
        additional_lights-1.19-2.1.5.jar                  |Additional Lights             |additional_lights             |2.1.5               |DONE      |Manifest: NOSIGNATURE
        ExtraDisks-1.19.2-2.2.0.jar                       |Extra Disks                   |extradisks                    |1.19.2-2.2.0        |DONE      |Manifest: NOSIGNATURE
        EdivadLib-1.19.2-1.2.0.jar                        |EdivadLib                     |edivadlib                     |1.2.0               |DONE      |Manifest: NOSIGNATURE
        forge-1.19.2-43.2.3-universal.jar                 |Forge                         |forge                         |43.2.3              |DONE      |Manifest: 84:ce:76:e8:45:35:e4:0e:63:86:df:47:59:80:0f:67:6c:c1:5f:6e:5f:4d:b3:54:47:1a:9f:7f:ed:5e:f2:90
        silent-gear-1.19.2-3.1.5.jar                      |Silent Gear                   |silentgear                    |3.1.5               |DONE      |Manifest: NOSIGNATURE
        IntegratedCrafting-1.19.2-1.0.26.jar              |IntegratedCrafting            |integratedcrafting            |1.0.26              |DONE      |Manifest: NOSIGNATURE
        DungeonsArise-1.19.2-2.1.54-release.jar           |When Dungeons Arise           |dungeons_arise                |2.1.54-1.19.2       |DONE      |Manifest: NOSIGNATURE
        alchemistry-1.19.2-2.2.3.jar                      |Alchemistry                   |alchemistry                   |1.19.2-2.2.3        |DONE      |Manifest: NOSIGNATURE
        client-1.19.2-20220805.130853-srg.jar             |Minecraft                     |minecraft                     |1.19.2              |DONE      |Manifest: a1:d4:5e:04:4f:d3:d6:e0:7b:37:97:cf:77:b0:de:ad:4a:47:ce:8c:96:49:5f:0a:cf:8c:ae:b2:6d:4b:8a:3f
        cofh_core-1.19.2-10.0.2.33.jar                    |CoFH Core                     |cofh_core                     |10.0.2.33           |DONE      |Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09
        thermal_core-1.19.2-10.0.0.1.jar                  |Thermal Series                |thermal                       |10.0.0.1            |DONE      |Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09
        thermal_integration-1.19.2-10.0.0.11.jar          |Thermal Integration           |thermal_integration           |10.0.0.11           |DONE      |Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09
        redstone_arsenal-1.19.2-7.0.1.12.jar              |Redstone Arsenal              |redstone_arsenal              |7.0.1.12            |DONE      |Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09
        thermal_innovation-1.19.2-10.0.0.16.jar           |Thermal Innovation            |thermal_innovation            |10.0.0.16           |DONE      |Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09
        thermal_foundation-1.19.2-10.0.0.38.jar           |Thermal Foundation            |thermal_foundation            |10.0.0.38           |DONE      |Manifest: NOSIGNATURE
        thermal_locomotion-1.19.2-10.0.0.12.jar           |Thermal Locomotion            |thermal_locomotion            |10.0.0.12           |DONE      |Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09
        radon-0.8.2.jar                                   |Radon                         |radon                         |0.8.2               |DONE      |Manifest: NOSIGNATURE
        systeams-1.1.0.jar                                |Thermal Systeams              |systeams                      |1.1.0               |DONE      |Manifest: NOSIGNATURE
        SimpleBackups-1.19.1-2.1.8.jar                    |Simple Backups                |simplebackups                 |1.19.1-2.1.8        |DONE      |Manifest: NOSIGNATURE
        theoneprobe-1.19-6.2.2.jar                        |The One Probe                 |theoneprobe                   |1.19-6.2.2          |DONE      |Manifest: NOSIGNATURE
        TerraBlender-forge-1.19.2-2.0.1.136.jar           |TerraBlender                  |terrablender                  |2.0.1.136           |DONE      |Manifest: NOSIGNATURE
        MouseTweaks-forge-mc1.19-2.23.jar                 |Mouse Tweaks                  |mousetweaks                   |2.23                |DONE      |Manifest: NOSIGNATURE
        ImmersiveEngineering-1.19.2-9.1.0-156.jar         |Immersive Engineering         |immersiveengineering          |1.19.2-9.1.0-156    |DONE      |Manifest: 44:39:94:cf:1d:8c:be:3c:7f:a9:ee:f4:1e:63:a5:ac:61:f9:c2:87:d5:5b:d9:d6:8c:b5:3e:96:5d:8e:3f:b7
        NoChatReports-FORGE-1.19.2-v1.5.1.jar             |No Chat Reports               |nochatreports                 |1.19.2-v1.5.1       |DONE      |Manifest: NOSIGNATURE
        allthemodium-2.1.5-1.19.2-43.1.1.jar              |Allthemodium                  |allthemodium                  |2.1.5-1.19.2-43.1.1 |DONE      |Manifest: NOSIGNATURE
        spectrelib-forge-0.11.0+1.19.jar                  |SpectreLib                    |spectrelib                    |0.11.0+1.19         |DONE      |Manifest: NOSIGNATURE
        domum_ornamentum-1.19-1.0.76-ALPHA-universal.jar  |Domum Ornamentum              |domum_ornamentum              |1.19-1.0.76-ALPHA   |DONE      |Manifest: NOSIGNATURE
        kffmod-3.9.1.jar                                  |Kotlin For Forge              |kotlinforforge                |3.9.1               |DONE      |Manifest: NOSIGNATURE
        pipez-1.19.2-1.0.1.jar                            |Pipez                         |pipez                         |1.19.2-1.0.1        |DONE      |Manifest: NOSIGNATURE
        flywheel-forge-1.19.2-0.6.8.a-14.jar              |Flywheel                      |flywheel                      |0.6.8.a-14          |DONE      |Manifest: NOSIGNATURE
        IntegratedDynamics-1.19.2-1.14.7.jar              |IntegratedDynamics            |integrateddynamics            |1.14.7              |DONE      |Manifest: NOSIGNATURE
        integratednbt-1.19.2-1.6.0.jar                    |Integrated NBT                |integratednbt                 |1.6.0               |DONE      |Manifest: NOSIGNATURE
        itemcollectors-1.1.6-forge-mc1.19.jar             |Item Collectors               |itemcollectors                |1.1.6               |DONE      |Manifest: NOSIGNATURE
        Croptopia-1.19.2-FORGE-2.2.2.jar                  |Croptopia                     |croptopia                     |2.2.2               |DONE      |Manifest: NOSIGNATURE
        thermal_cultivation-1.19.2-10.0.0.15.jar          |Thermal Cultivation           |thermal_cultivation           |10.0.0.15           |DONE      |Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09
        baubley-heart-canisters-1.19.2-1.2.3.jar          |Baubley Heart Canisters       |bhc                           |1.19.2-1.2.3        |DONE      |Manifest: NOSIGNATURE
        polymorph-forge-0.46.1+1.19.2.jar                 |Polymorph                     |polymorph                     |0.46.1+1.19.2       |DONE      |Manifest: NOSIGNATURE
        JustEnoughProfessions-forge-1.19-2.0.1.jar        |Just Enough Professions (JEP) |justenoughprofessions         |2.0.1               |DONE      |Manifest: NOSIGNATURE
        AutoRegLib-1.8.2-55.jar                           |AutoRegLib                    |autoreglib                    |1.8.2-55            |DONE      |Manifest: NOSIGNATURE
        [1.19.2] SecurityCraft v1.9.4.jar                 |SecurityCraft                 |securitycraft                 |1.9.4               |DONE      |Manifest: NOSIGNATURE
        almostunified-forge-1.19.2-0.3.3.jar              |AlmostUnified                 |almostunified                 |1.19.2-0.3.3        |DONE      |Manifest: NOSIGNATURE
        entityculling-forge-1.5.2-mc1.19.1.jar            |EntityCulling                 |entityculling                 |1.5.1               |DONE      |Manifest: NOSIGNATURE
        structurize-1.19.2-1.0.472-BETA.jar               |Structurize                   |structurize                   |1.19.2-1.0.472-BETA |DONE      |Manifest: NOSIGNATURE
        FastFurnace-1.19.2-7.0.0.jar                      |FastFurnace                   |fastfurnace                   |7.0.0               |DONE      |Manifest: NOSIGNATURE
        appleskin-forge-mc1.19-2.4.2.jar                  |AppleSkin                     |appleskin                     |2.4.2+mc1.19        |DONE      |Manifest: NOSIGNATURE
        lootr-1.19-0.3.22.59.jar                          |Lootr                         |lootr                         |0.3.20.57           |DONE      |Manifest: NOSIGNATURE
        connectedglass-1.1.6-forge-mc1.19.jar             |Connected Glass               |connectedglass                |1.1.6               |DONE      |Manifest: NOSIGNATURE
        occultism-1.19.2-1.66.1.jar                       |Occultism                     |occultism                     |1.19.2-1.66.1       |DONE      |Manifest: NOSIGNATURE
        allthetweaks-2.0.4-1.19.2-43.1.3.jar              |All The Tweaks                |allthetweaks                  |0.0NONE             |DONE      |Manifest: NOSIGNATURE
        Oh_The_Biomes_You’ll_Go-forge-1.19.2-2.0.0.13.jar |Oh The Biomes You’ll Go       |byg                           |2.0.0.13            |DONE      |Manifest: NOSIGNATURE
        Aquaculture-1.19.2-2.4.8.jar                      |Aquaculture 2                 |aquaculture                   |1.19.2-2.4.8        |DONE      |Manifest: NOSIGNATURE
        extremesoundmuffler-3.35-forge-1.19.2.jar         |Extreme Sound Muffler         |extremesoundmuffler           |3.35-forge-1.19.2   |DONE      |Manifest: NOSIGNATURE
        CosmeticArmorReworked-1.19.2-v1a.jar              |CosmeticArmorReworked         |cosmeticarmorreworked         |1.19.2-v1a          |DONE      |Manifest: 5e:ed:25:99:e4:44:14:c0:dd:89:c1:a9:4c:10:b5:0d:e4:b1:52:50:45:82:13:d8:d0:32:89:67:56:57:01:53
        ad_astra-forge-1.19.2-1.12.2.jar                  |Ad Astra!                     |ad_astra                      |1.12.2              |DONE      |Manifest: NOSIGNATURE
        Ad-Astra-Giselle-Addon-forge-1.19.2-1.10.jar      |Ad Astra!: Giselle Addon      |ad_astra_giselle_addon        |1.10                |DONE      |Manifest: NOSIGNATURE
        rsrequestify-2.3.0.jar                            |RSRequestify                  |rsrequestify                  |2.3.0               |DONE      |Manifest: NOSIGNATURE
        hexerei-0.2.5.jar                                 |Hexerei                       |hexerei                       |0.2.5               |DONE      |Manifest: NOSIGNATURE
        CyclopsCore-1.19.2-1.17.4.jar                     |Cyclops Core                  |cyclopscore                   |1.17.4              |DONE      |Manifest: NOSIGNATURE
        blue_skies-1.19.2-1.3.20.jar                      |Blue Skies                    |blue_skies                    |1.3.20              |DONE      |Manifest: NOSIGNATURE
        alchemylib-1.19.2-1.0.19.jar                      |AlchemyLib                    |alchemylib                    |1.19.2-1.0.19       |DONE      |Manifest: NOSIGNATURE
        netherportalfix-forge-1.19-10.0.0.jar             |NetherPortalFix               |netherportalfix               |10.0.0              |DONE      |Manifest: NOSIGNATURE
        AIOTBotania-1.19.2-3.0.0.jar                      |AIOT Botania                  |aiotbotania                   |1.19.2-3.0.0        |DONE      |Manifest: NOSIGNATURE
        AdvancedPeripherals-0.7.22b.jar                   |Advanced Peripherals          |advancedperipherals           |0.7.22b             |DONE      |Manifest: NOSIGNATURE
        UtilitiX-1.19.2-0.7.6.jar                         |UtilitiX                      |utilitix                      |1.19.2-0.7.6        |DONE      |Manifest: NOSIGNATURE
        naturalist-forge-2.1.1-1.19.2.jar                 |Naturalist                    |naturalist                    |2.1.1               |DONE      |Manifest: NOSIGNATURE
        HealthOverlay-1.19.2-7.2.1.jar                    |Health Overlay                |healthoverlay                 |7.2.1               |DONE      |Manifest: NOSIGNATURE
        YungsBetterOceanMonuments-1.19.2-Forge-2.1.0.jar  |YUNG’s Better Ocean Monuments |betteroceanmonuments          |1.19.2-Forge-2.1.0  |DONE      |Manifest: NOSIGNATURE
        connectivity-1.19.2-3.4.jar                       |Connectivity Mod              |connectivity                  |1.19.2-3.4          |DONE      |Manifest: NOSIGNATURE
        sophisticatedcore-1.19.2-0.5.38.203.jar           |Sophisticated Core            |sophisticatedcore             |1.19.2-0.5.38.203   |DONE      |Manifest: NOSIGNATURE
        glassential-forge-1.19-1.2.4.jar                  |Glassential                   |glassential                   |1.19-1.2.4          |DONE      |Manifest: NOSIGNATURE
        Controlling-forge-1.19.2-10.0+7.jar               |Controlling                   |controlling                   |10.0+7              |DONE      |Manifest: NOSIGNATURE
        Prism-1.19.1-1.0.2.jar                            |Prism                         |prism                         |1.0.2               |DONE      |Manifest: NOSIGNATURE
        Placebo-1.19.2-7.1.2.jar                          |Placebo                       |placebo                       |7.1.2               |DONE      |Manifest: NOSIGNATURE
        dankstorage-1.19.2-5.1.4.jar                      |Dank Storage                  |dankstorage                   |1.19.2-5.1.4        |DONE      |Manifest: NOSIGNATURE
        potionsmaster-0.6.0-1.19.2-43.1.1.jar             |Potions Master                |potionsmaster                 |0.6.0-1.19.2-43.1.1 |DONE      |Manifest: NOSIGNATURE
        Bookshelf-Forge-1.19.2-16.2.17.jar                |Bookshelf                     |bookshelf                     |16.2.17             |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5
        sophisticatedbackpacks-1.19.2-3.18.40.779.jar     |Sophisticated Backpacks       |sophisticatedbackpacks        |1.19.2-3.18.40.779  |DONE      |Manifest: NOSIGNATURE
        littlecontraptions-forge-1.19.2.0.jar             |Little Contraptions           |littlecontraptions            |1.19.2.0            |DONE      |Manifest: NOSIGNATURE
        buildinggadgets-3.16.1-build.15+mc1.19.2.jar      |Building Gadgets              |buildinggadgets               |3.16.1-build.15+mc1.|DONE      |Manifest: NOSIGNATURE
        FramedBlocks-6.7.0.jar                            |FramedBlocks                  |framedblocks                  |6.7.0               |DONE      |Manifest: NOSIGNATURE
        mcw-doors-1.0.7-mc1.19.2.jar                      |Macaw’s Doors                 |mcwdoors                      |1.0.7               |DONE      |Manifest: NOSIGNATURE
        MekanismGenerators-1.19.2-10.3.5.473.jar          |Mekanism: Generators          |mekanismgenerators            |10.3.5              |DONE      |Manifest: NOSIGNATURE
        absentbydesign-1.19-1.7.0.jar                     |Absent By Design Mod          |absentbydesign                |1.19-1.7.0          |DONE      |Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed
        twilightforest-1.19.2-4.2.1493-universal.jar      |The Twilight Forest           |twilightforest                |4.2.1493            |DONE      |Manifest: NOSIGNATURE
        mob_grinding_utils-1.19.2-0.4.46.jar              |Mob Grinding Utils            |mob_grinding_utils            |1.19.2-0.4.46       |DONE      |Manifest: NOSIGNATURE
        ExperienceBugFix-1.19-1.41.2.3.jar                |Experience Bug Fix            |experiencebugfix              |1.41.2.3            |DONE      |Manifest: NOSIGNATURE
        RSInfinityBooster-1.19.2-3.0+27.jar               |RSInfinityBooster             |rsinfinitybooster             |1.19.2-3.0+27       |DONE      |Manifest: NOSIGNATURE
        mcw-bridges-2.0.6-mc1.19.2forge.jar               |Macaw’s Bridges               |mcwbridges                    |2.0.6               |DONE      |Manifest: NOSIGNATURE
        FarmersDelight-1.19-1.2.0.jar                     |Farmer’s Delight              |farmersdelight                |1.19-1.2.0          |DONE      |Manifest: NOSIGNATURE
        tempad-forge-1.19.2-1.4.3.jar                     |Tempad                        |tempad                        |1.4.1               |DONE      |Manifest: NOSIGNATURE
        HostileNeuralNetworks-1.19.2-4.0.2.jar            |Hostile Neural Networks       |hostilenetworks               |4.0.2               |DONE      |Manifest: NOSIGNATURE
        entangled-1.3.12-forge-mc1.19.jar                 |Entangled                     |entangled                     |1.3.12              |DONE      |Manifest: NOSIGNATURE
        endertanks-1.19-1.12.1.jar                        |EnderTanks                    |endertanks                    |1.12.1              |DONE      |Manifest: NOSIGNATURE
        CommonCapabilities-1.19.2-2.8.3.jar               |CommonCapabilities            |commoncapabilities            |2.8.3               |DONE      |Manifest: NOSIGNATURE
        crashutilities-6.2.jar                            |Crash Utilities               |crashutilities                |6.2                 |DONE      |Manifest: NOSIGNATURE
        getittogetherdrops-forge-1.19.2-1.3.jar           |Get It Together, Drops!       |getittogetherdrops            |1.3                 |DONE      |Manifest: NOSIGNATURE
        mcw-fences-1.0.7-mc1.19.2forge.jar                |Macaw’s Fences and Walls      |mcwfences                     |1.0.7               |DONE      |Manifest: NOSIGNATURE
        fuelgoeshere-1.19.2-0.1.0.0.jar                   |Fuel Goes Here                |fuelgoeshere                  |1.19.2-0.1.0.0      |DONE      |Manifest: NOSIGNATURE
        wirelesschargers-1.0.7-forge-mc1.19.jar           |Wireless Chargers             |wirelesschargers              |1.0.7               |DONE      |Manifest: NOSIGNATURE
        simplylight-1.19.2-1.4.5-build.42.jar             |Simply Light                  |simplylight                   |1.19.2-1.4.5-build.4|DONE      |Manifest: NOSIGNATURE
        modelfix-1.8.jar                                  |Model Gap Fix                 |modelfix                      |1.8                 |DONE      |Manifest: NOSIGNATURE
        dpanvil-1.19.2-4.3.1.jar                          |DataPack Anvil                |dpanvil                       |1.19.2-4.3.1        |DONE      |Manifest: NOSIGNATURE
        blockui-1.19-0.0.64-ALPHA.jar                     |UI Library Mod                |blockui                       |1.19-0.0.64-ALPHA   |DONE      |Manifest: NOSIGNATURE
        multipiston-1.19.2-1.2.21-ALPHA.jar               |Multi-Piston                  |multipiston                   |1.19.2-1.2.21-ALPHA |DONE      |Manifest: NOSIGNATURE
        time-in-a-bottle-3.0.1-mc1.19.jar                 |Time In A Bottle              |tiab                          |3.0.1-mc1.19        |DONE      |Manifest: NOSIGNATURE
        villagertools-1.19-1.0.3.jar                      |villagertools                 |villagertools                 |1.19-1.0.3          |DONE      |Manifest: 1f:47:ac:b1:61:82:96:b8:47:19:16:d2:61:81:11:60:3a:06:4b:61:31:56:7d:44:31:1e:0c:6f:22:5b:4c:ed
        thermal_expansion-1.19.2-10.0.0.19.jar            |Thermal Expansion             |thermal_expansion             |10.0.0.19           |DONE      |Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09
        IntegratedTunnels-1.19.2-1.8.18.jar               |IntegratedTunnels             |integratedtunnels             |1.8.18              |DONE      |Manifest: NOSIGNATURE
        MysticalCustomization-1.19.2-4.0.1.jar            |Mystical Customization        |mysticalcustomization         |4.0.1               |DONE      |Manifest: NOSIGNATURE
        elevatorid-1.19.2-1.8.9.jar                       |Elevator Mod                  |elevatorid                    |1.19.2-1.8.9        |DONE      |Manifest: NOSIGNATURE
        ftb-ultimine-forge-1902.3.5-build.65.jar          |FTB Ultimine                  |ftbultimine                   |1902.3.5-build.65   |DONE      |Manifest: NOSIGNATURE
        YungsBetterStrongholds-1.19.2-Forge-3.2.0.jar     |YUNG’s Better Strongholds     |betterstrongholds             |1.19.2-Forge-3.2.0  |DONE      |Manifest: NOSIGNATURE
        Runelic-Forge-1.19.2-14.1.4.jar                   |Runelic                       |runelic                       |14.1.4              |DONE      |Manifest: eb:c4:b1:67:8b:f9:0c:db:dc:4f:01:b1:8e:61:64:39:4c:10:85:0b:a6:c4:c7:48:f0:fa:95:f2:cb:08:3a:e5
        resourcefullib-forge-1.19.2-1.1.19.jar            |Resourceful Lib               |resourcefullib                |1.1.19              |DONE      |Manifest: NOSIGNATURE
        spirit-forge-1.19.2-2.2.3.jar                     |Spirit                        |spirit                        |2.2.3               |DONE      |Manifest: NOSIGNATURE
        MekanismTools-1.19.2-10.3.5.473.jar               |Mekanism: Tools               |mekanismtools                 |10.3.5              |DONE      |Manifest: NOSIGNATURE
        InventoryProfilesNext-forge-1.19-1.9.1.jar        |Inventory Profiles Next       |inventoryprofilesnext         |1.9.1               |DONE      |Manifest: NOSIGNATURE
        deeperdarker-forge-1.1.6-forge.jar                |Deeper and Darker             |deeperdarker                  |1.1.6               |DONE      |Manifest: NOSIGNATURE
        architectury-6.4.62-forge.jar                     |Architectury                  |architectury                  |6.4.62              |DONE      |Manifest: NOSIGNATURE
        BambooEverything-forge-2.2.4-build.33+mc1.19.2.jar|Bamboo Everything             |bambooeverything              |2.2.4-build.33+mc1.1|DONE      |Manifest: NOSIGNATURE
        ftb-library-forge-1902.3.11-build.166.jar         |FTB Library                   |ftblibrary                    |1902.3.11-build.166 |DONE      |Manifest: NOSIGNATURE
        ftb-industrial-contraptions-1900.1.7-build.212.jar|FTB Industrial Contraptions   |ftbic                         |1900.1.7-build.212  |DONE      |Manifest: NOSIGNATURE
        myrtrees-forge-1.2.0-build.31.jar                 |Myrtrees                      |myrtrees                      |1.2.0-build.31      |DONE      |Manifest: NOSIGNATURE
        findme-3.1.0-forge.jar                            |FindMe                        |findme                        |3.1.0               |DONE      |Manifest: NOSIGNATURE
        ftb-teams-forge-1902.2.11-build.87.jar            |FTB Teams                     |ftbteams                      |1902.2.11-build.87  |DONE      |Manifest: NOSIGNATURE
        ftb-ranks-forge-1902.1.14-build.70.jar            |FTB Ranks                     |ftbranks                      |1902.1.14-build.70  |DONE      |Manifest: NOSIGNATURE
        ftb-essentials-1902.1.10-build.47.jar             |FTB Essentials                |ftbessentials                 |1902.1.10-build.47  |DONE      |Manifest: NOSIGNATURE
        cc-tweaked-1.19.2-1.101.1.jar                     |CC: Tweaked                   |computercraft                 |1.101.1             |DONE      |Manifest: NOSIGNATURE
        energymeter-1.19.2-1.0.0.jar                      |Energy Meter                  |energymeter                   |1.19.2-1.0.0        |DONE      |Manifest: NOSIGNATURE
        moreoverlays-1.21.5-mc1.19.2.jar                  |More Overlays Updated         |moreoverlays                  |1.21.5-mc1.19.2     |DONE      |Manifest: NOSIGNATURE
        productivebees-1.19.2-0.10.4.0.jar                |Productive Bees               |productivebees                |1.19.2-0.10.4.0     |DONE      |Manifest: NOSIGNATURE
        trashcans-1.0.16-forge-mc1.19.jar                 |Trash Cans                    |trashcans                     |1.0.16              |DONE      |Manifest: NOSIGNATURE
        inventoryessentials-forge-1.19-5.0.0.jar          |Inventory Essentials          |inventoryessentials           |5.0.0               |DONE      |Manifest: NOSIGNATURE
        smallships-1.19.2-2.0.0-Alpha-0.4.jar             |Small Ships Mod               |smallships                    |2.0.0-a0.4          |DONE      |Manifest: NOSIGNATURE
        bwncr-forge-1.19.2-3.14.1.jar                     |Bad Wither No Cookie Reloaded |bwncr                         |3.14.1              |DONE      |Manifest: NOSIGNATURE
        observable-3.3.1.jar                              |Observable                    |observable                    |3.3.1               |DONE      |Manifest: NOSIGNATURE
        letmedespawn-1.18.x-1.19.x-forge-1.0.3.jar        |Let Me Despawn                |letmedespawn                  |0.0NONE             |DONE      |Manifest: NOSIGNATURE
        GameMenuModOption-1.19-1.18.jar                   |Game Menu Mod Option          |gamemenumodoption             |1.18                |DONE      |Manifest: NOSIGNATURE
        voidtotem-forge-1.19.2-2.1.0.jar                  |Void Totem                    |voidtotem                     |2.1.0               |DONE      |Manifest: NOSIGNATURE
        DarkModeEverywhere-1.19.1-1.0.3.jar               |DarkModeEverywhere            |darkmodeeverywhere            |1.19.1-1.0.3        |DONE      |Manifest: NOSIGNATURE
        BetterAdvancements-1.19.2-0.2.2.142.jar           |Better Advancements           |betteradvancements            |0.2.2.142           |DONE      |Manifest: NOSIGNATURE
        rhino-forge-1902.2.2-build.264.jar                |Rhino                         |rhino                         |1902.2.2-build.264  |DONE      |Manifest: NOSIGNATURE
        kubejs-forge-1902.6.0-build.140.jar               |KubeJS                        |kubejs                        |1902.6.0-build.140  |DONE      |Manifest: NOSIGNATURE
        biggerreactors-1.19.2-0.6.0-beta.6.jar            |Bigger Reactors               |biggerreactors                |0.6.0-beta.6        |DONE      |Manifest: NOSIGNATURE
        RootsClassic-1.19.2-1.1.33.jar                    |Roots Classic                 |rootsclassic                  |1.19.2-1.1.33       |DONE      |Manifest: NOSIGNATURE
        Cucumber-1.19.2-6.0.3.jar                         |Cucumber Library              |cucumber                      |6.0.3               |DONE      |Manifest: NOSIGNATURE
        trashslot-forge-1.19-12.0.0.jar                   |TrashSlot                     |trashslot                     |12.0.0              |DONE      |Manifest: NOSIGNATURE
        jmi-forge-1.19.2-0.13-30.jar                      |JourneyMap Integration        |jmi                           |0.13-30             |DONE      |Manifest: NOSIGNATURE
        blueflame-1.19.2-0.1.0.2.jar                      |Blue Flame Burning            |blueflame                     |1.19.2-0.1.0.2      |DONE      |Manifest: NOSIGNATURE
        sophisticatedstorage-1.19.2-0.6.16.276.jar        |Sophisticated Storage         |sophisticatedstorage          |1.19.2-0.6.16.276   |DONE      |Manifest: NOSIGNATURE
        additionallanterns-1.0.2-forge-mc1.19.jar         |Additional Lanterns           |additionallanterns            |1.0.2               |DONE      |Manifest: NOSIGNATURE
        item-filters-forge-1902.2.9-build.46.jar          |Item Filters                  |itemfilters                   |1902.2.9-build.46   |DONE      |Manifest: NOSIGNATURE
        ftb-quests-forge-1902.4.6-build.176.jar           |FTB Quests                    |ftbquests                     |1902.4.6-build.176  |DONE      |Manifest: NOSIGNATURE
        platforms-1.19-1.10.2.jar                         |Platforms                     |platforms                     |1.10.2              |DONE      |Manifest: NOSIGNATURE
        TravelAnchors-1.19.2-4.1.2.jar                    |Travel Anchors                |travelanchors                 |1.19.2-4.1.2        |DONE      |Manifest: NOSIGNATURE
        ensorcellation-1.19.2-4.0.0.12.jar                |Ensorcellation                |ensorcellation                |4.0.0.12            |DONE      |Manifest: 75:0b:cc:9b:64:2e:9b:c4:41:d1:95:00:71:ee:87:1a:b3:5e:4b:da:8e:e8:39:00:fd:5d:e5:9c:40:42:33:09
        create-1.19.2-0.5.0.h.jar                         |Create                        |create                        |0.5.0.h             |DONE      |Manifest: NOSIGNATURE
        waystones-forge-1.19-11.1.0.jar                   |Waystones                     |waystones                     |11.1.0              |DONE      |Manifest: NOSIGNATURE
        ThermalExtra 1.19.2-3.0.1.jar                     |Thermal: Extra                |thermal_extra                 |3.0.1               |DONE      |Manifest: NOSIGNATURE
        FastSuite-1.19.2-4.0.0.jar                        |Fast Suite                    |fastsuite                     |4.0.0               |DONE      |Manifest: NOSIGNATURE
        Clumps-forge-1.19.2-9.0.0+14.jar                  |Clumps                        |clumps                        |9.0.0+14            |DONE      |Manifest: NOSIGNATURE
        journeymap-1.19.2-5.9.2-forge.jar                 |Journeymap                    |journeymap                    |5.9.2               |DONE      |Manifest: NOSIGNATURE
        comforts-forge-6.0.3+1.19.2.jar                   |Comforts                      |comforts                      |6.0.3+1.19.2        |DONE      |Manifest: NOSIGNATURE
        artifacts-1.19.2-5.0.1.jar                        |Artifacts                     |artifacts                     |1.19.2-5.0.1        |DONE      |Manifest: NOSIGNATURE
        configured-2.0.1-1.19.2.jar                       |Configured                    |configured                    |2.0.1               |DONE      |Manifest: NOSIGNATURE
        DimStorage-1.19.2-7.2.0.jar                       |DimStorage                    |dimstorage                    |7.2.0               |DONE      |Manifest: NOSIGNATURE
        MyServerIsCompatible-1.19-1.0.jar                 |MyServerIsCompatible          |myserveriscompatible          |1.0                 |DONE      |Manifest: NOSIGNATURE
        DungeonCrawl-1.19-2.3.11.jar                      |Dungeon Crawl                 |dungeoncrawl                  |2.3.11              |DONE      |Manifest: NOSIGNATURE
        DefaultSettings-1.19.x-2.8.7.jar                  |DefaultSettings               |defaultsettings               |2.8.7               |DONE      |Manifest: NOSIGNATURE
        charginggadgets-1.9.0.jar                         |Charging Gadgets              |charginggadgets               |1.9.0               |DONE      |Manifest: NOSIGNATURE
        mcjtylib-1.19-7.1.1.jar                           |McJtyLib                      |mcjtylib                      |1.19-7.1.1          |DONE      |Manifest: NOSIGNATURE
        rftoolsbase-1.19.1-4.1.1.jar                      |RFToolsBase                   |rftoolsbase                   |1.19.1-4.1.1        |DONE      |Manifest: NOSIGNATURE
        xnet-1.19-5.1.0.jar                               |XNet                          |xnet                          |1.19-5.1.0          |DONE      |Manifest: NOSIGNATURE
        rftoolspower-1.19-5.1.0.jar                       |RFToolsPower                  |rftoolspower                  |1.19-5.1.0          |DONE      |Manifest: NOSIGNATURE
        rftoolsbuilder-1.19.1-5.2.0.jar                   |RFToolsBuilder                |rftoolsbuilder                |1.19.1-5.2.0        |DONE      |Manifest: NOSIGNATURE
        deepresonance-1.19-4.1.0.jar                      |DeepResonance                 |deepresonance                 |1.19-4.1.0          |DONE      |Manifest: NOSIGNATURE
        XNetGases-1.19.1-4.0.0.jar                        |XNet Gases                    |xnetgases                     |4.0.0               |DONE      |Manifest: NOSIGNATURE
        rftoolsstorage-1.19-4.1.0.jar                     |RFToolsStorage                |rftoolsstorage                |1.19-4.1.0          |DONE      |Manifest: NOSIGNATURE
        rftoolscontrol-1.19-6.1.0.jar                     |RFToolsControl                |rftoolscontrol                |1.19-6.1.0          |DONE      |Manifest: NOSIGNATURE
        mahoutsukai-1.19.2-v1.34.38.jar                   |Mahou Tsukai                  |mahoutsukai                   |1.19.2-v1.34.38     |DONE      |Manifest: NOSIGNATURE
        farsight-1.19.2-2.1.jar                           |Farsight mod                  |farsight_view                 |1.19.2-2.1          |DONE      |Manifest: NOSIGNATURE
        ToastControl-1.19.2-7.0.0.jar                     |Toast Control                 |toastcontrol                  |7.0.0               |DONE      |Manifest: NOSIGNATURE
        mininggadgets-1.13.0.jar                          |Mining Gadgets                |mininggadgets                 |1.13.0              |DONE      |Manifest: NOSIGNATURE
        hexcasting-forge-1.19.2-0.10.3.jar                |Hex Casting                   |hexcasting                    |0.10.3              |DONE      |Manifest: NOSIGNATURE
        ftb-chunks-forge-1902.3.14-build.218.jar          |FTB Chunks                    |ftbchunks                     |1902.3.14-build.218 |DONE      |Manifest: NOSIGNATURE
        XyCraft Core-0.5.17.jar                           |XyCraft: Core                 |xycraft_core                  |0.5.17              |DONE      |Manifest: NOSIGNATURE
        XyCraft World-0.5.17.jar                          |XyCraft: World                |xycraft_world                 |0.5.17              |DONE      |Manifest: NOSIGNATURE
        XyCraft Override-0.5.17.jar                       |XyCraft: Override             |xycraft_override              |0.5.17              |DONE      |Manifest: NOSIGNATURE
        MysticalAgriculture-1.19.2-6.0.5.jar              |Mystical Agriculture          |mysticalagriculture           |6.0.5               |DONE      |Manifest: NOSIGNATURE
        MysticalAgradditions-1.19.2-6.0.2.jar             |Mystical Agradditions         |mysticalagradditions          |6.0.2               |DONE      |Manifest: NOSIGNATURE
        craftingtweaks-forge-1.19-15.1.0.jar              |CraftingTweaks                |craftingtweaks                |15.1.0              |DONE      |Manifest: NOSIGNATURE
        rftoolsutility-1.19-5.1.0.jar                     |RFToolsUtility                |rftoolsutility                |1.19-5.1.0          |DONE      |Manifest: NOSIGNATURE
        libIPN-forge-1.19-2.0.1.jar                       |libIPN                        |libipn                        |2.0.1               |DONE      |Manifest: NOSIGNATURE
        sebastrnlib-2.0.1.jar                             |Sebastrn Lib                  |sebastrnlib                   |2.0.1               |DONE      |Manifest: NOSIGNATURE
        appliedcooking-2.0.3.jar                          |Applied Cooking               |appliedcooking                |2.0.3               |DONE      |Manifest: NOSIGNATURE
        refinedcooking-3.0.3.jar                          |Refined Cooking               |refinedcooking                |3.0.3               |DONE      |Manifest: NOSIGNATURE
        refinedstorage-1.11.4.jar                         |Refined Storage               |refinedstorage                |1.11.4              |DONE      |Manifest: NOSIGNATURE
        ExtraStorage-1.19.2-3.0.1.jar                     |Extra Storage                 |extrastorage                  |3.0.1               |DONE      |Manifest: NOSIGNATURE
        appliedenergistics2-forge-12.9.2.jar              |Applied Energistics 2         |ae2                           |12.9.2              |DONE      |Manifest: NOSIGNATURE
        AEInfinityBooster-1.19.2-1.2.0+11.jar             |AEInfinityBooster             |aeinfinitybooster             |1.19.2-1.2.0+11     |DONE      |Manifest: NOSIGNATURE
        cookingforblockheads-forge-1.19.2-13.3.0.jar      |CookingForBlockheads          |cookingforblockheads          |13.3.0              |DONE      |Manifest: NOSIGNATURE
        rebornstorage-1.19.2-5.0.2.jar                    |RebornStorage                 |rebornstorage                 |5.0.2               |DONE      |Manifest: NOSIGNATURE
        merequester-1.19.2-1.0.3.jar                      |ME Requester                  |merequester                   |1.19.2-1.0.3        |DONE      |Manifest: NOSIGNATURE
        Patchouli-1.19.2-77.jar                           |Patchouli                     |patchouli                     |1.19.2-77           |DONE      |Manifest: NOSIGNATURE
        ars_nouveau-1.19.2-3.8.3.jar                      |Ars Nouveau                   |ars_nouveau                   |3.8.3               |DONE      |Manifest: NOSIGNATURE
        Delightful-1.19-3.2.1.jar                         |Delightful                    |delightful                    |3.2.1               |DONE      |Manifest: NOSIGNATURE
        ars_creo-1.19.2-3.1.3.jar                         |Ars Creo                      |ars_creo                      |3.1.3               |DONE      |Manifest: NOSIGNATURE
        AE2WTLib-12.8.5.jar                               |AE2WTLib                      |ae2wtlib                      |12.8.5              |DONE      |Manifest: NOSIGNATURE
        elementalcraft-1.19.2-5.5.9.jar                   |ElementalCraft                |elementalcraft                |1.19.2-5.5.9        |DONE      |Manifest: NOSIGNATURE
        moonlight-1.19.2-2.1.31-forge.jar                 |Moonlight Library             |moonlight                     |1.19.2-2.1.31       |DONE      |Manifest: NOSIGNATURE
        eccentrictome-1.19.2-1.9.1.jar                    |Eccentric Tome                |eccentrictome                 |1.19.2-1.9.1        |DONE      |Manifest: NOSIGNATURE
        ToolBelt-1.19.2-1.19.7.jar                        |Tool Belt                     |toolbelt                      |1.19.7              |DONE      |Manifest: NOSIGNATURE
        titanium-1.19.2-3.7.0-23.jar                      |Titanium                      |titanium                      |3.7.0               |DONE      |Manifest: NOSIGNATURE
        silent-lib-1.19.2-7.0.3.jar                       |Silent Lib                    |silentlib                     |7.0.3               |DONE      |Manifest: NOSIGNATURE
        AE2-Things-1.1.0-beta.jar                         |AE2 Things                    |ae2things                     |1.1.0-beta          |DONE      |Manifest: NOSIGNATURE
        theurgy-1.19.2-1.1.1.jar                          |Theurgy                       |theurgy                       |1.19.2-1.1.1        |DONE      |Manifest: NOSIGNATURE
        smoothboot(reloaded)-mc1.19.2-0.0.2.jar           |Smooth Boot (Reloaded)        |smoothboot                    |0.0.2               |DONE      |Manifest: NOSIGNATURE
        Iceberg-1.19.2-forge-1.1.4.jar                    |Iceberg                       |iceberg                       |1.1.4               |DONE      |Manifest: NOSIGNATURE
        reliquary-1.19.2-2.0.20.1166.jar                  |Reliquary                     |reliquary                     |1.19.2-2.0.20.1166  |DONE      |Manifest: NOSIGNATURE
        Quark-3.4-388.jar                                 |Quark                         |quark                         |3.4-388             |DONE      |Manifest: NOSIGNATURE
        LegendaryTooltips-1.19.2-forge-1.4.0.jar          |Legendary Tooltips            |legendarytooltips             |1.4.0               |DONE      |Manifest: NOSIGNATURE
        chemlib-1.19.2-2.0.16.jar                         |ChemLib                       |chemlib                       |1.19.2-2.0.16       |DONE      |Manifest: NOSIGNATURE
        PigPen-Forge-1.19.2-11.1.2.jar                    |PigPen                        |pigpen                        |11.1.2              |DONE      |Manifest: NOSIGNATURE
        FastWorkbench-1.19.2-7.0.1.jar                    |Fast Workbench                |fastbench                     |7.0.1               |DONE      |Manifest: NOSIGNATURE
        FluxNetworks-1.19.2-7.1.3.12.jar                  |Flux Networks                 |fluxnetworks                  |7.1.3.12            |DONE      |Manifest: NOSIGNATURE
        ars_elemental-1.19.2-0.5.7.1.jar                  |Ars Elemental                 |ars_elemental                 |1.19.2-0.5.7.1      |DONE      |Manifest: NOSIGNATURE
        enderchests-1.19-1.10.1.jar                       |EnderChests                   |enderchests                   |1.10.1              |DONE      |Manifest: NOSIGNATURE
        Applied-Botanics-1.4.1.jar                        |Applied Botanics              |appbot                        |1.4.1               |DONE      |Manifest: NOSIGNATURE
        modonomicon-1.19.2-1.23.2.jar                     |Modonomicon                   |modonomicon                   |1.19.2-1.23.2       |DONE      |Manifest: NOSIGNATURE
        quartz-1.19.2-0.1.0-beta.1.jar                    |Quartz                        |quartz                        |0.1.0-beta.1        |DONE      |Manifest: NOSIGNATURE
        minecolonies-1.19.2-1.0.1200-BETA.jar             |MineColonies                  |minecolonies                  |1.19.2-1.0.1200-BETA|DONE      |Manifest: NOSIGNATURE
        pylons-1.19.2-3.1.0.jar                           |Pylons                        |pylons                        |3.1.0               |DONE      |Manifest: NOSIGNATURE
        creeperoverhaul-2.0.6-forge.jar                   |Creeper Overhaul              |creeperoverhaul               |2.0.6               |DONE      |Manifest: NOSIGNATURE
        ferritecore-5.0.3-forge.jar                       |Ferrite Core                  |ferritecore                   |5.0.3               |DONE      |Manifest: 41:ce:50:66:d1:a0:05:ce:a1:0e:02:85:9b:46:64:e0:bf:2e:cf:60:30:9a:fe:0c:27:e0:63:66:9a:84:ce:8a
        engineersdecor-1.19.2-forge-1.3.28.jar            |Engineer’s Decor              |engineersdecor                |1.3.28              |DONE      |Manifest: bf:30:76:97:e4:58:41:61:2a:f4:30:d3:8f:4c:e3:71:1d:14:c4:a1:4e:85:36:e3:1d:aa:2f:cb:22:b0:04:9b
        SoL-Carrot-1.19.2-1.14.0.jar                      |Spice of Life: Carrot Edition |solcarrot                     |1.19.2-1.14.0       |DONE      |Manifest: NOSIGNATURE
        functionalstorage-1.19.2-1.1.3.jar                |Functional Storage            |functionalstorage             |1.19.2-1.1.3        |DONE      |Manifest: NOSIGNATURE
        moredragoneggs-3.2.jar                            |More Dragon Eggs              |moredragoneggs                |3.2                 |DONE      |Manifest: NOSIGNATURE
        modular-routers-1.19.2-10.2.0-3.jar               |Modular Routers               |modularrouters                |10.2.0-3            |DONE      |Manifest: NOSIGNATURE
        charmofundying-forge-6.1.1+1.19.2.jar             |Charm of Undying              |charmofundying                |6.1.1+1.19.2        |DONE      |Manifest: NOSIGNATURE
        BetterF3-4.0.0-Forge-1.19.2.jar                   |BetterF3                      |betterf3                      |4.0.0               |DONE      |Manifest: NOSIGNATURE
        refinedstorageaddons-0.9.0.jar                    |Refined Storage Addons        |refinedstorageaddons          |0.9.0               |DONE      |Manifest: NOSIGNATURE
        Applied-Mekanistics-1.3.3.jar                     |Applied Mekanistics           |appmek                        |1.3.3               |DONE      |Manifest: NOSIGNATURE
        AEAdditions-1.19.2-4.0.2.jar                      |AE Additions                  |ae2additions                  |4.0.2               |DONE      |Manifest: NOSIGNATURE
        megacells-forge-2.0.0-beta.5-1.19.2.jar           |MEGA Cells                    |megacells                     |2.0.0-beta.5-1.19.2 |DONE      |Manifest: NOSIGNATURE
        expandability-forge-7.0.0.jar                     |ExpandAbility                 |expandability                 |7.0.0               |DONE      |Manifest: NOSIGNATURE
        Morph-o-Tool-1.6-34.jar                           |Morph-o-Tool                  |morphtool                     |1.6-34              |DONE      |Manifest: NOSIGNATURE
        flickerfix-1.19.1-3.1.0.jar                       |FlickerFix                    |flickerfix                    |3.1.0               |DONE      |Manifest: NOSIGNATURE
        createaddition-1.19.2-20221230a.jar               |Create Crafts & Additions     |createaddition                |1.19.2-20221230a    |DONE      |Manifest: NOSIGNATURE
    Crash Report UUID: 24e6425c-dd2e-463e-b286-26617df73918
    FML: 43.2
    Forge: net.minecraftforge:43.2.3
    Flywheel Backend: Off
    FramedBlocks BlockEntity Warning: Not applicable

 

Sometimes we get could not reserve enough space for object heap error when we run a java application. This is a JVM error occurs for the reasons listed below. Before diving deep into the topic lets understand JVM heap space first.

Understanding JVM heap space:

Limited memory is allocated in JVM to run a java application. The memory is specified during the startup of applications.

Read Also:  Java.net.ConnectException: Connection Refused

 -Xms is a VM option to specify heap memory. Heap size can be fixed or variable depending on the strategy of garbage collection. Maximum heap size can be specified by -Xmx option.

The main cause of heap memory error occurs for the following three reasons:

Reason 1:

If we run a java application without specifying memory we can get this kind of error.
The error should be like this.

Error occurred during initialization of VM
Could not reserve enough space for object heap
Could not create the Java virtual machine.

Solution:

Most of the time this error occurs for 32 bit JVM. Because 32 bit JVM requires free space in memory to run the application but many times there is not enough memory to run java application.

We should replace 32 bit JVM with 64 bit JVM in a 64-bit computer to resolve this issue or we can specify memory to run the application by using below command

java -Xmx256M JavaApplication

Reason 2:

If we assign memory to 32 bit JVM greater than the heap size of the JVM, we can get this kind of error.

Suppose our JVM heap memory size is 2006M and we also assign the same size when we execute the program, we will get heap size error. For example, if we execute the following command, we will get
error in 32-bit JVM.

java -Xms2006M -Xmx2006M JavaApplication

Solution:

We should specify smaller memory as heap memory in 32 bit JVM as shown below or we should use 64 bit JVM

java -Xms1336M -Xmx1336M JavaApplication

Reason 3:

If we specify heap memory more than our physical memory, we will get this kind of error. Suppose we have 2GB ram but if we execute the following command we will get the error.

java -Xms8192M -Xmx8192M JavaApplication

Solution:

We can get rid of this error by specifying a smaller heap memory.

java -Xms1336M -Xmx1336M JavaApplication

Another way to resolve this issue, we should specify memory size in the _JAVA_OPTIONS variable in the path of the operation system. When we run the Java application it will take the memory size from the path. This path data should overcome the problems described above.

For Linux:

-bash-3.2$ export _JAVA_OPTIONS="-Xmx256M"
-bash-3.2$ javac JavaApplication.java

For Windows:

Follow the below path:
Start -> Control Panel -> System -> Advance(tab) -> Environment Vairables -> System Variables ->
Create  New Variable Name: _JAVA_OPTIONS -> Variable Value: -Xmx256M

Nowadays, 64 bit systems are available. We should avoid 32-bit hardware architecture and 32-bit java versions.

That’s all for today, please mention in comments in case you have any questions related to could not reserve enough space for object heap error.

Even though Java applets aren’t a popular web technology these days, there are countless reasons to deploy a Java virtual machine directly on a Linux server. If you try to run the Linux java command outright either on discrete hardware or inside of its own VM, then you might get an “error occurred during initialization of VM could not reserve enough space for object heap” message.

This probably looks rather odd because you more than likely have enough RAM to run the command, but it’s largely due to a specific quirk in the way that physical and virtual memory pages get used. Specifying some relatively large sizes should allow you to completely bypass this message and run the java command the way you would any other.

Method 1: Using Command Line Options

If you’ve tried to run java and gotten this message, then you’ve probably already run the free command to make sure that there’s ample supplies of memory to run the program in.

java & free commands

Notice that on our test machine we had some 2.3 GB of physical RAM and not a single page of virtual memory had gotten used yet. If you notice that you have a memory crunch, then you’ll want to close other things that you have running before trying it again. On the other hand, those who found that they have plenty of free memory can try to specify a size directly.

For example, on our machine we were able to run the command as java -Xms256m -Xmx512M and it worked like it would have otherwise been expected to. This constrains the heap size that the Java virtual machine attempts to reserve on startup. Since an unrestrained virtual machine could hypothetically do unusual things, it might throw error messages on an otherwise free system. You may also want to play around with those two values before you find the right combination.

This can be an issue regardless of what you’re running it on since the JVM has nothing to do with the type of VM you might be using to run GNU/Linux.

Method 2: Exporting the Variables to Make the Change Permanent

When you find a value that works you can export it to make it permanent for that session. For instance, we used export _JAVA_OPTIONS=’-Xms256M -Xmx512M’ from the bash command prompt and it allowed us to run the java command by itself without any other options until we logged out of our server.

It needed to be run again when we logged in another session, so you might want to add it to any relevant startup scripts if you plan to be using the java command quite often. We added the line to our .bash_login file and it seemed to work each time we used a login prompt without having to run it again, though you might have to find another location for it if you’re working with a different shell.

You may have noticed that only certain hardware configurations trigger this error message. That’s because it usually happens on machines with a great deal of physical RAM but lower ulimits for how to use it. Java will try to allocate a huge block only to be told it can’t, which it interprets as running out of memory.

Method 3: Printing Current Java Options

If you’ve been working at the command line and want a quick reference to what you’ve currently set the _JAVA_OPTIONS value to, then simply run echo $_JAVA_OPTIONS and it will immediately print out the current values. This is useful for troubleshooting when you’re trying to figure out the right numerals to try.

Keep in mind that while this fix shouldn’t require any other playing around, Java will throw out the “could not reserve enough space for object heap” message if you ever find yourself genuinely on the short end of virtual memory. If this is the case, then you’ll want to double check what processes are currently running and possibly restart the server if that’s an option. You could also create more swap space, but if this is an issue it’s generally better to try and correct it in some other way.

In the rare case that your settings seem to be right but it still isn’t working, make sure you’ve installed the 64-bit Java package since it should be immune to this problem. Contiguous memory requirements only apply to the 32-bit version of Java. We found in a handful of cases the 64-bit version tried to create a 32-bit virtual machine, so specifying the -d64 option on the command line fixed it for us.

Photo of Kevin Arrows

Kevin Arrows

Kevin is a dynamic and self-motivated information technology professional, with a Thorough knowledge of all facets pertaining to network infrastructure design, implementation and administration. Superior record of delivering simultaneous large-scale mission critical projects on time and under budget.

OpenVZ & Memory

The failcnt is going up on privvmpages, so your container is unable to allocate any more virtual memory space from the host:

root@server: ~ # cat /proc/user_beancounters
Version: 2.5
       uid  resource                     held              maxheld              barrier                limit              failcnt
            privvmpages               6005601              6291447              6291456              6291456                 >233<
            physpages                 4635460              6291456              6291456              6291456                    0
            vmguarpages                     0                    0              6291456  9223372036854775807                    0
            oomguarpages              1529376              2144671              6291456  9223372036854775807                    0

Note that virtual memory != physical memory. Processes can allocate up to somewhere around the addressable amount of virtual memory (32bit ~ 2G — 4G, 64bit 8 TB — 256 TB) but that doesn’t mean physical memory pages are being used ( a page being a 4KB chunk of memory).

physpages is the number of physical memory pages your container can use.
oomguarpages is the guaranteed memory pages the container will receive when the host is memory constrained.
privvmpages is the number of virtual memory pages your container can use
vmguarpages is the guaranteed amount of virtual memory in the same way

Java

Oracle Java will always allocate one contiguous chunk of virtual memory. Running java with no arguments on a box results in 5M of real memory used (RSS), but 660M of VM space allocated (VSZ):

  PID COMMAND                        VSZ   RSS
20816 java                        667496  4912 

Looking at the memory segments for the java process in it’s smaps file shows a chunk of about 500MB allocated, the rest is memory mapped files and normal java stuff.

On a system that’s been up for a while the available VM space becomes fragmented as processes use/free parts of it. A grep Vmalloc /proc/meminfo will give you VmallocChunk which is the largest free chunk currently available. If this is low, the system will try and allocate more when java requests it, after all it’s virtually unlimited on a 64bit box.

Fix

Tell your host to configure privvmpages and vmguarpages much higher. There’s no need for them to be the same as physical memory as that impacts the way linux memory works

You might be able to work around the problem temporarily by dropping your file cache echo 1 > /proc/sys/vm/drop_caches but that’s only temporary.

You can limit the chunk of memory java tries to allocate at run time with a minimum Xms or while running with maximum Xmx. Running java with these options on my machine:

java -Xms10M -Xmx10M

reduces the total virtual size to 140MB or so with only a 10MB contiguous chunk for the java heap allocated.

  • #1

Помогите! У меня 2 гб озу я отключил все приложения и запустил: gradlew setupDecompWorkspace
gradle.properties: org.gradle.jvmargs=-Xmx1024m

И вот ошибка:
:decompileMc
Error occurred during initialization of VM
Could not reserve enough space for 3145728KB object heap
:decompileMc FAILED

FAILURE: Build failed with an exception.

В диспетчере задач оставалось ещё много памяти (где-то 700-900 мб)

1581325072055.png

1581325091630.png

  • #2

я всё понял надо просто 3 гб озу

0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии

А вот еще интересные материалы:

  • Яшка сломя голову остановился исправьте ошибки
  • Ясность цели позволяет целеустремленно добиваться намеченного исправьте ошибки
  • Ясность цели позволяет целеустремленно добиваться намеченного где ошибка
  • Could not initialize steam как исправить ошибку
  • Could not initialize egl ошибка