lines = Files.readAllLines(file);
- String content = String.join("\n", lines);
-
- if (content.contains("---------- 媛쒖젙?대젰 ----------") || content.contains("@className")) {
- System.out.println("Skipping (already has javadoc): " + file);
- return;
- }
-
- String packageName = "unknown";
- String className = "unknown";
-
- Matcher pkgMatcher = Pattern.compile("(?m)^\\s*package\\s+([\\w\\.]+)\\s*;").matcher(content);
- if (pkgMatcher.find()) {
- packageName = pkgMatcher.group(1);
- }
-
- int classDeclIdx = -1;
- for (int i = 0; i < lines.size(); i++) {
- String line = lines.get(i);
- Matcher classMatcher = Pattern.compile("^\\s*(?:public\\s+|protected\\s+|private\\s+|abstract\\s+|final\\s+|static\\s+)*(class|interface|enum|record)\\s+(\\w+)").matcher(line);
- if (classMatcher.find()) {
- classDeclIdx = i;
- className = classMatcher.group(2);
- break;
- }
- }
-
- if (classDeclIdx == -1) {
- System.out.println("Skipping (no class declaration found): " + file);
- return;
- }
-
- int insertIdx = classDeclIdx;
- for (int i = classDeclIdx - 1; i >= 0; i--) {
- String line = lines.get(i).trim();
- if (line.isEmpty()) {
- continue;
- }
- if (line.startsWith("@")) {
- insertIdx = i;
- } else if (line.startsWith("//") || line.startsWith("/*") || line.startsWith("*")) {
- break;
- } else {
- break;
- }
- }
-
- String javadoc = String.format(TEMPLATE, packageName, className);
- lines.add(insertIdx, javadoc);
-
- Files.write(file, String.join("\n", lines).getBytes("UTF-8"));
- System.out.println("Updated: " + file);
- }
-}
diff --git a/FetchTools.java b/FetchTools.java
deleted file mode 100644
index e746a08d..00000000
--- a/FetchTools.java
+++ /dev/null
@@ -1,54 +0,0 @@
-import java.net.URI;
-import java.net.http.HttpClient;
-import java.net.http.HttpRequest;
-import java.net.http.HttpResponse;
-import java.io.BufferedReader;
-import java.io.InputStreamReader;
-import java.nio.charset.StandardCharsets;
-
-public class FetchTools {
- public static void main(String[] args) throws Exception {
- HttpClient client = HttpClient.newBuilder().build();
-
- HttpRequest sseReq = HttpRequest.newBuilder()
- .uri(URI.create("https://axhubmcp.devjun.net/mcp/custom/cmm"))
- .GET()
- .build();
-
- HttpResponse sseRes = client.send(sseReq, HttpResponse.BodyHandlers.ofInputStream());
- BufferedReader reader = new BufferedReader(new InputStreamReader(sseRes.body(), StandardCharsets.UTF_8));
-
- String line;
- String postUrl = null;
- while ((line = reader.readLine()) != null) {
- if (line.startsWith("event:endpoint")) {
- String dataLine = reader.readLine(); // data:http...
- postUrl = dataLine.substring(5).trim();
- break;
- }
- }
-
- if (postUrl != null) {
- String payload = "{\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"tools/list\"}";
- HttpRequest postReq = HttpRequest.newBuilder()
- .uri(URI.create(postUrl))
- .header("Content-Type", "application/json")
- .POST(HttpRequest.BodyPublishers.ofString(payload))
- .build();
-
- client.send(postReq, HttpResponse.BodyHandlers.discarding());
-
- // Now read the rest of SSE
- while ((line = reader.readLine()) != null) {
- if (line.startsWith("event:message")) {
- String dataLine = reader.readLine();
- if (dataLine.startsWith("data:")) {
- String json = dataLine.substring(5).trim();
- System.out.println(json);
- System.exit(0);
- }
- }
- }
- }
- }
-}
diff --git a/McpBridge.java b/McpBridge.java
deleted file mode 100644
index 16542159..00000000
--- a/McpBridge.java
+++ /dev/null
@@ -1,57 +0,0 @@
-/**
- * @package io.shinhanlife
- * @className McpBridge
- * @description AX HUB 시스템 처리 클래스
- * @author 0986406
- * @create 2026.09.01
- *
- * ---------- 개정이력 ----------
- * 수정일 수정자 수정내용
- * ---------- -------- ---------------------------
- * 2026.09.01 0986406 최초생성
- *
- *
- */
-import java.io.BufferedReader;
-import java.io.InputStreamReader;
-import java.net.URI;
-import java.net.http.HttpClient;
-import java.net.http.HttpRequest;
-import java.net.http.HttpResponse;
-import java.time.Duration;
-
-public class McpBridge {
-
- public static void main(String[] args) {
- HttpClient client = HttpClient.newBuilder()
- .connectTimeout(Duration.ofSeconds(5))
- .build();
-
- try (BufferedReader reader = new BufferedReader(new InputStreamReader(System.in))) {
- String line;
- while ((line = reader.readLine()) != null) {
- line = line.trim();
- if (line.isEmpty()) continue;
-
- try {
- HttpRequest req = HttpRequest.newBuilder()
- // Spring AI MCP Server??怨듭떇 ?⑥씪 ?붾뱶?ъ씤??
- .uri(URI.create("http://localhost:8081/mcp"))
- .header("Content-Type", "application/json")
- .POST(HttpRequest.BodyPublishers.ofString(line))
- .build();
-
- HttpResponse response = client.send(req, HttpResponse.BodyHandlers.ofString());
- System.out.println(response.body());
- System.out.flush();
- } catch (Exception e) {
- // MCP ?쒖? ?먮윭 ?щ㎎?쇰줈 諛섑솚 (?꾩쓽濡?id 異붿텧 ?쒖쇅, 理쒖냼?쒖쓽 ?먮윭 ?묐떟)
- System.out.println("{\"jsonrpc\":\"2.0\",\"error\":{\"code\":-32603,\"message\":\"" + e.getMessage().replace("\"", "\\\"") + "\"}}");
- System.out.flush();
- }
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
-}
diff --git a/TestAnnotation.java b/TestAnnotation.java
deleted file mode 100644
index c9721482..00000000
--- a/TestAnnotation.java
+++ /dev/null
@@ -1,25 +0,0 @@
-import org.springframework.core.annotation.AnnotationUtils;
-import java.lang.annotation.*;
-import java.lang.reflect.Method;
-
-@Retention(RetentionPolicy.RUNTIME)
-@interface MyTool {
- String value();
-}
-
-interface MyUseCase {
- @MyTool("hello")
- void doSomething();
-}
-
-class MyUseCaseImpl implements MyUseCase {
- public void doSomething() { }
-}
-
-public class TestAnnotation {
- public static void main(String[] args) throws Exception {
- Method m = MyUseCaseImpl.class.getDeclaredMethod("doSomething");
- MyTool ann = AnnotationUtils.findAnnotation(m, MyTool.class);
- System.out.println("Annotation found: " + (ann != null ? ann.value() : "null"));
- }
-}
diff --git a/axhub-backend-main.iml b/axhub-backend-main.iml
deleted file mode 100644
index b3191859..00000000
--- a/axhub-backend-main.iml
+++ /dev/null
@@ -1,31 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-# --- Ѷ EAI/MCI IP ( ȯ) ---
-shinhan.integration.envrTypeCd=D
-shinhan.integration.eai.url=http://10.176.32.181
-shinhan.integration.internalMci.url=http://10.176.32.173
-shinhan.integration.bancaMci.url=http://10.176.32.117
-shinhan.integration.externalMci.url=http://10.176.32.176
-
-# --- Ѷ EAI/MCI IP (Ʈ ȯ) ---
-shinhan.integration.envrTypeCd=T
-shinhan.integration.eai.url=http://10.174.32.181
-shinhan.integration.internalMci.url=http://10.174.32.173
-shinhan.integration.bancaMci.url=http://10.174.32.117
-shinhan.integration.externalMci.url=http://10.176.32.177
-
-# --- Ѷ EAI/MCI IP ( ȯ) ---
-shinhan.integration.envrTypeCd=R
-shinhan.integration.eai.url=http://10.172.32.181
-shinhan.integration.internalMci.url=http://10.172.32.173
-shinhan.integration.bancaMci.url=http://10.172.32.117
-shinhan.integration.externalMci.url=http://10.172.32.177
diff --git a/build.gradle b/build.gradle
index 9d1d1d40..40e6f4db 100644
--- a/build.gradle
+++ b/build.gradle
@@ -1,113 +1,177 @@
-// 루트 Gradle 설정: 모든 Gateway/Tool Pod 모듈이 공유하는 빌드 기준을 정의합니다.
plugins {
- // Java 컴파일, 테스트, JAR 생성 기능을 제공합니다.
id 'java'
-
- // 하위 실행 모듈에서 bootRun/bootJar를 사용하기 위한 Spring Boot 플러그인입니다.
- // 루트 프로젝트에는 적용하지 않으므로 apply false를 사용합니다.
- id 'org.springframework.boot' version '3.5.11' apply false
-
- // Spring Boot / Spring AI BOM에 정의된 라이브러리 버전을 일관되게 적용합니다.
- id 'io.spring.dependency-management' version '1.1.6' apply false
+ id 'org.springframework.boot' version '3.5.11'
+ id 'io.spring.dependency-management' version '1.1.7'
}
-// 모든 모듈이 공유하는 Maven 식별자입니다.
+
+// ============================================================================
+// 전체 프로젝트 공통 Maven 좌표
+// ============================================================================
+
allprojects {
+
+ // 모든 모듈이 공유하는 Maven Group ID입니다.
group = 'io.shinhanlife'
+
+ // 모든 모듈이 공유하는 프로젝트 버전입니다.
version = '0.0.1-SNAPSHOT'
}
-// dat-gateway, dat-was-lib, dat-was-oth, dat-was-sms에 공통 적용합니다.
+
subprojects {
+
+ // 모든 하위 모듈에서 Java Plugin을 사용합니다.
apply plugin: 'java'
+
+ // Spring Boot BOM 기반 의존성 버전 관리를 위해 적용합니다.
apply plugin: 'io.spring.dependency-management'
java {
- // 프로젝트 표준 Java 버전입니다.
- sourceCompatibility = '21'
- }
-
- repositories {
- // 현재 공개 정식 라이브러리 저장소입니다.
- // 폐쇄망 적용 시 사내 Nexus Proxy URL로 교체합니다.
- mavenCentral()
- }
-
- dependencyManagement {
- imports {
- // Spring Boot 3.5.11과 호환되는 Spring/Jackson/Tomcat 등의 버전을 관리합니다.
- mavenBom org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES
-
- // Boot 3.5.11과 호환되는 Spring AI 계층은 1.1.8로 유지합니다.
- mavenBom 'org.springframework.ai:spring-ai-bom:1.1.8'
-
- // MCP Java SDK만 2.0.0으로 올립니다. Spring AI 2.x 전체 BOM은 Boot 4 기반이므로 사용하지 않습니다.
- mavenBom 'io.modelcontextprotocol.sdk:mcp-bom:2.0.0'
-
- // MCP SDK 2.0의 Jackson 2 전송 모듈이 요구하는 호환 버전입니다.
- mavenBom 'com.fasterxml.jackson:jackson-bom:2.20.1'
+ toolchain {
+ languageVersion = JavaLanguageVersion.of(21)
}
}
+ repositories {
+
+ // --------------------------------------------------------------------
+ // 외부 개발 환경
+ // --------------------------------------------------------------------
+ //
+ // 현재 인터넷이 가능한 환경에서는 Maven Central을 사용합니다.
+ //
+ // 신한라이프 폐쇄망 반입 시 아래 mavenCentral()은 제거하고
+ // 사내 Nexus Repository URL로 교체해야 합니다.
+ //
+ // 예:
+ //
+ // maven {
+ // url = uri('https://내부-Nexus/repository/maven-public/')
+ // }
+ //
+ // Nexus 인증이 필요한 경우에는 credentials 설정도 추가해야 합니다.
+ //
+ // credentials {
+ // username = findProperty('nexusUsername') ?: System.getenv('NEXUS_USERNAME')
+ // password = findProperty('nexusPassword') ?: System.getenv('NEXUS_PASSWORD')
+ // }
+ //
+ // 계정/비밀번호를 build.gradle에 직접 작성하면 안 됩니다.
+ // --------------------------------------------------------------------
+
+ mavenCentral()
+ }
+
+
+ // ========================================================================
+ // Dependency Version Management
+ // ========================================================================
+
+ dependencyManagement {
+
+ imports {
+
+ // Spring Boot 3.5.11이 검증한
+ // Spring Framework / Jackson / Tomcat / Logback /
+ // JUnit 등 주요 라이브러리 버전을 공통 관리합니다.
+ // 하위 모듈에서는 Spring Boot가 관리하는 라이브러리라면
+ // 가급적 개별 버전을 직접 지정하지 않고 사용합니다.
+ mavenBom org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES
+
+ // Gateway에서 사용하는 Spring AI 의존성 버전 관리
+ mavenBom 'org.springframework.ai:spring-ai-bom:1.1.8'
+
+ // MCP SDK 버전 관리
+ mavenBom 'io.modelcontextprotocol.sdk:mcp-bom:2.0.0'
+
+ }
+ }
+
+
+ // ========================================================================
+ // Common Dependencies
+ // ========================================================================
+
dependencies {
- // Lombok은 컴파일 시 getter/builder 등 반복 코드를 생성하며 실행 JAR에는 포함하지 않습니다.
+
+ // ====================================================================
+ // Lombok
+ // ====================================================================
+
+ // Lombok은 컴파일 시 Getter / Setter / Builder 등의
+ // 반복 코드를 생성합니다.
+ //
+ // compileOnly이므로 Runtime JAR에는 포함되지 않습니다.
compileOnly 'org.projectlombok:lombok:1.18.32'
+
+ // Lombok Annotation Processor입니다.
annotationProcessor 'org.projectlombok:lombok:1.18.32'
+
+ // 테스트 코드에서도 Lombok Annotation을 사용할 수 있도록 합니다.
testCompileOnly 'org.projectlombok:lombok:1.18.32'
+
+ // 테스트 코드용 Lombok Annotation Processor입니다.
testAnnotationProcessor 'org.projectlombok:lombok:1.18.32'
- // Tool DTO와 MCI 요청/응답 객체 간 Converter 구현체를 컴파일 시 자동 생성합니다.
+
+ // ====================================================================
+ // MapStruct
+ // ====================================================================
+
+ // Tool DTO와
+ // MCI 요청/응답 DTO 사이의 Converter 구현체를
+ // 컴파일 시 자동 생성하기 위해 사용합니다.
implementation 'org.mapstruct:mapstruct:1.5.5.Final'
+
+ // Lombok과 MapStruct Annotation Processor가
+ // 함께 동작할 때 발생할 수 있는 처리 순서 문제를 해결합니다.
annotationProcessor 'org.projectlombok:lombok-mapstruct-binding:0.2.0'
+
+ // MapStruct Converter 구현 클래스를 생성하는
+ // Annotation Processor입니다.
annotationProcessor 'org.mapstruct:mapstruct-processor:1.5.5.Final'
- // 모든 모듈의 JUnit 5 기반 테스트 공통 의존성입니다.
+
+ // ====================================================================
+ // Test
+ // ====================================================================
+
+ // Spring Boot Test / JUnit 5 / Mockito / AssertJ 등
+ // 공통 테스트 환경을 제공합니다.
testImplementation 'org.springframework.boot:spring-boot-starter-test'
+
+ // Gradle / IDE 환경에서 JUnit Platform 기반 테스트 실행을 지원합니다.
testRuntimeOnly 'org.junit.platform:junit-platform-launcher'
}
- tasks.withType(JavaCompile) {
- // 리플렉션/MCP Schema 생성 시 메서드 파라미터명을 사용할 수 있도록 보존합니다.
+
+ // ========================================================================
+ // Java Compile Options
+ // ========================================================================
+
+ tasks.withType(JavaCompile).configureEach {
+
+ // Reflection 및 MCP Schema 생성 시
+ // Java 메서드의 실제 파라미터명을 사용할 수 있도록
+ // 컴파일 결과에 파라미터 이름을 보존합니다.
options.compilerArgs << '-parameters'
- // MapStruct 구현체를 Spring Bean으로 생성해 생성자 주입으로 사용할 수 있게 합니다.
+ // MapStruct가 생성하는 Converter 구현 클래스를
+ // Spring Bean(@Component)으로 생성합니다.
+ //
+ // 이를 통해 생성자 주입 등의 방식으로 사용할 수 있습니다.
options.compilerArgs << '-Amapstruct.defaultComponentModel=spring'
}
- tasks.withType(Test) {
- // JUnit 5 테스트 플랫폼을 사용합니다.
+
+ // ========================================================================
+ // Test Configuration
+ // ========================================================================
+
+ tasks.withType(Test).configureEach {
+
+ // 모든 하위 모듈에서 JUnit 5 Platform을 사용합니다.
useJUnitPlatform()
}
}
-
-// Tool 이름 중복 검사 프로그램이 포함된 공통 라이브러리 모듈입니다.
-def toolCoreProject = project(':dat-was-lib')
-
-// 전체 Tool Pod의 @McpTool(name) 중복을 배포 산출물 생성 전에 차단합니다.
-tasks.register('validateMcpToolNames', JavaExec) {
- group = 'verification'
- description = 'Checks duplicate @McpTool names across all Tool modules before packaging.'
-
- // 검사 Runner를 실행하기 전에 dat-was-lib 클래스를 먼저 컴파일합니다.
- dependsOn toolCoreProject.tasks.named('classes')
- classpath = toolCoreProject.sourceSets.main.runtimeClasspath
- mainClass.set('io.shinhanlife.dat.lib.validation.McpToolNameValidationRunner')
- args rootProject.projectDir.absolutePath
-}
-
-tasks.register('validateToolSchemaV17', JavaExec) {
- group = 'verification'
- description = 'Validates BC-DAB-STD-003 V17 definitions for every @McpTool.'
- dependsOn toolCoreProject.tasks.named('classes')
- classpath = toolCoreProject.sourceSets.main.runtimeClasspath
- mainClass.set('io.shinhanlife.dat.lib.validation.ToolSchemaV17ValidationRunner')
- args rootProject.projectDir.absolutePath
-}
-
-subprojects {
- // 배포용 Spring Boot JAR 생성 전에 Tool 이름 중복 검증을 강제합니다.
- tasks.matching { it.name == 'bootJar' }.configureEach {
- dependsOn rootProject.tasks.named('validateMcpToolNames')
- dependsOn rootProject.tasks.named('validateToolSchemaV17')
- }
-}
diff --git a/build/reports/problems/problems-report.html b/build/reports/problems/problems-report.html
index f356a378..bc351aa7 100644
--- a/build/reports/problems/problems-report.html
+++ b/build/reports/problems/problems-report.html
@@ -650,7 +650,7 @@ code + .copy-button {
diff --git a/hs_err_pid18004.log b/hs_err_pid18004.log
deleted file mode 100644
index 2eb91d27..00000000
--- a/hs_err_pid18004.log
+++ /dev/null
@@ -1,1259 +0,0 @@
-#
-# There is insufficient memory for the Java Runtime Environment to continue.
-# Native memory allocation (malloc) failed to allocate 1476976 bytes. Error detail: Chunk::new
-# Possible reasons:
-# The system is out of physical RAM or swap space
-# This process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
-# Possible solutions:
-# Reduce memory load on the system
-# Increase physical memory or swap space
-# Check if swap backing store is full
-# Decrease Java heap size (-Xmx/-Xms)
-# Decrease number of Java threads
-# Decrease Java thread stack sizes (-Xss)
-# Set larger code cache with -XX:ReservedCodeCacheSize=
-# JVM is running with Unscaled Compressed Oops mode in which the Java heap is
-# placed in the first 4GB address space. The Java Heap base address is the
-# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
-# to set the Java Heap base and to place the Java Heap above 4GB virtual address.
-# This output file may be truncated or incomplete.
-#
-# Out of Memory Error (arena.cpp:168), pid=18004, tid=18728
-#
-# JRE version: OpenJDK Runtime Environment Temurin-21.0.11+10 (21.0.11+10) (build 21.0.11+10-LTS)
-# Java VM: OpenJDK 64-Bit Server VM Temurin-21.0.11+10 (21.0.11+10-LTS, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64)
-# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
-#
-
---------------- S U M M A R Y ------------
-
-Command Line: --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.invoke=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.prefs/java.util.prefs=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.prefs/java.util.prefs=ALL-UNNAMED --add-opens=java.base/java.nio.charset=ALL-UNNAMED --add-opens=java.base/java.net=ALL-UNNAMED --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED --add-opens=java.xml/javax.xml.namespace=ALL-UNNAMED -XX:MaxMetaspaceSize=384m -XX:+HeapDumpOnOutOfMemoryError -Xms256m -Xmx512m -Dfile.encoding=UTF-8 -Duser.country=KR -Duser.language=ko -Duser.variant -javaagent:C:\Users\jade\.gradle\wrapper\dists\gradle-8.14.3-bin\cv11ve7ro1n3o1j4so8xd9n66\gradle-8.14.3\lib\agents\gradle-instrumentation-agent-8.14.3.jar org.gradle.launcher.daemon.bootstrap.GradleDaemon 8.14.3
-
-Host: Intel(R) Core(TM) Ultra 7 255U, 14 cores, 15G, Windows 11 , 64 bit Build 26100 (10.0.26100.8875)
-Time: Wed Aug 12 13:20:58 2026 elapsed time: 21.066611 seconds (0d 0h 0m 21s)
-
---------------- T H R E A D ---------------
-
-Current thread (0x0000019766ceda10): JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=18728, stack(0x0000006c45d00000,0x0000006c45e00000) (1024K)]
-
-
-Current CompileTask:
-C2:21066 12383 ! 4 com.sun.tools.javac.parser.JavaTokenizer::readToken (1823 bytes)
-
-Stack: [0x0000006c45d00000,0x0000006c45e00000]
-Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
-V [jvm.dll+0x6d7e19]
-V [jvm.dll+0x8b5096]
-V [jvm.dll+0x8b764e]
-V [jvm.dll+0x8b7d33]
-V [jvm.dll+0x284596]
-V [jvm.dll+0xc685d]
-V [jvm.dll+0xc6da1]
-V [jvm.dll+0x3bed31]
-V [jvm.dll+0x38b2b2]
-V [jvm.dll+0x38a6fa]
-V [jvm.dll+0x24c700]
-V [jvm.dll+0x24bce0]
-V [jvm.dll+0x1cb4ae]
-V [jvm.dll+0x25baad]
-V [jvm.dll+0x25a03a]
-V [jvm.dll+0x3f868e]
-V [jvm.dll+0x85fb0d]
-V [jvm.dll+0x6d664d]
-C [ucrtbase.dll+0x2cd30]
-C [KERNEL32.DLL+0x2e957]
-C [ntdll.dll+0xaad6c]
-
-
---------------- P R O C E S S ---------------
-
-Threads class SMR info:
-_java_thread_list=0x0000019766f33870, length=216, elements={
-0x000001972d2fdd00, 0x00000197488585d0, 0x0000019748858c40, 0x000001974885e6d0,
-0x000001974885f300, 0x0000019748864120, 0x0000019748867070, 0x000001974886d920,
-0x000001974886e8a0, 0x0000019748b13090, 0x0000019748ae1130, 0x00000197636c4400,
-0x00000197636be590, 0x00000197637ec8a0, 0x0000019763796de0, 0x0000019763797450,
-0x0000019763794740, 0x000001976379c600, 0x00000197636793d0, 0x000001976367b4a0,
-0x000001976367ae10, 0x0000019763679a60, 0x000001976367a780, 0x000001976367bb30,
-0x000001976367c850, 0x000001976367a0f0, 0x00000197643a8f90, 0x00000197643a9cb0,
-0x00000197643aa340, 0x00000197643a7550, 0x00000197643ab060, 0x00000197643a7be0,
-0x00000197643a9620, 0x00000197643ab6f0, 0x00000197643a8270, 0x00000197643abd80,
-0x00000197643acaa0, 0x00000197643ade50, 0x00000197643ac410, 0x00000197643ad130,
-0x00000197643ad7c0, 0x0000019764f33130, 0x0000019764f32aa0, 0x0000019764f316f0,
-0x0000019764f31060, 0x0000019764f32410, 0x0000019764f344e0, 0x0000019764f34b70,
-0x0000019764f337c0, 0x0000019764f35200, 0x0000019764f33e50, 0x0000019764f31d80,
-0x0000019764f37ff0, 0x0000019764f365b0, 0x0000019764f35890, 0x0000019764f36c40,
-0x0000019764f35f20, 0x0000019764f37960, 0x0000019764f38680, 0x0000019764f372d0,
-0x0000019766c72830, 0x0000019766c721a0, 0x0000019766c70760, 0x0000019766c71480,
-0x0000019766c71b10, 0x0000019766c72ec0, 0x0000019766c700d0, 0x0000019766c73550,
-0x0000019766c73be0, 0x0000019766c74270, 0x0000019766c70df0, 0x0000019766c77060,
-0x0000019766c74900, 0x0000019766c74f90, 0x0000019766c75620, 0x0000019766c75cb0,
-0x0000019766c769d0, 0x0000019766c776f0, 0x000001976424af60, 0x000001976424bc80,
-0x000001976424d030, 0x000001976424a8d0, 0x000001976424a240, 0x000001976424b5f0,
-0x000001976424c310, 0x000001976424c9a0, 0x0000019764249bb0, 0x00000197642504b0,
-0x000001976424dd50, 0x000001976424e3e0, 0x0000019764250b40, 0x000001976424f100,
-0x000001976424ea70, 0x000001976424f790, 0x000001976424d6c0, 0x000001976424fe20,
-0x00000197642511d0, 0x0000019765ea0f10, 0x0000019765e9f4d0, 0x0000019765ea0880,
-0x0000019765ea1c30, 0x0000019765e9fb60, 0x0000019765ea15a0, 0x0000019765ea22c0,
-0x0000019765e9ee40, 0x0000019765ea2950, 0x0000019765ea2fe0, 0x0000019765ea3670,
-0x0000019765ea01f0, 0x0000019765ea3d00, 0x0000019765ea5740, 0x0000019765ea4390,
-0x0000019765ea4a20, 0x0000019765ea6460, 0x0000019765ea50b0, 0x0000019765ea5dd0,
-0x0000019765460fc0, 0x00000197654602a0, 0x000001976545eef0, 0x0000019765460930,
-0x000001976545f580, 0x0000019765461ce0, 0x0000019765461650, 0x000001976545e860,
-0x000001976545fc10, 0x000001976555ccd0, 0x0000019765559ee0, 0x000001976555d360,
-0x000001976555d9f0, 0x000001976555ac00, 0x000001976555b290, 0x000001976555c640,
-0x000001976555a570, 0x000001976555e080, 0x000001976555e710, 0x000001976555eda0,
-0x000001976555b920, 0x000001976555bfb0, 0x000001976555f430, 0x000001976555fac0,
-0x0000019765560150, 0x00000197655607e0, 0x0000019765560e70, 0x0000019765561500,
-0x0000019768620060, 0x00000197686206f0, 0x0000019768620d80, 0x0000019768621410,
-0x0000019768621aa0, 0x000001976861f9d0, 0x000001976861ecb0, 0x0000019768622130,
-0x00000197686227c0, 0x000001976861f340, 0x0000019768624200, 0x0000019768624890,
-0x0000019768624f20, 0x00000197686255b0, 0x00000197686262d0, 0x0000019768625c40,
-0x0000019768622e50, 0x0000019768623b70, 0x0000019765552610, 0x00000197655518f0,
-0x0000019765551f80, 0x000001976554feb0, 0x0000019765552ca0, 0x0000019765553330,
-0x0000019765550bd0, 0x00000197655539c0, 0x0000019765550540, 0x0000019765554050,
-0x00000197655546e0, 0x0000019765551260, 0x00000197655574d0, 0x00000197655567b0,
-0x0000019765555a90, 0x0000019765554d70, 0x0000019765555400, 0x0000019765556120,
-0x0000019765556e40, 0x0000019762ca73c0, 0x0000019762ca9490, 0x0000019762ca8e00,
-0x0000019762ca80e0, 0x0000019762ca9b20, 0x0000019762ca8770, 0x0000019762caa1b0,
-0x0000019762ca6d30, 0x0000019762cabbf0, 0x0000019762cacfa0, 0x0000019762cadcc0,
-0x0000019762caaed0, 0x0000019762cac280, 0x0000019762cac910, 0x0000019762cad630,
-0x0000019762caa840, 0x0000019762cae350, 0x0000019762cae9e0, 0x0000019762cab560,
-0x0000019762caf700, 0x0000019762cb0ab0, 0x0000019762cafd90, 0x0000019762caf070,
-0x0000019762cb24f0, 0x0000019762cb38a0, 0x0000019762cb2b80, 0x0000019762cb0420,
-0x0000019762cb3f30, 0x0000019762cb1140, 0x0000019762cb3210, 0x0000019762cb45c0,
-0x0000019762cb4c50, 0x0000019762cb17d0, 0x0000019762cb1e60, 0x0000019766ceda10
-}
-
-Java Threads: ( => current thread )
- 0x000001972d2fdd00 JavaThread "main" [_thread_blocked, id=26652, stack(0x0000006c3f600000,0x0000006c3f700000) (1024K)]
- 0x00000197488585d0 JavaThread "Reference Handler" daemon [_thread_blocked, id=5688, stack(0x0000006c3fe00000,0x0000006c3ff00000) (1024K)]
- 0x0000019748858c40 JavaThread "Finalizer" daemon [_thread_blocked, id=3548, stack(0x0000006c3ff00000,0x0000006c40000000) (1024K)]
- 0x000001974885e6d0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=28404, stack(0x0000006c40000000,0x0000006c40100000) (1024K)]
- 0x000001974885f300 JavaThread "Attach Listener" daemon [_thread_blocked, id=36092, stack(0x0000006c40100000,0x0000006c40200000) (1024K)]
- 0x0000019748864120 JavaThread "Service Thread" daemon [_thread_blocked, id=38436, stack(0x0000006c40200000,0x0000006c40300000) (1024K)]
- 0x0000019748867070 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=42360, stack(0x0000006c40300000,0x0000006c40400000) (1024K)]
- 0x000001974886d920 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=24572, stack(0x0000006c40400000,0x0000006c40500000) (1024K)]
- 0x000001974886e8a0 JavaThread "C1 CompilerThread0" daemon [_thread_in_vm, id=3452, stack(0x0000006c40500000,0x0000006c40600000) (1024K)]
- 0x0000019748b13090 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=5956, stack(0x0000006c40600000,0x0000006c40700000) (1024K)]
- 0x0000019748ae1130 JavaThread "Notification Thread" daemon [_thread_blocked, id=15304, stack(0x0000006c40700000,0x0000006c40800000) (1024K)]
- 0x00000197636c4400 JavaThread "Daemon health stats" [_thread_blocked, id=14084, stack(0x0000006c40e00000,0x0000006c40f00000) (1024K)]
- 0x00000197636be590 JavaThread "Incoming local TCP Connector on port 65104" [_thread_in_native, id=28588, stack(0x0000006c41200000,0x0000006c41300000) (1024K)]
- 0x00000197637ec8a0 JavaThread "Daemon periodic checks" [_thread_blocked, id=25848, stack(0x0000006c41300000,0x0000006c41400000) (1024K)]
- 0x0000019763796de0 JavaThread "Daemon" [_thread_blocked, id=6340, stack(0x0000006c41400000,0x0000006c41500000) (1024K)]
- 0x0000019763797450 JavaThread "Handler for socket connection from /127.0.0.1:65104 to /127.0.0.1:65105" [_thread_in_native, id=19652, stack(0x0000006c41500000,0x0000006c41600000) (1024K)]
- 0x0000019763794740 JavaThread "Cancel handler" [_thread_blocked, id=35376, stack(0x0000006c41600000,0x0000006c41700000) (1024K)]
- 0x000001976379c600 JavaThread "Daemon worker" [_thread_blocked, id=41132, stack(0x0000006c41700000,0x0000006c41800000) (1024K)]
- 0x00000197636793d0 JavaThread "Asynchronous log dispatcher for DefaultDaemonConnection: socket connection from /127.0.0.1:65104 to /127.0.0.1:65105" [_thread_blocked, id=25812, stack(0x0000006c41800000,0x0000006c41900000) (1024K)]
- 0x000001976367b4a0 JavaThread "Stdin handler" [_thread_blocked, id=18212, stack(0x0000006c41900000,0x0000006c41a00000) (1024K)]
- 0x000001976367ae10 JavaThread "Daemon client event forwarder" [_thread_blocked, id=36984, stack(0x0000006c41a00000,0x0000006c41b00000) (1024K)]
- 0x0000019763679a60 JavaThread "Cache worker for journal cache (C:\Users\jade\.gradle\caches\journal-1)" [_thread_blocked, id=35396, stack(0x0000006c41b00000,0x0000006c41c00000) (1024K)]
- 0x000001976367a780 JavaThread "File lock request listener" [_thread_in_native, id=13008, stack(0x0000006c41c00000,0x0000006c41d00000) (1024K)]
- 0x000001976367bb30 JavaThread "Cache worker for file hash cache (C:\Users\jade\.gradle\caches\8.14.3\fileHashes)" [_thread_blocked, id=5616, stack(0x0000006c41d00000,0x0000006c41e00000) (1024K)]
- 0x000001976367c850 JavaThread "Cache worker for file hash cache (C:\eGovFrameDev-4.3.1-64bit\workspace-egov\axhub-backend-main\.gradle\8.14.3\fileHashes)" [_thread_blocked, id=14828, stack(0x0000006c42200000,0x0000006c42300000) (1024K)]
- 0x000001976367a0f0 JavaThread "Cache worker for Build Output Cleanup Cache (C:\eGovFrameDev-4.3.1-64bit\workspace-egov\axhub-backend-main\.gradle\buildOutputCleanup)" [_thread_blocked, id=10652, stack(0x0000006c42300000,0x0000006c42400000) (1024K)]
- 0x00000197643a8f90 JavaThread "File lock release action executor" [_thread_blocked, id=38900, stack(0x0000006c42400000,0x0000006c42500000) (1024K)]
- 0x00000197643a9cb0 JavaThread "File watcher server" daemon [_thread_in_native, id=42244, stack(0x0000006c42500000,0x0000006c42600000) (1024K)]
- 0x00000197643aa340 JavaThread "File watcher consumer" daemon [_thread_blocked, id=27532, stack(0x0000006c42600000,0x0000006c42700000) (1024K)]
- 0x00000197643a7550 JavaThread "jar transforms" [_thread_blocked, id=25220, stack(0x0000006c41e00000,0x0000006c41f00000) (1024K)]
- 0x00000197643ab060 JavaThread "jar transforms Thread 2" [_thread_blocked, id=42496, stack(0x0000006c42700000,0x0000006c42800000) (1024K)]
- 0x00000197643a7be0 JavaThread "Cache worker for checksums cache (C:\eGovFrameDev-4.3.1-64bit\workspace-egov\axhub-backend-main\.gradle\8.14.3\checksums)" [_thread_blocked, id=33648, stack(0x0000006c42800000,0x0000006c42900000) (1024K)]
- 0x00000197643a9620 JavaThread "Cache worker for file content cache (C:\Users\jade\.gradle\caches\8.14.3\fileContent)" [_thread_blocked, id=37044, stack(0x0000006c42900000,0x0000006c42a00000) (1024K)]
- 0x00000197643ab6f0 JavaThread "Cache worker for cache directory md-supplier (C:\Users\jade\.gradle\caches\8.14.3\md-supplier)" [_thread_blocked, id=18648, stack(0x0000006c42a00000,0x0000006c42b00000) (1024K)]
- 0x00000197643a8270 JavaThread "Cache worker for cache directory md-rule (C:\Users\jade\.gradle\caches\8.14.3\md-rule)" [_thread_blocked, id=14320, stack(0x0000006c42c00000,0x0000006c42d00000) (1024K)]
- 0x00000197643abd80 JavaThread "jar transforms Thread 3" [_thread_blocked, id=22844, stack(0x0000006c42d00000,0x0000006c42e00000) (1024K)]
- 0x00000197643acaa0 JavaThread "Unconstrained build operations" [_thread_blocked, id=33384, stack(0x0000006c42e00000,0x0000006c42f00000) (1024K)]
- 0x00000197643ade50 JavaThread "Unconstrained build operations Thread 2" [_thread_blocked, id=19536, stack(0x0000006c42f00000,0x0000006c43000000) (1024K)]
- 0x00000197643ac410 JavaThread "Unconstrained build operations Thread 3" [_thread_blocked, id=3832, stack(0x0000006c43000000,0x0000006c43100000) (1024K)]
- 0x00000197643ad130 JavaThread "Unconstrained build operations Thread 4" [_thread_blocked, id=29872, stack(0x0000006c43100000,0x0000006c43200000) (1024K)]
- 0x00000197643ad7c0 JavaThread "Unconstrained build operations Thread 5" [_thread_blocked, id=21800, stack(0x0000006c43200000,0x0000006c43300000) (1024K)]
- 0x0000019764f33130 JavaThread "Unconstrained build operations Thread 6" [_thread_blocked, id=41032, stack(0x0000006c43300000,0x0000006c43400000) (1024K)]
- 0x0000019764f32aa0 JavaThread "Unconstrained build operations Thread 7" [_thread_blocked, id=10984, stack(0x0000006c43400000,0x0000006c43500000) (1024K)]
- 0x0000019764f316f0 JavaThread "Unconstrained build operations Thread 8" [_thread_blocked, id=13604, stack(0x0000006c43500000,0x0000006c43600000) (1024K)]
- 0x0000019764f31060 JavaThread "Unconstrained build operations Thread 9" [_thread_blocked, id=5564, stack(0x0000006c43600000,0x0000006c43700000) (1024K)]
- 0x0000019764f32410 JavaThread "Unconstrained build operations Thread 10" [_thread_blocked, id=31840, stack(0x0000006c43700000,0x0000006c43800000) (1024K)]
- 0x0000019764f344e0 JavaThread "Unconstrained build operations Thread 11" [_thread_blocked, id=13800, stack(0x0000006c43800000,0x0000006c43900000) (1024K)]
- 0x0000019764f34b70 JavaThread "Unconstrained build operations Thread 12" [_thread_blocked, id=23256, stack(0x0000006c43900000,0x0000006c43a00000) (1024K)]
- 0x0000019764f337c0 JavaThread "Unconstrained build operations Thread 13" [_thread_blocked, id=18692, stack(0x0000006c43a00000,0x0000006c43b00000) (1024K)]
- 0x0000019764f35200 JavaThread "Unconstrained build operations Thread 14" [_thread_blocked, id=22600, stack(0x0000006c43b00000,0x0000006c43c00000) (1024K)]
- 0x0000019764f33e50 JavaThread "Unconstrained build operations Thread 15" [_thread_blocked, id=39056, stack(0x0000006c43c00000,0x0000006c43d00000) (1024K)]
- 0x0000019764f31d80 JavaThread "Unconstrained build operations Thread 16" [_thread_blocked, id=6824, stack(0x0000006c43d00000,0x0000006c43e00000) (1024K)]
- 0x0000019764f37ff0 JavaThread "Unconstrained build operations Thread 17" [_thread_blocked, id=27888, stack(0x0000006c43e00000,0x0000006c43f00000) (1024K)]
- 0x0000019764f365b0 JavaThread "Unconstrained build operations Thread 18" [_thread_blocked, id=25556, stack(0x0000006c43f00000,0x0000006c44000000) (1024K)]
- 0x0000019764f35890 JavaThread "Unconstrained build operations Thread 19" [_thread_blocked, id=35268, stack(0x0000006c44000000,0x0000006c44100000) (1024K)]
- 0x0000019764f36c40 JavaThread "Unconstrained build operations Thread 20" [_thread_blocked, id=27712, stack(0x0000006c44100000,0x0000006c44200000) (1024K)]
- 0x0000019764f35f20 JavaThread "Unconstrained build operations Thread 21" [_thread_blocked, id=29132, stack(0x0000006c44200000,0x0000006c44300000) (1024K)]
- 0x0000019764f37960 JavaThread "Unconstrained build operations Thread 22" [_thread_blocked, id=28660, stack(0x0000006c44300000,0x0000006c44400000) (1024K)]
- 0x0000019764f38680 JavaThread "Unconstrained build operations Thread 23" [_thread_blocked, id=14040, stack(0x0000006c44400000,0x0000006c44500000) (1024K)]
- 0x0000019764f372d0 JavaThread "Unconstrained build operations Thread 24" [_thread_blocked, id=11100, stack(0x0000006c44500000,0x0000006c44600000) (1024K)]
- 0x0000019766c72830 JavaThread "Unconstrained build operations Thread 25" [_thread_blocked, id=43464, stack(0x0000006c44600000,0x0000006c44700000) (1024K)]
- 0x0000019766c721a0 JavaThread "Unconstrained build operations Thread 26" [_thread_blocked, id=35696, stack(0x0000006c44700000,0x0000006c44800000) (1024K)]
- 0x0000019766c70760 JavaThread "Unconstrained build operations Thread 27" [_thread_blocked, id=4244, stack(0x0000006c44800000,0x0000006c44900000) (1024K)]
- 0x0000019766c71480 JavaThread "Unconstrained build operations Thread 28" [_thread_blocked, id=38680, stack(0x0000006c44900000,0x0000006c44a00000) (1024K)]
- 0x0000019766c71b10 JavaThread "Unconstrained build operations Thread 29" [_thread_blocked, id=14712, stack(0x0000006c44a00000,0x0000006c44b00000) (1024K)]
- 0x0000019766c72ec0 JavaThread "Unconstrained build operations Thread 30" [_thread_blocked, id=12956, stack(0x0000006c44b00000,0x0000006c44c00000) (1024K)]
- 0x0000019766c700d0 JavaThread "Unconstrained build operations Thread 31" [_thread_blocked, id=21900, stack(0x0000006c44c00000,0x0000006c44d00000) (1024K)]
- 0x0000019766c73550 JavaThread "Unconstrained build operations Thread 32" [_thread_blocked, id=39536, stack(0x0000006c44d00000,0x0000006c44e00000) (1024K)]
- 0x0000019766c73be0 JavaThread "Unconstrained build operations Thread 33" [_thread_blocked, id=13552, stack(0x0000006c44e00000,0x0000006c44f00000) (1024K)]
- 0x0000019766c74270 JavaThread "Unconstrained build operations Thread 34" [_thread_blocked, id=19660, stack(0x0000006c44f00000,0x0000006c45000000) (1024K)]
- 0x0000019766c70df0 JavaThread "Unconstrained build operations Thread 35" [_thread_blocked, id=26292, stack(0x0000006c45000000,0x0000006c45100000) (1024K)]
- 0x0000019766c77060 JavaThread "Unconstrained build operations Thread 36" [_thread_blocked, id=20724, stack(0x0000006c45100000,0x0000006c45200000) (1024K)]
- 0x0000019766c74900 JavaThread "Unconstrained build operations Thread 37" [_thread_blocked, id=42852, stack(0x0000006c45200000,0x0000006c45300000) (1024K)]
- 0x0000019766c74f90 JavaThread "Unconstrained build operations Thread 38" [_thread_blocked, id=21288, stack(0x0000006c45300000,0x0000006c45400000) (1024K)]
- 0x0000019766c75620 JavaThread "Unconstrained build operations Thread 39" [_thread_blocked, id=36444, stack(0x0000006c45400000,0x0000006c45500000) (1024K)]
- 0x0000019766c75cb0 JavaThread "Memory manager" [_thread_blocked, id=28284, stack(0x0000006c45500000,0x0000006c45600000) (1024K)]
- 0x0000019766c769d0 JavaThread "jar transforms Thread 4" [_thread_blocked, id=18652, stack(0x0000006c45600000,0x0000006c45700000) (1024K)]
- 0x0000019766c776f0 JavaThread "jar transforms Thread 5" [_thread_blocked, id=19444, stack(0x0000006c42b00000,0x0000006c42c00000) (1024K)]
- 0x000001976424af60 JavaThread "jar transforms Thread 6" [_thread_blocked, id=8820, stack(0x0000006c45700000,0x0000006c45800000) (1024K)]
- 0x000001976424bc80 JavaThread "jar transforms Thread 7" [_thread_blocked, id=13780, stack(0x0000006c45800000,0x0000006c45900000) (1024K)]
- 0x000001976424d030 JavaThread "jar transforms Thread 8" [_thread_blocked, id=36620, stack(0x0000006c45900000,0x0000006c45a00000) (1024K)]
- 0x000001976424a8d0 JavaThread "jar transforms Thread 9" [_thread_blocked, id=39672, stack(0x0000006c45a00000,0x0000006c45b00000) (1024K)]
- 0x000001976424a240 JavaThread "jar transforms Thread 10" [_thread_blocked, id=25168, stack(0x0000006c45b00000,0x0000006c45c00000) (1024K)]
- 0x000001976424b5f0 JavaThread "jar transforms Thread 11" [_thread_blocked, id=26256, stack(0x0000006c45c00000,0x0000006c45d00000) (1024K)]
- 0x000001976424c310 JavaThread "jar transforms Thread 12" [_thread_blocked, id=41204, stack(0x0000006c45e00000,0x0000006c45f00000) (1024K)]
- 0x000001976424c9a0 JavaThread "Unconstrained build operations Thread 40" [_thread_blocked, id=40656, stack(0x0000006c45f00000,0x0000006c46000000) (1024K)]
- 0x0000019764249bb0 JavaThread "Unconstrained build operations Thread 41" [_thread_blocked, id=12440, stack(0x0000006c46000000,0x0000006c46100000) (1024K)]
- 0x00000197642504b0 JavaThread "Unconstrained build operations Thread 42" [_thread_blocked, id=28288, stack(0x0000006c46100000,0x0000006c46200000) (1024K)]
- 0x000001976424dd50 JavaThread "Unconstrained build operations Thread 43" [_thread_blocked, id=23808, stack(0x0000006c46200000,0x0000006c46300000) (1024K)]
- 0x000001976424e3e0 JavaThread "Unconstrained build operations Thread 44" [_thread_blocked, id=38468, stack(0x0000006c46300000,0x0000006c46400000) (1024K)]
- 0x0000019764250b40 JavaThread "Unconstrained build operations Thread 45" [_thread_blocked, id=7940, stack(0x0000006c46400000,0x0000006c46500000) (1024K)]
- 0x000001976424f100 JavaThread "Unconstrained build operations Thread 46" [_thread_blocked, id=34560, stack(0x0000006c46500000,0x0000006c46600000) (1024K)]
- 0x000001976424ea70 JavaThread "Unconstrained build operations Thread 47" [_thread_blocked, id=2572, stack(0x0000006c46600000,0x0000006c46700000) (1024K)]
- 0x000001976424f790 JavaThread "Unconstrained build operations Thread 48" [_thread_blocked, id=36304, stack(0x0000006c46700000,0x0000006c46800000) (1024K)]
- 0x000001976424d6c0 JavaThread "Unconstrained build operations Thread 49" [_thread_blocked, id=12800, stack(0x0000006c46800000,0x0000006c46900000) (1024K)]
- 0x000001976424fe20 JavaThread "Unconstrained build operations Thread 50" [_thread_blocked, id=16708, stack(0x0000006c46900000,0x0000006c46a00000) (1024K)]
- 0x00000197642511d0 JavaThread "Unconstrained build operations Thread 51" [_thread_blocked, id=38804, stack(0x0000006c46a00000,0x0000006c46b00000) (1024K)]
- 0x0000019765ea0f10 JavaThread "Unconstrained build operations Thread 52" [_thread_blocked, id=41264, stack(0x0000006c46b00000,0x0000006c46c00000) (1024K)]
- 0x0000019765e9f4d0 JavaThread "Unconstrained build operations Thread 53" [_thread_blocked, id=17792, stack(0x0000006c46c00000,0x0000006c46d00000) (1024K)]
- 0x0000019765ea0880 JavaThread "Unconstrained build operations Thread 54" [_thread_blocked, id=36636, stack(0x0000006c46d00000,0x0000006c46e00000) (1024K)]
- 0x0000019765ea1c30 JavaThread "Unconstrained build operations Thread 55" [_thread_blocked, id=31584, stack(0x0000006c46e00000,0x0000006c46f00000) (1024K)]
- 0x0000019765e9fb60 JavaThread "Unconstrained build operations Thread 56" [_thread_blocked, id=2796, stack(0x0000006c46f00000,0x0000006c47000000) (1024K)]
- 0x0000019765ea15a0 JavaThread "Unconstrained build operations Thread 57" [_thread_blocked, id=41784, stack(0x0000006c47000000,0x0000006c47100000) (1024K)]
- 0x0000019765ea22c0 JavaThread "Unconstrained build operations Thread 58" [_thread_blocked, id=27984, stack(0x0000006c47100000,0x0000006c47200000) (1024K)]
- 0x0000019765e9ee40 JavaThread "Unconstrained build operations Thread 59" [_thread_blocked, id=30380, stack(0x0000006c47200000,0x0000006c47300000) (1024K)]
- 0x0000019765ea2950 JavaThread "Unconstrained build operations Thread 60" [_thread_blocked, id=24268, stack(0x0000006c47300000,0x0000006c47400000) (1024K)]
- 0x0000019765ea2fe0 JavaThread "Unconstrained build operations Thread 61" [_thread_blocked, id=19952, stack(0x0000006c47400000,0x0000006c47500000) (1024K)]
- 0x0000019765ea3670 JavaThread "Unconstrained build operations Thread 62" [_thread_blocked, id=28472, stack(0x0000006c47500000,0x0000006c47600000) (1024K)]
- 0x0000019765ea01f0 JavaThread "Unconstrained build operations Thread 63" [_thread_blocked, id=12260, stack(0x0000006c47600000,0x0000006c47700000) (1024K)]
- 0x0000019765ea3d00 JavaThread "Unconstrained build operations Thread 64" [_thread_blocked, id=3104, stack(0x0000006c47700000,0x0000006c47800000) (1024K)]
- 0x0000019765ea5740 JavaThread "Unconstrained build operations Thread 65" [_thread_blocked, id=38264, stack(0x0000006c47800000,0x0000006c47900000) (1024K)]
- 0x0000019765ea4390 JavaThread "Unconstrained build operations Thread 66" [_thread_blocked, id=12976, stack(0x0000006c47900000,0x0000006c47a00000) (1024K)]
- 0x0000019765ea4a20 JavaThread "Unconstrained build operations Thread 67" [_thread_blocked, id=26692, stack(0x0000006c47a00000,0x0000006c47b00000) (1024K)]
- 0x0000019765ea6460 JavaThread "Unconstrained build operations Thread 68" [_thread_blocked, id=20040, stack(0x0000006c47b00000,0x0000006c47c00000) (1024K)]
- 0x0000019765ea50b0 JavaThread "Unconstrained build operations Thread 69" [_thread_blocked, id=24868, stack(0x0000006c47c00000,0x0000006c47d00000) (1024K)]
- 0x0000019765ea5dd0 JavaThread "Unconstrained build operations Thread 70" [_thread_blocked, id=36436, stack(0x0000006c47d00000,0x0000006c47e00000) (1024K)]
- 0x0000019765460fc0 JavaThread "Unconstrained build operations Thread 71" [_thread_blocked, id=43444, stack(0x0000006c47e00000,0x0000006c47f00000) (1024K)]
- 0x00000197654602a0 JavaThread "Unconstrained build operations Thread 72" [_thread_blocked, id=19368, stack(0x0000006c47f00000,0x0000006c48000000) (1024K)]
- 0x000001976545eef0 JavaThread "Unconstrained build operations Thread 73" [_thread_blocked, id=35808, stack(0x0000006c48000000,0x0000006c48100000) (1024K)]
- 0x0000019765460930 JavaThread "Unconstrained build operations Thread 74" [_thread_blocked, id=43912, stack(0x0000006c48100000,0x0000006c48200000) (1024K)]
- 0x000001976545f580 JavaThread "Unconstrained build operations Thread 75" [_thread_blocked, id=35812, stack(0x0000006c48200000,0x0000006c48300000) (1024K)]
- 0x0000019765461ce0 JavaThread "Unconstrained build operations Thread 76" [_thread_blocked, id=20048, stack(0x0000006c48300000,0x0000006c48400000) (1024K)]
- 0x0000019765461650 JavaThread "Unconstrained build operations Thread 77" [_thread_blocked, id=39704, stack(0x0000006c48400000,0x0000006c48500000) (1024K)]
- 0x000001976545e860 JavaThread "Unconstrained build operations Thread 78" [_thread_blocked, id=30892, stack(0x0000006c48500000,0x0000006c48600000) (1024K)]
- 0x000001976545fc10 JavaThread "Unconstrained build operations Thread 79" [_thread_blocked, id=18052, stack(0x0000006c48600000,0x0000006c48700000) (1024K)]
- 0x000001976555ccd0 JavaThread "Unconstrained build operations Thread 80" [_thread_blocked, id=24436, stack(0x0000006c48700000,0x0000006c48800000) (1024K)]
- 0x0000019765559ee0 JavaThread "Unconstrained build operations Thread 81" [_thread_blocked, id=25212, stack(0x0000006c48800000,0x0000006c48900000) (1024K)]
- 0x000001976555d360 JavaThread "Unconstrained build operations Thread 82" [_thread_blocked, id=33644, stack(0x0000006c48900000,0x0000006c48a00000) (1024K)]
- 0x000001976555d9f0 JavaThread "Unconstrained build operations Thread 83" [_thread_blocked, id=33948, stack(0x0000006c48a00000,0x0000006c48b00000) (1024K)]
- 0x000001976555ac00 JavaThread "Unconstrained build operations Thread 84" [_thread_blocked, id=14996, stack(0x0000006c48b00000,0x0000006c48c00000) (1024K)]
- 0x000001976555b290 JavaThread "Unconstrained build operations Thread 85" [_thread_blocked, id=40388, stack(0x0000006c48c00000,0x0000006c48d00000) (1024K)]
- 0x000001976555c640 JavaThread "Unconstrained build operations Thread 86" [_thread_blocked, id=10964, stack(0x0000006c48d00000,0x0000006c48e00000) (1024K)]
- 0x000001976555a570 JavaThread "Unconstrained build operations Thread 87" [_thread_blocked, id=19228, stack(0x0000006c48e00000,0x0000006c48f00000) (1024K)]
- 0x000001976555e080 JavaThread "Unconstrained build operations Thread 88" [_thread_blocked, id=33124, stack(0x0000006c48f00000,0x0000006c49000000) (1024K)]
- 0x000001976555e710 JavaThread "Unconstrained build operations Thread 89" [_thread_blocked, id=2492, stack(0x0000006c49000000,0x0000006c49100000) (1024K)]
- 0x000001976555eda0 JavaThread "Unconstrained build operations Thread 90" [_thread_blocked, id=34956, stack(0x0000006c49100000,0x0000006c49200000) (1024K)]
- 0x000001976555b920 JavaThread "Unconstrained build operations Thread 91" [_thread_blocked, id=26760, stack(0x0000006c49200000,0x0000006c49300000) (1024K)]
- 0x000001976555bfb0 JavaThread "Unconstrained build operations Thread 92" [_thread_blocked, id=36772, stack(0x0000006c49300000,0x0000006c49400000) (1024K)]
- 0x000001976555f430 JavaThread "Unconstrained build operations Thread 93" [_thread_blocked, id=26280, stack(0x0000006c49400000,0x0000006c49500000) (1024K)]
- 0x000001976555fac0 JavaThread "Unconstrained build operations Thread 94" [_thread_blocked, id=23920, stack(0x0000006c49500000,0x0000006c49600000) (1024K)]
- 0x0000019765560150 JavaThread "Unconstrained build operations Thread 95" [_thread_blocked, id=2912, stack(0x0000006c49600000,0x0000006c49700000) (1024K)]
- 0x00000197655607e0 JavaThread "Unconstrained build operations Thread 96" [_thread_blocked, id=11864, stack(0x0000006c49700000,0x0000006c49800000) (1024K)]
- 0x0000019765560e70 JavaThread "Unconstrained build operations Thread 97" [_thread_blocked, id=21216, stack(0x0000006c49800000,0x0000006c49900000) (1024K)]
- 0x0000019765561500 JavaThread "Unconstrained build operations Thread 98" [_thread_blocked, id=13632, stack(0x0000006c49900000,0x0000006c49a00000) (1024K)]
- 0x0000019768620060 JavaThread "Unconstrained build operations Thread 99" [_thread_blocked, id=6940, stack(0x0000006c49a00000,0x0000006c49b00000) (1024K)]
- 0x00000197686206f0 JavaThread "Unconstrained build operations Thread 100" [_thread_blocked, id=23328, stack(0x0000006c49b00000,0x0000006c49c00000) (1024K)]
- 0x0000019768620d80 JavaThread "Unconstrained build operations Thread 101" [_thread_blocked, id=42444, stack(0x0000006c49c00000,0x0000006c49d00000) (1024K)]
- 0x0000019768621410 JavaThread "Unconstrained build operations Thread 102" [_thread_blocked, id=14988, stack(0x0000006c49d00000,0x0000006c49e00000) (1024K)]
- 0x0000019768621aa0 JavaThread "Unconstrained build operations Thread 103" [_thread_blocked, id=22572, stack(0x0000006c49e00000,0x0000006c49f00000) (1024K)]
- 0x000001976861f9d0 JavaThread "Unconstrained build operations Thread 104" [_thread_blocked, id=21308, stack(0x0000006c49f00000,0x0000006c4a000000) (1024K)]
- 0x000001976861ecb0 JavaThread "Unconstrained build operations Thread 105" [_thread_blocked, id=15844, stack(0x0000006c4a000000,0x0000006c4a100000) (1024K)]
- 0x0000019768622130 JavaThread "Unconstrained build operations Thread 106" [_thread_blocked, id=38176, stack(0x0000006c4a100000,0x0000006c4a200000) (1024K)]
- 0x00000197686227c0 JavaThread "Unconstrained build operations Thread 107" [_thread_blocked, id=1232, stack(0x0000006c4a200000,0x0000006c4a300000) (1024K)]
- 0x000001976861f340 JavaThread "Unconstrained build operations Thread 108" [_thread_blocked, id=20896, stack(0x0000006c4a300000,0x0000006c4a400000) (1024K)]
- 0x0000019768624200 JavaThread "Unconstrained build operations Thread 109" [_thread_blocked, id=32088, stack(0x0000006c4a400000,0x0000006c4a500000) (1024K)]
- 0x0000019768624890 JavaThread "Unconstrained build operations Thread 110" [_thread_blocked, id=36448, stack(0x0000006c4a500000,0x0000006c4a600000) (1024K)]
- 0x0000019768624f20 JavaThread "Unconstrained build operations Thread 111" [_thread_blocked, id=17360, stack(0x0000006c4a600000,0x0000006c4a700000) (1024K)]
- 0x00000197686255b0 JavaThread "Unconstrained build operations Thread 112" [_thread_blocked, id=16704, stack(0x0000006c4a700000,0x0000006c4a800000) (1024K)]
- 0x00000197686262d0 JavaThread "Unconstrained build operations Thread 113" [_thread_blocked, id=29984, stack(0x0000006c4a800000,0x0000006c4a900000) (1024K)]
- 0x0000019768625c40 JavaThread "Unconstrained build operations Thread 114" [_thread_blocked, id=43488, stack(0x0000006c4a900000,0x0000006c4aa00000) (1024K)]
- 0x0000019768622e50 JavaThread "Unconstrained build operations Thread 115" [_thread_blocked, id=24648, stack(0x0000006c4aa00000,0x0000006c4ab00000) (1024K)]
- 0x0000019768623b70 JavaThread "Unconstrained build operations Thread 116" [_thread_blocked, id=13364, stack(0x0000006c4ab00000,0x0000006c4ac00000) (1024K)]
- 0x0000019765552610 JavaThread "Unconstrained build operations Thread 117" [_thread_blocked, id=17672, stack(0x0000006c4ac00000,0x0000006c4ad00000) (1024K)]
- 0x00000197655518f0 JavaThread "Unconstrained build operations Thread 118" [_thread_blocked, id=11376, stack(0x0000006c4ad00000,0x0000006c4ae00000) (1024K)]
- 0x0000019765551f80 JavaThread "Unconstrained build operations Thread 119" [_thread_blocked, id=26400, stack(0x0000006c4ae00000,0x0000006c4af00000) (1024K)]
- 0x000001976554feb0 JavaThread "Unconstrained build operations Thread 120" [_thread_blocked, id=22924, stack(0x0000006c4af00000,0x0000006c4b000000) (1024K)]
- 0x0000019765552ca0 JavaThread "Unconstrained build operations Thread 121" [_thread_blocked, id=37004, stack(0x0000006c4b000000,0x0000006c4b100000) (1024K)]
- 0x0000019765553330 JavaThread "Unconstrained build operations Thread 122" [_thread_blocked, id=18772, stack(0x0000006c4b100000,0x0000006c4b200000) (1024K)]
- 0x0000019765550bd0 JavaThread "Unconstrained build operations Thread 123" [_thread_blocked, id=38004, stack(0x0000006c4b200000,0x0000006c4b300000) (1024K)]
- 0x00000197655539c0 JavaThread "Unconstrained build operations Thread 124" [_thread_blocked, id=30908, stack(0x0000006c4b300000,0x0000006c4b400000) (1024K)]
- 0x0000019765550540 JavaThread "Unconstrained build operations Thread 125" [_thread_blocked, id=8828, stack(0x0000006c4b400000,0x0000006c4b500000) (1024K)]
- 0x0000019765554050 JavaThread "Unconstrained build operations Thread 126" [_thread_blocked, id=17632, stack(0x0000006c4b500000,0x0000006c4b600000) (1024K)]
- 0x00000197655546e0 JavaThread "Unconstrained build operations Thread 127" [_thread_blocked, id=36336, stack(0x0000006c4b600000,0x0000006c4b700000) (1024K)]
- 0x0000019765551260 JavaThread "Unconstrained build operations Thread 128" [_thread_blocked, id=15828, stack(0x0000006c4b700000,0x0000006c4b800000) (1024K)]
- 0x00000197655574d0 JavaThread "Unconstrained build operations Thread 129" [_thread_blocked, id=7048, stack(0x0000006c4b800000,0x0000006c4b900000) (1024K)]
- 0x00000197655567b0 JavaThread "Unconstrained build operations Thread 130" [_thread_blocked, id=43292, stack(0x0000006c4b900000,0x0000006c4ba00000) (1024K)]
- 0x0000019765555a90 JavaThread "Unconstrained build operations Thread 131" [_thread_blocked, id=17016, stack(0x0000006c4ba00000,0x0000006c4bb00000) (1024K)]
- 0x0000019765554d70 JavaThread "Unconstrained build operations Thread 132" [_thread_blocked, id=27000, stack(0x0000006c4bb00000,0x0000006c4bc00000) (1024K)]
- 0x0000019765555400 JavaThread "Unconstrained build operations Thread 133" [_thread_blocked, id=20848, stack(0x0000006c4bc00000,0x0000006c4bd00000) (1024K)]
- 0x0000019765556120 JavaThread "Unconstrained build operations Thread 134" [_thread_blocked, id=37528, stack(0x0000006c4bd00000,0x0000006c4be00000) (1024K)]
- 0x0000019765556e40 JavaThread "Unconstrained build operations Thread 135" [_thread_blocked, id=30520, stack(0x0000006c4be00000,0x0000006c4bf00000) (1024K)]
- 0x0000019762ca73c0 JavaThread "Unconstrained build operations Thread 136" [_thread_blocked, id=38200, stack(0x0000006c4bf00000,0x0000006c4c000000) (1024K)]
- 0x0000019762ca9490 JavaThread "Unconstrained build operations Thread 137" [_thread_blocked, id=25292, stack(0x0000006c4c000000,0x0000006c4c100000) (1024K)]
- 0x0000019762ca8e00 JavaThread "Unconstrained build operations Thread 138" [_thread_blocked, id=41756, stack(0x0000006c4c100000,0x0000006c4c200000) (1024K)]
- 0x0000019762ca80e0 JavaThread "Unconstrained build operations Thread 139" [_thread_blocked, id=29104, stack(0x0000006c4c200000,0x0000006c4c300000) (1024K)]
- 0x0000019762ca9b20 JavaThread "Unconstrained build operations Thread 140" [_thread_blocked, id=6732, stack(0x0000006c4c300000,0x0000006c4c400000) (1024K)]
- 0x0000019762ca8770 JavaThread "included builds" [_thread_blocked, id=31516, stack(0x0000006c4c400000,0x0000006c4c500000) (1024K)]
- 0x0000019762caa1b0 JavaThread "Execution worker" [_thread_in_vm, id=37568, stack(0x0000006c4c500000,0x0000006c4c600000) (1024K)]
- 0x0000019762ca6d30 JavaThread "Execution worker Thread 2" [_thread_blocked, id=42056, stack(0x0000006c4c600000,0x0000006c4c700000) (1024K)]
- 0x0000019762cabbf0 JavaThread "Execution worker Thread 3" [_thread_blocked, id=18532, stack(0x0000006c4c700000,0x0000006c4c800000) (1024K)]
- 0x0000019762cacfa0 JavaThread "Execution worker Thread 4" [_thread_blocked, id=32036, stack(0x0000006c4c800000,0x0000006c4c900000) (1024K)]
- 0x0000019762cadcc0 JavaThread "Execution worker Thread 5" [_thread_blocked, id=39352, stack(0x0000006c4c900000,0x0000006c4ca00000) (1024K)]
- 0x0000019762caaed0 JavaThread "Execution worker Thread 6" [_thread_blocked, id=19184, stack(0x0000006c4ca00000,0x0000006c4cb00000) (1024K)]
- 0x0000019762cac280 JavaThread "Execution worker Thread 7" [_thread_blocked, id=42592, stack(0x0000006c4cb00000,0x0000006c4cc00000) (1024K)]
- 0x0000019762cac910 JavaThread "Execution worker Thread 8" [_thread_blocked, id=34144, stack(0x0000006c4cc00000,0x0000006c4cd00000) (1024K)]
- 0x0000019762cad630 JavaThread "Execution worker Thread 9" [_thread_blocked, id=13496, stack(0x0000006c4cd00000,0x0000006c4ce00000) (1024K)]
- 0x0000019762caa840 JavaThread "Execution worker Thread 10" [_thread_blocked, id=2444, stack(0x0000006c4ce00000,0x0000006c4cf00000) (1024K)]
- 0x0000019762cae350 JavaThread "Execution worker Thread 11" [_thread_blocked, id=32136, stack(0x0000006c4cf00000,0x0000006c4d000000) (1024K)]
- 0x0000019762cae9e0 JavaThread "Execution worker Thread 12" [_thread_blocked, id=5560, stack(0x0000006c4d000000,0x0000006c4d100000) (1024K)]
- 0x0000019762cab560 JavaThread "Execution worker Thread 13" [_thread_blocked, id=17380, stack(0x0000006c4d100000,0x0000006c4d200000) (1024K)]
- 0x0000019762caf700 JavaThread "Cache worker for execution history cache (C:\eGovFrameDev-4.3.1-64bit\workspace-egov\axhub-backend-main\.gradle\8.14.3\executionHistory)" [_thread_blocked, id=42460, stack(0x0000006c4d200000,0x0000006c4d300000) (1024K)]
- 0x0000019762cb0ab0 JavaThread "Cache worker for Java compile cache (C:\Users\jade\.gradle\caches\8.14.3\javaCompile)" [_thread_blocked, id=17804, stack(0x0000006c4d300000,0x0000006c4d400000) (1024K)]
- 0x0000019762cafd90 JavaThread "Build operations" [_thread_blocked, id=11988, stack(0x0000006c4d400000,0x0000006c4d500000) (1024K)]
- 0x0000019762caf070 JavaThread "Build operations Thread 2" [_thread_blocked, id=4604, stack(0x0000006c4d500000,0x0000006c4d600000) (1024K)]
- 0x0000019762cb24f0 JavaThread "Build operations Thread 3" [_thread_blocked, id=23996, stack(0x0000006c4d600000,0x0000006c4d700000) (1024K)]
- 0x0000019762cb38a0 JavaThread "Build operations Thread 4" [_thread_blocked, id=24092, stack(0x0000006c4d700000,0x0000006c4d800000) (1024K)]
- 0x0000019762cb2b80 JavaThread "Build operations Thread 5" [_thread_blocked, id=40168, stack(0x0000006c4d800000,0x0000006c4d900000) (1024K)]
- 0x0000019762cb0420 JavaThread "Build operations Thread 6" [_thread_blocked, id=31168, stack(0x0000006c4d900000,0x0000006c4da00000) (1024K)]
- 0x0000019762cb3f30 JavaThread "Build operations Thread 7" [_thread_blocked, id=37216, stack(0x0000006c4da00000,0x0000006c4db00000) (1024K)]
- 0x0000019762cb1140 JavaThread "Build operations Thread 8" [_thread_blocked, id=14588, stack(0x0000006c4db00000,0x0000006c4dc00000) (1024K)]
- 0x0000019762cb3210 JavaThread "Build operations Thread 9" [_thread_blocked, id=18844, stack(0x0000006c4dc00000,0x0000006c4dd00000) (1024K)]
- 0x0000019762cb45c0 JavaThread "Build operations Thread 10" [_thread_blocked, id=30192, stack(0x0000006c4dd00000,0x0000006c4de00000) (1024K)]
- 0x0000019762cb4c50 JavaThread "Build operations Thread 11" [_thread_blocked, id=6460, stack(0x0000006c4de00000,0x0000006c4df00000) (1024K)]
- 0x0000019762cb17d0 JavaThread "Build operations Thread 12" [_thread_blocked, id=38584, stack(0x0000006c4df00000,0x0000006c4e000000) (1024K)]
- 0x0000019762cb1e60 JavaThread "Build operations Thread 13" [_thread_blocked, id=41808, stack(0x0000006c4e000000,0x0000006c4e100000) (1024K)]
-=>0x0000019766ceda10 JavaThread "C2 CompilerThread1" daemon [_thread_in_native, id=18728, stack(0x0000006c45d00000,0x0000006c45e00000) (1024K)]
-Total: 216
-
-Other Threads:
- 0x0000019748837f70 VMThread "VM Thread" [id=43376, stack(0x0000006c3fd00000,0x0000006c3fe00000) (1024K)]
- 0x0000019748827d30 WatcherThread "VM Periodic Task Thread" [id=20384, stack(0x0000006c3fc00000,0x0000006c3fd00000) (1024K)]
- 0x000001972d32aba0 WorkerThread "GC Thread#0" [id=23300, stack(0x0000006c3f700000,0x0000006c3f800000) (1024K)]
- 0x0000019748c21730 WorkerThread "GC Thread#1" [id=19704, stack(0x0000006c40800000,0x0000006c40900000) (1024K)]
- 0x0000019748c21ae0 WorkerThread "GC Thread#2" [id=21584, stack(0x0000006c40900000,0x0000006c40a00000) (1024K)]
- 0x0000019748c21e90 WorkerThread "GC Thread#3" [id=42972, stack(0x0000006c40a00000,0x0000006c40b00000) (1024K)]
- 0x0000019748c22240 WorkerThread "GC Thread#4" [id=19240, stack(0x0000006c40b00000,0x0000006c40c00000) (1024K)]
- 0x0000019748c225f0 WorkerThread "GC Thread#5" [id=24644, stack(0x0000006c40c00000,0x0000006c40d00000) (1024K)]
- 0x000001976357eed0 WorkerThread "GC Thread#6" [id=28884, stack(0x0000006c40d00000,0x0000006c40e00000) (1024K)]
- 0x00000197637432e0 WorkerThread "GC Thread#7" [id=13740, stack(0x0000006c40f00000,0x0000006c41000000) (1024K)]
- 0x0000019763743a90 WorkerThread "GC Thread#8" [id=20832, stack(0x0000006c41000000,0x0000006c41100000) (1024K)]
- 0x0000019763744d50 WorkerThread "GC Thread#9" [id=41828, stack(0x0000006c41100000,0x0000006c41200000) (1024K)]
- 0x00000197659b3c10 WorkerThread "GC Thread#10" [id=35336, stack(0x0000006c41f00000,0x0000006c42000000) (1024K)]
- 0x000001972d32faa0 ConcurrentGCThread "G1 Main Marker" [id=41400, stack(0x0000006c3f800000,0x0000006c3f900000) (1024K)]
- 0x000001972d332af0 WorkerThread "G1 Conc#0" [id=37912, stack(0x0000006c3f900000,0x0000006c3fa00000) (1024K)]
- 0x00000197659b3860 WorkerThread "G1 Conc#1" [id=31612, stack(0x0000006c42000000,0x0000006c42100000) (1024K)]
- 0x00000197659b3fc0 WorkerThread "G1 Conc#2" [id=7552, stack(0x0000006c42100000,0x0000006c42200000) (1024K)]
- 0x000001972d3beb90 ConcurrentGCThread "G1 Refine#0" [id=41000, stack(0x0000006c3fa00000,0x0000006c3fb00000) (1024K)]
- 0x00000197486f46a0 ConcurrentGCThread "G1 Service" [id=42152, stack(0x0000006c3fb00000,0x0000006c3fc00000) (1024K)]
-Total: 19
-
-Threads with active compile tasks:
-C2 CompilerThread0 21108 12538 4 com.sun.tools.javac.parser.UnicodeReader::next (9 bytes)
-C2 CompilerThread1 21109 12383 ! 4 com.sun.tools.javac.parser.JavaTokenizer::readToken (1823 bytes)
-Total: 2
-
-VM state: not at safepoint (normal execution)
-
-VM Mutex/Monitor currently owned by a thread: None
-
-Heap address: 0x00000000e0000000, size: 512 MB, Compressed Oops mode: 32-bit
-
-CDS archive(s) mapped at: [0x0000019749000000-0x0000019749c80000-0x0000019749c80000), size 13107200, SharedBaseAddress: 0x0000019749000000, ArchiveRelocationMode: 1.
-Compressed class space mapped at: 0x000001974a000000-0x000001975e000000, reserved size: 335544320
-Narrow klass base: 0x0000019749000000, Narrow klass shift: 0, Narrow klass range: 0x100000000
-
-GC Precious Log:
- CardTable entry size: 512
- Card Set container configuration: InlinePtr #cards 5 size 8 Array Of Cards #cards 12 size 40 Howl #buckets 4 coarsen threshold 1843 Howl Bitmap #cards 512 size 80 coarsen threshold 460 Card regions per heap region 1 cards per card region 2048
- CPUs: 14 total, 14 available
- Memory: 15836M
- Large Page Support: Disabled
- NUMA Support: Disabled
- Compressed Oops: Enabled (32-bit)
- Heap Region Size: 1M
- Heap Min Capacity: 256M
- Heap Initial Capacity: 256M
- Heap Max Capacity: 512M
- Pre-touch: Disabled
- Parallel Workers: 11
- Concurrent Workers: 3
- Concurrent Refinement Workers: 11
- Periodic GC: Disabled
-
-Heap:
- garbage-first heap total 262144K, used 180889K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 118 young (120832K), 10 survivors (10240K)
- Metaspace used 72520K, committed 74688K, reserved 393216K
- class space used 10117K, committed 11200K, reserved 327680K
-
-Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, TAMS=top-at-mark-start, PB=parsable bottom
-| 0|0x00000000e0000000, 0x00000000e0100000, 0x00000000e0100000|100%|HS| |TAMS 0x00000000e0000000| PB 0x00000000e0000000| Complete
-| 1|0x00000000e0100000, 0x00000000e0200000, 0x00000000e0200000|100%|HC| |TAMS 0x00000000e0100000| PB 0x00000000e0100000| Complete
-| 2|0x00000000e0200000, 0x00000000e0300000, 0x00000000e0300000|100%|HC| |TAMS 0x00000000e0200000| PB 0x00000000e0200000| Complete
-| 3|0x00000000e0300000, 0x00000000e0400000, 0x00000000e0400000|100%| O| |TAMS 0x00000000e0300000| PB 0x00000000e0300000| Untracked
-| 4|0x00000000e0400000, 0x00000000e0500000, 0x00000000e0500000|100%| O| |TAMS 0x00000000e0400000| PB 0x00000000e0400000| Untracked
-| 5|0x00000000e0500000, 0x00000000e0600000, 0x00000000e0600000|100%| O| |TAMS 0x00000000e0500000| PB 0x00000000e0500000| Untracked
-| 6|0x00000000e0600000, 0x00000000e0700000, 0x00000000e0700000|100%|HS| |TAMS 0x00000000e0600000| PB 0x00000000e0600000| Complete
-| 7|0x00000000e0700000, 0x00000000e0800000, 0x00000000e0800000|100%| O| |TAMS 0x00000000e0700000| PB 0x00000000e0700000| Untracked
-| 8|0x00000000e0800000, 0x00000000e0900000, 0x00000000e0900000|100%| O| |TAMS 0x00000000e0800000| PB 0x00000000e0800000| Untracked
-| 9|0x00000000e0900000, 0x00000000e0a00000, 0x00000000e0a00000|100%| O| |TAMS 0x00000000e0900000| PB 0x00000000e0900000| Untracked
-| 10|0x00000000e0a00000, 0x00000000e0b00000, 0x00000000e0b00000|100%| O| |TAMS 0x00000000e0a00000| PB 0x00000000e0a00000| Untracked
-| 11|0x00000000e0b00000, 0x00000000e0c00000, 0x00000000e0c00000|100%| O| |TAMS 0x00000000e0b00000| PB 0x00000000e0b00000| Untracked
-| 12|0x00000000e0c00000, 0x00000000e0d00000, 0x00000000e0d00000|100%| O| |TAMS 0x00000000e0c00000| PB 0x00000000e0c00000| Untracked
-| 13|0x00000000e0d00000, 0x00000000e0e00000, 0x00000000e0e00000|100%| O| |TAMS 0x00000000e0d00000| PB 0x00000000e0d00000| Untracked
-| 14|0x00000000e0e00000, 0x00000000e0f00000, 0x00000000e0f00000|100%| O| |TAMS 0x00000000e0e00000| PB 0x00000000e0e00000| Untracked
-| 15|0x00000000e0f00000, 0x00000000e1000000, 0x00000000e1000000|100%| O| |TAMS 0x00000000e0f00000| PB 0x00000000e0f00000| Untracked
-| 16|0x00000000e1000000, 0x00000000e1100000, 0x00000000e1100000|100%| O| |TAMS 0x00000000e1000000| PB 0x00000000e1000000| Untracked
-| 17|0x00000000e1100000, 0x00000000e1200000, 0x00000000e1200000|100%| O| |TAMS 0x00000000e1100000| PB 0x00000000e1100000| Untracked
-| 18|0x00000000e1200000, 0x00000000e1300000, 0x00000000e1300000|100%| O| |TAMS 0x00000000e1200000| PB 0x00000000e1200000| Untracked
-| 19|0x00000000e1300000, 0x00000000e1400000, 0x00000000e1400000|100%| O| |TAMS 0x00000000e1300000| PB 0x00000000e1300000| Untracked
-| 20|0x00000000e1400000, 0x00000000e1500000, 0x00000000e1500000|100%| O| |TAMS 0x00000000e1400000| PB 0x00000000e1400000| Untracked
-| 21|0x00000000e1500000, 0x00000000e1600000, 0x00000000e1600000|100%| O| |TAMS 0x00000000e1500000| PB 0x00000000e1500000| Untracked
-| 22|0x00000000e1600000, 0x00000000e1700000, 0x00000000e1700000|100%| O| |TAMS 0x00000000e1600000| PB 0x00000000e1600000| Untracked
-| 23|0x00000000e1700000, 0x00000000e1800000, 0x00000000e1800000|100%| O| |TAMS 0x00000000e1700000| PB 0x00000000e1700000| Untracked
-| 24|0x00000000e1800000, 0x00000000e1900000, 0x00000000e1900000|100%| O| |TAMS 0x00000000e1800000| PB 0x00000000e1800000| Untracked
-| 25|0x00000000e1900000, 0x00000000e1a00000, 0x00000000e1a00000|100%| O| |TAMS 0x00000000e1900000| PB 0x00000000e1900000| Untracked
-| 26|0x00000000e1a00000, 0x00000000e1b00000, 0x00000000e1b00000|100%| O| |TAMS 0x00000000e1a00000| PB 0x00000000e1a00000| Untracked
-| 27|0x00000000e1b00000, 0x00000000e1c00000, 0x00000000e1c00000|100%| O| |TAMS 0x00000000e1b00000| PB 0x00000000e1b00000| Untracked
-| 28|0x00000000e1c00000, 0x00000000e1d00000, 0x00000000e1d00000|100%| O| |TAMS 0x00000000e1c00000| PB 0x00000000e1c00000| Untracked
-| 29|0x00000000e1d00000, 0x00000000e1e00000, 0x00000000e1e00000|100%| O| |TAMS 0x00000000e1d00000| PB 0x00000000e1d00000| Untracked
-| 30|0x00000000e1e00000, 0x00000000e1f00000, 0x00000000e1f00000|100%| O| |TAMS 0x00000000e1e00000| PB 0x00000000e1e00000| Untracked
-| 31|0x00000000e1f00000, 0x00000000e2000000, 0x00000000e2000000|100%| O| |TAMS 0x00000000e1f00000| PB 0x00000000e1f00000| Untracked
-| 32|0x00000000e2000000, 0x00000000e2000000, 0x00000000e2100000| 0%| F| |TAMS 0x00000000e2000000| PB 0x00000000e2000000| Untracked
-| 33|0x00000000e2100000, 0x00000000e2200000, 0x00000000e2200000|100%| O| |TAMS 0x00000000e2100000| PB 0x00000000e2100000| Untracked
-| 34|0x00000000e2200000, 0x00000000e2300000, 0x00000000e2300000|100%| O| |TAMS 0x00000000e2200000| PB 0x00000000e2200000| Untracked
-| 35|0x00000000e2300000, 0x00000000e2400000, 0x00000000e2400000|100%| O| |TAMS 0x00000000e2300000| PB 0x00000000e2300000| Untracked
-| 36|0x00000000e2400000, 0x00000000e2500000, 0x00000000e2500000|100%| O| |TAMS 0x00000000e2400000| PB 0x00000000e2400000| Untracked
-| 37|0x00000000e2500000, 0x00000000e2600000, 0x00000000e2600000|100%| O| |TAMS 0x00000000e2500000| PB 0x00000000e2500000| Untracked
-| 38|0x00000000e2600000, 0x00000000e2700000, 0x00000000e2700000|100%| O| |TAMS 0x00000000e2600000| PB 0x00000000e2600000| Untracked
-| 39|0x00000000e2700000, 0x00000000e2800000, 0x00000000e2800000|100%| O| |TAMS 0x00000000e2700000| PB 0x00000000e2700000| Untracked
-| 40|0x00000000e2800000, 0x00000000e2900000, 0x00000000e2900000|100%| O| |TAMS 0x00000000e2800000| PB 0x00000000e2800000| Untracked
-| 41|0x00000000e2900000, 0x00000000e2a00000, 0x00000000e2a00000|100%| O| |TAMS 0x00000000e2900000| PB 0x00000000e2900000| Untracked
-| 42|0x00000000e2a00000, 0x00000000e2b00000, 0x00000000e2b00000|100%| O| |TAMS 0x00000000e2a00000| PB 0x00000000e2a00000| Untracked
-| 43|0x00000000e2b00000, 0x00000000e2c00000, 0x00000000e2c00000|100%| O| |TAMS 0x00000000e2b00000| PB 0x00000000e2b00000| Untracked
-| 44|0x00000000e2c00000, 0x00000000e2d00000, 0x00000000e2d00000|100%| O| |TAMS 0x00000000e2c00000| PB 0x00000000e2c00000| Untracked
-| 45|0x00000000e2d00000, 0x00000000e2e00000, 0x00000000e2e00000|100%| O| |TAMS 0x00000000e2d00000| PB 0x00000000e2d00000| Untracked
-| 46|0x00000000e2e00000, 0x00000000e2f00000, 0x00000000e2f00000|100%| O| |TAMS 0x00000000e2e00000| PB 0x00000000e2e00000| Untracked
-| 47|0x00000000e2f00000, 0x00000000e3000000, 0x00000000e3000000|100%| O| |TAMS 0x00000000e2f00000| PB 0x00000000e2f00000| Untracked
-| 48|0x00000000e3000000, 0x00000000e3100000, 0x00000000e3100000|100%| O| |TAMS 0x00000000e3000000| PB 0x00000000e3000000| Untracked
-| 49|0x00000000e3100000, 0x00000000e3200000, 0x00000000e3200000|100%| O| |TAMS 0x00000000e3100000| PB 0x00000000e3100000| Untracked
-| 50|0x00000000e3200000, 0x00000000e3300000, 0x00000000e3300000|100%| O| |TAMS 0x00000000e3200000| PB 0x00000000e3200000| Untracked
-| 51|0x00000000e3300000, 0x00000000e3400000, 0x00000000e3400000|100%| O| |TAMS 0x00000000e3300000| PB 0x00000000e3300000| Untracked
-| 52|0x00000000e3400000, 0x00000000e3500000, 0x00000000e3500000|100%| O| |TAMS 0x00000000e3400000| PB 0x00000000e3400000| Untracked
-| 53|0x00000000e3500000, 0x00000000e3600000, 0x00000000e3600000|100%| O| |TAMS 0x00000000e3500000| PB 0x00000000e3500000| Untracked
-| 54|0x00000000e3600000, 0x00000000e3700000, 0x00000000e3700000|100%| O| |TAMS 0x00000000e3600000| PB 0x00000000e3600000| Untracked
-| 55|0x00000000e3700000, 0x00000000e3800000, 0x00000000e3800000|100%| O| |TAMS 0x00000000e3700000| PB 0x00000000e3700000| Untracked
-| 56|0x00000000e3800000, 0x00000000e3900000, 0x00000000e3900000|100%| O| |TAMS 0x00000000e3800000| PB 0x00000000e3800000| Untracked
-| 57|0x00000000e3900000, 0x00000000e3a00000, 0x00000000e3a00000|100%| O| |TAMS 0x00000000e3900000| PB 0x00000000e3900000| Untracked
-| 58|0x00000000e3a00000, 0x00000000e3b00000, 0x00000000e3b00000|100%| O| |TAMS 0x00000000e3a00000| PB 0x00000000e3a00000| Untracked
-| 59|0x00000000e3b00000, 0x00000000e3c00000, 0x00000000e3c00000|100%| O| |TAMS 0x00000000e3b00000| PB 0x00000000e3b00000| Untracked
-| 60|0x00000000e3c00000, 0x00000000e3d00000, 0x00000000e3d00000|100%| O| |TAMS 0x00000000e3c00000| PB 0x00000000e3c00000| Untracked
-| 61|0x00000000e3d00000, 0x00000000e3e00000, 0x00000000e3e00000|100%| O| |TAMS 0x00000000e3d00000| PB 0x00000000e3d00000| Untracked
-| 62|0x00000000e3e00000, 0x00000000e3e00000, 0x00000000e3f00000| 0%| F| |TAMS 0x00000000e3e00000| PB 0x00000000e3e00000| Untracked
-| 63|0x00000000e3f00000, 0x00000000e3f00000, 0x00000000e4000000| 0%| F| |TAMS 0x00000000e3f00000| PB 0x00000000e3f00000| Untracked
-| 64|0x00000000e4000000, 0x00000000e4000000, 0x00000000e4100000| 0%| F| |TAMS 0x00000000e4000000| PB 0x00000000e4000000| Untracked
-| 65|0x00000000e4100000, 0x00000000e4100000, 0x00000000e4200000| 0%| F| |TAMS 0x00000000e4100000| PB 0x00000000e4100000| Untracked
-| 66|0x00000000e4200000, 0x00000000e4200000, 0x00000000e4300000| 0%| F| |TAMS 0x00000000e4200000| PB 0x00000000e4200000| Untracked
-| 67|0x00000000e4300000, 0x00000000e4300000, 0x00000000e4400000| 0%| F| |TAMS 0x00000000e4300000| PB 0x00000000e4300000| Untracked
-| 68|0x00000000e4400000, 0x00000000e4400000, 0x00000000e4500000| 0%| F| |TAMS 0x00000000e4400000| PB 0x00000000e4400000| Untracked
-| 69|0x00000000e4500000, 0x00000000e4500000, 0x00000000e4600000| 0%| F| |TAMS 0x00000000e4500000| PB 0x00000000e4500000| Untracked
-| 70|0x00000000e4600000, 0x00000000e4600000, 0x00000000e4700000| 0%| F| |TAMS 0x00000000e4600000| PB 0x00000000e4600000| Untracked
-| 71|0x00000000e4700000, 0x00000000e4700000, 0x00000000e4800000| 0%| F| |TAMS 0x00000000e4700000| PB 0x00000000e4700000| Untracked
-| 72|0x00000000e4800000, 0x00000000e4800000, 0x00000000e4900000| 0%| F| |TAMS 0x00000000e4800000| PB 0x00000000e4800000| Untracked
-| 73|0x00000000e4900000, 0x00000000e4900000, 0x00000000e4a00000| 0%| F| |TAMS 0x00000000e4900000| PB 0x00000000e4900000| Untracked
-| 74|0x00000000e4a00000, 0x00000000e4a00000, 0x00000000e4b00000| 0%| F| |TAMS 0x00000000e4a00000| PB 0x00000000e4a00000| Untracked
-| 75|0x00000000e4b00000, 0x00000000e4b00000, 0x00000000e4c00000| 0%| F| |TAMS 0x00000000e4b00000| PB 0x00000000e4b00000| Untracked
-| 76|0x00000000e4c00000, 0x00000000e4c00000, 0x00000000e4d00000| 0%| F| |TAMS 0x00000000e4c00000| PB 0x00000000e4c00000| Untracked
-| 77|0x00000000e4d00000, 0x00000000e4d00000, 0x00000000e4e00000| 0%| F| |TAMS 0x00000000e4d00000| PB 0x00000000e4d00000| Untracked
-| 78|0x00000000e4e00000, 0x00000000e4e00000, 0x00000000e4f00000| 0%| F| |TAMS 0x00000000e4e00000| PB 0x00000000e4e00000| Untracked
-| 79|0x00000000e4f00000, 0x00000000e4f00000, 0x00000000e5000000| 0%| F| |TAMS 0x00000000e4f00000| PB 0x00000000e4f00000| Untracked
-| 80|0x00000000e5000000, 0x00000000e5000000, 0x00000000e5100000| 0%| F| |TAMS 0x00000000e5000000| PB 0x00000000e5000000| Untracked
-| 81|0x00000000e5100000, 0x00000000e5100000, 0x00000000e5200000| 0%| F| |TAMS 0x00000000e5100000| PB 0x00000000e5100000| Untracked
-| 82|0x00000000e5200000, 0x00000000e5200000, 0x00000000e5300000| 0%| F| |TAMS 0x00000000e5200000| PB 0x00000000e5200000| Untracked
-| 83|0x00000000e5300000, 0x00000000e5300000, 0x00000000e5400000| 0%| F| |TAMS 0x00000000e5300000| PB 0x00000000e5300000| Untracked
-| 84|0x00000000e5400000, 0x00000000e5400000, 0x00000000e5500000| 0%| F| |TAMS 0x00000000e5400000| PB 0x00000000e5400000| Untracked
-| 85|0x00000000e5500000, 0x00000000e5500000, 0x00000000e5600000| 0%| F| |TAMS 0x00000000e5500000| PB 0x00000000e5500000| Untracked
-| 86|0x00000000e5600000, 0x00000000e5600000, 0x00000000e5700000| 0%| F| |TAMS 0x00000000e5600000| PB 0x00000000e5600000| Untracked
-| 87|0x00000000e5700000, 0x00000000e5700000, 0x00000000e5800000| 0%| F| |TAMS 0x00000000e5700000| PB 0x00000000e5700000| Untracked
-| 88|0x00000000e5800000, 0x00000000e5800000, 0x00000000e5900000| 0%| F| |TAMS 0x00000000e5800000| PB 0x00000000e5800000| Untracked
-| 89|0x00000000e5900000, 0x00000000e5900000, 0x00000000e5a00000| 0%| F| |TAMS 0x00000000e5900000| PB 0x00000000e5900000| Untracked
-| 90|0x00000000e5a00000, 0x00000000e5a00000, 0x00000000e5b00000| 0%| F| |TAMS 0x00000000e5a00000| PB 0x00000000e5a00000| Untracked
-| 91|0x00000000e5b00000, 0x00000000e5b00000, 0x00000000e5c00000| 0%| F| |TAMS 0x00000000e5b00000| PB 0x00000000e5b00000| Untracked
-| 92|0x00000000e5c00000, 0x00000000e5c00000, 0x00000000e5d00000| 0%| F| |TAMS 0x00000000e5c00000| PB 0x00000000e5c00000| Untracked
-| 93|0x00000000e5d00000, 0x00000000e5d00000, 0x00000000e5e00000| 0%| F| |TAMS 0x00000000e5d00000| PB 0x00000000e5d00000| Untracked
-| 94|0x00000000e5e00000, 0x00000000e5e00000, 0x00000000e5f00000| 0%| F| |TAMS 0x00000000e5e00000| PB 0x00000000e5e00000| Untracked
-| 95|0x00000000e5f00000, 0x00000000e5f00000, 0x00000000e6000000| 0%| F| |TAMS 0x00000000e5f00000| PB 0x00000000e5f00000| Untracked
-| 96|0x00000000e6000000, 0x00000000e6000000, 0x00000000e6100000| 0%| F| |TAMS 0x00000000e6000000| PB 0x00000000e6000000| Untracked
-| 97|0x00000000e6100000, 0x00000000e6100000, 0x00000000e6200000| 0%| F| |TAMS 0x00000000e6100000| PB 0x00000000e6100000| Untracked
-| 98|0x00000000e6200000, 0x00000000e6200000, 0x00000000e6300000| 0%| F| |TAMS 0x00000000e6200000| PB 0x00000000e6200000| Untracked
-| 99|0x00000000e6300000, 0x00000000e6300000, 0x00000000e6400000| 0%| F| |TAMS 0x00000000e6300000| PB 0x00000000e6300000| Untracked
-| 100|0x00000000e6400000, 0x00000000e6400000, 0x00000000e6500000| 0%| F| |TAMS 0x00000000e6400000| PB 0x00000000e6400000| Untracked
-| 101|0x00000000e6500000, 0x00000000e6500000, 0x00000000e6600000| 0%| F| |TAMS 0x00000000e6500000| PB 0x00000000e6500000| Untracked
-| 102|0x00000000e6600000, 0x00000000e6600000, 0x00000000e6700000| 0%| F| |TAMS 0x00000000e6600000| PB 0x00000000e6600000| Untracked
-| 103|0x00000000e6700000, 0x00000000e6700000, 0x00000000e6800000| 0%| F| |TAMS 0x00000000e6700000| PB 0x00000000e6700000| Untracked
-| 104|0x00000000e6800000, 0x00000000e6800000, 0x00000000e6900000| 0%| F| |TAMS 0x00000000e6800000| PB 0x00000000e6800000| Untracked
-| 105|0x00000000e6900000, 0x00000000e6900000, 0x00000000e6a00000| 0%| F| |TAMS 0x00000000e6900000| PB 0x00000000e6900000| Untracked
-| 106|0x00000000e6a00000, 0x00000000e6a00000, 0x00000000e6b00000| 0%| F| |TAMS 0x00000000e6a00000| PB 0x00000000e6a00000| Untracked
-| 107|0x00000000e6b00000, 0x00000000e6b00000, 0x00000000e6c00000| 0%| F| |TAMS 0x00000000e6b00000| PB 0x00000000e6b00000| Untracked
-| 108|0x00000000e6c00000, 0x00000000e6c00000, 0x00000000e6d00000| 0%| F| |TAMS 0x00000000e6c00000| PB 0x00000000e6c00000| Untracked
-| 109|0x00000000e6d00000, 0x00000000e6da6548, 0x00000000e6e00000| 64%| S|CS|TAMS 0x00000000e6d00000| PB 0x00000000e6d00000| Complete
-| 110|0x00000000e6e00000, 0x00000000e6f00000, 0x00000000e6f00000|100%| S|CS|TAMS 0x00000000e6e00000| PB 0x00000000e6e00000| Complete
-| 111|0x00000000e6f00000, 0x00000000e7000000, 0x00000000e7000000|100%| S|CS|TAMS 0x00000000e6f00000| PB 0x00000000e6f00000| Complete
-| 112|0x00000000e7000000, 0x00000000e7100000, 0x00000000e7100000|100%| S|CS|TAMS 0x00000000e7000000| PB 0x00000000e7000000| Complete
-| 113|0x00000000e7100000, 0x00000000e7200000, 0x00000000e7200000|100%| S|CS|TAMS 0x00000000e7100000| PB 0x00000000e7100000| Complete
-| 114|0x00000000e7200000, 0x00000000e7300000, 0x00000000e7300000|100%| S|CS|TAMS 0x00000000e7200000| PB 0x00000000e7200000| Complete
-| 115|0x00000000e7300000, 0x00000000e7400000, 0x00000000e7400000|100%| S|CS|TAMS 0x00000000e7300000| PB 0x00000000e7300000| Complete
-| 116|0x00000000e7400000, 0x00000000e7500000, 0x00000000e7500000|100%| S|CS|TAMS 0x00000000e7400000| PB 0x00000000e7400000| Complete
-| 117|0x00000000e7500000, 0x00000000e7600000, 0x00000000e7600000|100%| S|CS|TAMS 0x00000000e7500000| PB 0x00000000e7500000| Complete
-| 118|0x00000000e7600000, 0x00000000e7700000, 0x00000000e7700000|100%| S|CS|TAMS 0x00000000e7600000| PB 0x00000000e7600000| Complete
-| 119|0x00000000e7700000, 0x00000000e7700000, 0x00000000e7800000| 0%| F| |TAMS 0x00000000e7700000| PB 0x00000000e7700000| Untracked
-| 120|0x00000000e7800000, 0x00000000e7800000, 0x00000000e7900000| 0%| F| |TAMS 0x00000000e7800000| PB 0x00000000e7800000| Untracked
-| 121|0x00000000e7900000, 0x00000000e7900000, 0x00000000e7a00000| 0%| F| |TAMS 0x00000000e7900000| PB 0x00000000e7900000| Untracked
-| 122|0x00000000e7a00000, 0x00000000e7a00000, 0x00000000e7b00000| 0%| F| |TAMS 0x00000000e7a00000| PB 0x00000000e7a00000| Untracked
-| 123|0x00000000e7b00000, 0x00000000e7b00000, 0x00000000e7c00000| 0%| F| |TAMS 0x00000000e7b00000| PB 0x00000000e7b00000| Untracked
-| 124|0x00000000e7c00000, 0x00000000e7c00000, 0x00000000e7d00000| 0%| F| |TAMS 0x00000000e7c00000| PB 0x00000000e7c00000| Untracked
-| 125|0x00000000e7d00000, 0x00000000e7d00000, 0x00000000e7e00000| 0%| F| |TAMS 0x00000000e7d00000| PB 0x00000000e7d00000| Untracked
-| 126|0x00000000e7e00000, 0x00000000e7e00000, 0x00000000e7f00000| 0%| F| |TAMS 0x00000000e7e00000| PB 0x00000000e7e00000| Untracked
-| 127|0x00000000e7f00000, 0x00000000e7f00000, 0x00000000e8000000| 0%| F| |TAMS 0x00000000e7f00000| PB 0x00000000e7f00000| Untracked
-| 128|0x00000000e8000000, 0x00000000e8000000, 0x00000000e8100000| 0%| F| |TAMS 0x00000000e8000000| PB 0x00000000e8000000| Untracked
-| 129|0x00000000e8100000, 0x00000000e8100000, 0x00000000e8200000| 0%| F| |TAMS 0x00000000e8100000| PB 0x00000000e8100000| Untracked
-| 130|0x00000000e8200000, 0x00000000e8200000, 0x00000000e8300000| 0%| F| |TAMS 0x00000000e8200000| PB 0x00000000e8200000| Untracked
-| 131|0x00000000e8300000, 0x00000000e8300000, 0x00000000e8400000| 0%| F| |TAMS 0x00000000e8300000| PB 0x00000000e8300000| Untracked
-| 132|0x00000000e8400000, 0x00000000e8400000, 0x00000000e8500000| 0%| F| |TAMS 0x00000000e8400000| PB 0x00000000e8400000| Untracked
-| 133|0x00000000e8500000, 0x00000000e8500000, 0x00000000e8600000| 0%| F| |TAMS 0x00000000e8500000| PB 0x00000000e8500000| Untracked
-| 134|0x00000000e8600000, 0x00000000e8600000, 0x00000000e8700000| 0%| F| |TAMS 0x00000000e8600000| PB 0x00000000e8600000| Untracked
-| 135|0x00000000e8700000, 0x00000000e8700000, 0x00000000e8800000| 0%| F| |TAMS 0x00000000e8700000| PB 0x00000000e8700000| Untracked
-| 136|0x00000000e8800000, 0x00000000e8800000, 0x00000000e8900000| 0%| F| |TAMS 0x00000000e8800000| PB 0x00000000e8800000| Untracked
-| 137|0x00000000e8900000, 0x00000000e8900000, 0x00000000e8a00000| 0%| F| |TAMS 0x00000000e8900000| PB 0x00000000e8900000| Untracked
-| 138|0x00000000e8a00000, 0x00000000e8a00000, 0x00000000e8b00000| 0%| F| |TAMS 0x00000000e8a00000| PB 0x00000000e8a00000| Untracked
-| 139|0x00000000e8b00000, 0x00000000e8b00000, 0x00000000e8c00000| 0%| F| |TAMS 0x00000000e8b00000| PB 0x00000000e8b00000| Untracked
-| 140|0x00000000e8c00000, 0x00000000e8c00000, 0x00000000e8d00000| 0%| F| |TAMS 0x00000000e8c00000| PB 0x00000000e8c00000| Untracked
-| 141|0x00000000e8d00000, 0x00000000e8d00000, 0x00000000e8e00000| 0%| F| |TAMS 0x00000000e8d00000| PB 0x00000000e8d00000| Untracked
-| 142|0x00000000e8e00000, 0x00000000e8e00000, 0x00000000e8f00000| 0%| F| |TAMS 0x00000000e8e00000| PB 0x00000000e8e00000| Untracked
-| 143|0x00000000e8f00000, 0x00000000e8f00000, 0x00000000e9000000| 0%| F| |TAMS 0x00000000e8f00000| PB 0x00000000e8f00000| Untracked
-| 144|0x00000000e9000000, 0x00000000e9000000, 0x00000000e9100000| 0%| F| |TAMS 0x00000000e9000000| PB 0x00000000e9000000| Untracked
-| 145|0x00000000e9100000, 0x00000000e9100000, 0x00000000e9200000| 0%| F| |TAMS 0x00000000e9100000| PB 0x00000000e9100000| Untracked
-| 146|0x00000000e9200000, 0x00000000e9200000, 0x00000000e9300000| 0%| F| |TAMS 0x00000000e9200000| PB 0x00000000e9200000| Untracked
-| 147|0x00000000e9300000, 0x00000000e9300000, 0x00000000e9400000| 0%| F| |TAMS 0x00000000e9300000| PB 0x00000000e9300000| Untracked
-| 148|0x00000000e9400000, 0x00000000e94c7350, 0x00000000e9500000| 77%| E| |TAMS 0x00000000e9400000| PB 0x00000000e9400000| Complete
-| 149|0x00000000e9500000, 0x00000000e9600000, 0x00000000e9600000|100%| E| |TAMS 0x00000000e9500000| PB 0x00000000e9500000| Complete
-| 150|0x00000000e9600000, 0x00000000e9700000, 0x00000000e9700000|100%| E|CS|TAMS 0x00000000e9600000| PB 0x00000000e9600000| Complete
-| 151|0x00000000e9700000, 0x00000000e9800000, 0x00000000e9800000|100%| E|CS|TAMS 0x00000000e9700000| PB 0x00000000e9700000| Complete
-| 152|0x00000000e9800000, 0x00000000e9900000, 0x00000000e9900000|100%| E|CS|TAMS 0x00000000e9800000| PB 0x00000000e9800000| Complete
-| 153|0x00000000e9900000, 0x00000000e9a00000, 0x00000000e9a00000|100%| E|CS|TAMS 0x00000000e9900000| PB 0x00000000e9900000| Complete
-| 154|0x00000000e9a00000, 0x00000000e9b00000, 0x00000000e9b00000|100%| E|CS|TAMS 0x00000000e9a00000| PB 0x00000000e9a00000| Complete
-| 155|0x00000000e9b00000, 0x00000000e9c00000, 0x00000000e9c00000|100%| E|CS|TAMS 0x00000000e9b00000| PB 0x00000000e9b00000| Complete
-| 156|0x00000000e9c00000, 0x00000000e9d00000, 0x00000000e9d00000|100%| E|CS|TAMS 0x00000000e9c00000| PB 0x00000000e9c00000| Complete
-| 157|0x00000000e9d00000, 0x00000000e9e00000, 0x00000000e9e00000|100%| E|CS|TAMS 0x00000000e9d00000| PB 0x00000000e9d00000| Complete
-| 158|0x00000000e9e00000, 0x00000000e9f00000, 0x00000000e9f00000|100%| E|CS|TAMS 0x00000000e9e00000| PB 0x00000000e9e00000| Complete
-| 159|0x00000000e9f00000, 0x00000000ea000000, 0x00000000ea000000|100%| E|CS|TAMS 0x00000000e9f00000| PB 0x00000000e9f00000| Complete
-| 160|0x00000000ea000000, 0x00000000ea100000, 0x00000000ea100000|100%| E|CS|TAMS 0x00000000ea000000| PB 0x00000000ea000000| Complete
-| 161|0x00000000ea100000, 0x00000000ea200000, 0x00000000ea200000|100%| E|CS|TAMS 0x00000000ea100000| PB 0x00000000ea100000| Complete
-| 162|0x00000000ea200000, 0x00000000ea300000, 0x00000000ea300000|100%| E|CS|TAMS 0x00000000ea200000| PB 0x00000000ea200000| Complete
-| 163|0x00000000ea300000, 0x00000000ea400000, 0x00000000ea400000|100%| E|CS|TAMS 0x00000000ea300000| PB 0x00000000ea300000| Complete
-| 164|0x00000000ea400000, 0x00000000ea500000, 0x00000000ea500000|100%| E|CS|TAMS 0x00000000ea400000| PB 0x00000000ea400000| Complete
-| 165|0x00000000ea500000, 0x00000000ea600000, 0x00000000ea600000|100%| E|CS|TAMS 0x00000000ea500000| PB 0x00000000ea500000| Complete
-| 166|0x00000000ea600000, 0x00000000ea700000, 0x00000000ea700000|100%| E|CS|TAMS 0x00000000ea600000| PB 0x00000000ea600000| Complete
-| 167|0x00000000ea700000, 0x00000000ea800000, 0x00000000ea800000|100%| E|CS|TAMS 0x00000000ea700000| PB 0x00000000ea700000| Complete
-| 168|0x00000000ea800000, 0x00000000ea900000, 0x00000000ea900000|100%| E|CS|TAMS 0x00000000ea800000| PB 0x00000000ea800000| Complete
-| 169|0x00000000ea900000, 0x00000000eaa00000, 0x00000000eaa00000|100%| E|CS|TAMS 0x00000000ea900000| PB 0x00000000ea900000| Complete
-| 170|0x00000000eaa00000, 0x00000000eab00000, 0x00000000eab00000|100%| E|CS|TAMS 0x00000000eaa00000| PB 0x00000000eaa00000| Complete
-| 171|0x00000000eab00000, 0x00000000eac00000, 0x00000000eac00000|100%| E|CS|TAMS 0x00000000eab00000| PB 0x00000000eab00000| Complete
-| 172|0x00000000eac00000, 0x00000000ead00000, 0x00000000ead00000|100%| E|CS|TAMS 0x00000000eac00000| PB 0x00000000eac00000| Complete
-| 173|0x00000000ead00000, 0x00000000eae00000, 0x00000000eae00000|100%| E|CS|TAMS 0x00000000ead00000| PB 0x00000000ead00000| Complete
-| 174|0x00000000eae00000, 0x00000000eaf00000, 0x00000000eaf00000|100%| E|CS|TAMS 0x00000000eae00000| PB 0x00000000eae00000| Complete
-| 175|0x00000000eaf00000, 0x00000000eb000000, 0x00000000eb000000|100%| E|CS|TAMS 0x00000000eaf00000| PB 0x00000000eaf00000| Complete
-| 176|0x00000000eb000000, 0x00000000eb100000, 0x00000000eb100000|100%| E|CS|TAMS 0x00000000eb000000| PB 0x00000000eb000000| Complete
-| 177|0x00000000eb100000, 0x00000000eb200000, 0x00000000eb200000|100%| E|CS|TAMS 0x00000000eb100000| PB 0x00000000eb100000| Complete
-| 178|0x00000000eb200000, 0x00000000eb300000, 0x00000000eb300000|100%| E|CS|TAMS 0x00000000eb200000| PB 0x00000000eb200000| Complete
-| 179|0x00000000eb300000, 0x00000000eb400000, 0x00000000eb400000|100%| E|CS|TAMS 0x00000000eb300000| PB 0x00000000eb300000| Complete
-| 180|0x00000000eb400000, 0x00000000eb500000, 0x00000000eb500000|100%| E|CS|TAMS 0x00000000eb400000| PB 0x00000000eb400000| Complete
-| 181|0x00000000eb500000, 0x00000000eb600000, 0x00000000eb600000|100%| E|CS|TAMS 0x00000000eb500000| PB 0x00000000eb500000| Complete
-| 182|0x00000000eb600000, 0x00000000eb700000, 0x00000000eb700000|100%| E|CS|TAMS 0x00000000eb600000| PB 0x00000000eb600000| Complete
-| 183|0x00000000eb700000, 0x00000000eb800000, 0x00000000eb800000|100%| E|CS|TAMS 0x00000000eb700000| PB 0x00000000eb700000| Complete
-| 184|0x00000000eb800000, 0x00000000eb900000, 0x00000000eb900000|100%| E|CS|TAMS 0x00000000eb800000| PB 0x00000000eb800000| Complete
-| 185|0x00000000eb900000, 0x00000000eba00000, 0x00000000eba00000|100%| E|CS|TAMS 0x00000000eb900000| PB 0x00000000eb900000| Complete
-| 186|0x00000000eba00000, 0x00000000ebb00000, 0x00000000ebb00000|100%| E|CS|TAMS 0x00000000eba00000| PB 0x00000000eba00000| Complete
-| 187|0x00000000ebb00000, 0x00000000ebc00000, 0x00000000ebc00000|100%| E|CS|TAMS 0x00000000ebb00000| PB 0x00000000ebb00000| Complete
-| 188|0x00000000ebc00000, 0x00000000ebd00000, 0x00000000ebd00000|100%| E|CS|TAMS 0x00000000ebc00000| PB 0x00000000ebc00000| Complete
-| 189|0x00000000ebd00000, 0x00000000ebe00000, 0x00000000ebe00000|100%| E|CS|TAMS 0x00000000ebd00000| PB 0x00000000ebd00000| Complete
-| 190|0x00000000ebe00000, 0x00000000ebf00000, 0x00000000ebf00000|100%| E|CS|TAMS 0x00000000ebe00000| PB 0x00000000ebe00000| Complete
-| 191|0x00000000ebf00000, 0x00000000ec000000, 0x00000000ec000000|100%| E|CS|TAMS 0x00000000ebf00000| PB 0x00000000ebf00000| Complete
-| 192|0x00000000ec000000, 0x00000000ec100000, 0x00000000ec100000|100%| E|CS|TAMS 0x00000000ec000000| PB 0x00000000ec000000| Complete
-| 193|0x00000000ec100000, 0x00000000ec200000, 0x00000000ec200000|100%| E|CS|TAMS 0x00000000ec100000| PB 0x00000000ec100000| Complete
-| 194|0x00000000ec200000, 0x00000000ec300000, 0x00000000ec300000|100%| E|CS|TAMS 0x00000000ec200000| PB 0x00000000ec200000| Complete
-| 195|0x00000000ec300000, 0x00000000ec400000, 0x00000000ec400000|100%| E|CS|TAMS 0x00000000ec300000| PB 0x00000000ec300000| Complete
-| 196|0x00000000ec400000, 0x00000000ec500000, 0x00000000ec500000|100%| E|CS|TAMS 0x00000000ec400000| PB 0x00000000ec400000| Complete
-| 197|0x00000000ec500000, 0x00000000ec600000, 0x00000000ec600000|100%| E|CS|TAMS 0x00000000ec500000| PB 0x00000000ec500000| Complete
-| 198|0x00000000ec600000, 0x00000000ec700000, 0x00000000ec700000|100%| E|CS|TAMS 0x00000000ec600000| PB 0x00000000ec600000| Complete
-| 199|0x00000000ec700000, 0x00000000ec800000, 0x00000000ec800000|100%| E|CS|TAMS 0x00000000ec700000| PB 0x00000000ec700000| Complete
-| 200|0x00000000ec800000, 0x00000000ec900000, 0x00000000ec900000|100%| E|CS|TAMS 0x00000000ec800000| PB 0x00000000ec800000| Complete
-| 201|0x00000000ec900000, 0x00000000eca00000, 0x00000000eca00000|100%| E|CS|TAMS 0x00000000ec900000| PB 0x00000000ec900000| Complete
-| 202|0x00000000eca00000, 0x00000000ecb00000, 0x00000000ecb00000|100%| E|CS|TAMS 0x00000000eca00000| PB 0x00000000eca00000| Complete
-| 203|0x00000000ecb00000, 0x00000000ecc00000, 0x00000000ecc00000|100%| E|CS|TAMS 0x00000000ecb00000| PB 0x00000000ecb00000| Complete
-| 204|0x00000000ecc00000, 0x00000000ecd00000, 0x00000000ecd00000|100%| E|CS|TAMS 0x00000000ecc00000| PB 0x00000000ecc00000| Complete
-| 205|0x00000000ecd00000, 0x00000000ece00000, 0x00000000ece00000|100%| E|CS|TAMS 0x00000000ecd00000| PB 0x00000000ecd00000| Complete
-| 206|0x00000000ece00000, 0x00000000ecf00000, 0x00000000ecf00000|100%| E|CS|TAMS 0x00000000ece00000| PB 0x00000000ece00000| Complete
-| 207|0x00000000ecf00000, 0x00000000ed000000, 0x00000000ed000000|100%| E|CS|TAMS 0x00000000ecf00000| PB 0x00000000ecf00000| Complete
-| 208|0x00000000ed000000, 0x00000000ed100000, 0x00000000ed100000|100%| E|CS|TAMS 0x00000000ed000000| PB 0x00000000ed000000| Complete
-| 209|0x00000000ed100000, 0x00000000ed200000, 0x00000000ed200000|100%| E|CS|TAMS 0x00000000ed100000| PB 0x00000000ed100000| Complete
-| 210|0x00000000ed200000, 0x00000000ed300000, 0x00000000ed300000|100%| E|CS|TAMS 0x00000000ed200000| PB 0x00000000ed200000| Complete
-| 211|0x00000000ed300000, 0x00000000ed400000, 0x00000000ed400000|100%| E|CS|TAMS 0x00000000ed300000| PB 0x00000000ed300000| Complete
-| 212|0x00000000ed400000, 0x00000000ed500000, 0x00000000ed500000|100%| E|CS|TAMS 0x00000000ed400000| PB 0x00000000ed400000| Complete
-| 213|0x00000000ed500000, 0x00000000ed600000, 0x00000000ed600000|100%| E|CS|TAMS 0x00000000ed500000| PB 0x00000000ed500000| Complete
-| 214|0x00000000ed600000, 0x00000000ed700000, 0x00000000ed700000|100%| E|CS|TAMS 0x00000000ed600000| PB 0x00000000ed600000| Complete
-| 215|0x00000000ed700000, 0x00000000ed800000, 0x00000000ed800000|100%| E|CS|TAMS 0x00000000ed700000| PB 0x00000000ed700000| Complete
-| 216|0x00000000ed800000, 0x00000000ed900000, 0x00000000ed900000|100%| E|CS|TAMS 0x00000000ed800000| PB 0x00000000ed800000| Complete
-| 217|0x00000000ed900000, 0x00000000eda00000, 0x00000000eda00000|100%| E|CS|TAMS 0x00000000ed900000| PB 0x00000000ed900000| Complete
-| 218|0x00000000eda00000, 0x00000000edb00000, 0x00000000edb00000|100%| E|CS|TAMS 0x00000000eda00000| PB 0x00000000eda00000| Complete
-| 219|0x00000000edb00000, 0x00000000edc00000, 0x00000000edc00000|100%| E|CS|TAMS 0x00000000edb00000| PB 0x00000000edb00000| Complete
-| 220|0x00000000edc00000, 0x00000000edd00000, 0x00000000edd00000|100%| E|CS|TAMS 0x00000000edc00000| PB 0x00000000edc00000| Complete
-| 221|0x00000000edd00000, 0x00000000ede00000, 0x00000000ede00000|100%| E|CS|TAMS 0x00000000edd00000| PB 0x00000000edd00000| Complete
-| 222|0x00000000ede00000, 0x00000000edf00000, 0x00000000edf00000|100%| E|CS|TAMS 0x00000000ede00000| PB 0x00000000ede00000| Complete
-| 223|0x00000000edf00000, 0x00000000ee000000, 0x00000000ee000000|100%| E|CS|TAMS 0x00000000edf00000| PB 0x00000000edf00000| Complete
-| 224|0x00000000ee000000, 0x00000000ee100000, 0x00000000ee100000|100%| E|CS|TAMS 0x00000000ee000000| PB 0x00000000ee000000| Complete
-| 225|0x00000000ee100000, 0x00000000ee200000, 0x00000000ee200000|100%| E|CS|TAMS 0x00000000ee100000| PB 0x00000000ee100000| Complete
-| 226|0x00000000ee200000, 0x00000000ee300000, 0x00000000ee300000|100%| E|CS|TAMS 0x00000000ee200000| PB 0x00000000ee200000| Complete
-| 227|0x00000000ee300000, 0x00000000ee400000, 0x00000000ee400000|100%| E|CS|TAMS 0x00000000ee300000| PB 0x00000000ee300000| Complete
-| 228|0x00000000ee400000, 0x00000000ee500000, 0x00000000ee500000|100%| E|CS|TAMS 0x00000000ee400000| PB 0x00000000ee400000| Complete
-| 229|0x00000000ee500000, 0x00000000ee600000, 0x00000000ee600000|100%| E|CS|TAMS 0x00000000ee500000| PB 0x00000000ee500000| Complete
-| 230|0x00000000ee600000, 0x00000000ee700000, 0x00000000ee700000|100%| E|CS|TAMS 0x00000000ee600000| PB 0x00000000ee600000| Complete
-| 231|0x00000000ee700000, 0x00000000ee800000, 0x00000000ee800000|100%| E|CS|TAMS 0x00000000ee700000| PB 0x00000000ee700000| Complete
-| 232|0x00000000ee800000, 0x00000000ee900000, 0x00000000ee900000|100%| E|CS|TAMS 0x00000000ee800000| PB 0x00000000ee800000| Complete
-| 233|0x00000000ee900000, 0x00000000eea00000, 0x00000000eea00000|100%| E|CS|TAMS 0x00000000ee900000| PB 0x00000000ee900000| Complete
-| 234|0x00000000eea00000, 0x00000000eeb00000, 0x00000000eeb00000|100%| E|CS|TAMS 0x00000000eea00000| PB 0x00000000eea00000| Complete
-| 235|0x00000000eeb00000, 0x00000000eec00000, 0x00000000eec00000|100%| E|CS|TAMS 0x00000000eeb00000| PB 0x00000000eeb00000| Complete
-| 236|0x00000000eec00000, 0x00000000eed00000, 0x00000000eed00000|100%| E|CS|TAMS 0x00000000eec00000| PB 0x00000000eec00000| Complete
-| 237|0x00000000eed00000, 0x00000000eee00000, 0x00000000eee00000|100%| E|CS|TAMS 0x00000000eed00000| PB 0x00000000eed00000| Complete
-| 238|0x00000000eee00000, 0x00000000eef00000, 0x00000000eef00000|100%| E|CS|TAMS 0x00000000eee00000| PB 0x00000000eee00000| Complete
-| 239|0x00000000eef00000, 0x00000000ef000000, 0x00000000ef000000|100%| E|CS|TAMS 0x00000000eef00000| PB 0x00000000eef00000| Complete
-| 240|0x00000000ef000000, 0x00000000ef100000, 0x00000000ef100000|100%| E|CS|TAMS 0x00000000ef000000| PB 0x00000000ef000000| Complete
-| 241|0x00000000ef100000, 0x00000000ef200000, 0x00000000ef200000|100%| E|CS|TAMS 0x00000000ef100000| PB 0x00000000ef100000| Complete
-| 242|0x00000000ef200000, 0x00000000ef300000, 0x00000000ef300000|100%| E|CS|TAMS 0x00000000ef200000| PB 0x00000000ef200000| Complete
-| 243|0x00000000ef300000, 0x00000000ef400000, 0x00000000ef400000|100%| E|CS|TAMS 0x00000000ef300000| PB 0x00000000ef300000| Complete
-| 244|0x00000000ef400000, 0x00000000ef500000, 0x00000000ef500000|100%| E|CS|TAMS 0x00000000ef400000| PB 0x00000000ef400000| Complete
-| 245|0x00000000ef500000, 0x00000000ef600000, 0x00000000ef600000|100%| E|CS|TAMS 0x00000000ef500000| PB 0x00000000ef500000| Complete
-| 246|0x00000000ef600000, 0x00000000ef700000, 0x00000000ef700000|100%| E|CS|TAMS 0x00000000ef600000| PB 0x00000000ef600000| Complete
-| 247|0x00000000ef700000, 0x00000000ef800000, 0x00000000ef800000|100%| E|CS|TAMS 0x00000000ef700000| PB 0x00000000ef700000| Complete
-| 248|0x00000000ef800000, 0x00000000ef900000, 0x00000000ef900000|100%| E|CS|TAMS 0x00000000ef800000| PB 0x00000000ef800000| Complete
-| 249|0x00000000ef900000, 0x00000000efa00000, 0x00000000efa00000|100%| E|CS|TAMS 0x00000000ef900000| PB 0x00000000ef900000| Complete
-| 250|0x00000000efa00000, 0x00000000efb00000, 0x00000000efb00000|100%| E|CS|TAMS 0x00000000efa00000| PB 0x00000000efa00000| Complete
-| 251|0x00000000efb00000, 0x00000000efc00000, 0x00000000efc00000|100%| E|CS|TAMS 0x00000000efb00000| PB 0x00000000efb00000| Complete
-| 252|0x00000000efc00000, 0x00000000efd00000, 0x00000000efd00000|100%| E|CS|TAMS 0x00000000efc00000| PB 0x00000000efc00000| Complete
-| 253|0x00000000efd00000, 0x00000000efe00000, 0x00000000efe00000|100%| E|CS|TAMS 0x00000000efd00000| PB 0x00000000efd00000| Complete
-| 254|0x00000000efe00000, 0x00000000eff00000, 0x00000000eff00000|100%| E|CS|TAMS 0x00000000efe00000| PB 0x00000000efe00000| Complete
-| 255|0x00000000eff00000, 0x00000000f0000000, 0x00000000f0000000|100%| E|CS|TAMS 0x00000000eff00000| PB 0x00000000eff00000| Complete
-
-Card table byte_map: [0x0000019745180000,0x0000019745280000] _byte_map_base: 0x0000019744a80000
-
-Marking Bits: (CMBitMap*) 0x000001972d32b1c0
- Bits: [0x0000019745280000, 0x0000019745a80000)
-
-Polling page: 0x000001972b1c0000
-
-Metaspace:
-
-Usage:
- Non-class: 60.95 MB used.
- Class: 9.88 MB used.
- Both: 70.83 MB used.
-
-Virtual space:
- Non-class space: 64.00 MB reserved, 62.00 MB ( 97%) committed, 1 nodes.
- Class space: 320.00 MB reserved, 10.94 MB ( 3%) committed, 1 nodes.
- Both: 384.00 MB reserved, 72.94 MB ( 19%) committed.
-
-Chunk freelists:
- Non-Class: 1.94 MB
- Class: 5.03 MB
- Both: 6.97 MB
-
-MaxMetaspaceSize: 384.00 MB
-CompressedClassSpaceSize: 320.00 MB
-Initial GC threshold: 21.00 MB
-Current GC threshold: 98.44 MB
-CDS: on
- - commit_granule_bytes: 65536.
- - commit_granule_words: 8192.
- - virtual_space_node_default_size: 8388608.
- - enlarge_chunks_in_place: 1.
- - use_allocation_guard: 0.
-
-
-Internal statistics:
-
-num_allocs_failed_limit: 12.
-num_arena_births: 3928.
-num_arena_deaths: 0.
-num_vsnodes_births: 2.
-num_vsnodes_deaths: 0.
-num_space_committed: 1167.
-num_space_uncommitted: 0.
-num_chunks_returned_to_freelist: 12.
-num_chunks_taken_from_freelist: 7571.
-num_chunk_merges: 12.
-num_chunk_splits: 4841.
-num_chunks_enlarged: 2861.
-num_inconsistent_stats: 0.
-
-CodeHeap 'non-profiled nmethods': size=120000Kb used=7196Kb max_used=7196Kb free=112803Kb
- bounds [0x000001973d4f0000, 0x000001973dc00000, 0x0000019744a20000]
-CodeHeap 'profiled nmethods': size=120000Kb used=24327Kb max_used=24327Kb free=95672Kb
- bounds [0x0000019735a20000, 0x00000197371f0000, 0x000001973cf50000]
-CodeHeap 'non-nmethods': size=5760Kb used=2627Kb max_used=2680Kb free=3133Kb
- bounds [0x000001973cf50000, 0x000001973d200000, 0x000001973d4f0000]
-CodeCache: size=245760Kb, used=34150Kb, max_used=34203Kb, free=211608Kb
- total_blobs=12682, nmethods=11788, adapters=798, full_count=0
-Compilation: enabled, stopped_count=0, restarted_count=0
-
-Compilation events (20 events):
-Event: 20.029 Thread 0x000001974886e8a0 nmethod 12450 0x0000019737183c10 code [0x0000019737183dc0, 0x0000019737183f80]
-Event: 20.029 Thread 0x000001974886e8a0 12451 ! 3 com.sun.tools.javac.parser.JavacParser::literal (693 bytes)
-Event: 20.033 Thread 0x000001974886e8a0 nmethod 12451 0x0000019737184090 code [0x00000197371848e0, 0x0000019737188b08]
-Event: 20.033 Thread 0x000001974886e8a0 12452 3 com.sun.tools.javac.parser.Tokens$StringToken::checkKind (43 bytes)
-Event: 20.033 Thread 0x000001974886e8a0 nmethod 12452 0x000001973718a490 code [0x000001973718a6e0, 0x000001973718ae68]
-Event: 20.033 Thread 0x000001974886e8a0 12453 3 com.sun.tools.javac.parser.JavacParser::isRecordStart (51 bytes)
-Event: 20.033 Thread 0x000001974886e8a0 nmethod 12453 0x000001973718b190 code [0x000001973718b3a0, 0x000001973718bb90]
-Event: 20.034 Thread 0x000001974886e8a0 12455 3 com.sun.tools.javac.parser.JavacParser::variableDeclaratorsRest (86 bytes)
-Event: 20.034 Thread 0x000001974886e8a0 nmethod 12455 0x000001973718be90 code [0x000001973718c100, 0x000001973718cc00]
-Event: 20.034 Thread 0x000001974886e8a0 12457 3 com.sun.tools.javac.tree.TreeInfo::opPrec (357 bytes)
-Event: 20.034 Thread 0x000001974886e8a0 nmethod 12457 0x000001973718d090 code [0x000001973718d2c0, 0x000001973718dd30]
-Event: 20.034 Thread 0x000001974886e8a0 12456 3 com.sun.tools.javac.parser.JavacParser::variableDeclaratorRest (385 bytes)
-Event: 20.036 Thread 0x000001974886e8a0 nmethod 12456 0x000001973718de90 code [0x000001973718e3c0, 0x0000019737190e58]
-Event: 20.036 Thread 0x000001974886e8a0 12454 3 com.sun.tools.javac.parser.JavacParser::classOrInterfaceOrRecordBodyDeclaration (197 bytes)
-Event: 20.037 Thread 0x000001974886e8a0 nmethod 12454 0x0000019737191f90 code [0x0000019737192300, 0x0000019737193ac8]
-Event: 20.037 Thread 0x000001974886e8a0 12458 1 com.sun.tools.javac.tree.JCTree$JCOperatorExpression::getTag (5 bytes)
-Event: 20.037 Thread 0x000001974886e8a0 nmethod 12458 0x000001973dbec710 code [0x000001973dbec8a0, 0x000001973dbec968]
-Event: 20.043 Thread 0x000001974886e8a0 12459 3 com.sun.tools.javac.util.IntHashTable::rehash (88 bytes)
-Event: 20.043 Thread 0x000001974886e8a0 nmethod 12459 0x0000019737194210 code [0x0000019737194400, 0x00000197371949a8]
-Event: 20.043 Thread 0x000001974886e8a0 12460 3 com.sun.tools.javac.parser.JavacParser::parseSimpleStatement (1257 bytes)
-
-GC Heap History (20 events):
-Event: 0.636 GC heap before
-{Heap before GC invocations=0 (full 0):
- garbage-first heap total 262144K, used 23552K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 23 young (23552K), 0 survivors (0K)
- Metaspace used 937K, committed 1088K, reserved 393216K
- class space used 76K, committed 128K, reserved 327680K
-}
-Event: 0.640 GC heap after
-{Heap after GC invocations=1 (full 0):
- garbage-first heap total 262144K, used 1735K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 2 young (2048K), 2 survivors (2048K)
- Metaspace used 937K, committed 1088K, reserved 393216K
- class space used 76K, committed 128K, reserved 327680K
-}
-Event: 1.873 GC heap before
-{Heap before GC invocations=1 (full 0):
- garbage-first heap total 262144K, used 42695K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 39 young (39936K), 2 survivors (2048K)
- Metaspace used 4484K, committed 4672K, reserved 393216K
- class space used 564K, committed 640K, reserved 327680K
-}
-Event: 1.878 GC heap after
-{Heap after GC invocations=2 (full 0):
- garbage-first heap total 262144K, used 11201K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 5 young (5120K), 5 survivors (5120K)
- Metaspace used 4484K, committed 4672K, reserved 393216K
- class space used 564K, committed 640K, reserved 327680K
-}
-Event: 3.150 GC heap before
-{Heap before GC invocations=2 (full 0):
- garbage-first heap total 262144K, used 72641K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 63 young (64512K), 5 survivors (5120K)
- Metaspace used 8180K, committed 8448K, reserved 393216K
- class space used 1101K, committed 1216K, reserved 327680K
-}
-Event: 3.156 GC heap after
-{Heap after GC invocations=3 (full 0):
- garbage-first heap total 262144K, used 18240K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 8 young (8192K), 8 survivors (8192K)
- Metaspace used 8180K, committed 8448K, reserved 393216K
- class space used 1101K, committed 1216K, reserved 327680K
-}
-Event: 5.315 GC heap before
-{Heap before GC invocations=3 (full 0):
- garbage-first heap total 262144K, used 98112K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 87 young (89088K), 8 survivors (8192K)
- Metaspace used 20919K, committed 21504K, reserved 393216K
- class space used 3050K, committed 3328K, reserved 327680K
-}
-Event: 5.321 GC heap after
-{Heap after GC invocations=4 (full 0):
- garbage-first heap total 262144K, used 24257K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 14 young (14336K), 14 survivors (14336K)
- Metaspace used 20919K, committed 21504K, reserved 393216K
- class space used 3050K, committed 3328K, reserved 327680K
-}
-Event: 7.341 GC heap before
-{Heap before GC invocations=5 (full 0):
- garbage-first heap total 262144K, used 129729K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 119 young (121856K), 14 survivors (14336K)
- Metaspace used 34874K, committed 35968K, reserved 393216K
- class space used 4991K, committed 5568K, reserved 327680K
-}
-Event: 7.356 GC heap after
-{Heap after GC invocations=6 (full 0):
- garbage-first heap total 262144K, used 33047K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 15 young (15360K), 15 survivors (15360K)
- Metaspace used 34874K, committed 35968K, reserved 393216K
- class space used 4991K, committed 5568K, reserved 327680K
-}
-Event: 12.582 GC heap before
-{Heap before GC invocations=7 (full 0):
- garbage-first heap total 262144K, used 180503K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 153 young (156672K), 15 survivors (15360K)
- Metaspace used 50197K, committed 51904K, reserved 393216K
- class space used 7202K, committed 8000K, reserved 327680K
-}
-Event: 12.597 GC heap after
-{Heap after GC invocations=8 (full 0):
- garbage-first heap total 262144K, used 40549K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 17 young (17408K), 17 survivors (17408K)
- Metaspace used 50197K, committed 51904K, reserved 393216K
- class space used 7202K, committed 8000K, reserved 327680K
-}
-Event: 14.958 GC heap before
-{Heap before GC invocations=8 (full 0):
- garbage-first heap total 262144K, used 165477K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 140 young (143360K), 17 survivors (17408K)
- Metaspace used 58209K, committed 60096K, reserved 393216K
- class space used 8399K, committed 9344K, reserved 327680K
-}
-Event: 14.973 GC heap after
-{Heap after GC invocations=9 (full 0):
- garbage-first heap total 262144K, used 52883K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 20 young (20480K), 20 survivors (20480K)
- Metaspace used 58209K, committed 60096K, reserved 393216K
- class space used 8399K, committed 9344K, reserved 327680K
-}
-Event: 15.016 GC heap before
-{Heap before GC invocations=9 (full 0):
- garbage-first heap total 262144K, used 54931K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 23 young (23552K), 20 survivors (20480K)
- Metaspace used 58497K, committed 60416K, reserved 393216K
- class space used 8427K, committed 9408K, reserved 327680K
-}
-Event: 15.023 GC heap after
-{Heap after GC invocations=10 (full 0):
- garbage-first heap total 262144K, used 56670K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 3 young (3072K), 3 survivors (3072K)
- Metaspace used 58497K, committed 60416K, reserved 393216K
- class space used 8427K, committed 9408K, reserved 327680K
-}
-Event: 16.906 GC heap before
-{Heap before GC invocations=11 (full 0):
- garbage-first heap total 262144K, used 209246K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 153 young (156672K), 3 survivors (3072K)
- Metaspace used 60656K, committed 62720K, reserved 393216K
- class space used 8568K, committed 9600K, reserved 327680K
-}
-Event: 16.911 GC heap after
-{Heap after GC invocations=12 (full 0):
- garbage-first heap total 262144K, used 69349K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 16 young (16384K), 16 survivors (16384K)
- Metaspace used 60656K, committed 62720K, reserved 393216K
- class space used 8568K, committed 9600K, reserved 327680K
-}
-Event: 18.249 GC heap before
-{Heap before GC invocations=12 (full 0):
- garbage-first heap total 262144K, used 208613K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 153 young (156672K), 16 survivors (16384K)
- Metaspace used 64256K, committed 66432K, reserved 393216K
- class space used 9125K, committed 10240K, reserved 327680K
-}
-Event: 18.255 GC heap after
-{Heap after GC invocations=13 (full 0):
- garbage-first heap total 262144K, used 72345K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 10 young (10240K), 10 survivors (10240K)
- Metaspace used 64256K, committed 66432K, reserved 393216K
- class space used 9125K, committed 10240K, reserved 327680K
-}
-
-Dll operation events (15 events):
-Event: 0.026 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\java.dll
-Event: 0.074 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\jsvml.dll
-Event: 0.122 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\zip.dll
-Event: 0.131 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\instrument.dll
-Event: 0.138 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\net.dll
-Event: 0.144 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\nio.dll
-Event: 0.148 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\zip.dll
-Event: 0.643 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\jimage.dll
-Event: 0.974 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\verify.dll
-Event: 1.077 Loaded shared library C:\Users\jade\.gradle\native\1def1411415f61bf3af743bc5b6707747c0891f09f0c88961ee8f79bc544acac\windows-amd64\native-platform.dll
-Event: 1.101 Loaded shared library C:\Users\jade\.gradle\native\0.2.7\x86_64-windows-gnu\gradle-fileevents.dll
-Event: 2.729 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\management.dll
-Event: 2.734 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\management_ext.dll
-Event: 3.098 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\extnet.dll
-Event: 3.372 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\sunmscapi.dll
-
-Deoptimization events (20 events):
-Event: 19.940 Thread 0x0000019762caa1b0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000001973dbe3a70 relative=0x00000000000000d0
-Event: 19.940 Thread 0x0000019762caa1b0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000001973dbe3a70 method=com.sun.tools.javac.parser.UnicodeReader.nextUnicodeInputCharacter()V @ 28 c2
-Event: 19.940 Thread 0x0000019762caa1b0 DEOPT PACKING pc=0x000001973dbe3a70 sp=0x0000006c4c5f8f70
-Event: 19.940 Thread 0x0000019762caa1b0 DEOPT UNPACKING pc=0x000001973cfa4422 sp=0x0000006c4c5f8f18 mode 2
-Event: 19.948 Thread 0x0000019762caa1b0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000001973d5c4a10 relative=0x00000000000004d0
-Event: 19.948 Thread 0x0000019762caa1b0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000001973d5c4a10 method=java.lang.String.(Ljava/lang/AbstractStringBuilder;Ljava/lang/Void;)V @ 19 c2
-Event: 19.948 Thread 0x0000019762caa1b0 DEOPT PACKING pc=0x000001973d5c4a10 sp=0x0000006c4c5f88e0
-Event: 19.948 Thread 0x0000019762caa1b0 DEOPT UNPACKING pc=0x000001973cfa4422 sp=0x0000006c4c5f8898 mode 2
-Event: 19.960 Thread 0x0000019762caa1b0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000001973d8db64c relative=0x000000000000088c
-Event: 19.960 Thread 0x0000019762caa1b0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000001973d8db64c method=java.lang.String.getBytes([BIB)V @ 5 c2
-Event: 19.960 Thread 0x0000019762caa1b0 DEOPT PACKING pc=0x000001973d8db64c sp=0x0000006c4c5f8900
-Event: 19.960 Thread 0x0000019762caa1b0 DEOPT UNPACKING pc=0x000001973cfa4422 sp=0x0000006c4c5f8720 mode 2
-Event: 19.960 Thread 0x0000019762caa1b0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000001973d54978c relative=0x00000000000000ec
-Event: 19.960 Thread 0x0000019762caa1b0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000001973d54978c method=java.lang.String.getBytes([BIB)V @ 5 c2
-Event: 19.960 Thread 0x0000019762caa1b0 DEOPT PACKING pc=0x000001973d54978c sp=0x0000006c4c5f8750
-Event: 19.960 Thread 0x0000019762caa1b0 DEOPT UNPACKING pc=0x000001973cfa4422 sp=0x0000006c4c5f8718 mode 2
-Event: 20.004 Thread 0x0000019762caa1b0 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000001973d64d768 relative=0x0000000000000388
-Event: 20.004 Thread 0x0000019762caa1b0 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000001973d64d768 method=java.lang.Integer.parseInt(Ljava/lang/String;I)I @ 119 c2
-Event: 20.005 Thread 0x0000019762caa1b0 DEOPT PACKING pc=0x000001973d64d768 sp=0x0000006c4c5f8a20
-Event: 20.005 Thread 0x0000019762caa1b0 DEOPT UNPACKING pc=0x000001973cfa4422 sp=0x0000006c4c5f8998 mode 2
-
-Classes loaded (20 events):
-Event: 19.136 Loading class java/util/ResourceBundle$BundleReference
-Event: 19.136 Loading class java/util/ResourceBundle$BundleReference done
-Event: 19.273 Loading class java/util/ServiceLoader$ProviderSpliterator
-Event: 19.273 Loading class java/util/ServiceLoader$ProviderSpliterator done
-Event: 19.692 Loading class java/util/zip/ZipInputStream
-Event: 19.693 Loading class java/util/zip/ZipInputStream done
-Event: 19.694 Loading class java/net/URLDecoder
-Event: 19.695 Loading class java/net/URLDecoder done
-Event: 19.696 Loading class java/util/WeakHashMap$EntrySet
-Event: 19.696 Loading class java/util/WeakHashMap$EntrySet done
-Event: 19.696 Loading class java/util/WeakHashMap$EntryIterator
-Event: 19.696 Loading class java/util/WeakHashMap$EntryIterator done
-Event: 19.957 Loading class java/lang/StringUTF16$LinesSpliterator
-Event: 19.957 Loading class java/lang/StringUTF16$LinesSpliterator done
-Event: 19.957 Loading class java/util/ImmutableCollections$Access
-Event: 19.958 Loading class java/util/ImmutableCollections$Access done
-Event: 19.958 Loading class java/util/ImmutableCollections$Access$1
-Event: 19.958 Loading class jdk/internal/access/JavaUtilCollectionAccess
-Event: 19.958 Loading class jdk/internal/access/JavaUtilCollectionAccess done
-Event: 19.958 Loading class java/util/ImmutableCollections$Access$1 done
-
-Classes unloaded (0 events):
-No events
-
-Classes redefined (0 events):
-No events
-
-Internal exceptions (20 events):
-Event: 17.537 Thread 0x000001976379c600 Exception (0x00000000eb1271d8)
-thrown [s\src\hotspot\share\classfile\systemDictionary.cpp, line 313]
-Event: 17.631 Thread 0x000001976379c600 Exception (0x00000000ea79e570)
-thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 840]
-Event: 17.685 Thread 0x000001976379c600 Exception (0x00000000ea43a688)
-thrown [s\src\hotspot\share\classfile\systemDictionary.cpp, line 313]
-Event: 17.685 Thread 0x000001976379c600 Exception (0x00000000ea443c60)
-thrown [s\src\hotspot\share\classfile\systemDictionary.cpp, line 313]
-Event: 17.686 Thread 0x000001976379c600 Exception (0x00000000ea44c490)
-thrown [s\src\hotspot\share\classfile\systemDictionary.cpp, line 313]
-Event: 17.686 Thread 0x000001976379c600 Exception (0x00000000ea469380)
-thrown [s\src\hotspot\share\classfile\systemDictionary.cpp, line 313]
-Event: 17.696 Thread 0x0000019762ca8770 Exception (0x00000000ea3350f0)
-thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773]
-Event: 17.713 Thread 0x0000019762caa1b0 Exception (0x00000000ea2f1828)
-thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773]
-Event: 17.747 Thread 0x0000019762caa1b0 Exception (0x00000000ea0ee498)
-thrown
-Event: 17.898 Thread 0x0000019762caa1b0 Exception (0x00000000e97a3810)
-thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 840]
-Event: 17.904 Thread 0x0000019762caa1b0 Exception ()V> (0x00000000e97c84a0)
-thrown [s\src\hotspot\share\prims\jni.cpp, line 1111]
-Event: 18.037 Thread 0x0000019762caa1b0 Implicit null exception at 0x000001973d741beb to 0x000001973d742758
-Event: 18.041 Thread 0x0000019762caa1b0 Implicit null exception at 0x000001973d885a0a to 0x000001973d885aad
-Event: 18.087 Thread 0x0000019762caa1b0 Exception (0x00000000e87077d8)
-thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773]
-Event: 18.289 Thread 0x0000019762cb45c0 Exception (0x00000000ef1afbf8)
-thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773]
-Event: 18.297 Thread 0x0000019762cb45c0 Exception (0x00000000eecd8de0)
-thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773]
-Event: 19.025 Thread 0x0000019762caa1b0 Exception (0x00000000eb3e5888)
-thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773]
-Event: 19.025 Thread 0x0000019762caa1b0 Exception (0x00000000eb3ede18)
-thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773]
-Event: 19.698 Thread 0x0000019762caa1b0 Implicit null exception at 0x000001973d7a70c3 to 0x000001973d7a7b20
-Event: 19.959 Thread 0x0000019762caa1b0 Exception (0x00000000e9b2af98)
-thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773]
-
-ZGC Phase Switch (0 events):
-No events
-
-VM Operations (20 events):
-Event: 17.862 Executing safepoint VM operation: ICBufferFull done
-Event: 17.984 Executing safepoint VM operation: ICBufferFull
-Event: 17.984 Executing safepoint VM operation: ICBufferFull done
-Event: 18.046 Executing non-safepoint VM operation: HandshakeAllThreads (Deoptimize)
-Event: 18.046 Executing non-safepoint VM operation: HandshakeAllThreads (Deoptimize) done
-Event: 18.249 Executing safepoint VM operation: G1CollectForAllocation (G1 Evacuation Pause)
-Event: 18.255 Executing safepoint VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
-Event: 18.289 Executing non-safepoint VM operation: HandshakeAllThreads (Deoptimize)
-Event: 18.289 Executing non-safepoint VM operation: HandshakeAllThreads (Deoptimize) done
-Event: 18.299 Executing non-safepoint VM operation: HandshakeAllThreads (Deoptimize)
-Event: 18.300 Executing non-safepoint VM operation: HandshakeAllThreads (Deoptimize) done
-Event: 18.335 Executing non-safepoint VM operation: HandshakeAllThreads (Deoptimize)
-Event: 18.335 Executing non-safepoint VM operation: HandshakeAllThreads (Deoptimize) done
-Event: 19.121 Executing non-safepoint VM operation: HandshakeAllThreads (Deoptimize)
-Event: 19.122 Executing non-safepoint VM operation: HandshakeAllThreads (Deoptimize) done
-Event: 19.282 Executing non-safepoint VM operation: HandshakeAllThreads (Deoptimize)
-Event: 19.282 Executing non-safepoint VM operation: HandshakeAllThreads (Deoptimize) done
-Event: 19.282 Executing safepoint VM operation: Cleanup
-Event: 19.282 Executing safepoint VM operation: Cleanup done
-Event: 20.285 Executing safepoint VM operation: Cleanup
-
-Memory protections (0 events):
-No events
-
-Nmethod flushes (20 events):
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x0000019735c71b10
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x0000019735c75290
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x0000019735ca9b90
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x0000019735dca710
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x0000019735dcf810
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x0000019735dcfb10
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x0000019735dd6810
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x0000019735dd8290
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x0000019735e53b10
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x0000019735e53e90
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x0000019735e54710
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x0000019735e54b10
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x0000019735e55210
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x0000019735e76210
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x0000019735e78a90
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x0000019735ebe810
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x0000019735ec1c10
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x000001973600be90
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x0000019736045e90
-Event: 15.052 Thread 0x0000019748837f70 flushing nmethod 0x000001973607b990
-
-Events (20 events):
-Event: 17.700 Thread 0x0000019762ca8770 Thread added: 0x0000019762cae350
-Event: 17.700 Thread 0x0000019762ca8770 Thread added: 0x0000019762cae9e0
-Event: 17.700 Thread 0x0000019762ca8770 Thread added: 0x0000019762cab560
-Event: 17.731 Thread 0x0000019762caa1b0 Thread added: 0x0000019762caf700
-Event: 18.130 Thread 0x0000019762caa1b0 Thread added: 0x0000019762cb0ab0
-Event: 18.176 Thread 0x0000019762caa1b0 Thread added: 0x0000019762cafd90
-Event: 18.176 Thread 0x0000019762caa1b0 Thread added: 0x0000019762caf070
-Event: 18.176 Thread 0x0000019762caa1b0 Thread added: 0x0000019762cb24f0
-Event: 18.177 Thread 0x0000019762caa1b0 Thread added: 0x0000019762cb38a0
-Event: 18.177 Thread 0x0000019762caa1b0 Thread added: 0x0000019762cb2b80
-Event: 18.177 Thread 0x0000019762caa1b0 Thread added: 0x0000019762cb0420
-Event: 18.177 Thread 0x0000019762caa1b0 Thread added: 0x0000019762cb3f30
-Event: 18.177 Thread 0x0000019762caa1b0 Thread added: 0x0000019762cb1140
-Event: 18.177 Thread 0x0000019762caa1b0 Thread added: 0x0000019762cb3210
-Event: 18.178 Thread 0x0000019762caa1b0 Thread added: 0x0000019762cb45c0
-Event: 18.178 Thread 0x0000019762caa1b0 Thread added: 0x0000019762cb4c50
-Event: 18.178 Thread 0x0000019762caa1b0 Thread added: 0x0000019762cb17d0
-Event: 18.178 Thread 0x0000019762caa1b0 Thread added: 0x0000019762cb1e60
-Event: 18.685 Thread 0x0000019763dfb130 Thread exited: 0x0000019763dfb130
-Event: 19.983 Thread 0x000001974886e8a0 Thread added: 0x0000019766ceda10
-
-
-Dynamic libraries:
-0x00007ff7b1ac0000 - 0x00007ff7b1ace000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\java.exe
-0x00007ff8cc1c0000 - 0x00007ff8cc426000 C:\WINDOWS\SYSTEM32\ntdll.dll
-0x00007ff8cb690000 - 0x00007ff8cb759000 C:\WINDOWS\System32\KERNEL32.DLL
-0x00007ff8c9ae0000 - 0x00007ff8c9ede000 C:\WINDOWS\System32\KERNELBASE.dll
-0x00007ff8c97c0000 - 0x00007ff8c990c000 C:\WINDOWS\System32\ucrtbase.dll
-0x00007ff8b8a60000 - 0x00007ff8b8a78000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\jli.dll
-0x00007ff8b8a40000 - 0x00007ff8b8a5e000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\VCRUNTIME140.dll
-0x00007ff8ca870000 - 0x00007ff8caa37000 C:\WINDOWS\System32\USER32.dll
-0x00007ff8c9790000 - 0x00007ff8c97b7000 C:\WINDOWS\System32\win32u.dll
-0x00007ff8cbfb0000 - 0x00007ff8cbfdb000 C:\WINDOWS\System32\GDI32.dll
-0x00007ff8c9920000 - 0x00007ff8c9a4a000 C:\WINDOWS\System32\gdi32full.dll
-0x00007ff8a7790000 - 0x00007ff8a7a22000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.8875_none_3e0d5d42e32fe9dd\COMCTL32.dll
-0x00007ff8c9620000 - 0x00007ff8c96c3000 C:\WINDOWS\System32\msvcp_win.dll
-0x00007ff8ca000000 - 0x00007ff8ca0a9000 C:\WINDOWS\System32\msvcrt.dll
-0x00007ff8ca830000 - 0x00007ff8ca862000 C:\WINDOWS\System32\IMM32.DLL
-0x00007ff8b8ad0000 - 0x00007ff8b8adc000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\vcruntime140_1.dll
-0x00007ff869a00000 - 0x00007ff869a8d000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\msvcp140.dll
-0x00007ff81dab0000 - 0x00007ff81e852000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\server\jvm.dll
-0x00007ff8cb290000 - 0x00007ff8cb347000 C:\WINDOWS\System32\ADVAPI32.dll
-0x00007ff8caa40000 - 0x00007ff8caaea000 C:\WINDOWS\System32\sechost.dll
-0x00007ff8ca0b0000 - 0x00007ff8ca1c8000 C:\WINDOWS\System32\RPCRT4.dll
-0x00007ff8cc0c0000 - 0x00007ff8cc140000 C:\WINDOWS\System32\WS2_32.dll
-0x00007ff8c5970000 - 0x00007ff8c59a6000 C:\WINDOWS\SYSTEM32\WINMM.dll
-0x00007ff8b9b90000 - 0x00007ff8b9b9b000 C:\WINDOWS\SYSTEM32\VERSION.dll
-0x00007ff8c9260000 - 0x00007ff8c92be000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
-0x00007ff8c9240000 - 0x00007ff8c9254000 C:\WINDOWS\SYSTEM32\UMPDC.dll
-0x00007ff8c8080000 - 0x00007ff8c809b000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
-0x00007ff8b89e0000 - 0x00007ff8b89ea000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\jimage.dll
-0x00007ff8c6a10000 - 0x00007ff8c6c52000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
-0x00007ff8ca1d0000 - 0x00007ff8ca553000 C:\WINDOWS\System32\combase.dll
-0x00007ff8ca750000 - 0x00007ff8ca829000 C:\WINDOWS\System32\OLEAUT32.dll
-0x00007ff8a9da0000 - 0x00007ff8a9ddb000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
-0x00007ff8c93e0000 - 0x00007ff8c948c000 C:\WINDOWS\System32\bcryptPrimitives.dll
-0x00007ff8b89d0000 - 0x00007ff8b89df000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\instrument.dll
-0x00007ff8b84d0000 - 0x00007ff8b84f0000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\java.dll
-0x00007ff8caaf0000 - 0x00007ff8cb282000 C:\WINDOWS\System32\SHELL32.dll
-0x00007ff8c6e40000 - 0x00007ff8c76d2000 C:\WINDOWS\SYSTEM32\windows.storage.dll
-0x00007ff8ca560000 - 0x00007ff8ca657000 C:\WINDOWS\System32\SHCORE.dll
-0x00007ff8c9f00000 - 0x00007ff8c9f67000 C:\WINDOWS\System32\shlwapi.dll
-0x00007ff8c9300000 - 0x00007ff8c9329000 C:\WINDOWS\SYSTEM32\profapi.dll
-0x00007ff866330000 - 0x00007ff866407000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\jsvml.dll
-0x00007ff8b84a0000 - 0x00007ff8b84b8000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\zip.dll
-0x00007ff8b80d0000 - 0x00007ff8b80e0000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\net.dll
-0x00007ff8b9a60000 - 0x00007ff8b9b87000 C:\WINDOWS\SYSTEM32\WINHTTP.dll
-0x00007ff8c8610000 - 0x00007ff8c867c000 C:\WINDOWS\system32\mswsock.dll
-0x00007ff8b7f00000 - 0x00007ff8b7f16000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\nio.dll
-0x00007ff8b7ee0000 - 0x00007ff8b7ef0000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\verify.dll
-0x00007ff8a8ad0000 - 0x00007ff8a8af7000 C:\Users\jade\.gradle\native\1def1411415f61bf3af743bc5b6707747c0891f09f0c88961ee8f79bc544acac\windows-amd64\native-platform.dll
-0x00007ff895680000 - 0x00007ff8956f8000 C:\Users\jade\.gradle\native\0.2.7\x86_64-windows-gnu\gradle-fileevents.dll
-0x00007ff8b7ed0000 - 0x00007ff8b7eda000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\management.dll
-0x00007ff8b7e60000 - 0x00007ff8b7e6c000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\management_ext.dll
-0x00007ff8c9ef0000 - 0x00007ff8c9ef8000 C:\WINDOWS\System32\PSAPI.DLL
-0x00007ff8c7a30000 - 0x00007ff8c7a63000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
-0x00007ff8cbfa0000 - 0x00007ff8cbfaa000 C:\WINDOWS\System32\NSI.dll
-0x00007ff8b7e50000 - 0x00007ff8b7e59000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\extnet.dll
-0x00007ff8c8a40000 - 0x00007ff8c8a5b000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
-0x00007ff8c7fe0000 - 0x00007ff8c8019000 C:\WINDOWS\system32\rsaenh.dll
-0x00007ff8c86d0000 - 0x00007ff8c8702000 C:\WINDOWS\SYSTEM32\USERENV.dll
-0x00007ff8c92d0000 - 0x00007ff8c92fa000 C:\WINDOWS\SYSTEM32\bcrypt.dll
-0x00007ff8c8880000 - 0x00007ff8c888c000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
-0x00007ff8b7d00000 - 0x00007ff8b7d0e000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\sunmscapi.dll
-0x00007ff8c94a0000 - 0x00007ff8c9618000 C:\WINDOWS\System32\CRYPT32.dll
-0x00007ff8c8bb0000 - 0x00007ff8c8be0000 C:\WINDOWS\SYSTEM32\ncrypt.dll
-0x00007ff8c8b60000 - 0x00007ff8c8b9f000 C:\WINDOWS\SYSTEM32\NTASN1.dll
-0x00007ff8a31a0000 - 0x00007ff8a31a8000 C:\WINDOWS\system32\wshunix.dll
-
-JVMTI agents:
-C:\Users\jade\.gradle\wrapper\dists\gradle-8.14.3-bin\cv11ve7ro1n3o1j4so8xd9n66\gradle-8.14.3\lib\agents\gradle-instrumentation-agent-8.14.3.jar path:C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\instrument.dll, loaded, initialized, instrumentlib options:none
-
-dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
-symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.8875_none_3e0d5d42e32fe9dd;C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\server;C:\Users\jade\.gradle\native\1def1411415f61bf3af743bc5b6707747c0891f09f0c88961ee8f79bc544acac\windows-amd64;C:\Users\jade\.gradle\native\0.2.7\x86_64-windows-gnu
-
-VM Arguments:
-jvm_args: --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.invoke=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.prefs/java.util.prefs=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.prefs/java.util.prefs=ALL-UNNAMED --add-opens=java.base/java.nio.charset=ALL-UNNAMED --add-opens=java.base/java.net=ALL-UNNAMED --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED --add-opens=java.xml/javax.xml.namespace=ALL-UNNAMED -XX:MaxMetaspaceSize=384m -XX:+HeapDumpOnOutOfMemoryError -Xms256m -Xmx512m -Dfile.encoding=UTF-8 -Duser.country=KR -Duser.language=ko -Duser.variant -javaagent:C:\Users\jade\.gradle\wrapper\dists\gradle-8.14.3-bin\cv11ve7ro1n3o1j4so8xd9n66\gradle-8.14.3\lib\agents\gradle-instrumentation-agent-8.14.3.jar
-java_command: org.gradle.launcher.daemon.bootstrap.GradleDaemon 8.14.3
-java_class_path (initial): C:\Users\jade\.gradle\wrapper\dists\gradle-8.14.3-bin\cv11ve7ro1n3o1j4so8xd9n66\gradle-8.14.3\lib\gradle-daemon-main-8.14.3.jar
-Launcher Type: SUN_STANDARD
-
-[Global flags]
- intx CICompilerCount = 4 {product} {ergonomic}
- size_t CompressedClassSpaceSize = 335544320 {product} {ergonomic}
- uint ConcGCThreads = 3 {product} {ergonomic}
- uint G1ConcRefinementThreads = 11 {product} {ergonomic}
- size_t G1HeapRegionSize = 1048576 {product} {ergonomic}
- uintx GCDrainStackTargetSize = 64 {product} {ergonomic}
- bool HeapDumpOnOutOfMemoryError = true {manageable} {command line}
- size_t InitialHeapSize = 268435456 {product} {command line}
- size_t MarkStackSize = 4194304 {product} {ergonomic}
- size_t MaxHeapSize = 536870912 {product} {command line}
- size_t MaxMetaspaceSize = 402653184 {product} {command line}
- size_t MaxNewSize = 321912832 {product} {ergonomic}
- size_t MinHeapDeltaBytes = 1048576 {product} {ergonomic}
- size_t MinHeapSize = 268435456 {product} {command line}
- uintx NonNMethodCodeHeapSize = 5839372 {pd product} {ergonomic}
- uintx NonProfiledCodeHeapSize = 122909434 {pd product} {ergonomic}
- uintx ProfiledCodeHeapSize = 122909434 {pd product} {ergonomic}
- uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
- bool SegmentedCodeCache = true {product} {ergonomic}
- size_t SoftMaxHeapSize = 536870912 {manageable} {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 foldmultilines=false
- #1: stderr all=off uptime,level,tags foldmultilines=false
-
-Release file:
-IMPLEMENTOR="Eclipse Adoptium"
-IMPLEMENTOR_VERSION="Temurin-21.0.11+10"
-JAVA_RUNTIME_VERSION="21.0.11+10-LTS"
-JAVA_VERSION="21.0.11"
-JAVA_VERSION_DATE="2026-04-21"
-LIBC="default"
-MODULES="java.base java.compiler java.datatransfer java.xml java.prefs java.desktop java.instrument java.logging java.management java.security.sasl java.naming java.rmi java.management.rmi java.net.http java.scripting java.security.jgss java.transaction.xa java.sql java.sql.rowset java.xml.crypto java.se java.smartcardio jdk.accessibility jdk.internal.jvmstat jdk.attach jdk.charsets jdk.internal.opt jdk.zipfs jdk.compiler jdk.crypto.ec jdk.crypto.cryptoki jdk.crypto.mscapi jdk.dynalink jdk.internal.ed jdk.editpad jdk.hotspot.agent jdk.httpserver jdk.incubator.vector jdk.internal.le jdk.internal.vm.ci jdk.internal.vm.compiler jdk.internal.vm.compiler.management jdk.jartool jdk.javadoc jdk.jcmd jdk.management jdk.management.agent jdk.jconsole jdk.jdeps jdk.jdwp.agent jdk.jdi jdk.jfr jdk.jlink jdk.jpackage jdk.jshell jdk.jsobject jdk.jstatd jdk.localedata jdk.management.jfr jdk.naming.dns jdk.naming.rmi jdk.net jdk.nio.mapmode jdk.random jdk.sctp jdk.security.auth jdk.security.jgss jdk.unsupported jdk.unsupported.desktop jdk.xml.dom"
-OS_ARCH="x86_64"
-OS_NAME="Windows"
-SOURCE=".:git:254494ad7d75"
-BUILD_SOURCE="git:a612825ee82a20ac872d60958c349854c1f29a8e"
-BUILD_SOURCE_REPO="https://github.com/adoptium/temurin-build.git"
-SOURCE_REPO="https://github.com/adoptium/jdk21u.git"
-FULL_VERSION="21.0.11+10-LTS"
-SEMANTIC_VERSION="21.0.11+10"
-BUILD_INFO="OS: Windows Server 2022 Version: 10.0"
-JVM_VARIANT="Hotspot"
-JVM_VERSION="21.0.11+10-LTS"
-IMAGE_TYPE="JDK"
-
-Environment Variables:
-JAVA_HOME=C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\
-PATH=C:\Users\jade\.codex\tmp\arg0\codex-arg0owqfeJ;C:\Users\jade\.cache\codex-runtimes\codex-primary-runtime\dependencies\bin\override;C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Git\cmd;C:\Program Files\Docker\Docker\resources\bin;C:\Users\jade\AppData\Local\Microsoft\WindowsApps;C:\Users\jade\.cache\codex-runtimes\codex-primary-runtime\dependencies\bin\fallback;C:\Users\jade\.cache\codex-runtimes\codex-primary-runtime\dependencies\native\git\cmd;C:\Users\jade\AppData\Local\OpenAI\Codex\bin\2e371a028d4fba76;C:\Program Files\WindowsApps\OpenAI.Codex_26.803.10989.0_x64__2p2nqsd0c76g0\app\resources
-USERNAME=jade
-OS=Windows_NT
-PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 181 Stepping 0, GenuineIntel
-TMP=C:\Users\jade\AppData\Local\Temp
-TEMP=C:\Users\jade\AppData\Local\Temp
-
-
-
-
-Periodic native trim disabled
-
---------------- S Y S T E M ---------------
-
-OS:
- Windows 11 , 64 bit Build 26100 (10.0.26100.8875)
-OS uptime: 6 days 19:31 hours
-Hyper-V role detected
-
-CPU: total 14 (initial active 14) (7 cores per cpu, 2 threads per core) family 6 model 181 stepping 0 microcode 0x9, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, sha, fma, vzeroupper, clflush, clflushopt, clwb, hv, serialize, rdtscp, rdpid, fsrm, f16c, cet_ibt, cet_ss
-Processor Information for processor 0
- Max Mhz: 2000, Current Mhz: 2000, Mhz Limit: 2000
-Processor Information for processor 1
- Max Mhz: 2000, Current Mhz: 2000, Mhz Limit: 2000
-Processor Information for processor 2
- Max Mhz: 1700, Current Mhz: 1700, Mhz Limit: 1700
-Processor Information for processor 3
- Max Mhz: 1700, Current Mhz: 1700, Mhz Limit: 1700
-Processor Information for processor 4
- Max Mhz: 1700, Current Mhz: 1700, Mhz Limit: 1700
-Processor Information for processor 5
- Max Mhz: 1700, Current Mhz: 1700, Mhz Limit: 1700
-Processor Information for processor 6
- Max Mhz: 1700, Current Mhz: 1700, Mhz Limit: 1700
-Processor Information for processor 7
- Max Mhz: 1700, Current Mhz: 1478, Mhz Limit: 1700
-Processor Information for processor 8
- Max Mhz: 1700, Current Mhz: 1700, Mhz Limit: 1700
-Processor Information for processor 9
- Max Mhz: 1700, Current Mhz: 1700, Mhz Limit: 1700
-Processor Information for processor 10
- Max Mhz: 2000, Current Mhz: 2000, Mhz Limit: 2000
-Processor Information for processor 11
- Max Mhz: 2000, Current Mhz: 2000, Mhz Limit: 2000
-Processor Information for processor 12
- Max Mhz: 700, Current Mhz: 700, Mhz Limit: 700
-Processor Information for processor 13
- Max Mhz: 700, Current Mhz: 700, Mhz Limit: 700
-
-Memory: 4k page, system-wide physical 15836M (424M free)
-TotalPageFile size 31971M (AvailPageFile size 14M)
-current process WorkingSet (physical memory assigned to process): 481M, peak: 492M
-current process commit charge ("private bytes"): 553M, peak: 565M
-
-vm_info: OpenJDK 64-Bit Server VM (21.0.11+10-LTS) for windows-amd64 JRE (21.0.11+10-LTS), built on 2026-04-21T00:00:00Z by "admin" with MS VC++ 17.12 (VS2022)
-
-END.
diff --git a/hs_err_pid31652.log b/hs_err_pid31652.log
deleted file mode 100644
index 20e9544d..00000000
--- a/hs_err_pid31652.log
+++ /dev/null
@@ -1,1445 +0,0 @@
-#
-# There is insufficient memory for the Java Runtime Environment to continue.
-# Native memory allocation (malloc) failed to allocate 1112816 bytes. Error detail: Chunk::new
-# Possible reasons:
-# The system is out of physical RAM or swap space
-# This process is running with CompressedOops enabled, and the Java Heap may be blocking the growth of the native heap
-# Possible solutions:
-# Reduce memory load on the system
-# Increase physical memory or swap space
-# Check if swap backing store is full
-# Decrease Java heap size (-Xmx/-Xms)
-# Decrease number of Java threads
-# Decrease Java thread stack sizes (-Xss)
-# Set larger code cache with -XX:ReservedCodeCacheSize=
-# JVM is running with Unscaled Compressed Oops mode in which the Java heap is
-# placed in the first 4GB address space. The Java Heap base address is the
-# maximum limit for the native heap growth. Please use -XX:HeapBaseMinAddress
-# to set the Java Heap base and to place the Java Heap above 4GB virtual address.
-# This output file may be truncated or incomplete.
-#
-# Out of Memory Error (arena.cpp:168), pid=31652, tid=14800
-#
-# JRE version: OpenJDK Runtime Environment Temurin-21.0.11+10 (21.0.11+10) (build 21.0.11+10-LTS)
-# Java VM: OpenJDK 64-Bit Server VM Temurin-21.0.11+10 (21.0.11+10-LTS, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, g1 gc, windows-amd64)
-# No core dump will be written. Minidumps are not enabled by default on client versions of Windows
-#
-
---------------- S U M M A R Y ------------
-
-Command Line: --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.invoke=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.prefs/java.util.prefs=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.prefs/java.util.prefs=ALL-UNNAMED --add-opens=java.base/java.nio.charset=ALL-UNNAMED --add-opens=java.base/java.net=ALL-UNNAMED --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED --add-opens=java.xml/javax.xml.namespace=ALL-UNNAMED -XX:MaxMetaspaceSize=384m -XX:+HeapDumpOnOutOfMemoryError -Xms256m -Xmx512m -Dfile.encoding=UTF-8 -Duser.country=KR -Duser.language=ko -Duser.variant -javaagent:C:\Users\jade\.gradle\wrapper\dists\gradle-8.14.3-bin\cv11ve7ro1n3o1j4so8xd9n66\gradle-8.14.3\lib\agents\gradle-instrumentation-agent-8.14.3.jar org.gradle.launcher.daemon.bootstrap.GradleDaemon 8.14.3
-
-Host: Intel(R) Core(TM) Ultra 7 255U, 14 cores, 15G, Windows 11 , 64 bit Build 26100 (10.0.26100.8875)
-Time: Wed Aug 12 13:48:52 2026 elapsed time: 13665.859386 seconds (0d 3h 47m 45s)
-
---------------- T H R E A D ---------------
-
-Current thread (0x000001d4e8047470): JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=14800, stack(0x000000ce38500000,0x000000ce38600000) (1024K)]
-
-
-Current CompileTask:
-C2:13665859 46643 4 org.gradle.api.internal.artifacts.ivyservice.modulecache.PersistentModuleMetadataCache$$Lambda/0x000001d4d0873230::get (16 bytes)
-
-Stack: [0x000000ce38500000,0x000000ce38600000]
-Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
-V [jvm.dll+0x6d7e19]
-V [jvm.dll+0x8b5096]
-V [jvm.dll+0x8b764e]
-V [jvm.dll+0x8b7d33]
-V [jvm.dll+0x284596]
-V [jvm.dll+0xc685d]
-V [jvm.dll+0xc6da1]
-V [jvm.dll+0x2fb4ee]
-V [jvm.dll+0x5fe9a4]
-V [jvm.dll+0x255d67]
-V [jvm.dll+0x24e0f4]
-V [jvm.dll+0x24bbe6]
-V [jvm.dll+0x1cb4ae]
-V [jvm.dll+0x25baad]
-V [jvm.dll+0x25a03a]
-V [jvm.dll+0x3f868e]
-V [jvm.dll+0x85fb0d]
-V [jvm.dll+0x6d664d]
-C [ucrtbase.dll+0x2cd30]
-C [KERNEL32.DLL+0x2e957]
-C [ntdll.dll+0xaad6c]
-
-
---------------- P R O C E S S ---------------
-
-Threads class SMR info:
-_java_thread_list=0x000001d4cecc6030, length=188, elements={
-0x000001d4b15b61f0, 0x000001d4e8004090, 0x000001d4e8007280, 0x000001d4e800edb0,
-0x000001d4e800fbc0, 0x000001d4cee88fd0, 0x000001d4cee8d500, 0x000001d4e8047470,
-0x000001d4e804b460, 0x000001d4e81f2f80, 0x000001d4e8312bd0, 0x000001d4e9b403d0,
-0x000001d4e9a3ed10, 0x000001d4e9ad8130, 0x000001d4e9aa42d0, 0x000001d4e9aa63a0,
-0x000001d4e9aa6a30, 0x000001d4e8d0cf20, 0x000001d4e8d0b4e0, 0x000001d4e8d0ae50,
-0x000001d4e8d0c200, 0x000001d4e8d0bb70, 0x000001d4e8d09aa0, 0x000001d4eb374ae0,
-0x000001d4eb379310, 0x000001d4ecfdb680, 0x000001d4ecfdbd10, 0x000001d4ed7725a0,
-0x000001d4ed773fe0, 0x000001d4ed777af0, 0x000001d4ed777460, 0x000001d4eb3a6560,
-0x000001d4eb3a6bf0, 0x000001d4eb3a7fa0, 0x000001d4ea4d3e10, 0x000001d4ee013850,
-0x000001d4ef6c2210, 0x000001d4edd730a0, 0x000001d4ee299a40, 0x000001d4ee298d20,
-0x000001d4f4c083f0, 0x000001d4f4c08a80, 0x000001d4f4c076d0, 0x000001d4f4c07040,
-0x000001d4f4c07d60, 0x000001d4ee294da0, 0x000001d4ee296150, 0x000001d4ee293360,
-0x000001d4ee2939f0, 0x000001d4ee295430, 0x000001d4ee294080, 0x000001d4f512f090,
-0x000001d4f512f720, 0x000001d4f51317f0, 0x000001d4f5130ad0, 0x000001d4f5131160,
-0x000001d4f512fdb0, 0x000001d4f512e370, 0x000001d4f5130440, 0x000001d4ea59e910,
-0x000001d4ea5a1070, 0x000001d4ee298690, 0x000001d4ee294710, 0x000001d4ed723540,
-0x000001d4ed723bd0, 0x000001d4ed7248f0, 0x000001d4ed722190, 0x000001d4ed724f80,
-0x000001d4ed724260, 0x000001d4edbf4d30, 0x000001d4ee29a760, 0x000001d4ee2993b0,
-0x000001d4ee29a0d0, 0x000001d4efbac7c0, 0x000001d4efbaa6f0, 0x000001d4edbf5a50,
-0x000001d4edbf53c0, 0x000001d4edbf60e0, 0x000001d4ed2b0d00, 0x000001d4ed2b20b0,
-0x000001d4ed2b1390, 0x000001d4ed2b2740, 0x000001d4ed2b1a20, 0x000001d4ed2b0670,
-0x000001d4ed2b2dd0, 0x000001d4f82fef40, 0x000001d4f82ff5d0, 0x000001d4f82fe220,
-0x000001d4f8300980, 0x000001d4f82ffc60, 0x000001d4f83002f0, 0x000001d4f82fd500,
-0x000001d4ed561090, 0x000001d4ed562440, 0x000001d4f82fdb90, 0x000001d4ed8e9c20,
-0x000001d4ed8ea940, 0x000001d4ed8eafd0, 0x000001d4ed8eb660, 0x000001d4ed8e9590,
-0x000001d4ed8ea2b0, 0x000001d4ed563e80, 0x000001d4ed561db0, 0x000001d4ed561720,
-0x000001d4ed562ad0, 0x000001d4ed564510, 0x000001d4f57fb610, 0x000001d4ea654b60,
-0x000001d4ea6565a0, 0x000001d4ea655f10, 0x000001d4ed8e8f00, 0x000001d4ed8ebcf0,
-0x000001d4ed8ec380, 0x000001d4f43f0760, 0x000001d4f43f1b10, 0x000001d4f43f21a0,
-0x000001d4f43f00d0, 0x000001d4f43f2ec0, 0x000001d4f43f3550, 0x000001d4f43f2830,
-0x000001d4f43f0df0, 0x000001d4f43f1480, 0x000001d4f5cb82c0, 0x000001d4f5cb75a0,
-0x000001d4f5cb8950, 0x000001d4ef5ffaa0, 0x000001d4ef600130, 0x000001d4ef5ff410,
-0x000001d4ef5fe060, 0x000001d4ed725610, 0x000001d4ed722eb0, 0x000001d4f5f56250,
-0x000001d4f5f54ea0, 0x000001d4f5f57600, 0x000001d4f5f55bc0, 0x000001d4efbaa060,
-0x000001d4efbace50, 0x000001d4efbab410, 0x000001d4efbabaa0, 0x000001d4efbaad80,
-0x000001d4efbac130, 0x000001d4f5f57c90, 0x000001d4f5f568e0, 0x000001d4f5f56f70,
-0x000001d4f5f58320, 0x000001d4f5f55530, 0x000001d4f6c67c90, 0x000001d4f6c64810,
-0x000001d4f6c64ea0, 0x000001d4f6c668e0, 0x000001d4f6c65bc0, 0x000001d4f6c66250,
-0x000001d4f6c66f70, 0x000001d4f5886040, 0x000001d4f5888e30, 0x000001d4f58873f0,
-0x000001d4f58894c0, 0x000001d4f4d161b0, 0x000001d4f4d18280, 0x000001d4f4d16840,
-0x000001d4f4d16ed0, 0x000001d4ee2967e0, 0x000001d4ee295ac0, 0x000001d4ed722820,
-0x000001d4ef502cb0, 0x000001d4ef501270, 0x000001d4ef501900, 0x000001d4ea655880,
-0x000001d4ea656c30, 0x000001d4ea6572c0, 0x000001d4ea653e40, 0x000001d4ed0f2720,
-0x000001d4ed0f0650, 0x000001d4ed0ef2a0, 0x000001d4ed0effc0, 0x000001d4ed0f1370,
-0x000001d4ed0f1a00, 0x000001d4ed0f2090, 0x000001d4f561b920, 0x000001d4f57fbca0,
-0x000001d4f57faf80, 0x000001d4f57fc9c0, 0x000001d4f57fa8f0, 0x000001d4f57fc330,
-0x000001d4efba99d0, 0x000001d4ee8733e0, 0x000001d4ee873a70, 0x000001d4ee8754b0
-}
-
-Java Threads: ( => current thread )
- 0x000001d4b15b61f0 JavaThread "main" [_thread_blocked, id=42876, stack(0x000000ce37700000,0x000000ce37800000) (1024K)]
- 0x000001d4e8004090 JavaThread "Reference Handler" daemon [_thread_blocked, id=42632, stack(0x000000ce37f00000,0x000000ce38000000) (1024K)]
- 0x000001d4e8007280 JavaThread "Finalizer" daemon [_thread_blocked, id=42380, stack(0x000000ce38000000,0x000000ce38100000) (1024K)]
- 0x000001d4e800edb0 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=30736, stack(0x000000ce38100000,0x000000ce38200000) (1024K)]
- 0x000001d4e800fbc0 JavaThread "Attach Listener" daemon [_thread_blocked, id=5464, stack(0x000000ce38200000,0x000000ce38300000) (1024K)]
- 0x000001d4cee88fd0 JavaThread "Service Thread" daemon [_thread_blocked, id=32868, stack(0x000000ce38300000,0x000000ce38400000) (1024K)]
- 0x000001d4cee8d500 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=31424, stack(0x000000ce38400000,0x000000ce38500000) (1024K)]
-=>0x000001d4e8047470 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=14800, stack(0x000000ce38500000,0x000000ce38600000) (1024K)]
- 0x000001d4e804b460 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=36880, stack(0x000000ce38600000,0x000000ce38700000) (1024K)]
- 0x000001d4e81f2f80 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=10096, stack(0x000000ce38700000,0x000000ce38800000) (1024K)]
- 0x000001d4e8312bd0 JavaThread "Notification Thread" daemon [_thread_blocked, id=10740, stack(0x000000ce38800000,0x000000ce38900000) (1024K)]
- 0x000001d4e9b403d0 JavaThread "Daemon health stats" [_thread_blocked, id=32564, stack(0x000000ce38900000,0x000000ce38a00000) (1024K)]
- 0x000001d4e9a3ed10 JavaThread "Incoming local TCP Connector on port 57856" [_thread_in_native, id=41844, stack(0x000000ce39300000,0x000000ce39400000) (1024K)]
- 0x000001d4e9ad8130 JavaThread "Daemon periodic checks" [_thread_blocked, id=24924, stack(0x000000ce39400000,0x000000ce39500000) (1024K)]
- 0x000001d4e9aa42d0 JavaThread "Cache worker for journal cache (C:\Users\jade\.gradle\caches\journal-1)" [_thread_blocked, id=24680, stack(0x000000ce39c00000,0x000000ce39d00000) (1024K)]
- 0x000001d4e9aa63a0 JavaThread "File lock request listener" [_thread_in_native, id=35444, stack(0x000000ce39d00000,0x000000ce39e00000) (1024K)]
- 0x000001d4e9aa6a30 JavaThread "Cache worker for file hash cache (C:\Users\jade\.gradle\caches\8.14.3\fileHashes)" [_thread_blocked, id=28384, stack(0x000000ce39f00000,0x000000ce3a000000) (1024K)]
- 0x000001d4e8d0cf20 JavaThread "File watcher server" daemon [_thread_blocked, id=18044, stack(0x000000ce3a500000,0x000000ce3a600000) (1024K)]
- 0x000001d4e8d0b4e0 JavaThread "File watcher consumer" daemon [_thread_blocked, id=27072, stack(0x000000ce3a600000,0x000000ce3a700000) (1024K)]
- 0x000001d4e8d0ae50 JavaThread "jar transforms" [_thread_blocked, id=32080, stack(0x000000ce3a700000,0x000000ce3a800000) (1024K)]
- 0x000001d4e8d0c200 JavaThread "jar transforms Thread 2" [_thread_blocked, id=35324, stack(0x000000ce3a800000,0x000000ce3a900000) (1024K)]
- 0x000001d4e8d0bb70 JavaThread "Cache worker for file content cache (C:\Users\jade\.gradle\caches\8.14.3\fileContent)" [_thread_blocked, id=36576, stack(0x000000ce3aa00000,0x000000ce3ab00000) (1024K)]
- 0x000001d4e8d09aa0 JavaThread "jar transforms Thread 3" [_thread_blocked, id=43180, stack(0x000000ce3ab00000,0x000000ce3ac00000) (1024K)]
- 0x000001d4eb374ae0 JavaThread "jar transforms Thread 4" [_thread_blocked, id=43780, stack(0x000000ce3c400000,0x000000ce3c500000) (1024K)]
- 0x000001d4eb379310 JavaThread "jar transforms Thread 5" [_thread_blocked, id=2332, stack(0x000000ce3c500000,0x000000ce3c600000) (1024K)]
- 0x000001d4ecfdb680 JavaThread "jar transforms Thread 6" [_thread_blocked, id=43192, stack(0x000000ce3d100000,0x000000ce3d200000) (1024K)]
- 0x000001d4ecfdbd10 JavaThread "jar transforms Thread 7" [_thread_blocked, id=26600, stack(0x000000ce3d200000,0x000000ce3d300000) (1024K)]
- 0x000001d4ed7725a0 JavaThread "jar transforms Thread 8" [_thread_blocked, id=40912, stack(0x000000ce3de00000,0x000000ce3df00000) (1024K)]
- 0x000001d4ed773fe0 JavaThread "jar transforms Thread 9" [_thread_blocked, id=2120, stack(0x000000ce3df00000,0x000000ce3e000000) (1024K)]
- 0x000001d4ed777af0 JavaThread "jar transforms Thread 10" [_thread_blocked, id=25228, stack(0x000000ce3eb00000,0x000000ce3ec00000) (1024K)]
- 0x000001d4ed777460 JavaThread "jar transforms Thread 11" [_thread_blocked, id=39508, stack(0x000000ce3ec00000,0x000000ce3ed00000) (1024K)]
- 0x000001d4eb3a6560 JavaThread "jar transforms Thread 12" [_thread_blocked, id=39916, stack(0x000000ce3f800000,0x000000ce3f900000) (1024K)]
- 0x000001d4eb3a6bf0 JavaThread "jar transforms Thread 13" [_thread_blocked, id=3616, stack(0x000000ce3f900000,0x000000ce3fa00000) (1024K)]
- 0x000001d4eb3a7fa0 JavaThread "jar transforms Thread 14" [_thread_blocked, id=21544, stack(0x000000ce3fa00000,0x000000ce3fb00000) (1024K)]
- 0x000001d4ea4d3e10 JavaThread "Memory manager" [_thread_blocked, id=32056, stack(0x000000ce42300000,0x000000ce42400000) (1024K)]
- 0x000001d4ee013850 JavaThread "Cache worker for Java compile cache (C:\Users\jade\.gradle\caches\8.14.3\javaCompile)" [_thread_blocked, id=41096, stack(0x000000ce45600000,0x000000ce45700000) (1024K)]
- 0x000001d4ef6c2210 JavaThread "Daemon Thread 10" [_thread_blocked, id=21920, stack(0x000000ce37400000,0x000000ce37500000) (1024K)]
- 0x000001d4edd730a0 JavaThread "Handler for socket connection from /127.0.0.1:57856 to /127.0.0.1:57352" [_thread_in_native, id=19732, stack(0x000000ce37500000,0x000000ce37600000) (1024K)]
- 0x000001d4ee299a40 JavaThread "Cancel handler" [_thread_blocked, id=42428, stack(0x000000ce37600000,0x000000ce37700000) (1024K)]
- 0x000001d4ee298d20 JavaThread "Daemon worker Thread 10" [_thread_in_native, id=30436, stack(0x000000ce39500000,0x000000ce39600000) (1024K)]
- 0x000001d4f4c083f0 JavaThread "Asynchronous log dispatcher for DefaultDaemonConnection: socket connection from /127.0.0.1:57856 to /127.0.0.1:57352" [_thread_blocked, id=6736, stack(0x000000ce39600000,0x000000ce39700000) (1024K)]
- 0x000001d4f4c08a80 JavaThread "Stdin handler" [_thread_blocked, id=37848, stack(0x000000ce39700000,0x000000ce39800000) (1024K)]
- 0x000001d4f4c076d0 JavaThread "Daemon client event forwarder" [_thread_blocked, id=8620, stack(0x000000ce39800000,0x000000ce39900000) (1024K)]
- 0x000001d4f4c07040 JavaThread "Cache worker for file hash cache (C:\eGovFrameDev-4.3.1-64bit\workspace-egov\axhub-backend-main\.gradle\8.14.3\fileHashes)" [_thread_blocked, id=27160, stack(0x000000ce39900000,0x000000ce39a00000) (1024K)]
- 0x000001d4f4c07d60 JavaThread "Cache worker for Build Output Cleanup Cache (C:\eGovFrameDev-4.3.1-64bit\workspace-egov\axhub-backend-main\.gradle\buildOutputCleanup)" [_thread_blocked, id=968, stack(0x000000ce39a00000,0x000000ce39b00000) (1024K)]
- 0x000001d4ee294da0 JavaThread "Cache worker for checksums cache (C:\eGovFrameDev-4.3.1-64bit\workspace-egov\axhub-backend-main\.gradle\8.14.3\checksums)" [_thread_blocked, id=32760, stack(0x000000ce39b00000,0x000000ce39c00000) (1024K)]
- 0x000001d4ee296150 JavaThread "Cache worker for cache directory md-supplier (C:\Users\jade\.gradle\caches\8.14.3\md-supplier)" [_thread_blocked, id=39212, stack(0x000000ce39e00000,0x000000ce39f00000) (1024K)]
- 0x000001d4ee293360 JavaThread "Cache worker for cache directory md-rule (C:\Users\jade\.gradle\caches\8.14.3\md-rule)" [_thread_blocked, id=25776, stack(0x000000ce3a300000,0x000000ce3a400000) (1024K)]
- 0x000001d4ee2939f0 JavaThread "Unconstrained build operations" [_thread_blocked, id=32624, stack(0x000000ce3a400000,0x000000ce3a500000) (1024K)]
- 0x000001d4ee295430 JavaThread "Unconstrained build operations Thread 2" [_thread_blocked, id=41492, stack(0x000000ce3a900000,0x000000ce3aa00000) (1024K)]
- 0x000001d4ee294080 JavaThread "Unconstrained build operations Thread 3" [_thread_blocked, id=21792, stack(0x000000ce3ac00000,0x000000ce3ad00000) (1024K)]
- 0x000001d4f512f090 JavaThread "Unconstrained build operations Thread 4" [_thread_blocked, id=38328, stack(0x000000ce3ad00000,0x000000ce3ae00000) (1024K)]
- 0x000001d4f512f720 JavaThread "Unconstrained build operations Thread 5" [_thread_blocked, id=23532, stack(0x000000ce3ae00000,0x000000ce3af00000) (1024K)]
- 0x000001d4f51317f0 JavaThread "Unconstrained build operations Thread 6" [_thread_blocked, id=23432, stack(0x000000ce3af00000,0x000000ce3b000000) (1024K)]
- 0x000001d4f5130ad0 JavaThread "Unconstrained build operations Thread 7" [_thread_blocked, id=8916, stack(0x000000ce3b000000,0x000000ce3b100000) (1024K)]
- 0x000001d4f5131160 JavaThread "Unconstrained build operations Thread 8" [_thread_blocked, id=3132, stack(0x000000ce3b100000,0x000000ce3b200000) (1024K)]
- 0x000001d4f512fdb0 JavaThread "Unconstrained build operations Thread 9" [_thread_blocked, id=22328, stack(0x000000ce3b200000,0x000000ce3b300000) (1024K)]
- 0x000001d4f512e370 JavaThread "Unconstrained build operations Thread 10" [_thread_blocked, id=8580, stack(0x000000ce3b300000,0x000000ce3b400000) (1024K)]
- 0x000001d4f5130440 JavaThread "Unconstrained build operations Thread 11" [_thread_blocked, id=10596, stack(0x000000ce3b400000,0x000000ce3b500000) (1024K)]
- 0x000001d4ea59e910 JavaThread "Unconstrained build operations Thread 12" [_thread_blocked, id=12320, stack(0x000000ce3b500000,0x000000ce3b600000) (1024K)]
- 0x000001d4ea5a1070 JavaThread "Unconstrained build operations Thread 13" [_thread_blocked, id=38680, stack(0x000000ce3b600000,0x000000ce3b700000) (1024K)]
- 0x000001d4ee298690 JavaThread "Unconstrained build operations Thread 14" [_thread_blocked, id=35412, stack(0x000000ce3b700000,0x000000ce3b800000) (1024K)]
- 0x000001d4ee294710 JavaThread "Unconstrained build operations Thread 15" [_thread_blocked, id=25732, stack(0x000000ce3b800000,0x000000ce3b900000) (1024K)]
- 0x000001d4ed723540 JavaThread "Unconstrained build operations Thread 16" [_thread_blocked, id=37304, stack(0x000000ce3b900000,0x000000ce3ba00000) (1024K)]
- 0x000001d4ed723bd0 JavaThread "Unconstrained build operations Thread 17" [_thread_blocked, id=33520, stack(0x000000ce3ba00000,0x000000ce3bb00000) (1024K)]
- 0x000001d4ed7248f0 JavaThread "Unconstrained build operations Thread 18" [_thread_blocked, id=3320, stack(0x000000ce3bb00000,0x000000ce3bc00000) (1024K)]
- 0x000001d4ed722190 JavaThread "Unconstrained build operations Thread 19" [_thread_blocked, id=25728, stack(0x000000ce3bc00000,0x000000ce3bd00000) (1024K)]
- 0x000001d4ed724f80 JavaThread "Unconstrained build operations Thread 20" [_thread_blocked, id=39748, stack(0x000000ce3bd00000,0x000000ce3be00000) (1024K)]
- 0x000001d4ed724260 JavaThread "Unconstrained build operations Thread 21" [_thread_blocked, id=42472, stack(0x000000ce3be00000,0x000000ce3bf00000) (1024K)]
- 0x000001d4edbf4d30 JavaThread "Unconstrained build operations Thread 22" [_thread_blocked, id=37200, stack(0x000000ce3bf00000,0x000000ce3c000000) (1024K)]
- 0x000001d4ee29a760 JavaThread "Unconstrained build operations Thread 23" [_thread_blocked, id=40388, stack(0x000000ce3c000000,0x000000ce3c100000) (1024K)]
- 0x000001d4ee2993b0 JavaThread "Unconstrained build operations Thread 24" [_thread_blocked, id=43212, stack(0x000000ce3c100000,0x000000ce3c200000) (1024K)]
- 0x000001d4ee29a0d0 JavaThread "Unconstrained build operations Thread 25" [_thread_blocked, id=17344, stack(0x000000ce3c200000,0x000000ce3c300000) (1024K)]
- 0x000001d4efbac7c0 JavaThread "Unconstrained build operations Thread 26" [_thread_blocked, id=40120, stack(0x000000ce3c300000,0x000000ce3c400000) (1024K)]
- 0x000001d4efbaa6f0 JavaThread "Unconstrained build operations Thread 27" [_thread_blocked, id=7980, stack(0x000000ce3c600000,0x000000ce3c700000) (1024K)]
- 0x000001d4edbf5a50 JavaThread "Unconstrained build operations Thread 28" [_thread_blocked, id=3576, stack(0x000000ce3c700000,0x000000ce3c800000) (1024K)]
- 0x000001d4edbf53c0 JavaThread "Unconstrained build operations Thread 29" [_thread_blocked, id=22616, stack(0x000000ce3c800000,0x000000ce3c900000) (1024K)]
- 0x000001d4edbf60e0 JavaThread "Unconstrained build operations Thread 30" [_thread_blocked, id=37864, stack(0x000000ce3c900000,0x000000ce3ca00000) (1024K)]
- 0x000001d4ed2b0d00 JavaThread "Unconstrained build operations Thread 31" [_thread_blocked, id=5420, stack(0x000000ce3ca00000,0x000000ce3cb00000) (1024K)]
- 0x000001d4ed2b20b0 JavaThread "Unconstrained build operations Thread 32" [_thread_blocked, id=21340, stack(0x000000ce3cb00000,0x000000ce3cc00000) (1024K)]
- 0x000001d4ed2b1390 JavaThread "Unconstrained build operations Thread 33" [_thread_blocked, id=1804, stack(0x000000ce3cc00000,0x000000ce3cd00000) (1024K)]
- 0x000001d4ed2b2740 JavaThread "Unconstrained build operations Thread 34" [_thread_blocked, id=6968, stack(0x000000ce3cd00000,0x000000ce3ce00000) (1024K)]
- 0x000001d4ed2b1a20 JavaThread "Unconstrained build operations Thread 35" [_thread_blocked, id=36296, stack(0x000000ce3ce00000,0x000000ce3cf00000) (1024K)]
- 0x000001d4ed2b0670 JavaThread "Unconstrained build operations Thread 36" [_thread_blocked, id=31168, stack(0x000000ce3cf00000,0x000000ce3d000000) (1024K)]
- 0x000001d4ed2b2dd0 JavaThread "Unconstrained build operations Thread 37" [_thread_blocked, id=26880, stack(0x000000ce3d000000,0x000000ce3d100000) (1024K)]
- 0x000001d4f82fef40 JavaThread "Unconstrained build operations Thread 38" [_thread_blocked, id=6928, stack(0x000000ce3d300000,0x000000ce3d400000) (1024K)]
- 0x000001d4f82ff5d0 JavaThread "Unconstrained build operations Thread 39" [_thread_blocked, id=6276, stack(0x000000ce3d400000,0x000000ce3d500000) (1024K)]
- 0x000001d4f82fe220 JavaThread "Unconstrained build operations Thread 40" [_thread_blocked, id=26776, stack(0x000000ce3d500000,0x000000ce3d600000) (1024K)]
- 0x000001d4f8300980 JavaThread "Unconstrained build operations Thread 41" [_thread_blocked, id=41940, stack(0x000000ce3d600000,0x000000ce3d700000) (1024K)]
- 0x000001d4f82ffc60 JavaThread "Unconstrained build operations Thread 42" [_thread_blocked, id=16928, stack(0x000000ce3d700000,0x000000ce3d800000) (1024K)]
- 0x000001d4f83002f0 JavaThread "Unconstrained build operations Thread 43" [_thread_blocked, id=15456, stack(0x000000ce3d800000,0x000000ce3d900000) (1024K)]
- 0x000001d4f82fd500 JavaThread "Unconstrained build operations Thread 44" [_thread_blocked, id=13444, stack(0x000000ce3d900000,0x000000ce3da00000) (1024K)]
- 0x000001d4ed561090 JavaThread "Unconstrained build operations Thread 45" [_thread_blocked, id=20724, stack(0x000000ce3da00000,0x000000ce3db00000) (1024K)]
- 0x000001d4ed562440 JavaThread "Unconstrained build operations Thread 46" [_thread_blocked, id=42056, stack(0x000000ce3db00000,0x000000ce3dc00000) (1024K)]
- 0x000001d4f82fdb90 JavaThread "Unconstrained build operations Thread 47" [_thread_blocked, id=21064, stack(0x000000ce3dc00000,0x000000ce3dd00000) (1024K)]
- 0x000001d4ed8e9c20 JavaThread "Unconstrained build operations Thread 48" [_thread_blocked, id=19208, stack(0x000000ce3dd00000,0x000000ce3de00000) (1024K)]
- 0x000001d4ed8ea940 JavaThread "Unconstrained build operations Thread 49" [_thread_blocked, id=38536, stack(0x000000ce3e000000,0x000000ce3e100000) (1024K)]
- 0x000001d4ed8eafd0 JavaThread "Unconstrained build operations Thread 50" [_thread_blocked, id=18400, stack(0x000000ce3e100000,0x000000ce3e200000) (1024K)]
- 0x000001d4ed8eb660 JavaThread "Unconstrained build operations Thread 51" [_thread_blocked, id=38348, stack(0x000000ce3e200000,0x000000ce3e300000) (1024K)]
- 0x000001d4ed8e9590 JavaThread "Unconstrained build operations Thread 52" [_thread_blocked, id=5992, stack(0x000000ce3e300000,0x000000ce3e400000) (1024K)]
- 0x000001d4ed8ea2b0 JavaThread "Unconstrained build operations Thread 53" [_thread_blocked, id=26692, stack(0x000000ce3e400000,0x000000ce3e500000) (1024K)]
- 0x000001d4ed563e80 JavaThread "Unconstrained build operations Thread 54" [_thread_blocked, id=22128, stack(0x000000ce3e500000,0x000000ce3e600000) (1024K)]
- 0x000001d4ed561db0 JavaThread "Unconstrained build operations Thread 55" [_thread_blocked, id=15828, stack(0x000000ce3e600000,0x000000ce3e700000) (1024K)]
- 0x000001d4ed561720 JavaThread "Unconstrained build operations Thread 56" [_thread_blocked, id=17024, stack(0x000000ce3e700000,0x000000ce3e800000) (1024K)]
- 0x000001d4ed562ad0 JavaThread "Unconstrained build operations Thread 57" [_thread_blocked, id=28228, stack(0x000000ce3e800000,0x000000ce3e900000) (1024K)]
- 0x000001d4ed564510 JavaThread "Unconstrained build operations Thread 58" [_thread_blocked, id=33612, stack(0x000000ce3e900000,0x000000ce3ea00000) (1024K)]
- 0x000001d4f57fb610 JavaThread "Unconstrained build operations Thread 59" [_thread_blocked, id=17220, stack(0x000000ce3ea00000,0x000000ce3eb00000) (1024K)]
- 0x000001d4ea654b60 JavaThread "Unconstrained build operations Thread 60" [_thread_blocked, id=40168, stack(0x000000ce3ed00000,0x000000ce3ee00000) (1024K)]
- 0x000001d4ea6565a0 JavaThread "Unconstrained build operations Thread 61" [_thread_blocked, id=41696, stack(0x000000ce3ee00000,0x000000ce3ef00000) (1024K)]
- 0x000001d4ea655f10 JavaThread "Unconstrained build operations Thread 62" [_thread_blocked, id=31752, stack(0x000000ce3ef00000,0x000000ce3f000000) (1024K)]
- 0x000001d4ed8e8f00 JavaThread "Unconstrained build operations Thread 63" [_thread_blocked, id=26496, stack(0x000000ce3f000000,0x000000ce3f100000) (1024K)]
- 0x000001d4ed8ebcf0 JavaThread "Unconstrained build operations Thread 64" [_thread_blocked, id=11500, stack(0x000000ce3f100000,0x000000ce3f200000) (1024K)]
- 0x000001d4ed8ec380 JavaThread "Unconstrained build operations Thread 65" [_thread_blocked, id=20252, stack(0x000000ce3f200000,0x000000ce3f300000) (1024K)]
- 0x000001d4f43f0760 JavaThread "Unconstrained build operations Thread 66" [_thread_blocked, id=6744, stack(0x000000ce3f300000,0x000000ce3f400000) (1024K)]
- 0x000001d4f43f1b10 JavaThread "Unconstrained build operations Thread 67" [_thread_blocked, id=12580, stack(0x000000ce3f400000,0x000000ce3f500000) (1024K)]
- 0x000001d4f43f21a0 JavaThread "Unconstrained build operations Thread 68" [_thread_blocked, id=35360, stack(0x000000ce3f500000,0x000000ce3f600000) (1024K)]
- 0x000001d4f43f00d0 JavaThread "Unconstrained build operations Thread 69" [_thread_blocked, id=17156, stack(0x000000ce3f600000,0x000000ce3f700000) (1024K)]
- 0x000001d4f43f2ec0 JavaThread "Unconstrained build operations Thread 70" [_thread_blocked, id=33632, stack(0x000000ce3f700000,0x000000ce3f800000) (1024K)]
- 0x000001d4f43f3550 JavaThread "Unconstrained build operations Thread 71" [_thread_blocked, id=5400, stack(0x000000ce3fb00000,0x000000ce3fc00000) (1024K)]
- 0x000001d4f43f2830 JavaThread "Unconstrained build operations Thread 72" [_thread_blocked, id=1800, stack(0x000000ce3fc00000,0x000000ce3fd00000) (1024K)]
- 0x000001d4f43f0df0 JavaThread "Unconstrained build operations Thread 73" [_thread_blocked, id=43720, stack(0x000000ce3fd00000,0x000000ce3fe00000) (1024K)]
- 0x000001d4f43f1480 JavaThread "Unconstrained build operations Thread 74" [_thread_blocked, id=42996, stack(0x000000ce3fe00000,0x000000ce3ff00000) (1024K)]
- 0x000001d4f5cb82c0 JavaThread "Unconstrained build operations Thread 75" [_thread_blocked, id=37412, stack(0x000000ce3ff00000,0x000000ce40000000) (1024K)]
- 0x000001d4f5cb75a0 JavaThread "Unconstrained build operations Thread 76" [_thread_blocked, id=6392, stack(0x000000ce40000000,0x000000ce40100000) (1024K)]
- 0x000001d4f5cb8950 JavaThread "Unconstrained build operations Thread 77" [_thread_blocked, id=25812, stack(0x000000ce40100000,0x000000ce40200000) (1024K)]
- 0x000001d4ef5ffaa0 JavaThread "Unconstrained build operations Thread 78" [_thread_blocked, id=15156, stack(0x000000ce40200000,0x000000ce40300000) (1024K)]
- 0x000001d4ef600130 JavaThread "Unconstrained build operations Thread 79" [_thread_blocked, id=30652, stack(0x000000ce40300000,0x000000ce40400000) (1024K)]
- 0x000001d4ef5ff410 JavaThread "Unconstrained build operations Thread 80" [_thread_blocked, id=23936, stack(0x000000ce40400000,0x000000ce40500000) (1024K)]
- 0x000001d4ef5fe060 JavaThread "Unconstrained build operations Thread 81" [_thread_blocked, id=42780, stack(0x000000ce40500000,0x000000ce40600000) (1024K)]
- 0x000001d4ed725610 JavaThread "Unconstrained build operations Thread 82" [_thread_blocked, id=42488, stack(0x000000ce40600000,0x000000ce40700000) (1024K)]
- 0x000001d4ed722eb0 JavaThread "Unconstrained build operations Thread 83" [_thread_blocked, id=11308, stack(0x000000ce40700000,0x000000ce40800000) (1024K)]
- 0x000001d4f5f56250 JavaThread "Unconstrained build operations Thread 84" [_thread_blocked, id=41532, stack(0x000000ce40800000,0x000000ce40900000) (1024K)]
- 0x000001d4f5f54ea0 JavaThread "Unconstrained build operations Thread 85" [_thread_blocked, id=10132, stack(0x000000ce40900000,0x000000ce40a00000) (1024K)]
- 0x000001d4f5f57600 JavaThread "Unconstrained build operations Thread 86" [_thread_blocked, id=31772, stack(0x000000ce40a00000,0x000000ce40b00000) (1024K)]
- 0x000001d4f5f55bc0 JavaThread "Unconstrained build operations Thread 87" [_thread_blocked, id=23724, stack(0x000000ce40b00000,0x000000ce40c00000) (1024K)]
- 0x000001d4efbaa060 JavaThread "Unconstrained build operations Thread 88" [_thread_blocked, id=6952, stack(0x000000ce40c00000,0x000000ce40d00000) (1024K)]
- 0x000001d4efbace50 JavaThread "Unconstrained build operations Thread 89" [_thread_blocked, id=23920, stack(0x000000ce40d00000,0x000000ce40e00000) (1024K)]
- 0x000001d4efbab410 JavaThread "Unconstrained build operations Thread 90" [_thread_blocked, id=35652, stack(0x000000ce40e00000,0x000000ce40f00000) (1024K)]
- 0x000001d4efbabaa0 JavaThread "Unconstrained build operations Thread 91" [_thread_blocked, id=7028, stack(0x000000ce40f00000,0x000000ce41000000) (1024K)]
- 0x000001d4efbaad80 JavaThread "Unconstrained build operations Thread 92" [_thread_blocked, id=33428, stack(0x000000ce41000000,0x000000ce41100000) (1024K)]
- 0x000001d4efbac130 JavaThread "Unconstrained build operations Thread 93" [_thread_blocked, id=37360, stack(0x000000ce41100000,0x000000ce41200000) (1024K)]
- 0x000001d4f5f57c90 JavaThread "Unconstrained build operations Thread 94" [_thread_blocked, id=28740, stack(0x000000ce41200000,0x000000ce41300000) (1024K)]
- 0x000001d4f5f568e0 JavaThread "Unconstrained build operations Thread 95" [_thread_blocked, id=2968, stack(0x000000ce41300000,0x000000ce41400000) (1024K)]
- 0x000001d4f5f56f70 JavaThread "Unconstrained build operations Thread 96" [_thread_blocked, id=15304, stack(0x000000ce41400000,0x000000ce41500000) (1024K)]
- 0x000001d4f5f58320 JavaThread "Unconstrained build operations Thread 97" [_thread_blocked, id=42720, stack(0x000000ce41500000,0x000000ce41600000) (1024K)]
- 0x000001d4f5f55530 JavaThread "Unconstrained build operations Thread 98" [_thread_blocked, id=3544, stack(0x000000ce41600000,0x000000ce41700000) (1024K)]
- 0x000001d4f6c67c90 JavaThread "Unconstrained build operations Thread 99" [_thread_blocked, id=27520, stack(0x000000ce41700000,0x000000ce41800000) (1024K)]
- 0x000001d4f6c64810 JavaThread "Unconstrained build operations Thread 100" [_thread_blocked, id=41552, stack(0x000000ce41800000,0x000000ce41900000) (1024K)]
- 0x000001d4f6c64ea0 JavaThread "Unconstrained build operations Thread 101" [_thread_blocked, id=7800, stack(0x000000ce41900000,0x000000ce41a00000) (1024K)]
- 0x000001d4f6c668e0 JavaThread "Unconstrained build operations Thread 102" [_thread_blocked, id=26672, stack(0x000000ce41a00000,0x000000ce41b00000) (1024K)]
- 0x000001d4f6c65bc0 JavaThread "Unconstrained build operations Thread 103" [_thread_blocked, id=39716, stack(0x000000ce41b00000,0x000000ce41c00000) (1024K)]
- 0x000001d4f6c66250 JavaThread "Unconstrained build operations Thread 104" [_thread_blocked, id=11988, stack(0x000000ce41c00000,0x000000ce41d00000) (1024K)]
- 0x000001d4f6c66f70 JavaThread "Unconstrained build operations Thread 105" [_thread_blocked, id=43028, stack(0x000000ce41d00000,0x000000ce41e00000) (1024K)]
- 0x000001d4f5886040 JavaThread "Unconstrained build operations Thread 106" [_thread_blocked, id=22476, stack(0x000000ce41e00000,0x000000ce41f00000) (1024K)]
- 0x000001d4f5888e30 JavaThread "Unconstrained build operations Thread 107" [_thread_blocked, id=38100, stack(0x000000ce41f00000,0x000000ce42000000) (1024K)]
- 0x000001d4f58873f0 JavaThread "Unconstrained build operations Thread 108" [_thread_blocked, id=37828, stack(0x000000ce42000000,0x000000ce42100000) (1024K)]
- 0x000001d4f58894c0 JavaThread "Unconstrained build operations Thread 109" [_thread_blocked, id=14040, stack(0x000000ce42100000,0x000000ce42200000) (1024K)]
- 0x000001d4f4d161b0 JavaThread "Unconstrained build operations Thread 110" [_thread_blocked, id=38364, stack(0x000000ce42200000,0x000000ce42300000) (1024K)]
- 0x000001d4f4d18280 JavaThread "Unconstrained build operations Thread 111" [_thread_blocked, id=22808, stack(0x000000ce42400000,0x000000ce42500000) (1024K)]
- 0x000001d4f4d16840 JavaThread "Unconstrained build operations Thread 112" [_thread_blocked, id=32044, stack(0x000000ce42500000,0x000000ce42600000) (1024K)]
- 0x000001d4f4d16ed0 JavaThread "Unconstrained build operations Thread 113" [_thread_blocked, id=42848, stack(0x000000ce42600000,0x000000ce42700000) (1024K)]
- 0x000001d4ee2967e0 JavaThread "Unconstrained build operations Thread 114" [_thread_blocked, id=43520, stack(0x000000ce42700000,0x000000ce42800000) (1024K)]
- 0x000001d4ee295ac0 JavaThread "Unconstrained build operations Thread 115" [_thread_blocked, id=26400, stack(0x000000ce42800000,0x000000ce42900000) (1024K)]
- 0x000001d4ed722820 JavaThread "Unconstrained build operations Thread 116" [_thread_blocked, id=12944, stack(0x000000ce42900000,0x000000ce42a00000) (1024K)]
- 0x000001d4ef502cb0 JavaThread "Unconstrained build operations Thread 117" [_thread_blocked, id=41600, stack(0x000000ce42a00000,0x000000ce42b00000) (1024K)]
- 0x000001d4ef501270 JavaThread "Unconstrained build operations Thread 118" [_thread_blocked, id=37448, stack(0x000000ce42b00000,0x000000ce42c00000) (1024K)]
- 0x000001d4ef501900 JavaThread "Unconstrained build operations Thread 119" [_thread_blocked, id=14628, stack(0x000000ce42c00000,0x000000ce42d00000) (1024K)]
- 0x000001d4ea655880 JavaThread "Unconstrained build operations Thread 120" [_thread_blocked, id=36788, stack(0x000000ce42d00000,0x000000ce42e00000) (1024K)]
- 0x000001d4ea656c30 JavaThread "Unconstrained build operations Thread 121" [_thread_blocked, id=9816, stack(0x000000ce42e00000,0x000000ce42f00000) (1024K)]
- 0x000001d4ea6572c0 JavaThread "Unconstrained build operations Thread 122" [_thread_blocked, id=28636, stack(0x000000ce42f00000,0x000000ce43000000) (1024K)]
- 0x000001d4ea653e40 JavaThread "Unconstrained build operations Thread 123" [_thread_blocked, id=37316, stack(0x000000ce43000000,0x000000ce43100000) (1024K)]
- 0x000001d4ed0f2720 JavaThread "Unconstrained build operations Thread 124" [_thread_blocked, id=29228, stack(0x000000ce43100000,0x000000ce43200000) (1024K)]
- 0x000001d4ed0f0650 JavaThread "Unconstrained build operations Thread 125" [_thread_blocked, id=16048, stack(0x000000ce43200000,0x000000ce43300000) (1024K)]
- 0x000001d4ed0ef2a0 JavaThread "Unconstrained build operations Thread 126" [_thread_blocked, id=8972, stack(0x000000ce43300000,0x000000ce43400000) (1024K)]
- 0x000001d4ed0effc0 JavaThread "Unconstrained build operations Thread 127" [_thread_blocked, id=23568, stack(0x000000ce43400000,0x000000ce43500000) (1024K)]
- 0x000001d4ed0f1370 JavaThread "Unconstrained build operations Thread 128" [_thread_blocked, id=34048, stack(0x000000ce43500000,0x000000ce43600000) (1024K)]
- 0x000001d4ed0f1a00 JavaThread "Unconstrained build operations Thread 129" [_thread_blocked, id=43196, stack(0x000000ce43600000,0x000000ce43700000) (1024K)]
- 0x000001d4ed0f2090 JavaThread "Unconstrained build operations Thread 130" [_thread_blocked, id=7376, stack(0x000000ce43700000,0x000000ce43800000) (1024K)]
- 0x000001d4f561b920 JavaThread "Unconstrained build operations Thread 131" [_thread_blocked, id=39800, stack(0x000000ce43800000,0x000000ce43900000) (1024K)]
- 0x000001d4f57fbca0 JavaThread "Unconstrained build operations Thread 132" [_thread_blocked, id=19508, stack(0x000000ce43900000,0x000000ce43a00000) (1024K)]
- 0x000001d4f57faf80 JavaThread "Unconstrained build operations Thread 133" [_thread_blocked, id=13676, stack(0x000000ce43a00000,0x000000ce43b00000) (1024K)]
- 0x000001d4f57fc9c0 JavaThread "Unconstrained build operations Thread 134" [_thread_blocked, id=24968, stack(0x000000ce43b00000,0x000000ce43c00000) (1024K)]
- 0x000001d4f57fa8f0 JavaThread "Unconstrained build operations Thread 135" [_thread_blocked, id=41796, stack(0x000000ce43c00000,0x000000ce43d00000) (1024K)]
- 0x000001d4f57fc330 JavaThread "Unconstrained build operations Thread 136" [_thread_blocked, id=17244, stack(0x000000ce43d00000,0x000000ce43e00000) (1024K)]
- 0x000001d4efba99d0 JavaThread "Unconstrained build operations Thread 137" [_thread_blocked, id=42332, stack(0x000000ce43e00000,0x000000ce43f00000) (1024K)]
- 0x000001d4ee8733e0 JavaThread "Unconstrained build operations Thread 138" [_thread_blocked, id=25836, stack(0x000000ce43f00000,0x000000ce44000000) (1024K)]
- 0x000001d4ee873a70 JavaThread "Unconstrained build operations Thread 139" [_thread_blocked, id=31000, stack(0x000000ce44000000,0x000000ce44100000) (1024K)]
- 0x000001d4ee8754b0 JavaThread "Unconstrained build operations Thread 140" [_thread_blocked, id=13988, stack(0x000000ce44100000,0x000000ce44200000) (1024K)]
-Total: 188
-
-Other Threads:
- 0x000001d4cee6f930 VMThread "VM Thread" [id=33568, stack(0x000000ce37e00000,0x000000ce37f00000) (1024K)]
- 0x000001d4cee610c0 WatcherThread "VM Periodic Task Thread" [id=468, stack(0x000000ce37d00000,0x000000ce37e00000) (1024K)]
- 0x000001d4b39775a0 WorkerThread "GC Thread#0" [id=34104, stack(0x000000ce37800000,0x000000ce37900000) (1024K)]
- 0x000001d4e83b7a30 WorkerThread "GC Thread#1" [id=42408, stack(0x000000ce38a00000,0x000000ce38b00000) (1024K)]
- 0x000001d4e83b7de0 WorkerThread "GC Thread#2" [id=14868, stack(0x000000ce38b00000,0x000000ce38c00000) (1024K)]
- 0x000001d4e83b85a0 WorkerThread "GC Thread#3" [id=23708, stack(0x000000ce38c00000,0x000000ce38d00000) (1024K)]
- 0x000001d4e83b8d60 WorkerThread "GC Thread#4" [id=28116, stack(0x000000ce38d00000,0x000000ce38e00000) (1024K)]
- 0x000001d4e8380d60 WorkerThread "GC Thread#5" [id=12036, stack(0x000000ce38e00000,0x000000ce38f00000) (1024K)]
- 0x000001d4e9b7d2f0 WorkerThread "GC Thread#6" [id=32508, stack(0x000000ce38f00000,0x000000ce39000000) (1024K)]
- 0x000001d4e9b8cb90 WorkerThread "GC Thread#7" [id=43928, stack(0x000000ce39000000,0x000000ce39100000) (1024K)]
- 0x000001d4e9b8d310 WorkerThread "GC Thread#8" [id=8412, stack(0x000000ce39100000,0x000000ce39200000) (1024K)]
- 0x000001d4e9b8def0 WorkerThread "GC Thread#9" [id=3388, stack(0x000000ce39200000,0x000000ce39300000) (1024K)]
- 0x000001d4ec8ad8e0 WorkerThread "GC Thread#10" [id=3212, stack(0x000000ce3a000000,0x000000ce3a100000) (1024K)]
- 0x000001d4b397c4a0 ConcurrentGCThread "G1 Main Marker" [id=43492, stack(0x000000ce37900000,0x000000ce37a00000) (1024K)]
- 0x000001d4b397cec0 WorkerThread "G1 Conc#0" [id=37968, stack(0x000000ce37a00000,0x000000ce37b00000) (1024K)]
- 0x000001d4ec8ac670 WorkerThread "G1 Conc#1" [id=31428, stack(0x000000ce3a100000,0x000000ce3a200000) (1024K)]
- 0x000001d4ec8adc90 WorkerThread "G1 Conc#2" [id=29100, stack(0x000000ce3a200000,0x000000ce3a300000) (1024K)]
- 0x000001d4ced331f0 ConcurrentGCThread "G1 Refine#0" [id=3260, stack(0x000000ce37b00000,0x000000ce37c00000) (1024K)]
- 0x000001d4ced34740 ConcurrentGCThread "G1 Service" [id=41328, stack(0x000000ce37c00000,0x000000ce37d00000) (1024K)]
-Total: 19
-
-Threads with active compile tasks:
-C2 CompilerThread0 13665904 46643 4 org.gradle.api.internal.artifacts.ivyservice.modulecache.PersistentModuleMetadataCache$$Lambda/0x000001d4d0873230::get (16 bytes)
-C1 CompilerThread0 13665904 46652 3 org.gradle.api.internal.tasks.properties.annotations.AbstractOutputPropertyAnnotationHandler::visitPropertyValue (22 bytes)
-C2 CompilerThread1 13665904 46647 4 java.lang.invoke.LambdaForm$MH/0x000001d4d0acc000::invoke (42 bytes)
-Total: 3
-
-VM state: not at safepoint (normal execution)
-
-VM Mutex/Monitor currently owned by a thread: None
-
-Heap address: 0x00000000e0000000, size: 512 MB, Compressed Oops mode: 32-bit
-
-CDS archive(s) mapped at: [0x000001d4cf000000-0x000001d4cfc80000-0x000001d4cfc80000), size 13107200, SharedBaseAddress: 0x000001d4cf000000, ArchiveRelocationMode: 1.
-Compressed class space mapped at: 0x000001d4d0000000-0x000001d4e4000000, reserved size: 335544320
-Narrow klass base: 0x000001d4cf000000, Narrow klass shift: 0, Narrow klass range: 0x100000000
-
-GC Precious Log:
- CardTable entry size: 512
- Card Set container configuration: InlinePtr #cards 5 size 8 Array Of Cards #cards 12 size 40 Howl #buckets 4 coarsen threshold 1843 Howl Bitmap #cards 512 size 80 coarsen threshold 460 Card regions per heap region 1 cards per card region 2048
- CPUs: 14 total, 14 available
- Memory: 15836M
- Large Page Support: Disabled
- NUMA Support: Disabled
- Compressed Oops: Enabled (32-bit)
- Heap Region Size: 1M
- Heap Min Capacity: 256M
- Heap Initial Capacity: 256M
- Heap Max Capacity: 512M
- Pre-touch: Disabled
- Parallel Workers: 11
- Concurrent Workers: 3
- Concurrent Refinement Workers: 11
- Periodic GC: Disabled
-
-Heap:
- garbage-first heap total 460800K, used 215792K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 9 young (9216K), 7 survivors (7168K)
- Metaspace used 118714K, committed 122816K, reserved 458752K
- class space used 15259K, committed 16576K, reserved 327680K
-
-Heap Regions: E=young(eden), S=young(survivor), O=old, HS=humongous(starts), HC=humongous(continues), CS=collection set, F=free, TAMS=top-at-mark-start, PB=parsable bottom
-| 0|0x00000000e0000000, 0x00000000e0100000, 0x00000000e0100000|100%|HS| |TAMS 0x00000000e0000000| PB 0x00000000e0000000| Complete
-| 1|0x00000000e0100000, 0x00000000e0200000, 0x00000000e0200000|100%|HC| |TAMS 0x00000000e0100000| PB 0x00000000e0100000| Complete
-| 2|0x00000000e0200000, 0x00000000e0300000, 0x00000000e0300000|100%|HC| |TAMS 0x00000000e0200000| PB 0x00000000e0200000| Complete
-| 3|0x00000000e0300000, 0x00000000e0400000, 0x00000000e0400000|100%| O| |TAMS 0x00000000e0300000| PB 0x00000000e0300000| Untracked
-| 4|0x00000000e0400000, 0x00000000e0500000, 0x00000000e0500000|100%| O| |TAMS 0x00000000e0400000| PB 0x00000000e0400000| Untracked
-| 5|0x00000000e0500000, 0x00000000e0600000, 0x00000000e0600000|100%| O| |TAMS 0x00000000e0500000| PB 0x00000000e0500000| Untracked
-| 6|0x00000000e0600000, 0x00000000e0700000, 0x00000000e0700000|100%|HS| |TAMS 0x00000000e0600000| PB 0x00000000e0600000| Complete
-| 7|0x00000000e0700000, 0x00000000e0800000, 0x00000000e0800000|100%| O| |TAMS 0x00000000e0700000| PB 0x00000000e0700000| Untracked
-| 8|0x00000000e0800000, 0x00000000e0900000, 0x00000000e0900000|100%| O| |TAMS 0x00000000e0800000| PB 0x00000000e0800000| Untracked
-| 9|0x00000000e0900000, 0x00000000e0a00000, 0x00000000e0a00000|100%| O| |TAMS 0x00000000e0900000| PB 0x00000000e0900000| Untracked
-| 10|0x00000000e0a00000, 0x00000000e0b00000, 0x00000000e0b00000|100%| O| |TAMS 0x00000000e0a00000| PB 0x00000000e0a00000| Untracked
-| 11|0x00000000e0b00000, 0x00000000e0c00000, 0x00000000e0c00000|100%| O| |TAMS 0x00000000e0b00000| PB 0x00000000e0b00000| Untracked
-| 12|0x00000000e0c00000, 0x00000000e0d00000, 0x00000000e0d00000|100%| O| |TAMS 0x00000000e0c00000| PB 0x00000000e0c00000| Untracked
-| 13|0x00000000e0d00000, 0x00000000e0e00000, 0x00000000e0e00000|100%| O| |TAMS 0x00000000e0d00000| PB 0x00000000e0d00000| Untracked
-| 14|0x00000000e0e00000, 0x00000000e0f00000, 0x00000000e0f00000|100%| O| |TAMS 0x00000000e0e00000| PB 0x00000000e0e00000| Untracked
-| 15|0x00000000e0f00000, 0x00000000e1000000, 0x00000000e1000000|100%| O| |TAMS 0x00000000e0f00000| PB 0x00000000e0f00000| Untracked
-| 16|0x00000000e1000000, 0x00000000e1100000, 0x00000000e1100000|100%| O| |TAMS 0x00000000e1000000| PB 0x00000000e1000000| Untracked
-| 17|0x00000000e1100000, 0x00000000e1200000, 0x00000000e1200000|100%| O| |TAMS 0x00000000e1100000| PB 0x00000000e1100000| Untracked
-| 18|0x00000000e1200000, 0x00000000e1300000, 0x00000000e1300000|100%| O| |TAMS 0x00000000e1200000| PB 0x00000000e1200000| Untracked
-| 19|0x00000000e1300000, 0x00000000e1400000, 0x00000000e1400000|100%| O| |TAMS 0x00000000e1300000| PB 0x00000000e1300000| Untracked
-| 20|0x00000000e1400000, 0x00000000e1500000, 0x00000000e1500000|100%| O| |TAMS 0x00000000e1400000| PB 0x00000000e1400000| Untracked
-| 21|0x00000000e1500000, 0x00000000e1600000, 0x00000000e1600000|100%| O| |TAMS 0x00000000e1500000| PB 0x00000000e1500000| Untracked
-| 22|0x00000000e1600000, 0x00000000e1700000, 0x00000000e1700000|100%| O| |TAMS 0x00000000e1600000| PB 0x00000000e1600000| Untracked
-| 23|0x00000000e1700000, 0x00000000e1800000, 0x00000000e1800000|100%| O| |TAMS 0x00000000e1700000| PB 0x00000000e1700000| Untracked
-| 24|0x00000000e1800000, 0x00000000e1900000, 0x00000000e1900000|100%| O| |TAMS 0x00000000e1800000| PB 0x00000000e1800000| Untracked
-| 25|0x00000000e1900000, 0x00000000e1a00000, 0x00000000e1a00000|100%| O| |TAMS 0x00000000e1900000| PB 0x00000000e1900000| Untracked
-| 26|0x00000000e1a00000, 0x00000000e1b00000, 0x00000000e1b00000|100%| O| |TAMS 0x00000000e1a00000| PB 0x00000000e1a00000| Untracked
-| 27|0x00000000e1b00000, 0x00000000e1c00000, 0x00000000e1c00000|100%| O| |TAMS 0x00000000e1b00000| PB 0x00000000e1b00000| Untracked
-| 28|0x00000000e1c00000, 0x00000000e1d00000, 0x00000000e1d00000|100%| O| |TAMS 0x00000000e1c00000| PB 0x00000000e1c00000| Untracked
-| 29|0x00000000e1d00000, 0x00000000e1e00000, 0x00000000e1e00000|100%| O| |TAMS 0x00000000e1d00000| PB 0x00000000e1d00000| Untracked
-| 30|0x00000000e1e00000, 0x00000000e1f00000, 0x00000000e1f00000|100%| O| |TAMS 0x00000000e1e00000| PB 0x00000000e1e00000| Untracked
-| 31|0x00000000e1f00000, 0x00000000e2000000, 0x00000000e2000000|100%| O| |TAMS 0x00000000e1f00000| PB 0x00000000e1f00000| Untracked
-| 32|0x00000000e2000000, 0x00000000e2100000, 0x00000000e2100000|100%| O| |TAMS 0x00000000e2000000| PB 0x00000000e2000000| Untracked
-| 33|0x00000000e2100000, 0x00000000e2100000, 0x00000000e2200000| 0%| F| |TAMS 0x00000000e2100000| PB 0x00000000e2100000| Untracked
-| 34|0x00000000e2200000, 0x00000000e2300000, 0x00000000e2300000|100%| O| |TAMS 0x00000000e2200000| PB 0x00000000e2200000| Untracked
-| 35|0x00000000e2300000, 0x00000000e2400000, 0x00000000e2400000|100%| O| |TAMS 0x00000000e2300000| PB 0x00000000e2300000| Untracked
-| 36|0x00000000e2400000, 0x00000000e2500000, 0x00000000e2500000|100%| O| |TAMS 0x00000000e2400000| PB 0x00000000e2400000| Untracked
-| 37|0x00000000e2500000, 0x00000000e2600000, 0x00000000e2600000|100%| O| |TAMS 0x00000000e2500000| PB 0x00000000e2500000| Untracked
-| 38|0x00000000e2600000, 0x00000000e2600000, 0x00000000e2700000| 0%| F| |TAMS 0x00000000e2600000| PB 0x00000000e2600000| Untracked
-| 39|0x00000000e2700000, 0x00000000e2800000, 0x00000000e2800000|100%| O| |TAMS 0x00000000e2700000| PB 0x00000000e2700000| Untracked
-| 40|0x00000000e2800000, 0x00000000e2900000, 0x00000000e2900000|100%| O| |TAMS 0x00000000e2800000| PB 0x00000000e2800000| Untracked
-| 41|0x00000000e2900000, 0x00000000e2a00000, 0x00000000e2a00000|100%| O| |TAMS 0x00000000e2900000| PB 0x00000000e2900000| Untracked
-| 42|0x00000000e2a00000, 0x00000000e2a00000, 0x00000000e2b00000| 0%| F| |TAMS 0x00000000e2a00000| PB 0x00000000e2a00000| Untracked
-| 43|0x00000000e2b00000, 0x00000000e2c00000, 0x00000000e2c00000|100%| O| |TAMS 0x00000000e2b00000| PB 0x00000000e2b00000| Untracked
-| 44|0x00000000e2c00000, 0x00000000e2d00000, 0x00000000e2d00000|100%| O| |TAMS 0x00000000e2c00000| PB 0x00000000e2c00000| Untracked
-| 45|0x00000000e2d00000, 0x00000000e2e00000, 0x00000000e2e00000|100%| O| |TAMS 0x00000000e2d00000| PB 0x00000000e2d00000| Untracked
-| 46|0x00000000e2e00000, 0x00000000e2f00000, 0x00000000e2f00000|100%| O| |TAMS 0x00000000e2e00000| PB 0x00000000e2e00000| Untracked
-| 47|0x00000000e2f00000, 0x00000000e3000000, 0x00000000e3000000|100%| O|Cm|TAMS 0x00000000e2f00000| PB 0x00000000e2f00000| Complete
-| 48|0x00000000e3000000, 0x00000000e3100000, 0x00000000e3100000|100%| O| |TAMS 0x00000000e3000000| PB 0x00000000e3000000| Untracked
-| 49|0x00000000e3100000, 0x00000000e3200000, 0x00000000e3200000|100%| O|Cm|TAMS 0x00000000e3100000| PB 0x00000000e3100000| Complete
-| 50|0x00000000e3200000, 0x00000000e3300000, 0x00000000e3300000|100%| O| |TAMS 0x00000000e3200000| PB 0x00000000e3200000| Untracked
-| 51|0x00000000e3300000, 0x00000000e3400000, 0x00000000e3400000|100%| O| |TAMS 0x00000000e3300000| PB 0x00000000e3300000| Untracked
-| 52|0x00000000e3400000, 0x00000000e3500000, 0x00000000e3500000|100%| O| |TAMS 0x00000000e3400000| PB 0x00000000e3400000| Untracked
-| 53|0x00000000e3500000, 0x00000000e3600000, 0x00000000e3600000|100%| O| |TAMS 0x00000000e3500000| PB 0x00000000e3500000| Untracked
-| 54|0x00000000e3600000, 0x00000000e3600000, 0x00000000e3700000| 0%| F| |TAMS 0x00000000e3600000| PB 0x00000000e3600000| Untracked
-| 55|0x00000000e3700000, 0x00000000e3800000, 0x00000000e3800000|100%| O| |TAMS 0x00000000e3700000| PB 0x00000000e3700000| Untracked
-| 56|0x00000000e3800000, 0x00000000e3900000, 0x00000000e3900000|100%| O| |TAMS 0x00000000e3800000| PB 0x00000000e3800000| Untracked
-| 57|0x00000000e3900000, 0x00000000e3900000, 0x00000000e3a00000| 0%| F| |TAMS 0x00000000e3900000| PB 0x00000000e3900000| Untracked
-| 58|0x00000000e3a00000, 0x00000000e3b00000, 0x00000000e3b00000|100%| O| |TAMS 0x00000000e3a00000| PB 0x00000000e3a00000| Untracked
-| 59|0x00000000e3b00000, 0x00000000e3c00000, 0x00000000e3c00000|100%| O| |TAMS 0x00000000e3b00000| PB 0x00000000e3b00000| Untracked
-| 60|0x00000000e3c00000, 0x00000000e3c00000, 0x00000000e3d00000| 0%| F| |TAMS 0x00000000e3c00000| PB 0x00000000e3c00000| Untracked
-| 61|0x00000000e3d00000, 0x00000000e3e00000, 0x00000000e3e00000|100%| O| |TAMS 0x00000000e3d00000| PB 0x00000000e3d00000| Untracked
-| 62|0x00000000e3e00000, 0x00000000e3e00000, 0x00000000e3f00000| 0%| F| |TAMS 0x00000000e3e00000| PB 0x00000000e3e00000| Untracked
-| 63|0x00000000e3f00000, 0x00000000e4000000, 0x00000000e4000000|100%| O|Cm|TAMS 0x00000000e3f00000| PB 0x00000000e3f00000| Complete
-| 64|0x00000000e4000000, 0x00000000e4100000, 0x00000000e4100000|100%| O| |TAMS 0x00000000e4000000| PB 0x00000000e4000000| Untracked
-| 65|0x00000000e4100000, 0x00000000e4100000, 0x00000000e4200000| 0%| F| |TAMS 0x00000000e4100000| PB 0x00000000e4100000| Untracked
-| 66|0x00000000e4200000, 0x00000000e4300000, 0x00000000e4300000|100%| O| |TAMS 0x00000000e4200000| PB 0x00000000e4200000| Untracked
-| 67|0x00000000e4300000, 0x00000000e4400000, 0x00000000e4400000|100%| O| |TAMS 0x00000000e4300000| PB 0x00000000e4300000| Untracked
-| 68|0x00000000e4400000, 0x00000000e4500000, 0x00000000e4500000|100%| O| |TAMS 0x00000000e4400000| PB 0x00000000e4400000| Untracked
-| 69|0x00000000e4500000, 0x00000000e4600000, 0x00000000e4600000|100%| O| |TAMS 0x00000000e4500000| PB 0x00000000e4500000| Untracked
-| 70|0x00000000e4600000, 0x00000000e4600000, 0x00000000e4700000| 0%| F| |TAMS 0x00000000e4600000| PB 0x00000000e4600000| Untracked
-| 71|0x00000000e4700000, 0x00000000e4800000, 0x00000000e4800000|100%| O| |TAMS 0x00000000e4700000| PB 0x00000000e4700000| Untracked
-| 72|0x00000000e4800000, 0x00000000e4800000, 0x00000000e4900000| 0%| F| |TAMS 0x00000000e4800000| PB 0x00000000e4800000| Untracked
-| 73|0x00000000e4900000, 0x00000000e4a00000, 0x00000000e4a00000|100%| O| |TAMS 0x00000000e4900000| PB 0x00000000e4900000| Untracked
-| 74|0x00000000e4a00000, 0x00000000e4b00000, 0x00000000e4b00000|100%| O| |TAMS 0x00000000e4a00000| PB 0x00000000e4a00000| Untracked
-| 75|0x00000000e4b00000, 0x00000000e4c00000, 0x00000000e4c00000|100%| O| |TAMS 0x00000000e4b00000| PB 0x00000000e4b00000| Untracked
-| 76|0x00000000e4c00000, 0x00000000e4d00000, 0x00000000e4d00000|100%| O|Cm|TAMS 0x00000000e4c00000| PB 0x00000000e4c00000| Complete
-| 77|0x00000000e4d00000, 0x00000000e4e00000, 0x00000000e4e00000|100%| O| |TAMS 0x00000000e4d00000| PB 0x00000000e4d00000| Untracked
-| 78|0x00000000e4e00000, 0x00000000e4f00000, 0x00000000e4f00000|100%| O|Cm|TAMS 0x00000000e4e00000| PB 0x00000000e4e00000| Complete
-| 79|0x00000000e4f00000, 0x00000000e5000000, 0x00000000e5000000|100%| O| |TAMS 0x00000000e4f00000| PB 0x00000000e4f00000| Untracked
-| 80|0x00000000e5000000, 0x00000000e5000000, 0x00000000e5100000| 0%| F| |TAMS 0x00000000e5000000| PB 0x00000000e5000000| Untracked
-| 81|0x00000000e5100000, 0x00000000e5200000, 0x00000000e5200000|100%| O| |TAMS 0x00000000e5100000| PB 0x00000000e5100000| Untracked
-| 82|0x00000000e5200000, 0x00000000e5300000, 0x00000000e5300000|100%| O| |TAMS 0x00000000e5200000| PB 0x00000000e5200000| Untracked
-| 83|0x00000000e5300000, 0x00000000e5400000, 0x00000000e5400000|100%| O| |TAMS 0x00000000e5300000| PB 0x00000000e5300000| Untracked
-| 84|0x00000000e5400000, 0x00000000e5400000, 0x00000000e5500000| 0%| F| |TAMS 0x00000000e5400000| PB 0x00000000e5400000| Untracked
-| 85|0x00000000e5500000, 0x00000000e5500000, 0x00000000e5600000| 0%| F| |TAMS 0x00000000e5500000| PB 0x00000000e5500000| Untracked
-| 86|0x00000000e5600000, 0x00000000e5700000, 0x00000000e5700000|100%| O| |TAMS 0x00000000e5600000| PB 0x00000000e5600000| Untracked
-| 87|0x00000000e5700000, 0x00000000e5800000, 0x00000000e5800000|100%| O| |TAMS 0x00000000e5700000| PB 0x00000000e5700000| Untracked
-| 88|0x00000000e5800000, 0x00000000e5900000, 0x00000000e5900000|100%| O| |TAMS 0x00000000e5800000| PB 0x00000000e5800000| Untracked
-| 89|0x00000000e5900000, 0x00000000e5900000, 0x00000000e5a00000| 0%| F| |TAMS 0x00000000e5900000| PB 0x00000000e5900000| Untracked
-| 90|0x00000000e5a00000, 0x00000000e5b00000, 0x00000000e5b00000|100%| O| |TAMS 0x00000000e5a00000| PB 0x00000000e5a00000| Untracked
-| 91|0x00000000e5b00000, 0x00000000e5c00000, 0x00000000e5c00000|100%| O| |TAMS 0x00000000e5b00000| PB 0x00000000e5b00000| Untracked
-| 92|0x00000000e5c00000, 0x00000000e5d00000, 0x00000000e5d00000|100%| O| |TAMS 0x00000000e5c00000| PB 0x00000000e5c00000| Untracked
-| 93|0x00000000e5d00000, 0x00000000e5d00000, 0x00000000e5e00000| 0%| F| |TAMS 0x00000000e5d00000| PB 0x00000000e5d00000| Untracked
-| 94|0x00000000e5e00000, 0x00000000e5f00000, 0x00000000e5f00000|100%| O| |TAMS 0x00000000e5e00000| PB 0x00000000e5e00000| Untracked
-| 95|0x00000000e5f00000, 0x00000000e6000000, 0x00000000e6000000|100%| O| |TAMS 0x00000000e5f00000| PB 0x00000000e5f00000| Untracked
-| 96|0x00000000e6000000, 0x00000000e6100000, 0x00000000e6100000|100%| O| |TAMS 0x00000000e6000000| PB 0x00000000e6000000| Untracked
-| 97|0x00000000e6100000, 0x00000000e6200000, 0x00000000e6200000|100%| O| |TAMS 0x00000000e6100000| PB 0x00000000e6100000| Untracked
-| 98|0x00000000e6200000, 0x00000000e6300000, 0x00000000e6300000|100%| O| |TAMS 0x00000000e6200000| PB 0x00000000e6200000| Untracked
-| 99|0x00000000e6300000, 0x00000000e6300000, 0x00000000e6400000| 0%| F| |TAMS 0x00000000e6300000| PB 0x00000000e6300000| Untracked
-| 100|0x00000000e6400000, 0x00000000e6400000, 0x00000000e6500000| 0%| F| |TAMS 0x00000000e6400000| PB 0x00000000e6400000| Untracked
-| 101|0x00000000e6500000, 0x00000000e6600000, 0x00000000e6600000|100%| O| |TAMS 0x00000000e6500000| PB 0x00000000e6500000| Untracked
-| 102|0x00000000e6600000, 0x00000000e6600000, 0x00000000e6700000| 0%| F| |TAMS 0x00000000e6600000| PB 0x00000000e6600000| Untracked
-| 103|0x00000000e6700000, 0x00000000e6800000, 0x00000000e6800000|100%| O| |TAMS 0x00000000e6700000| PB 0x00000000e6700000| Untracked
-| 104|0x00000000e6800000, 0x00000000e6900000, 0x00000000e6900000|100%| O| |TAMS 0x00000000e6800000| PB 0x00000000e6800000| Untracked
-| 105|0x00000000e6900000, 0x00000000e6a00000, 0x00000000e6a00000|100%| O| |TAMS 0x00000000e6900000| PB 0x00000000e6900000| Untracked
-| 106|0x00000000e6a00000, 0x00000000e6b00000, 0x00000000e6b00000|100%| O| |TAMS 0x00000000e6a00000| PB 0x00000000e6a00000| Untracked
-| 107|0x00000000e6b00000, 0x00000000e6c00000, 0x00000000e6c00000|100%| O| |TAMS 0x00000000e6b00000| PB 0x00000000e6b00000| Untracked
-| 108|0x00000000e6c00000, 0x00000000e6d00000, 0x00000000e6d00000|100%| O| |TAMS 0x00000000e6c00000| PB 0x00000000e6c00000| Untracked
-| 109|0x00000000e6d00000, 0x00000000e6e00000, 0x00000000e6e00000|100%| O| |TAMS 0x00000000e6d00000| PB 0x00000000e6d00000| Untracked
-| 110|0x00000000e6e00000, 0x00000000e6f00000, 0x00000000e6f00000|100%| O| |TAMS 0x00000000e6e00000| PB 0x00000000e6e00000| Untracked
-| 111|0x00000000e6f00000, 0x00000000e7000000, 0x00000000e7000000|100%| O| |TAMS 0x00000000e6f00000| PB 0x00000000e6f00000| Untracked
-| 112|0x00000000e7000000, 0x00000000e7000000, 0x00000000e7100000| 0%| F| |TAMS 0x00000000e7000000| PB 0x00000000e7000000| Untracked
-| 113|0x00000000e7100000, 0x00000000e7200000, 0x00000000e7200000|100%| O| |TAMS 0x00000000e7100000| PB 0x00000000e7100000| Untracked
-| 114|0x00000000e7200000, 0x00000000e7300000, 0x00000000e7300000|100%| O| |TAMS 0x00000000e7200000| PB 0x00000000e7200000| Untracked
-| 115|0x00000000e7300000, 0x00000000e7400000, 0x00000000e7400000|100%| O|Cm|TAMS 0x00000000e7300000| PB 0x00000000e7300000| Complete
-| 116|0x00000000e7400000, 0x00000000e7500000, 0x00000000e7500000|100%| O| |TAMS 0x00000000e7400000| PB 0x00000000e7400000| Untracked
-| 117|0x00000000e7500000, 0x00000000e7600000, 0x00000000e7600000|100%| O| |TAMS 0x00000000e7500000| PB 0x00000000e7500000| Untracked
-| 118|0x00000000e7600000, 0x00000000e7600000, 0x00000000e7700000| 0%| F| |TAMS 0x00000000e7600000| PB 0x00000000e7600000| Untracked
-| 119|0x00000000e7700000, 0x00000000e7800000, 0x00000000e7800000|100%| O| |TAMS 0x00000000e7700000| PB 0x00000000e7700000| Untracked
-| 120|0x00000000e7800000, 0x00000000e7900000, 0x00000000e7900000|100%| O| |TAMS 0x00000000e7800000| PB 0x00000000e7800000| Untracked
-| 121|0x00000000e7900000, 0x00000000e7a00000, 0x00000000e7a00000|100%| O| |TAMS 0x00000000e7900000| PB 0x00000000e7900000| Untracked
-| 122|0x00000000e7a00000, 0x00000000e7b00000, 0x00000000e7b00000|100%| O| |TAMS 0x00000000e7a00000| PB 0x00000000e7a00000| Untracked
-| 123|0x00000000e7b00000, 0x00000000e7c00000, 0x00000000e7c00000|100%| O|Cm|TAMS 0x00000000e7b00000| PB 0x00000000e7b00000| Complete
-| 124|0x00000000e7c00000, 0x00000000e7d00000, 0x00000000e7d00000|100%| O|Cm|TAMS 0x00000000e7c00000| PB 0x00000000e7c00000| Complete
-| 125|0x00000000e7d00000, 0x00000000e7e00000, 0x00000000e7e00000|100%| O|Cm|TAMS 0x00000000e7d00000| PB 0x00000000e7d00000| Complete
-| 126|0x00000000e7e00000, 0x00000000e7f00000, 0x00000000e7f00000|100%| O| |TAMS 0x00000000e7e00000| PB 0x00000000e7e00000| Untracked
-| 127|0x00000000e7f00000, 0x00000000e8000000, 0x00000000e8000000|100%| O| |TAMS 0x00000000e7f00000| PB 0x00000000e7f00000| Untracked
-| 128|0x00000000e8000000, 0x00000000e8000000, 0x00000000e8100000| 0%| F| |TAMS 0x00000000e8000000| PB 0x00000000e8000000| Untracked
-| 129|0x00000000e8100000, 0x00000000e8200000, 0x00000000e8200000|100%| O|Cm|TAMS 0x00000000e8100000| PB 0x00000000e8100000| Complete
-| 130|0x00000000e8200000, 0x00000000e8300000, 0x00000000e8300000|100%| O|Cm|TAMS 0x00000000e8200000| PB 0x00000000e8200000| Complete
-| 131|0x00000000e8300000, 0x00000000e8400000, 0x00000000e8400000|100%| O| |TAMS 0x00000000e8300000| PB 0x00000000e8300000| Untracked
-| 132|0x00000000e8400000, 0x00000000e8500000, 0x00000000e8500000|100%| O| |TAMS 0x00000000e8400000| PB 0x00000000e8400000| Untracked
-| 133|0x00000000e8500000, 0x00000000e8600000, 0x00000000e8600000|100%| O|Cm|TAMS 0x00000000e8500000| PB 0x00000000e8500000| Complete
-| 134|0x00000000e8600000, 0x00000000e8600000, 0x00000000e8700000| 0%| F| |TAMS 0x00000000e8600000| PB 0x00000000e8600000| Untracked
-| 135|0x00000000e8700000, 0x00000000e8800000, 0x00000000e8800000|100%| O| |TAMS 0x00000000e8700000| PB 0x00000000e8700000| Untracked
-| 136|0x00000000e8800000, 0x00000000e8900000, 0x00000000e8900000|100%| O| |TAMS 0x00000000e8800000| PB 0x00000000e8800000| Untracked
-| 137|0x00000000e8900000, 0x00000000e8a00000, 0x00000000e8a00000|100%| O|Cm|TAMS 0x00000000e8900000| PB 0x00000000e8900000| Complete
-| 138|0x00000000e8a00000, 0x00000000e8b00000, 0x00000000e8b00000|100%| O| |TAMS 0x00000000e8a00000| PB 0x00000000e8a00000| Untracked
-| 139|0x00000000e8b00000, 0x00000000e8c00000, 0x00000000e8c00000|100%| O| |TAMS 0x00000000e8b00000| PB 0x00000000e8b00000| Untracked
-| 140|0x00000000e8c00000, 0x00000000e8c00000, 0x00000000e8d00000| 0%| F| |TAMS 0x00000000e8c00000| PB 0x00000000e8c00000| Untracked
-| 141|0x00000000e8d00000, 0x00000000e8e00000, 0x00000000e8e00000|100%| O| |TAMS 0x00000000e8d00000| PB 0x00000000e8d00000| Untracked
-| 142|0x00000000e8e00000, 0x00000000e8f00000, 0x00000000e8f00000|100%| O|Cm|TAMS 0x00000000e8e00000| PB 0x00000000e8e00000| Complete
-| 143|0x00000000e8f00000, 0x00000000e8f00000, 0x00000000e9000000| 0%| F| |TAMS 0x00000000e8f00000| PB 0x00000000e8f00000| Untracked
-| 144|0x00000000e9000000, 0x00000000e9100000, 0x00000000e9100000|100%| O| |TAMS 0x00000000e9000000| PB 0x00000000e9000000| Untracked
-| 145|0x00000000e9100000, 0x00000000e9200000, 0x00000000e9200000|100%| O|Cm|TAMS 0x00000000e9100000| PB 0x00000000e9100000| Complete
-| 146|0x00000000e9200000, 0x00000000e9300000, 0x00000000e9300000|100%| O| |TAMS 0x00000000e9200000| PB 0x00000000e9200000| Untracked
-| 147|0x00000000e9300000, 0x00000000e9400000, 0x00000000e9400000|100%| O|Cm|TAMS 0x00000000e9300000| PB 0x00000000e9300000| Complete
-| 148|0x00000000e9400000, 0x00000000e9500000, 0x00000000e9500000|100%| O| |TAMS 0x00000000e9400000| PB 0x00000000e9400000| Untracked
-| 149|0x00000000e9500000, 0x00000000e9600000, 0x00000000e9600000|100%| O| |TAMS 0x00000000e9500000| PB 0x00000000e9500000| Untracked
-| 150|0x00000000e9600000, 0x00000000e9700000, 0x00000000e9700000|100%| O| |TAMS 0x00000000e9600000| PB 0x00000000e9600000| Untracked
-| 151|0x00000000e9700000, 0x00000000e9800000, 0x00000000e9800000|100%| O| |TAMS 0x00000000e9700000| PB 0x00000000e9700000| Untracked
-| 152|0x00000000e9800000, 0x00000000e9900000, 0x00000000e9900000|100%| O| |TAMS 0x00000000e9800000| PB 0x00000000e9800000| Untracked
-| 153|0x00000000e9900000, 0x00000000e9a00000, 0x00000000e9a00000|100%| O| |TAMS 0x00000000e9900000| PB 0x00000000e9900000| Untracked
-| 154|0x00000000e9a00000, 0x00000000e9b00000, 0x00000000e9b00000|100%|HS| |TAMS 0x00000000e9a00000| PB 0x00000000e9a00000| Complete
-| 155|0x00000000e9b00000, 0x00000000e9c00000, 0x00000000e9c00000|100%|HS| |TAMS 0x00000000e9b00000| PB 0x00000000e9b00000| Complete
-| 156|0x00000000e9c00000, 0x00000000e9d00000, 0x00000000e9d00000|100%| O| |TAMS 0x00000000e9c00000| PB 0x00000000e9c00000| Untracked
-| 157|0x00000000e9d00000, 0x00000000e9e00000, 0x00000000e9e00000|100%|HS| |TAMS 0x00000000e9d00000| PB 0x00000000e9d00000| Complete
-| 158|0x00000000e9e00000, 0x00000000e9f00000, 0x00000000e9f00000|100%|HS| |TAMS 0x00000000e9e00000| PB 0x00000000e9e00000| Complete
-| 159|0x00000000e9f00000, 0x00000000ea000000, 0x00000000ea000000|100%| O| |TAMS 0x00000000e9f00000| PB 0x00000000e9f00000| Untracked
-| 160|0x00000000ea000000, 0x00000000ea100000, 0x00000000ea100000|100%| O| |TAMS 0x00000000ea000000| PB 0x00000000ea000000| Untracked
-| 161|0x00000000ea100000, 0x00000000ea200000, 0x00000000ea200000|100%| O| |TAMS 0x00000000ea100000| PB 0x00000000ea100000| Untracked
-| 162|0x00000000ea200000, 0x00000000ea300000, 0x00000000ea300000|100%| O| |TAMS 0x00000000ea200000| PB 0x00000000ea200000| Untracked
-| 163|0x00000000ea300000, 0x00000000ea400000, 0x00000000ea400000|100%|HS| |TAMS 0x00000000ea300000| PB 0x00000000ea300000| Complete
-| 164|0x00000000ea400000, 0x00000000ea500000, 0x00000000ea500000|100%|HC| |TAMS 0x00000000ea400000| PB 0x00000000ea400000| Complete
-| 165|0x00000000ea500000, 0x00000000ea600000, 0x00000000ea600000|100%|HC| |TAMS 0x00000000ea500000| PB 0x00000000ea500000| Complete
-| 166|0x00000000ea600000, 0x00000000ea700000, 0x00000000ea700000|100%|HC| |TAMS 0x00000000ea600000| PB 0x00000000ea600000| Complete
-| 167|0x00000000ea700000, 0x00000000ea800000, 0x00000000ea800000|100%|HC| |TAMS 0x00000000ea700000| PB 0x00000000ea700000| Complete
-| 168|0x00000000ea800000, 0x00000000ea900000, 0x00000000ea900000|100%|HC| |TAMS 0x00000000ea800000| PB 0x00000000ea800000| Complete
-| 169|0x00000000ea900000, 0x00000000eaa00000, 0x00000000eaa00000|100%|HS| |TAMS 0x00000000ea900000| PB 0x00000000ea900000| Complete
-| 170|0x00000000eaa00000, 0x00000000eab00000, 0x00000000eab00000|100%|HC| |TAMS 0x00000000eaa00000| PB 0x00000000eaa00000| Complete
-| 171|0x00000000eab00000, 0x00000000eac00000, 0x00000000eac00000|100%|HC| |TAMS 0x00000000eab00000| PB 0x00000000eab00000| Complete
-| 172|0x00000000eac00000, 0x00000000ead00000, 0x00000000ead00000|100%|HC| |TAMS 0x00000000eac00000| PB 0x00000000eac00000| Complete
-| 173|0x00000000ead00000, 0x00000000eae00000, 0x00000000eae00000|100%|HC| |TAMS 0x00000000ead00000| PB 0x00000000ead00000| Complete
-| 174|0x00000000eae00000, 0x00000000eaf00000, 0x00000000eaf00000|100%|HC| |TAMS 0x00000000eae00000| PB 0x00000000eae00000| Complete
-| 175|0x00000000eaf00000, 0x00000000eb000000, 0x00000000eb000000|100%| O| |TAMS 0x00000000eaf00000| PB 0x00000000eaf00000| Untracked
-| 176|0x00000000eb000000, 0x00000000eb100000, 0x00000000eb100000|100%| O| |TAMS 0x00000000eb000000| PB 0x00000000eb000000| Untracked
-| 177|0x00000000eb100000, 0x00000000eb200000, 0x00000000eb200000|100%| O| |TAMS 0x00000000eb100000| PB 0x00000000eb100000| Untracked
-| 178|0x00000000eb200000, 0x00000000eb300000, 0x00000000eb300000|100%| O| |TAMS 0x00000000eb200000| PB 0x00000000eb200000| Untracked
-| 179|0x00000000eb300000, 0x00000000eb400000, 0x00000000eb400000|100%| O| |TAMS 0x00000000eb300000| PB 0x00000000eb300000| Untracked
-| 180|0x00000000eb400000, 0x00000000eb500000, 0x00000000eb500000|100%| O| |TAMS 0x00000000eb400000| PB 0x00000000eb400000| Untracked
-| 181|0x00000000eb500000, 0x00000000eb600000, 0x00000000eb600000|100%| O| |TAMS 0x00000000eb500000| PB 0x00000000eb500000| Untracked
-| 182|0x00000000eb600000, 0x00000000eb700000, 0x00000000eb700000|100%| O|Cm|TAMS 0x00000000eb600000| PB 0x00000000eb600000| Complete
-| 183|0x00000000eb700000, 0x00000000eb800000, 0x00000000eb800000|100%| O|Cm|TAMS 0x00000000eb700000| PB 0x00000000eb700000| Complete
-| 184|0x00000000eb800000, 0x00000000eb900000, 0x00000000eb900000|100%| O| |TAMS 0x00000000eb800000| PB 0x00000000eb800000| Untracked
-| 185|0x00000000eb900000, 0x00000000eb900000, 0x00000000eba00000| 0%| F| |TAMS 0x00000000eb900000| PB 0x00000000eb900000| Untracked
-| 186|0x00000000eba00000, 0x00000000ebb00000, 0x00000000ebb00000|100%| O| |TAMS 0x00000000eba00000| PB 0x00000000eba00000| Untracked
-| 187|0x00000000ebb00000, 0x00000000ebb00000, 0x00000000ebc00000| 0%| F| |TAMS 0x00000000ebb00000| PB 0x00000000ebb00000| Untracked
-| 188|0x00000000ebc00000, 0x00000000ebd00000, 0x00000000ebd00000|100%| O| |TAMS 0x00000000ebc00000| PB 0x00000000ebc00000| Untracked
-| 189|0x00000000ebd00000, 0x00000000ebe00000, 0x00000000ebe00000|100%| O| |TAMS 0x00000000ebd00000| PB 0x00000000ebd00000| Untracked
-| 190|0x00000000ebe00000, 0x00000000ebf00000, 0x00000000ebf00000|100%| O| |TAMS 0x00000000ebe00000| PB 0x00000000ebe00000| Untracked
-| 191|0x00000000ebf00000, 0x00000000ec000000, 0x00000000ec000000|100%| O| |TAMS 0x00000000ebf00000| PB 0x00000000ebf00000| Untracked
-| 192|0x00000000ec000000, 0x00000000ec000000, 0x00000000ec100000| 0%| F| |TAMS 0x00000000ec000000| PB 0x00000000ec000000| Untracked
-| 193|0x00000000ec100000, 0x00000000ec200000, 0x00000000ec200000|100%| O| |TAMS 0x00000000ec100000| PB 0x00000000ec100000| Untracked
-| 194|0x00000000ec200000, 0x00000000ec300000, 0x00000000ec300000|100%| O| |TAMS 0x00000000ec200000| PB 0x00000000ec200000| Untracked
-| 195|0x00000000ec300000, 0x00000000ec400000, 0x00000000ec400000|100%| O| |TAMS 0x00000000ec300000| PB 0x00000000ec300000| Untracked
-| 196|0x00000000ec400000, 0x00000000ec400000, 0x00000000ec500000| 0%| F| |TAMS 0x00000000ec400000| PB 0x00000000ec400000| Untracked
-| 197|0x00000000ec500000, 0x00000000ec600000, 0x00000000ec600000|100%| O| |TAMS 0x00000000ec500000| PB 0x00000000ec500000| Untracked
-| 198|0x00000000ec600000, 0x00000000ec600000, 0x00000000ec700000| 0%| F| |TAMS 0x00000000ec600000| PB 0x00000000ec600000| Untracked
-| 199|0x00000000ec700000, 0x00000000ec800000, 0x00000000ec800000|100%| O| |TAMS 0x00000000ec700000| PB 0x00000000ec700000| Untracked
-| 200|0x00000000ec800000, 0x00000000ec900000, 0x00000000ec900000|100%| O| |TAMS 0x00000000ec800000| PB 0x00000000ec800000| Untracked
-| 201|0x00000000ec900000, 0x00000000eca00000, 0x00000000eca00000|100%| O| |TAMS 0x00000000ec900000| PB 0x00000000ec900000| Untracked
-| 202|0x00000000eca00000, 0x00000000ecb00000, 0x00000000ecb00000|100%| O| |TAMS 0x00000000eca00000| PB 0x00000000eca00000| Untracked
-| 203|0x00000000ecb00000, 0x00000000ecc00000, 0x00000000ecc00000|100%| O| |TAMS 0x00000000ecb00000| PB 0x00000000ecb00000| Untracked
-| 204|0x00000000ecc00000, 0x00000000ecd00000, 0x00000000ecd00000|100%| O| |TAMS 0x00000000ecc00000| PB 0x00000000ecc00000| Untracked
-| 205|0x00000000ecd00000, 0x00000000ecd00000, 0x00000000ece00000| 0%| F| |TAMS 0x00000000ecd00000| PB 0x00000000ecd00000| Untracked
-| 206|0x00000000ece00000, 0x00000000ece00000, 0x00000000ecf00000| 0%| F| |TAMS 0x00000000ece00000| PB 0x00000000ece00000| Untracked
-| 207|0x00000000ecf00000, 0x00000000ecf00000, 0x00000000ed000000| 0%| F| |TAMS 0x00000000ecf00000| PB 0x00000000ecf00000| Untracked
-| 208|0x00000000ed000000, 0x00000000ed100000, 0x00000000ed100000|100%| O|Cm|TAMS 0x00000000ed000000| PB 0x00000000ed000000| Complete
-| 209|0x00000000ed100000, 0x00000000ed200000, 0x00000000ed200000|100%| O|Cm|TAMS 0x00000000ed100000| PB 0x00000000ed100000| Complete
-| 210|0x00000000ed200000, 0x00000000ed200000, 0x00000000ed300000| 0%| F| |TAMS 0x00000000ed200000| PB 0x00000000ed200000| Untracked
-| 211|0x00000000ed300000, 0x00000000ed300000, 0x00000000ed400000| 0%| F| |TAMS 0x00000000ed300000| PB 0x00000000ed300000| Untracked
-| 212|0x00000000ed400000, 0x00000000ed400000, 0x00000000ed500000| 0%| F| |TAMS 0x00000000ed400000| PB 0x00000000ed400000| Untracked
-| 213|0x00000000ed500000, 0x00000000ed500000, 0x00000000ed600000| 0%| F| |TAMS 0x00000000ed500000| PB 0x00000000ed500000| Untracked
-| 214|0x00000000ed600000, 0x00000000ed600000, 0x00000000ed700000| 0%| F| |TAMS 0x00000000ed600000| PB 0x00000000ed600000| Untracked
-| 215|0x00000000ed700000, 0x00000000ed700000, 0x00000000ed800000| 0%| F| |TAMS 0x00000000ed700000| PB 0x00000000ed700000| Untracked
-| 216|0x00000000ed800000, 0x00000000ed900000, 0x00000000ed900000|100%|HS| |TAMS 0x00000000ed800000| PB 0x00000000ed800000| Complete
-| 217|0x00000000ed900000, 0x00000000eda00000, 0x00000000eda00000|100%| O|Cm|TAMS 0x00000000ed900000| PB 0x00000000ed900000| Complete
-| 218|0x00000000eda00000, 0x00000000edb00000, 0x00000000edb00000|100%| O|Cm|TAMS 0x00000000eda00000| PB 0x00000000eda00000| Complete
-| 219|0x00000000edb00000, 0x00000000edc00000, 0x00000000edc00000|100%| O|Cm|TAMS 0x00000000edb00000| PB 0x00000000edb00000| Complete
-| 220|0x00000000edc00000, 0x00000000edd00000, 0x00000000edd00000|100%| O|Cm|TAMS 0x00000000edc00000| PB 0x00000000edc00000| Complete
-| 221|0x00000000edd00000, 0x00000000ede00000, 0x00000000ede00000|100%| O|Cm|TAMS 0x00000000edd00000| PB 0x00000000edd00000| Complete
-| 222|0x00000000ede00000, 0x00000000ede00000, 0x00000000edf00000| 0%| F| |TAMS 0x00000000ede00000| PB 0x00000000ede00000| Untracked
-| 223|0x00000000edf00000, 0x00000000edf00000, 0x00000000ee000000| 0%| F| |TAMS 0x00000000edf00000| PB 0x00000000edf00000| Untracked
-| 224|0x00000000ee000000, 0x00000000ee100000, 0x00000000ee100000|100%| O| |TAMS 0x00000000ee000000| PB 0x00000000ee000000| Untracked
-| 225|0x00000000ee100000, 0x00000000ee200000, 0x00000000ee200000|100%| O| |TAMS 0x00000000ee100000| PB 0x00000000ee100000| Untracked
-| 226|0x00000000ee200000, 0x00000000ee300000, 0x00000000ee300000|100%| O| |TAMS 0x00000000ee200000| PB 0x00000000ee200000| Untracked
-| 227|0x00000000ee300000, 0x00000000ee400000, 0x00000000ee400000|100%| O| |TAMS 0x00000000ee300000| PB 0x00000000ee300000| Untracked
-| 228|0x00000000ee400000, 0x00000000ee500000, 0x00000000ee500000|100%| O| |TAMS 0x00000000ee400000| PB 0x00000000ee400000| Untracked
-| 229|0x00000000ee500000, 0x00000000ee600000, 0x00000000ee600000|100%| O| |TAMS 0x00000000ee500000| PB 0x00000000ee500000| Untracked
-| 230|0x00000000ee600000, 0x00000000ee700000, 0x00000000ee700000|100%| O| |TAMS 0x00000000ee600000| PB 0x00000000ee600000| Untracked
-| 231|0x00000000ee700000, 0x00000000ee800000, 0x00000000ee800000|100%| O| |TAMS 0x00000000ee700000| PB 0x00000000ee700000| Untracked
-| 232|0x00000000ee800000, 0x00000000ee900000, 0x00000000ee900000|100%| O| |TAMS 0x00000000ee800000| PB 0x00000000ee800000| Untracked
-| 233|0x00000000ee900000, 0x00000000eea00000, 0x00000000eea00000|100%| O| |TAMS 0x00000000ee900000| PB 0x00000000ee900000| Untracked
-| 234|0x00000000eea00000, 0x00000000eeb00000, 0x00000000eeb00000|100%| O|Cm|TAMS 0x00000000eea00000| PB 0x00000000eea00000| Complete
-| 235|0x00000000eeb00000, 0x00000000eeb00000, 0x00000000eec00000| 0%| F| |TAMS 0x00000000eeb00000| PB 0x00000000eeb00000| Untracked
-| 236|0x00000000eec00000, 0x00000000eed00000, 0x00000000eed00000|100%| O| |TAMS 0x00000000eec00000| PB 0x00000000eec00000| Untracked
-| 237|0x00000000eed00000, 0x00000000eee00000, 0x00000000eee00000|100%| O| |TAMS 0x00000000eed00000| PB 0x00000000eed00000| Untracked
-| 238|0x00000000eee00000, 0x00000000eef00000, 0x00000000eef00000|100%| O| |TAMS 0x00000000eee00000| PB 0x00000000eee00000| Untracked
-| 239|0x00000000eef00000, 0x00000000eef7c060, 0x00000000ef000000| 48%| O| |TAMS 0x00000000eef00000| PB 0x00000000eef00000| Untracked
-| 240|0x00000000ef000000, 0x00000000ef000000, 0x00000000ef100000| 0%| F| |TAMS 0x00000000ef000000| PB 0x00000000ef000000| Untracked
-| 241|0x00000000ef100000, 0x00000000ef100000, 0x00000000ef200000| 0%| F| |TAMS 0x00000000ef100000| PB 0x00000000ef100000| Untracked
-| 242|0x00000000ef200000, 0x00000000ef300000, 0x00000000ef300000|100%| O|Cm|TAMS 0x00000000ef200000| PB 0x00000000ef200000| Complete
-| 243|0x00000000ef300000, 0x00000000ef300000, 0x00000000ef400000| 0%| F| |TAMS 0x00000000ef300000| PB 0x00000000ef300000| Untracked
-| 244|0x00000000ef400000, 0x00000000ef400000, 0x00000000ef500000| 0%| F| |TAMS 0x00000000ef400000| PB 0x00000000ef400000| Untracked
-| 245|0x00000000ef500000, 0x00000000ef600000, 0x00000000ef600000|100%| O|Cm|TAMS 0x00000000ef500000| PB 0x00000000ef500000| Complete
-| 246|0x00000000ef600000, 0x00000000ef700000, 0x00000000ef700000|100%| O| |TAMS 0x00000000ef600000| PB 0x00000000ef600000| Untracked
-| 247|0x00000000ef700000, 0x00000000ef800000, 0x00000000ef800000|100%| O|Cm|TAMS 0x00000000ef700000| PB 0x00000000ef700000| Complete
-| 248|0x00000000ef800000, 0x00000000ef800000, 0x00000000ef900000| 0%| F| |TAMS 0x00000000ef800000| PB 0x00000000ef800000| Untracked
-| 249|0x00000000ef900000, 0x00000000ef900000, 0x00000000efa00000| 0%| F| |TAMS 0x00000000ef900000| PB 0x00000000ef900000| Untracked
-| 250|0x00000000efa00000, 0x00000000efa00000, 0x00000000efb00000| 0%| F| |TAMS 0x00000000efa00000| PB 0x00000000efa00000| Untracked
-| 251|0x00000000efb00000, 0x00000000efb00000, 0x00000000efc00000| 0%| F| |TAMS 0x00000000efb00000| PB 0x00000000efb00000| Untracked
-| 252|0x00000000efc00000, 0x00000000efc00000, 0x00000000efd00000| 0%| F| |TAMS 0x00000000efc00000| PB 0x00000000efc00000| Untracked
-| 253|0x00000000efd00000, 0x00000000efd00000, 0x00000000efe00000| 0%| F| |TAMS 0x00000000efd00000| PB 0x00000000efd00000| Untracked
-| 254|0x00000000efe00000, 0x00000000efe00000, 0x00000000eff00000| 0%| F| |TAMS 0x00000000efe00000| PB 0x00000000efe00000| Untracked
-| 255|0x00000000eff00000, 0x00000000eff00000, 0x00000000f0000000| 0%| F| |TAMS 0x00000000eff00000| PB 0x00000000eff00000| Untracked
-| 256|0x00000000f0000000, 0x00000000f0000000, 0x00000000f0100000| 0%| F| |TAMS 0x00000000f0000000| PB 0x00000000f0000000| Untracked
-| 257|0x00000000f0100000, 0x00000000f0100000, 0x00000000f0200000| 0%| F| |TAMS 0x00000000f0100000| PB 0x00000000f0100000| Untracked
-| 258|0x00000000f0200000, 0x00000000f0200000, 0x00000000f0300000| 0%| F| |TAMS 0x00000000f0200000| PB 0x00000000f0200000| Untracked
-| 259|0x00000000f0300000, 0x00000000f0300000, 0x00000000f0400000| 0%| F| |TAMS 0x00000000f0300000| PB 0x00000000f0300000| Untracked
-| 260|0x00000000f0400000, 0x00000000f0400000, 0x00000000f0500000| 0%| F| |TAMS 0x00000000f0400000| PB 0x00000000f0400000| Untracked
-| 261|0x00000000f0500000, 0x00000000f0500000, 0x00000000f0600000| 0%| F| |TAMS 0x00000000f0500000| PB 0x00000000f0500000| Untracked
-| 262|0x00000000f0600000, 0x00000000f0600000, 0x00000000f0700000| 0%| F| |TAMS 0x00000000f0600000| PB 0x00000000f0600000| Untracked
-| 263|0x00000000f0700000, 0x00000000f0700000, 0x00000000f0800000| 0%| F| |TAMS 0x00000000f0700000| PB 0x00000000f0700000| Untracked
-| 264|0x00000000f0800000, 0x00000000f0800000, 0x00000000f0900000| 0%| F| |TAMS 0x00000000f0800000| PB 0x00000000f0800000| Untracked
-| 265|0x00000000f0900000, 0x00000000f0900000, 0x00000000f0a00000| 0%| F| |TAMS 0x00000000f0900000| PB 0x00000000f0900000| Untracked
-| 266|0x00000000f0a00000, 0x00000000f0a00000, 0x00000000f0b00000| 0%| F| |TAMS 0x00000000f0a00000| PB 0x00000000f0a00000| Untracked
-| 267|0x00000000f0b00000, 0x00000000f0b00000, 0x00000000f0c00000| 0%| F| |TAMS 0x00000000f0b00000| PB 0x00000000f0b00000| Untracked
-| 268|0x00000000f0c00000, 0x00000000f0c00000, 0x00000000f0d00000| 0%| F| |TAMS 0x00000000f0c00000| PB 0x00000000f0c00000| Untracked
-| 269|0x00000000f0d00000, 0x00000000f0d00000, 0x00000000f0e00000| 0%| F| |TAMS 0x00000000f0d00000| PB 0x00000000f0d00000| Untracked
-| 270|0x00000000f0e00000, 0x00000000f0e00000, 0x00000000f0f00000| 0%| F| |TAMS 0x00000000f0e00000| PB 0x00000000f0e00000| Untracked
-| 271|0x00000000f0f00000, 0x00000000f0f00000, 0x00000000f1000000| 0%| F| |TAMS 0x00000000f0f00000| PB 0x00000000f0f00000| Untracked
-| 272|0x00000000f1000000, 0x00000000f1000000, 0x00000000f1100000| 0%| F| |TAMS 0x00000000f1000000| PB 0x00000000f1000000| Untracked
-| 273|0x00000000f1100000, 0x00000000f1100000, 0x00000000f1200000| 0%| F| |TAMS 0x00000000f1100000| PB 0x00000000f1100000| Untracked
-| 274|0x00000000f1200000, 0x00000000f1200000, 0x00000000f1300000| 0%| F| |TAMS 0x00000000f1200000| PB 0x00000000f1200000| Untracked
-| 275|0x00000000f1300000, 0x00000000f1340100, 0x00000000f1400000| 25%| S|CS|TAMS 0x00000000f1300000| PB 0x00000000f1300000| Complete
-| 276|0x00000000f1400000, 0x00000000f1500000, 0x00000000f1500000|100%| S|CS|TAMS 0x00000000f1400000| PB 0x00000000f1400000| Complete
-| 277|0x00000000f1500000, 0x00000000f1600000, 0x00000000f1600000|100%| S|CS|TAMS 0x00000000f1500000| PB 0x00000000f1500000| Complete
-| 278|0x00000000f1600000, 0x00000000f1700000, 0x00000000f1700000|100%| S|CS|TAMS 0x00000000f1600000| PB 0x00000000f1600000| Complete
-| 279|0x00000000f1700000, 0x00000000f1800000, 0x00000000f1800000|100%| S|CS|TAMS 0x00000000f1700000| PB 0x00000000f1700000| Complete
-| 280|0x00000000f1800000, 0x00000000f1900000, 0x00000000f1900000|100%| S|CS|TAMS 0x00000000f1800000| PB 0x00000000f1800000| Complete
-| 281|0x00000000f1900000, 0x00000000f1a00000, 0x00000000f1a00000|100%| S|CS|TAMS 0x00000000f1900000| PB 0x00000000f1900000| Complete
-| 282|0x00000000f1a00000, 0x00000000f1a00000, 0x00000000f1b00000| 0%| F| |TAMS 0x00000000f1a00000| PB 0x00000000f1a00000| Untracked
-| 283|0x00000000f1b00000, 0x00000000f1b00000, 0x00000000f1c00000| 0%| F| |TAMS 0x00000000f1b00000| PB 0x00000000f1b00000| Untracked
-| 284|0x00000000f1c00000, 0x00000000f1c00000, 0x00000000f1d00000| 0%| F| |TAMS 0x00000000f1c00000| PB 0x00000000f1c00000| Untracked
-| 285|0x00000000f1d00000, 0x00000000f1d00000, 0x00000000f1e00000| 0%| F| |TAMS 0x00000000f1d00000| PB 0x00000000f1d00000| Untracked
-| 286|0x00000000f1e00000, 0x00000000f1e00000, 0x00000000f1f00000| 0%| F| |TAMS 0x00000000f1e00000| PB 0x00000000f1e00000| Untracked
-| 287|0x00000000f1f00000, 0x00000000f1f00000, 0x00000000f2000000| 0%| F| |TAMS 0x00000000f1f00000| PB 0x00000000f1f00000| Untracked
-| 288|0x00000000f2000000, 0x00000000f2000000, 0x00000000f2100000| 0%| F| |TAMS 0x00000000f2000000| PB 0x00000000f2000000| Untracked
-| 289|0x00000000f2100000, 0x00000000f2100000, 0x00000000f2200000| 0%| F| |TAMS 0x00000000f2100000| PB 0x00000000f2100000| Untracked
-| 290|0x00000000f2200000, 0x00000000f2200000, 0x00000000f2300000| 0%| F| |TAMS 0x00000000f2200000| PB 0x00000000f2200000| Untracked
-| 291|0x00000000f2300000, 0x00000000f2300000, 0x00000000f2400000| 0%| F| |TAMS 0x00000000f2300000| PB 0x00000000f2300000| Untracked
-| 292|0x00000000f2400000, 0x00000000f2400000, 0x00000000f2500000| 0%| F| |TAMS 0x00000000f2400000| PB 0x00000000f2400000| Untracked
-| 293|0x00000000f2500000, 0x00000000f2500000, 0x00000000f2600000| 0%| F| |TAMS 0x00000000f2500000| PB 0x00000000f2500000| Untracked
-| 294|0x00000000f2600000, 0x00000000f2600000, 0x00000000f2700000| 0%| F| |TAMS 0x00000000f2600000| PB 0x00000000f2600000| Untracked
-| 295|0x00000000f2700000, 0x00000000f2700000, 0x00000000f2800000| 0%| F| |TAMS 0x00000000f2700000| PB 0x00000000f2700000| Untracked
-| 296|0x00000000f2800000, 0x00000000f2800000, 0x00000000f2900000| 0%| F| |TAMS 0x00000000f2800000| PB 0x00000000f2800000| Untracked
-| 297|0x00000000f2900000, 0x00000000f2900000, 0x00000000f2a00000| 0%| F| |TAMS 0x00000000f2900000| PB 0x00000000f2900000| Untracked
-| 298|0x00000000f2a00000, 0x00000000f2a00000, 0x00000000f2b00000| 0%| F| |TAMS 0x00000000f2a00000| PB 0x00000000f2a00000| Untracked
-| 299|0x00000000f2b00000, 0x00000000f2b00000, 0x00000000f2c00000| 0%| F| |TAMS 0x00000000f2b00000| PB 0x00000000f2b00000| Untracked
-| 300|0x00000000f2c00000, 0x00000000f2c00000, 0x00000000f2d00000| 0%| F| |TAMS 0x00000000f2c00000| PB 0x00000000f2c00000| Untracked
-| 301|0x00000000f2d00000, 0x00000000f2d00000, 0x00000000f2e00000| 0%| F| |TAMS 0x00000000f2d00000| PB 0x00000000f2d00000| Untracked
-| 302|0x00000000f2e00000, 0x00000000f2e00000, 0x00000000f2f00000| 0%| F| |TAMS 0x00000000f2e00000| PB 0x00000000f2e00000| Untracked
-| 303|0x00000000f2f00000, 0x00000000f2f00000, 0x00000000f3000000| 0%| F| |TAMS 0x00000000f2f00000| PB 0x00000000f2f00000| Untracked
-| 304|0x00000000f3000000, 0x00000000f3000000, 0x00000000f3100000| 0%| F| |TAMS 0x00000000f3000000| PB 0x00000000f3000000| Untracked
-| 305|0x00000000f3100000, 0x00000000f3100000, 0x00000000f3200000| 0%| F| |TAMS 0x00000000f3100000| PB 0x00000000f3100000| Untracked
-| 306|0x00000000f3200000, 0x00000000f3200000, 0x00000000f3300000| 0%| F| |TAMS 0x00000000f3200000| PB 0x00000000f3200000| Untracked
-| 307|0x00000000f3300000, 0x00000000f3300000, 0x00000000f3400000| 0%| F| |TAMS 0x00000000f3300000| PB 0x00000000f3300000| Untracked
-| 308|0x00000000f3400000, 0x00000000f3400000, 0x00000000f3500000| 0%| F| |TAMS 0x00000000f3400000| PB 0x00000000f3400000| Untracked
-| 309|0x00000000f3500000, 0x00000000f3500000, 0x00000000f3600000| 0%| F| |TAMS 0x00000000f3500000| PB 0x00000000f3500000| Untracked
-| 310|0x00000000f3600000, 0x00000000f3600000, 0x00000000f3700000| 0%| F| |TAMS 0x00000000f3600000| PB 0x00000000f3600000| Untracked
-| 311|0x00000000f3700000, 0x00000000f3700000, 0x00000000f3800000| 0%| F| |TAMS 0x00000000f3700000| PB 0x00000000f3700000| Untracked
-| 312|0x00000000f3800000, 0x00000000f3800000, 0x00000000f3900000| 0%| F| |TAMS 0x00000000f3800000| PB 0x00000000f3800000| Untracked
-| 313|0x00000000f3900000, 0x00000000f3900000, 0x00000000f3a00000| 0%| F| |TAMS 0x00000000f3900000| PB 0x00000000f3900000| Untracked
-| 314|0x00000000f3a00000, 0x00000000f3a00000, 0x00000000f3b00000| 0%| F| |TAMS 0x00000000f3a00000| PB 0x00000000f3a00000| Untracked
-| 315|0x00000000f3b00000, 0x00000000f3b00000, 0x00000000f3c00000| 0%| F| |TAMS 0x00000000f3b00000| PB 0x00000000f3b00000| Untracked
-| 316|0x00000000f3c00000, 0x00000000f3c00000, 0x00000000f3d00000| 0%| F| |TAMS 0x00000000f3c00000| PB 0x00000000f3c00000| Untracked
-| 317|0x00000000f3d00000, 0x00000000f3d00000, 0x00000000f3e00000| 0%| F| |TAMS 0x00000000f3d00000| PB 0x00000000f3d00000| Untracked
-| 318|0x00000000f3e00000, 0x00000000f3e00000, 0x00000000f3f00000| 0%| F| |TAMS 0x00000000f3e00000| PB 0x00000000f3e00000| Untracked
-| 319|0x00000000f3f00000, 0x00000000f3f00000, 0x00000000f4000000| 0%| F| |TAMS 0x00000000f3f00000| PB 0x00000000f3f00000| Untracked
-| 320|0x00000000f4000000, 0x00000000f4000000, 0x00000000f4100000| 0%| F| |TAMS 0x00000000f4000000| PB 0x00000000f4000000| Untracked
-| 321|0x00000000f4100000, 0x00000000f4100000, 0x00000000f4200000| 0%| F| |TAMS 0x00000000f4100000| PB 0x00000000f4100000| Untracked
-| 322|0x00000000f4200000, 0x00000000f4200000, 0x00000000f4300000| 0%| F| |TAMS 0x00000000f4200000| PB 0x00000000f4200000| Untracked
-| 385|0x00000000f8100000, 0x00000000f8100000, 0x00000000f8200000| 0%| F| |TAMS 0x00000000f8100000| PB 0x00000000f8100000| Untracked
-| 386|0x00000000f8200000, 0x00000000f8200000, 0x00000000f8300000| 0%| F| |TAMS 0x00000000f8200000| PB 0x00000000f8200000| Untracked
-| 387|0x00000000f8300000, 0x00000000f8300000, 0x00000000f8400000| 0%| F| |TAMS 0x00000000f8300000| PB 0x00000000f8300000| Untracked
-| 388|0x00000000f8400000, 0x00000000f8400000, 0x00000000f8500000| 0%| F| |TAMS 0x00000000f8400000| PB 0x00000000f8400000| Untracked
-| 389|0x00000000f8500000, 0x00000000f8500000, 0x00000000f8600000| 0%| F| |TAMS 0x00000000f8500000| PB 0x00000000f8500000| Untracked
-| 390|0x00000000f8600000, 0x00000000f8600000, 0x00000000f8700000| 0%| F| |TAMS 0x00000000f8600000| PB 0x00000000f8600000| Untracked
-| 391|0x00000000f8700000, 0x00000000f8700000, 0x00000000f8800000| 0%| F| |TAMS 0x00000000f8700000| PB 0x00000000f8700000| Untracked
-| 392|0x00000000f8800000, 0x00000000f8800000, 0x00000000f8900000| 0%| F| |TAMS 0x00000000f8800000| PB 0x00000000f8800000| Untracked
-| 393|0x00000000f8900000, 0x00000000f8900000, 0x00000000f8a00000| 0%| F| |TAMS 0x00000000f8900000| PB 0x00000000f8900000| Untracked
-| 394|0x00000000f8a00000, 0x00000000f8a00000, 0x00000000f8b00000| 0%| F| |TAMS 0x00000000f8a00000| PB 0x00000000f8a00000| Untracked
-| 395|0x00000000f8b00000, 0x00000000f8b00000, 0x00000000f8c00000| 0%| F| |TAMS 0x00000000f8b00000| PB 0x00000000f8b00000| Untracked
-| 396|0x00000000f8c00000, 0x00000000f8c00000, 0x00000000f8d00000| 0%| F| |TAMS 0x00000000f8c00000| PB 0x00000000f8c00000| Untracked
-| 397|0x00000000f8d00000, 0x00000000f8d00000, 0x00000000f8e00000| 0%| F| |TAMS 0x00000000f8d00000| PB 0x00000000f8d00000| Untracked
-| 398|0x00000000f8e00000, 0x00000000f8e00000, 0x00000000f8f00000| 0%| F| |TAMS 0x00000000f8e00000| PB 0x00000000f8e00000| Untracked
-| 399|0x00000000f8f00000, 0x00000000f8f00000, 0x00000000f9000000| 0%| F| |TAMS 0x00000000f8f00000| PB 0x00000000f8f00000| Untracked
-| 400|0x00000000f9000000, 0x00000000f9000000, 0x00000000f9100000| 0%| F| |TAMS 0x00000000f9000000| PB 0x00000000f9000000| Untracked
-| 401|0x00000000f9100000, 0x00000000f9100000, 0x00000000f9200000| 0%| F| |TAMS 0x00000000f9100000| PB 0x00000000f9100000| Untracked
-| 402|0x00000000f9200000, 0x00000000f9200000, 0x00000000f9300000| 0%| F| |TAMS 0x00000000f9200000| PB 0x00000000f9200000| Untracked
-| 403|0x00000000f9300000, 0x00000000f9300000, 0x00000000f9400000| 0%| F| |TAMS 0x00000000f9300000| PB 0x00000000f9300000| Untracked
-| 404|0x00000000f9400000, 0x00000000f9400000, 0x00000000f9500000| 0%| F| |TAMS 0x00000000f9400000| PB 0x00000000f9400000| Untracked
-| 405|0x00000000f9500000, 0x00000000f9500000, 0x00000000f9600000| 0%| F| |TAMS 0x00000000f9500000| PB 0x00000000f9500000| Untracked
-| 406|0x00000000f9600000, 0x00000000f9600000, 0x00000000f9700000| 0%| F| |TAMS 0x00000000f9600000| PB 0x00000000f9600000| Untracked
-| 407|0x00000000f9700000, 0x00000000f9700000, 0x00000000f9800000| 0%| F| |TAMS 0x00000000f9700000| PB 0x00000000f9700000| Untracked
-| 408|0x00000000f9800000, 0x00000000f9800000, 0x00000000f9900000| 0%| F| |TAMS 0x00000000f9800000| PB 0x00000000f9800000| Untracked
-| 409|0x00000000f9900000, 0x00000000f9900000, 0x00000000f9a00000| 0%| F| |TAMS 0x00000000f9900000| PB 0x00000000f9900000| Untracked
-| 410|0x00000000f9a00000, 0x00000000f9a00000, 0x00000000f9b00000| 0%| F| |TAMS 0x00000000f9a00000| PB 0x00000000f9a00000| Untracked
-| 411|0x00000000f9b00000, 0x00000000f9b00000, 0x00000000f9c00000| 0%| F| |TAMS 0x00000000f9b00000| PB 0x00000000f9b00000| Untracked
-| 412|0x00000000f9c00000, 0x00000000f9c00000, 0x00000000f9d00000| 0%| F| |TAMS 0x00000000f9c00000| PB 0x00000000f9c00000| Untracked
-| 413|0x00000000f9d00000, 0x00000000f9d00000, 0x00000000f9e00000| 0%| F| |TAMS 0x00000000f9d00000| PB 0x00000000f9d00000| Untracked
-| 414|0x00000000f9e00000, 0x00000000f9e00000, 0x00000000f9f00000| 0%| F| |TAMS 0x00000000f9e00000| PB 0x00000000f9e00000| Untracked
-| 415|0x00000000f9f00000, 0x00000000f9f00000, 0x00000000fa000000| 0%| F| |TAMS 0x00000000f9f00000| PB 0x00000000f9f00000| Untracked
-| 416|0x00000000fa000000, 0x00000000fa000000, 0x00000000fa100000| 0%| F| |TAMS 0x00000000fa000000| PB 0x00000000fa000000| Untracked
-| 417|0x00000000fa100000, 0x00000000fa100000, 0x00000000fa200000| 0%| F| |TAMS 0x00000000fa100000| PB 0x00000000fa100000| Untracked
-| 418|0x00000000fa200000, 0x00000000fa200000, 0x00000000fa300000| 0%| F| |TAMS 0x00000000fa200000| PB 0x00000000fa200000| Untracked
-| 419|0x00000000fa300000, 0x00000000fa300000, 0x00000000fa400000| 0%| F| |TAMS 0x00000000fa300000| PB 0x00000000fa300000| Untracked
-| 420|0x00000000fa400000, 0x00000000fa400000, 0x00000000fa500000| 0%| F| |TAMS 0x00000000fa400000| PB 0x00000000fa400000| Untracked
-| 421|0x00000000fa500000, 0x00000000fa500000, 0x00000000fa600000| 0%| F| |TAMS 0x00000000fa500000| PB 0x00000000fa500000| Untracked
-| 422|0x00000000fa600000, 0x00000000fa600000, 0x00000000fa700000| 0%| F| |TAMS 0x00000000fa600000| PB 0x00000000fa600000| Untracked
-| 423|0x00000000fa700000, 0x00000000fa700000, 0x00000000fa800000| 0%| F| |TAMS 0x00000000fa700000| PB 0x00000000fa700000| Untracked
-| 424|0x00000000fa800000, 0x00000000fa800000, 0x00000000fa900000| 0%| F| |TAMS 0x00000000fa800000| PB 0x00000000fa800000| Untracked
-| 425|0x00000000fa900000, 0x00000000fa900000, 0x00000000faa00000| 0%| F| |TAMS 0x00000000fa900000| PB 0x00000000fa900000| Untracked
-| 426|0x00000000faa00000, 0x00000000faa00000, 0x00000000fab00000| 0%| F| |TAMS 0x00000000faa00000| PB 0x00000000faa00000| Untracked
-| 427|0x00000000fab00000, 0x00000000fab00000, 0x00000000fac00000| 0%| F| |TAMS 0x00000000fab00000| PB 0x00000000fab00000| Untracked
-| 428|0x00000000fac00000, 0x00000000fac00000, 0x00000000fad00000| 0%| F| |TAMS 0x00000000fac00000| PB 0x00000000fac00000| Untracked
-| 429|0x00000000fad00000, 0x00000000fad00000, 0x00000000fae00000| 0%| F| |TAMS 0x00000000fad00000| PB 0x00000000fad00000| Untracked
-| 430|0x00000000fae00000, 0x00000000fae00000, 0x00000000faf00000| 0%| F| |TAMS 0x00000000fae00000| PB 0x00000000fae00000| Untracked
-| 431|0x00000000faf00000, 0x00000000faf00000, 0x00000000fb000000| 0%| F| |TAMS 0x00000000faf00000| PB 0x00000000faf00000| Untracked
-| 432|0x00000000fb000000, 0x00000000fb000000, 0x00000000fb100000| 0%| F| |TAMS 0x00000000fb000000| PB 0x00000000fb000000| Untracked
-| 433|0x00000000fb100000, 0x00000000fb100000, 0x00000000fb200000| 0%| F| |TAMS 0x00000000fb100000| PB 0x00000000fb100000| Untracked
-| 434|0x00000000fb200000, 0x00000000fb200000, 0x00000000fb300000| 0%| F| |TAMS 0x00000000fb200000| PB 0x00000000fb200000| Untracked
-| 435|0x00000000fb300000, 0x00000000fb300000, 0x00000000fb400000| 0%| F| |TAMS 0x00000000fb300000| PB 0x00000000fb300000| Untracked
-| 436|0x00000000fb400000, 0x00000000fb400000, 0x00000000fb500000| 0%| F| |TAMS 0x00000000fb400000| PB 0x00000000fb400000| Untracked
-| 437|0x00000000fb500000, 0x00000000fb500000, 0x00000000fb600000| 0%| F| |TAMS 0x00000000fb500000| PB 0x00000000fb500000| Untracked
-| 438|0x00000000fb600000, 0x00000000fb600000, 0x00000000fb700000| 0%| F| |TAMS 0x00000000fb600000| PB 0x00000000fb600000| Untracked
-| 439|0x00000000fb700000, 0x00000000fb700000, 0x00000000fb800000| 0%| F| |TAMS 0x00000000fb700000| PB 0x00000000fb700000| Untracked
-| 440|0x00000000fb800000, 0x00000000fb800000, 0x00000000fb900000| 0%| F| |TAMS 0x00000000fb800000| PB 0x00000000fb800000| Untracked
-| 441|0x00000000fb900000, 0x00000000fb900000, 0x00000000fba00000| 0%| F| |TAMS 0x00000000fb900000| PB 0x00000000fb900000| Untracked
-| 442|0x00000000fba00000, 0x00000000fba00000, 0x00000000fbb00000| 0%| F| |TAMS 0x00000000fba00000| PB 0x00000000fba00000| Untracked
-| 443|0x00000000fbb00000, 0x00000000fbb00000, 0x00000000fbc00000| 0%| F| |TAMS 0x00000000fbb00000| PB 0x00000000fbb00000| Untracked
-| 444|0x00000000fbc00000, 0x00000000fbc00000, 0x00000000fbd00000| 0%| F| |TAMS 0x00000000fbc00000| PB 0x00000000fbc00000| Untracked
-| 445|0x00000000fbd00000, 0x00000000fbd00000, 0x00000000fbe00000| 0%| F| |TAMS 0x00000000fbd00000| PB 0x00000000fbd00000| Untracked
-| 446|0x00000000fbe00000, 0x00000000fbe00000, 0x00000000fbf00000| 0%| F| |TAMS 0x00000000fbe00000| PB 0x00000000fbe00000| Untracked
-| 447|0x00000000fbf00000, 0x00000000fc000000, 0x00000000fc000000|100%| O| |TAMS 0x00000000fbf00000| PB 0x00000000fbf00000| Untracked
-| 448|0x00000000fc000000, 0x00000000fc000000, 0x00000000fc100000| 0%| F| |TAMS 0x00000000fc000000| PB 0x00000000fc000000| Untracked
-| 449|0x00000000fc100000, 0x00000000fc100000, 0x00000000fc200000| 0%| F| |TAMS 0x00000000fc100000| PB 0x00000000fc100000| Untracked
-| 450|0x00000000fc200000, 0x00000000fc200000, 0x00000000fc300000| 0%| F| |TAMS 0x00000000fc200000| PB 0x00000000fc200000| Untracked
-| 451|0x00000000fc300000, 0x00000000fc300000, 0x00000000fc400000| 0%| F| |TAMS 0x00000000fc300000| PB 0x00000000fc300000| Untracked
-| 452|0x00000000fc400000, 0x00000000fc400000, 0x00000000fc500000| 0%| F| |TAMS 0x00000000fc400000| PB 0x00000000fc400000| Untracked
-| 453|0x00000000fc500000, 0x00000000fc500000, 0x00000000fc600000| 0%| F| |TAMS 0x00000000fc500000| PB 0x00000000fc500000| Untracked
-| 454|0x00000000fc600000, 0x00000000fc600000, 0x00000000fc700000| 0%| F| |TAMS 0x00000000fc600000| PB 0x00000000fc600000| Untracked
-| 455|0x00000000fc700000, 0x00000000fc700000, 0x00000000fc800000| 0%| F| |TAMS 0x00000000fc700000| PB 0x00000000fc700000| Untracked
-| 456|0x00000000fc800000, 0x00000000fc800000, 0x00000000fc900000| 0%| F| |TAMS 0x00000000fc800000| PB 0x00000000fc800000| Untracked
-| 457|0x00000000fc900000, 0x00000000fc900000, 0x00000000fca00000| 0%| F| |TAMS 0x00000000fc900000| PB 0x00000000fc900000| Untracked
-| 458|0x00000000fca00000, 0x00000000fca00000, 0x00000000fcb00000| 0%| F| |TAMS 0x00000000fca00000| PB 0x00000000fca00000| Untracked
-| 459|0x00000000fcb00000, 0x00000000fcb00000, 0x00000000fcc00000| 0%| F| |TAMS 0x00000000fcb00000| PB 0x00000000fcb00000| Untracked
-| 460|0x00000000fcc00000, 0x00000000fcc00000, 0x00000000fcd00000| 0%| F| |TAMS 0x00000000fcc00000| PB 0x00000000fcc00000| Untracked
-| 461|0x00000000fcd00000, 0x00000000fcd00000, 0x00000000fce00000| 0%| F| |TAMS 0x00000000fcd00000| PB 0x00000000fcd00000| Untracked
-| 462|0x00000000fce00000, 0x00000000fce00000, 0x00000000fcf00000| 0%| F| |TAMS 0x00000000fce00000| PB 0x00000000fce00000| Untracked
-| 463|0x00000000fcf00000, 0x00000000fcf00000, 0x00000000fd000000| 0%| F| |TAMS 0x00000000fcf00000| PB 0x00000000fcf00000| Untracked
-| 464|0x00000000fd000000, 0x00000000fd000000, 0x00000000fd100000| 0%| F| |TAMS 0x00000000fd000000| PB 0x00000000fd000000| Untracked
-| 465|0x00000000fd100000, 0x00000000fd100000, 0x00000000fd200000| 0%| F| |TAMS 0x00000000fd100000| PB 0x00000000fd100000| Untracked
-| 466|0x00000000fd200000, 0x00000000fd200000, 0x00000000fd300000| 0%| F| |TAMS 0x00000000fd200000| PB 0x00000000fd200000| Untracked
-| 467|0x00000000fd300000, 0x00000000fd300000, 0x00000000fd400000| 0%| F| |TAMS 0x00000000fd300000| PB 0x00000000fd300000| Untracked
-| 468|0x00000000fd400000, 0x00000000fd400000, 0x00000000fd500000| 0%| F| |TAMS 0x00000000fd400000| PB 0x00000000fd400000| Untracked
-| 469|0x00000000fd500000, 0x00000000fd500000, 0x00000000fd600000| 0%| F| |TAMS 0x00000000fd500000| PB 0x00000000fd500000| Untracked
-| 470|0x00000000fd600000, 0x00000000fd600000, 0x00000000fd700000| 0%| F| |TAMS 0x00000000fd600000| PB 0x00000000fd600000| Untracked
-| 471|0x00000000fd700000, 0x00000000fd700000, 0x00000000fd800000| 0%| F| |TAMS 0x00000000fd700000| PB 0x00000000fd700000| Untracked
-| 472|0x00000000fd800000, 0x00000000fd800000, 0x00000000fd900000| 0%| F| |TAMS 0x00000000fd800000| PB 0x00000000fd800000| Untracked
-| 473|0x00000000fd900000, 0x00000000fd900000, 0x00000000fda00000| 0%| F| |TAMS 0x00000000fd900000| PB 0x00000000fd900000| Untracked
-| 474|0x00000000fda00000, 0x00000000fda00000, 0x00000000fdb00000| 0%| F| |TAMS 0x00000000fda00000| PB 0x00000000fda00000| Untracked
-| 475|0x00000000fdb00000, 0x00000000fdb00000, 0x00000000fdc00000| 0%| F| |TAMS 0x00000000fdb00000| PB 0x00000000fdb00000| Untracked
-| 476|0x00000000fdc00000, 0x00000000fdc00000, 0x00000000fdd00000| 0%| F| |TAMS 0x00000000fdc00000| PB 0x00000000fdc00000| Untracked
-| 477|0x00000000fdd00000, 0x00000000fdd00000, 0x00000000fde00000| 0%| F| |TAMS 0x00000000fdd00000| PB 0x00000000fdd00000| Untracked
-| 478|0x00000000fde00000, 0x00000000fde00000, 0x00000000fdf00000| 0%| F| |TAMS 0x00000000fde00000| PB 0x00000000fde00000| Untracked
-| 479|0x00000000fdf00000, 0x00000000fdf00000, 0x00000000fe000000| 0%| F| |TAMS 0x00000000fdf00000| PB 0x00000000fdf00000| Untracked
-| 480|0x00000000fe000000, 0x00000000fe000000, 0x00000000fe100000| 0%| F| |TAMS 0x00000000fe000000| PB 0x00000000fe000000| Untracked
-| 481|0x00000000fe100000, 0x00000000fe100000, 0x00000000fe200000| 0%| F| |TAMS 0x00000000fe100000| PB 0x00000000fe100000| Untracked
-| 482|0x00000000fe200000, 0x00000000fe200000, 0x00000000fe300000| 0%| F| |TAMS 0x00000000fe200000| PB 0x00000000fe200000| Untracked
-| 483|0x00000000fe300000, 0x00000000fe300000, 0x00000000fe400000| 0%| F| |TAMS 0x00000000fe300000| PB 0x00000000fe300000| Untracked
-| 484|0x00000000fe400000, 0x00000000fe400000, 0x00000000fe500000| 0%| F| |TAMS 0x00000000fe400000| PB 0x00000000fe400000| Untracked
-| 485|0x00000000fe500000, 0x00000000fe500000, 0x00000000fe600000| 0%| F| |TAMS 0x00000000fe500000| PB 0x00000000fe500000| Untracked
-| 486|0x00000000fe600000, 0x00000000fe600000, 0x00000000fe700000| 0%| F| |TAMS 0x00000000fe600000| PB 0x00000000fe600000| Untracked
-| 487|0x00000000fe700000, 0x00000000fe700000, 0x00000000fe800000| 0%| F| |TAMS 0x00000000fe700000| PB 0x00000000fe700000| Untracked
-| 488|0x00000000fe800000, 0x00000000fe800000, 0x00000000fe900000| 0%| F| |TAMS 0x00000000fe800000| PB 0x00000000fe800000| Untracked
-| 489|0x00000000fe900000, 0x00000000fe900000, 0x00000000fea00000| 0%| F| |TAMS 0x00000000fe900000| PB 0x00000000fe900000| Untracked
-| 490|0x00000000fea00000, 0x00000000fea00000, 0x00000000feb00000| 0%| F| |TAMS 0x00000000fea00000| PB 0x00000000fea00000| Untracked
-| 491|0x00000000feb00000, 0x00000000feb00000, 0x00000000fec00000| 0%| F| |TAMS 0x00000000feb00000| PB 0x00000000feb00000| Untracked
-| 492|0x00000000fec00000, 0x00000000fec00000, 0x00000000fed00000| 0%| F| |TAMS 0x00000000fec00000| PB 0x00000000fec00000| Untracked
-| 493|0x00000000fed00000, 0x00000000fed00000, 0x00000000fee00000| 0%| F| |TAMS 0x00000000fed00000| PB 0x00000000fed00000| Untracked
-| 494|0x00000000fee00000, 0x00000000fee00000, 0x00000000fef00000| 0%| F| |TAMS 0x00000000fee00000| PB 0x00000000fee00000| Untracked
-| 495|0x00000000fef00000, 0x00000000fef00000, 0x00000000ff000000| 0%| F| |TAMS 0x00000000fef00000| PB 0x00000000fef00000| Untracked
-| 496|0x00000000ff000000, 0x00000000ff000000, 0x00000000ff100000| 0%| F| |TAMS 0x00000000ff000000| PB 0x00000000ff000000| Untracked
-| 497|0x00000000ff100000, 0x00000000ff100000, 0x00000000ff200000| 0%| F| |TAMS 0x00000000ff100000| PB 0x00000000ff100000| Untracked
-| 498|0x00000000ff200000, 0x00000000ff200000, 0x00000000ff300000| 0%| F| |TAMS 0x00000000ff200000| PB 0x00000000ff200000| Untracked
-| 499|0x00000000ff300000, 0x00000000ff300000, 0x00000000ff400000| 0%| F| |TAMS 0x00000000ff300000| PB 0x00000000ff300000| Untracked
-| 500|0x00000000ff400000, 0x00000000ff400000, 0x00000000ff500000| 0%| F| |TAMS 0x00000000ff400000| PB 0x00000000ff400000| Untracked
-| 501|0x00000000ff500000, 0x00000000ff500000, 0x00000000ff600000| 0%| F| |TAMS 0x00000000ff500000| PB 0x00000000ff500000| Untracked
-| 502|0x00000000ff600000, 0x00000000ff600000, 0x00000000ff700000| 0%| F| |TAMS 0x00000000ff600000| PB 0x00000000ff600000| Untracked
-| 503|0x00000000ff700000, 0x00000000ff700000, 0x00000000ff800000| 0%| F| |TAMS 0x00000000ff700000| PB 0x00000000ff700000| Untracked
-| 504|0x00000000ff800000, 0x00000000ff800000, 0x00000000ff900000| 0%| F| |TAMS 0x00000000ff800000| PB 0x00000000ff800000| Untracked
-| 505|0x00000000ff900000, 0x00000000ff900000, 0x00000000ffa00000| 0%| F| |TAMS 0x00000000ff900000| PB 0x00000000ff900000| Untracked
-| 506|0x00000000ffa00000, 0x00000000ffa00000, 0x00000000ffb00000| 0%| F| |TAMS 0x00000000ffa00000| PB 0x00000000ffa00000| Untracked
-| 507|0x00000000ffb00000, 0x00000000ffb00000, 0x00000000ffc00000| 0%| F| |TAMS 0x00000000ffb00000| PB 0x00000000ffb00000| Untracked
-| 508|0x00000000ffc00000, 0x00000000ffc00000, 0x00000000ffd00000| 0%| F| |TAMS 0x00000000ffc00000| PB 0x00000000ffc00000| Untracked
-| 509|0x00000000ffd00000, 0x00000000ffe00000, 0x00000000ffe00000|100%| E| |TAMS 0x00000000ffd00000| PB 0x00000000ffd00000| Complete
-| 510|0x00000000ffe00000, 0x00000000fff00000, 0x00000000fff00000|100%| E|CS|TAMS 0x00000000ffe00000| PB 0x00000000ffe00000| Complete
-| 511|0x00000000fff00000, 0x0000000100000000, 0x0000000100000000|100%| E|CS|TAMS 0x00000000fff00000| PB 0x00000000fff00000| Complete
-
-Card table byte_map: [0x000001d4cb7d0000,0x000001d4cb8d0000] _byte_map_base: 0x000001d4cb0d0000
-
-Marking Bits: (CMBitMap*) 0x000001d4b3977bc0
- Bits: [0x000001d4cb8d0000, 0x000001d4cc0d0000)
-
-Polling page: 0x000001d4b1880000
-
-Metaspace:
-
-Usage:
- Non-class: 101.03 MB used.
- Class: 14.90 MB used.
- Both: 115.93 MB used.
-
-Virtual space:
- Non-class space: 128.00 MB reserved, 103.75 MB ( 81%) committed, 2 nodes.
- Class space: 320.00 MB reserved, 16.19 MB ( 5%) committed, 1 nodes.
- Both: 448.00 MB reserved, 119.94 MB ( 27%) committed.
-
-Chunk freelists:
- Non-Class: 9.57 MB
- Class: 16.24 MB
- Both: 25.81 MB
-
-MaxMetaspaceSize: 384.00 MB
-CompressedClassSpaceSize: 320.00 MB
-Initial GC threshold: 21.00 MB
-Current GC threshold: 199.94 MB
-CDS: on
- - commit_granule_bytes: 65536.
- - commit_granule_words: 8192.
- - virtual_space_node_default_size: 8388608.
- - enlarge_chunks_in_place: 1.
- - use_allocation_guard: 0.
-
-
-Internal statistics:
-
-num_allocs_failed_limit: 12.
-num_arena_births: 9814.
-num_arena_deaths: 6766.
-num_vsnodes_births: 3.
-num_vsnodes_deaths: 0.
-num_space_committed: 2224.
-num_space_uncommitted: 139.
-num_chunks_returned_to_freelist: 11543.
-num_chunks_taken_from_freelist: 21136.
-num_chunk_merges: 2847.
-num_chunk_splits: 10112.
-num_chunks_enlarged: 6012.
-num_inconsistent_stats: 0.
-
-CodeHeap 'non-profiled nmethods': size=120000Kb used=25556Kb max_used=26794Kb free=94443Kb
- bounds [0x000001d4c3b40000, 0x000001d4c5570000, 0x000001d4cb070000]
-CodeHeap 'profiled nmethods': size=120000Kb used=27835Kb max_used=39161Kb free=92164Kb
- bounds [0x000001d4bc070000, 0x000001d4be6f0000, 0x000001d4c35a0000]
-CodeHeap 'non-nmethods': size=5760Kb used=2789Kb max_used=2892Kb free=2971Kb
- bounds [0x000001d4c35a0000, 0x000001d4c3880000, 0x000001d4c3b40000]
-CodeCache: size=245760Kb, used=56180Kb, max_used=68847Kb, free=189578Kb
- total_blobs=16282, nmethods=15246, adapters=938, full_count=0
-Compilation: enabled, stopped_count=0, restarted_count=0
-
-Compilation events (20 events):
-Event: 13664.426 Thread 0x000001d4e8047470 nmethod 46634 0x000001d4c4363710 code [0x000001d4c4363900, 0x000001d4c4363f90]
-Event: 13664.551 Thread 0x000001d4e8047470 46635 4 org.gradle.api.internal.artifacts.ivyservice.resolutionstrategy.DefaultResolutionStrategy_Decorated::isDependencyVerificationEnabled (46 bytes)
-Event: 13664.552 Thread 0x000001d4e8047470 nmethod 46635 0x000001d4c3fae210 code [0x000001d4c3fae3a0, 0x000001d4c3fae450]
-Event: 13664.600 Thread 0x000001d4e8047470 46636 4 org.gradle.internal.component.local.model.DefaultLocalVariantGraphResolveState$VariantDependencyMetadata:: (23 bytes)
-Event: 13664.607 Thread 0x000001d4e8047470 nmethod 46636 0x000001d4c3ce0510 code [0x000001d4c3ce0700, 0x000001d4c3ce1068]
-Event: 13664.608 Thread 0x000001d4e8047470 46639 4 org.gradle.api.internal.artifacts.ivyservice.dependencysubstitution.DefaultDependencySubstitutions_Decorated:: (20 bytes)
-Event: 13664.686 Thread 0x000001d4e8047470 nmethod 46639 0x000001d4c515fa10 code [0x000001d4c515fdc0, 0x000001d4c51621a8]
-Event: 13664.686 Thread 0x000001d4e8047470 46640 4 org.gradle.api.internal.artifacts.ivyservice.dependencysubstitution.DefaultDependencySubstitutions$ProjectPathConverter:: (6 bytes)
-Event: 13664.687 Thread 0x000001d4e8047470 nmethod 46640 0x000001d4c50da710 code [0x000001d4c50da8a0, 0x000001d4c50da9f8]
-Event: 13664.687 Thread 0x000001d4e8047470 46638 4 java.lang.invoke.LambdaForm$MH/0x000001d4d0aae400::invoke (195 bytes)
-Event: 13664.692 Thread 0x000001d4e8047470 nmethod 46638 0x000001d4c45bb890 code [0x000001d4c45bba80, 0x000001d4c45bbee0]
-Event: 13664.692 Thread 0x000001d4e8047470 46637 4 org.gradle.internal.resource.local.DefaultPathKeyFileStore::getInProgressMarkerFile (34 bytes)
-Event: 13664.737 Thread 0x000001d4e8047470 nmethod 46637 0x000001d4c5243f90 code [0x000001d4c52442e0, 0x000001d4c52464f0]
-Event: 13664.737 Thread 0x000001d4e8047470 46641 4 org.gradle.api.internal.artifacts.ivyservice.modulecache.DefaultCachedMetadata:: (15 bytes)
-Event: 13664.738 Thread 0x000001d4e8047470 nmethod 46641 0x000001d4c5108790 code [0x000001d4c5108920, 0x000001d4c5108ab8]
-Event: 13664.756 Thread 0x000001d4e8047470 46642 4 org.gradle.api.internal.artifacts.repositories.DefaultUrlArtifactRepository::validateUrl (35 bytes)
-Event: 13664.763 Thread 0x000001d4e8047470 nmethod 46642 0x000001d4c4e48490 code [0x000001d4c4e486a0, 0x000001d4c4e48e38]
-Event: 13664.763 Thread 0x000001d4e8047470 46643 4 org.gradle.api.internal.artifacts.ivyservice.modulecache.PersistentModuleMetadataCache$$Lambda/0x000001d4d0873230::get (16 bytes)
-Event: 13665.286 Thread 0x000001d4e804b460 46649 3 org.gradle.api.internal.AbstractTask$12:: (15 bytes)
-Event: 13665.287 Thread 0x000001d4e804b460 nmethod 46649 0x000001d4bc2f4f90 code [0x000001d4bc2f5140, 0x000001d4bc2f5360]
-
-GC Heap History (20 events):
-Event: 12878.159 GC heap before
-{Heap before GC invocations=109 (full 0):
- garbage-first heap total 448512K, used 395663K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 176 young (180224K), 10 survivors (10240K)
- Metaspace used 118594K, committed 121344K, reserved 458752K
- class space used 15206K, committed 16512K, reserved 327680K
-}
-Event: 12878.170 GC heap after
-{Heap after GC invocations=110 (full 0):
- garbage-first heap total 448512K, used 243712K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 22 young (22528K), 22 survivors (22528K)
- Metaspace used 118594K, committed 121344K, reserved 458752K
- class space used 15206K, committed 16512K, reserved 327680K
-}
-Event: 12881.514 GC heap before
-{Heap before GC invocations=110 (full 0):
- garbage-first heap total 448512K, used 398336K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 174 young (178176K), 22 survivors (22528K)
- Metaspace used 119411K, committed 121536K, reserved 458752K
- class space used 15311K, committed 16512K, reserved 327680K
-}
-Event: 12881.532 GC heap after
-{Heap after GC invocations=111 (full 0):
- garbage-first heap total 460800K, used 237336K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 22 young (22528K), 22 survivors (22528K)
- Metaspace used 119411K, committed 121536K, reserved 458752K
- class space used 15311K, committed 16512K, reserved 327680K
-}
-Event: 12885.323 GC heap before
-{Heap before GC invocations=111 (full 0):
- garbage-first heap total 460800K, used 400152K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 181 young (185344K), 22 survivors (22528K)
- Metaspace used 120653K, committed 122560K, reserved 458752K
- class space used 15460K, committed 16512K, reserved 327680K
-}
-Event: 12885.335 GC heap after
-{Heap after GC invocations=112 (full 0):
- garbage-first heap total 460800K, used 248832K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 23 young (23552K), 23 survivors (23552K)
- Metaspace used 120653K, committed 122560K, reserved 458752K
- class space used 15460K, committed 16512K, reserved 327680K
-}
-Event: 12885.435 GC heap before
-{Heap before GC invocations=112 (full 0):
- garbage-first heap total 460800K, used 249856K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 25 young (25600K), 23 survivors (23552K)
- Metaspace used 120653K, committed 122560K, reserved 458752K
- class space used 15460K, committed 16512K, reserved 327680K
-}
-Event: 12885.441 GC heap after
-{Heap after GC invocations=113 (full 0):
- garbage-first heap total 460800K, used 251904K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 3 young (3072K), 3 survivors (3072K)
- Metaspace used 120653K, committed 122560K, reserved 458752K
- class space used 15460K, committed 16512K, reserved 327680K
-}
-Event: 13077.522 GC heap before
-{Heap before GC invocations=114 (full 0):
- garbage-first heap total 460800K, used 400384K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 152 young (155648K), 3 survivors (3072K)
- Metaspace used 118631K, committed 120896K, reserved 458752K
- class space used 15254K, committed 16384K, reserved 327680K
-}
-Event: 13077.544 GC heap after
-{Heap after GC invocations=115 (full 0):
- garbage-first heap total 460800K, used 261771K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 16 young (16384K), 16 survivors (16384K)
- Metaspace used 118631K, committed 120896K, reserved 458752K
- class space used 15254K, committed 16384K, reserved 327680K
-}
-Event: 13079.460 GC heap before
-{Heap before GC invocations=115 (full 0):
- garbage-first heap total 460800K, used 407179K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 159 young (162816K), 16 survivors (16384K)
- Metaspace used 118635K, committed 120896K, reserved 458752K
- class space used 15254K, committed 16384K, reserved 327680K
-}
-Event: 13079.478 GC heap after
-{Heap after GC invocations=116 (full 0):
- garbage-first heap total 460800K, used 236910K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 17 young (17408K), 17 survivors (17408K)
- Metaspace used 118635K, committed 120896K, reserved 458752K
- class space used 15254K, committed 16384K, reserved 327680K
-}
-Event: 13080.666 GC heap before
-{Heap before GC invocations=116 (full 0):
- garbage-first heap total 460800K, used 397678K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 174 young (178176K), 17 survivors (17408K)
- Metaspace used 118640K, committed 120896K, reserved 458752K
- class space used 15255K, committed 16384K, reserved 327680K
-}
-Event: 13080.690 GC heap after
-{Heap after GC invocations=117 (full 0):
- garbage-first heap total 460800K, used 207633K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 5 young (5120K), 5 survivors (5120K)
- Metaspace used 118640K, committed 120896K, reserved 458752K
- class space used 15255K, committed 16384K, reserved 327680K
-}
-Event: 13087.553 GC heap before
-{Heap before GC invocations=117 (full 0):
- garbage-first heap total 460800K, used 387857K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 182 young (186368K), 5 survivors (5120K)
- Metaspace used 120165K, committed 121984K, reserved 458752K
- class space used 15440K, committed 16384K, reserved 327680K
-}
-Event: 13087.564 GC heap after
-{Heap after GC invocations=118 (full 0):
- garbage-first heap total 460800K, used 225916K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 21 young (21504K), 21 survivors (21504K)
- Metaspace used 120165K, committed 121984K, reserved 458752K
- class space used 15440K, committed 16384K, reserved 327680K
-}
-Event: 13093.207 GC heap before
-{Heap before GC invocations=118 (full 0):
- garbage-first heap total 460800K, used 397948K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 190 young (194560K), 21 survivors (21504K)
- Metaspace used 121822K, committed 123648K, reserved 458752K
- class space used 15643K, committed 16576K, reserved 327680K
-}
-Event: 13093.223 GC heap after
-{Heap after GC invocations=119 (full 0):
- garbage-first heap total 460800K, used 248465K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 24 young (24576K), 24 survivors (24576K)
- Metaspace used 121822K, committed 123648K, reserved 458752K
- class space used 15643K, committed 16576K, reserved 327680K
-}
-Event: 13663.778 GC heap before
-{Heap before GC invocations=120 (full 0):
- garbage-first heap total 460800K, used 394897K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 175 young (179200K), 24 survivors (24576K)
- Metaspace used 118703K, committed 122816K, reserved 458752K
- class space used 15257K, committed 16576K, reserved 327680K
-}
-Event: 13663.887 GC heap after
-{Heap after GC invocations=121 (full 0):
- garbage-first heap total 460800K, used 248675K [0x00000000e0000000, 0x0000000100000000)
- region size 1024K, 14 young (14336K), 14 survivors (14336K)
- Metaspace used 118703K, committed 122816K, reserved 458752K
- class space used 15257K, committed 16576K, reserved 327680K
-}
-
-Dll operation events (15 events):
-Event: 0.094 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\java.dll
-Event: 0.140 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\jsvml.dll
-Event: 0.248 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\zip.dll
-Event: 0.253 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\instrument.dll
-Event: 0.341 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\net.dll
-Event: 0.426 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\nio.dll
-Event: 0.437 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\zip.dll
-Event: 0.853 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\jimage.dll
-Event: 1.072 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\verify.dll
-Event: 1.176 Loaded shared library C:\Users\jade\.gradle\native\1def1411415f61bf3af743bc5b6707747c0891f09f0c88961ee8f79bc544acac\windows-amd64\native-platform.dll
-Event: 1.194 Loaded shared library C:\Users\jade\.gradle\native\0.2.7\x86_64-windows-gnu\gradle-fileevents.dll
-Event: 3.872 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\management.dll
-Event: 3.951 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\management_ext.dll
-Event: 4.224 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\extnet.dll
-Event: 4.812 Loaded shared library C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\sunmscapi.dll
-
-Deoptimization events (20 events):
-Event: 13093.892 Thread 0x000001d4efdcdc60 Uncommon trap: trap_request=0xffffffc6 fr.pc=0x000001d4c4a0d524 relative=0x0000000000000084
-Event: 13093.892 Thread 0x000001d4efdcdc60 Uncommon trap: reason=bimorphic_or_optimized_type_check action=maybe_recompile pc=0x000001d4c4a0d524 method=com.sun.tools.javac.code.Type$DelegatedType.getParameterTypes()Lcom/sun/tools/javac/util/List; @ 4 c2
-Event: 13093.892 Thread 0x000001d4efdcdc60 DEOPT PACKING pc=0x000001d4c4a0d524 sp=0x000000ce44ef7f10
-Event: 13093.892 Thread 0x000001d4efdcdc60 DEOPT UNPACKING pc=0x000001d4c35f4422 sp=0x000000ce44ef7e98 mode 2
-Event: 13093.892 Thread 0x000001d4efdcdc60 Uncommon trap: trap_request=0xffffffc6 fr.pc=0x000001d4c48d3238 relative=0x0000000000006498
-Event: 13093.892 Thread 0x000001d4efdcdc60 Uncommon trap: reason=bimorphic_or_optimized_type_check action=maybe_recompile pc=0x000001d4c48d3238 method=com.sun.tools.javac.comp.Infer.instantiateMethod(Lcom/sun/tools/javac/comp/Env;Lcom/sun/tools/javac/util/List;Lcom/sun/tools/javac/code/Type$Method
-Event: 13093.892 Thread 0x000001d4efdcdc60 DEOPT PACKING pc=0x000001d4c48d3238 sp=0x000000ce44ef7ce0
-Event: 13093.892 Thread 0x000001d4efdcdc60 DEOPT UNPACKING pc=0x000001d4c35f4422 sp=0x000000ce44ef7c98 mode 2
-Event: 13093.892 Thread 0x000001d4efdcdc60 Uncommon trap: trap_request=0xffffffc6 fr.pc=0x000001d4c4a0d524 relative=0x0000000000000084
-Event: 13093.892 Thread 0x000001d4efdcdc60 Uncommon trap: reason=bimorphic_or_optimized_type_check action=maybe_recompile pc=0x000001d4c4a0d524 method=com.sun.tools.javac.code.Type$DelegatedType.getParameterTypes()Lcom/sun/tools/javac/util/List; @ 4 c2
-Event: 13093.892 Thread 0x000001d4efdcdc60 DEOPT PACKING pc=0x000001d4c4a0d524 sp=0x000000ce44ef7da0
-Event: 13093.892 Thread 0x000001d4efdcdc60 DEOPT UNPACKING pc=0x000001d4c35f4422 sp=0x000000ce44ef7d28 mode 2
-Event: 13093.892 Thread 0x000001d4efdcdc60 Uncommon trap: trap_request=0xffffffc6 fr.pc=0x000001d4c4a0d524 relative=0x0000000000000084
-Event: 13093.892 Thread 0x000001d4efdcdc60 Uncommon trap: reason=bimorphic_or_optimized_type_check action=maybe_recompile pc=0x000001d4c4a0d524 method=com.sun.tools.javac.code.Type$DelegatedType.getParameterTypes()Lcom/sun/tools/javac/util/List; @ 4 c2
-Event: 13093.892 Thread 0x000001d4efdcdc60 DEOPT PACKING pc=0x000001d4c4a0d524 sp=0x000000ce44ef7da0
-Event: 13093.892 Thread 0x000001d4efdcdc60 DEOPT UNPACKING pc=0x000001d4c35f4422 sp=0x000000ce44ef7d28 mode 2
-Event: 13093.897 Thread 0x000001d4efdcdc60 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000001d4c404c5f0 relative=0x0000000000001070
-Event: 13093.897 Thread 0x000001d4efdcdc60 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000001d4c404c5f0 method=com.sun.tools.javac.comp.Attr.checkIdInternal(Lcom/sun/tools/javac/tree/JCTree;Lcom/sun/tools/javac/code/Type;Lcom/sun/tools/javac/code/Symbol;Lcom/sun/tools/javac/code/Type
-Event: 13093.897 Thread 0x000001d4efdcdc60 DEOPT PACKING pc=0x000001d4c404c5f0 sp=0x000000ce44ef76d0
-Event: 13093.897 Thread 0x000001d4efdcdc60 DEOPT UNPACKING pc=0x000001d4c35f4422 sp=0x000000ce44ef7690 mode 2
-
-Classes loaded (20 events):
-Event: 12599.383 Loading class java/lang/ProcessImpl$2
-Event: 12599.383 Loading class java/lang/ProcessImpl$2 done
-Event: 12599.383 Loading class java/lang/Process$PipeInputStream
-Event: 12599.385 Loading class java/lang/Process$PipeInputStream done
-Event: 12599.389 Loading class jdk/internal/event/ProcessStartEvent
-Event: 12599.390 Loading class jdk/internal/event/ProcessStartEvent done
-Event: 12600.720 Loading class java/nio/channels/AsynchronousCloseException
-Event: 12600.720 Loading class java/nio/channels/AsynchronousCloseException done
-Event: 12602.407 Loading class java/util/IdentityHashMap$ValueIterator
-Event: 12602.408 Loading class java/util/IdentityHashMap$ValueIterator done
-Event: 12602.751 Loading class java/math/BigDecimal$StringBuilderHelper
-Event: 12602.751 Loading class java/math/BigDecimal$StringBuilderHelper done
-Event: 12880.690 Loading class jdk/internal/module/IllegalAccessLogger
-Event: 12880.690 Loading class jdk/internal/module/IllegalAccessLogger done
-Event: 12885.744 Loading class jdk/internal/module/IllegalAccessLogger
-Event: 12885.744 Loading class jdk/internal/module/IllegalAccessLogger done
-Event: 13083.653 Loading class jdk/internal/module/IllegalAccessLogger
-Event: 13083.653 Loading class jdk/internal/module/IllegalAccessLogger done
-Event: 13090.938 Loading class jdk/internal/module/IllegalAccessLogger
-Event: 13090.938 Loading class jdk/internal/module/IllegalAccessLogger done
-
-Classes unloaded (20 events):
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d076a200 'org/mapstruct/ap/internal/util/AnnotationProcessorContext$FaultyDelegatingIterator'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d076a000 'org/mapstruct/ap/spi/AstModifyingAnnotationProcessor'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d0770470 'org/mapstruct/ap/spi/BuilderProvider'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d0770270 'org/mapstruct/ap/spi/AccessorNamingStrategy'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d0770000 'org/mapstruct/ap/internal/util/AnnotationProcessorContext'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d0ff6dc8 'org/mapstruct/ap/spi/MapStructProcessingEnvironment'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d0ff6b70 'org/mapstruct/ap/internal/option/Options'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d0ff6968 'lombok/launch/AnnotationProcessorHider$AstModificationNotifierData'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d0ff66f0 'org/mapstruct/ap/internal/util/AnnotationProcessingException'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d0ff64f0 'org/mapstruct/ap/internal/processor/ModelElementProcessor$ProcessorContext'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d0ff6288 'org/mapstruct/ap/spi/TypeHierarchyErroneousException'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d0ff6000 'org/mapstruct/ap/MappingProcessor'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d0fe5ca8 'lombok/launch/AnnotationProcessorHider$ClaimingProcessor'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d0fe5a20 'lombok/launch/ClassFileMetaData'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d0fe5800 'lombok/launch/PackageShader'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d0fe9c90 'lombok/launch/ShadowClassLoader'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d0fe9a88 'lombok/launch/Main'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d0fe9800 'lombok/launch/AnnotationProcessorHider$AnnotationProcessor'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d0ff5000 'java/lang/invoke/LambdaForm$MH+0x000001d4d0ff5000'
-Event: 13093.274 Thread 0x000001d4cee6f930 Unloading class 0x000001d4d0ff4c00 'java/lang/invoke/LambdaForm$MH+0x000001d4d0ff4c00'
-
-Classes redefined (0 events):
-No events
-
-Internal exceptions (20 events):
-Event: 13093.877 Thread 0x000001d4efdcdc60 Exception (0x00000000fcdc4290)
-thrown [s\src\hotspot\share\prims\jni.cpp, line 520]
-Event: 13093.877 Thread 0x000001d4efdcdc60 Exception (0x00000000fcdc5490)
-thrown [s\src\hotspot\share\prims\jni.cpp, line 520]
-Event: 13093.877 Thread 0x000001d4efdcdc60 Exception (0x00000000fcdc5f68)
-thrown [s\src\hotspot\share\prims\jni.cpp, line 520]
-Event: 13093.905 Thread 0x000001d4efdcdc60 Exception (0x00000000fca2aee8)
-thrown [s\src\hotspot\share\prims\jni.cpp, line 520]
-Event: 13093.905 Thread 0x000001d4efdcdc60 Exception (0x00000000fca2c0d8)
-thrown [s\src\hotspot\share\prims\jni.cpp, line 520]
-Event: 13093.905 Thread 0x000001d4efdcdc60 Exception (0x00000000fca2cb58)
-thrown [s\src\hotspot\share\prims\jni.cpp, line 520]
-Event: 13094.642 Thread 0x000001d4ea655f10 Exception (0x00000000fb804d98)
-thrown [s\src\hotspot\share\prims\jni.cpp, line 520]
-Event: 13662.277 Thread 0x000001d4ee298d20 Exception (0x00000000fa3e23e0)
-thrown [s\src\hotspot\share\prims\jni.cpp, line 520]
-Event: 13662.278 Thread 0x000001d4ee298d20 Exception (0x00000000fa3e37a8)
-thrown [s\src\hotspot\share\prims\jni.cpp, line 520]
-Event: 13662.280 Thread 0x000001d4ee298d20 Exception (0x00000000fa3e4b68)
-thrown [s\src\hotspot\share\prims\jni.cpp, line 520]
-Event: 13662.281 Thread 0x000001d4ee298d20 Exception (0x00000000fa3e5f18)
-thrown [s\src\hotspot\share\prims\jni.cpp, line 520]
-Event: 13662.582 Thread 0x000001d4ee298d20 Exception (0x00000000f99e6050)
-thrown [s\src\hotspot\share\oops\constantPool.cpp, line 873]
-Event: 13662.582 Thread 0x000001d4ee298d20 Exception (0x00000000f99e81a8)
-thrown [s\src\hotspot\share\oops\constantPool.cpp, line 873]
-Event: 13662.583 Thread 0x000001d4ee298d20 Exception (0x00000000f99ea2f0)
-thrown [s\src\hotspot\share\oops\constantPool.cpp, line 873]
-Event: 13662.599 Thread 0x000001d4ee298d20 Exception (0x00000000f989d518)
-thrown [s\src\hotspot\share\oops\constantPool.cpp, line 873]
-Event: 13662.599 Thread 0x000001d4ee298d20 Exception (0x00000000f989f670)
-thrown [s\src\hotspot\share\oops\constantPool.cpp, line 873]
-Event: 13662.599 Thread 0x000001d4ee298d20 Exception (0x00000000f98a17b8)
-thrown [s\src\hotspot\share\oops\constantPool.cpp, line 873]
-Event: 13662.608 Thread 0x000001d4ee298d20 Exception (0x00000000f98fd388)
-thrown [s\src\hotspot\share\oops\constantPool.cpp, line 873]
-Event: 13662.609 Thread 0x000001d4ee298d20 Exception (0x00000000f98ff4e0)
-thrown [s\src\hotspot\share\oops\constantPool.cpp, line 873]
-Event: 13662.609 Thread 0x000001d4ee298d20 Exception (0x00000000f9701890)
-thrown [s\src\hotspot\share\oops\constantPool.cpp, line 873]
-
-ZGC Phase Switch (0 events):
-No events
-
-VM Operations (20 events):
-Event: 13093.430 Executing non-safepoint VM operation: HandshakeAllThreads (Deoptimize) done
-Event: 13093.698 Executing safepoint VM operation: ICBufferFull
-Event: 13093.698 Executing safepoint VM operation: ICBufferFull done
-Event: 13094.706 Executing safepoint VM operation: Cleanup
-Event: 13094.706 Executing safepoint VM operation: Cleanup done
-Event: 13095.716 Executing safepoint VM operation: Cleanup
-Event: 13095.716 Executing safepoint VM operation: Cleanup done
-Event: 13145.937 Executing non-safepoint VM operation: HandshakeAllThreads (HandshakeForDeflation)
-Event: 13145.937 Executing non-safepoint VM operation: HandshakeAllThreads (HandshakeForDeflation) done
-Event: 13145.937 Executing non-safepoint VM operation: RendezvousGCThreads
-Event: 13145.937 Executing non-safepoint VM operation: RendezvousGCThreads done
-Event: 13662.553 Executing safepoint VM operation: Cleanup
-Event: 13662.554 Executing safepoint VM operation: Cleanup done
-Event: 13663.563 Executing safepoint VM operation: Cleanup
-Event: 13663.563 Executing safepoint VM operation: Cleanup done
-Event: 13663.777 Executing safepoint VM operation: G1CollectForAllocation (G1 Evacuation Pause)
-Event: 13663.889 Executing safepoint VM operation: G1CollectForAllocation (G1 Evacuation Pause) done
-Event: 13664.898 Executing safepoint VM operation: Cleanup
-Event: 13664.898 Executing safepoint VM operation: Cleanup done
-Event: 13665.487 Executing safepoint VM operation: G1CollectForAllocation (G1 Evacuation Pause)
-
-Memory protections (0 events):
-No events
-
-Nmethod flushes (20 events):
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4bc819710
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4bc8ce790
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4bc9f9710
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4bc9fa990
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4bca45310
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4bcb06210
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4bcc24c10
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4bcc29590
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4bcde6590
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4bd1b6f90
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4bd337e90
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4bd4e8190
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4bd70c990
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4bd70f990
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4bd71c690
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4bd889310
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4bdb54690
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4bdb65310
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4be003890
-Event: 13093.292 Thread 0x000001d4cee6f930 flushing nmethod 0x000001d4be564090
-
-Events (20 events):
-Event: 13664.558 Thread 0x000001d4ee298d20 Thread added: 0x000001d4ea656c30
-Event: 13664.564 Thread 0x000001d4ee298d20 Thread added: 0x000001d4ea6572c0
-Event: 13664.578 Thread 0x000001d4ee298d20 Thread added: 0x000001d4ea653e40
-Event: 13664.586 Thread 0x000001d4ee298d20 Thread added: 0x000001d4ed0f2720
-Event: 13664.592 Thread 0x000001d4ee298d20 Thread added: 0x000001d4ed0f0650
-Event: 13664.598 Thread 0x000001d4ee298d20 Thread added: 0x000001d4ed0ef2a0
-Event: 13664.602 Thread 0x000001d4ee298d20 Thread added: 0x000001d4ed0effc0
-Event: 13664.610 Thread 0x000001d4ee298d20 Thread added: 0x000001d4ed0f1370
-Event: 13664.650 Thread 0x000001d4ee298d20 Thread added: 0x000001d4ed0f1a00
-Event: 13664.688 Thread 0x000001d4ee298d20 Thread added: 0x000001d4ed0f2090
-Event: 13664.696 Thread 0x000001d4ee298d20 Thread added: 0x000001d4f561b920
-Event: 13664.705 Thread 0x000001d4ee298d20 Thread added: 0x000001d4f57fbca0
-Event: 13664.719 Thread 0x000001d4ee298d20 Thread added: 0x000001d4f57faf80
-Event: 13664.730 Thread 0x000001d4ee298d20 Thread added: 0x000001d4f57fc9c0
-Event: 13664.737 Thread 0x000001d4ee298d20 Thread added: 0x000001d4f57fa8f0
-Event: 13664.748 Thread 0x000001d4ee298d20 Thread added: 0x000001d4f57fc330
-Event: 13664.753 Thread 0x000001d4ee298d20 Thread added: 0x000001d4efba99d0
-Event: 13664.758 Thread 0x000001d4ee298d20 Thread added: 0x000001d4ee8733e0
-Event: 13664.766 Thread 0x000001d4ee298d20 Thread added: 0x000001d4ee873a70
-Event: 13664.771 Thread 0x000001d4ee298d20 Thread added: 0x000001d4ee8754b0
-
-
-Dynamic libraries:
-0x00007ff7b1ac0000 - 0x00007ff7b1ace000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\java.exe
-0x00007ff8cc1c0000 - 0x00007ff8cc426000 C:\WINDOWS\SYSTEM32\ntdll.dll
-0x00007ff8cb690000 - 0x00007ff8cb759000 C:\WINDOWS\System32\KERNEL32.DLL
-0x00007ff8c9ae0000 - 0x00007ff8c9ede000 C:\WINDOWS\System32\KERNELBASE.dll
-0x00007ff8c97c0000 - 0x00007ff8c990c000 C:\WINDOWS\System32\ucrtbase.dll
-0x00007ff8b8a40000 - 0x00007ff8b8a5e000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\VCRUNTIME140.dll
-0x00007ff8b8a60000 - 0x00007ff8b8a78000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\jli.dll
-0x00007ff8ca870000 - 0x00007ff8caa37000 C:\WINDOWS\System32\USER32.dll
-0x00007ff8c9790000 - 0x00007ff8c97b7000 C:\WINDOWS\System32\win32u.dll
-0x00007ff8cbfb0000 - 0x00007ff8cbfdb000 C:\WINDOWS\System32\GDI32.dll
-0x00007ff8c9920000 - 0x00007ff8c9a4a000 C:\WINDOWS\System32\gdi32full.dll
-0x00007ff8c9620000 - 0x00007ff8c96c3000 C:\WINDOWS\System32\msvcp_win.dll
-0x00007ff8a7790000 - 0x00007ff8a7a22000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.8875_none_3e0d5d42e32fe9dd\COMCTL32.dll
-0x00007ff8ca000000 - 0x00007ff8ca0a9000 C:\WINDOWS\System32\msvcrt.dll
-0x00007ff8ca830000 - 0x00007ff8ca862000 C:\WINDOWS\System32\IMM32.DLL
-0x00007ff8b8ad0000 - 0x00007ff8b8adc000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\vcruntime140_1.dll
-0x00007ff869a00000 - 0x00007ff869a8d000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\msvcp140.dll
-0x00007ff81dab0000 - 0x00007ff81e852000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\server\jvm.dll
-0x00007ff8cb290000 - 0x00007ff8cb347000 C:\WINDOWS\System32\ADVAPI32.dll
-0x00007ff8caa40000 - 0x00007ff8caaea000 C:\WINDOWS\System32\sechost.dll
-0x00007ff8ca0b0000 - 0x00007ff8ca1c8000 C:\WINDOWS\System32\RPCRT4.dll
-0x00007ff8cc0c0000 - 0x00007ff8cc140000 C:\WINDOWS\System32\WS2_32.dll
-0x00007ff8c9260000 - 0x00007ff8c92be000 C:\WINDOWS\SYSTEM32\POWRPROF.dll
-0x00007ff8c5970000 - 0x00007ff8c59a6000 C:\WINDOWS\SYSTEM32\WINMM.dll
-0x00007ff8b9b90000 - 0x00007ff8b9b9b000 C:\WINDOWS\SYSTEM32\VERSION.dll
-0x00007ff8c9240000 - 0x00007ff8c9254000 C:\WINDOWS\SYSTEM32\UMPDC.dll
-0x00007ff8c8080000 - 0x00007ff8c809b000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll
-0x00007ff8b89e0000 - 0x00007ff8b89ea000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\jimage.dll
-0x00007ff8c6a10000 - 0x00007ff8c6c52000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL
-0x00007ff8ca1d0000 - 0x00007ff8ca553000 C:\WINDOWS\System32\combase.dll
-0x00007ff8ca750000 - 0x00007ff8ca829000 C:\WINDOWS\System32\OLEAUT32.dll
-0x00007ff8a9da0000 - 0x00007ff8a9ddb000 C:\WINDOWS\SYSTEM32\dbgcore.DLL
-0x00007ff8c93e0000 - 0x00007ff8c948c000 C:\WINDOWS\System32\bcryptPrimitives.dll
-0x00007ff8b89d0000 - 0x00007ff8b89df000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\instrument.dll
-0x00007ff8b84d0000 - 0x00007ff8b84f0000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\java.dll
-0x00007ff8caaf0000 - 0x00007ff8cb282000 C:\WINDOWS\System32\SHELL32.dll
-0x00007ff8c6e40000 - 0x00007ff8c76d2000 C:\WINDOWS\SYSTEM32\windows.storage.dll
-0x00007ff8ca560000 - 0x00007ff8ca657000 C:\WINDOWS\System32\SHCORE.dll
-0x00007ff8c9f00000 - 0x00007ff8c9f67000 C:\WINDOWS\System32\shlwapi.dll
-0x00007ff8c9300000 - 0x00007ff8c9329000 C:\WINDOWS\SYSTEM32\profapi.dll
-0x00007ff866330000 - 0x00007ff866407000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\jsvml.dll
-0x00007ff8b84a0000 - 0x00007ff8b84b8000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\zip.dll
-0x00007ff8b80d0000 - 0x00007ff8b80e0000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\net.dll
-0x00007ff8b9a60000 - 0x00007ff8b9b87000 C:\WINDOWS\SYSTEM32\WINHTTP.dll
-0x00007ff8c8610000 - 0x00007ff8c867c000 C:\WINDOWS\system32\mswsock.dll
-0x00007ff8b7f00000 - 0x00007ff8b7f16000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\nio.dll
-0x00007ff8b7ee0000 - 0x00007ff8b7ef0000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\verify.dll
-0x00007ff8a8ad0000 - 0x00007ff8a8af7000 C:\Users\jade\.gradle\native\1def1411415f61bf3af743bc5b6707747c0891f09f0c88961ee8f79bc544acac\windows-amd64\native-platform.dll
-0x00007ff895680000 - 0x00007ff8956f8000 C:\Users\jade\.gradle\native\0.2.7\x86_64-windows-gnu\gradle-fileevents.dll
-0x00007ff8b7ed0000 - 0x00007ff8b7eda000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\management.dll
-0x00007ff8b7e60000 - 0x00007ff8b7e6c000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\management_ext.dll
-0x00007ff8c9ef0000 - 0x00007ff8c9ef8000 C:\WINDOWS\System32\PSAPI.DLL
-0x00007ff8c7a30000 - 0x00007ff8c7a63000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL
-0x00007ff8cbfa0000 - 0x00007ff8cbfaa000 C:\WINDOWS\System32\NSI.dll
-0x00007ff8b7e50000 - 0x00007ff8b7e59000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\extnet.dll
-0x00007ff8c8a40000 - 0x00007ff8c8a5b000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll
-0x00007ff8c7fe0000 - 0x00007ff8c8019000 C:\WINDOWS\system32\rsaenh.dll
-0x00007ff8c86d0000 - 0x00007ff8c8702000 C:\WINDOWS\SYSTEM32\USERENV.dll
-0x00007ff8c92d0000 - 0x00007ff8c92fa000 C:\WINDOWS\SYSTEM32\bcrypt.dll
-0x00007ff8c8880000 - 0x00007ff8c888c000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll
-0x00007ff8b7d00000 - 0x00007ff8b7d0e000 C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\sunmscapi.dll
-0x00007ff8c94a0000 - 0x00007ff8c9618000 C:\WINDOWS\System32\CRYPT32.dll
-0x00007ff8c8bb0000 - 0x00007ff8c8be0000 C:\WINDOWS\SYSTEM32\ncrypt.dll
-0x00007ff8c8b60000 - 0x00007ff8c8b9f000 C:\WINDOWS\SYSTEM32\NTASN1.dll
-0x00007ff8a31a0000 - 0x00007ff8a31a8000 C:\WINDOWS\system32\wshunix.dll
-0x00007ff8c7a70000 - 0x00007ff8c7bc6000 C:\WINDOWS\SYSTEM32\DNSAPI.dll
-0x00007ff8c83e0000 - 0x00007ff8c83ed000 C:\WINDOWS\SYSTEM32\DSPARSE.dll
-0x00007ff8c36a0000 - 0x00007ff8c36ab000 C:\Windows\System32\rasadhlp.dll
-0x00007ff8bab30000 - 0x00007ff8babb6000 C:\WINDOWS\System32\fwpuclnt.dll
-
-JVMTI agents:
-C:\Users\jade\.gradle\wrapper\dists\gradle-8.14.3-bin\cv11ve7ro1n3o1j4so8xd9n66\gradle-8.14.3\lib\agents\gradle-instrumentation-agent-8.14.3.jar path:C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\instrument.dll, loaded, initialized, instrumentlib options:none
-
-dbghelp: loaded successfully - version: 4.0.5 - missing functions: none
-symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.8875_none_3e0d5d42e32fe9dd;C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin\server;C:\Users\jade\.gradle\native\1def1411415f61bf3af743bc5b6707747c0891f09f0c88961ee8f79bc544acac\windows-amd64;C:\Users\jade\.gradle\native\0.2.7\x86_64-windows-gnu
-
-VM Arguments:
-jvm_args: --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/java.lang.invoke=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.prefs/java.util.prefs=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED --add-exports=jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.prefs/java.util.prefs=ALL-UNNAMED --add-opens=java.base/java.nio.charset=ALL-UNNAMED --add-opens=java.base/java.net=ALL-UNNAMED --add-opens=java.base/java.util.concurrent.atomic=ALL-UNNAMED --add-opens=java.xml/javax.xml.namespace=ALL-UNNAMED -XX:MaxMetaspaceSize=384m -XX:+HeapDumpOnOutOfMemoryError -Xms256m -Xmx512m -Dfile.encoding=UTF-8 -Duser.country=KR -Duser.language=ko -Duser.variant -javaagent:C:\Users\jade\.gradle\wrapper\dists\gradle-8.14.3-bin\cv11ve7ro1n3o1j4so8xd9n66\gradle-8.14.3\lib\agents\gradle-instrumentation-agent-8.14.3.jar
-java_command: org.gradle.launcher.daemon.bootstrap.GradleDaemon 8.14.3
-java_class_path (initial): C:\Users\jade\.gradle\wrapper\dists\gradle-8.14.3-bin\cv11ve7ro1n3o1j4so8xd9n66\gradle-8.14.3\lib\gradle-daemon-main-8.14.3.jar
-Launcher Type: SUN_STANDARD
-
-[Global flags]
- intx CICompilerCount = 4 {product} {ergonomic}
- size_t CompressedClassSpaceSize = 335544320 {product} {ergonomic}
- uint ConcGCThreads = 3 {product} {ergonomic}
- uint G1ConcRefinementThreads = 11 {product} {ergonomic}
- size_t G1HeapRegionSize = 1048576 {product} {ergonomic}
- uintx GCDrainStackTargetSize = 64 {product} {ergonomic}
- bool HeapDumpOnOutOfMemoryError = true {manageable} {command line}
- size_t InitialHeapSize = 268435456 {product} {command line}
- size_t MarkStackSize = 4194304 {product} {ergonomic}
- size_t MaxHeapSize = 536870912 {product} {command line}
- size_t MaxMetaspaceSize = 402653184 {product} {command line}
- size_t MaxNewSize = 321912832 {product} {ergonomic}
- size_t MinHeapDeltaBytes = 1048576 {product} {ergonomic}
- size_t MinHeapSize = 268435456 {product} {command line}
- uintx NonNMethodCodeHeapSize = 5839372 {pd product} {ergonomic}
- uintx NonProfiledCodeHeapSize = 122909434 {pd product} {ergonomic}
- uintx ProfiledCodeHeapSize = 122909434 {pd product} {ergonomic}
- uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic}
- bool SegmentedCodeCache = true {product} {ergonomic}
- size_t SoftMaxHeapSize = 536870912 {manageable} {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 foldmultilines=false
- #1: stderr all=off uptime,level,tags foldmultilines=false
-
-Release file:
-IMPLEMENTOR="Eclipse Adoptium"
-IMPLEMENTOR_VERSION="Temurin-21.0.11+10"
-JAVA_RUNTIME_VERSION="21.0.11+10-LTS"
-JAVA_VERSION="21.0.11"
-JAVA_VERSION_DATE="2026-04-21"
-LIBC="default"
-MODULES="java.base java.compiler java.datatransfer java.xml java.prefs java.desktop java.instrument java.logging java.management java.security.sasl java.naming java.rmi java.management.rmi java.net.http java.scripting java.security.jgss java.transaction.xa java.sql java.sql.rowset java.xml.crypto java.se java.smartcardio jdk.accessibility jdk.internal.jvmstat jdk.attach jdk.charsets jdk.internal.opt jdk.zipfs jdk.compiler jdk.crypto.ec jdk.crypto.cryptoki jdk.crypto.mscapi jdk.dynalink jdk.internal.ed jdk.editpad jdk.hotspot.agent jdk.httpserver jdk.incubator.vector jdk.internal.le jdk.internal.vm.ci jdk.internal.vm.compiler jdk.internal.vm.compiler.management jdk.jartool jdk.javadoc jdk.jcmd jdk.management jdk.management.agent jdk.jconsole jdk.jdeps jdk.jdwp.agent jdk.jdi jdk.jfr jdk.jlink jdk.jpackage jdk.jshell jdk.jsobject jdk.jstatd jdk.localedata jdk.management.jfr jdk.naming.dns jdk.naming.rmi jdk.net jdk.nio.mapmode jdk.random jdk.sctp jdk.security.auth jdk.security.jgss jdk.unsupported jdk.unsupported.desktop jdk.xml.dom"
-OS_ARCH="x86_64"
-OS_NAME="Windows"
-SOURCE=".:git:254494ad7d75"
-BUILD_SOURCE="git:a612825ee82a20ac872d60958c349854c1f29a8e"
-BUILD_SOURCE_REPO="https://github.com/adoptium/temurin-build.git"
-SOURCE_REPO="https://github.com/adoptium/jdk21u.git"
-FULL_VERSION="21.0.11+10-LTS"
-SEMANTIC_VERSION="21.0.11+10"
-BUILD_INFO="OS: Windows Server 2022 Version: 10.0"
-JVM_VARIANT="Hotspot"
-JVM_VERSION="21.0.11+10-LTS"
-IMAGE_TYPE="JDK"
-
-Environment Variables:
-JAVA_HOME=C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\
-PATH=C:\Program Files\Eclipse Adoptium\jdk-21.0.11.10-hotspot\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Git\cmd;C:\Program Files\Docker\Docker\resources\bin;C:\Users\jade\AppData\Local\Microsoft\WindowsApps;
-USERNAME=jade
-OS=Windows_NT
-PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 181 Stepping 0, GenuineIntel
-TMP=C:\Users\jade\AppData\Local\Temp
-TEMP=C:\Users\jade\AppData\Local\Temp
-
-
-
-
-Periodic native trim disabled
-
---------------- S Y S T E M ---------------
-
-OS:
- Windows 11 , 64 bit Build 26100 (10.0.26100.8875)
-OS uptime: 6 days 19:59 hours
-Hyper-V role detected
-
-CPU: total 14 (initial active 14) (7 cores per cpu, 2 threads per core) family 6 model 181 stepping 0 microcode 0x9, cx8, cmov, fxsr, ht, mmx, 3dnowpref, sse, sse2, sse3, ssse3, sse4.1, sse4.2, popcnt, lzcnt, tsc, tscinvbit, avx, avx2, aes, erms, clmul, bmi1, bmi2, adx, sha, fma, vzeroupper, clflush, clflushopt, clwb, hv, serialize, rdtscp, rdpid, fsrm, f16c, cet_ibt, cet_ss
-Processor Information for processor 0
- Max Mhz: 2000, Current Mhz: 2000, Mhz Limit: 2000
-Processor Information for processor 1
- Max Mhz: 2000, Current Mhz: 2000, Mhz Limit: 2000
-Processor Information for processor 2
- Max Mhz: 1700, Current Mhz: 1478, Mhz Limit: 1700
-Processor Information for processor 3
- Max Mhz: 1700, Current Mhz: 1700, Mhz Limit: 1700
-Processor Information for processor 4
- Max Mhz: 1700, Current Mhz: 1700, Mhz Limit: 1700
-Processor Information for processor 5
- Max Mhz: 1700, Current Mhz: 1700, Mhz Limit: 1700
-Processor Information for processor 6
- Max Mhz: 1700, Current Mhz: 1700, Mhz Limit: 1700
-Processor Information for processor 7
- Max Mhz: 1700, Current Mhz: 1700, Mhz Limit: 1700
-Processor Information for processor 8
- Max Mhz: 1700, Current Mhz: 1700, Mhz Limit: 1700
-Processor Information for processor 9
- Max Mhz: 1700, Current Mhz: 1700, Mhz Limit: 1700
-Processor Information for processor 10
- Max Mhz: 2000, Current Mhz: 2000, Mhz Limit: 2000
-Processor Information for processor 11
- Max Mhz: 2000, Current Mhz: 2000, Mhz Limit: 2000
-Processor Information for processor 12
- Max Mhz: 700, Current Mhz: 700, Mhz Limit: 700
-Processor Information for processor 13
- Max Mhz: 700, Current Mhz: 700, Mhz Limit: 700
-
-Memory: 4k page, system-wide physical 15836M (501M free)
-TotalPageFile size 31971M (AvailPageFile size 0M)
-current process WorkingSet (physical memory assigned to process): 445M, peak: 784M
-current process commit charge ("private bytes"): 901M, peak: 919M
-
-vm_info: OpenJDK 64-Bit Server VM (21.0.11+10-LTS) for windows-amd64 JRE (21.0.11+10-LTS), built on 2026-04-21T00:00:00Z by "admin" with MS VC++ 17.12 (VS2022)
-
-END.
diff --git a/manifest_output.json b/manifest_output.json
deleted file mode 100644
index b8125795..00000000
--- a/manifest_output.json
+++ /dev/null
@@ -1,606 +0,0 @@
-{
- "bundleId": "tool-oth",
- "revision": "1785826298946",
- "tools": [
- {
- "name": "balance",
- "endpoint": "http://localhost:8084/mcp/balance",
- "title": "balance í´",
- "description": "ê³ ê°ì ê³ì¢ ìì¡ì ì¡°íí©ëë¤.",
- "inputSchema": {
- "additionalProperties": false,
- "type": "object",
- "properties": {
- "accountNumber": {
- "type": "string",
- "pattern": "\\S",
- "description": "ê³ ê°ì ê³ì¢ë²í¸ (- ì ì¸) "
- }
- },
- "required": [
- "accountNumber"
- ]
- },
- "annotations": {
- "title": "balance í´",
- "readOnlyHint": false,
- "destructiveHint": false,
- "idempotentHint": false,
- "openWorldHint": false
- },
- "_meta": {
- "version": "1.0.0",
- "timeoutMillis": 300000,
- "enabled": true
- }
- },
- {
- "name": "billing_process",
- "endpoint": "http://localhost:8084/mcp/billing_process",
- "title": "process í´",
- "description": "ì²êµ¬ ì²ë¦¬",
- "inputSchema": {
- "additionalProperties": false,
- "type": "object",
- "properties": {
- "approvalStatus": {
- "type": "string",
- "description": "ì¬ì¬ ì¹ì¸ ì¬ë¶ (ì: APPROVE, REJECT)",
- "enum": [
- "APPROVE",
- "REJECT"
- ]
- },
- "billingId": {
- "type": "string",
- "pattern": "\\S",
- "description": "ì²ë¦¬í ì²êµ¬ ì ì ë²í¸"
- }
- },
- "required": [
- "billingId",
- "approvalStatus"
- ]
- },
- "annotations": {
- "title": "process í´",
- "readOnlyHint": false,
- "destructiveHint": false,
- "idempotentHint": false,
- "openWorldHint": false
- },
- "_meta": {
- "version": "1.0.0",
- "timeoutMillis": 300000,
- "enabled": true
- }
- },
- {
- "name": "bond_issue",
- "endpoint": "http://localhost:8084/mcp/bond_issue",
- "title": "issue í´",
- "description": "ì¦ê¶ ë°í í\u0085ì¤í¸1",
- "inputSchema": {
- "additionalProperties": false,
- "type": "object",
- "properties": {
- "amount": {
- "type": "integer",
- "description": "ë°íí ëì§í¸ ì¦ê¶ ê¸ì¡",
- "minimum": 1
- },
- "targetAccount": {
- "type": "string",
- "pattern": "\\S",
- "description": "ë°í ëì ê³ì¢ ë²í¸"
- }
- },
- "required": [
- "amount",
- "targetAccount"
- ]
- },
- "annotations": {
- "title": "issue í´",
- "readOnlyHint": false,
- "destructiveHint": false,
- "idempotentHint": false,
- "openWorldHint": false
- },
- "_meta": {
- "version": "1.0.0",
- "timeoutMillis": 300000,
- "enabled": true
- }
- },
- {
- "name": "contract_detail",
- "endpoint": "http://localhost:8084/mcp/contract_detail",
- "title": "contract_detail í´",
- "description": "ê³ì½ìì¸ ì¡°í",
- "inputSchema": {
- "additionalProperties": false,
- "type": "object",
- "properties": {
- "contractId": {
- "type": "string",
- "description": "ì¡°íí ê³ì½ ë²í¸"
- },
- "customerName": {
- "type": "string",
- "description": "ê³ ê°ëª\u0085"
- }
- },
- "required": [
- "customerName",
- "contractId"
- ]
- },
- "annotations": {
- "title": "contract_detail í´",
- "readOnlyHint": false,
- "destructiveHint": false,
- "idempotentHint": false,
- "openWorldHint": false
- },
- "_meta": {
- "version": "1.0.0",
- "timeoutMillis": 300000,
- "enabled": true
- }
- },
- {
- "name": "customer_detail",
- "endpoint": "http://localhost:8084/mcp/customer_detail",
- "title": "detail í´",
- "description": "ê³ ê°ìì¸ ì ë³´ ì¡°í",
- "inputSchema": {
- "additionalProperties": false,
- "type": "object",
- "properties": {
- "customerId": {
- "type": "string",
- "description": "ê³ ê° ìë³ ë²í¸ (CID)"
- },
- "customerName": {
- "type": "string",
- "description": "ê³ ê°ëª\u0085"
- }
- },
- "required": [
- "customerName"
- ]
- },
- "annotations": {
- "title": "detail í´",
- "readOnlyHint": false,
- "destructiveHint": false,
- "idempotentHint": false,
- "openWorldHint": false
- },
- "_meta": {
- "version": "1.0.0",
- "timeoutMillis": 300000,
- "enabled": true
- }
- },
- {
- "name": "daily_quote",
- "endpoint": "http://localhost:8084/mcp/daily_quote",
- "title": "ëë¤ ëª\u0085ì¸ í´",
- "description": "무ììë¡ ìê°ì 주ë ëª\u0085ì¸ì íë ê°ì ¸ìµëë¤.",
- "inputSchema": {
- "additionalProperties": false,
- "type": "object",
- "properties": {
- "category": {
- "type": "string",
- "description": "category"
- }
- }
- },
- "annotations": {
- "title": "ëë¤ ëª\u0085ì¸ í´",
- "readOnlyHint": false,
- "destructiveHint": false,
- "idempotentHint": false,
- "openWorldHint": false
- },
- "_meta": {
- "version": "1.0.0",
- "timeoutMillis": 300000,
- "enabled": true
- }
- },
- {
- "name": "exchange_rate",
- "endpoint": "http://localhost:8084/mcp/exchange_rate",
- "title": "ì¤ìê° íì¨ ì¡°í í´",
- "description": "ìíë íµíì ì¤ìê° íì¨ì ì¡°íí©ëë¤. (ì: USD, EUR, JPY)",
- "inputSchema": {
- "additionalProperties": false,
- "type": "object",
- "properties": {
- "currencyCode": {
- "type": "string",
- "description": "currencyCode"
- }
- }
- },
- "annotations": {
- "title": "ì¤ìê° íì¨ ì¡°í í´",
- "readOnlyHint": false,
- "destructiveHint": false,
- "idempotentHint": false,
- "openWorldHint": false
- },
- "_meta": {
- "version": "1.0.0",
- "timeoutMillis": 300000,
- "enabled": true
- }
- },
- {
- "name": "get_leave_count",
- "endpoint": "http://localhost:8084/mcp/get_leave_count",
- "title": "get_leave_count í´",
- "description": "ì°ì°¨ ê°¯ì ì¡°í",
- "inputSchema": {
- "additionalProperties": false,
- "type": "object",
- "properties": {
- "employeeId": {
- "type": "string",
- "description": "ì°ì°¨ ë´ìì ì¡°íí ì¬ì ë²í¸"
- }
- },
- "required": [
- "employeeId"
- ]
- },
- "annotations": {
- "title": "get_leave_count í´",
- "readOnlyHint": false,
- "destructiveHint": false,
- "idempotentHint": false,
- "openWorldHint": false
- },
- "_meta": {
- "version": "1.0.0",
- "timeoutMillis": 300000,
- "enabled": true
- }
- },
- {
- "name": "get_smp_members",
- "endpoint": "http://localhost:8084/mcp/get_smp_members",
- "title": "ì íë¼ì´í MCP, TOOL íí¸ êµ¬ì±ì ì¡°í",
- "description": "ì íë¼ì´í MCP, TOOL íí¸ êµ¬ì±ìì ì¡°íí©ëë¤.",
- "inputSchema": {
- "additionalProperties": false,
- "type": "object",
- "properties": {
- "teamName": {
- "type": "string",
- "description": "ì¡°íí í ì´ë¦ (ì: AX, MCP, TOOL, ì ì²´ ë±)"
- }
- }
- },
- "annotations": {
- "title": "ì íë¼ì´í MCP, TOOL íí¸ êµ¬ì±ì ì¡°í",
- "readOnlyHint": false,
- "destructiveHint": false,
- "idempotentHint": false,
- "openWorldHint": true
- },
- "_meta": {
- "version": "1.0.0",
- "timeoutMillis": 300000,
- "enabled": true
- }
- },
- {
- "name": "get_template_file_url",
- "endpoint": "http://localhost:8084/mcp/get_template_file_url",
- "title": "í\u0085í릿 ì í¸ë¦¬í°",
- "description": "ìì²í í\u0085í릿(ìì\u0085, ìë ë±) íì¼(ìì)ì ë¤ì´ë¡ë ë°ì ì ìë ìì¤í\u0085 URLì ë°íí©ëë¤. AIë ì´ URLì ì¬ì©ììê² ë§í¬ë¤ì´ ë§í¬ ííë¡ ì ê³µí´ì¼ í©ëë¤.",
- "inputSchema": {
- "additionalProperties": false,
- "type": "object",
- "properties": {
- "templateId": {
- "type": "string",
- "description": "templateId"
- }
- }
- },
- "annotations": {
- "title": "í\u0085í릿 ì í¸ë¦¬í°",
- "readOnlyHint": false,
- "destructiveHint": false,
- "idempotentHint": false,
- "openWorldHint": false
- },
- "_meta": {
- "version": "1.0.0",
- "timeoutMillis": 300000,
- "enabled": true
- }
- },
- {
- "name": "metaCommonCode",
- "endpoint": "http://localhost:8084/mcp/metaCommonCode",
- "title": "ë©í íµí©ì½ë ì¡°í í´",
- "description": "ë©í íµí©ì½ë 목ë¡ì ì¡°íí´ì¤",
- "inputSchema": {
- "additionalProperties": false,
- "type": "object",
- "properties": {
- "codeName": {
- "type": "string",
- "description": "ì½ëëª\u0085 ê²ì í¤ìë (ì: ì¬ì©, ìí)"
- },
- "useYn": {
- "type": "string",
- "description": "ì¬ì©ì¬ë¶ (ì: Y, N)"
- },
- "groupCode": {
- "type": "string",
- "description": "íµí©ì½ë 그룹 ID (ì: GRP_SYS_01, GRP_COMM_CD)"
- }
- }
- },
- "annotations": {
- "title": "ë©í íµí©ì½ë ì¡°í í´",
- "readOnlyHint": false,
- "destructiveHint": false,
- "idempotentHint": false,
- "openWorldHint": true
- },
- "_meta": {
- "version": "1.0.0",
- "timeoutMillis": 300000,
- "enabled": true
- }
- },
- {
- "name": "metaTable",
- "endpoint": "http://localhost:8084/mcp/metaTable",
- "title": "ë©í í\u0085ì´ë¸ ì¡°í í´",
- "description": "ë©í í\u0085ì´ë¸ ì ë³´ 목ë¡ì ì¡°íí´ì¤",
- "inputSchema": {
- "additionalProperties": false,
- "type": "object",
- "properties": {
- "tableLogicalName": {
- "type": "string",
- "description": "í\u0085ì´ë¸ ë\u0085¼ë¦¬ëª\u0085(íê¸) í¤ìë (ì: ê³ ê°ê¸°ë³¸, ê³ì½)"
- },
- "owner": {
- "type": "string",
- "description": "ì¤í¤ë§/ìì ìëª\u0085 (ì: DAPADM, SHLOWN)"
- },
- "tableName": {
- "type": "string",
- "description": "í\u0085ì´ë¸ 물리ëª\u0085 í¤ìë (ì: TB_CUST_BAS, TB_CONT)"
- }
- }
- },
- "annotations": {
- "title": "ë©í í\u0085ì´ë¸ ì¡°í í´",
- "readOnlyHint": false,
- "destructiveHint": false,
- "idempotentHint": false,
- "openWorldHint": true
- },
- "_meta": {
- "version": "1.0.0",
- "timeoutMillis": 300000,
- "enabled": true
- }
- },
- {
- "name": "sample.claim.search.resource",
- "endpoint": "http://localhost:8084/mcp/sample.claim.search.resource",
- "title": "Claim search JSON Schema sample",
- "description": "Claim search Tool sample using input and output JSON Schema resources.",
- "inputSchema": {
- "$schema": "https://json-schema.org/draft/2020-12/schema",
- "type": "object",
- "properties": {
- "claimNo": {
- "type": "string",
- "description": "ì²êµ¬ë²í¸. CLM ë¤ì ì«ì 13ì리 íìì´ë¤.",
- "pattern": "^CLM[0-9]{13}$",
- "examples": [
- "CLM2026070100123"
- ]
- },
- "contractNo": {
- "type": "string",
- "description": "ê³ì½ë²í¸. ì«ì 11ì리 íìì´ë¤.",
- "pattern": "^[0-9]{11}$",
- "examples": [
- "10023456789"
- ]
- },
- "status": {
- "type": "string",
- "enum": [
- "RECEIVED",
- "REVIEWING",
- "ADDITIONAL_DOC_REQUIRED",
- "APPROVED",
- "PAID",
- "REJECTED",
- "WITHDRAWN"
- ]
- },
- "size": {
- "type": "integer",
- "minimum": 1,
- "maximum": 50,
- "default": 20
- }
- },
- "required": [
-
- ],
- "additionalProperties": false,
- "anyOf": [
- {
- "required": [
- "claimNo"
- ]
- },
- {
- "required": [
- "contractNo"
- ]
- }
- ]
- },
- "annotations": {
- "title": "Claim search JSON Schema sample",
- "readOnlyHint": true,
- "destructiveHint": false,
- "idempotentHint": true,
- "openWorldHint": false
- },
- "_meta": {
- "version": "1.0.0",
- "timeoutMillis": 300000,
- "enabled": true
- }
- },
- {
- "name": "secret_tool",
- "endpoint": "http://localhost:8084/mcp/secret_tool",
- "title": "secret_tool í´",
- "description": "ë¹ê³µê° í´ í\u0085ì¤í¸",
- "inputSchema": {
- "additionalProperties": false,
- "type": "object",
- "properties": {
- "employeeId": {
- "type": "string",
- "description": "ì°ì°¨ ë´ìì ì¡°íí ì¬ì ë²í¸"
- }
- },
- "required": [
- "employeeId"
- ]
- },
- "annotations": {
- "title": "secret_tool í´",
- "readOnlyHint": false,
- "destructiveHint": false,
- "idempotentHint": false,
- "openWorldHint": false
- },
- "_meta": {
- "version": "1.0.0",
- "timeoutMillis": 300000,
- "enabled": true
- }
- },
- {
- "name": "solReqDetail",
- "endpoint": "http://localhost:8084/mcp/solReqDetail",
- "title": "SolReqDetail í´",
- "description": "SOL ì뢰ì ìì¸ ì¡°í",
- "inputSchema": {
- "additionalProperties": false,
- "type": "object",
- "properties": {
- "srId": {
- "type": "string",
- "description": "ìì¸ ì¡°íí SOL ì뢰ì ID"
- }
- },
- "required": [
- "srId"
- ]
- },
- "annotations": {
- "title": "SolReqDetail í´",
- "readOnlyHint": true,
- "destructiveHint": false,
- "idempotentHint": false,
- "openWorldHint": true
- },
- "_meta": {
- "version": "1.0.0",
- "timeoutMillis": 300000,
- "enabled": true
- }
- },
- {
- "name": "solReqList",
- "endpoint": "http://localhost:8084/mcp/solReqList",
- "title": "SolReqList í´",
- "description": "SOL ì뢰ì ëª©ë¡ ì¡°íí´ì¤",
- "inputSchema": {
- "additionalProperties": false,
- "type": "object",
- "properties": {
- "period": {
- "type": "string",
- "description": "ì¡°íê¸°ê° (ì: 1ê°ì, 3ê°ì ë±)"
- },
- "status": {
- "type": "string",
- "description": "ì§íìí (ì: ì§íì¤, ìë£ ë±)"
- },
- "target": {
- "type": "string",
- "description": "ì¡°íëì (ì: ëì ì\u0085무, ì ì²´ ë±)"
- }
- }
- },
- "annotations": {
- "title": "SolReqList í´",
- "readOnlyHint": false,
- "destructiveHint": false,
- "idempotentHint": false,
- "openWorldHint": true
- },
- "_meta": {
- "version": "1.0.0",
- "timeoutMillis": 300000,
- "enabled": true
- }
- },
- {
- "name": "weather",
- "endpoint": "http://localhost:8084/mcp/weather",
- "title": "ë ì¨ ì¡°í í´",
- "description": "í¹ì ëìì íì¬ ë ì¨, ì¨ë, íì ì 보를 ì¡°íí©ëë¤.",
- "inputSchema": {
- "additionalProperties": false,
- "type": "object",
- "properties": {
- "city": {
- "type": "string",
- "description": "ë ì¨ë¥¼ ì¡°íí ëì ì´ë¦ (ì: ìì¸, ë¶ì°, ì 주)"
- }
- },
- "required": [
- "city"
- ]
- },
- "annotations": {
- "title": "ë ì¨ ì¡°í í´",
- "readOnlyHint": false,
- "destructiveHint": false,
- "idempotentHint": false,
- "openWorldHint": false
- },
- "_meta": {
- "version": "1.0.0",
- "timeoutMillis": 300000,
- "enabled": true
- }
- }
- ]
-}
\ No newline at end of file
diff --git a/mci_sample_test.http b/mci_sample_test.http
deleted file mode 100644
index fd34ef20..00000000
--- a/mci_sample_test.http
+++ /dev/null
@@ -1,35 +0,0 @@
-### 대내 MCI 샘플 툴(send_mci_sample) 테스트
-# 이 스크립트는 IntelliJ IDEA의 HTTP Client 플러그인을 위한 테스트 파일입니다.
-# 1. 서버(Gateway 및 Tool 모듈)를 먼저 실행해 주세요.
-# 2. 아래 초록색 플레이(▶) 버튼을 누르면 툴 함수가 호출됩니다!
-
-POST http://localhost:8081/mcp/api/v1/tools/call
-Content-Type: application/json
-Accept: application/json
-
-{
- "jsonrpc": "2.0",
- "id": "test-1234",
- "params": {
- "name": "other_send_mci_sample",
- "arguments": {
- "tgrmCmnnhddValu": {
- "envrTypeCd": "D",
- "itrIfId": "IF_TEST_001"
- },
- "tgrmMsdvValu": {
- "msgHddvValu": {
- "msgTnsmTypeCd": "0"
- },
- "msgDtdvValu": {
- "msgCd": "0000"
- }
- },
- "tgrmDtdvValu": {
- "customerName": "홍길동",
- "targetDate": "20260901",
- "remarks": "MCI 연동 테스트"
- }
- }
- }
-}
diff --git a/recent_changes.diff b/recent_changes.diff
deleted file mode 100644
index 119d7ac8..00000000
--- a/recent_changes.diff
+++ /dev/null
@@ -1,715 +0,0 @@
-diff --git a/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/annotation/McpFunction.java b/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/annotation/McpFunction.java
-index c7251dd..6ee5f33 100644
---- a/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/annotation/McpFunction.java
-+++ b/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/annotation/McpFunction.java
-@@ -39,6 +39,17 @@ public @interface McpFunction {
- */
- // 異붽?: Redis ?먮룞 ?깅줉 諛?Heartbeat ????щ? ?쒖뼱
- String inputSchemaResource() default "";
-+
-+ /**
-+ * Tool response JSON Schema. When unset, output validation is skipped.
-+ */
-+ String outputSchema() default "{}";
-+
-+ /**
-+ * Classpath resource for a complex Tool response JSON Schema.
-+ * This value has priority over outputSchema.
-+ */
-+ String outputSchemaResource() default "";
- boolean register() default false;
-
- // 異붽?: ??紐⑸줉 ?몄텧 ?щ? ?쒖뼱 (false ???쇱슦?낆? ?섎굹 紐⑸줉?먯꽌 ?④?)
-diff --git a/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/annotation/McpOutputSchema.java b/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/annotation/McpOutputSchema.java
-new file mode 100644
-index 0000000..cfb37dc
---- /dev/null
-+++ b/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/annotation/McpOutputSchema.java
-@@ -0,0 +1,17 @@
-+package io.shinhanlife.dap.lib.annotation;
-+
-+import java.lang.annotation.Documented;
-+import java.lang.annotation.ElementType;
-+import java.lang.annotation.Retention;
-+import java.lang.annotation.RetentionPolicy;
-+import java.lang.annotation.Target;
-+
-+/**
-+ * Marks a Tool response DTO for automatic output JSON Schema generation.
-+ * Field constraints are declared with {@link McpValidation}.
-+ */
-+@Target(ElementType.TYPE)
-+@Retention(RetentionPolicy.RUNTIME)
-+@Documented
-+public @interface McpOutputSchema {
-+}
-\ No newline at end of file
-diff --git a/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/annotation/McpValidation.java b/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/annotation/McpValidation.java
-index ecf23c8..4353edf 100644
---- a/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/annotation/McpValidation.java
-+++ b/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/annotation/McpValidation.java
-@@ -31,6 +31,6 @@ public @interface McpValidation {
- int maxLength() default -1;
- String[] allowedValues() default {};
- String format() default "";
-- String defaultValue() default "";
-+ boolean nullable() default false; String defaultValue() default "";
- String[] examples() default {};
- }
-diff --git a/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/util/JsonSchemaGenerator.java b/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/util/JsonSchemaGenerator.java
-index a90efa0..d95dae6 100644
---- a/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/util/JsonSchemaGenerator.java
-+++ b/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/util/JsonSchemaGenerator.java
-@@ -103,6 +103,14 @@ public class JsonSchemaGenerator {
- if (validation != null && validation.examples().length > 0) {
- fieldSchema.put("examples", List.of(validation.examples()));
- }
-+ if (validation != null && validation.nullable()) {
-+ Map nonNullSchema = new HashMap<>(fieldSchema);
-+ fieldSchema = new HashMap<>();
-+ fieldSchema.put("anyOf", List.of(
-+ nonNullSchema,
-+ Map.of("type", "null")
-+ ));
-+ }
-
- properties.put(field.getName(), fieldSchema);
- }
-diff --git a/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/util/ToolSchemaResolver.java b/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/util/ToolSchemaResolver.java
-index 787cbc1..5ea54df 100644
---- a/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/util/ToolSchemaResolver.java
-+++ b/dap-tool-core/src/main/java/io/shinhanlife/dap/lib/util/ToolSchemaResolver.java
-@@ -3,7 +3,7 @@ package io.shinhanlife.dap.lib.util;
- import com.fasterxml.jackson.core.type.TypeReference;
- import com.fasterxml.jackson.databind.ObjectMapper;
- import io.shinhanlife.dap.lib.annotation.McpFunction;
--import java.io.InputStream;
-+import io.shinhanlife.dap.lib.annotation.McpOutputSchema;import java.io.InputStream;
- import java.util.Map;
- import org.springframework.core.io.ClassPathResource;
-
-@@ -27,19 +27,44 @@ public class ToolSchemaResolver {
- return JsonSchemaGenerator.generateSchema(requestType);
- }
-
-+ /**
-+ * Resolves an explicitly declared response schema.
-+ * Response schemas are opt-in so existing tools keep their current response behavior.
-+ */
-+ public Map resolveOutput(McpFunction function, Class> responseType) {
-+ if (function != null && !function.outputSchemaResource().isBlank()) {
-+ return loadResource(function.outputSchemaResource());
-+ }
-+ if (function != null && !function.outputSchema().isBlank()
-+ && !"{}".equals(function.outputSchema().trim())) {
-+ return parse(function.outputSchema(), "McpFunction.outputSchema");
-+ }
-+ if (responseType != null && responseType.isAnnotationPresent(McpOutputSchema.class)) {
-+ return JsonSchemaGenerator.generateSchema(responseType);
-+ }
-+ return Map.of();
-+ }
-+
-+ /**
-+ * Retained for callers that use only explicit output schemas.
-+ */
-+ public Map resolveOutput(McpFunction function) {
-+ return resolveOutput(function, null);
-+ }
-+
- private Map loadResource(String location) {
- String path = location.startsWith("classpath:")
- ? location.substring("classpath:".length())
- : location;
- ClassPathResource resource = new ClassPathResource(path);
- if (!resource.exists()) {
-- throw new IllegalStateException("MCP input schema resource not found: " + location);
-+ throw new IllegalStateException("MCP schema resource not found: " + location);
- }
-
- try (InputStream inputStream = resource.getInputStream()) {
- return objectMapper.readValue(inputStream, new TypeReference<>() { });
- } catch (Exception e) {
-- throw new IllegalStateException("Failed to load MCP input schema resource: " + location, e);
-+ throw new IllegalStateException("Failed to load MCP schema resource: " + location, e);
- }
- }
-
-diff --git a/dap-tool-core/src/main/java/io/shinhanlife/dap/mcc/presentation/BusinessToolController.java b/dap-tool-core/src/main/java/io/shinhanlife/dap/mcc/presentation/BusinessToolController.java
-index daf0018..ec840ed 100644
---- a/dap-tool-core/src/main/java/io/shinhanlife/dap/mcc/presentation/BusinessToolController.java
-+++ b/dap-tool-core/src/main/java/io/shinhanlife/dap/mcc/presentation/BusinessToolController.java
-@@ -192,14 +192,30 @@ public class BusinessToolController {
- } else {
- methodResult = targetMethod.invoke(targetBean, invokeArgument);
- }
-+
-+ Map outputSchema = toolSchemaResolver.resolveOutput(targetFunctionAnnotation, targetMethod.getReturnType());
-+ if (!outputSchema.isEmpty()) {
-+ List outputErrors = toolArgumentSchemaValidator.validateValue(outputSchema, methodResult);
-+ if (!outputErrors.isEmpty()) {
-+ log.error("[Tool] Output schema validation failed. tool={}, errors={}",
-+ functionName, outputErrors);
-+ Map errorBody = new HashMap<>();
-+ errorBody.put("code", "INVALID_TOOL_RESPONSE");
-+ errorBody.put("message", "Tool response does not match its output schema");
-+ if (finalRequestId != null) {
-+ errorBody.put("request_id", finalRequestId);
-+ }
-+ return ResponseEntity.internalServerError().body(errorBody);
-+ }
-+ }
-
- long elapsed = System.currentTimeMillis() - startTime;
-
- // 5. 寃곌낵 諛섑솚 (?쒖닔 REST ?묐떟)
- try {
-- log.info("[Tool -> MCP Gateway] ?숈쟻 ???ㅽ뻾 寃곌낵 諛섑솚: {}", objectMapper.writeValueAsString(methodResult));
-+ log.info("[Tool -> MCP Gateway] Output Schema Result: {}", objectMapper.writeValueAsString(methodResult));
- } catch (Exception e) {
-- log.info("[Tool -> MCP Gateway] ?숈쟻 ???ㅽ뻾 寃곌낵 諛섑솚: {}", methodResult);
-+ log.info("[Tool -> MCP Gateway] Output Schema Result: {}", methodResult);
- }
-
- log.info(" [Tool] OUT - trace-id: {}, request-id: {}", traceId, requestId);
-diff --git a/dap-tool-core/src/main/java/io/shinhanlife/dap/mcc/presentation/ToolArgumentSchemaValidator.java b/dap-tool-core/src/main/java/io/shinhanlife/dap/mcc/presentation/ToolArgumentSchemaValidator.java
-index 876144c..59c68ff 100644
---- a/dap-tool-core/src/main/java/io/shinhanlife/dap/mcc/presentation/ToolArgumentSchemaValidator.java
-+++ b/dap-tool-core/src/main/java/io/shinhanlife/dap/mcc/presentation/ToolArgumentSchemaValidator.java
-@@ -21,8 +21,12 @@ public class ToolArgumentSchemaValidator {
- }
-
- public List validate(Map schemaDefinition, Map arguments) throws Exception {
-+ return validateValue(schemaDefinition, arguments);
-+ }
-+
-+ public List validateValue(Map schemaDefinition, Object value) throws Exception {
- SchemaRegistry schemaRegistry = SchemaRegistry.withDefaultDialect(SpecificationVersion.DRAFT_7);
- Schema schema = schemaRegistry.getSchema(objectMapper.writeValueAsString(schemaDefinition));
-- return schema.validate(objectMapper.writeValueAsString(arguments), InputFormat.JSON);
-+ return schema.validate(objectMapper.writeValueAsString(value), InputFormat.JSON);
- }
- }
-diff --git a/dap-tool-core/src/test/java/io/shinhanlife/dap/lib/util/ToolSchemaResolverTest.java b/dap-tool-core/src/test/java/io/shinhanlife/dap/lib/util/ToolSchemaResolverTest.java
-index 6737a00..bc05f05 100644
---- a/dap-tool-core/src/test/java/io/shinhanlife/dap/lib/util/ToolSchemaResolverTest.java
-+++ b/dap-tool-core/src/test/java/io/shinhanlife/dap/lib/util/ToolSchemaResolverTest.java
-@@ -5,6 +5,8 @@ import static org.junit.jupiter.api.Assertions.assertTrue;
-
- import com.fasterxml.jackson.databind.ObjectMapper;
- import io.shinhanlife.dap.lib.annotation.McpFunction;
-+import io.shinhanlife.dap.lib.annotation.McpOutputSchema;
-+import io.shinhanlife.dap.lib.annotation.McpValidation;
- import java.lang.reflect.Method;
- import java.util.List;
- import java.util.Map;
-@@ -15,66 +17,103 @@ class ToolSchemaResolverTest {
- private final ToolSchemaResolver resolver = new ToolSchemaResolver(new ObjectMapper());
-
- @Test
-- void usesExplicitSchemaResourceBeforeAutomaticDtoSchema() throws Exception {
-- Method method = SchemaBackedTool.class.getDeclaredMethod("search", AutoGeneratedRequest.class);
-- McpFunction function = method.getAnnotation(McpFunction.class);
-+ void usesInlineSchemaBeforeAutomaticDtoSchema() throws Exception {
-+ Method method = InlineSchemaTool.class.getDeclaredMethod("search", AutomaticRequest.class);
-
-- Map schema = resolver.resolve(function, AutoGeneratedRequest.class);
-+ Map schema = resolver.resolve(method.getAnnotation(McpFunction.class), AutomaticRequest.class);
-
- assertEquals(false, schema.get("additionalProperties"));
-- assertTrue(schema.containsKey("anyOf"));
-- assertEquals(50, ((Map, ?>) ((Map, ?>) schema.get("properties")).get("size")).get("maximum"));
-- assertEquals(List.of(Map.of("required", List.of("claimNo"))), schema.get("anyOf"));
-+ assertTrue(!properties(schema).containsKey("differentField"));
- }
-
-+ @Test
-+ void generatesSchemaFromRequestDtoWhenNoExplicitSchemaIsConfigured() throws Exception {
-+ Method method = AutomaticSchemaTool.class.getDeclaredMethod("search", AutomaticRequest.class);
-
-- /* Inline schema resolution is covered by the same resolver branch at integration level.
-- void usesInlineSchemaBeforeAutomaticDtoSchema() throws Exception {
-- Method method = InlineSchemaTool.class.getDeclaredMethod("search", AutoGeneratedRequest.class);
-+ Map schema = resolver.resolve(method.getAnnotation(McpFunction.class), AutomaticRequest.class);
-
-- Map schema = resolver.resolve(method.getAnnotation(McpFunction.class), AutoGeneratedRequest.class);
-+ assertTrue(properties(schema).containsKey("differentField"));
-+ }
-
-- assertEquals("object", schema.get("type"));
-+ @Test
-+ void resolvesExplicitOutputSchema() throws Exception {
-+ Method method = OutputSchemaTool.class.getDeclaredMethod("search", AutomaticRequest.class);
-+ Map schema = resolver.resolveOutput(method.getAnnotation(McpFunction.class));
- assertEquals(false, schema.get("additionalProperties"));
-- assertTrue(!((Map, ?>) schema.get("properties")).containsKey("differentField"));
-+ assertTrue(properties(schema).containsKey("resultCode"));
- }
-
-- */
- @Test
-- void generatesSchemaFromRequestDtoWhenNoExplicitSchemaIsConfigured() throws Exception {
-- Method method = SchemaBackedTool.AutomaticSchemaTool.class.getDeclaredMethod("search", AutoGeneratedRequest.class);
-+ void generatesOutputSchemaFromMarkedResponseDto() throws Exception {
-+ Method method = AutomaticOutputSchemaTool.class.getDeclaredMethod("search", AutomaticRequest.class);
-
-- Map schema = resolver.resolve(method.getAnnotation(McpFunction.class), AutoGeneratedRequest.class);
-+ Map schema = resolver.resolveOutput(
-+ method.getAnnotation(McpFunction.class), SimpleResponse.class);
-
-- assertTrue(((Map, ?>) schema.get("properties")).containsKey("differentField"));
-+ assertEquals(List.of("resultCode"), schema.get("required"));
-+ assertEquals(List.of("SUCCESS", "FAILURE"), property(schema, "resultCode").get("enum"));
- }
-
-- static class InlineSchemaTool {
-+ @Test
-+ void doesNotEnableOutputValidationWhenOutputSchemaIsNotDeclared() throws Exception {
-+ Method method = AutomaticSchemaTool.class.getDeclaredMethod("search", AutomaticRequest.class);
-+ Map schema = resolver.resolveOutput(
-+ method.getAnnotation(McpFunction.class), AutomaticRequest.class);
-+ assertTrue(schema.isEmpty());
-+ }
-+ @SuppressWarnings("unchecked")
-+ private Map properties(Map schema) {
-+ return (Map) schema.get("properties");
-+ }
-+
-+ @SuppressWarnings("unchecked")
-+ private Map property(Map schema, String name) {
-+ return (Map) properties(schema).get(name);
-+ }
-
-- @McpFunction(displayName = "inline", name = "sample.inline", description = "inline", inputSchema = "{\\\"type\\\":\\\"object\\\",\\\"properties\\\":{},\\\"additionalProperties\\\":false}")
-- void search(AutoGeneratedRequest request) {
-+ static class InlineSchemaTool {
-+ @McpFunction(
-+ displayName = "inline",
-+ name = "sample.inline",
-+ description = "inline schema",
-+ inputSchema = "{\"type\":\"object\",\"properties\":{\"keyword\":{\"type\":\"string\"}},\"additionalProperties\":false}")
-+ void search(AutomaticRequest request) {
- }
- }
-- static class SchemaBackedTool {
-
- static class AutomaticSchemaTool {
-+ @McpFunction(displayName = "automatic", name = "sample.automatic", description = "automatic schema")
-+ void search(AutomaticRequest request) {
-+ }
-+ }
-
-- @McpFunction(displayName = "automatic", name = "sample.automatic", description = "automatic")
-- void search(AutoGeneratedRequest request) {
-+ static class AutomaticOutputSchemaTool {
-+ @McpFunction(displayName = "automatic-output", name = "sample.automatic-output", description = "automatic output")
-+ SimpleResponse search(AutomaticRequest request) {
-+ return null;
- }
- }
-
-+ @McpOutputSchema
-+ static class SimpleResponse {
-+ @McpValidation(required = true, allowedValues = {"SUCCESS", "FAILURE"})
-+ private String resultCode;
-+
-+ @McpValidation(maxLength = 200)
-+ private String message;
-+ }
-
-+ static class OutputSchemaTool {
- @McpFunction(
-- displayName = "泥?뎄 議고쉶",
-- name = "processing.claim.search",
-- description = "蹂댄뿕湲?泥?뎄瑜?議고쉶?쒕떎.",
-- inputSchemaResource = "classpath:tool-schemas/claim-search-input-schema.json")
-- void search(AutoGeneratedRequest request) {
-+ displayName = "output",
-+ name = "sample.output",
-+ description = "output schema",
-+ outputSchema = "{\"type\":\"object\",\"properties\":{\"resultCode\":{\"type\":\"string\"}},\"required\":[\"resultCode\"],\"additionalProperties\":false}")
-+ void search(AutomaticRequest request) {
- }
- }
-
-- static class AutoGeneratedRequest {
-+ static class AutomaticRequest {
- private String differentField;
- }
- }
-diff --git a/dap-tool-core/src/test/resources/tool-schemas/claim-search-input-schema.json b/dap-tool-core/src/test/resources/tool-schemas/claim-search-input-schema.json
-deleted file mode 100644
-index e595b42..0000000
---- a/dap-tool-core/src/test/resources/tool-schemas/claim-search-input-schema.json
-+++ /dev/null
-@@ -1,20 +0,0 @@
--{
-- "$schema": "https://json-schema.org/draft/2020-12/schema",
-- "type": "object",
-- "properties": {
-- "claimNo": {
-- "type": "string",
-- "pattern": "^CLM[0-9]{13}$"
-- },
-- "size": {
-- "type": "integer",R
-- "minimum": 1,
-- "maximum": 50,
-- "default": 20
-- }
-- },
-- "additionalProperties": false,
-- "anyOf": [
-- { "required": ["claimNo"] }
-- ]
--}
-diff --git a/dap-tool-oth/src/main/java/io/shinhanlife/dap/mcc/biz/cmm/dto/ClaimSearchResponse.java b/dap-tool-oth/src/main/java/io/shinhanlife/dap/mcc/biz/cmm/dto/ClaimSearchResponse.java
-new file mode 100644
-index 0000000..abd2d2d
---- /dev/null
-+++ b/dap-tool-oth/src/main/java/io/shinhanlife/dap/mcc/biz/cmm/dto/ClaimSearchResponse.java
-@@ -0,0 +1,88 @@
-+package io.shinhanlife.dap.mcc.biz.cmm.dto;
-+
-+import io.shinhanlife.dap.lib.annotation.McpOutputSchema;
-+import io.shinhanlife.dap.lib.annotation.McpParameter;
-+import io.shinhanlife.dap.lib.annotation.McpValidation;
-+import java.util.List;
-+import lombok.AllArgsConstructor;
-+import lombok.Builder;
-+import lombok.Getter;
-+import lombok.NoArgsConstructor;
-+import lombok.Setter;
-+
-+/**
-+ * Claim search response sample.
-+ * Complex response rules are defined by outputSchemaResource; annotations document
-+ * the same simple field constraints for automatic schema generation examples.
-+ */
-+@Getter
-+@Setter
-+@Builder
-+@NoArgsConstructor
-+@AllArgsConstructor
-+@McpOutputSchema
-+public class ClaimSearchResponse {
-+
-+ @McpParameter(description = "Execution result code.")
-+ @McpValidation(required = true, allowedValues = {"SUCCESS", "FAILURE"})
-+ private String resultCode;
-+
-+ @McpParameter(description = "User-readable label for resultCode.")
-+ @McpValidation(required = true, maxLength = 100)
-+ private String resultLabel;
-+
-+ @McpParameter(description = "Current claim processing status code.")
-+ @McpValidation(required = true, allowedValues = {
-+ "RECEIVED", "REVIEWING", "ADDITIONAL_DOC_REQUIRED",
-+ "APPROVED", "PAID", "REJECTED", "WITHDRAWN"
-+ })
-+ private String status;
-+
-+ @McpParameter(description = "User-readable label for status.")
-+ @McpValidation(required = true, maxLength = 100)
-+ private String statusLabel;
-+
-+ @McpParameter(description = "Approved amount. Null before review; do not interpret null as zero.")
-+ @McpValidation(minimum = 0, nullable = true)
-+ private Long approvedAmount;
-+
-+ @McpParameter(description = "Present only when status is REJECTED; otherwise null.")
-+ @McpValidation(maxLength = 200, nullable = true)
-+ private String rejectionReason;
-+
-+ @McpParameter(description = "Claim summaries, ordered by received date descending.")
-+ @McpValidation(required = true)
-+ private List items;
-+
-+ @McpParameter(description = "True when additional results exist beyond this response.")
-+ @McpValidation(required = true)
-+ private Boolean hasMore;
-+
-+ @McpParameter(description = "Total number of matched claims.")
-+ @McpValidation(required = true, minimum = 0)
-+ private Integer totalCount;
-+
-+ @Getter
-+ @Setter
-+ @Builder
-+ @NoArgsConstructor
-+ @AllArgsConstructor
-+ public static class ClaimSummary {
-+
-+ @McpParameter(description = "Claim processing status code.")
-+ @McpValidation(required = true)
-+ private String status;
-+
-+ @McpParameter(description = "User-readable label for status.")
-+ @McpValidation(required = true)
-+ private String statusLabel;
-+
-+ @McpParameter(description = "Received date in YYYY-MM-DD format.")
-+ @McpValidation(required = true, format = "date")
-+ private String receivedDate;
-+
-+ @McpParameter(description = "Approved amount. Null before review; do not interpret null as zero.")
-+ @McpValidation(minimum = 0, nullable = true)
-+ private Long approvedAmount;
-+ }
-+}
-\ No newline at end of file
-diff --git a/dap-tool-oth/src/main/java/io/shinhanlife/dap/mcc/biz/cmm/usecase/ClaimSearchSchemaSampleUseCase.java b/dap-tool-oth/src/main/java/io/shinhanlife/dap/mcc/biz/cmm/usecase/ClaimSearchSchemaSampleUseCase.java
-index 16d1aa0..9a55c1a 100644
---- a/dap-tool-oth/src/main/java/io/shinhanlife/dap/mcc/biz/cmm/usecase/ClaimSearchSchemaSampleUseCase.java
-+++ b/dap-tool-oth/src/main/java/io/shinhanlife/dap/mcc/biz/cmm/usecase/ClaimSearchSchemaSampleUseCase.java
-@@ -3,6 +3,7 @@ package io.shinhanlife.dap.mcc.biz.cmm.usecase;
- import io.shinhanlife.dap.lib.annotation.McpFunction;
- import io.shinhanlife.dap.lib.annotation.McpTool;
- import io.shinhanlife.dap.mcc.biz.cmm.dto.ClaimSearchRequest;
-+import io.shinhanlife.dap.mcc.biz.cmm.dto.ClaimSearchResponse;
-
- @McpTool(
- routingType = "DIRECT",
-@@ -12,13 +13,14 @@ public interface ClaimSearchSchemaSampleUseCase {
-
- @McpFunction(
- register = false,
-- displayName = "泥?뎄 議고쉶 JSON Schema ?섑뵆",
-+ displayName = "Claim search JSON Schema sample",
- name = "sample.claim.search.resource",
-- description = "inputSchemaResource瑜??ъ슜?섎뒗 泥?뎄 議고쉶 Tool ?섑뵆?낅땲??",
-- prompt = "泥?뎄踰덊샇 ?먮뒗 怨꾩빟踰덊샇濡?蹂댄뿕湲?泥?뎄瑜?議고쉶?댁쨾.",
-- inputSchemaResource = "classpath:tool-schemas/claim-search-resource-input-schema.json",
-+ description = "Claim search Tool sample using input and output JSON Schema resources.",
-+ prompt = "Search an insurance claim by claim number or contract number.",
-+ inputSchemaResource = "classpath:tool-schemas/cmm/claim-search-resource-input-schema.json",
-+ outputSchemaResource = "classpath:tool-schemas/cmm/claim-search-resource-output-schema.json",
- readOnlyHint = true,
- idempotentHint = true
- )
-- Object search(ClaimSearchRequest request);
--}
-+ ClaimSearchResponse search(ClaimSearchRequest request);
-+}
-\ No newline at end of file
-diff --git a/dap-tool-oth/src/main/java/io/shinhanlife/dap/mcc/biz/cmm/usecase/impl/ClaimSearchSchemaSampleUseCaseImpl.java b/dap-tool-oth/src/main/java/io/shinhanlife/dap/mcc/biz/cmm/usecase/impl/ClaimSearchSchemaSampleUseCaseImpl.java
-index e6cd98b..1a817f5 100644
---- a/dap-tool-oth/src/main/java/io/shinhanlife/dap/mcc/biz/cmm/usecase/impl/ClaimSearchSchemaSampleUseCaseImpl.java
-+++ b/dap-tool-oth/src/main/java/io/shinhanlife/dap/mcc/biz/cmm/usecase/impl/ClaimSearchSchemaSampleUseCaseImpl.java
-@@ -1,22 +1,36 @@
- package io.shinhanlife.dap.mcc.biz.cmm.usecase.impl;
-
- import io.shinhanlife.dap.mcc.biz.cmm.dto.ClaimSearchRequest;
-+import io.shinhanlife.dap.mcc.biz.cmm.dto.ClaimSearchResponse;
- import io.shinhanlife.dap.mcc.biz.cmm.usecase.ClaimSearchSchemaSampleUseCase;
--import java.util.Map;
-+import java.util.List;
- import org.springframework.stereotype.Service;
-
- /**
-- * inputSchemaResource ?곸슜 諛⑹떇??蹂댁뿬二쇰뒗 鍮꾨끂異??섑뵆 Tool?대떎.
-- * ?ㅼ젣 MCI/EIMS ?곕룞? 異붽??섏? ?딅뒗??
-+ * Non-exposed sample Tool. It does not call MCI or EIMS.
- */
- @Service
- public class ClaimSearchSchemaSampleUseCaseImpl implements ClaimSearchSchemaSampleUseCase {
-
- @Override
-- public Object search(ClaimSearchRequest request) {
-- return Map.of(
-- "message", "inputSchemaResource JSON Schema sample",
-- "request", request == null ? Map.of() : request
-- );
-+ public ClaimSearchResponse search(ClaimSearchRequest request) {
-+ ClaimSearchResponse.ClaimSummary item = ClaimSearchResponse.ClaimSummary.builder()
-+ .status("REVIEWING")
-+ .statusLabel("Under review")
-+ .receivedDate("2026-08-04")
-+ .approvedAmount(null)
-+ .build();
-+
-+ return ClaimSearchResponse.builder()
-+ .resultCode("SUCCESS")
-+ .resultLabel("Success")
-+ .status("REVIEWING")
-+ .statusLabel("Under review")
-+ .approvedAmount(null)
-+ .rejectionReason(null)
-+ .items(List.of(item))
-+ .hasMore(false)
-+ .totalCount(1)
-+ .build();
- }
--}
-+}
-\ No newline at end of file
-diff --git a/dap-tool-oth/src/main/resources/tool-schemas/claim-search-resource-input-schema.json b/dap-tool-oth/src/main/resources/tool-schemas/cmm/claim-search-resource-input-schema.json
-similarity index 100%
-rename from dap-tool-oth/src/main/resources/tool-schemas/claim-search-resource-input-schema.json
-rename to dap-tool-oth/src/main/resources/tool-schemas/cmm/claim-search-resource-input-schema.json
-diff --git a/dap-tool-oth/src/main/resources/tool-schemas/cmm/claim-search-resource-output-schema.json b/dap-tool-oth/src/main/resources/tool-schemas/cmm/claim-search-resource-output-schema.json
-new file mode 100644
-index 0000000..f94c661
---- /dev/null
-+++ b/dap-tool-oth/src/main/resources/tool-schemas/cmm/claim-search-resource-output-schema.json
-@@ -0,0 +1,81 @@
-+{
-+ "$schema": "https://json-schema.org/draft/2020-12/schema",
-+ "type": "object",
-+ "description": "Claim search response. This schema intentionally excludes employee identifiers, customer names, contact details, account information, and other PII.",
-+ "properties": {
-+ "resultCode": {
-+ "type": "string",
-+ "enum": ["SUCCESS", "FAILURE"],
-+ "description": "Machine-readable execution result code."
-+ },
-+ "resultLabel": {
-+ "type": "string",
-+ "description": "User-readable label for resultCode."
-+ },
-+ "status": {
-+ "type": "string",
-+ "enum": ["RECEIVED", "REVIEWING", "ADDITIONAL_DOC_REQUIRED", "APPROVED", "PAID", "REJECTED", "WITHDRAWN"],
-+ "description": "Current claim processing status code."
-+ },
-+ "statusLabel": {
-+ "type": "string",
-+ "description": "User-readable label for status."
-+ },
-+ "approvedAmount": {
-+ "anyOf": [
-+ { "type": "number", "minimum": 0 },
-+ { "type": "null" }
-+ ],
-+ "description": "Approved amount. It is null before review and must not be interpreted as zero."
-+ },
-+ "rejectionReason": {
-+ "type": ["string", "null"],
-+ "maxLength": 200,
-+ "description": "Has a value only when status is REJECTED. It is null for every other status."
-+ },
-+ "items": {
-+ "type": "array",
-+ "description": "Claim summaries ordered by receivedDate descending. No personally identifiable information is included.",
-+ "items": {
-+ "type": "object",
-+ "properties": {
-+ "status": { "type": "string", "description": "Claim status code." },
-+ "statusLabel": { "type": "string", "description": "User-readable label for status." },
-+ "receivedDate": { "type": "string", "format": "date", "description": "Claim received date." },
-+ "approvedAmount": {
-+ "anyOf": [
-+ { "type": "number", "minimum": 0 },
-+ { "type": "null" }
-+ ],
-+ "description": "Null before review; do not interpret as zero."
-+ }
-+ },
-+ "required": ["status", "statusLabel", "receivedDate"],
-+ "additionalProperties": false
-+ }
-+ },
-+ "hasMore": {
-+ "type": "boolean",
-+ "description": "True when additional results exist beyond this response."
-+ },
-+ "totalCount": {
-+ "type": "integer",
-+ "minimum": 0,
-+ "description": "Total number of matched claims."
-+ }
-+ },
-+ "required": ["resultCode", "resultLabel", "status", "statusLabel", "items", "hasMore", "totalCount"],
-+ "allOf": [
-+ {
-+ "if": {
-+ "properties": { "status": { "const": "REJECTED" } },
-+ "required": ["status"]
-+ },
-+ "then": {
-+ "properties": { "rejectionReason": { "type": "string", "minLength": 1 } },
-+ "required": ["rejectionReason"]
-+ }
-+ }
-+ ],
-+ "additionalProperties": false
-+}
-\ No newline at end of file
-diff --git a/dap-tool-oth/src/test/java/io/shinhanlife/dap/mcc/biz/cmm/dto/ClaimSearchRequestSchemaTest.java b/dap-tool-oth/src/test/java/io/shinhanlife/dap/mcc/biz/cmm/dto/ClaimSearchRequestSchemaTest.java
-index b52e10c..cead062 100644
---- a/dap-tool-oth/src/test/java/io/shinhanlife/dap/mcc/biz/cmm/dto/ClaimSearchRequestSchemaTest.java
-+++ b/dap-tool-oth/src/test/java/io/shinhanlife/dap/mcc/biz/cmm/dto/ClaimSearchRequestSchemaTest.java
-@@ -3,7 +3,13 @@ package io.shinhanlife.dap.mcc.biz.cmm.dto;
- import static org.junit.jupiter.api.Assertions.assertEquals;
- import static org.junit.jupiter.api.Assertions.assertTrue;
-
-+import com.fasterxml.jackson.databind.ObjectMapper;
-+import io.shinhanlife.dap.lib.annotation.McpFunction;
- import io.shinhanlife.dap.lib.util.JsonSchemaGenerator;
-+import io.shinhanlife.dap.lib.util.ToolSchemaResolver;
-+import io.shinhanlife.dap.mcc.biz.cmm.usecase.impl.ClaimSearchSchemaSampleUseCaseImpl;
-+import io.shinhanlife.dap.mcc.presentation.ToolArgumentSchemaValidator;import io.shinhanlife.dap.mcc.biz.cmm.usecase.ClaimSearchSchemaSampleUseCase;
-+import java.lang.reflect.Method;
- import java.util.List;
- import java.util.Map;
- import org.junit.jupiter.api.Test;
-@@ -24,8 +30,59 @@ class ClaimSearchRequestSchemaTest {
- Map.of("required", List.of("contractNo"))), schema.get("anyOf"));
- }
-
-+ @Test
-+ void resolvesSchemaFromToolModuleResource() throws Exception {
-+ Method method = ClaimSearchSchemaSampleUseCase.class
-+ .getDeclaredMethod("search", ClaimSearchRequest.class);
-+ McpFunction function = method.getAnnotation(McpFunction.class);
-+
-+ Map schema = new ToolSchemaResolver(new ObjectMapper())
-+ .resolve(function, ClaimSearchRequest.class);
-+
-+ assertEquals("https://json-schema.org/draft/2020-12/schema", schema.get("$schema"));
-+ assertTrue(schema.containsKey("anyOf"));
-+ assertEquals(50, property(schema, "size").get("maximum"));
-+ }
-+
-+ @Test
-+ void resolvesOutputSchemaFromToolModuleResource() throws Exception {
-+ Method method = ClaimSearchSchemaSampleUseCase.class
-+ .getDeclaredMethod("search", ClaimSearchRequest.class);
-+ McpFunction function = method.getAnnotation(McpFunction.class);
-+ Map schema = new ToolSchemaResolver(new ObjectMapper()).resolveOutput(function);
-+ assertEquals("https://json-schema.org/draft/2020-12/schema", schema.get("$schema"));
-+ assertTrue(properties(schema).containsKey("resultCode"));
-+ assertTrue(properties(schema).containsKey("statusLabel"));
-+ assertTrue(properties(schema).containsKey("hasMore"));
-+ assertTrue(schema.containsKey("allOf"));
-+ }
-+
-+ @Test
-+ void sampleResponseConformsToOutputSchema() throws Exception {
-+ Method method = ClaimSearchSchemaSampleUseCase.class
-+ .getDeclaredMethod("search", ClaimSearchRequest.class);
-+ Map schema = new ToolSchemaResolver(new ObjectMapper())
-+ .resolveOutput(method.getAnnotation(McpFunction.class));
-+
-+ ClaimSearchResponse response = new ClaimSearchSchemaSampleUseCaseImpl().search(new ClaimSearchRequest());
-+ ToolArgumentSchemaValidator validator = new ToolArgumentSchemaValidator(new ObjectMapper());
-+
-+ assertTrue(validator.validateValue(schema, response).isEmpty());
-+ }
-+ @Test
-+ void sampleResponseConformsToAutomaticallyGeneratedOutputSchema() throws Exception {
-+ Map schema = JsonSchemaGenerator.generateSchema(ClaimSearchResponse.class);
-+ ClaimSearchResponse response = new ClaimSearchSchemaSampleUseCaseImpl().search(new ClaimSearchRequest());
-+ ToolArgumentSchemaValidator validator = new ToolArgumentSchemaValidator(new ObjectMapper());
-+
-+ assertTrue(validator.validateValue(schema, response).isEmpty());
-+ }
- @SuppressWarnings("unchecked")
- private Map> properties(Map schema) {
- return (Map>) schema.get("properties");
- }
-+
-+ private Map property(Map schema, String name) {
-+ return properties(schema).get(name);
-+ }
- }
diff --git a/replay_pid18004.log b/replay_pid18004.log
deleted file mode 100644
index d83bd2cc..00000000
--- a/replay_pid18004.log
+++ /dev/null
@@ -1,13721 +0,0 @@
-version 2
-JvmtiExport can_access_local_variables 0
-JvmtiExport can_hotswap_or_post_breakpoint 0
-JvmtiExport can_post_on_exceptions 0
-# 476 ciObject found
-instanceKlass com/sun/tools/javac/parser/JavaTokenizer
-ciInstanceKlass java/lang/Cloneable 1 0 7 100 1 100 1 1 1
-# instanceKlass com/sun/tools/javac/file/Locations$SystemModulesLocationHandler$$Lambda+0x000001974aaf7dc8
-instanceKlass com/sun/tools/javac/file/JavacFileManager$DirectoryContainer
-# instanceKlass com/sun/tools/javac/comp/Modules$$Lambda+0x000001974aaf7948
-instanceKlass com/sun/tools/javac/tree/JCTree$1
-instanceKlass @bci java/util/stream/Collectors joining ()Ljava/util/stream/Collector; 19 argL0 ; # java/util/stream/Collectors$$Lambda+0x000001974a9e6938
-instanceKlass @bci java/util/stream/Collectors joining ()Ljava/util/stream/Collector; 14 argL0 ; # java/util/stream/Collectors$$Lambda+0x000001974a9e66f0
-instanceKlass @bci java/util/stream/Collectors joining ()Ljava/util/stream/Collector; 9 argL0 ; # java/util/stream/Collectors$$Lambda+0x000001974a9e64c0
-instanceKlass @bci java/util/stream/Collectors joining ()Ljava/util/stream/Collector; 4 argL0 ; # java/util/stream/Collectors$$Lambda+0x000001974a9e62a0
-instanceKlass @bci com/sun/tools/javac/parser/JavacParser merge (Lcom/sun/tools/javac/util/ListBuffer;Lcom/sun/tools/javac/util/ListBuffer;)Z 55 argL0 ; # com/sun/tools/javac/parser/JavacParser$$Lambda+0x000001974aaf6840
-instanceKlass java/lang/StringLatin1$LinesSpliterator
-instanceKlass com/sun/tools/javac/parser/JavacParser$LambdaClassifier
-instanceKlass @bci java/lang/String stripIndent ()Ljava/lang/String; 73 member ; # java/lang/String$$Lambda+0x000001974a9e5de8
-instanceKlass @cpi java/lang/String 1431 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001974aaf8000
-instanceKlass java/util/AbstractList$RandomAccessSpliterator
-instanceKlass @bci java/util/stream/ReferencePipeline toArray ()[Ljava/lang/Object; 1 argL0 ; # java/util/stream/ReferencePipeline$$Lambda+0x000001974a9e5bc8
-instanceKlass java/util/ImmutableCollections$Access$1
-instanceKlass jdk/internal/access/JavaUtilCollectionAccess
-instanceKlass java/util/ImmutableCollections$Access
-instanceKlass java/lang/StringUTF16$LinesSpliterator
-instanceKlass @bci com/sun/tools/javac/parser/JavacParser arguments ()Lcom/sun/tools/javac/util/List; 80 argL0 ; # com/sun/tools/javac/parser/JavacParser$$Lambda+0x000001974aaf41e0
-instanceKlass @bci com/sun/tools/javac/parser/JavacParser annotationValue ()Lcom/sun/tools/javac/tree/JCTree$JCExpression; 175 argL0 ; # com/sun/tools/javac/parser/JavacParser$$Lambda+0x000001974aaf33d0
-instanceKlass com/sun/tools/javac/util/Position$LineMapImpl
-instanceKlass com/sun/tools/javac/util/Position$LineMap
-instanceKlass com/sun/tools/javac/util/Position
-instanceKlass @bci com/sun/tools/javac/tree/TreeMaker TopLevel (Lcom/sun/tools/javac/util/List;)Lcom/sun/tools/javac/tree/JCTree$JCCompilationUnit; 110 member ; # com/sun/tools/javac/tree/TreeMaker$$Lambda+0x000001974aaf2820
-instanceKlass com/sun/tools/javac/parser/LazyDocCommentTable$Entry
-instanceKlass com/sun/tools/javac/tree/TreeInfo$2
-instanceKlass com/sun/tools/javac/tree/TreeInfo
-instanceKlass com/sun/tools/javac/parser/JavacParser$2
-instanceKlass com/sun/tools/javac/parser/JavadocTokenizer$OffsetMap
-instanceKlass @bci com/sun/tools/javac/parser/JavacParser accept (Lcom/sun/tools/javac/parser/Tokens$TokenKind;)V 2 argL0 ; # com/sun/tools/javac/parser/JavacParser$$Lambda+0x000001974aaf0450
-instanceKlass com/sun/tools/javac/resources/CompilerProperties$Errors
-instanceKlass com/sun/tools/javac/util/IntHashTable
-instanceKlass com/sun/tools/javac/parser/LazyDocCommentTable
-instanceKlass @bci com/sun/tools/javac/parser/JavacParser (Lcom/sun/tools/javac/parser/ParserFactory;Lcom/sun/tools/javac/parser/Lexer;ZZZZ)V 59 argL0 ; # com/sun/tools/javac/parser/JavacParser$$Lambda+0x000001974aaec9f8
-instanceKlass com/sun/tools/javac/parser/JavacParser$AbstractEndPosTable
-instanceKlass com/sun/tools/javac/parser/JavacParser$ErrorRecoveryAction
-instanceKlass com/sun/tools/javac/tree/EndPosTable
-instanceKlass com/sun/tools/javac/parser/JavacParser
-instanceKlass com/sun/tools/javac/parser/Scanner
-instanceKlass com/sun/source/tree/LineMap
-instanceKlass com/sun/tools/javac/file/BaseFileManager$ContentCacheEntry
-instanceKlass com/sun/tools/javac/util/ArrayUtils
-instanceKlass com/sun/tools/javac/util/DiagnosticSource
-instanceKlass com/sun/tools/javac/main/JavaCompiler$InitialFileParser
-instanceKlass com/sun/tools/javac/main/JavaCompiler$InitialFileParserIntf
-instanceKlass com/sun/tools/javac/processing/JavacProcessingEnvironment$DiscoveredProcessors$ProcessorStateIterator
-instanceKlass com/sun/tools/javac/processing/JavacProcessingEnvironment$DiscoveredProcessors
-instanceKlass com/sun/tools/javac/util/Iterators$CompoundIterator
-instanceKlass @bci com/sun/tools/javac/processing/JavacProcessingEnvironment initProcessorIterator (Ljava/lang/Iterable;)V 256 argL0 ; # com/sun/tools/javac/processing/JavacProcessingEnvironment$$Lambda+0x000001974aaeac58
-instanceKlass com/sun/source/util/TaskEvent
-instanceKlass com/sun/tools/javac/file/JavacFileManager$3
-instanceKlass @bci com/sun/tools/javac/file/JavacFileManager asFiles (Ljava/lang/Iterable;)Ljava/lang/Iterable; 7 member ; # com/sun/tools/javac/file/JavacFileManager$$Lambda+0x000001974aaea158
-instanceKlass com/sun/tools/javac/model/JavacTypes
-instanceKlass com/sun/tools/javac/processing/JavacMessager
-instanceKlass com/sun/tools/javac/processing/JavacFiler
-instanceKlass @bci com/sun/tools/javac/main/Arguments validate ()Z 1363 member ; # com/sun/tools/javac/main/Arguments$$Lambda+0x000001974aae93a8
-instanceKlass @bci com/sun/tools/javac/main/Arguments checkOptionAllowed (ZLcom/sun/tools/javac/main/Arguments$ErrorReporter;[Lcom/sun/tools/javac/main/Option;)V 33 member ; # com/sun/tools/javac/main/Arguments$$Lambda+0x000001974aae9170
-instanceKlass @bci com/sun/tools/javac/main/Arguments checkOptionAllowed (ZLcom/sun/tools/javac/main/Arguments$ErrorReporter;[Lcom/sun/tools/javac/main/Option;)V 17 member ; # com/sun/tools/javac/main/Arguments$$Lambda+0x000001974aae8f18
-instanceKlass @bci com/sun/tools/javac/main/Arguments validate ()Z 1273 member ; # com/sun/tools/javac/main/Arguments$$Lambda+0x000001974aae8cf0
-instanceKlass com/sun/tools/javac/util/Pair
-instanceKlass @bci com/sun/tools/javac/code/DeferredCompletionFailureHandler$1 uninstall ()V 9 argL0 ; # com/sun/tools/javac/code/DeferredCompletionFailureHandler$1$$Lambda+0x000001974aae88b0
-instanceKlass @bci com/sun/tools/javac/api/JavacTaskImpl doCall ()Lcom/sun/tools/javac/main/Main$Result; 2 member ; # com/sun/tools/javac/api/JavacTaskImpl$$Lambda+0x000001974aae8688
-instanceKlass com/sun/tools/javac/api/ClientCodeWrapper$WrappedTaskListener
-instanceKlass org/gradle/internal/compiler/java/listeners/constants/ConstantsCollector
-instanceKlass com/sun/tools/javac/platform/PlatformDescription
-instanceKlass com/sun/tools/javac/util/ForwardingDiagnosticFormatter$ForwardingConfiguration
-instanceKlass com/sun/tools/javac/code/Types$DefaultSymbolVisitor
-instanceKlass com/sun/tools/javac/util/ForwardingDiagnosticFormatter
-instanceKlass @bci com/sun/tools/javac/main/JavaCompiler (Lcom/sun/tools/javac/util/Context;)V 400 member ; # com/sun/tools/javac/main/JavaCompiler$$Lambda+0x000001974aae5488
-instanceKlass com/sun/tools/javac/code/ModuleFinder$ModuleNameFromSourceReader
-instanceKlass @bci com/sun/tools/javac/main/JavaCompiler (Lcom/sun/tools/javac/util/Context;)V 387 member ; # com/sun/tools/javac/main/JavaCompiler$$Lambda+0x000001974aae5060
-instanceKlass com/sun/tools/javac/comp/Modules$PackageNameFinder
-instanceKlass com/sun/tools/javac/api/MultiTaskListener
-instanceKlass @bci com/sun/tools/javac/code/ClassFinder (Lcom/sun/tools/javac/util/Context;)V 330 argL0 ; # com/sun/tools/javac/code/ClassFinder$$Lambda+0x000001974aae47e0
-instanceKlass com/sun/tools/javac/main/DelegatingJavaFileManager
-instanceKlass com/sun/tools/javac/jvm/ClassReader$AttributeReader
-instanceKlass com/sun/tools/javac/comp/Analyzer$2
-instanceKlass com/sun/tools/javac/comp/Analyzer$1
-instanceKlass com/sun/tools/javac/comp/Analyzer$StatementAnalyzer
-instanceKlass com/sun/tools/javac/comp/Analyzer$DeferredAnalysisHelper
-instanceKlass com/sun/tools/javac/comp/Analyzer
-instanceKlass @bci com/sun/tools/javac/code/Symtab (Lcom/sun/tools/javac/util/Context;)V 2295 member ; # com/sun/tools/javac/code/Symtab$$Lambda+0x000001974aadc530
-instanceKlass com/sun/tools/javac/code/Symtab$2
-instanceKlass com/sun/tools/javac/code/Symtab$1
-instanceKlass @bci com/sun/tools/javac/code/Symtab doEnterClass (Lcom/sun/tools/javac/code/Symbol$ModuleSymbol;Lcom/sun/tools/javac/code/Symbol$ClassSymbol;)V 8 argL0 ; # com/sun/tools/javac/code/Symtab$$Lambda+0x000001974aadb838
-instanceKlass @bci com/sun/tools/javac/code/Symtab getClass (Lcom/sun/tools/javac/code/Symbol$ModuleSymbol;Lcom/sun/tools/javac/util/Name;)Lcom/sun/tools/javac/code/Symbol$ClassSymbol; 7 member ; # com/sun/tools/javac/code/Symtab$$Lambda+0x000001974aadb610
-instanceKlass @bci com/sun/tools/javac/code/Symtab enterPackage (Lcom/sun/tools/javac/code/Symbol$ModuleSymbol;Lcom/sun/tools/javac/util/Name;)Lcom/sun/tools/javac/code/Symbol$PackageSymbol; 29 member ; # com/sun/tools/javac/code/Symtab$$Lambda+0x000001974aadb3e8
-instanceKlass com/sun/tools/javac/jvm/JNIWriter
-instanceKlass com/sun/tools/javac/jvm/Code
-instanceKlass com/sun/tools/javac/jvm/PoolWriter$WriteablePoolHelper
-instanceKlass com/sun/tools/javac/code/Types$SignatureGenerator
-instanceKlass com/sun/tools/javac/jvm/PoolWriter
-instanceKlass com/sun/tools/javac/code/Preview$1
-instanceKlass com/sun/tools/javac/comp/ConstFold
-instanceKlass @bci com/sun/tools/javac/comp/Operators initBinaryOperators ()V 1049 argL0 ; # com/sun/tools/javac/comp/Operators$$Lambda+0x000001974aad7bf8
-instanceKlass @bci com/sun/tools/javac/comp/Operators initBinaryOperators ()V 951 argL0 ; # com/sun/tools/javac/comp/Operators$$Lambda+0x000001974aad79a8
-instanceKlass @bci com/sun/tools/javac/comp/Operators initBinaryOperators ()V 855 argL0 ; # com/sun/tools/javac/comp/Operators$$Lambda+0x000001974aad7758
-instanceKlass @bci com/sun/tools/javac/comp/Operators$BinaryNumericOperator (Lcom/sun/tools/javac/comp/Operators;Lcom/sun/tools/javac/tree/JCTree$Tag;)V 3 argL0 ; # com/sun/tools/javac/comp/Operators$BinaryNumericOperator$$Lambda+0x000001974aad7290
-instanceKlass @bci com/sun/tools/javac/comp/Operators$BinaryOperatorHelper addBinaryOperator (Lcom/sun/tools/javac/comp/Operators$OperatorType;Lcom/sun/tools/javac/comp/Operators$OperatorType;Lcom/sun/tools/javac/comp/Operators$OperatorType;[I)Lcom/sun/tools/javac/comp/Operators$BinaryOperatorHelper; 11 member ; # com/sun/tools/javac/comp/Operators$BinaryOperatorHelper$$Lambda+0x000001974aad6df0
-instanceKlass @bci com/sun/tools/javac/comp/Operators initUnaryOperators ()V 180 argL0 ; # com/sun/tools/javac/comp/Operators$$Lambda+0x000001974aad5fc8
-instanceKlass @bci com/sun/tools/javac/comp/Operators$UnaryOperatorHelper addUnaryOperator (Lcom/sun/tools/javac/comp/Operators$OperatorType;Lcom/sun/tools/javac/comp/Operators$OperatorType;[I)Lcom/sun/tools/javac/comp/Operators$UnaryOperatorHelper; 9 member ; # com/sun/tools/javac/comp/Operators$UnaryOperatorHelper$$Lambda+0x000001974aad5da0
-instanceKlass @bci com/sun/tools/javac/comp/Operators$OperatorType ()V 192 argL0 ; # com/sun/tools/javac/comp/Operators$OperatorType$$Lambda+0x000001974aad5968
-instanceKlass @bci com/sun/tools/javac/comp/Operators$OperatorType ()V 173 argL0 ; # com/sun/tools/javac/comp/Operators$OperatorType$$Lambda+0x000001974aad5728
-instanceKlass @bci com/sun/tools/javac/comp/Operators$OperatorType ()V 154 argL0 ; # com/sun/tools/javac/comp/Operators$OperatorType$$Lambda+0x000001974aad54e8
-instanceKlass @bci com/sun/tools/javac/comp/Operators$OperatorType ()V 135 argL0 ; # com/sun/tools/javac/comp/Operators$OperatorType$$Lambda+0x000001974aad52a8
-instanceKlass @bci com/sun/tools/javac/comp/Operators$OperatorType ()V 116 argL0 ; # com/sun/tools/javac/comp/Operators$OperatorType$$Lambda+0x000001974aad5068
-instanceKlass @bci com/sun/tools/javac/comp/Operators$OperatorType ()V 97 argL0 ; # com/sun/tools/javac/comp/Operators$OperatorType$$Lambda+0x000001974aad4e28
-instanceKlass @bci com/sun/tools/javac/comp/Operators$OperatorType ()V 79 argL0 ; # com/sun/tools/javac/comp/Operators$OperatorType$$Lambda+0x000001974aad4be8
-instanceKlass @bci com/sun/tools/javac/comp/Operators$OperatorType ()V 61 argL0 ; # com/sun/tools/javac/comp/Operators$OperatorType$$Lambda+0x000001974aad49a8
-instanceKlass @bci com/sun/tools/javac/comp/Operators$OperatorType ()V 43 argL0 ; # com/sun/tools/javac/comp/Operators$OperatorType$$Lambda+0x000001974aad4768
-instanceKlass @bci com/sun/tools/javac/comp/Operators$OperatorType ()V 25 argL0 ; # com/sun/tools/javac/comp/Operators$OperatorType$$Lambda+0x000001974aad4528
-instanceKlass @bci com/sun/tools/javac/comp/Operators$OperatorType ()V 7 argL0 ; # com/sun/tools/javac/comp/Operators$OperatorType$$Lambda+0x000001974aad42e8
-instanceKlass @bci com/sun/tools/javac/comp/Operators$UnaryNumericOperator (Lcom/sun/tools/javac/comp/Operators;Lcom/sun/tools/javac/tree/JCTree$Tag;)V 3 argL0 ; # com/sun/tools/javac/comp/Operators$UnaryNumericOperator$$Lambda+0x000001974aad3e50
-instanceKlass @bci com/sun/tools/javac/code/Symbol$MethodSymbol ()V 0 argL0 ; # com/sun/tools/javac/code/Symbol$MethodSymbol$$Lambda+0x000001974aad3598
-instanceKlass com/sun/tools/javac/comp/Operators$OperatorHelper
-instanceKlass com/sun/tools/javac/comp/Operators
-instanceKlass com/sun/tools/javac/comp/Lower$EnumMapping
-instanceKlass com/sun/tools/javac/jvm/PoolConstant$Dynamic
-instanceKlass com/sun/tools/javac/jvm/StringConcat
-instanceKlass com/sun/tools/javac/jvm/Gen$GenFinalizer
-instanceKlass com/sun/tools/javac/jvm/Items$Item
-instanceKlass com/sun/tools/javac/jvm/ClassWriter$AttributeWriter
-instanceKlass com/sun/tools/javac/jvm/ClassFile
-instanceKlass com/sun/tools/javac/code/ModuleFinder$ModuleLocationIterator
-instanceKlass com/sun/tools/javac/code/ModuleFinder
-instanceKlass com/sun/tools/javac/comp/Flow$PatternDescription
-instanceKlass com/sun/tools/javac/comp/Flow
-instanceKlass com/sun/tools/javac/comp/Infer$GraphStrategy
-instanceKlass com/sun/tools/javac/comp/InferenceContext
-instanceKlass com/sun/tools/javac/comp/Infer$IncorporationEngine
-instanceKlass com/sun/tools/javac/code/Type$UndetVar$UndetVarListener
-instanceKlass javax/lang/model/element/TypeParameterElement
-instanceKlass com/sun/tools/javac/comp/Infer
-instanceKlass com/sun/tools/javac/parser/UnicodeReader
-instanceKlass com/sun/tools/javac/parser/ScannerFactory
-instanceKlass com/sun/tools/javac/util/MandatoryWarningHandler
-instanceKlass com/sun/tools/javac/code/Preview
-instanceKlass com/sun/tools/javac/parser/Tokens$Token
-instanceKlass com/sun/tools/javac/parser/Tokens
-instanceKlass com/sun/tools/javac/tree/DocTreeMaker$SentenceBreaker
-instanceKlass com/sun/tools/javac/parser/ReferenceParser
-instanceKlass com/sun/tools/javac/tree/DocCommentTable
-instanceKlass com/sun/source/doctree/DocTreeVisitor
-instanceKlass com/sun/source/util/DocSourcePositions
-instanceKlass com/sun/source/tree/Scope
-instanceKlass com/sun/source/util/SourcePositions
-instanceKlass com/sun/source/doctree/EscapeTree
-instanceKlass com/sun/source/doctree/ErroneousTree
-instanceKlass com/sun/source/doctree/DocTypeTree
-instanceKlass com/sun/source/doctree/EndElementTree
-instanceKlass com/sun/source/doctree/DocRootTree
-instanceKlass com/sun/source/doctree/EntityTree
-instanceKlass com/sun/source/doctree/AuthorTree
-instanceKlass com/sun/source/doctree/IndexTree
-instanceKlass com/sun/source/doctree/AttributeTree
-instanceKlass com/sun/source/doctree/HiddenTree
-instanceKlass com/sun/source/doctree/IdentifierTree
-instanceKlass com/sun/source/doctree/CommentTree
-instanceKlass com/sun/source/doctree/DeprecatedTree
-instanceKlass com/sun/source/doctree/SinceTree
-instanceKlass com/sun/source/doctree/UsesTree
-instanceKlass com/sun/source/doctree/InheritDocTree
-instanceKlass com/sun/source/doctree/LinkTree
-instanceKlass com/sun/source/doctree/LiteralTree
-instanceKlass com/sun/source/doctree/ReferenceTree
-instanceKlass com/sun/source/doctree/ProvidesTree
-instanceKlass com/sun/source/doctree/ParamTree
-instanceKlass com/sun/source/doctree/SerialTree
-instanceKlass com/sun/source/doctree/SnippetTree
-instanceKlass com/sun/source/doctree/SerialFieldTree
-instanceKlass com/sun/source/doctree/ReturnTree
-instanceKlass com/sun/source/doctree/SummaryTree
-instanceKlass com/sun/source/doctree/TextTree
-instanceKlass com/sun/source/doctree/ThrowsTree
-instanceKlass com/sun/tools/javac/parser/Tokens$Comment
-instanceKlass com/sun/source/doctree/DocCommentTree
-instanceKlass com/sun/source/doctree/ValueTree
-instanceKlass com/sun/source/doctree/SpecTree
-instanceKlass com/sun/source/doctree/SerialDataTree
-instanceKlass com/sun/source/doctree/VersionTree
-instanceKlass com/sun/source/doctree/SeeTree
-instanceKlass com/sun/source/doctree/StartElementTree
-instanceKlass com/sun/source/doctree/SystemPropertyTree
-instanceKlass com/sun/source/doctree/UnknownInlineTagTree
-instanceKlass com/sun/source/doctree/InlineTagTree
-instanceKlass com/sun/source/doctree/UnknownBlockTagTree
-instanceKlass com/sun/source/doctree/BlockTagTree
-instanceKlass com/sun/source/doctree/DocTree
-instanceKlass com/sun/tools/javac/tree/DocTreeMaker
-instanceKlass com/sun/source/util/DocTreeFactory
-instanceKlass com/sun/tools/javac/parser/Lexer
-instanceKlass com/sun/tools/javac/parser/ParserFactory
-instanceKlass com/sun/tools/javac/util/Dependencies
-instanceKlass com/sun/tools/javac/comp/TypeEnvs
-instanceKlass com/sun/tools/javac/code/Lint$AugmentVisitor
-instanceKlass com/sun/tools/javac/code/TypeAnnotations
-instanceKlass com/sun/tools/javac/code/DeferredLintHandler$1
-instanceKlass com/sun/tools/javac/code/DeferredLintHandler
-instanceKlass @bci com/sun/tools/javac/comp/TypeEnter$ImportsPhase (Lcom/sun/tools/javac/comp/TypeEnter;)V 23 member ; # com/sun/tools/javac/comp/TypeEnter$ImportsPhase$$Lambda+0x000001974aabd5f8
-instanceKlass com/sun/tools/javac/comp/TypeEnter$DefaultConstructorHelper
-instanceKlass com/sun/tools/javac/util/GraphUtils$DependencyKind
-instanceKlass com/sun/tools/javac/comp/TypeEnter$Phase
-instanceKlass com/sun/tools/javac/comp/TypeEnter
-instanceKlass @bci com/sun/tools/javac/code/Types (Lcom/sun/tools/javac/util/Context;)V 360 argL0 ; # com/sun/tools/javac/code/Types$$Lambda+0x000001974aabb178
-instanceKlass com/sun/tools/javac/code/Types$CandidatesCache
-instanceKlass com/sun/tools/javac/code/Types$ImplementationCache
-instanceKlass com/sun/tools/javac/code/Types$3
-instanceKlass com/sun/tools/javac/code/Types$DescriptorCache
-instanceKlass com/sun/tools/javac/code/Types
-instanceKlass com/sun/tools/javac/tree/TreeMaker$AnnotationBuilder
-instanceKlass com/sun/tools/javac/tree/TreeMaker
-instanceKlass com/sun/tools/javac/tree/JCTree$Factory
-instanceKlass com/sun/tools/javac/comp/DeferredAttr$4
-instanceKlass com/sun/tools/javac/tree/TreeCopier
-instanceKlass com/sun/tools/javac/comp/DeferredAttr$DeferredAttrContext
-instanceKlass com/sun/tools/javac/comp/DeferredAttr$DeferredStuckPolicy
-instanceKlass com/sun/tools/javac/comp/AttrRecover
-instanceKlass com/sun/tools/javac/comp/Resolve$ReferenceLookupResult
-instanceKlass com/sun/tools/javac/api/Formattable$LocalizedString
-instanceKlass com/sun/tools/javac/comp/Resolve$10
-instanceKlass com/sun/tools/javac/comp/Resolve$9
-instanceKlass com/sun/tools/javac/comp/Resolve$8
-instanceKlass @bci com/sun/tools/javac/comp/Resolve (Lcom/sun/tools/javac/util/Context;)V 96 member ; # com/sun/tools/javac/comp/Resolve$$Lambda+0x000001974aaab8b8
-instanceKlass @bci com/sun/tools/javac/comp/Resolve (Lcom/sun/tools/javac/util/Context;)V 86 member ; # com/sun/tools/javac/comp/Resolve$$Lambda+0x000001974aaab690
-instanceKlass com/sun/tools/javac/comp/Resolve$7
-instanceKlass @bci com/sun/tools/javac/comp/Resolve (Lcom/sun/tools/javac/util/Context;)V 64 argL0 ; # com/sun/tools/javac/comp/Resolve$$Lambda+0x000001974aaab240
-instanceKlass com/sun/tools/javac/comp/Env
-instanceKlass com/sun/tools/javac/comp/Resolve$AbstractMethodCheck
-instanceKlass com/sun/tools/javac/comp/Resolve$2
-instanceKlass com/sun/tools/javac/comp/Resolve$LookupHelper
-instanceKlass com/sun/tools/javac/code/Scope$ScopeListener
-instanceKlass com/sun/tools/javac/comp/Resolve$ReferenceChooser
-instanceKlass com/sun/tools/javac/comp/Resolve$LogResolveHelper
-instanceKlass com/sun/tools/javac/comp/Resolve$RecoveryLoadClass
-instanceKlass com/sun/tools/javac/comp/Resolve
-instanceKlass @bci com/sun/tools/javac/comp/Check (Lcom/sun/tools/javac/util/Context;)V 62 argL0 ; # com/sun/tools/javac/comp/Check$$Lambda+0x000001974aaa2b00
-instanceKlass com/sun/tools/javac/comp/Check$1
-instanceKlass com/sun/tools/javac/util/Warner
-instanceKlass com/sun/tools/javac/comp/Check
-instanceKlass com/sun/tools/javac/comp/Modules$1
-instanceKlass @bci com/sun/tools/javac/comp/Modules ()V 0 argL0 ; # com/sun/tools/javac/comp/Modules$$Lambda+0x000001974aaa0458
-instanceKlass com/sun/tools/javac/resources/CompilerProperties$Fragments
-instanceKlass com/sun/tools/javac/util/Iterators
-instanceKlass com/sun/tools/javac/code/Directive
-instanceKlass javax/lang/model/element/ModuleElement$RequiresDirective
-instanceKlass javax/lang/model/element/ModuleElement$Directive
-instanceKlass @bci com/sun/tools/javac/code/Symtab enterModule (Lcom/sun/tools/javac/util/Name;)Lcom/sun/tools/javac/code/Symbol$ModuleSymbol; 37 member ; # com/sun/tools/javac/code/Symtab$$Lambda+0x000001974aa9db18
-instanceKlass @bci com/sun/tools/javac/code/Symtab addRootPackageFor (Lcom/sun/tools/javac/code/Symbol$ModuleSymbol;)V 36 member ; # com/sun/tools/javac/code/Symtab$$Lambda+0x000001974aa9d8e0
-instanceKlass @bci com/sun/tools/javac/code/Symtab doEnterPackage (Lcom/sun/tools/javac/code/Symbol$ModuleSymbol;Lcom/sun/tools/javac/code/Symbol$PackageSymbol;)V 8 argL0 ; # com/sun/tools/javac/code/Symtab$$Lambda+0x000001974aa9d6a0
-instanceKlass com/sun/tools/javac/code/Scope$ScopeListenerList
-instanceKlass com/sun/tools/javac/code/Scope$Entry
-instanceKlass com/sun/tools/javac/comp/Annotate$AnnotationTypeMetadata
-instanceKlass com/sun/tools/javac/api/Formattable
-instanceKlass com/sun/tools/javac/code/Kinds$KindSelector
-instanceKlass com/sun/tools/javac/code/MissingInfoHandler
-instanceKlass com/sun/tools/javac/code/TypeMetadata
-instanceKlass javax/lang/model/type/NullType
-instanceKlass com/sun/tools/javac/code/Symtab
-instanceKlass com/sun/tools/javac/comp/MatchBindingsComputer$MatchBindings
-instanceKlass com/sun/source/util/SimpleTreeVisitor
-instanceKlass com/sun/tools/javac/comp/Check$NestedCheckContext
-instanceKlass javax/lang/model/type/IntersectionType
-instanceKlass javax/lang/model/type/UnionType
-instanceKlass com/sun/tools/javac/comp/Resolve$MethodCheck
-instanceKlass com/sun/tools/javac/comp/Attr$ResultInfo
-instanceKlass com/sun/tools/javac/code/Types$DefaultTypeVisitor
-instanceKlass javax/lang/model/element/RecordComponentElement
-instanceKlass com/sun/source/tree/IntersectionTypeTree
-instanceKlass com/sun/source/tree/ParameterizedTypeTree
-instanceKlass com/sun/source/tree/LambdaExpressionTree
-instanceKlass com/sun/source/tree/ConditionalExpressionTree
-instanceKlass com/sun/source/tree/DeconstructionPatternTree
-instanceKlass com/sun/source/tree/PrimitiveTypeTree
-instanceKlass com/sun/source/tree/DoWhileLoopTree
-instanceKlass com/sun/source/tree/UnionTypeTree
-instanceKlass com/sun/source/tree/MemberReferenceTree
-instanceKlass com/sun/source/tree/InstanceOfTree
-instanceKlass com/sun/source/tree/VariableTree
-instanceKlass com/sun/source/tree/ArrayAccessTree
-instanceKlass com/sun/source/tree/EnhancedForLoopTree
-instanceKlass com/sun/source/tree/ParenthesizedTree
-instanceKlass com/sun/source/tree/CompoundAssignmentTree
-instanceKlass com/sun/source/tree/ArrayTypeTree
-instanceKlass com/sun/source/tree/LabeledStatementTree
-instanceKlass com/sun/source/tree/AssignmentTree
-instanceKlass com/sun/source/tree/MethodTree
-instanceKlass com/sun/source/tree/ModuleTree
-instanceKlass com/sun/source/tree/PackageTree
-instanceKlass com/sun/source/tree/ExpressionStatementTree
-instanceKlass com/sun/source/tree/MethodInvocationTree
-instanceKlass com/sun/source/tree/EmptyStatementTree
-instanceKlass com/sun/source/tree/ThrowTree
-instanceKlass com/sun/source/tree/CatchTree
-instanceKlass com/sun/source/tree/IfTree
-instanceKlass com/sun/source/tree/YieldTree
-instanceKlass com/sun/source/tree/BreakTree
-instanceKlass com/sun/source/tree/BlockTree
-instanceKlass com/sun/source/tree/UnaryTree
-instanceKlass com/sun/source/tree/TryTree
-instanceKlass com/sun/source/tree/CaseTree
-instanceKlass com/sun/source/tree/UsesTree
-instanceKlass com/sun/source/tree/OpensTree
-instanceKlass com/sun/source/tree/ConstantCaseLabelTree
-instanceKlass com/sun/source/tree/StringTemplateTree
-instanceKlass com/sun/source/tree/SwitchExpressionTree
-instanceKlass com/sun/source/tree/DefaultCaseLabelTree
-instanceKlass com/sun/source/tree/BindingPatternTree
-instanceKlass com/sun/source/tree/PatternCaseLabelTree
-instanceKlass com/sun/source/tree/CaseLabelTree
-instanceKlass com/sun/source/tree/WhileLoopTree
-instanceKlass com/sun/source/tree/SwitchTree
-instanceKlass com/sun/source/tree/ForLoopTree
-instanceKlass com/sun/source/tree/AssertTree
-instanceKlass com/sun/source/tree/ReturnTree
-instanceKlass com/sun/source/tree/ContinueTree
-instanceKlass com/sun/source/tree/SynchronizedTree
-instanceKlass com/sun/source/tree/ImportTree
-instanceKlass com/sun/source/tree/NewClassTree
-instanceKlass com/sun/source/tree/BinaryTree
-instanceKlass com/sun/source/tree/AnnotatedTypeTree
-instanceKlass com/sun/source/tree/ErroneousTree
-instanceKlass com/sun/source/tree/LiteralTree
-instanceKlass com/sun/source/tree/TypeCastTree
-instanceKlass com/sun/source/tree/TypeParameterTree
-instanceKlass com/sun/source/tree/ModifiersTree
-instanceKlass com/sun/source/tree/RequiresTree
-instanceKlass com/sun/source/tree/ProvidesTree
-instanceKlass com/sun/source/tree/ExportsTree
-instanceKlass com/sun/source/tree/DirectiveTree
-instanceKlass com/sun/source/tree/AnyPatternTree
-instanceKlass com/sun/source/tree/PatternTree
-instanceKlass com/sun/source/tree/WildcardTree
-instanceKlass com/sun/tools/javac/comp/Annotate$2
-instanceKlass com/sun/tools/javac/comp/Check$CheckContext
-instanceKlass com/sun/source/tree/NewArrayTree
-instanceKlass com/sun/tools/javac/comp/Annotate
-instanceKlass com/sun/tools/javac/util/ByteBuffer
-instanceKlass javax/lang/model/type/PrimitiveType
-instanceKlass com/sun/tools/javac/comp/Annotate$AnnotationTypeCompleter
-instanceKlass com/sun/tools/javac/jvm/ClassReader
-instanceKlass @bci com/sun/tools/javac/code/ClassFinder (Lcom/sun/tools/javac/util/Context;)V 23 member ; # com/sun/tools/javac/code/ClassFinder$$Lambda+0x000001974aa699a0
-instanceKlass com/sun/tools/javac/code/ClassFinder
-instanceKlass com/sun/tools/javac/util/Convert
-instanceKlass com/sun/tools/javac/util/Name
-instanceKlass com/sun/tools/javac/util/Name$Table
-instanceKlass com/sun/tools/javac/util/Names
-instanceKlass com/sun/tools/javac/code/Symbol$Completer$1
-instanceKlass @bci com/sun/tools/javac/main/JavaCompiler (Lcom/sun/tools/javac/util/Context;)V 6 member ; # com/sun/tools/javac/main/JavaCompiler$$Lambda+0x000001974aa63418
-instanceKlass com/sun/source/tree/ClassTree
-instanceKlass com/sun/source/tree/StatementTree
-instanceKlass com/sun/source/tree/MemberSelectTree
-instanceKlass com/sun/source/tree/IdentifierTree
-instanceKlass com/sun/tools/javac/main/JavaCompiler
-instanceKlass com/sun/tools/javac/code/Attribute$Visitor
-instanceKlass javax/lang/model/element/AnnotationMirror
-instanceKlass com/sun/tools/javac/code/Attribute
-instanceKlass javax/lang/model/element/AnnotationValue
-instanceKlass com/sun/source/tree/AnnotationTree
-instanceKlass javax/lang/model/element/ModuleElement
-instanceKlass javax/lang/model/element/PackageElement
-instanceKlass javax/lang/model/element/TypeElement
-instanceKlass javax/lang/model/element/QualifiedNameable
-instanceKlass com/sun/tools/javac/code/Scope
-instanceKlass javax/lang/model/element/Name
-instanceKlass com/sun/tools/javac/model/JavacElements
-instanceKlass org/gradle/internal/compiler/java/listeners/classnames/ClassNameCollector
-instanceKlass org/mapstruct/ap/internal/processor/ModelElementProcessor$ProcessorContext
-instanceKlass javax/lang/model/element/ElementVisitor
-instanceKlass org/gradle/api/internal/tasks/compile/processing/IncrementalProcessingStrategy
-instanceKlass org/gradle/api/internal/tasks/compile/processing/DelegatingProcessor
-instanceKlass org/gradle/api/internal/tasks/compile/AnnotationProcessingCompileTask$1
-instanceKlass lombok/core/AnnotationProcessor$ProcessorDescriptor
-instanceKlass lombok/launch/ClassFileMetaData
-instanceKlass java/net/URLDecoder
-instanceKlass lombok/launch/PackageShader
-instanceKlass lombok/launch/Main
-instanceKlass org/gradle/api/internal/tasks/compile/incremental/processing/AnnotationProcessorResult
-instanceKlass javax/annotation/processing/AbstractProcessor
-instanceKlass org/gradle/api/internal/tasks/compile/filter/AnnotationProcessorFilter
-instanceKlass org/gradle/api/internal/tasks/compile/ResourceCleaningCompilationTask
-instanceKlass javax/annotation/processing/Processor
-instanceKlass org/gradle/api/internal/tasks/compile/AnnotationProcessingCompileTask
-instanceKlass org/gradle/internal/compiler/java/listeners/constants/ConstantDependentsConsumer
-# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001974aa5d000
-# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001974aa5cc00
-# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001974aa5c800
-# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001974aa5c400
-# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001974aa5c000
-instanceKlass @bci org/gradle/api/internal/tasks/compile/JdkTools$DefaultIncrementalAwareCompiler makeIncremental (Ljavax/tools/JavaCompiler$CompilationTask;Ljava/util/Map;Lorg/gradle/api/internal/tasks/compile/incremental/compilerapi/constants/ConstantsAnalysisResult;Lorg/gradle/api/internal/tasks/compile/CompilationSourceDirs;Lorg/gradle/api/internal/tasks/compile/CompilationClassBackupService;)Ljavax/tools/JavaCompiler$CompilationTask; 89 member ; # org/gradle/api/internal/tasks/compile/JdkTools$DefaultIncrementalAwareCompiler$$Lambda+0x000001974aa586a8
-instanceKlass @bci org/gradle/api/internal/tasks/compile/JdkTools$DefaultIncrementalAwareCompiler makeIncremental (Ljavax/tools/JavaCompiler$CompilationTask;Ljava/util/Map;Lorg/gradle/api/internal/tasks/compile/incremental/compilerapi/constants/ConstantsAnalysisResult;Lorg/gradle/api/internal/tasks/compile/CompilationSourceDirs;Lorg/gradle/api/internal/tasks/compile/CompilationClassBackupService;)Ljavax/tools/JavaCompiler$CompilationTask; 75 member ; # org/gradle/api/internal/tasks/compile/JdkTools$DefaultIncrementalAwareCompiler$$Lambda+0x000001974aa58470
-instanceKlass @bci org/gradle/api/internal/tasks/compile/JdkTools$DefaultIncrementalAwareCompiler makeIncremental (Ljavax/tools/JavaCompiler$CompilationTask;Ljava/util/Map;Lorg/gradle/api/internal/tasks/compile/incremental/compilerapi/constants/ConstantsAnalysisResult;Lorg/gradle/api/internal/tasks/compile/CompilationSourceDirs;Lorg/gradle/api/internal/tasks/compile/CompilationClassBackupService;)Ljavax/tools/JavaCompiler$CompilationTask; 61 member ; # org/gradle/api/internal/tasks/compile/JdkTools$DefaultIncrementalAwareCompiler$$Lambda+0x000001974aa58238
-instanceKlass @bci org/gradle/api/internal/tasks/compile/JdkTools$DefaultIncrementalAwareCompiler makeIncremental (Ljavax/tools/JavaCompiler$CompilationTask;Ljava/util/Map;Lorg/gradle/api/internal/tasks/compile/incremental/compilerapi/constants/ConstantsAnalysisResult;Lorg/gradle/api/internal/tasks/compile/CompilationSourceDirs;Lorg/gradle/api/internal/tasks/compile/CompilationClassBackupService;)Ljavax/tools/JavaCompiler$CompilationTask; 47 member ; # org/gradle/api/internal/tasks/compile/JdkTools$DefaultIncrementalAwareCompiler$$Lambda+0x000001974aa58000
-instanceKlass @bci org/gradle/api/internal/tasks/compile/JdkTools$DefaultIncrementalAwareCompiler makeIncremental (Ljavax/tools/JavaCompiler$CompilationTask;Ljava/util/Map;Lorg/gradle/api/internal/tasks/compile/incremental/compilerapi/constants/ConstantsAnalysisResult;Lorg/gradle/api/internal/tasks/compile/CompilationSourceDirs;Lorg/gradle/api/internal/tasks/compile/CompilationClassBackupService;)Ljavax/tools/JavaCompiler$CompilationTask; 32 member ; # org/gradle/api/internal/tasks/compile/JdkTools$DefaultIncrementalAwareCompiler$$Lambda+0x000001974aa23cc8
-instanceKlass org/gradle/internal/compiler/java/IncrementalCompileTask
-instanceKlass org/gradle/api/internal/tasks/compile/CompilationClassBackupService
-instanceKlass @bci com/sun/tools/javac/code/DeferredCompletionFailureHandler$1 install ()V 9 argL0 ; # com/sun/tools/javac/code/DeferredCompletionFailureHandler$1$$Lambda+0x000001974aa57000
-instanceKlass com/sun/tools/javac/code/DeferredCompletionFailureHandler$FlipSymbolDescription
-instanceKlass com/sun/tools/javac/code/DeferredCompletionFailureHandler$3
-instanceKlass com/sun/tools/javac/code/DeferredCompletionFailureHandler$2
-instanceKlass com/sun/tools/javac/code/Symbol$Completer
-instanceKlass com/sun/tools/javac/code/DeferredCompletionFailureHandler$1
-instanceKlass com/sun/tools/javac/code/DeferredCompletionFailureHandler$Handler
-instanceKlass com/sun/tools/javac/code/DeferredCompletionFailureHandler
-instanceKlass com/sun/tools/javac/parser/Parser
-instanceKlass com/sun/tools/javac/api/JavacTaskImpl$Filter
-instanceKlass @bci com/sun/tools/javac/main/Arguments handleReleaseOptions (Ljava/util/function/Predicate;)Z 22 member ; # com/sun/tools/javac/main/Arguments$$Lambda+0x000001974aa52290
-instanceKlass com/sun/tools/javac/main/Arguments$ErrorReporter
-instanceKlass @bci com/sun/tools/javac/main/Arguments processArgs (Ljava/lang/Iterable;Ljava/util/Set;Lcom/sun/tools/javac/main/OptionHelper;ZZ)Z 24 ; # java/lang/invoke/LambdaForm$MH+0x000001974aa56400
-# instanceKlass java/lang/invoke/LambdaForm$DMH+0x000001974aa56000
-instanceKlass @bci com/sun/tools/javac/main/Arguments processArgs (Ljava/lang/Iterable;Ljava/util/Set;Lcom/sun/tools/javac/main/OptionHelper;ZZ)Z 24 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001974aa55c00
-instanceKlass @bci com/sun/tools/javac/main/Arguments processArgs (Ljava/lang/Iterable;Ljava/util/Set;Lcom/sun/tools/javac/main/OptionHelper;ZZ)Z 24 member ; # com/sun/tools/javac/main/Arguments$$Lambda+0x000001974aa51e38
-instanceKlass @cpi com/sun/tools/javac/main/Arguments 1127 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001974aa55800
-instanceKlass @bci javax/lang/model/SourceVersion getLatestSupported ()Ljavax/lang/model/SourceVersion; 19 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001974aa55400
-instanceKlass @bci javax/lang/model/SourceVersion getLatestSupported ()Ljavax/lang/model/SourceVersion; 19 argL3 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001974aa55000
-# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001974aa54c00
-# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001974aa54800
-instanceKlass @bci javax/lang/model/SourceVersion getLatestSupported ()Ljavax/lang/model/SourceVersion; 19 argL1 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000001974aa54400
-# instanceKlass java/lang/invoke/LambdaForm$MH+0x000001974aa54000
-instanceKlass javax/annotation/processing/RoundEnvironment
-instanceKlass javax/annotation/processing/Messager
-instanceKlass javax/annotation/processing/Filer
-instanceKlass com/sun/tools/javac/tree/JCTree$Visitor
-instanceKlass com/sun/tools/javac/processing/JavacProcessingEnvironment
-instanceKlass javax/annotation/processing/ProcessingEnvironment
-instanceKlass com/sun/tools/javac/util/StringUtils
-instanceKlass @bci com/sun/tools/javac/file/CacheFSInfo isFile (Ljava/nio/file/Path;)Z 5 argL0 ; # com/sun/tools/javac/file/CacheFSInfo$$Lambda+0x000001974aa4fbf0
-instanceKlass @bci com/sun/tools/javac/file/CacheFSInfo getAttributes (Ljava/nio/file/Path;)Ljava/util/Optional; 6 member ; # com/sun/tools/javac/file/CacheFSInfo$$Lambda+0x000001974aa4f9a8
-instanceKlass com/sun/tools/javac/file/BaseFileManager$3
-instanceKlass com/sun/tools/doclint/DocLint$1
-instanceKlass com/sun/source/tree/CompilationUnitTree
-instanceKlass com/sun/source/util/TreePath
-instanceKlass javax/lang/model/util/Types
-instanceKlass javax/lang/model/util/Elements
-instanceKlass com/sun/source/util/Trees
-instanceKlass com/sun/source/util/TreeScanner
-instanceKlass com/sun/source/tree/TreeVisitor
-instanceKlass @bci com/sun/tools/doclint/DocLint newDocLint ()Lcom/sun/tools/doclint/DocLint; 17 argL0 ; # com/sun/tools/doclint/DocLint$$Lambda+0x000001974aa4af58
-instanceKlass java/util/ServiceLoader$ProviderSpliterator
-instanceKlass com/sun/tools/doclint/DocLint
-instanceKlass com/sun/source/util/Plugin
-instanceKlass com/sun/tools/javac/util/ListBuffer$1
-instanceKlass com/sun/tools/javac/main/Arguments
-instanceKlass com/sun/tools/javac/api/ClientCodeWrapper$WrappedJavaFileManager
-instanceKlass com/sun/tools/javac/api/ClientCodeWrapper$Trusted
-instanceKlass com/sun/source/util/TaskListener
-instanceKlass com/sun/tools/javac/api/ClientCodeWrapper
-instanceKlass javax/tools/ForwardingJavaFileManager
-instanceKlass com/sun/tools/javac/file/PathFileObject
-instanceKlass @bci com/sun/tools/javac/file/CacheFSInfo getCanonicalFile (Ljava/nio/file/Path;)Ljava/nio/file/Path; 6 member ; # com/sun/tools/javac/file/CacheFSInfo$$Lambda+0x000001974aa47588
-instanceKlass @bci com/sun/tools/javac/util/Log (Lcom/sun/tools/javac/util/Context;Ljava/util/Map;)V 124 member ; # com/sun/tools/javac/util/Log$$Lambda+0x000001974aa47360
-instanceKlass @bci com/sun/tools/javac/util/JCDiagnostic$Factory (Lcom/sun/tools/javac/util/Context;)V 31 member ; # com/sun/tools/javac/util/JCDiagnostic$Factory$$Lambda+0x000001974aa47138
-instanceKlass com/sun/tools/javac/util/JCDiagnostic
-instanceKlass javax/lang/model/element/ExecutableElement
-instanceKlass javax/lang/model/element/Parameterizable
-instanceKlass javax/lang/model/type/TypeVariable
-instanceKlass javax/lang/model/element/VariableElement
-instanceKlass javax/lang/model/type/ExecutableType
-instanceKlass javax/lang/model/type/NoType
-instanceKlass javax/lang/model/type/WildcardType
-instanceKlass javax/lang/model/type/ErrorType
-instanceKlass javax/lang/model/type/DeclaredType
-instanceKlass javax/lang/model/type/ArrayType
-instanceKlass javax/lang/model/type/ReferenceType
-instanceKlass com/sun/tools/javac/jvm/PoolConstant$LoadableConstant
-instanceKlass javax/lang/model/type/TypeMirror
-instanceKlass com/sun/tools/javac/code/AnnoConstruct
-instanceKlass javax/lang/model/element/Element
-instanceKlass javax/lang/model/AnnotatedConstruct
-instanceKlass com/sun/tools/javac/jvm/PoolConstant
-instanceKlass com/sun/tools/javac/util/AbstractDiagnosticFormatter$SimpleConfiguration
-instanceKlass com/sun/tools/javac/api/DiagnosticFormatter$Configuration
-instanceKlass com/sun/source/tree/ExpressionTree
-instanceKlass com/sun/tools/javac/tree/JCTree
-instanceKlass com/sun/source/tree/Tree
-instanceKlass com/sun/tools/javac/code/Printer
-instanceKlass com/sun/tools/javac/code/Symbol$Visitor
-instanceKlass com/sun/tools/javac/code/Type$Visitor
-instanceKlass com/sun/tools/javac/util/AbstractDiagnosticFormatter
-instanceKlass com/sun/tools/javac/util/Options
-instanceKlass @bci jdk/internal/module/SystemModuleFinders$SystemModuleReader open (Ljava/lang/String;)Ljava/util/Optional; 6 member ; # jdk/internal/module/SystemModuleFinders$SystemModuleReader$$Lambda+0x000001974a9e40c8
-instanceKlass @bci java/util/ResourceBundle$ResourceBundleProviderHelper loadPropertyResourceBundle (Ljava/lang/Module;Ljava/lang/Module;Ljava/lang/String;Ljava/util/Locale;)Ljava/util/ResourceBundle; 14 member ; # java/util/ResourceBundle$ResourceBundleProviderHelper$$Lambda+0x000001974a9e3ea0
-instanceKlass @bci java/util/ResourceBundle$ResourceBundleProviderHelper loadResourceBundle (Ljava/lang/Module;Ljava/lang/Module;Ljava/lang/String;Ljava/util/Locale;)Ljava/util/ResourceBundle; 13 member ; # java/util/ResourceBundle$ResourceBundleProviderHelper$$Lambda+0x000001974a9e3a08
-instanceKlass java/util/ResourceBundle$3
-instanceKlass java/util/ResourceBundle$CacheKeyReference
-instanceKlass @bci java/util/ResourceBundle getLoader (Ljava/lang/Module;)Ljava/lang/ClassLoader; 6 member ; # java/util/ResourceBundle$$Lambda+0x000001974a9e3138
-instanceKlass com/sun/tools/javac/util/List$2
-instanceKlass @bci com/sun/tools/javac/util/JavacMessages add (Ljava/lang/String;)V 2 member ; # com/sun/tools/javac/util/JavacMessages$$Lambda+0x000001974aa3c8f0
-instanceKlass com/sun/tools/javac/util/JavacMessages$ResourceBundleHelper
-instanceKlass com/sun/tools/javac/util/JavacMessages
-instanceKlass com/sun/tools/javac/api/Messages
-instanceKlass com/sun/tools/javac/util/JCDiagnostic$DiagnosticInfo
-instanceKlass com/sun/tools/javac/util/JCDiagnostic$Factory
-instanceKlass @bci com/sun/tools/javac/file/JavacFileManager (Lcom/sun/tools/javac/util/Context;ZLjava/nio/charset/Charset;)V 6 argL0 ; # com/sun/tools/javac/file/JavacFileManager$$Lambda+0x000001974aa39f20
-instanceKlass java/util/JumboEnumSet$EnumSetIterator
-instanceKlass com/sun/tools/javac/file/Locations$ModuleTable
-instanceKlass @bci com/sun/tools/javac/file/Locations$ModuleSourcePathLocationHandler (Lcom/sun/tools/javac/file/Locations;)V 23 argL0 ; # com/sun/tools/javac/file/Locations$ModuleSourcePathLocationHandler$$Lambda+0x000001974aa394e0
-instanceKlass @bci com/sun/tools/javac/file/Locations ()V 5 argL0 ; # com/sun/tools/javac/file/Locations$$Lambda+0x000001974aa38858
-instanceKlass javax/tools/StandardJavaFileManager$PathFactory
-instanceKlass com/sun/tools/javac/file/Locations$LocationHandler
-instanceKlass com/sun/tools/javac/file/Locations
-instanceKlass com/sun/tools/javac/file/JavacFileManager$1
-instanceKlass @bci java/util/stream/Collectors toCollection (Ljava/util/function/Supplier;)Ljava/util/stream/Collector; 10 argL0 ; # java/util/stream/Collectors$$Lambda+0x000001974a9e2848
-instanceKlass @bci java/util/stream/Collectors toCollection (Ljava/util/function/Supplier;)Ljava/util/stream/Collector; 5 argL0 ; # java/util/stream/Collectors$$Lambda+0x000001974a9e2618
-instanceKlass @bci com/sun/tools/javac/main/Option getOptions (Lcom/sun/tools/javac/main/Option$OptionGroup;)Ljava/util/Set; 17 argL0 ; # com/sun/tools/javac/main/Option$$Lambda+0x000001974aa371e0
-instanceKlass @bci com/sun/tools/javac/main/Option getOptions (Lcom/sun/tools/javac/main/Option$OptionGroup;)Ljava/util/Set; 7 member ; # com/sun/tools/javac/main/Option$$Lambda+0x000001974aa36f88
-instanceKlass com/sun/tools/javac/code/Lint
-instanceKlass com/sun/tools/javac/util/Assert
-instanceKlass javax/tools/JavaFileManager$Location
-instanceKlass com/sun/tools/javac/file/RelativePath
-instanceKlass javax/tools/JavaFileObject
-instanceKlass javax/tools/FileObject
-instanceKlass com/sun/tools/javac/file/JavacFileManager$Container
-instanceKlass com/sun/tools/javac/main/OptionHelper
-instanceKlass com/sun/tools/javac/file/BaseFileManager
-instanceKlass @bci com/sun/tools/javac/file/CacheFSInfo preRegister (Lcom/sun/tools/javac/util/Context;)V 3 argL0 ; # com/sun/tools/javac/file/CacheFSInfo$$Lambda+0x000001974aa28cd8
-instanceKlass com/sun/tools/javac/file/FSInfo
-instanceKlass com/sun/tools/javac/api/DiagnosticFormatter
-instanceKlass com/sun/tools/javac/util/Log$DiagnosticHandler
-instanceKlass com/sun/tools/javac/util/JCDiagnostic$DiagnosticPosition
-instanceKlass com/sun/tools/javac/util/AbstractLog
-instanceKlass com/sun/tools/javac/util/Context$Factory
-instanceKlass com/sun/tools/javac/util/Context$Key
-instanceKlass @bci org/gradle/api/internal/tasks/compile/JdkJavaCompiler createCompileTask (Lorg/gradle/api/internal/tasks/compile/JavaCompileSpec;Lorg/gradle/api/internal/tasks/compile/ApiCompilerResult;)Ljavax/tools/JavaCompiler$CompilationTask; 50 argL0 ; # org/gradle/api/internal/tasks/compile/JdkJavaCompiler$$Lambda+0x000001974aa23498
-instanceKlass com/sun/source/util/JavacTask
-instanceKlass com/sun/tools/javac/api/JavacTool
-instanceKlass javax/tools/StandardJavaFileManager
-instanceKlass javax/tools/JavaFileManager
-instanceKlass org/gradle/api/internal/tasks/compile/JdkTools$DefaultIncrementalAwareCompiler
-instanceKlass org/gradle/api/internal/tasks/compile/IncrementalCompilationAwareJavaCompiler
-instanceKlass org/gradle/api/internal/tasks/compile/ContextAwareJavaCompiler
-instanceKlass javax/tools/JavaCompiler
-instanceKlass javax/tools/OptionChecker
-instanceKlass javax/tools/Tool
-instanceKlass @bci org/gradle/api/internal/tasks/compile/JavaHomeBasedJavaCompilerFactory create ()Lorg/gradle/api/internal/tasks/compile/ContextAwareJavaCompiler; 7 argL0 ; # org/gradle/api/internal/tasks/compile/JavaHomeBasedJavaCompilerFactory$$Lambda+0x000001974aa22b08
-instanceKlass org/gradle/api/internal/tasks/compile/JdkTools
-instanceKlass @bci org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder build ()Ljava/util/List; 36 argL0 ; # org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder$$Lambda+0x000001974aa226b0
-instanceKlass java/util/LinkedList$LLSpliterator
-instanceKlass org/gradle/api/internal/tasks/compile/JavaCompilerArgumentsBuilder
-instanceKlass org/gradle/api/internal/tasks/compile/incremental/compilerapi/constants/ConstantToDependentsMappingBuilder
-instanceKlass org/gradle/api/internal/tasks/compile/incremental/compilerapi/constants/ConstantsAnalysisResult
-instanceKlass org/gradle/api/internal/tasks/compile/incremental/processing/AnnotationProcessingResult
-instanceKlass org/gradle/workers/internal/DefaultWorkResult
-instanceKlass org/gradle/api/internal/file/AttributeBasedFileVisitDetailsFactory
-instanceKlass java/nio/file/FileTreeWalker$1
-instanceKlass org/gradle/api/internal/file/collections/PathVisitor
-instanceKlass org/gradle/api/file/ReproducibleFileVisitor
-instanceKlass @bci org/gradle/api/internal/file/FileCollectionBackedFileTree visit (Lorg/gradle/api/file/FileVisitor;)Lorg/gradle/api/file/FileTree; 2 member ; # org/gradle/api/internal/file/FileCollectionBackedFileTree$$Lambda+0x000001974aa1f130
-instanceKlass org/gradle/api/file/EmptyFileVisitor
-instanceKlass @bci org/gradle/api/internal/tasks/compile/NormalizingJavaCompiler resolveAndFilterSourceFiles (Lorg/gradle/api/internal/tasks/compile/JavaCompileSpec;)V 6 argL0 ; # org/gradle/api/internal/tasks/compile/NormalizingJavaCompiler$$Lambda+0x000001974aa21670
-instanceKlass @bci org/gradle/cache/internal/DefaultFileContentCacheFactory$DefaultFileContentCache lambda$get$3 (Ljava/io/File;)Ljava/lang/Object; 25 member ; # org/gradle/cache/internal/DefaultFileContentCacheFactory$DefaultFileContentCache$$Lambda+0x000001974aa1ea90
-instanceKlass org/gradle/api/internal/tasks/compile/processing/AnnotationProcessorDeclaration
-instanceKlass @bci org/gradle/cache/internal/InMemoryDecoratedCache get (Ljava/lang/Object;Ljava/util/function/Function;Ljava/lang/Runnable;)Ljava/lang/Object; 96 ; # java/lang/invoke/LambdaForm$MH+0x000001974aa24c00
-# instanceKlass java/lang/invoke/LambdaForm$DMH+0x000001974aa24800
-instanceKlass @bci org/gradle/cache/internal/InMemoryDecoratedCache get (Ljava/lang/Object;Ljava/util/function/Function;Ljava/lang/Runnable;)Ljava/lang/Object; 96 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001974aa24400
-instanceKlass @bci org/gradle/cache/internal/InMemoryDecoratedCache get (Ljava/lang/Object;Ljava/util/function/Function;Ljava/lang/Runnable;)Ljava/lang/Object; 96 member ; # org/gradle/cache/internal/InMemoryDecoratedCache$$Lambda+0x000001974aa1e868
-instanceKlass @cpi org/gradle/cache/internal/InMemoryDecoratedCache 235 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000001974aa24000
-instanceKlass @bci org/gradle/cache/internal/DefaultFileContentCacheFactory$DefaultFileContentCache lambda$get$1 (Ljava/io/File;Lorg/gradle/internal/hash/HashCode;)Ljava/lang/Object; 7 member ; # org/gradle/cache/internal/DefaultFileContentCacheFactory$DefaultFileContentCache$$Lambda+0x000001974aa1e620
-instanceKlass @bci org/gradle/cache/internal/DefaultFileContentCacheFactory$DefaultFileContentCache lambda$get$3 (Ljava/io/File;)Ljava/lang/Object; 15 member ; # org/gradle/cache/internal/DefaultFileContentCacheFactory$DefaultFileContentCache$$Lambda+0x000001974aa1e3d8
-instanceKlass @bci org/gradle/internal/vfs/impl/DefaultFileSystemAccess readRegularFileContentHash (Ljava/lang/String;)Ljava/util/Optional; 31 argL0 ; # org/gradle/internal/vfs/impl/DefaultFileSystemAccess$$Lambda+0x000001974aa1e198
-instanceKlass @bci org/gradle/internal/vfs/impl/DefaultFileSystemAccess readRegularFileContentHash (Ljava/lang/String;)Ljava/util/Optional; 20 member ; # org/gradle/internal/vfs/impl/DefaultFileSystemAccess$$Lambda+0x000001974aa1df70
-instanceKlass @bci org/gradle/internal/vfs/impl/DefaultFileSystemAccess readRegularFileContentHash (Ljava/lang/String;)Ljava/util/Optional; 10 argL0 ; # org/gradle/internal/vfs/impl/DefaultFileSystemAccess$$Lambda+0x000001974aa1dd30
-instanceKlass @bci org/gradle/cache/internal/DefaultFileContentCacheFactory$DefaultFileContentCache get (Ljava/io/File;)Ljava/lang/Object; 6 member ; # org/gradle/cache/internal/DefaultFileContentCacheFactory$DefaultFileContentCache$$Lambda+0x000001974aa1dae8
-instanceKlass org/gradle/api/internal/tasks/compile/NormalizingJavaCompiler
-instanceKlass org/gradle/api/internal/tasks/compile/AnnotationProcessorDiscoveringCompiler
-instanceKlass org/gradle/api/internal/tasks/compile/ModuleApplicationNameWritingCompiler
-instanceKlass javax/tools/Diagnostic
-instanceKlass org/gradle/api/internal/tasks/compile/DiagnosticToProblemListener
-instanceKlass org/gradle/api/internal/tasks/compile/JavaHomeBasedJavaCompilerFactory
-instanceKlass org/gradle/internal/file/impl/DefaultDeleter$FileDeletionResult
-instanceKlass @bci org/gradle/language/base/internal/tasks/StaleOutputCleaner lambda$cleanOutputs$1 (Ljava/util/Set;Ljava/io/File;)Z 17 member ; # org/gradle/language/base/internal/tasks/StaleOutputCleaner$$Lambda+0x000001974aa20000
-instanceKlass org/gradle/internal/execution/history/OutputsCleaner$1
-instanceKlass @bci org/gradle/language/base/internal/tasks/StaleOutputCleaner cleanOutputs (Lorg/gradle/internal/file/Deleter;Ljava/lang/Iterable;Lcom/google/common/collect/ImmutableSet;)Z 38 member ; # org/gradle/language/base/internal/tasks/StaleOutputCleaner$$Lambda+0x000001974aa03be8
-instanceKlass @bci org/gradle/language/base/internal/tasks/StaleOutputCleaner cleanOutputs (Lorg/gradle/internal/file/Deleter;Ljava/lang/Iterable;Lcom/google/common/collect/ImmutableSet;)Z 32 member ; # org/gradle/language/base/internal/tasks/StaleOutputCleaner$$Lambda+0x000001974aa03990
-instanceKlass @bci org/gradle/language/base/internal/tasks/StaleOutputCleaner cleanOutputs (Lorg/gradle/internal/file/Deleter;Ljava/lang/Iterable;Lcom/google/common/collect/ImmutableSet;)Z 4 argL0 ; # org/gradle/language/base/internal/tasks/StaleOutputCleaner$$Lambda+0x000001974aa03750
-instanceKlass org/gradle/language/base/internal/tasks/StaleOutputCleaner
-instanceKlass @bci org/gradle/internal/snapshot/DirectorySnapshot accept (Lorg/gradle/internal/snapshot/FileSystemSnapshotHierarchyVisitor;)Lorg/gradle/internal/snapshot/SnapshotVisitResult; 71 member ; # org/gradle/internal/snapshot/DirectorySnapshot$$Lambda+0x000001974aa1d498
-instanceKlass @bci org/gradle/internal/snapshot/DirectorySnapshot accept (Lorg/gradle/internal/snapshot/FileSystemSnapshotHierarchyVisitor;)Lorg/gradle/internal/snapshot/SnapshotVisitResult; 60 argL0 ; # org/gradle/internal/snapshot/DirectorySnapshot$$Lambda+0x000001974aa1d258
-instanceKlass @bci org/gradle/internal/snapshot/SnapshotUtil indexByAbsolutePath (Lorg/gradle/internal/snapshot/FileSystemSnapshot;)Ljava/util/Map; 10 member ; # org/gradle/internal/snapshot/SnapshotUtil$$Lambda+0x000001974aa1d010
-instanceKlass @bci org/gradle/api/internal/tasks/execution/TaskExecution$PreviousOutputFileCollection createDelegate ()Lorg/gradle/api/internal/file/FileCollectionInternal; 40 argL0 ; # org/gradle/api/internal/tasks/execution/TaskExecution$PreviousOutputFileCollection$$Lambda+0x000001974aa1cdd0
-instanceKlass @bci org/gradle/api/internal/tasks/execution/TaskExecution$PreviousOutputFileCollection createDelegate ()Lorg/gradle/api/internal/file/FileCollectionInternal; 30 argL0 ; # org/gradle/api/internal/tasks/execution/TaskExecution$PreviousOutputFileCollection$$Lambda+0x000001974aa1cb90
-instanceKlass @bci org/gradle/api/internal/tasks/execution/TaskExecution$PreviousOutputFileCollection createDelegate ()Lorg/gradle/api/internal/file/FileCollectionInternal; 20