Jump to content

GuiScreen and Item?


godbaba

Recommended Posts

Hi I have a mod full of Guis and I had a problem with the guis crashing the server as soon as I added @SideOnly(Side.CLIENT) to the onItemRightClick command it fixed the problem but the new problem is that I used to have guibuttons that when you click drops item @SideOnly(Side.CLIENT) annotation brokes them!!

 

What can I do about this ? :(

Link to comment
Share on other sites

For example

 

BlockCode:

package netherfors.block;

import net.minecraft.block.Block;
import net.minecraft.block.BlockContainer;
import net.minecraft.block.material.Material;
import net.minecraft.client.Minecraft;
import net.minecraft.client.renderer.texture.IconRegister;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.src.ModLoader;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.Icon;
import net.minecraft.world.World;
import netherfors.main;
import netherfors.gui.GuiLavaCollector;
import netherfors.tile.TileLavaCollector;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

public class LavaCollector extends BlockContainer{

private Icon top,bottom;

public LavaCollector(int id) {
	super(id, Material.rock);
	this.setStepSound(Block.soundStoneFootstep);
	this.setCreativeTab(main.nettab);
	this.setHardness(5f);
}

@SideOnly(Side.CLIENT)
    public boolean onBlockActivated(World world, int x, int y, int z, EntityPlayer player, int par6, float par7, float par8, float par9)
    {
    	TileLavaCollector tile = (TileLavaCollector) world.getBlockTileEntity(x, y, z);
    	if(tile!=null){
    		Minecraft mc = ModLoader.getMinecraftInstance();
    		mc.displayGuiScreen(new GuiLavaCollector(player,world,tile));
    	}
    	return true;
    }
    
    public void onBlockClicked(World world, int x, int y, int z, EntityPlayer player) {
    	TileLavaCollector tile = (TileLavaCollector) world.getBlockTileEntity(x, y, z);
    	if(tile!=null){
    		if(tile.itemamount>0){
    			EntityItem it = new EntityItem(world, x, y, z, new ItemStack(main.craftingitems,tile.itemamount,0));
    			if(!world.isRemote){
    				world.spawnEntityInWorld(it);
    			}
    			tile.itemamount = 0;
    		}
    	}
    }
    
    public void onBlockAdded(World world, int x, int y, int z)
    {
    	TileLavaCollector t = (TileLavaCollector) world.getBlockTileEntity(x, y, z); 
    	if(t!=null){
    		t.itemamount = 0;
    		t.amount = 0;
    		t.interval = 0;
    		t.time = 0;
    	}

    }
    
    public void registerIcons(IconRegister r){
    	this.blockIcon = r.registerIcon("netherfors:lavaside");
    	this.top = r.registerIcon("netherfors:lavatop");
    	this.bottom = r.registerIcon("netherfors:lavabottom");
    }
    
    public Icon getIcon(int par1, int par2)
    {
        return par1 == 1 ? this.top : (par1 == 0 ? this.bottom : (par1 != par2 ? this.blockIcon : this.blockIcon));
    }

@Override
public TileEntity createNewTileEntity(World world) {
	return new TileLavaCollector();
}

}

 

GuiCode :

package netherfors.gui;

import net.minecraft.client.gui.GuiScreen;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.world.World;
import netherfors.tile.TileLavaCollector;

import org.lwjgl.opengl.GL11;

import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

public class GuiLavaCollector extends GuiScreen{

private int wi,he;
private EntityPlayer player;
private World world;
private TileLavaCollector tile;

// 88 // 65

public GuiLavaCollector(EntityPlayer pla,World wor,TileLavaCollector ti){
	this.wi = 88;
	this.he = 90;
	this.world = wor;
	this.player = pla;
	this.tile = ti;
}

    public boolean doesGuiPauseGame()
    {
        return false;
    }

public void drawProgressBar(int i){

	if(i>65){
		i = 65;
	}

        GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
        this.mc.renderEngine.bindTexture("/mods/netherfors/textures/gui/lavacollector.png");;
        this.drawTexturedModalRect(width/2-35, (height/2-37)+(65-i), 88, 0, 20, i);
}

public void progressOverHundred(int o){

	if(o>100){
		o = 100;
	}

	int percent = (65*o)/100;
	drawProgressBar(percent);

}


public void initGui(){

}

@SideOnly(Side.CLIENT)
public void drawScreen(int par1, int par2, float par3)
{
        this.drawGuiContainerBackgroundLayer(par3, par2, par1);
        int t = tile.amount;
        progressOverHundred(t);
        this.fontRenderer.drawSplitString("Progress\n"+Integer.toString(tile.amount)+"%\n\nAmount\n"+Integer.toString(tile.itemamount), width/2-20, height/2-34, 54, 0);
        super.drawScreen(par1, par2, par3);
}	

@SideOnly(Side.CLIENT)
    protected void drawGuiContainerBackgroundLayer(float par1, int par2, int par3)
    {
        GL11.glColor4f(1.0F, 1.0F, 1.0F, 1.0F);
        this.mc.renderEngine.bindTexture("/mods/netherfors/textures/gui/lavacollector.png");
        int k = (this.width - this.wi) / 2;
        int l = (this.height - this.he) / 2;
        this.drawTexturedModalRect(k, l, 0, 0, this.wi, this.he);
    }

}

 

If I dont put sideonly to the onBlockActivated it crashes the server :)

Link to comment
Share on other sites

yeah make sens

mc.displayGuiScreen(new GuiLavaCollector(player,world,tile));

 

this is wrong, you need a IGuiHandler and call this instead

 

@Override
public boolean onBlockActivated(World world, int x, int y, int z,
		EntityPlayer player, int a, float b, float c, float d) {
	TileEntity te = world.getBlockTileEntity(x, y, z);
	if(te != null){
		TileEntityPlot tep = (TileEntityPlot)te;
		if(tep.isBought()){
			return false;
		}
		if(player.username.equals(tep.owner)){
		player.openGui(TheMod.instance, PlotSellerGui.GUI_ID, world, x, y, z);
		}else{
			player.openGui(TheMod.instance, PlotBuyerGui.GUI_ID, world, x, y, z);
		}
	}
	return true;
}

example from one of my block ^^

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

yeah make sens

mc.displayGuiScreen(new GuiLavaCollector(player,world,tile));

 

this is wrong, you need a IGuiHandler and call this instead

 

@Override
public boolean onBlockActivated(World world, int x, int y, int z,
		EntityPlayer player, int a, float b, float c, float d) {
	TileEntity te = world.getBlockTileEntity(x, y, z);
	if(te != null){
		TileEntityPlot tep = (TileEntityPlot)te;
		if(tep.isBought()){
			return false;
		}
		if(player.username.equals(tep.owner)){
		player.openGui(TheMod.instance, PlotSellerGui.GUI_ID, world, x, y, z);
		}else{
			player.openGui(TheMod.instance, PlotBuyerGui.GUI_ID, world, x, y, z);
		}
	}
	return true;
}

example from one of my block ^^

 

I converted all of my code into IGuiHandler but now world.spawnEntityInWorld() spawns fake items as well :)

Still have the problem...

Link to comment
Share on other sites

Don't.Use.SideOnly.Annotation.

never use @sideonly its only causing more confusion then anything

NEVER

 

You cant depent on packets because players easily can exploit them :) And they are actually complicated :)

with this logic the mod is un-codable, the thing you must understand is that packet are good but you MUST filter them, dont accept anything "just because"

IRL example:

in my mod people have a skill tree that they can buy spell from, but player dont tell the server "hey im now max level" when they want to buy a new skill they send a packet to the server saying "can i buy this ?" and the server will decide yes or no, so theres no way around usign a hacked client on this

 

And they are actually complicated

you feed stuff in a stream on one side and collect it on the other ....

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

yes only if you dont mind using MY classes....(located: http://www.minecraftforge.net/wiki/Organising_packet_handlers)

 

//this code client side (in your gui ?) where the button was pressed or wtv
int spawnItemId = 55;
PacketWriteStream stream = new PacketWriteStream();
stream.put(spawnItemId);
PacketDispatcher.sendPacketToServer(stream.makePacket("channel");


server side in method 
public void onPacketData(INetworkManager manager,
                        Packet250CustomPayload packet, Player playerEntity) :

int spawnItemId = 55;
PacketReadStream stream = new PacketReadStream(packet);
int packetID = stream.readInt();
if(packetID == spawnItemId){
    //make check to see if its a valid state  
    //spawn item
    //to get a reference to the player that send this:
    EntityPlayer player = (EntityPlayer)playerEntity;
   //then player.doSomething() or player.worldObj.spawnItemInWorld(new EntityItem etc)
}

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

i actually looked into thsi class later, but these utility class were already done so wtv :P

and my like 500 different packet are all written with this class ... soooo i dont want to change all that xD

how to debug 101:http://www.minecraftforge.net/wiki/Debug_101

-hydroflame, author of the forge revolution-

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



  • Recently Browsing

    • No registered users viewing this page.
  • Posts

    • Dewa633 saat ini telah menyediakan link alternatif terbaru yang dapat di akses tanpa harus menggunakan vpn  Daftar akun vip KLIK DI SINI 
    • private static final ResourceLocation image = new ResourceLocation(Main.MODID, "textures/gui/image.png"); @SubscribeEvent public static void onRenderGuiOverlayPre(RenderGuiOverlayEvent event) { event.getGuiGraphics().blit(image, 0, 0, 0, 0, 64, 64, 64, 64); } I tried to draw an image on the HUD screen with this code. Actually I am drawing the image, but the image is drawn opaque even though it is transparent. How can I solve this problem? 
    • Mutant More (mutantmore) has failed to load correctly   java.lang.NoClassDefFoundError: software/bernie/geckolib3/GeckoLib29,138.1612
    • # # A fatal error has been detected by the Java Runtime Environment: # #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x00007ff86a613ca0, pid=6596, tid=15124 # # JRE version: OpenJDK Runtime Environment Microsoft-8035246 (17.0.8+7) (build 17.0.8+7-LTS) # Java VM: OpenJDK 64-Bit Server VM Microsoft-8035246 (17.0.8+7-LTS, mixed mode, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64) # Problematic frame: # C  [atio6axx.dll+0x193ca0] # # No core dump will be written. Minidumps are not enabled by default on client versions of Windows # # If you would like to submit a bug report, please visit: #   https://aka.ms/minecraftjavacrashes # The crash happened outside the Java Virtual Machine in native code. # See problematic frame for where to report the bug. # ---------------  S U M M A R Y ------------ Command Line: -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Dos.name=Windows 10 -Dos.version=10.0 -Xss1M -Djava.library.path=C:\Users\timur\curseforge\minecraft\Install\bin\073f0576cb48545209ccc2317eb4040d72e0ad50 -Dminecraft.launcher.brand=minecraft-launcher -Dminecraft.launcher.version=2.24.17 -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher,securejarhandler,asm-commons,asm-util,asm-analysis,asm-tree,asm,JarJarFileSystems,client-extra,fmlcore,javafmllanguage,lowcodelanguage,mclanguage,forge-,forge-43.3.7.jar,forge-43.3.7 -DmergeModules=jna-5.10.0.jar,jna-platform-5.10.0.jar -DlibraryDirectory=C:\Users\timur\curseforge\minecraft\Install\libraries --module-path=C:\Users\timur\curseforge\minecraft\Install\libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar;C:\Users\timur\curseforge\minecraft\Install\libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar;C:\Users\timur\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar;C:\Users\timur\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar;C:\Users\timur\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar;C:\Users\timur\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar;C:\Users\timur\curseforge\minecraft\Install\libraries/org/ow2/asm/asm/9.5/asm-9.5.jar;C:\Users\timur\curseforge\minecraft\Install\libraries/net/minecraftforge/JarJarFileSystems/0.3.16/JarJarFileSystems-0.3.16.jar --add-modules=ALL-MODULE-PATH --add-opens=java.base/java.util.jar=cpw.mods.securejarhandler --add-opens=java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports=java.base/sun.security.util=cpw.mods.securejarhandler --add-exports=jdk.naming.dns/com.sun.jndi.dns=java.naming -Xmx4096m -Xms256m -Dminecraft.applet.TargetDirectory=C:\Users\timur\curseforge\minecraft\Instances\Freshcraft -Dfml.ignorePatchDiscrepancies=true -Dfml.ignoreInvalidMinecraftCertificates=true -Duser.language=en -Duser.country=US -DlibraryDirectory=C:\Users\timur\curseforge\minecraft\Install\libraries -Dlog4j.configurationFile=C:\Users\timur\curseforge\minecraft\Install\assets\log_configs\client-1.12.xml cpw.mods.bootstraplauncher.BootstrapLauncher --username Goose3310 --version forge-43.3.7 --gameDir C:\Users\timur\curseforge\minecraft\Instances\Freshcraft --assetsDir C:\Users\timur\curseforge\minecraft\Install\assets --assetIndex 1.19 --uuid e47fa913e3264c5f9b86d73eb58f9c8b -_Oo2rwbKG_JcDj_xWnruMnKs --clientId M2RhYTgzNzMtZWZjZi00YThlLTg3MDEtNjRkZmQxYWYwMGM0 --xuid 2535419973866444 --userType msa --versionType release --width 1024 --height 768 --launchTarget forgeclient --fml.forgeVersion 43.3.7 --fml.mcVersion 1.19.2 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20220805.130853 Host: AMD Ryzen 7 6800H with Radeon Graphics         , 16 cores, 15G,  Windows 11 , 64 bit Build 22621 (10.0.22621.2506) Time: Thu May 16 10:52:40 2024 RTZ 2 (s 11 , 64 bit Build 22621 (10.0.22621.2506) elapsed time: 19.646227 seconds (0d 0h 0m 19s) ---------------  T H R E A D  --------------- Current thread (0x0000020cd0267e90):  JavaThread "Render thread" [_thread_in_native, id=15124, stack(0x00000085c2c00000,0x00000085c2d00000)] Stack: [0x00000085c2c00000,0x00000085c2d00000],  sp=0x00000085c2cfa878,  free space=1002k Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) C  [atio6axx.dll+0x193ca0] Java frames: (J=compiled Java code, j=interpreted, Vv=VM code) j  org.lwjgl.system.JNI.invokePPPP(IIJJJJ)J+0 [email protected]+7 j  org.lwjgl.glfw.GLFW.nglfwCreateWindow(IIJJJ)J+14 [email protected]+7 j  org.lwjgl.glfw.GLFW.glfwCreateWindow(IILjava/lang/CharSequence;JJ)J+34 [email protected]+7 j  net.minecraftforge.client.loading.NoVizFallback.lambda$fallback$0(Ljava/util/function/IntSupplier;Ljava/util/function/IntSupplier;Ljava/util/function/Supplier;Ljava/util/function/LongSupplier;)J+28 [email protected] j  net.minecraftforge.client.loading.NoVizFallback$$Lambda$4471+0x0000000800d45ee8.getAsLong()J+16 [email protected] j  net.minecraftforge.fml.loading.progress.EarlyProgressVisualization$Visualization$$Lambda$4472+0x0000000800d3df68.apply(Ljava/lang/Object;)Ljava/lang/Object;+4 [email protected] J 4102 c2 java.util.Optional.map(Ljava/util/function/Function;)Ljava/util/Optional; [email protected] (30 bytes) @ 0x0000020cdcee787c [0x0000020cdcee7820+0x000000000000005c] j  net.minecraftforge.fml.loading.progress.EarlyProgressVisualization$Visualization.handOffWindow(Ljava/util/function/IntSupplier;Ljava/util/function/IntSupplier;Ljava/util/function/Supplier;Ljava/util/function/LongSupplier;)J+48 [email protected] j  net.minecraftforge.fml.loading.progress.EarlyProgressVisualization.handOffWindow(Ljava/util/function/IntSupplier;Ljava/util/function/IntSupplier;Ljava/util/function/Supplier;Ljava/util/function/LongSupplier;)J+9 [email protected] j  com.mojang.blaze3d.platform.Window.<init>(Lcom/mojang/blaze3d/platform/WindowEventHandler;Lcom/mojang/blaze3d/platform/ScreenManager;Lcom/mojang/blaze3d/platform/DisplayData;Ljava/lang/String;Ljava/lang/String;)V+288 [email protected] j  net.minecraft.client.renderer.VirtualScreen.m_110872_(Lcom/mojang/blaze3d/platform/DisplayData;Ljava/lang/String;Ljava/lang/String;)Lcom/mojang/blaze3d/platform/Window;+15 [email protected] j  net.minecraft.client.Minecraft.<init>(Lnet/minecraft/client/main/GameConfig;)V+791 [email protected] j  net.minecraft.client.main.Main.m_239872_([Ljava/lang/String;Z)V+1356 [email protected] j  net.minecraft.client.main.Main.main([Ljava/lang/String;)V+38 [email protected] v  ~StubRoutines::call_stub j  jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Ljava/lang/reflect/Method;Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+0 [email protected] j  jdk.internal.reflect.NativeMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+133 [email protected] j  jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+6 [email protected] j  java.lang.reflect.Method.invoke(Ljava/lang/Object;[Ljava/lang/Object;)Ljava/lang/Object;+59 [email protected] j  net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler.lambda$launchService$0(Ljava/lang/ModuleLayer;[Ljava/lang/String;)V+40 [email protected] j  net.minecraftforge.fml.loading.targets.CommonClientLaunchHandler$$Lambda$887+0x000000080049b740.run()V+8 [email protected] j  cpw.mods.modlauncher.LaunchServiceHandlerDecorator.launch([Ljava/lang/String;Ljava/lang/ModuleLayer;)V+11 [email protected] j  cpw.mods.modlauncher.LaunchServiceHandler.launch(Ljava/lang/String;[Ljava/lang/String;Ljava/lang/ModuleLayer;Lcpw/mods/modlauncher/TransformingClassLoader;Lcpw/mods/modlauncher/LaunchPluginHandler;)V+58 [email protected] j  cpw.mods.modlauncher.LaunchServiceHandler.launch(Lcpw/mods/modlauncher/ArgumentHandler;Ljava/lang/ModuleLayer;Lcpw/mods/modlauncher/TransformingClassLoader;Lcpw/mods/modlauncher/LaunchPluginHandler;)V+21 [email protected] j  cpw.mods.modlauncher.Launcher.run([Ljava/lang/String;)V+310 [email protected] j  cpw.mods.modlauncher.Launcher.main([Ljava/lang/String;)V+78 [email protected] j  cpw.mods.modlauncher.BootstrapLaunchConsumer.accept([Ljava/lang/String;)V+1 [email protected] j  cpw.mods.modlauncher.BootstrapLaunchConsumer.accept(Ljava/lang/Object;)V+5 [email protected] j  cpw.mods.bootstraplauncher.BootstrapLauncher.main([Ljava/lang/String;)V+515 [email protected] v  ~StubRoutines::call_stub siginfo: EXCEPTION_ACCESS_VIOLATION (0xc0000005), reading address 0xffffffffffffffff Register to memory mapping: RIP=0x00007ff86a613ca0 atio6axx.dll RAX=0x0 is NULL RBX=0x00007ff86dbc6060 atio6axx.dll RCX=0x62705a326279426e is an unknown value RDX=0x00000000000000d0 is an unknown value RSP=0x00000085c2cfa878 is pointing into the stack for thread: 0x0000020cd0267e90 RBP=0x00000085c2cfa9b0 is pointing into the stack for thread: 0x0000020cd0267e90 RSI=0x0 is NULL RDI=0x00000085c2cfaca0 is pointing into the stack for thread: 0x0000020cd0267e90 R8 =0x00000000000001a5 is an unknown value R9 =0xffffffffffffffff is an unknown value R10=0x0 is NULL R11=0x0000000000000200 is an unknown value R12=0x00000085c2cfa908 is pointing into the stack for thread: 0x0000020cd0267e90 R13=0x00007ff86dbc6060 atio6axx.dll R14=0x00007ff86dbc60b8 atio6axx.dll R15=0x00007ff86dacd8a4 atio6axx.dll Registers: RAX=0x0000000000000000, RBX=0x00007ff86dbc6060, RCX=0x62705a326279426e, RDX=0x00000000000000d0 RSP=0x00000085c2cfa878, RBP=0x00000085c2cfa9b0, RSI=0x0000000000000000, RDI=0x00000085c2cfaca0 R8 =0x00000000000001a5, R9 =0xffffffffffffffff, R10=0x0000000000000000, R11=0x0000000000000200 R12=0x00000085c2cfa908, R13=0x00007ff86dbc6060, R14=0x00007ff86dbc60b8, R15=0x00007ff86dacd8a4 RIP=0x00007ff86a613ca0, EFLAGS=0x0000000000010202 Top of Stack: (sp=0x00000085c2cfa878) 0x00000085c2cfa878:   00007ff86a5d2654 00007ff86dbc6060 0x00000085c2cfa888:   0000000000000000 00002e776176616a 0x00000085c2cfa898:   00005e7881a53668 00000085c2cfaca0 0x00000085c2cfa8a8:   00007ff86a5d6116 00007ff86dbc6068 0x00000085c2cfa8b8:   000000000000004a 00007ff86dbc6068 0x00000085c2cfa8c8:   0000000000000000 0000000000000000 0x00000085c2cfa8d8:   00007ff800000009 0000020cf77512c4 0x00000085c2cfa8e8:   0000020cf7751410 00007ff86dbc6068 0x00000085c2cfa8f8:   00000085c2cfaca0 00000085c2cfaa9a 0x00000085c2cfa908:   00007f006176616a 800000006176616a 0x00000085c2cfa918:   00007ff8e20f9979 46676e697274535c 0x00000085c2cfa928:   5c6f666e49656c69 3062343039303430 0x00000085c2cfa938:   726556656c69465c 000000006e6f6973 0x00000085c2cfa948:   0000000000000000 0000000000000000 0x00000085c2cfa958:   0000000000000000 0000000a0000011c 0x00000085c2cfa968:   0000585d00000000 0000000000000002  Instructions: (pc=0x00007ff86a613ca0) 0x00007ff86a613ba0:   74 09 33 c9 ff 15 a6 38 3d 03 90 48 8b c3 48 83 0x00007ff86a613bb0:   c4 20 5b c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff86a613bc0:   48 83 ec 28 48 8b 51 08 48 85 d2 74 09 33 c9 ff 0x00007ff86a613bd0:   15 7b 38 3d 03 90 48 83 c4 28 c3 cc cc cc cc cc 0x00007ff86a613be0:   48 89 11 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff86a613bf0:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff86a613c00:   48 3b ca 74 10 41 8b 00 39 01 74 09 48 83 c1 04 0x00007ff86a613c10:   48 3b ca 75 f3 48 8b c1 c3 cc cc cc cc cc cc cc 0x00007ff86a613c20:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff86a613c30:   48 83 39 00 0f 94 c0 c3 cc cc cc cc cc cc cc cc 0x00007ff86a613c40:   4c 8d 04 d5 00 00 00 00 33 d2 e9 c1 55 db 01 cc 0x00007ff86a613c50:   4c 8b 41 08 48 8b 02 49 89 00 48 83 41 08 08 c3 0x00007ff86a613c60:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff86a613c70:   48 8b c1 c3 cc cc cc cc cc cc cc cc cc cc cc cc 0x00007ff86a613c80:   49 8b 00 48 89 02 c3 cc cc cc cc cc cc cc cc cc 0x00007ff86a613c90:   8b 81 10 39 00 00 c3 cc cc cc cc cc cc cc cc cc 0x00007ff86a613ca0:   8b 81 10 39 00 00 83 c0 f0 83 f8 63 0f 87 5a 01 0x00007ff86a613cb0:   00 00 48 8d 15 47 c3 e6 ff 0f b6 84 02 30 3e 19 0x00007ff86a613cc0:   00 8b 8c 82 10 3e 19 00 48 03 ca ff e1 48 8b 0d 0x00007ff86a613cd0:   5c 8c 55 03 83 b9 0c 33 00 00 02 0f 87 2b 01 00 0x00007ff86a613ce0:   00 48 8d 91 9c 29 00 00 c7 02 e1 00 00 00 e9 ce 0x00007ff86a613cf0:   00 00 00 48 8b 0d 36 8c 55 03 83 b9 0c 33 00 00 0x00007ff86a613d00:   02 0f 87 05 01 00 00 48 8d 91 9c 29 00 00 c7 02 0x00007ff86a613d10:   f0 00 00 00 e9 a8 00 00 00 48 8b 0d 10 8c 55 03 0x00007ff86a613d20:   83 b9 0c 33 00 00 02 0f 87 df 00 00 00 48 8d 91 0x00007ff86a613d30:   9c 29 00 00 c7 02 00 04 00 00 e9 82 00 00 00 48 0x00007ff86a613d40:   8b 0d ea 8b 55 03 83 b9 0c 33 00 00 02 0f 87 b9 0x00007ff86a613d50:   00 00 00 48 8d 91 9c 29 00 00 c7 02 00 08 00 00 0x00007ff86a613d60:   eb 5f 48 8b 0d c7 8b 55 03 83 b9 0c 33 00 00 02 0x00007ff86a613d70:   0f 87 96 00 00 00 48 8d 91 9c 29 00 00 c7 02 00 0x00007ff86a613d80:   09 00 00 eb 3c 48 8b 0d a4 8b 55 03 83 b9 0c 33 0x00007ff86a613d90:   00 00 02 77 77 48 8d 91 9c 29 00 00 c7 02 3c 0f  Stack slot to memory mapping: stack at sp + 0 slots: 0x00007ff86a5d2654 atio6axx.dll stack at sp + 1 slots: 0x00007ff86dbc6060 atio6axx.dll stack at sp + 2 slots: 0x0 is NULL stack at sp + 3 slots: 0x00002e776176616a is an unknown value stack at sp + 4 slots: 0x00005e7881a53668 is an unknown value stack at sp + 5 slots: 0x00000085c2cfaca0 is pointing into the stack for thread: 0x0000020cd0267e90 stack at sp + 6 slots: 0x00007ff86a5d6116 atio6axx.dll stack at sp + 7 slots: 0x00007ff86dbc6068 atio6axx.dll ---------------  P R O C E S S  --------------- Threads class SMR info: _java_thread_list=0x0000020cfe3ea990, length=45, elements={ 0x0000020cd0267e90, 0x0000020cf119e290, 0x0000020cf1b1eb00, 0x0000020cf1b3e900, 0x0000020cf1b3ede0, 0x0000020cf1b3f2c0, 0x0000020cf1b679a0, 0x0000020cf1b6b380, 0x0000020cf1b6dcb0, 0x0000020cf1b805d0, 0x0000020cf1c74a20, 0x0000020cf1c74f00, 0x0000020cf6030050, 0x0000020cf1dea7b0, 0x0000020cf6094620, 0x0000020cf685ad90, 0x0000020cf685b2b0, 0x0000020cf6296d00, 0x0000020cfb3ff1f0, 0x0000020cfbd59c80, 0x0000020cf6c4d3e0, 0x0000020cf6c4ced0, 0x0000020cfae4ac70, 0x0000020cfae4b180, 0x0000020cfae4b690, 0x0000020cfae4bba0, 0x0000020cfae4c0b0, 0x0000020cfae4a760, 0x0000020c82818610, 0x0000020c82819f60, 0x0000020c82819a50, 0x0000020c82818b20, 0x0000020c8281a980, 0x0000020c8281a470, 0x0000020c8281ae90, 0x0000020c82819030, 0x0000020c8281e480, 0x0000020cfb3cd480, 0x0000020cff709600, 0x0000020cfde55980, 0x0000020cfde563a0, 0x0000020cfde54a50, 0x0000020cfc616030, 0x0000020cff707a50, 0x0000020cfc6146e0 } Java Threads: ( => current thread ) =>0x0000020cd0267e90 JavaThread "Render thread" [_thread_in_native, id=15124, stack(0x00000085c2c00000,0x00000085c2d00000)]   0x0000020cf119e290 JavaThread "Reference Handler" daemon [_thread_blocked, id=5188, stack(0x00000085c3300000,0x00000085c3400000)]   0x0000020cf1b1eb00 JavaThread "Finalizer" daemon [_thread_blocked, id=8824, stack(0x00000085c3400000,0x00000085c3500000)]   0x0000020cf1b3e900 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=13236, stack(0x00000085c3500000,0x00000085c3600000)]   0x0000020cf1b3ede0 JavaThread "Attach Listener" daemon [_thread_blocked, id=2276, stack(0x00000085c3600000,0x00000085c3700000)]   0x0000020cf1b3f2c0 JavaThread "Service Thread" daemon [_thread_blocked, id=14240, stack(0x00000085c3700000,0x00000085c3800000)]   0x0000020cf1b679a0 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=14804, stack(0x00000085c3800000,0x00000085c3900000)]   0x0000020cf1b6b380 JavaThread "C2 CompilerThread0" daemon [_thread_blocked, id=10164, stack(0x00000085c3900000,0x00000085c3a00000)]   0x0000020cf1b6dcb0 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=9132, stack(0x00000085c3a00000,0x00000085c3b00000)]   0x0000020cf1b805d0 JavaThread "Sweeper thread" daemon [_thread_blocked, id=3240, stack(0x00000085c3b00000,0x00000085c3c00000)]   0x0000020cf1c74a20 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=7332, stack(0x00000085c3c00000,0x00000085c3d00000)]   0x0000020cf1c74f00 JavaThread "C1 CompilerThread1" daemon [_thread_blocked, id=3312, stack(0x00000085c3d00000,0x00000085c3e00000)]   0x0000020cf6030050 JavaThread "C1 CompilerThread2" daemon [_thread_blocked, id=8904, stack(0x00000085c3e00000,0x00000085c3f00000)]   0x0000020cf1dea7b0 JavaThread "C2 CompilerThread1" daemon [_thread_blocked, id=4492, stack(0x00000085c3f00000,0x00000085c4000000)]   0x0000020cf6094620 JavaThread "Notification Thread" daemon [_thread_blocked, id=12776, stack(0x00000085c4100000,0x00000085c4200000)]   0x0000020cf685ad90 JavaThread "C1 CompilerThread3" daemon [_thread_blocked, id=5888, stack(0x00000085c4300000,0x00000085c4400000)]   0x0000020cf685b2b0 JavaThread "Thread-0" daemon [_thread_blocked, id=1028, stack(0x00000085c4b00000,0x00000085c4c00000)]   0x0000020cf6296d00 JavaThread "FileSystemWatchService" daemon [_thread_in_native, id=14988, stack(0x00000085c4c00000,0x00000085c4d00000)]   0x0000020cfb3ff1f0 JavaThread "pool-2-thread-1" daemon [_thread_blocked, id=6552, stack(0x00000085c5d00000,0x00000085c5e00000)]   0x0000020cfbd59c80 JavaThread "Thread-1" daemon [_thread_in_native, id=11824, stack(0x00000085c5e00000,0x00000085c5f00000)]   0x0000020cf6c4d3e0 JavaThread "Thread-2" daemon [_thread_in_native, id=1788, stack(0x00000085c5f00000,0x00000085c6000000)]   0x0000020cf6c4ced0 JavaThread "Thread-3" daemon [_thread_in_native, id=8260, stack(0x00000085c6000000,0x00000085c6100000)]   0x0000020cfae4ac70 JavaThread "Thread-4" daemon [_thread_in_native, id=7456, stack(0x00000085c6100000,0x00000085c6200000)]   0x0000020cfae4b180 JavaThread "Thread-5" daemon [_thread_in_native, id=15500, stack(0x00000085c6200000,0x00000085c6300000)]   0x0000020cfae4b690 JavaThread "Thread-6" daemon [_thread_in_native, id=7300, stack(0x00000085c6300000,0x00000085c6400000)]   0x0000020cfae4bba0 JavaThread "Thread-7" daemon [_thread_in_native, id=10976, stack(0x00000085c6400000,0x00000085c6500000)]   0x0000020cfae4c0b0 JavaThread "Thread-8" daemon [_thread_in_native, id=9556, stack(0x00000085c6500000,0x00000085c6600000)]   0x0000020cfae4a760 JavaThread "Thread-9" daemon [_thread_in_native, id=1316, stack(0x00000085c6600000,0x00000085c6700000)]   0x0000020c82818610 JavaThread "Thread-10" daemon [_thread_in_native, id=2624, stack(0x00000085c6700000,0x00000085c6800000)]   0x0000020c82819f60 JavaThread "Thread-11" daemon [_thread_in_native, id=15436, stack(0x00000085c6800000,0x00000085c6900000)]   0x0000020c82819a50 JavaThread "Thread-12" daemon [_thread_in_native, id=15640, stack(0x00000085c6900000,0x00000085c6a00000)]   0x0000020c82818b20 JavaThread "Thread-13" daemon [_thread_in_native, id=3716, stack(0x00000085c6a00000,0x00000085c6b00000)]   0x0000020c8281a980 JavaThread "Thread-14" daemon [_thread_in_native, id=5852, stack(0x00000085c6b00000,0x00000085c6c00000)]   0x0000020c8281a470 JavaThread "Thread-15" daemon [_thread_in_native, id=16052, stack(0x00000085c6c00000,0x00000085c6d00000)]   0x0000020c8281ae90 JavaThread "Thread-16" daemon [_thread_in_native, id=5260, stack(0x00000085c6d00000,0x00000085c6e00000)]   0x0000020c82819030 JavaThread "Thread-17" daemon [_thread_in_native, id=15704, stack(0x00000085c6e00000,0x00000085c6f00000)]   0x0000020c8281e480 JavaThread "FileSystemWatchService" daemon [_thread_in_native, id=8200, stack(0x00000085c6f00000,0x00000085c7000000)]   0x0000020cfb3cd480 JavaThread "C2 CompilerThread2" daemon [_thread_blocked, id=3168, stack(0x00000085c4000000,0x00000085c4100000)]   0x0000020cff709600 JavaThread "Timer hack thread" daemon [_thread_blocked, id=5528, stack(0x00000085c5b00000,0x00000085c5c00000)]   0x0000020cfde55980 JavaThread "Keep-Alive-Timer" daemon [_thread_blocked, id=2120, stack(0x00000085c4a00000,0x00000085c4b00000)]   0x0000020cfde563a0 JavaThread "Thread-18" daemon [_thread_blocked, id=6008, stack(0x00000085c7400000,0x00000085c7500000)]   0x0000020cfde54a50 JavaThread "FileSystemWatchService" daemon [_thread_in_native, id=6912, stack(0x00000085c7500000,0x00000085c7600000)]   0x0000020cfc616030 JavaThread "pool-4-thread-1" [_thread_blocked, id=6072, stack(0x00000085c7700000,0x00000085c7800000)]   0x0000020cff707a50 JavaThread "pool-4-thread-2" [_thread_blocked, id=5076, stack(0x00000085c7800000,0x00000085c7900000)]   0x0000020cfc6146e0 JavaThread "pool-4-thread-3" [_thread_blocked, id=9868, stack(0x00000085c7900000,0x00000085c7a00000)] Other Threads:   0x0000020cf1b12010 VMThread "VM Thread" [stack: 0x00000085c3200000,0x00000085c3300000] [id=7888]   0x0000020cd0268d10 WatcherThread [stack: 0x00000085c4200000,0x00000085c4300000] [id=10620]   0x0000020cd02d1ac0 GCTaskThread "GC Thread#0" [stack: 0x00000085c2d00000,0x00000085c2e00000] [id=11880]   0x0000020cf6946910 GCTaskThread "GC Thread#1" [stack: 0x00000085c4400000,0x00000085c4500000] [id=8224]   0x0000020cf67043d0 GCTaskThread "GC Thread#2" [stack: 0x00000085c4500000,0x00000085c4600000] [id=7488]   0x0000020cf67052a0 GCTaskThread "GC Thread#3" [stack: 0x00000085c4600000,0x00000085c4700000] [id=10708]   0x0000020cf67746f0 GCTaskThread "GC Thread#4" [stack: 0x00000085c4700000,0x00000085c4800000] [id=3204]   0x0000020cf6774ec0 GCTaskThread "GC Thread#5" [stack: 0x00000085c4800000,0x00000085c4900000] [id=15060]   0x0000020cfa0950c0 GCTaskThread "GC Thread#6" [stack: 0x00000085c4d00000,0x00000085c4e00000] [id=1780]   0x0000020cfa094e00 GCTaskThread "GC Thread#7" [stack: 0x00000085c4e00000,0x00000085c4f00000] [id=3672]   0x0000020cfa093540 GCTaskThread "GC Thread#8" [stack: 0x00000085c4f00000,0x00000085c5000000] [id=1992]   0x0000020cfa093800 GCTaskThread "GC Thread#9" [stack: 0x00000085c5000000,0x00000085c5100000] [id=1304]   0x0000020cfa093ac0 GCTaskThread "GC Thread#10" [stack: 0x00000085c5100000,0x00000085c5200000] [id=12744]   0x0000020cfa094b40 GCTaskThread "GC Thread#11" [stack: 0x00000085c5500000,0x00000085c5600000] [id=4776]   0x0000020cf9e576a0 GCTaskThread "GC Thread#12" [stack: 0x00000085c5400000,0x00000085c5500000] [id=7820]   0x0000020cd02e2a10 ConcurrentGCThread "G1 Main Marker" [stack: 0x00000085c2e00000,0x00000085c2f00000] [id=9224]   0x0000020cd02e41d0 ConcurrentGCThread "G1 Conc#0" [stack: 0x00000085c2f00000,0x00000085c3000000] [id=3020]   0x0000020cfa0945c0 ConcurrentGCThread "G1 Conc#1" [stack: 0x00000085c5200000,0x00000085c5300000] [id=2264]   0x0000020cfa093d80 ConcurrentGCThread "G1 Conc#2" [stack: 0x00000085c5300000,0x00000085c5400000] [id=4784]   0x0000020cd02fec90 ConcurrentGCThread "G1 Refine#0" [stack: 0x00000085c3000000,0x00000085c3100000] [id=7632]   0x0000020cfbb6c060 ConcurrentGCThread "G1 Refine#1" [stack: 0x00000085c5600000,0x00000085c5700000] [id=6844]   0x0000020cf66c2eb0 ConcurrentGCThread "G1 Refine#2" [stack: 0x00000085c5700000,0x00000085c5800000] [id=15760]   0x0000020cf66e82d0 ConcurrentGCThread "G1 Refine#3" [stack: 0x00000085c5800000,0x00000085c5900000] [id=10800]   0x0000020cfa3b3bf0 ConcurrentGCThread "G1 Refine#4" [stack: 0x00000085c5900000,0x00000085c5a00000] [id=14224]   0x0000020cfd266830 ConcurrentGCThread "G1 Refine#5" [stack: 0x00000085c5c00000,0x00000085c5d00000] [id=13288]   0x0000020cfd266540 ConcurrentGCThread "G1 Refine#6" [stack: 0x00000085c5a00000,0x00000085c5b00000] [id=14852]   0x0000020cf107ebb0 ConcurrentGCThread "G1 Service" [stack: 0x00000085c3100000,0x00000085c3200000] [id=2092] Threads with active compile tasks: VM state: not at safepoint (normal execution) VM Mutex/Monitor currently owned by a thread: None Heap address: 0x0000000700000000, size: 4096 MB, Compressed Oops mode: Zero based, Oop shift amount: 3 CDS archive(s) not mapped Compressed class space mapped at: 0x0000000800000000-0x0000000840000000, reserved size: 1073741824 Narrow klass base: 0x0000000800000000, Narrow klass shift: 0, Narrow klass range: 0x40000000 GC Precious Log:  CPUs: 16 total, 16 available  Memory: 15613M  Large Page Support: Disabled  NUMA Support: Disabled  Compressed Oops: Enabled (Zero based)  Heap Region Size: 2M  Heap Min Capacity: 256M  Heap Initial Capacity: 256M  Heap Max Capacity: 4G  Pre-touch: Disabled  Parallel Workers: 13  Concurrent Workers: 3  Concurrent Refinement Workers: 13  Periodic GC: Disabled Heap:  garbage-first heap   total 1093632K, used 889022K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 271 young (555008K), 2 survivors (4096K)  Metaspace       used 93063K, committed 94400K, reserved 1179648K   class space    used 12977K, committed 13568K, reserved 1048576K Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, OA=open archive, CA=closed archive, TAMS=top-at-mark-start (previous, next) |   0|0x0000000700000000, 0x0000000700200000, 0x0000000700200000|100%|HS|  |TAMS 0x0000000700200000, 0x0000000700000000| Complete  |   1|0x0000000700200000, 0x0000000700400000, 0x0000000700400000|100%|HS|  |TAMS 0x0000000700400000, 0x0000000700200000| Complete  |   2|0x0000000700400000, 0x0000000700600000, 0x0000000700600000|100%| O|  |TAMS 0x0000000700600000, 0x0000000700400000| Untracked  |   3|0x0000000700600000, 0x0000000700800000, 0x0000000700800000|100%| O|  |TAMS 0x0000000700800000, 0x0000000700600000| Untracked  |   4|0x0000000700800000, 0x0000000700a00000, 0x0000000700a00000|100%| O|  |TAMS 0x0000000700a00000, 0x0000000700800000| Untracked  |   5|0x0000000700a00000, 0x0000000700c00000, 0x0000000700c00000|100%|HS|  |TAMS 0x0000000700c00000, 0x0000000700a00000| Complete  |   6|0x0000000700c00000, 0x0000000700e00000, 0x0000000700e00000|100%|HS|  |TAMS 0x0000000700e00000, 0x0000000700c00000| Complete  |   7|0x0000000700e00000, 0x0000000701000000, 0x0000000701000000|100%| O|  |TAMS 0x0000000701000000, 0x0000000700e00000| Untracked  |   8|0x0000000701000000, 0x0000000701200000, 0x0000000701200000|100%| O|  |TAMS 0x0000000701200000, 0x0000000701000000| Untracked  |   9|0x0000000701200000, 0x0000000701400000, 0x0000000701400000|100%| O|  |TAMS 0x0000000701400000, 0x0000000701200000| Untracked  |  10|0x0000000701400000, 0x0000000701600000, 0x0000000701600000|100%| O|  |TAMS 0x0000000701600000, 0x0000000701400000| Untracked  |  11|0x0000000701600000, 0x0000000701800000, 0x0000000701800000|100%| O|  |TAMS 0x0000000701800000, 0x0000000701600000| Untracked  |  12|0x0000000701800000, 0x0000000701a00000, 0x0000000701a00000|100%| O|  |TAMS 0x0000000701a00000, 0x0000000701800000| Untracked  |  13|0x0000000701a00000, 0x0000000701c00000, 0x0000000701c00000|100%| O|  |TAMS 0x0000000701c00000, 0x0000000701a00000| Untracked  |  14|0x0000000701c00000, 0x0000000701e00000, 0x0000000701e00000|100%| O|  |TAMS 0x0000000701e00000, 0x0000000701c00000| Untracked  |  15|0x0000000701e00000, 0x0000000702000000, 0x0000000702000000|100%|HS|  |TAMS 0x0000000702000000, 0x0000000701e00000| Complete  |  16|0x0000000702000000, 0x0000000702200000, 0x0000000702200000|100%| O|  |TAMS 0x0000000702200000, 0x0000000702000000| Untracked  |  17|0x0000000702200000, 0x0000000702400000, 0x0000000702400000|100%| O|  |TAMS 0x0000000702400000, 0x0000000702200000| Untracked  |  18|0x0000000702400000, 0x0000000702600000, 0x0000000702600000|100%| O|  |TAMS 0x0000000702600000, 0x0000000702400000| Untracked  |  19|0x0000000702600000, 0x0000000702800000, 0x0000000702800000|100%| O|  |TAMS 0x0000000702800000, 0x0000000702600000| Untracked  |  20|0x0000000702800000, 0x0000000702a00000, 0x0000000702a00000|100%| O|  |TAMS 0x0000000702a00000, 0x0000000702800000| Untracked  |  21|0x0000000702a00000, 0x0000000702c00000, 0x0000000702c00000|100%| O|  |TAMS 0x0000000702c00000, 0x0000000702a00000| Untracked  |  22|0x0000000702c00000, 0x0000000702e00000, 0x0000000702e00000|100%| O|  |TAMS 0x0000000702e00000, 0x0000000702c00000| Untracked  |  23|0x0000000702e00000, 0x0000000703000000, 0x0000000703000000|100%| O|  |TAMS 0x0000000703000000, 0x0000000702e00000| Untracked  |  24|0x0000000703000000, 0x0000000703200000, 0x0000000703200000|100%| O|  |TAMS 0x0000000703200000, 0x0000000703000000| Untracked  |  25|0x0000000703200000, 0x0000000703400000, 0x0000000703400000|100%| O|  |TAMS 0x0000000703400000, 0x0000000703200000| Untracked  |  26|0x0000000703400000, 0x0000000703600000, 0x0000000703600000|100%| O|  |TAMS 0x0000000703600000, 0x0000000703400000| Untracked  |  27|0x0000000703600000, 0x0000000703800000, 0x0000000703800000|100%| O|  |TAMS 0x0000000703800000, 0x0000000703600000| Untracked  |  28|0x0000000703800000, 0x0000000703a00000, 0x0000000703a00000|100%| O|  |TAMS 0x0000000703a00000, 0x0000000703800000| Untracked  |  29|0x0000000703a00000, 0x0000000703c00000, 0x0000000703c00000|100%| O|  |TAMS 0x0000000703c00000, 0x0000000703a00000| Untracked  |  30|0x0000000703c00000, 0x0000000703e00000, 0x0000000703e00000|100%|HS|  |TAMS 0x0000000703e00000, 0x0000000703c00000| Complete  |  31|0x0000000703e00000, 0x0000000704000000, 0x0000000704000000|100%|HS|  |TAMS 0x0000000704000000, 0x0000000703e00000| Complete  |  32|0x0000000704000000, 0x0000000704200000, 0x0000000704200000|100%| O|  |TAMS 0x0000000704200000, 0x0000000704000000| Untracked  |  33|0x0000000704200000, 0x0000000704400000, 0x0000000704400000|100%| O|  |TAMS 0x0000000704400000, 0x0000000704200000| Untracked  |  34|0x0000000704400000, 0x0000000704400000, 0x0000000704600000|  0%| F|  |TAMS 0x0000000704400000, 0x0000000704400000| Untracked  |  35|0x0000000704600000, 0x0000000704800000, 0x0000000704800000|100%| O|  |TAMS 0x0000000704800000, 0x0000000704600000| Untracked  |  36|0x0000000704800000, 0x0000000704a00000, 0x0000000704a00000|100%| O|  |TAMS 0x0000000704a00000, 0x0000000704800000| Untracked  |  37|0x0000000704a00000, 0x0000000704c00000, 0x0000000704c00000|100%| O|  |TAMS 0x0000000704c00000, 0x0000000704a00000| Untracked  |  38|0x0000000704c00000, 0x0000000704c00000, 0x0000000704e00000|  0%| F|  |TAMS 0x0000000704c00000, 0x0000000704c00000| Untracked  |  39|0x0000000704e00000, 0x0000000705000000, 0x0000000705000000|100%| O|  |TAMS 0x0000000705000000, 0x0000000704e00000| Untracked  |  40|0x0000000705000000, 0x0000000705200000, 0x0000000705200000|100%| O|  |TAMS 0x0000000705200000, 0x0000000705000000| Untracked  |  41|0x0000000705200000, 0x0000000705400000, 0x0000000705400000|100%| O|  |TAMS 0x0000000705400000, 0x0000000705200000| Untracked  |  42|0x0000000705400000, 0x0000000705600000, 0x0000000705600000|100%| O|  |TAMS 0x0000000705600000, 0x0000000705400000| Untracked  |  43|0x0000000705600000, 0x0000000705800000, 0x0000000705800000|100%| O|  |TAMS 0x0000000705800000, 0x0000000705600000| Untracked  |  44|0x0000000705800000, 0x0000000705a00000, 0x0000000705a00000|100%| O|  |TAMS 0x0000000705a00000, 0x0000000705800000| Untracked  |  45|0x0000000705a00000, 0x0000000705c00000, 0x0000000705c00000|100%| O|  |TAMS 0x0000000705c00000, 0x0000000705a00000| Untracked  |  46|0x0000000705c00000, 0x0000000705e00000, 0x0000000705e00000|100%| O|  |TAMS 0x0000000705e00000, 0x0000000705c00000| Untracked  |  47|0x0000000705e00000, 0x0000000706000000, 0x0000000706000000|100%| O|  |TAMS 0x0000000706000000, 0x0000000705e00000| Untracked  |  48|0x0000000706000000, 0x0000000706200000, 0x0000000706200000|100%| O|  |TAMS 0x0000000706200000, 0x0000000706000000| Untracked  |  49|0x0000000706200000, 0x0000000706400000, 0x0000000706400000|100%| O|  |TAMS 0x0000000706400000, 0x0000000706200000| Untracked  |  50|0x0000000706400000, 0x0000000706600000, 0x0000000706600000|100%| O|  |TAMS 0x0000000706600000, 0x0000000706400000| Untracked  |  51|0x0000000706600000, 0x0000000706800000, 0x0000000706800000|100%| O|  |TAMS 0x0000000706800000, 0x0000000706600000| Untracked  |  52|0x0000000706800000, 0x0000000706a00000, 0x0000000706a00000|100%| O|  |TAMS 0x0000000706a00000, 0x0000000706800000| Untracked  |  53|0x0000000706a00000, 0x0000000706c00000, 0x0000000706c00000|100%| O|  |TAMS 0x0000000706c00000, 0x0000000706a00000| Untracked  |  54|0x0000000706c00000, 0x0000000706e00000, 0x0000000706e00000|100%| O|  |TAMS 0x0000000706e00000, 0x0000000706c00000| Untracked  |  55|0x0000000706e00000, 0x0000000707000000, 0x0000000707000000|100%| O|  |TAMS 0x0000000707000000, 0x0000000706e00000| Untracked  |  56|0x0000000707000000, 0x0000000707200000, 0x0000000707200000|100%| O|  |TAMS 0x0000000707200000, 0x0000000707000000| Untracked  |  57|0x0000000707200000, 0x0000000707400000, 0x0000000707400000|100%| O|  |TAMS 0x0000000707400000, 0x0000000707200000| Untracked  |  58|0x0000000707400000, 0x0000000707600000, 0x0000000707600000|100%| O|  |TAMS 0x0000000707600000, 0x0000000707400000| Untracked  |  59|0x0000000707600000, 0x0000000707800000, 0x0000000707800000|100%| O|  |TAMS 0x0000000707800000, 0x0000000707600000| Untracked  |  60|0x0000000707800000, 0x0000000707a00000, 0x0000000707a00000|100%| O|  |TAMS 0x0000000707a00000, 0x0000000707800000| Untracked  |  61|0x0000000707a00000, 0x0000000707c00000, 0x0000000707c00000|100%| O|  |TAMS 0x0000000707c00000, 0x0000000707a00000| Untracked  |  62|0x0000000707c00000, 0x0000000707e00000, 0x0000000707e00000|100%| O|  |TAMS 0x0000000707e00000, 0x0000000707c00000| Untracked  |  63|0x0000000707e00000, 0x0000000708000000, 0x0000000708000000|100%| O|  |TAMS 0x0000000708000000, 0x0000000707e00000| Untracked  |  64|0x0000000708000000, 0x0000000708200000, 0x0000000708200000|100%| O|  |TAMS 0x0000000708000000, 0x0000000708000000| Untracked  |  65|0x0000000708200000, 0x0000000708400000, 0x0000000708400000|100%| O|  |TAMS 0x0000000708400000, 0x0000000708200000| Untracked  |  66|0x0000000708400000, 0x0000000708600000, 0x0000000708600000|100%| O|  |TAMS 0x0000000708600000, 0x0000000708400000| Untracked  |  67|0x0000000708600000, 0x0000000708800000, 0x0000000708800000|100%| O|  |TAMS 0x0000000708800000, 0x0000000708600000| Untracked  |  68|0x0000000708800000, 0x0000000708a00000, 0x0000000708a00000|100%| O|  |TAMS 0x0000000708a00000, 0x0000000708800000| Untracked  |  69|0x0000000708a00000, 0x0000000708c00000, 0x0000000708c00000|100%| O|  |TAMS 0x0000000708c00000, 0x0000000708a00000| Untracked  |  70|0x0000000708c00000, 0x0000000708e00000, 0x0000000708e00000|100%| O|  |TAMS 0x0000000708e00000, 0x0000000708c00000| Untracked  |  71|0x0000000708e00000, 0x0000000709000000, 0x0000000709000000|100%| O|  |TAMS 0x0000000709000000, 0x0000000708e00000| Untracked  |  72|0x0000000709000000, 0x0000000709200000, 0x0000000709200000|100%| O|  |TAMS 0x0000000709200000, 0x0000000709000000| Untracked  |  73|0x0000000709200000, 0x0000000709200000, 0x0000000709400000|  0%| F|  |TAMS 0x0000000709200000, 0x0000000709200000| Untracked  |  74|0x0000000709400000, 0x0000000709600000, 0x0000000709600000|100%| O|  |TAMS 0x0000000709600000, 0x0000000709400000| Untracked  |  75|0x0000000709600000, 0x0000000709600000, 0x0000000709800000|  0%| F|  |TAMS 0x0000000709600000, 0x0000000709600000| Untracked  |  76|0x0000000709800000, 0x0000000709a00000, 0x0000000709a00000|100%| O|  |TAMS 0x0000000709a00000, 0x0000000709800000| Untracked  |  77|0x0000000709a00000, 0x0000000709c00000, 0x0000000709c00000|100%| O|  |TAMS 0x0000000709c00000, 0x0000000709a00000| Untracked  |  78|0x0000000709c00000, 0x0000000709e00000, 0x0000000709e00000|100%| O|  |TAMS 0x0000000709e00000, 0x0000000709c00000| Untracked  |  79|0x0000000709e00000, 0x000000070a000000, 0x000000070a000000|100%| O|  |TAMS 0x000000070a000000, 0x0000000709e00000| Untracked  |  80|0x000000070a000000, 0x000000070a200000, 0x000000070a200000|100%| O|  |TAMS 0x000000070a200000, 0x000000070a000000| Untracked  |  81|0x000000070a200000, 0x000000070a400000, 0x000000070a400000|100%| O|  |TAMS 0x000000070a400000, 0x000000070a200000| Untracked  |  82|0x000000070a400000, 0x000000070a600000, 0x000000070a600000|100%| O|  |TAMS 0x000000070a600000, 0x000000070a400000| Untracked  |  83|0x000000070a600000, 0x000000070a800000, 0x000000070a800000|100%| O|  |TAMS 0x000000070a800000, 0x000000070a600000| Untracked  |  84|0x000000070a800000, 0x000000070aa00000, 0x000000070aa00000|100%| O|  |TAMS 0x000000070aa00000, 0x000000070a800000| Untracked  |  85|0x000000070aa00000, 0x000000070ac00000, 0x000000070ac00000|100%| O|  |TAMS 0x000000070ac00000, 0x000000070aa00000| Untracked  |  86|0x000000070ac00000, 0x000000070ae00000, 0x000000070ae00000|100%| O|  |TAMS 0x000000070ae00000, 0x000000070ac00000| Untracked  |  87|0x000000070ae00000, 0x000000070b000000, 0x000000070b000000|100%| O|  |TAMS 0x000000070b000000, 0x000000070ae00000| Untracked  |  88|0x000000070b000000, 0x000000070b200000, 0x000000070b200000|100%| O|  |TAMS 0x000000070b200000, 0x000000070b000000| Untracked  |  89|0x000000070b200000, 0x000000070b400000, 0x000000070b400000|100%| O|  |TAMS 0x000000070b400000, 0x000000070b200000| Untracked  |  90|0x000000070b400000, 0x000000070b600000, 0x000000070b600000|100%| O|  |TAMS 0x000000070b600000, 0x000000070b400000| Untracked  |  91|0x000000070b600000, 0x000000070b800000, 0x000000070b800000|100%| O|  |TAMS 0x000000070b800000, 0x000000070b600000| Untracked  |  92|0x000000070b800000, 0x000000070ba00000, 0x000000070ba00000|100%| O|  |TAMS 0x000000070ba00000, 0x000000070b800000| Untracked  |  93|0x000000070ba00000, 0x000000070bc00000, 0x000000070bc00000|100%| O|  |TAMS 0x000000070bc00000, 0x000000070ba00000| Untracked  |  94|0x000000070bc00000, 0x000000070be00000, 0x000000070be00000|100%| O|  |TAMS 0x000000070be00000, 0x000000070bc00000| Untracked  |  95|0x000000070be00000, 0x000000070c000000, 0x000000070c000000|100%| O|  |TAMS 0x000000070c000000, 0x000000070be00000| Untracked  |  96|0x000000070c000000, 0x000000070c200000, 0x000000070c200000|100%| O|  |TAMS 0x000000070c200000, 0x000000070c000000| Untracked  |  97|0x000000070c200000, 0x000000070c400000, 0x000000070c400000|100%| O|  |TAMS 0x000000070c400000, 0x000000070c200000| Untracked  |  98|0x000000070c400000, 0x000000070c600000, 0x000000070c600000|100%| O|  |TAMS 0x000000070c600000, 0x000000070c400000| Untracked  |  99|0x000000070c600000, 0x000000070c800000, 0x000000070c800000|100%| O|  |TAMS 0x000000070c800000, 0x000000070c600000| Untracked  | 100|0x000000070c800000, 0x000000070ca00000, 0x000000070ca00000|100%| O|  |TAMS 0x000000070ca00000, 0x000000070c800000| Untracked  | 101|0x000000070ca00000, 0x000000070cc00000, 0x000000070cc00000|100%| O|  |TAMS 0x000000070cc00000, 0x000000070ca00000| Untracked  | 102|0x000000070cc00000, 0x000000070ce00000, 0x000000070ce00000|100%| O|  |TAMS 0x000000070ce00000, 0x000000070cc00000| Untracked  | 103|0x000000070ce00000, 0x000000070d000000, 0x000000070d000000|100%| O|  |TAMS 0x000000070d000000, 0x000000070ce00000| Untracked  | 104|0x000000070d000000, 0x000000070d200000, 0x000000070d200000|100%| O|  |TAMS 0x000000070d200000, 0x000000070d000000| Untracked  | 105|0x000000070d200000, 0x000000070d400000, 0x000000070d400000|100%| O|  |TAMS 0x000000070d400000, 0x000000070d200000| Untracked  | 106|0x000000070d400000, 0x000000070d600000, 0x000000070d600000|100%| O|  |TAMS 0x000000070d600000, 0x000000070d400000| Untracked  | 107|0x000000070d600000, 0x000000070d800000, 0x000000070d800000|100%| O|  |TAMS 0x000000070d800000, 0x000000070d600000| Untracked  | 108|0x000000070d800000, 0x000000070da00000, 0x000000070da00000|100%| O|  |TAMS 0x000000070da00000, 0x000000070d800000| Untracked  | 109|0x000000070da00000, 0x000000070dc00000, 0x000000070dc00000|100%| O|  |TAMS 0x000000070dc00000, 0x000000070da00000| Untracked  | 110|0x000000070dc00000, 0x000000070de00000, 0x000000070de00000|100%| O|  |TAMS 0x000000070de00000, 0x000000070dc00000| Untracked  | 111|0x000000070de00000, 0x000000070e000000, 0x000000070e000000|100%| O|  |TAMS 0x000000070e000000, 0x000000070de00000| Untracked  | 112|0x000000070e000000, 0x000000070e200000, 0x000000070e200000|100%| O|  |TAMS 0x000000070e200000, 0x000000070e000000| Untracked  | 113|0x000000070e200000, 0x000000070e400000, 0x000000070e400000|100%| O|  |TAMS 0x000000070e200000, 0x000000070e200000| Untracked  | 114|0x000000070e400000, 0x000000070e600000, 0x000000070e600000|100%| O|  |TAMS 0x000000070e600000, 0x000000070e400000| Untracked  | 115|0x000000070e600000, 0x000000070e800000, 0x000000070e800000|100%| O|  |TAMS 0x000000070e800000, 0x000000070e600000| Untracked  | 116|0x000000070e800000, 0x000000070ea00000, 0x000000070ea00000|100%| O|  |TAMS 0x000000070ea00000, 0x000000070e800000| Untracked  | 117|0x000000070ea00000, 0x000000070ec00000, 0x000000070ec00000|100%| O|  |TAMS 0x000000070ec00000, 0x000000070ea00000| Untracked  | 118|0x000000070ec00000, 0x000000070ee00000, 0x000000070ee00000|100%| O|  |TAMS 0x000000070ee00000, 0x000000070ec00000| Untracked  | 119|0x000000070ee00000, 0x000000070f000000, 0x000000070f000000|100%| O|  |TAMS 0x000000070f000000, 0x000000070ee00000| Untracked  | 120|0x000000070f000000, 0x000000070f200000, 0x000000070f200000|100%| O|  |TAMS 0x000000070f200000, 0x000000070f000000| Untracked  | 121|0x000000070f200000, 0x000000070f400000, 0x000000070f400000|100%| O|  |TAMS 0x000000070f400000, 0x000000070f200000| Untracked  | 122|0x000000070f400000, 0x000000070f600000, 0x000000070f600000|100%| O|  |TAMS 0x000000070f600000, 0x000000070f400000| Untracked  | 123|0x000000070f600000, 0x000000070f800000, 0x000000070f800000|100%| O|  |TAMS 0x000000070f800000, 0x000000070f600000| Untracked  | 124|0x000000070f800000, 0x000000070fa00000, 0x000000070fa00000|100%| O|  |TAMS 0x000000070f800000, 0x000000070f800000| Untracked  | 125|0x000000070fa00000, 0x000000070fc00000, 0x000000070fc00000|100%|HS|  |TAMS 0x000000070fc00000, 0x000000070fa00000| Complete  | 126|0x000000070fc00000, 0x000000070fe00000, 0x000000070fe00000|100%|HC|  |TAMS 0x000000070fe00000, 0x000000070fc00000| Complete  | 127|0x000000070fe00000, 0x0000000710000000, 0x0000000710000000|100%|HC|  |TAMS 0x0000000710000000, 0x000000070fe00000| Complete  | 128|0x0000000710000000, 0x0000000710200000, 0x0000000710200000|100%|HC|  |TAMS 0x0000000710200000, 0x0000000710000000| Complete  | 129|0x0000000710200000, 0x0000000710400000, 0x0000000710400000|100%|HC|  |TAMS 0x0000000710400000, 0x0000000710200000| Complete  | 130|0x0000000710400000, 0x0000000710600000, 0x0000000710600000|100%|HC|  |TAMS 0x0000000710600000, 0x0000000710400000| Complete  | 131|0x0000000710600000, 0x0000000710800000, 0x0000000710800000|100%| O|  |TAMS 0x0000000710800000, 0x0000000710600000| Untracked  | 132|0x0000000710800000, 0x0000000710a00000, 0x0000000710a00000|100%| O|  |TAMS 0x0000000710a00000, 0x0000000710800000| Untracked  | 133|0x0000000710a00000, 0x0000000710c00000, 0x0000000710c00000|100%| O|  |TAMS 0x0000000710c00000, 0x0000000710a00000| Untracked  | 134|0x0000000710c00000, 0x0000000710e00000, 0x0000000710e00000|100%| O|  |TAMS 0x0000000710e00000, 0x0000000710c00000| Untracked  | 135|0x0000000710e00000, 0x0000000711000000, 0x0000000711000000|100%| O|  |TAMS 0x0000000711000000, 0x0000000710e00000| Untracked  | 136|0x0000000711000000, 0x0000000711200000, 0x0000000711200000|100%| O|  |TAMS 0x0000000711200000, 0x0000000711000000| Untracked  | 137|0x0000000711200000, 0x0000000711400000, 0x0000000711400000|100%| O|  |TAMS 0x00000007112e7e00, 0x0000000711200000| Untracked  | 138|0x0000000711400000, 0x0000000711600000, 0x0000000711600000|100%| O|  |TAMS 0x0000000711400000, 0x0000000711400000| Untracked  | 139|0x0000000711600000, 0x0000000711800000, 0x0000000711800000|100%| O|  |TAMS 0x0000000711600000, 0x0000000711600000| Untracked  | 140|0x0000000711800000, 0x0000000711a00000, 0x0000000711a00000|100%| O|  |TAMS 0x0000000711800000, 0x0000000711800000| Untracked  | 141|0x0000000711a00000, 0x0000000711c00000, 0x0000000711c00000|100%| O|  |TAMS 0x0000000711a00000, 0x0000000711a00000| Untracked  | 142|0x0000000711c00000, 0x0000000711e00000, 0x0000000711e00000|100%| O|  |TAMS 0x0000000711c00000, 0x0000000711c00000| Untracked  | 143|0x0000000711e00000, 0x0000000712000000, 0x0000000712000000|100%| O|  |TAMS 0x0000000711e00000, 0x0000000711e00000| Untracked  | 144|0x0000000712000000, 0x0000000712200000, 0x0000000712200000|100%| O|  |TAMS 0x0000000712000000, 0x0000000712000000| Untracked  | 145|0x0000000712200000, 0x0000000712400000, 0x0000000712400000|100%| O|  |TAMS 0x0000000712200000, 0x0000000712200000| Untracked  | 146|0x0000000712400000, 0x0000000712600000, 0x0000000712600000|100%| O|  |TAMS 0x0000000712400000, 0x0000000712400000| Untracked  | 147|0x0000000712600000, 0x0000000712800000, 0x0000000712800000|100%| O|  |TAMS 0x0000000712600000, 0x0000000712600000| Untracked  | 148|0x0000000712800000, 0x0000000712a00000, 0x0000000712a00000|100%| O|  |TAMS 0x0000000712800000, 0x0000000712800000| Untracked  | 149|0x0000000712a00000, 0x0000000712c00000, 0x0000000712c00000|100%| O|  |TAMS 0x0000000712a00000, 0x0000000712a00000| Untracked  | 150|0x0000000712c00000, 0x0000000712e00000, 0x0000000712e00000|100%| O|  |TAMS 0x0000000712c00000, 0x0000000712c00000| Untracked  | 151|0x0000000712e00000, 0x0000000713000000, 0x0000000713000000|100%| O|  |TAMS 0x0000000712e00000, 0x0000000712e00000| Untracked  | 152|0x0000000713000000, 0x0000000713200000, 0x0000000713200000|100%| O|  |TAMS 0x0000000713000000, 0x0000000713000000| Untracked  | 153|0x0000000713200000, 0x0000000713400000, 0x0000000713400000|100%| O|  |TAMS 0x0000000713200000, 0x0000000713200000| Untracked  | 154|0x0000000713400000, 0x0000000713600000, 0x0000000713600000|100%| O|  |TAMS 0x0000000713400000, 0x0000000713400000| Untracked  | 155|0x0000000713600000, 0x0000000713800000, 0x0000000713800000|100%| O|  |TAMS 0x0000000713600000, 0x0000000713600000| Untracked  | 156|0x0000000713800000, 0x0000000713a00000, 0x0000000713a00000|100%| O|  |TAMS 0x0000000713800000, 0x0000000713800000| Untracked  | 157|0x0000000713a00000, 0x0000000713c00000, 0x0000000713c00000|100%| O|  |TAMS 0x0000000713a00000, 0x0000000713a00000| Untracked  | 158|0x0000000713c00000, 0x0000000713e00000, 0x0000000713e00000|100%| O|  |TAMS 0x0000000713c00000, 0x0000000713c00000| Untracked  | 159|0x0000000713e00000, 0x0000000714000000, 0x0000000714000000|100%| O|  |TAMS 0x0000000713e00000, 0x0000000713e00000| Untracked  | 160|0x0000000714000000, 0x0000000714200000, 0x0000000714200000|100%| O|  |TAMS 0x0000000714000000, 0x0000000714000000| Untracked  | 161|0x0000000714200000, 0x000000071422f800, 0x0000000714400000|  9%| O|  |TAMS 0x0000000714200000, 0x0000000714200000| Untracked  | 162|0x0000000714400000, 0x0000000714400000, 0x0000000714600000|  0%| F|  |TAMS 0x0000000714400000, 0x0000000714400000| Untracked  | 163|0x0000000714600000, 0x0000000714600000, 0x0000000714800000|  0%| F|  |TAMS 0x0000000714600000, 0x0000000714600000| Untracked  | 164|0x0000000714800000, 0x0000000714800000, 0x0000000714a00000|  0%| F|  |TAMS 0x0000000714800000, 0x0000000714800000| Untracked  | 165|0x0000000714a00000, 0x0000000714a00000, 0x0000000714c00000|  0%| F|  |TAMS 0x0000000714a00000, 0x0000000714a00000| Untracked  | 166|0x0000000714c00000, 0x0000000714c00000, 0x0000000714e00000|  0%| F|  |TAMS 0x0000000714c00000, 0x0000000714c00000| Untracked  | 167|0x0000000714e00000, 0x0000000714e00000, 0x0000000715000000|  0%| F|  |TAMS 0x0000000714e00000, 0x0000000714e00000| Untracked  | 168|0x0000000715000000, 0x0000000715000000, 0x0000000715200000|  0%| F|  |TAMS 0x0000000715000000, 0x0000000715000000| Untracked  | 169|0x0000000715200000, 0x0000000715200000, 0x0000000715400000|  0%| F|  |TAMS 0x0000000715200000, 0x0000000715200000| Untracked  | 170|0x0000000715400000, 0x0000000715400000, 0x0000000715600000|  0%| F|  |TAMS 0x0000000715400000, 0x0000000715400000| Untracked  | 171|0x0000000715600000, 0x0000000715600000, 0x0000000715800000|  0%| F|  |TAMS 0x0000000715600000, 0x0000000715600000| Untracked  | 172|0x0000000715800000, 0x0000000715800000, 0x0000000715a00000|  0%| F|  |TAMS 0x0000000715800000, 0x0000000715800000| Untracked  | 173|0x0000000715a00000, 0x0000000715a00000, 0x0000000715c00000|  0%| F|  |TAMS 0x0000000715a00000, 0x0000000715a00000| Untracked  | 174|0x0000000715c00000, 0x0000000715c00000, 0x0000000715e00000|  0%| F|  |TAMS 0x0000000715c00000, 0x0000000715c00000| Untracked  | 175|0x0000000715e00000, 0x0000000715e00000, 0x0000000716000000|  0%| F|  |TAMS 0x0000000715e00000, 0x0000000715e00000| Untracked  | 176|0x0000000716000000, 0x0000000716000000, 0x0000000716200000|  0%| F|  |TAMS 0x0000000716000000, 0x0000000716000000| Untracked  | 177|0x0000000716200000, 0x0000000716200000, 0x0000000716400000|  0%| F|  |TAMS 0x0000000716200000, 0x0000000716200000| Untracked  | 178|0x0000000716400000, 0x0000000716400000, 0x0000000716600000|  0%| F|  |TAMS 0x0000000716400000, 0x0000000716400000| Untracked  | 179|0x0000000716600000, 0x0000000716600000, 0x0000000716800000|  0%| F|  |TAMS 0x0000000716600000, 0x0000000716600000| Untracked  | 180|0x0000000716800000, 0x0000000716800000, 0x0000000716a00000|  0%| F|  |TAMS 0x0000000716800000, 0x0000000716800000| Untracked  | 181|0x0000000716a00000, 0x0000000716a00000, 0x0000000716c00000|  0%| F|  |TAMS 0x0000000716a00000, 0x0000000716a00000| Untracked  | 182|0x0000000716c00000, 0x0000000716c00000, 0x0000000716e00000|  0%| F|  |TAMS 0x0000000716c00000, 0x0000000716c00000| Untracked  | 183|0x0000000716e00000, 0x0000000716e00000, 0x0000000717000000|  0%| F|  |TAMS 0x0000000716e00000, 0x0000000716e00000| Untracked  | 184|0x0000000717000000, 0x0000000717000000, 0x0000000717200000|  0%| F|  |TAMS 0x0000000717000000, 0x0000000717000000| Untracked  | 185|0x0000000717200000, 0x0000000717200000, 0x0000000717400000|  0%| F|  |TAMS 0x0000000717200000, 0x0000000717200000| Untracked  | 186|0x0000000717400000, 0x0000000717400000, 0x0000000717600000|  0%| F|  |TAMS 0x0000000717400000, 0x0000000717400000| Untracked  | 187|0x0000000717600000, 0x0000000717600000, 0x0000000717800000|  0%| F|  |TAMS 0x0000000717600000, 0x0000000717600000| Untracked  | 188|0x0000000717800000, 0x0000000717800000, 0x0000000717a00000|  0%| F|  |TAMS 0x0000000717800000, 0x0000000717800000| Untracked  | 189|0x0000000717a00000, 0x0000000717a00000, 0x0000000717c00000|  0%| F|  |TAMS 0x0000000717a00000, 0x0000000717a00000| Untracked  | 190|0x0000000717c00000, 0x0000000717c00000, 0x0000000717e00000|  0%| F|  |TAMS 0x0000000717c00000, 0x0000000717c00000| Untracked  | 191|0x0000000717e00000, 0x0000000717e00000, 0x0000000718000000|  0%| F|  |TAMS 0x0000000717e00000, 0x0000000717e00000| Untracked  | 192|0x0000000718000000, 0x0000000718000000, 0x0000000718200000|  0%| F|  |TAMS 0x0000000718000000, 0x0000000718000000| Untracked  | 193|0x0000000718200000, 0x0000000718200000, 0x0000000718400000|  0%| F|  |TAMS 0x0000000718200000, 0x0000000718200000| Untracked  | 194|0x0000000718400000, 0x0000000718400000, 0x0000000718600000|  0%| F|  |TAMS 0x0000000718400000, 0x0000000718400000| Untracked  | 195|0x0000000718600000, 0x0000000718600000, 0x0000000718800000|  0%| F|  |TAMS 0x0000000718600000, 0x0000000718600000| Untracked  | 196|0x0000000718800000, 0x0000000718800000, 0x0000000718a00000|  0%| F|  |TAMS 0x0000000718800000, 0x0000000718800000| Untracked  | 197|0x0000000718a00000, 0x0000000718a00000, 0x0000000718c00000|  0%| F|  |TAMS 0x0000000718a00000, 0x0000000718a00000| Untracked  | 198|0x0000000718c00000, 0x0000000718c00000, 0x0000000718e00000|  0%| F|  |TAMS 0x0000000718c00000, 0x0000000718c00000| Untracked  | 199|0x0000000718e00000, 0x0000000718e00000, 0x0000000719000000|  0%| F|  |TAMS 0x0000000718e00000, 0x0000000718e00000| Untracked  | 200|0x0000000719000000, 0x0000000719000000, 0x0000000719200000|  0%| F|  |TAMS 0x0000000719000000, 0x0000000719000000| Untracked  | 201|0x0000000719200000, 0x0000000719200000, 0x0000000719400000|  0%| F|  |TAMS 0x0000000719200000, 0x0000000719200000| Untracked  | 202|0x0000000719400000, 0x0000000719400000, 0x0000000719600000|  0%| F|  |TAMS 0x0000000719400000, 0x0000000719400000| Untracked  | 203|0x0000000719600000, 0x0000000719600000, 0x0000000719800000|  0%| F|  |TAMS 0x0000000719600000, 0x0000000719600000| Untracked  | 204|0x0000000719800000, 0x0000000719800000, 0x0000000719a00000|  0%| F|  |TAMS 0x0000000719800000, 0x0000000719800000| Untracked  | 205|0x0000000719a00000, 0x0000000719a00000, 0x0000000719c00000|  0%| F|  |TAMS 0x0000000719a00000, 0x0000000719a00000| Untracked  | 206|0x0000000719c00000, 0x0000000719c00000, 0x0000000719e00000|  0%| F|  |TAMS 0x0000000719c00000, 0x0000000719c00000| Untracked  | 207|0x0000000719e00000, 0x0000000719e00000, 0x000000071a000000|  0%| F|  |TAMS 0x0000000719e00000, 0x0000000719e00000| Untracked  | 208|0x000000071a000000, 0x000000071a000000, 0x000000071a200000|  0%| F|  |TAMS 0x000000071a000000, 0x000000071a000000| Untracked  | 209|0x000000071a200000, 0x000000071a200000, 0x000000071a400000|  0%| F|  |TAMS 0x000000071a200000, 0x000000071a200000| Untracked  | 210|0x000000071a400000, 0x000000071a400000, 0x000000071a600000|  0%| F|  |TAMS 0x000000071a400000, 0x000000071a400000| Untracked  | 211|0x000000071a600000, 0x000000071a600000, 0x000000071a800000|  0%| F|  |TAMS 0x000000071a600000, 0x000000071a600000| Untracked  | 212|0x000000071a800000, 0x000000071a800000, 0x000000071aa00000|  0%| F|  |TAMS 0x000000071a800000, 0x000000071a800000| Untracked  | 213|0x000000071aa00000, 0x000000071aa00000, 0x000000071ac00000|  0%| F|  |TAMS 0x000000071aa00000, 0x000000071aa00000| Untracked  | 214|0x000000071ac00000, 0x000000071ac00000, 0x000000071ae00000|  0%| F|  |TAMS 0x000000071ac00000, 0x000000071ac00000| Untracked  | 215|0x000000071ae00000, 0x000000071ae00000, 0x000000071b000000|  0%| F|  |TAMS 0x000000071ae00000, 0x000000071ae00000| Untracked  | 216|0x000000071b000000, 0x000000071b000000, 0x000000071b200000|  0%| F|  |TAMS 0x000000071b000000, 0x000000071b000000| Untracked  | 217|0x000000071b200000, 0x000000071b200000, 0x000000071b400000|  0%| F|  |TAMS 0x000000071b200000, 0x000000071b200000| Untracked  | 218|0x000000071b400000, 0x000000071b400000, 0x000000071b600000|  0%| F|  |TAMS 0x000000071b400000, 0x000000071b400000| Untracked  | 219|0x000000071b600000, 0x000000071b600000, 0x000000071b800000|  0%| F|  |TAMS 0x000000071b600000, 0x000000071b600000| Untracked  | 220|0x000000071b800000, 0x000000071b800000, 0x000000071ba00000|  0%| F|  |TAMS 0x000000071b800000, 0x000000071b800000| Untracked  | 221|0x000000071ba00000, 0x000000071ba00000, 0x000000071bc00000|  0%| F|  |TAMS 0x000000071ba00000, 0x000000071ba00000| Untracked  | 222|0x000000071bc00000, 0x000000071bc00000, 0x000000071be00000|  0%| F|  |TAMS 0x000000071bc00000, 0x000000071bc00000| Untracked  | 223|0x000000071be00000, 0x000000071be00000, 0x000000071c000000|  0%| F|  |TAMS 0x000000071be00000, 0x000000071be00000| Untracked  | 224|0x000000071c000000, 0x000000071c000000, 0x000000071c200000|  0%| F|  |TAMS 0x000000071c000000, 0x000000071c000000| Untracked  | 225|0x000000071c200000, 0x000000071c200000, 0x000000071c400000|  0%| F|  |TAMS 0x000000071c200000, 0x000000071c200000| Untracked  | 226|0x000000071c400000, 0x000000071c400000, 0x000000071c600000|  0%| F|  |TAMS 0x000000071c400000, 0x000000071c400000| Untracked  | 227|0x000000071c600000, 0x000000071c600000, 0x000000071c800000|  0%| F|  |TAMS 0x000000071c600000, 0x000000071c600000| Untracked  | 228|0x000000071c800000, 0x000000071c800000, 0x000000071ca00000|  0%| F|  |TAMS 0x000000071c800000, 0x000000071c800000| Untracked  | 229|0x000000071ca00000, 0x000000071ca00000, 0x000000071cc00000|  0%| F|  |TAMS 0x000000071ca00000, 0x000000071ca00000| Untracked  | 230|0x000000071cc00000, 0x000000071cc00000, 0x000000071ce00000|  0%| F|  |TAMS 0x000000071cc00000, 0x000000071cc00000| Untracked  | 231|0x000000071ce00000, 0x000000071ce00000, 0x000000071d000000|  0%| F|  |TAMS 0x000000071ce00000, 0x000000071ce00000| Untracked  | 232|0x000000071d000000, 0x000000071d000000, 0x000000071d200000|  0%| F|  |TAMS 0x000000071d000000, 0x000000071d000000| Untracked  | 233|0x000000071d200000, 0x000000071d200000, 0x000000071d400000|  0%| F|  |TAMS 0x000000071d200000, 0x000000071d200000| Untracked  | 234|0x000000071d400000, 0x000000071d400000, 0x000000071d600000|  0%| F|  |TAMS 0x000000071d400000, 0x000000071d400000| Untracked  | 235|0x000000071d600000, 0x000000071d600000, 0x000000071d800000|  0%| F|  |TAMS 0x000000071d600000, 0x000000071d600000| Untracked  | 236|0x000000071d800000, 0x000000071d800000, 0x000000071da00000|  0%| F|  |TAMS 0x000000071d800000, 0x000000071d800000| Untracked  | 237|0x000000071da00000, 0x000000071da00000, 0x000000071dc00000|  0%| F|  |TAMS 0x000000071da00000, 0x000000071da00000| Untracked  | 238|0x000000071dc00000, 0x000000071dc00000, 0x000000071de00000|  0%| F|  |TAMS 0x000000071dc00000, 0x000000071dc00000| Untracked  | 239|0x000000071de00000, 0x000000071de00000, 0x000000071e000000|  0%| F|  |TAMS 0x000000071de00000, 0x000000071de00000| Untracked  | 240|0x000000071e000000, 0x000000071e000000, 0x000000071e200000|  0%| F|  |TAMS 0x000000071e000000, 0x000000071e000000| Untracked  | 241|0x000000071e200000, 0x000000071e200000, 0x000000071e400000|  0%| F|  |TAMS 0x000000071e200000, 0x000000071e200000| Untracked  | 242|0x000000071e400000, 0x000000071e400000, 0x000000071e600000|  0%| F|  |TAMS 0x000000071e400000, 0x000000071e400000| Untracked  | 243|0x000000071e600000, 0x000000071e600000, 0x000000071e800000|  0%| F|  |TAMS 0x000000071e600000, 0x000000071e600000| Untracked  | 244|0x000000071e800000, 0x000000071e800000, 0x000000071ea00000|  0%| F|  |TAMS 0x000000071e800000, 0x000000071e800000| Untracked  | 245|0x000000071ea00000, 0x000000071ea00000, 0x000000071ec00000|  0%| F|  |TAMS 0x000000071ea00000, 0x000000071ea00000| Untracked  | 246|0x000000071ec00000, 0x000000071ec00000, 0x000000071ee00000|  0%| F|  |TAMS 0x000000071ec00000, 0x000000071ec00000| Untracked  | 247|0x000000071ee00000, 0x000000071ee00000, 0x000000071f000000|  0%| F|  |TAMS 0x000000071ee00000, 0x000000071ee00000| Untracked  | 248|0x000000071f000000, 0x000000071f000000, 0x000000071f200000|  0%| F|  |TAMS 0x000000071f000000, 0x000000071f000000| Untracked  | 249|0x000000071f200000, 0x000000071f200000, 0x000000071f400000|  0%| F|  |TAMS 0x000000071f200000, 0x000000071f200000| Untracked  | 250|0x000000071f400000, 0x000000071f400000, 0x000000071f600000|  0%| F|  |TAMS 0x000000071f400000, 0x000000071f400000| Untracked  | 251|0x000000071f600000, 0x000000071f600000, 0x000000071f800000|  0%| F|  |TAMS 0x000000071f600000, 0x000000071f600000| Untracked  | 252|0x000000071f800000, 0x000000071f800000, 0x000000071fa00000|  0%| F|  |TAMS 0x000000071f800000, 0x000000071f800000| Untracked  | 253|0x000000071fa00000, 0x000000071fa00000, 0x000000071fc00000|  0%| F|  |TAMS 0x000000071fa00000, 0x000000071fa00000| Untracked  | 254|0x000000071fc00000, 0x000000071fc00000, 0x000000071fe00000|  0%| F|  |TAMS 0x000000071fc00000, 0x000000071fc00000| Untracked  | 255|0x000000071fe00000, 0x000000071fe00000, 0x0000000720000000|  0%| F|  |TAMS 0x000000071fe00000, 0x000000071fe00000| Untracked  | 256|0x0000000720000000, 0x0000000720000800, 0x0000000720200000|  0%| E|  |TAMS 0x0000000720000000, 0x0000000720000000| Complete  | 257|0x0000000720200000, 0x0000000720400000, 0x0000000720400000|100%| E|CS|TAMS 0x0000000720200000, 0x0000000720200000| Complete  | 258|0x0000000720400000, 0x0000000720600000, 0x0000000720600000|100%| E|CS|TAMS 0x0000000720400000, 0x0000000720400000| Complete  | 259|0x0000000720600000, 0x0000000720800000, 0x0000000720800000|100%| E|CS|TAMS 0x0000000720600000, 0x0000000720600000| Complete  | 260|0x0000000720800000, 0x0000000720a00000, 0x0000000720a00000|100%| E|CS|TAMS 0x0000000720800000, 0x0000000720800000| Complete  | 261|0x0000000720a00000, 0x0000000720c00000, 0x0000000720c00000|100%| E|CS|TAMS 0x0000000720a00000, 0x0000000720a00000| Complete  | 262|0x0000000720c00000, 0x0000000720e00000, 0x0000000720e00000|100%| E|CS|TAMS 0x0000000720c00000, 0x0000000720c00000| Complete  | 263|0x0000000720e00000, 0x0000000721000000, 0x0000000721000000|100%| E|CS|TAMS 0x0000000720e00000, 0x0000000720e00000| Complete  | 264|0x0000000721000000, 0x0000000721200000, 0x0000000721200000|100%| E|CS|TAMS 0x0000000721000000, 0x0000000721000000| Complete  | 265|0x0000000721200000, 0x0000000721400000, 0x0000000721400000|100%| E|CS|TAMS 0x0000000721200000, 0x0000000721200000| Complete  | 266|0x0000000721400000, 0x0000000721600000, 0x0000000721600000|100%| E|CS|TAMS 0x0000000721400000, 0x0000000721400000| Complete  | 267|0x0000000721600000, 0x0000000721800000, 0x0000000721800000|100%| E|CS|TAMS 0x0000000721600000, 0x0000000721600000| Complete  | 268|0x0000000721800000, 0x0000000721a00000, 0x0000000721a00000|100%| E|CS|TAMS 0x0000000721800000, 0x0000000721800000| Complete  | 269|0x0000000721a00000, 0x0000000721c00000, 0x0000000721c00000|100%| E|CS|TAMS 0x0000000721a00000, 0x0000000721a00000| Complete  | 270|0x0000000721c00000, 0x0000000721e00000, 0x0000000721e00000|100%| E|CS|TAMS 0x0000000721c00000, 0x0000000721c00000| Complete  | 271|0x0000000721e00000, 0x0000000722000000, 0x0000000722000000|100%| E|CS|TAMS 0x0000000721e00000, 0x0000000721e00000| Complete  | 272|0x0000000722000000, 0x0000000722200000, 0x0000000722200000|100%| E|CS|TAMS 0x0000000722000000, 0x0000000722000000| Complete  | 273|0x0000000722200000, 0x0000000722400000, 0x0000000722400000|100%| E|CS|TAMS 0x0000000722200000, 0x0000000722200000| Complete  | 274|0x0000000722400000, 0x0000000722600000, 0x0000000722600000|100%| E|CS|TAMS 0x0000000722400000, 0x0000000722400000| Complete  | 275|0x0000000722600000, 0x0000000722800000, 0x0000000722800000|100%| E|CS|TAMS 0x0000000722600000, 0x0000000722600000| Complete  | 276|0x0000000722800000, 0x0000000722a00000, 0x0000000722a00000|100%| E|CS|TAMS 0x0000000722800000, 0x0000000722800000| Complete  | 277|0x0000000722a00000, 0x0000000722c00000, 0x0000000722c00000|100%| E|CS|TAMS 0x0000000722a00000, 0x0000000722a00000| Complete  | 278|0x0000000722c00000, 0x0000000722e00000, 0x0000000722e00000|100%| E|CS|TAMS 0x0000000722c00000, 0x0000000722c00000| Complete  | 279|0x0000000722e00000, 0x0000000723000000, 0x0000000723000000|100%| E|CS|TAMS 0x0000000722e00000, 0x0000000722e00000| Complete  | 280|0x0000000723000000, 0x0000000723200000, 0x0000000723200000|100%| E|CS|TAMS 0x0000000723000000, 0x0000000723000000| Complete  | 281|0x0000000723200000, 0x0000000723400000, 0x0000000723400000|100%| E|CS|TAMS 0x0000000723200000, 0x0000000723200000| Complete  | 282|0x0000000723400000, 0x0000000723600000, 0x0000000723600000|100%| E|CS|TAMS 0x0000000723400000, 0x0000000723400000| Complete  | 283|0x0000000723600000, 0x0000000723800000, 0x0000000723800000|100%| E|CS|TAMS 0x0000000723600000, 0x0000000723600000| Complete  | 284|0x0000000723800000, 0x0000000723a00000, 0x0000000723a00000|100%| E|CS|TAMS 0x0000000723800000, 0x0000000723800000| Complete  | 285|0x0000000723a00000, 0x0000000723c00000, 0x0000000723c00000|100%| E|CS|TAMS 0x0000000723a00000, 0x0000000723a00000| Complete  | 286|0x0000000723c00000, 0x0000000723e00000, 0x0000000723e00000|100%| E|CS|TAMS 0x0000000723c00000, 0x0000000723c00000| Complete  | 287|0x0000000723e00000, 0x0000000724000000, 0x0000000724000000|100%| E|CS|TAMS 0x0000000723e00000, 0x0000000723e00000| Complete  | 288|0x0000000724000000, 0x0000000724200000, 0x0000000724200000|100%| E|CS|TAMS 0x0000000724000000, 0x0000000724000000| Complete  | 289|0x0000000724200000, 0x0000000724400000, 0x0000000724400000|100%| E|CS|TAMS 0x0000000724200000, 0x0000000724200000| Complete  | 290|0x0000000724400000, 0x0000000724600000, 0x0000000724600000|100%| E|CS|TAMS 0x0000000724400000, 0x0000000724400000| Complete  | 291|0x0000000724600000, 0x0000000724800000, 0x0000000724800000|100%| E|CS|TAMS 0x0000000724600000, 0x0000000724600000| Complete  | 292|0x0000000724800000, 0x0000000724a00000, 0x0000000724a00000|100%| E|CS|TAMS 0x0000000724800000, 0x0000000724800000| Complete  | 293|0x0000000724a00000, 0x0000000724c00000, 0x0000000724c00000|100%| E|CS|TAMS 0x0000000724a00000, 0x0000000724a00000| Complete  | 294|0x0000000724c00000, 0x0000000724e00000, 0x0000000724e00000|100%| E|CS|TAMS 0x0000000724c00000, 0x0000000724c00000| Complete  | 295|0x0000000724e00000, 0x0000000725000000, 0x0000000725000000|100%| E|CS|TAMS 0x0000000724e00000, 0x0000000724e00000| Complete  | 296|0x0000000725000000, 0x0000000725200000, 0x0000000725200000|100%| E|CS|TAMS 0x0000000725000000, 0x0000000725000000| Complete  | 297|0x0000000725200000, 0x0000000725400000, 0x0000000725400000|100%| E|CS|TAMS 0x0000000725200000, 0x0000000725200000| Complete  | 298|0x0000000725400000, 0x0000000725600000, 0x0000000725600000|100%| E|CS|TAMS 0x0000000725400000, 0x0000000725400000| Complete  | 299|0x0000000725600000, 0x0000000725800000, 0x0000000725800000|100%| E|CS|TAMS 0x0000000725600000, 0x0000000725600000| Complete  | 300|0x0000000725800000, 0x0000000725a00000, 0x0000000725a00000|100%| E|CS|TAMS 0x0000000725800000, 0x0000000725800000| Complete  | 301|0x0000000725a00000, 0x0000000725c00000, 0x0000000725c00000|100%| E|CS|TAMS 0x0000000725a00000, 0x0000000725a00000| Complete  | 302|0x0000000725c00000, 0x0000000725e00000, 0x0000000725e00000|100%| E|CS|TAMS 0x0000000725c00000, 0x0000000725c00000| Complete  | 303|0x0000000725e00000, 0x0000000726000000, 0x0000000726000000|100%| E|CS|TAMS 0x0000000725e00000, 0x0000000725e00000| Complete  | 304|0x0000000726000000, 0x0000000726200000, 0x0000000726200000|100%| E|CS|TAMS 0x0000000726000000, 0x0000000726000000| Complete  | 305|0x0000000726200000, 0x0000000726400000, 0x0000000726400000|100%| E|CS|TAMS 0x0000000726200000, 0x0000000726200000| Complete  | 306|0x0000000726400000, 0x0000000726600000, 0x0000000726600000|100%| E|CS|TAMS 0x0000000726400000, 0x0000000726400000| Complete  | 307|0x0000000726600000, 0x0000000726800000, 0x0000000726800000|100%| E|CS|TAMS 0x0000000726600000, 0x0000000726600000| Complete  | 308|0x0000000726800000, 0x0000000726a00000, 0x0000000726a00000|100%| E|CS|TAMS 0x0000000726800000, 0x0000000726800000| Complete  | 309|0x0000000726a00000, 0x0000000726c00000, 0x0000000726c00000|100%| E|CS|TAMS 0x0000000726a00000, 0x0000000726a00000| Complete  | 310|0x0000000726c00000, 0x0000000726e00000, 0x0000000726e00000|100%| E|CS|TAMS 0x0000000726c00000, 0x0000000726c00000| Complete  | 311|0x0000000726e00000, 0x0000000727000000, 0x0000000727000000|100%| E|CS|TAMS 0x0000000726e00000, 0x0000000726e00000| Complete  | 312|0x0000000727000000, 0x0000000727200000, 0x0000000727200000|100%| E|CS|TAMS 0x0000000727000000, 0x0000000727000000| Complete  | 313|0x0000000727200000, 0x0000000727400000, 0x0000000727400000|100%| E|CS|TAMS 0x0000000727200000, 0x0000000727200000| Complete  | 314|0x0000000727400000, 0x0000000727600000, 0x0000000727600000|100%| E|CS|TAMS 0x0000000727400000, 0x0000000727400000| Complete  | 315|0x0000000727600000, 0x0000000727800000, 0x0000000727800000|100%| E|CS|TAMS 0x0000000727600000, 0x0000000727600000| Complete  | 316|0x0000000727800000, 0x0000000727a00000, 0x0000000727a00000|100%| E|CS|TAMS 0x0000000727800000, 0x0000000727800000| Complete  | 317|0x0000000727a00000, 0x0000000727c00000, 0x0000000727c00000|100%| E|CS|TAMS 0x0000000727a00000, 0x0000000727a00000| Complete  | 318|0x0000000727c00000, 0x0000000727e00000, 0x0000000727e00000|100%| E|CS|TAMS 0x0000000727c00000, 0x0000000727c00000| Complete  | 319|0x0000000727e00000, 0x0000000728000000, 0x0000000728000000|100%| E|CS|TAMS 0x0000000727e00000, 0x0000000727e00000| Complete  | 320|0x0000000728000000, 0x0000000728200000, 0x0000000728200000|100%| E|CS|TAMS 0x0000000728000000, 0x0000000728000000| Complete  | 321|0x0000000728200000, 0x0000000728400000, 0x0000000728400000|100%| E|CS|TAMS 0x0000000728200000, 0x0000000728200000| Complete  | 322|0x0000000728400000, 0x0000000728600000, 0x0000000728600000|100%| E|CS|TAMS 0x0000000728400000, 0x0000000728400000| Complete  | 323|0x0000000728600000, 0x0000000728800000, 0x0000000728800000|100%| E|CS|TAMS 0x0000000728600000, 0x0000000728600000| Complete  | 324|0x0000000728800000, 0x0000000728a00000, 0x0000000728a00000|100%| E|CS|TAMS 0x0000000728800000, 0x0000000728800000| Complete  | 325|0x0000000728a00000, 0x0000000728c00000, 0x0000000728c00000|100%| E|CS|TAMS 0x0000000728a00000, 0x0000000728a00000| Complete  | 326|0x0000000728c00000, 0x0000000728e00000, 0x0000000728e00000|100%| E|CS|TAMS 0x0000000728c00000, 0x0000000728c00000| Complete  | 327|0x0000000728e00000, 0x0000000729000000, 0x0000000729000000|100%| E|CS|TAMS 0x0000000728e00000, 0x0000000728e00000| Complete  | 328|0x0000000729000000, 0x0000000729200000, 0x0000000729200000|100%| E|CS|TAMS 0x0000000729000000, 0x0000000729000000| Complete  | 329|0x0000000729200000, 0x0000000729400000, 0x0000000729400000|100%| E|CS|TAMS 0x0000000729200000, 0x0000000729200000| Complete  | 330|0x0000000729400000, 0x0000000729600000, 0x0000000729600000|100%| E|CS|TAMS 0x0000000729400000, 0x0000000729400000| Complete  | 331|0x0000000729600000, 0x0000000729800000, 0x0000000729800000|100%| E|CS|TAMS 0x0000000729600000, 0x0000000729600000| Complete  | 332|0x0000000729800000, 0x0000000729a00000, 0x0000000729a00000|100%| E|CS|TAMS 0x0000000729800000, 0x0000000729800000| Complete  | 333|0x0000000729a00000, 0x0000000729c00000, 0x0000000729c00000|100%| E|CS|TAMS 0x0000000729a00000, 0x0000000729a00000| Complete  | 334|0x0000000729c00000, 0x0000000729e00000, 0x0000000729e00000|100%| E|CS|TAMS 0x0000000729c00000, 0x0000000729c00000| Complete  | 335|0x0000000729e00000, 0x000000072a000000, 0x000000072a000000|100%| E|CS|TAMS 0x0000000729e00000, 0x0000000729e00000| Complete  | 336|0x000000072a000000, 0x000000072a200000, 0x000000072a200000|100%| E|CS|TAMS 0x000000072a000000, 0x000000072a000000| Complete  | 337|0x000000072a200000, 0x000000072a400000, 0x000000072a400000|100%| E|CS|TAMS 0x000000072a200000, 0x000000072a200000| Complete  | 338|0x000000072a400000, 0x000000072a600000, 0x000000072a600000|100%| E|CS|TAMS 0x000000072a400000, 0x000000072a400000| Complete  | 339|0x000000072a600000, 0x000000072a800000, 0x000000072a800000|100%| E|CS|TAMS 0x000000072a600000, 0x000000072a600000| Complete  | 340|0x000000072a800000, 0x000000072aa00000, 0x000000072aa00000|100%| E|CS|TAMS 0x000000072a800000, 0x000000072a800000| Complete  | 341|0x000000072aa00000, 0x000000072ac00000, 0x000000072ac00000|100%| E|CS|TAMS 0x000000072aa00000, 0x000000072aa00000| Complete  | 342|0x000000072ac00000, 0x000000072ae00000, 0x000000072ae00000|100%| E|CS|TAMS 0x000000072ac00000, 0x000000072ac00000| Complete  | 343|0x000000072ae00000, 0x000000072b000000, 0x000000072b000000|100%| E|CS|TAMS 0x000000072ae00000, 0x000000072ae00000| Complete  | 344|0x000000072b000000, 0x000000072b200000, 0x000000072b200000|100%| E|CS|TAMS 0x000000072b000000, 0x000000072b000000| Complete  | 345|0x000000072b200000, 0x000000072b400000, 0x000000072b400000|100%| E|CS|TAMS 0x000000072b200000, 0x000000072b200000| Complete  | 346|0x000000072b400000, 0x000000072b600000, 0x000000072b600000|100%| E|CS|TAMS 0x000000072b400000, 0x000000072b400000| Complete  | 347|0x000000072b600000, 0x000000072b800000, 0x000000072b800000|100%| E|CS|TAMS 0x000000072b600000, 0x000000072b600000| Complete  | 348|0x000000072b800000, 0x000000072ba00000, 0x000000072ba00000|100%| E|CS|TAMS 0x000000072b800000, 0x000000072b800000| Complete  | 349|0x000000072ba00000, 0x000000072bc00000, 0x000000072bc00000|100%| E|CS|TAMS 0x000000072ba00000, 0x000000072ba00000| Complete  | 350|0x000000072bc00000, 0x000000072be00000, 0x000000072be00000|100%| E|CS|TAMS 0x000000072bc00000, 0x000000072bc00000| Complete  | 351|0x000000072be00000, 0x000000072c000000, 0x000000072c000000|100%| E|CS|TAMS 0x000000072be00000, 0x000000072be00000| Complete  | 352|0x000000072c000000, 0x000000072c200000, 0x000000072c200000|100%| E|CS|TAMS 0x000000072c000000, 0x000000072c000000| Complete  | 353|0x000000072c200000, 0x000000072c400000, 0x000000072c400000|100%| E|CS|TAMS 0x000000072c200000, 0x000000072c200000| Complete  | 354|0x000000072c400000, 0x000000072c600000, 0x000000072c600000|100%| E|CS|TAMS 0x000000072c400000, 0x000000072c400000| Complete  | 355|0x000000072c600000, 0x000000072c800000, 0x000000072c800000|100%| E|CS|TAMS 0x000000072c600000, 0x000000072c600000| Complete  | 356|0x000000072c800000, 0x000000072ca00000, 0x000000072ca00000|100%| E|CS|TAMS 0x000000072c800000, 0x000000072c800000| Complete  | 357|0x000000072ca00000, 0x000000072cc00000, 0x000000072cc00000|100%| E|CS|TAMS 0x000000072ca00000, 0x000000072ca00000| Complete  | 358|0x000000072cc00000, 0x000000072ce00000, 0x000000072ce00000|100%| E|CS|TAMS 0x000000072cc00000, 0x000000072cc00000| Complete  | 359|0x000000072ce00000, 0x000000072d000000, 0x000000072d000000|100%| E|CS|TAMS 0x000000072ce00000, 0x000000072ce00000| Complete  | 360|0x000000072d000000, 0x000000072d200000, 0x000000072d200000|100%| E|CS|TAMS 0x000000072d000000, 0x000000072d000000| Complete  | 361|0x000000072d200000, 0x000000072d400000, 0x000000072d400000|100%| E|CS|TAMS 0x000000072d200000, 0x000000072d200000| Complete  | 362|0x000000072d400000, 0x000000072d600000, 0x000000072d600000|100%| E|CS|TAMS 0x000000072d400000, 0x000000072d400000| Complete  | 363|0x000000072d600000, 0x000000072d800000, 0x000000072d800000|100%| E|CS|TAMS 0x000000072d600000, 0x000000072d600000| Complete  | 364|0x000000072d800000, 0x000000072da00000, 0x000000072da00000|100%| E|CS|TAMS 0x000000072d800000, 0x000000072d800000| Complete  | 365|0x000000072da00000, 0x000000072dc00000, 0x000000072dc00000|100%| E|CS|TAMS 0x000000072da00000, 0x000000072da00000| Complete  | 366|0x000000072dc00000, 0x000000072de00000, 0x000000072de00000|100%| E|CS|TAMS 0x000000072dc00000, 0x000000072dc00000| Complete  | 367|0x000000072de00000, 0x000000072e000000, 0x000000072e000000|100%| E|CS|TAMS 0x000000072de00000, 0x000000072de00000| Complete  | 368|0x000000072e000000, 0x000000072e200000, 0x000000072e200000|100%| E|CS|TAMS 0x000000072e000000, 0x000000072e000000| Complete  | 369|0x000000072e200000, 0x000000072e400000, 0x000000072e400000|100%| E|CS|TAMS 0x000000072e200000, 0x000000072e200000| Complete  | 370|0x000000072e400000, 0x000000072e600000, 0x000000072e600000|100%| E|CS|TAMS 0x000000072e400000, 0x000000072e400000| Complete  | 371|0x000000072e600000, 0x000000072e800000, 0x000000072e800000|100%| E|CS|TAMS 0x000000072e600000, 0x000000072e600000| Complete  | 372|0x000000072e800000, 0x000000072ea00000, 0x000000072ea00000|100%| E|CS|TAMS 0x000000072e800000, 0x000000072e800000| Complete  | 373|0x000000072ea00000, 0x000000072ec00000, 0x000000072ec00000|100%| E|CS|TAMS 0x000000072ea00000, 0x000000072ea00000| Complete  | 374|0x000000072ec00000, 0x000000072ee00000, 0x000000072ee00000|100%| E|CS|TAMS 0x000000072ec00000, 0x000000072ec00000| Complete  | 375|0x000000072ee00000, 0x000000072f000000, 0x000000072f000000|100%| E|CS|TAMS 0x000000072ee00000, 0x000000072ee00000| Complete  | 376|0x000000072f000000, 0x000000072f200000, 0x000000072f200000|100%| E|CS|TAMS 0x000000072f000000, 0x000000072f000000| Complete  | 377|0x000000072f200000, 0x000000072f400000, 0x000000072f400000|100%| E|CS|TAMS 0x000000072f200000, 0x000000072f200000| Complete  | 378|0x000000072f400000, 0x000000072f600000, 0x000000072f600000|100%| E|CS|TAMS 0x000000072f400000, 0x000000072f400000| Complete  | 379|0x000000072f600000, 0x000000072f800000, 0x000000072f800000|100%| E|CS|TAMS 0x000000072f600000, 0x000000072f600000| Complete  | 380|0x000000072f800000, 0x000000072fa00000, 0x000000072fa00000|100%| E|CS|TAMS 0x000000072f800000, 0x000000072f800000| Complete  | 381|0x000000072fa00000, 0x000000072fc00000, 0x000000072fc00000|100%| E|CS|TAMS 0x000000072fa00000, 0x000000072fa00000| Complete  | 382|0x000000072fc00000, 0x000000072fe00000, 0x000000072fe00000|100%| E|CS|TAMS 0x000000072fc00000, 0x000000072fc00000| Complete  | 383|0x000000072fe00000, 0x0000000730000000, 0x0000000730000000|100%| E|CS|TAMS 0x000000072fe00000, 0x000000072fe00000| Complete  | 384|0x0000000730000000, 0x0000000730200000, 0x0000000730200000|100%| E|CS|TAMS 0x0000000730000000, 0x0000000730000000| Complete  | 385|0x0000000730200000, 0x0000000730400000, 0x0000000730400000|100%| E|CS|TAMS 0x0000000730200000, 0x0000000730200000| Complete  | 386|0x0000000730400000, 0x0000000730600000, 0x0000000730600000|100%| E|CS|TAMS 0x0000000730400000, 0x0000000730400000| Complete  | 387|0x0000000730600000, 0x0000000730800000, 0x0000000730800000|100%| E|CS|TAMS 0x0000000730600000, 0x0000000730600000| Complete  | 388|0x0000000730800000, 0x0000000730a00000, 0x0000000730a00000|100%| E|CS|TAMS 0x0000000730800000, 0x0000000730800000| Complete  | 389|0x0000000730a00000, 0x0000000730c00000, 0x0000000730c00000|100%| E|CS|TAMS 0x0000000730a00000, 0x0000000730a00000| Complete  | 390|0x0000000730c00000, 0x0000000730e00000, 0x0000000730e00000|100%| E|CS|TAMS 0x0000000730c00000, 0x0000000730c00000| Complete  | 391|0x0000000730e00000, 0x0000000731000000, 0x0000000731000000|100%| E|CS|TAMS 0x0000000730e00000, 0x0000000730e00000| Complete  | 392|0x0000000731000000, 0x0000000731200000, 0x0000000731200000|100%| E|CS|TAMS 0x0000000731000000, 0x0000000731000000| Complete  | 393|0x0000000731200000, 0x0000000731400000, 0x0000000731400000|100%| E|CS|TAMS 0x0000000731200000, 0x0000000731200000| Complete  | 394|0x0000000731400000, 0x0000000731600000, 0x0000000731600000|100%| E|CS|TAMS 0x0000000731400000, 0x0000000731400000| Complete  | 395|0x0000000731600000, 0x0000000731800000, 0x0000000731800000|100%| E|CS|TAMS 0x0000000731600000, 0x0000000731600000| Complete  | 396|0x0000000731800000, 0x0000000731a00000, 0x0000000731a00000|100%| E|CS|TAMS 0x0000000731800000, 0x0000000731800000| Complete  | 397|0x0000000731a00000, 0x0000000731c00000, 0x0000000731c00000|100%| E|CS|TAMS 0x0000000731a00000, 0x0000000731a00000| Complete  | 398|0x0000000731c00000, 0x0000000731e00000, 0x0000000731e00000|100%| E|CS|TAMS 0x0000000731c00000, 0x0000000731c00000| Complete  | 399|0x0000000731e00000, 0x0000000732000000, 0x0000000732000000|100%| E|CS|TAMS 0x0000000731e00000, 0x0000000731e00000| Complete  | 400|0x0000000732000000, 0x0000000732200000, 0x0000000732200000|100%| E|CS|TAMS 0x0000000732000000, 0x0000000732000000| Complete  | 401|0x0000000732200000, 0x0000000732400000, 0x0000000732400000|100%| E|CS|TAMS 0x0000000732200000, 0x0000000732200000| Complete  | 402|0x0000000732400000, 0x0000000732600000, 0x0000000732600000|100%| E|CS|TAMS 0x0000000732400000, 0x0000000732400000| Complete  | 403|0x0000000732600000, 0x0000000732800000, 0x0000000732800000|100%| E|CS|TAMS 0x0000000732600000, 0x0000000732600000| Complete  | 404|0x0000000732800000, 0x0000000732a00000, 0x0000000732a00000|100%| E|CS|TAMS 0x0000000732800000, 0x0000000732800000| Complete  | 405|0x0000000732a00000, 0x0000000732c00000, 0x0000000732c00000|100%| E|CS|TAMS 0x0000000732a00000, 0x0000000732a00000| Complete  | 406|0x0000000732c00000, 0x0000000732e00000, 0x0000000732e00000|100%| E|CS|TAMS 0x0000000732c00000, 0x0000000732c00000| Complete  | 407|0x0000000732e00000, 0x0000000733000000, 0x0000000733000000|100%| E|CS|TAMS 0x0000000732e00000, 0x0000000732e00000| Complete  | 408|0x0000000733000000, 0x0000000733200000, 0x0000000733200000|100%| E|CS|TAMS 0x0000000733000000, 0x0000000733000000| Complete  | 409|0x0000000733200000, 0x0000000733400000, 0x0000000733400000|100%| E|CS|TAMS 0x0000000733200000, 0x0000000733200000| Complete  | 410|0x0000000733400000, 0x0000000733600000, 0x0000000733600000|100%| E|CS|TAMS 0x0000000733400000, 0x0000000733400000| Complete  | 411|0x0000000733600000, 0x0000000733800000, 0x0000000733800000|100%| E|CS|TAMS 0x0000000733600000, 0x0000000733600000| Complete  | 412|0x0000000733800000, 0x0000000733a00000, 0x0000000733a00000|100%| E|CS|TAMS 0x0000000733800000, 0x0000000733800000| Complete  | 413|0x0000000733a00000, 0x0000000733c00000, 0x0000000733c00000|100%| E|CS|TAMS 0x0000000733a00000, 0x0000000733a00000| Complete  | 414|0x0000000733c00000, 0x0000000733e00000, 0x0000000733e00000|100%| E|CS|TAMS 0x0000000733c00000, 0x0000000733c00000| Complete  | 415|0x0000000733e00000, 0x0000000734000000, 0x0000000734000000|100%| E|CS|TAMS 0x0000000733e00000, 0x0000000733e00000| Complete  | 416|0x0000000734000000, 0x0000000734200000, 0x0000000734200000|100%| E|CS|TAMS 0x0000000734000000, 0x0000000734000000| Complete  | 417|0x0000000734200000, 0x0000000734400000, 0x0000000734400000|100%| E|CS|TAMS 0x0000000734200000, 0x0000000734200000| Complete  | 418|0x0000000734400000, 0x0000000734600000, 0x0000000734600000|100%| E|CS|TAMS 0x0000000734400000, 0x0000000734400000| Complete  | 419|0x0000000734600000, 0x0000000734800000, 0x0000000734800000|100%| E|CS|TAMS 0x0000000734600000, 0x0000000734600000| Complete  | 420|0x0000000734800000, 0x0000000734a00000, 0x0000000734a00000|100%| E|CS|TAMS 0x0000000734800000, 0x0000000734800000| Complete  | 421|0x0000000734a00000, 0x0000000734c00000, 0x0000000734c00000|100%| E|CS|TAMS 0x0000000734a00000, 0x0000000734a00000| Complete  | 422|0x0000000734c00000, 0x0000000734e00000, 0x0000000734e00000|100%| E|CS|TAMS 0x0000000734c00000, 0x0000000734c00000| Complete  | 423|0x0000000734e00000, 0x0000000735000000, 0x0000000735000000|100%| E|CS|TAMS 0x0000000734e00000, 0x0000000734e00000| Complete  | 424|0x0000000735000000, 0x0000000735200000, 0x0000000735200000|100%| E|CS|TAMS 0x0000000735000000, 0x0000000735000000| Complete  | 425|0x0000000735200000, 0x0000000735400000, 0x0000000735400000|100%| E|CS|TAMS 0x0000000735200000, 0x0000000735200000| Complete  | 426|0x0000000735400000, 0x0000000735600000, 0x0000000735600000|100%| E|CS|TAMS 0x0000000735400000, 0x0000000735400000| Complete  | 427|0x0000000735600000, 0x0000000735800000, 0x0000000735800000|100%| E|CS|TAMS 0x0000000735600000, 0x0000000735600000| Complete  | 428|0x0000000735800000, 0x0000000735a00000, 0x0000000735a00000|100%| E|CS|TAMS 0x0000000735800000, 0x0000000735800000| Complete  | 429|0x0000000735a00000, 0x0000000735c00000, 0x0000000735c00000|100%| E|CS|TAMS 0x0000000735a00000, 0x0000000735a00000| Complete  | 430|0x0000000735c00000, 0x0000000735e00000, 0x0000000735e00000|100%| E|CS|TAMS 0x0000000735c00000, 0x0000000735c00000| Complete  | 431|0x0000000735e00000, 0x0000000736000000, 0x0000000736000000|100%| E|CS|TAMS 0x0000000735e00000, 0x0000000735e00000| Complete  | 432|0x0000000736000000, 0x0000000736200000, 0x0000000736200000|100%| E|CS|TAMS 0x0000000736000000, 0x0000000736000000| Complete  | 433|0x0000000736200000, 0x0000000736400000, 0x0000000736400000|100%| E|CS|TAMS 0x0000000736200000, 0x0000000736200000| Complete  | 434|0x0000000736400000, 0x0000000736600000, 0x0000000736600000|100%| E|CS|TAMS 0x0000000736400000, 0x0000000736400000| Complete  | 435|0x0000000736600000, 0x0000000736800000, 0x0000000736800000|100%| E|CS|TAMS 0x0000000736600000, 0x0000000736600000| Complete  | 436|0x0000000736800000, 0x0000000736a00000, 0x0000000736a00000|100%| E|CS|TAMS 0x0000000736800000, 0x0000000736800000| Complete  | 437|0x0000000736a00000, 0x0000000736c00000, 0x0000000736c00000|100%| E|CS|TAMS 0x0000000736a00000, 0x0000000736a00000| Complete  | 438|0x0000000736c00000, 0x0000000736e00000, 0x0000000736e00000|100%| E|CS|TAMS 0x0000000736c00000, 0x0000000736c00000| Complete  | 439|0x0000000736e00000, 0x0000000737000000, 0x0000000737000000|100%| E|CS|TAMS 0x0000000736e00000, 0x0000000736e00000| Complete  | 440|0x0000000737000000, 0x0000000737200000, 0x0000000737200000|100%| E|CS|TAMS 0x0000000737000000, 0x0000000737000000| Complete  | 441|0x0000000737200000, 0x0000000737400000, 0x0000000737400000|100%| E|CS|TAMS 0x0000000737200000, 0x0000000737200000| Complete  | 442|0x0000000737400000, 0x0000000737600000, 0x0000000737600000|100%| E|CS|TAMS 0x0000000737400000, 0x0000000737400000| Complete  | 443|0x0000000737600000, 0x0000000737800000, 0x0000000737800000|100%| E|CS|TAMS 0x0000000737600000, 0x0000000737600000| Complete  | 444|0x0000000737800000, 0x0000000737a00000, 0x0000000737a00000|100%| E|CS|TAMS 0x0000000737800000, 0x0000000737800000| Complete  | 445|0x0000000737a00000, 0x0000000737c00000, 0x0000000737c00000|100%| E|CS|TAMS 0x0000000737a00000, 0x0000000737a00000| Complete  | 446|0x0000000737c00000, 0x0000000737e00000, 0x0000000737e00000|100%| E|CS|TAMS 0x0000000737c00000, 0x0000000737c00000| Complete  | 447|0x0000000737e00000, 0x0000000738000000, 0x0000000738000000|100%| E|CS|TAMS 0x0000000737e00000, 0x0000000737e00000| Complete  | 448|0x0000000738000000, 0x0000000738200000, 0x0000000738200000|100%| E|CS|TAMS 0x0000000738000000, 0x0000000738000000| Complete  | 449|0x0000000738200000, 0x0000000738400000, 0x0000000738400000|100%| E|CS|TAMS 0x0000000738200000, 0x0000000738200000| Complete  | 450|0x0000000738400000, 0x0000000738600000, 0x0000000738600000|100%| E|CS|TAMS 0x0000000738400000, 0x0000000738400000| Complete  | 451|0x0000000738600000, 0x0000000738800000, 0x0000000738800000|100%| E|CS|TAMS 0x0000000738600000, 0x0000000738600000| Complete  | 452|0x0000000738800000, 0x0000000738a00000, 0x0000000738a00000|100%| E|CS|TAMS 0x0000000738800000, 0x0000000738800000| Complete  | 453|0x0000000738a00000, 0x0000000738c00000, 0x0000000738c00000|100%| E|CS|TAMS 0x0000000738a00000, 0x0000000738a00000| Complete  | 454|0x0000000738c00000, 0x0000000738e00000, 0x0000000738e00000|100%| E|CS|TAMS 0x0000000738c00000, 0x0000000738c00000| Complete  | 455|0x0000000738e00000, 0x0000000739000000, 0x0000000739000000|100%| E|CS|TAMS 0x0000000738e00000, 0x0000000738e00000| Complete  | 456|0x0000000739000000, 0x0000000739200000, 0x0000000739200000|100%| E|CS|TAMS 0x0000000739000000, 0x0000000739000000| Complete  | 457|0x0000000739200000, 0x0000000739400000, 0x0000000739400000|100%| E|CS|TAMS 0x0000000739200000, 0x0000000739200000| Complete  | 458|0x0000000739400000, 0x0000000739600000, 0x0000000739600000|100%| E|CS|TAMS 0x0000000739400000, 0x0000000739400000| Complete  | 459|0x0000000739600000, 0x0000000739800000, 0x0000000739800000|100%| E|CS|TAMS 0x0000000739600000, 0x0000000739600000| Complete  | 460|0x0000000739800000, 0x0000000739a00000, 0x0000000739a00000|100%| E|CS|TAMS 0x0000000739800000, 0x0000000739800000| Complete  | 461|0x0000000739a00000, 0x0000000739c00000, 0x0000000739c00000|100%| E|CS|TAMS 0x0000000739a00000, 0x0000000739a00000| Complete  | 462|0x0000000739c00000, 0x0000000739e00000, 0x0000000739e00000|100%| E|CS|TAMS 0x0000000739c00000, 0x0000000739c00000| Complete  | 463|0x0000000739e00000, 0x000000073a000000, 0x000000073a000000|100%| E|CS|TAMS 0x0000000739e00000, 0x0000000739e00000| Complete  | 464|0x000000073a000000, 0x000000073a200000, 0x000000073a200000|100%| E|CS|TAMS 0x000000073a000000, 0x000000073a000000| Complete  | 465|0x000000073a200000, 0x000000073a400000, 0x000000073a400000|100%| E|CS|TAMS 0x000000073a200000, 0x000000073a200000| Complete  | 466|0x000000073a400000, 0x000000073a600000, 0x000000073a600000|100%| E|CS|TAMS 0x000000073a400000, 0x000000073a400000| Complete  | 467|0x000000073a600000, 0x000000073a800000, 0x000000073a800000|100%| E|CS|TAMS 0x000000073a600000, 0x000000073a600000| Complete  | 468|0x000000073a800000, 0x000000073aa00000, 0x000000073aa00000|100%| E|CS|TAMS 0x000000073a800000, 0x000000073a800000| Complete  | 469|0x000000073aa00000, 0x000000073ac00000, 0x000000073ac00000|100%| E|CS|TAMS 0x000000073aa00000, 0x000000073aa00000| Complete  | 470|0x000000073ac00000, 0x000000073ae00000, 0x000000073ae00000|100%| E|CS|TAMS 0x000000073ac00000, 0x000000073ac00000| Complete  | 471|0x000000073ae00000, 0x000000073b000000, 0x000000073b000000|100%| E|CS|TAMS 0x000000073ae00000, 0x000000073ae00000| Complete  | 472|0x000000073b000000, 0x000000073b200000, 0x000000073b200000|100%| E|CS|TAMS 0x000000073b000000, 0x000000073b000000| Complete  | 473|0x000000073b200000, 0x000000073b400000, 0x000000073b400000|100%| E|CS|TAMS 0x000000073b200000, 0x000000073b200000| Complete  | 474|0x000000073b400000, 0x000000073b600000, 0x000000073b600000|100%| E|CS|TAMS 0x000000073b400000, 0x000000073b400000| Complete  | 475|0x000000073b600000, 0x000000073b800000, 0x000000073b800000|100%| E|CS|TAMS 0x000000073b600000, 0x000000073b600000| Complete  | 476|0x000000073b800000, 0x000000073ba00000, 0x000000073ba00000|100%| E|CS|TAMS 0x000000073b800000, 0x000000073b800000| Complete  | 477|0x000000073ba00000, 0x000000073bc00000, 0x000000073bc00000|100%| E|CS|TAMS 0x000000073ba00000, 0x000000073ba00000| Complete  | 478|0x000000073bc00000, 0x000000073be00000, 0x000000073be00000|100%| E|CS|TAMS 0x000000073bc00000, 0x000000073bc00000| Complete  | 479|0x000000073be00000, 0x000000073c000000, 0x000000073c000000|100%| E|CS|TAMS 0x000000073be00000, 0x000000073be00000| Complete  | 480|0x000000073c000000, 0x000000073c200000, 0x000000073c200000|100%| E|CS|TAMS 0x000000073c000000, 0x000000073c000000| Complete  | 481|0x000000073c200000, 0x000000073c400000, 0x000000073c400000|100%| E|CS|TAMS 0x000000073c200000, 0x000000073c200000| Complete  | 482|0x000000073c400000, 0x000000073c600000, 0x000000073c600000|100%| E|CS|TAMS 0x000000073c400000, 0x000000073c400000| Complete  | 483|0x000000073c600000, 0x000000073c800000, 0x000000073c800000|100%| E|CS|TAMS 0x000000073c600000, 0x000000073c600000| Complete  | 484|0x000000073c800000, 0x000000073ca00000, 0x000000073ca00000|100%| E|CS|TAMS 0x000000073c800000, 0x000000073c800000| Complete  | 485|0x000000073ca00000, 0x000000073cc00000, 0x000000073cc00000|100%| E|CS|TAMS 0x000000073ca00000, 0x000000073ca00000| Complete  | 486|0x000000073cc00000, 0x000000073ce00000, 0x000000073ce00000|100%| E|CS|TAMS 0x000000073cc00000, 0x000000073cc00000| Complete  | 487|0x000000073ce00000, 0x000000073d000000, 0x000000073d000000|100%| E|CS|TAMS 0x000000073ce00000, 0x000000073ce00000| Complete  | 488|0x000000073d000000, 0x000000073d200000, 0x000000073d200000|100%| E|CS|TAMS 0x000000073d000000, 0x000000073d000000| Complete  | 489|0x000000073d200000, 0x000000073d400000, 0x000000073d400000|100%| E|CS|TAMS 0x000000073d200000, 0x000000073d200000| Complete  | 490|0x000000073d400000, 0x000000073d600000, 0x000000073d600000|100%| E|CS|TAMS 0x000000073d400000, 0x000000073d400000| Complete  | 491|0x000000073d600000, 0x000000073d800000, 0x000000073d800000|100%| E|CS|TAMS 0x000000073d600000, 0x000000073d600000| Complete  | 492|0x000000073d800000, 0x000000073da00000, 0x000000073da00000|100%| E|CS|TAMS 0x000000073d800000, 0x000000073d800000| Complete  | 493|0x000000073da00000, 0x000000073dc00000, 0x000000073dc00000|100%| E|CS|TAMS 0x000000073da00000, 0x000000073da00000| Complete  | 494|0x000000073dc00000, 0x000000073de00000, 0x000000073de00000|100%| E|CS|TAMS 0x000000073dc00000, 0x000000073dc00000| Complete  | 495|0x000000073de00000, 0x000000073e000000, 0x000000073e000000|100%| E|CS|TAMS 0x000000073de00000, 0x000000073de00000| Complete  | 496|0x000000073e000000, 0x000000073e200000, 0x000000073e200000|100%| E|CS|TAMS 0x000000073e000000, 0x000000073e000000| Complete  | 497|0x000000073e200000, 0x000000073e400000, 0x000000073e400000|100%| E|CS|TAMS 0x000000073e200000, 0x000000073e200000| Complete  | 498|0x000000073e400000, 0x000000073e600000, 0x000000073e600000|100%| E|CS|TAMS 0x000000073e400000, 0x000000073e400000| Complete  | 499|0x000000073e600000, 0x000000073e800000, 0x000000073e800000|100%| E|CS|TAMS 0x000000073e600000, 0x000000073e600000| Complete  | 537|0x0000000743200000, 0x0000000743400000, 0x0000000743400000|100%| E|CS|TAMS 0x0000000743200000, 0x0000000743200000| Complete  | 538|0x0000000743400000, 0x0000000743600000, 0x0000000743600000|100%| E|CS|TAMS 0x0000000743400000, 0x0000000743400000| Complete  | 539|0x0000000743600000, 0x0000000743800000, 0x0000000743800000|100%| E|CS|TAMS 0x0000000743600000, 0x0000000743600000| Complete  | 540|0x0000000743800000, 0x0000000743a00000, 0x0000000743a00000|100%| E|CS|TAMS 0x0000000743800000, 0x0000000743800000| Complete  | 541|0x0000000743a00000, 0x0000000743c00000, 0x0000000743c00000|100%| E|CS|TAMS 0x0000000743a00000, 0x0000000743a00000| Complete  | 542|0x0000000743c00000, 0x0000000743e00000, 0x0000000743e00000|100%| E|CS|TAMS 0x0000000743c00000, 0x0000000743c00000| Complete  | 543|0x0000000743e00000, 0x0000000744000000, 0x0000000744000000|100%| E|CS|TAMS 0x0000000743e00000, 0x0000000743e00000| Complete  | 544|0x0000000744000000, 0x0000000744200000, 0x0000000744200000|100%| E|CS|TAMS 0x0000000744000000, 0x0000000744000000| Complete  | 545|0x0000000744200000, 0x0000000744400000, 0x0000000744400000|100%| E|CS|TAMS 0x0000000744200000, 0x0000000744200000| Complete  | 546|0x0000000744400000, 0x0000000744600000, 0x0000000744600000|100%| E|CS|TAMS 0x0000000744400000, 0x0000000744400000| Complete  | 547|0x0000000744600000, 0x0000000744800000, 0x0000000744800000|100%| E|CS|TAMS 0x0000000744600000, 0x0000000744600000| Complete  | 548|0x0000000744800000, 0x0000000744a00000, 0x0000000744a00000|100%| E|CS|TAMS 0x0000000744800000, 0x0000000744800000| Complete  | 549|0x0000000744a00000, 0x0000000744c00000, 0x0000000744c00000|100%| E|CS|TAMS 0x0000000744a00000, 0x0000000744a00000| Complete  | 550|0x0000000744c00000, 0x0000000744e00000, 0x0000000744e00000|100%| E|CS|TAMS 0x0000000744c00000, 0x0000000744c00000| Complete  | 551|0x0000000744e00000, 0x0000000745000000, 0x0000000745000000|100%| E|CS|TAMS 0x0000000744e00000, 0x0000000744e00000| Complete  | 552|0x0000000745000000, 0x0000000745200000, 0x0000000745200000|100%| E|CS|TAMS 0x0000000745000000, 0x0000000745000000| Complete  | 553|0x0000000745200000, 0x0000000745400000, 0x0000000745400000|100%| E|CS|TAMS 0x0000000745200000, 0x0000000745200000| Complete  | 554|0x0000000745400000, 0x0000000745600000, 0x0000000745600000|100%| E|CS|TAMS 0x0000000745400000, 0x0000000745400000| Complete  | 555|0x0000000745600000, 0x0000000745800000, 0x0000000745800000|100%| E|CS|TAMS 0x0000000745600000, 0x0000000745600000| Complete  | 556|0x0000000745800000, 0x0000000745a00000, 0x0000000745a00000|100%| E|CS|TAMS 0x0000000745800000, 0x0000000745800000| Complete  | 557|0x0000000745a00000, 0x0000000745c00000, 0x0000000745c00000|100%| E|CS|TAMS 0x0000000745a00000, 0x0000000745a00000| Complete  | 558|0x0000000745c00000, 0x0000000745e00000, 0x0000000745e00000|100%| E|CS|TAMS 0x0000000745c00000, 0x0000000745c00000| Complete  | 559|0x0000000745e00000, 0x0000000746000000, 0x0000000746000000|100%| E|CS|TAMS 0x0000000745e00000, 0x0000000745e00000| Complete  | 560|0x0000000746000000, 0x0000000746200000, 0x0000000746200000|100%| E|CS|TAMS 0x0000000746000000, 0x0000000746000000| Complete  | 561|0x0000000746200000, 0x0000000746400000, 0x0000000746400000|100%| S|CS|TAMS 0x0000000746200000, 0x0000000746200000| Complete  | 562|0x0000000746400000, 0x0000000746600000, 0x0000000746600000|100%| S|CS|TAMS 0x0000000746400000, 0x0000000746400000| Complete  |2040|0x00000007ff000000, 0x00000007ff200000, 0x00000007ff200000|100%| E|CS|TAMS 0x00000007ff000000, 0x00000007ff000000| Complete  |2041|0x00000007ff200000, 0x00000007ff400000, 0x00000007ff400000|100%| O|  |TAMS 0x00000007ff400000, 0x00000007ff200000| Untracked  |2042|0x00000007ff400000, 0x00000007ff600000, 0x00000007ff600000|100%| O|  |TAMS 0x00000007ff600000, 0x00000007ff400000| Untracked  |2043|0x00000007ff600000, 0x00000007ff800000, 0x00000007ff800000|100%| O|  |TAMS 0x00000007ff800000, 0x00000007ff600000| Untracked  |2044|0x00000007ff800000, 0x00000007ffa00000, 0x00000007ffa00000|100%| O|  |TAMS 0x00000007ffa00000, 0x00000007ff800000| Untracked  |2045|0x00000007ffa00000, 0x00000007ffc00000, 0x00000007ffc00000|100%| O|  |TAMS 0x00000007ffc00000, 0x00000007ffa00000| Untracked  |2046|0x00000007ffc00000, 0x00000007ffe00000, 0x00000007ffe00000|100%| O|  |TAMS 0x00000007ffe00000, 0x00000007ffc00000| Untracked  |2047|0x00000007ffe00000, 0x0000000800000000, 0x0000000800000000|100%| O|  |TAMS 0x0000000800000000, 0x00000007ffe00000| Untracked  Card table byte_map: [0x0000020ce5980000,0x0000020ce6180000] _byte_map_base: 0x0000020ce2180000 Marking Bits (Prev, Next): (CMBitMap*) 0x0000020cd02d2120, (CMBitMap*) 0x0000020cd02d20e0  Prev Bits: [0x0000020cea980000, 0x0000020cee980000)  Next Bits: [0x0000020ce6980000, 0x0000020cea980000) Polling page: 0x0000020cd0300000 Metaspace: Usage:   Non-class:     78.21 MB used.       Class:     12.67 MB used.        Both:     90.88 MB used. Virtual space:   Non-class space:      128.00 MB reserved,      78.94 MB ( 62%) committed,  2 nodes.       Class space:        1.00 GB reserved,      13.25 MB (  1%) committed,  1 nodes.              Both:        1.12 GB reserved,      92.19 MB (  8%) committed.  Chunk freelists:    Non-Class:  970.00 KB        Class:  2.73 MB         Both:  3.68 MB MaxMetaspaceSize: unlimited CompressedClassSpaceSize: 1.00 GB Initial GC threshold: 21.00 MB Current GC threshold: 117.50 MB CDS: off MetaspaceReclaimPolicy: balanced  - commit_granule_bytes: 65536.  - commit_granule_words: 8192.  - virtual_space_node_default_size: 8388608.  - enlarge_chunks_in_place: 1.  - new_chunks_are_fully_committed: 0.  - uncommit_free_chunks: 1.  - use_allocation_guard: 0.  - handle_deallocations: 1. Internal statistics: num_allocs_failed_limit: 12. num_arena_births: 2008. num_arena_deaths: 0. num_vsnodes_births: 3. num_vsnodes_deaths: 0. num_space_committed: 1473. num_space_uncommitted: 0. num_chunks_returned_to_freelist: 12. num_chunks_taken_from_freelist: 5510. num_chunk_merges: 9. num_chunk_splits: 3501. num_chunks_enlarged: 2227. num_inconsistent_stats: 0. CodeHeap 'non-profiled nmethods': size=119168Kb used=10701Kb max_used=10974Kb free=108466Kb  bounds [0x0000020cdcd70000, 0x0000020cdd830000, 0x0000020ce41d0000] CodeHeap 'profiled nmethods': size=119104Kb used=18875Kb max_used=20183Kb free=100228Kb  bounds [0x0000020cd51d0000, 0x0000020cd6590000, 0x0000020cdc620000] CodeHeap 'non-nmethods': size=7488Kb used=3729Kb max_used=3778Kb free=3758Kb  bounds [0x0000020cdc620000, 0x0000020cdc9e0000, 0x0000020cdcd70000]  total_blobs=11894 nmethods=10313 adapters=1490  compilation: enabled               stopped_count=0, restarted_count=0  full_count=0 Compilation events (20 events): Event: 19.499 Thread 0x0000020cfb3d1990 13581   !   4       com.sun.jna.Native::getNativeSize (139 bytes) Event: 19.501 Thread 0x0000020cf6030050 13582       3       org.objectweb.asm.tree.ClassNode::visitOuterClass (16 bytes) Event: 19.502 Thread 0x0000020cf6030050 nmethod 13582 0x0000020cd5f0ae90 code [0x0000020cd5f0b020, 0x0000020cd5f0b258] Event: 19.515 Thread 0x0000020cf1b6b380 13583   !   4       java.util.Formatter::format (283 bytes) Event: 19.516 Thread 0x0000020cf1b6dcb0 13584   !   3       cpw.mods.modlauncher.TransformerClassWriter::computeHierarchyFromFile (109 bytes) Event: 19.517 Thread 0x0000020cf1b6dcb0 nmethod 13584 0x0000020cd595a890 code [0x0000020cd595ab40, 0x0000020cd595b778] Event: 19.519 Thread 0x0000020cf6030050 13585       3       sun.misc.Unsafe::putInt (11 bytes) Event: 19.520 Thread 0x0000020cf6030050 nmethod 13585 0x0000020cd5c36c10 code [0x0000020cd5c36da0, 0x0000020cd5c36eb8] Event: 19.520 Thread 0x0000020cf6030050 13586       3       org.lwjgl.system.MemoryUtil::encodeASCIIUnsafe (53 bytes) Event: 19.520 Thread 0x0000020cf685ad90 13587       1       org.lwjgl.system.Pointer$Default::address (5 bytes) Event: 19.520 Thread 0x0000020cf685ad90 nmethod 13587 0x0000020cdd74e790 code [0x0000020cdd74e920, 0x0000020cdd74e9f8] Event: 19.520 Thread 0x0000020cf6030050 nmethod 13586 0x0000020cd60b4c90 code [0x0000020cd60b4e60, 0x0000020cd60b5278] Event: 19.537 Thread 0x0000020cf6030050 13589       1       org.apache.logging.slf4j.SLF4JServiceProvider::getLoggerFactory (5 bytes) Event: 19.537 Thread 0x0000020cf6030050 nmethod 13589 0x0000020cdd441f90 code [0x0000020cdd442120, 0x0000020cdd4421f8] Event: 19.538 Thread 0x0000020cfb3d1990 nmethod 13581 0x0000020cdce30710 code [0x0000020cdce30b40, 0x0000020cdce33750] Event: 19.549 Thread 0x0000020cf1b6b380 nmethod 13583 0x0000020cdd616f90 code [0x0000020cdd617300, 0x0000020cdd6192b0] Event: 19.558 Thread 0x0000020cf6030050 13590       1       de.keksuccino.konkrete.config.ConfigEntry::getCategory (5 bytes) Event: 19.558 Thread 0x0000020cf6030050 nmethod 13590 0x0000020cdd742610 code [0x0000020cdd7427a0, 0x0000020cdd742878] Event: 19.561 Thread 0x0000020cf1b6b380 13591       4       java.lang.StringCoding::implEncodeAsciiArray (47 bytes) Event: 19.565 Thread 0x0000020cf1b6b380 nmethod 13591 0x0000020cdd40ad90 code [0x0000020cdd40af00, 0x0000020cdd40b298] GC Heap History (20 events): Event: 11.443 GC heap before {Heap before GC invocations=38 (full 0):  garbage-first heap   total 526336K, used 446522K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 90 young (184320K), 2 survivors (4096K)  Metaspace       used 42178K, committed 43136K, reserved 1114112K   class space    used 4754K, committed 5184K, reserved 1048576K } Event: 11.449 GC heap after {Heap after GC invocations=39 (full 0):  garbage-first heap   total 1169408K, used 269733K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 4 young (8192K), 4 survivors (8192K)  Metaspace       used 42178K, committed 43136K, reserved 1114112K   class space    used 4754K, committed 5184K, reserved 1048576K } Event: 12.617 GC heap before {Heap before GC invocations=40 (full 0):  garbage-first heap   total 1093632K, used 929189K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 320 young (655360K), 4 survivors (8192K)  Metaspace       used 45885K, committed 46912K, reserved 1114112K   class space    used 5236K, committed 5696K, reserved 1048576K } Event: 12.624 GC heap after {Heap after GC invocations=41 (full 0):  garbage-first heap   total 1093632K, used 292420K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 9 young (18432K), 9 survivors (18432K)  Metaspace       used 45885K, committed 46912K, reserved 1114112K   class space    used 5236K, committed 5696K, reserved 1048576K } Event: 12.687 GC heap before {Heap before GC invocations=41 (full 0):  garbage-first heap   total 1093632K, used 327236K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 26 young (53248K), 9 survivors (18432K)  Metaspace       used 46264K, committed 47360K, reserved 1114112K   class space    used 5277K, committed 5760K, reserved 1048576K } Event: 12.693 GC heap after {Heap after GC invocations=42 (full 0):  garbage-first heap   total 1093632K, used 292370K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 2 young (4096K), 2 survivors (4096K)  Metaspace       used 46264K, committed 47360K, reserved 1114112K   class space    used 5277K, committed 5760K, reserved 1048576K } Event: 13.919 GC heap before {Heap before GC invocations=42 (full 0):  garbage-first heap   total 1093632K, used 927250K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 312 young (638976K), 2 survivors (4096K)  Metaspace       used 48613K, committed 49664K, reserved 1114112K   class space    used 5537K, committed 6016K, reserved 1048576K } Event: 13.924 GC heap after {Heap after GC invocations=43 (full 0):  garbage-first heap   total 1093632K, used 298891K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 5 young (10240K), 5 survivors (10240K)  Metaspace       used 48613K, committed 49664K, reserved 1114112K   class space    used 5537K, committed 6016K, reserved 1048576K } Event: 14.838 GC heap before {Heap before GC invocations=43 (full 0):  garbage-first heap   total 1093632K, used 935819K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 316 young (647168K), 5 survivors (10240K)  Metaspace       used 53450K, committed 54464K, reserved 1114112K   class space    used 6081K, committed 6528K, reserved 1048576K } Event: 14.844 GC heap after {Heap after GC invocations=44 (full 0):  garbage-first heap   total 1093632K, used 306079K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 8 young (16384K), 8 survivors (16384K)  Metaspace       used 53450K, committed 54464K, reserved 1114112K   class space    used 6081K, committed 6528K, reserved 1048576K } Event: 15.981 GC heap before {Heap before GC invocations=44 (full 0):  garbage-first heap   total 1093632K, used 943007K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 319 young (653312K), 8 survivors (16384K)  Metaspace       used 62436K, committed 63616K, reserved 1114112K   class space    used 7651K, committed 8192K, reserved 1048576K } Event: 15.990 GC heap after {Heap after GC invocations=45 (full 0):  garbage-first heap   total 1093632K, used 315506K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 13 young (26624K), 13 survivors (26624K)  Metaspace       used 62436K, committed 63616K, reserved 1114112K   class space    used 7651K, committed 8192K, reserved 1048576K } Event: 16.931 GC heap before {Heap before GC invocations=45 (full 0):  garbage-first heap   total 1093632K, used 944242K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 320 young (655360K), 13 survivors (26624K)  Metaspace       used 69321K, committed 70464K, reserved 1114112K   class space    used 9212K, committed 9728K, reserved 1048576K } Event: 16.941 GC heap after {Heap after GC invocations=46 (full 0):  garbage-first heap   total 1093632K, used 326501K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 18 young (36864K), 18 survivors (36864K)  Metaspace       used 69321K, committed 70464K, reserved 1114112K   class space    used 9212K, committed 9728K, reserved 1048576K } Event: 17.073 GC heap before {Heap before GC invocations=46 (full 0):  garbage-first heap   total 1093632K, used 430949K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 70 young (143360K), 18 survivors (36864K)  Metaspace       used 70516K, committed 71680K, reserved 1114112K   class space    used 9468K, committed 9984K, reserved 1048576K } Event: 17.082 GC heap after {Heap after GC invocations=47 (full 0):  garbage-first heap   total 1093632K, used 328002K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 19 young (38912K), 19 survivors (38912K)  Metaspace       used 70516K, committed 71680K, reserved 1114112K   class space    used 9468K, committed 9984K, reserved 1048576K } Event: 18.355 GC heap before {Heap before GC invocations=48 (full 0):  garbage-first heap   total 1093632K, used 942402K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 319 young (653312K), 19 survivors (38912K)  Metaspace       used 82214K, committed 83520K, reserved 1179648K   class space    used 11637K, committed 12224K, reserved 1048576K } Event: 18.369 GC heap after {Heap after GC invocations=49 (full 0):  garbage-first heap   total 1093632K, used 340426K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 25 young (51200K), 25 survivors (51200K)  Metaspace       used 82214K, committed 83520K, reserved 1179648K   class space    used 11637K, committed 12224K, reserved 1048576K } Event: 18.371 GC heap before {Heap before GC invocations=49 (full 0):  garbage-first heap   total 1093632K, used 342474K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 26 young (53248K), 25 survivors (51200K)  Metaspace       used 82214K, committed 83520K, reserved 1179648K   class space    used 11637K, committed 12224K, reserved 1048576K } Event: 18.384 GC heap after {Heap after GC invocations=50 (full 0):  garbage-first heap   total 1093632K, used 340158K [0x0000000700000000, 0x0000000800000000)   region size 2048K, 2 young (4096K), 2 survivors (4096K)  Metaspace       used 82214K, committed 83520K, reserved 1179648K   class space    used 11637K, committed 12224K, reserved 1048576K } Dll operation events (12 events): Event: 0.008 Loaded shared library C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\java.dll Event: 0.030 Loaded shared library C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\jsvml.dll Event: 0.196 Loaded shared library C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\net.dll Event: 0.198 Loaded shared library C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\nio.dll Event: 0.204 Loaded shared library C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\zip.dll Event: 0.269 Loaded shared library C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\jimage.dll Event: 0.448 Loaded shared library C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\verify.dll Event: 1.878 Loaded shared library C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\management.dll Event: 1.881 Loaded shared library C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\management_ext.dll Event: 12.506 Loaded shared library C:\Users\timur\AppData\Local\Temp\jna-110364981\jna12242003069085804279.dll Event: 18.557 Loaded shared library C:\Users\timur\AppData\Local\Temp\lwjgltimur\3.3.1-build-7\lwjgl.dll Event: 18.725 Loaded shared library C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\sunmscapi.dll Deoptimization events (20 events): Event: 19.494 Thread 0x0000020cd0267e90 DEOPT PACKING pc=0x0000020cdcf11818 sp=0x00000085c2cfd140 Event: 19.494 Thread 0x0000020cd0267e90 DEOPT UNPACKING pc=0x0000020cdc6769a3 sp=0x00000085c2cfd0f0 mode 2 Event: 19.495 Thread 0x0000020cd0267e90 Uncommon trap: trap_request=0xffffffbe fr.pc=0x0000020cdcf11818 relative=0x0000000000000278 Event: 19.495 Thread 0x0000020cd0267e90 Uncommon trap: reason=profile_predicate action=maybe_recompile pc=0x0000020cdcf11818 method=java.util.HashMap.keysToArray([Ljava/lang/Object;)[Ljava/lang/Object; @ 36 c2 Event: 19.495 Thread 0x0000020cd0267e90 DEOPT PACKING pc=0x0000020cdcf11818 sp=0x00000085c2cfd190 Event: 19.495 Thread 0x0000020cd0267e90 DEOPT UNPACKING pc=0x0000020cdc6769a3 sp=0x00000085c2cfd140 mode 2 Event: 19.495 Thread 0x0000020cd0267e90 Uncommon trap: trap_request=0xffffffbe fr.pc=0x0000020cdcf11818 relative=0x0000000000000278 Event: 19.495 Thread 0x0000020cd0267e90 Uncommon trap: reason=profile_predicate action=maybe_recompile pc=0x0000020cdcf11818 method=java.util.HashMap.keysToArray([Ljava/lang/Object;)[Ljava/lang/Object; @ 36 c2 Event: 19.495 Thread 0x0000020cd0267e90 DEOPT PACKING pc=0x0000020cdcf11818 sp=0x00000085c2cfd210 Event: 19.495 Thread 0x0000020cd0267e90 DEOPT UNPACKING pc=0x0000020cdc6769a3 sp=0x00000085c2cfd1c0 mode 2 Event: 19.507 Thread 0x0000020cd0267e90 Uncommon trap: trap_request=0xffffff45 fr.pc=0x0000020cdd7365f4 relative=0x0000000000000714 Event: 19.507 Thread 0x0000020cd0267e90 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000020cdd7365f4 method=java.util.regex.Pattern.family(ZZ)Ljava/util/regex/Pattern$CharPredicate; @ 496 c2 Event: 19.507 Thread 0x0000020cd0267e90 DEOPT PACKING pc=0x0000020cdd7365f4 sp=0x00000085c2cfcf70 Event: 19.507 Thread 0x0000020cd0267e90 DEOPT UNPACKING pc=0x0000020cdc6769a3 sp=0x00000085c2cfcf38 mode 2 Event: 19.523 Thread 0x0000020cd0267e90 Uncommon trap: trap_request=0xffffff45 fr.pc=0x0000020cdd25135c relative=0x000000000000271c Event: 19.523 Thread 0x0000020cd0267e90 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000020cdd25135c method=cpw.mods.niofs.union.UnionPath.<init>(Lcpw/mods/niofs/union/UnionFileSystem;[Ljava/lang/String;)V @ 75 c2 Event: 19.523 Thread 0x0000020cd0267e90 DEOPT PACKING pc=0x0000020cdd25135c sp=0x00000085c2cfa990 Event: 19.523 Thread 0x0000020cd0267e90 DEOPT UNPACKING pc=0x0000020cdc6769a3 sp=0x00000085c2cfa918 mode 2 Event: 19.561 Thread 0x0000020cd0267e90 DEOPT PACKING pc=0x0000020cd58e8203 sp=0x00000085c2cfd6b0 Event: 19.561 Thread 0x0000020cd0267e90 DEOPT UNPACKING pc=0x0000020cdc677143 sp=0x00000085c2cfcb20 mode 0 Classes unloaded (0 events): No events Classes redefined (0 events): No events Internal exceptions (20 events): Event: 18.583 Thread 0x0000020cd0267e90 Exception <a 'java/lang/NoSuchMethodError'{0x0000000731daff28}: 'void java.lang.invoke.DirectMethodHandle$Holder.invokeStaticInit(java.lang.Object, java.lang.Object, int)'> (0x0000000731daff28)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 18.608 Thread 0x0000020cd0267e90 Exception <a 'java/lang/NoSuchMethodError'{0x000000072ea6ec70}: 'long java.lang.invoke.DirectMethodHandle$Holder.invokeSpecial(java.lang.Object, java.lang.Object)'> (0x000000072ea6ec70)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 18.741 Thread 0x0000020cd0267e90 Exception <a 'sun/nio/fs/WindowsException'{0x000000072a4c4d28}> (0x000000072a4c4d28)  thrown [s\src\hotspot\share\prims\jni.cpp, line 516] Event: 19.370 Thread 0x0000020cd0267e90 Exception <a 'java/lang/NoSuchMethodError'{0x00000007227d4bf0}: 'java.lang.Object java.lang.invoke.Invokers$Holder.linkToTargetMethod(java.lang.Object, int, java.lang.Object, java.lang.Object)'> (0x00000007227d4bf0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.376 Thread 0x0000020cd0267e90 Exception <a 'java/lang/NoSuchMethodError'{0x000000072247d428}: 'int java.lang.invoke.Invokers$Holder.invokeExact_MT(java.lang.Object, java.lang.Object)'> (0x000000072247d428)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.379 Thread 0x0000020cd0267e90 Exception <a 'sun/nio/fs/WindowsException'{0x00000007225880f8}> (0x00000007225880f8)  thrown [s\src\hotspot\share\prims\jni.cpp, line 516] Event: 19.379 Thread 0x0000020cd0267e90 Exception <a 'sun/nio/fs/WindowsException'{0x0000000722588458}> (0x0000000722588458)  thrown [s\src\hotspot\share\prims\jni.cpp, line 516] Event: 19.390 Thread 0x0000020cd0267e90 Exception <a 'java/lang/NoSuchMethodError'{0x000000072236bbe0}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.invokeInterface(java.lang.Object, java.lang.Object, double)'> (0x000000072236bbe0)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.390 Thread 0x0000020cd0267e90 Exception <a 'java/lang/NoSuchMethodError'{0x0000000722372440}: 'double java.lang.invoke.DirectMethodHandle$Holder.invokeInterface(java.lang.Object, java.lang.Object, java.lang.Object)'> (0x0000000722372440)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.394 Thread 0x0000020cd0267e90 Exception <a 'java/lang/NullPointerException'{0x00000007220132f8}> (0x00000007220132f8)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 1350] Event: 19.394 Thread 0x0000020cd0267e90 Exception <a 'sun/nio/fs/WindowsException'{0x0000000722013930}> (0x0000000722013930)  thrown [s\src\hotspot\share\prims\jni.cpp, line 516] Event: 19.412 Thread 0x0000020cd0267e90 Exception <a 'java/lang/NoSuchMethodError'{0x0000000721f3b910}: 'double java.lang.invoke.DirectMethodHandle$Holder.invokeVirtual(java.lang.Object, java.lang.Object)'> (0x0000000721f3b910)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.434 Thread 0x0000020cd0267e90 Exception <a 'java/lang/IncompatibleClassChangeError'{0x0000000721bf7580}: Found class java.lang.Object, but interface was expected> (0x0000000721bf7580)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 826] Event: 19.467 Thread 0x0000020cd0267e90 Exception <a 'java/lang/UnsatisfiedLinkError'{0x0000000721224088}: Не найден указанный модуль. > (0x0000000721224088)  thrown [s\src\hotspot\share\prims\jni.cpp, line 535] Event: 19.468 Thread 0x0000020cd0267e90 Exception <a 'java/lang/UnsatisfiedLinkError'{0x0000000721224960}: Не найден указанный модуль. > (0x0000000721224960)  thrown [s\src\hotspot\share\prims\jni.cpp, line 535] Event: 19.468 Thread 0x0000020cd0267e90 Exception <a 'java/lang/UnsatisfiedLinkError'{0x0000000721225148}: Не найден указанный модуль. > (0x0000000721225148)  thrown [s\src\hotspot\share\prims\jni.cpp, line 535] Event: 19.536 Thread 0x0000020cd0267e90 Exception <a 'java/lang/NoSuchMethodError'{0x0000000720411a08}: 'long java.lang.invoke.DirectMethodHandle$Holder.invokeInterface(java.lang.Object, java.lang.Object)'> (0x0000000720411a08)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.538 Thread 0x0000020cd0267e90 Exception <a 'java/lang/NoSuchMethodError'{0x000000072045c928}: 'java.lang.Object java.lang.invoke.DirectMethodHandle$Holder.newInvokeSpecial(java.lang.Object, long)'> (0x000000072045c928)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.562 Thread 0x0000020cd0267e90 Exception <a 'java/lang/NoSuchMethodError'{0x0000000720392d60}: 'void java.lang.invoke.DirectMethodHandle$Holder.invokeSpecial(java.lang.Object, java.lang.Object, int, long)'> (0x0000000720392d60)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] Event: 19.562 Thread 0x0000020cd0267e90 Exception <a 'java/lang/NoSuchMethodError'{0x0000000720398cc8}: 'void java.lang.invoke.DirectMethodHandle$Holder.invokeStatic(java.lang.Object, int, long)'> (0x0000000720398cc8)  thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 759] VM Operations (20 events): Event: 18.861 Executing VM operation: HandshakeAllThreads Event: 18.861 Executing VM operation: HandshakeAllThreads done Event: 18.863 Executing VM operation: HandshakeAllThreads Event: 18.863 Executing VM operation: HandshakeAllThreads done Event: 18.866 Executing VM operation: ICBufferFull Event: 18.866 Executing VM operation: ICBufferFull done Event: 18.932 Executing VM operation: HandshakeAllThreads Event: 18.932 Executing VM operation: HandshakeAllThreads done Event: 19.191 Executing VM operation: HandshakeAllThreads Event: 19.191 Executing VM operation: HandshakeAllThreads done Event: 19.192 Executing VM operation: HandshakeAllThreads Event: 19.192 Executing VM operation: HandshakeAllThreads done Event: 19.194 Executing VM operation: HandshakeAllThreads Event: 19.194 Executing VM operation: HandshakeAllThreads done Event: 19.195 Executing VM operation: HandshakeAllThreads Event: 19.195 Executing VM operation: HandshakeAllThreads done Event: 19.415 Executing VM operation: HandshakeAllThreads Event: 19.415 Executing VM operation: HandshakeAllThreads done Event: 19.552 Executing VM operation: HandshakeAllThreads Event: 19.552 Executing VM operation: HandshakeAllThreads done Events (20 events): Event: 19.401 loading class java/io/BufferedReader$1 done Event: 19.418 loading class java/util/EnumMap$Values Event: 19.418 loading class java/util/EnumMap$Values done Event: 19.418 loading class java/util/EnumMap$ValueIterator Event: 19.418 loading class java/util/EnumMap$ValueIterator done Event: 19.449 Thread 0x0000020cfde563a0 Thread added: 0x0000020cfde563a0 Event: 19.450 Thread 0x0000020cfde54a50 Thread added: 0x0000020cfde54a50 Event: 19.459 loading class jdk/internal/reflect/UnsafeStaticIntegerFieldAccessorImpl Event: 19.459 loading class jdk/internal/reflect/UnsafeStaticIntegerFieldAccessorImpl done Event: 19.496 loading class java/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask Event: 19.496 loading class java/util/concurrent/ScheduledThreadPoolExecutor$ScheduledFutureTask done Event: 19.496 Thread 0x0000020cfc616030 Thread added: 0x0000020cfc616030 Event: 19.497 Thread 0x0000020cff707a50 Thread added: 0x0000020cff707a50 Event: 19.498 loading class java/time/OffsetDateTime Event: 19.498 loading class java/time/OffsetDateTime done Event: 19.507 Thread 0x0000020cfc6146e0 Thread added: 0x0000020cfc6146e0 Event: 19.551 loading class sun/nio/fs/WindowsFileAttributeViews$Dos Event: 19.551 loading class java/nio/file/attribute/DosFileAttributeView Event: 19.551 loading class java/nio/file/attribute/DosFileAttributeView done Event: 19.551 loading class sun/nio/fs/WindowsFileAttributeViews$Dos done Dynamic libraries: 0x00007ff68ccd0000 - 0x00007ff68ccde000     C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\javaw.exe 0x00007ff8e20b0000 - 0x00007ff8e22c7000     C:\Windows\SYSTEM32\ntdll.dll 0x00007ff8988c0000 - 0x00007ff8988d9000     C:\Program Files\Avast Software\Avast\aswhook.dll 0x00007ff8e0340000 - 0x00007ff8e0404000     C:\Windows\System32\KERNEL32.DLL 0x00007ff8df940000 - 0x00007ff8dfce6000     C:\Windows\System32\KERNELBASE.dll 0x00007ff8df7f0000 - 0x00007ff8df901000     C:\Windows\System32\ucrtbase.dll 0x00007ff8daa20000 - 0x00007ff8daa3b000     C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\VCRUNTIME140.dll 0x00007ff8daa90000 - 0x00007ff8daaa7000     C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\jli.dll 0x00007ff8e12a0000 - 0x00007ff8e144e000     C:\Windows\System32\USER32.dll 0x00007ff8df910000 - 0x00007ff8df936000     C:\Windows\System32\win32u.dll 0x00007ff8e1150000 - 0x00007ff8e1179000     C:\Windows\System32\GDI32.dll 0x00007ff8ccfd0000 - 0x00007ff8cd263000     C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.2506_none_270c5ae97388e100\COMCTL32.dll 0x00007ff8df420000 - 0x00007ff8df538000     C:\Windows\System32\gdi32full.dll 0x00007ff8dfcf0000 - 0x00007ff8dfd8a000     C:\Windows\System32\msvcp_win.dll 0x00007ff8e1cb0000 - 0x00007ff8e1d57000     C:\Windows\System32\msvcrt.dll 0x00007ff8e1c00000 - 0x00007ff8e1c31000     C:\Windows\System32\IMM32.DLL 0x00007ff8daac0000 - 0x00007ff8daacc000     C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\vcruntime140_1.dll 0x00007ff8da990000 - 0x00007ff8daa1d000     C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\msvcp140.dll 0x00007ff8861e0000 - 0x00007ff886e45000     C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\server\jvm.dll 0x00007ff8e1e60000 - 0x00007ff8e1f11000     C:\Windows\System32\ADVAPI32.dll 0x00007ff8e14f0000 - 0x00007ff8e1595000     C:\Windows\System32\sechost.dll 0x00007ff8e1180000 - 0x00007ff8e1297000     C:\Windows\System32\RPCRT4.dll 0x00007ff8d7d10000 - 0x00007ff8d7d44000     C:\Windows\SYSTEM32\WINMM.dll 0x00007ff8c71a0000 - 0x00007ff8c71a9000     C:\Windows\SYSTEM32\WSOCK32.dll 0x00007ff8df2f0000 - 0x00007ff8df33d000     C:\Windows\SYSTEM32\POWRPROF.dll 0x00007ff8d72e0000 - 0x00007ff8d72ea000     C:\Windows\SYSTEM32\VERSION.dll 0x00007ff8e04c0000 - 0x00007ff8e0531000     C:\Windows\System32\WS2_32.dll 0x00007ff8df2d0000 - 0x00007ff8df2e3000     C:\Windows\SYSTEM32\UMPDC.dll 0x00007ff8de3f0000 - 0x00007ff8de408000     C:\Windows\SYSTEM32\kernel.appcore.dll 0x00007ff8daa70000 - 0x00007ff8daa7a000     C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\jimage.dll 0x00007ff8d4aa0000 - 0x00007ff8d4cd3000     C:\Windows\SYSTEM32\DBGHELP.DLL 0x00007ff8dfe50000 - 0x00007ff8e01d9000     C:\Windows\System32\combase.dll 0x00007ff8e1b20000 - 0x00007ff8e1bf7000     C:\Windows\System32\OLEAUT32.dll 0x00007ff8d4a60000 - 0x00007ff8d4a92000     C:\Windows\SYSTEM32\dbgcore.DLL 0x00007ff8df770000 - 0x00007ff8df7ea000     C:\Windows\System32\bcryptPrimitives.dll 0x00007ff8da960000 - 0x00007ff8da985000     C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\java.dll 0x00007ff8da940000 - 0x00007ff8da958000     C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\zip.dll 0x00007ff8d7dd0000 - 0x00007ff8d7ea7000     C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\jsvml.dll 0x00007ff8e0740000 - 0x00007ff8e0f9a000     C:\Windows\System32\SHELL32.dll 0x00007ff8dd2f0000 - 0x00007ff8ddbe6000     C:\Windows\SYSTEM32\windows.storage.dll 0x00007ff8dd1b0000 - 0x00007ff8dd2ee000     C:\Windows\SYSTEM32\wintypes.dll 0x00007ff8e0240000 - 0x00007ff8e0333000     C:\Windows\System32\SHCORE.dll 0x00007ff8e15a0000 - 0x00007ff8e15fe000     C:\Windows\System32\shlwapi.dll 0x00007ff8df350000 - 0x00007ff8df376000     C:\Windows\SYSTEM32\profapi.dll 0x00007ff8da920000 - 0x00007ff8da939000     C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\net.dll 0x00007ff8d9130000 - 0x00007ff8d9267000     C:\Windows\SYSTEM32\WINHTTP.dll 0x00007ff8de870000 - 0x00007ff8de8d9000     C:\Windows\system32\mswsock.dll 0x00007ff8d9870000 - 0x00007ff8d9886000     C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\nio.dll 0x00007ff8d9860000 - 0x00007ff8d9870000     C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\verify.dll 0x00007ff8d8b50000 - 0x00007ff8d8b59000     C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\management.dll 0x00007ff8d7290000 - 0x00007ff8d729b000     C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\management_ext.dll 0x00007ff8e14e0000 - 0x00007ff8e14e8000     C:\Windows\System32\PSAPI.DLL 0x00007ff8b77b0000 - 0x00007ff8b77c7000     C:\Windows\system32\napinsp.dll 0x00007ff8b77d0000 - 0x00007ff8b77eb000     C:\Windows\system32\pnrpnsp.dll 0x00007ff8ddec0000 - 0x00007ff8ddfb9000     C:\Windows\SYSTEM32\DNSAPI.dll 0x00007ff8dde50000 - 0x00007ff8dde7d000     C:\Windows\SYSTEM32\IPHLPAPI.DLL 0x00007ff8e1140000 - 0x00007ff8e1149000     C:\Windows\System32\NSI.dll 0x00007ff8b77f0000 - 0x00007ff8b7801000     C:\Windows\System32\winrnr.dll 0x00007ff8d7f70000 - 0x00007ff8d7f85000     C:\Windows\system32\wshbth.dll 0x00007ff8b7810000 - 0x00007ff8b7831000     C:\Windows\system32\nlansp_c.dll 0x00007ff8d7420000 - 0x00007ff8d742a000     C:\Windows\System32\rasadhlp.dll 0x00007ff8d7c00000 - 0x00007ff8d7c83000     C:\Windows\System32\fwpuclnt.dll 0x00007ff8deae0000 - 0x00007ff8deafb000     C:\Windows\SYSTEM32\CRYPTSP.dll 0x00007ff8de340000 - 0x00007ff8de375000     C:\Windows\system32\rsaenh.dll 0x00007ff8de970000 - 0x00007ff8de99c000     C:\Windows\SYSTEM32\USERENV.dll 0x00007ff8decc0000 - 0x00007ff8dece8000     C:\Windows\SYSTEM32\bcrypt.dll 0x00007ff8dead0000 - 0x00007ff8deadc000     C:\Windows\SYSTEM32\CRYPTBASE.dll 0x00007ff8d9110000 - 0x00007ff8d9129000     C:\Windows\SYSTEM32\dhcpcsvc6.DLL 0x00007ff8d9060000 - 0x00007ff8d907f000     C:\Windows\SYSTEM32\dhcpcsvc.DLL 0x00007ff8c6f60000 - 0x00007ff8c6fa5000     C:\Users\timur\AppData\Local\Temp\jna-110364981\jna12242003069085804279.dll 0x00007ff8e0fa0000 - 0x00007ff8e1140000     C:\Windows\System32\Ole32.dll 0x00007ff8e0410000 - 0x00007ff8e04c0000     C:\Windows\System32\clbcatq.dll 0x00007ff8ce290000 - 0x00007ff8ce2ad000     C:\Windows\SYSTEM32\amsi.dll 0x00007ff8ce020000 - 0x00007ff8ce107000     C:\Program Files\Avast Software\Avast\aswAMSI.dll 0x00007ff8b8c30000 - 0x00007ff8b8c80000     C:\Windows\SYSTEM32\Pdh.dll 0x00007ff8c0d60000 - 0x00007ff8c0d70000     C:\Windows\System32\perfos.dll 0x00007ff8dc9c0000 - 0x00007ff8dc9d0000     C:\Windows\SYSTEM32\pfclient.dll 0x00007ff8c36a0000 - 0x00007ff8c3715000     C:\Users\timur\AppData\Local\Temp\lwjgltimur\3.3.1-build-7\lwjgl.dll 0x00007ff8c3100000 - 0x00007ff8c3359000     C:\Users\timur\AppData\Local\Temp\lwjgltimur\3.3.1-build-7\jemalloc.dll 0x00007ff8d7280000 - 0x00007ff8d728e000     C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\sunmscapi.dll 0x00007ff8df600000 - 0x00007ff8df766000     C:\Windows\System32\CRYPT32.dll 0x00007ff8dec90000 - 0x00007ff8decbd000     C:\Windows\SYSTEM32\ncrypt.dll 0x00007ff8dec50000 - 0x00007ff8dec87000     C:\Windows\SYSTEM32\NTASN1.dll 0x00007ff8c3570000 - 0x00007ff8c35d1000     C:\Users\timur\AppData\Local\Temp\lwjgltimur\3.3.1-build-7\glfw.dll 0x00007ff8c34d0000 - 0x00007ff8c356c000     C:\Users\timur\AppData\Local\Temp\jna-110364981\jna6342806025602674356.dll 0x00007ff8c6f10000 - 0x00007ff8c6f56000     C:\Windows\SYSTEM32\dinput8.dll 0x00007ff8d6fc0000 - 0x00007ff8d6fd1000     C:\Windows\SYSTEM32\xinput1_4.dll 0x00007ff8deff0000 - 0x00007ff8df03e000     C:\Windows\SYSTEM32\cfgmgr32.dll 0x00007ff8df040000 - 0x00007ff8df06c000     C:\Windows\SYSTEM32\DEVOBJ.dll 0x00007ff8dcb40000 - 0x00007ff8dcb6b000     C:\Windows\SYSTEM32\dwmapi.dll 0x00007ff8c72f0000 - 0x00007ff8c74fa000     C:\Windows\SYSTEM32\inputhost.dll 0x00007ff8dc430000 - 0x00007ff8dc563000     C:\Windows\SYSTEM32\CoreMessaging.dll 0x00007ff8dc8b0000 - 0x00007ff8dc95b000     C:\Windows\system32\uxtheme.dll 0x00007ff8e1f20000 - 0x00007ff8e2070000     C:\Windows\System32\MSCTF.dll 0x00007ff8c22b0000 - 0x00007ff8c23b0000     C:\Windows\SYSTEM32\opengl32.dll 0x00007ff8c3670000 - 0x00007ff8c369d000     C:\Windows\SYSTEM32\GLU32.dll 0x00007ff8dc9d0000 - 0x00007ff8dca06000     C:\Windows\SYSTEM32\dxcore.dll 0x00007ff8d90a0000 - 0x00007ff8d90ea000     C:\Windows\SYSTEM32\directxdatabasehelper.dll 0x00007ff8c2280000 - 0x00007ff8c22ad000     C:\Windows\System32\DriverStore\FileRepository\u0383113.inf_amd64_9242eb4af0e982f6\B383140\atig6pxx.dll 0x00007ff86a480000 - 0x00007ff86de26000     C:\Windows\System32\DriverStore\FileRepository\u0383113.inf_amd64_9242eb4af0e982f6\B383140\atio6axx.dll 0x00007ff8e1600000 - 0x00007ff8e1a74000     C:\Windows\System32\SETUPAPI.dll 0x00007ff8dfd90000 - 0x00007ff8dfdfb000     C:\Windows\System32\WINTRUST.dll 0x00007ff8defd0000 - 0x00007ff8defe2000     C:\Windows\SYSTEM32\MSASN1.dll dbghelp: loaded successfully - version: 4.0.5 - missing functions: none symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin;C:\Windows\SYSTEM32;C:\Program Files\Avast Software\Avast;C:\Windows\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.22621.2506_none_270c5ae97388e100;C:\Users\timur\curseforge\minecraft\Install\runtime\java-runtime-gamma\windows-x64\java-runtime-gamma\bin\server;C:\Users\timur\AppData\Local\Temp\jna-110364981;C:\Users\timur\AppData\Local\Temp\lwjgltimur\3.3.1-build-7;C:\Windows\System32\DriverStore\FileRepository\u0383113.inf_amd64_9242eb4af0e982f6\B383140 VM Arguments: jvm_args: -XX:HeapDumpPath=MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump -Dos.name=Windows 10 -Dos.version=10.0 -Xss1M -Djava.library.path=C:\Users\timur\curseforge\minecraft\Install\bin\073f0576cb48545209ccc2317eb4040d72e0ad50 -Dminecraft.launcher.brand=minecraft-launcher -Dminecraft.launcher.version=2.24.17 -Djava.net.preferIPv6Addresses=system -DignoreList=bootstraplauncher,securejarhandler,asm-commons,asm-util,asm-analysis,asm-tree,asm,JarJarFileSystems,client-extra,fmlcore,javafmllanguage,lowcodelanguage,mclanguage,forge-,forge-43.3.7.jar,forge-43.3.7 -DmergeModules=jna-5.10.0.jar,jna-platform-5.10.0.jar -DlibraryDirectory=C:\Users\timur\curseforge\minecraft\Install\libraries --module-path=C:\Users\timur\curseforge\minecraft\Install\libraries/cpw/mods/bootstraplauncher/1.1.2/bootstraplauncher-1.1.2.jar;C:\Users\timur\curseforge\minecraft\Install\libraries/cpw/mods/securejarhandler/2.1.4/securejarhandler-2.1.4.jar;C:\Users\timur\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-commons/9.5/asm-commons-9.5.jar;C:\Users\timur\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar;C:\Users\timur\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar;C:\Users\timur\curseforge\minecraft\Install\libraries/org/ow2/asm/asm-tree/9.5/asm-tree-9.5.jar;C:\Users\timur\curseforge\minecraft\Install\libraries/org/ow2/asm/asm/9.5/asm-9.5.jar;C:\Users\timur\curseforge\minecraft\Install\libraries/net/minecraftforge/JarJarFileSystems/0.3.16/JarJarFileSystems-0.3.16.jar --add-modules=ALL-MODULE-PATH --add-opens=java.base/java.util.jar=cpw.mods.securejarhandler --add-opens=java.base/java.lang.invoke=cpw.mods.securejarhandler --add-exports=java.base/sun.security.util=cpw.mods.securejarhandler --add-exports=jdk.naming.dns/com.sun.jndi.dns=java.naming -Xmx4096m -Xms256m -Dminecraft.applet.TargetDirectory=C:\Users\timur\curseforge\minecraft\Instances\Freshcraft -Dfml.ignorePatchDiscrepancies=true -Dfml.ignoreInvalidMinecraftCertificates=true -Duser.language=en -Duser.country=US -DlibraryDirectory=C:\Users\timur\curseforge\minecraft\Install\libraries -Dlog4j.configurationFile=C:\Users\timur\curseforge\minecraft\Install\assets\log_configs\client-1.12.xml  java_command: cpw.mods.bootstraplauncher.BootstrapLauncher --username Goose3310 --version forge-43.3.7 --gameDir C:\Users\timur\curseforge\minecraft\Instances\Freshcraft --assetsDir C:\Users\timur\curseforge\minecraft\Install\assets --assetIndex 1.19 --uuid e47fa913e3264c5f9b86d73eb58f9c8b -_Oo2rwbKG_JcDj_xWnruMnKs --clientId M2RhYTgzNzMtZWZjZi00YThlLTg3MDEtNjRkZmQxYWYwMGM0 --xuid 2535419973866444 --userType msa --versionType release --width 1024 --height 768 --launchTarget forgeclient --fml.forgeVersion 43.3.7 --fml.mcVersion 1.19.2 --fml.forgeGroup net.minecraftforge --fml.mcpVersion 20220805.130853 java_class_path (initial): C:\Users\timur\curseforge\minecraft\Install\libraries\cpw\mods\securejarhandler\2.1.4\securejarhandler-2.1.4.jar;C:\Users\timur\curseforge\minecraft\Install\libraries\org\ow2\asm\asm\9.5\asm-9.5.jar;C:\Users\timur\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-commons\9.5\asm-commons-9.5.jar;C:\Users\timur\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-tree\9.5\asm-tree-9.5.jar;C:\Users\timur\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-util\9.5\asm-util-9.5.jar;C:\Users\timur\curseforge\minecraft\Install\libraries\org\ow2\asm\asm-analysis\9.5\asm-analysis-9.5.jar;C:\Users\timur\curseforge\minecraft\Install\libraries\net\minecraftforge\accesstransformers\8.0.4\accesstransformers-8.0.4.jar;C:\Users\timur\curseforge\minecraft\Install\libraries\org\antlr\antlr4-runtime\4.9.1\antlr4-runtime-4.9.1.jar;C:\Users\timur\curseforge\minecraft\Install\libraries\net\minecraftforge\eventbus\6.0.3\eventbus-6.0.3.jar;C:\Users\timur\curseforge\minecraft\Install\libraries\net\minecraftforge\forgespi\6.0.0\forgespi-6.0.0.jar;C:\Users\timur\curseforge\minecraft\Install\libraries\net\minecraftforge\coremods\5.0.1\coremods-5.0.1.jar;C:\Users\timur\curseforge\minecraft\Install\libraries\cpw\mods\modlauncher\10.0.8\modlauncher-10.0.8.jar;C:\Users\timur\curseforge\minecraft\Install\libraries\net\minecraftforge\unsafe\0.2.0\unsafe-0.2.0.jar;C:\Users\timur\curseforge\minecraft\Install\libraries\com\electronwill\night-config\core\3.6.4\core-3.6.4.jar;C:\Users\timur\curseforge\minecraft\Install\libraries\com\electronwill\night-config\toml\3.6.4\toml-3.6.4.jar;C:\Users\timur\curseforge\minecraft\Install\libraries\org\apache\maven\maven-artifact\3.8.5\maven-artifact-3.8.5.jar;C:\Users\timur\curseforge\minecraft\Install\libraries\net\jodah\typetools\0.8.3\typetools-0.8.3.jar;C:\Users\timur\curseforge\minecraft\Install\libraries\net\minecrell\terminalconsoleappender\1.2.0\terminalconsoleappender-1.2.0.jar;C:\Users\timur\curseforge\minecraft\Ins Launcher Type: SUN_STANDARD [Global flags]      intx CICompilerCount                          = 12                                        {product} {ergonomic}      uint ConcGCThreads                            = 3                                         {product} {ergonomic}      uint G1ConcRefinementThreads                  = 13                                        {product} {ergonomic}    size_t G1HeapRegionSize                         = 2097152                                   {product} {ergonomic}     uintx GCDrainStackTargetSize                   = 64                                        {product} {ergonomic}     ccstr HeapDumpPath                             = MojangTricksIntelDriversForPerformance_javaw.exe_minecraft.exe.heapdump         {manageable} {command line}    size_t InitialHeapSize                          = 268435456                                 {product} {command line}    size_t MarkStackSize                            = 4194304                                   {product} {ergonomic}    size_t MaxHeapSize                              = 4294967296                                {product} {command line}    size_t MaxNewSize                               = 2575302656                                {product} {ergonomic}    size_t MinHeapDeltaBytes                        = 2097152                                   {product} {ergonomic}    size_t MinHeapSize                              = 268435456                                 {product} {command line}     uintx NonNMethodCodeHeapSize                   = 7602480                                {pd product} {ergonomic}     uintx NonProfiledCodeHeapSize                  = 122027880                              {pd product} {ergonomic}     uintx ProfiledCodeHeapSize                     = 122027880                              {pd product} {ergonomic}     uintx ReservedCodeCacheSize                    = 251658240                              {pd product} {ergonomic}      bool SegmentedCodeCache                       = true                                      {product} {ergonomic}    size_t SoftMaxHeapSize                          = 4294967296                             {manageable} {ergonomic}      intx ThreadStackSize                          = 1024                                   {pd product} {command line}      bool UseCompressedClassPointers               = true                           {product lp64_product} {ergonomic}      bool UseCompressedOops                        = true                           {product lp64_product} {ergonomic}      bool UseG1GC                                  = true                                      {product} {ergonomic}      bool UseLargePagesIndividualAllocation        = false                                  {pd product} {ergonomic} Logging: Log output configuration:  #0: stdout all=warning uptime,level,tags  #1: stderr all=off uptime,level,tags Environment Variables: PATH=C:\Program Files (x86)\Common Files\Oracle\Java\java8path;C:\Program Files (x86)\Common Files\Oracle\Java\javapath;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Windows\System32\OpenSSH\;C:\Program Files\dotnet\;C:\Program Files\Common Files\Autodesk Shared\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files (x86)\Common Files\Acronis\SnapAPI\;C:\Program Files (x86)\NVIDIA Corporation\PhysX\Common;C:\Program Files\NVIDIA Corporation\NVIDIA NvDLISR;C:\Users\timur\AppData\Local\Microsoft\WindowsApps; USERNAME=timur OS=Windows_NT PROCESSOR_IDENTIFIER=AMD64 Family 25 Model 68 Stepping 1, AuthenticAMD TMP=C:\Users\timur\AppData\Local\Temp TEMP=C:\Users\timur\AppData\Local\Temp ---------------  S Y S T E M  --------------- OS:  Windows 11 , 64 bit Build 22621 (10.0.22621.2506) OS uptime: 0 days 0:21 hours Hyper-V role detected CPU: total 16 (initial active 16) (16 cores per cpu, 2 threads per core) family 25 model 68 stepping 1 microcode 0x0, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4a, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, clmul, bmi1, bmi2, adx, sha, fma, vzeroupper, clflush, clflushopt, hv Processor Information for all 16 processors :   Max Mhz: 3201, Current Mhz: 3201, Mhz Limit: 3201 Memory: 4k page, system-wide physical 15613M (8418M free) TotalPageFile size 20477M (AvailPageFile size 11102M) current process WorkingSet (physical memory assigned to process): 1422M, peak: 1422M current process commit charge ("private bytes"): 1500M, peak: 1520M vm_info: OpenJDK 64-Bit Server VM (17.0.8+7-LTS) for windows-amd64 JRE (17.0.8+7-LTS), built on Jul  7 2023 17:21:55 by "MicrosoftCorporation" with MS VC++ 16.10 / 16.11 (VS2019) END.  
  • Topics

×
×
  • Create New...

Important Information

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