From 6b3ef91ec2003e516ffd61d32a09e2c1b92e28f0 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 16 May 2025 16:35:50 +0800 Subject: [PATCH 01/36] Leetcode Leetcode 53 Maximum Subarray 59 Spiral_Matrix_II 98 Validate_Binary_Search_Tree 203 Remove_Linked_List 206 Reverse_Linked_List 209 Minimum_Size_Subarray_Sum 409 Longest Panlindrome 704 Binary_Search 707 Desugn_Linked_List 977 Squares_of_a_Sorted_Array to Reverse_Linked_List --- Leetcode_practice/203 Remove_Linked_List.cpp | 29 + Leetcode_practice/206 Reverse_Linked_LIst.py | 17 + .../209 Minium_Size_Subarray_Sum.cpp | 22 + Leetcode_practice/409. Longest Palindrome.cpp | 29 + Leetcode_practice/53 Maximum Subarray.java | 19 + Leetcode_practice/59 Spiral_Matrix_II.cpp | 47 + Leetcode_practice/704 Binary_Search.cpp | 21 + Leetcode_practice/707 Design_Linked_List.cpp | 105 + .../977 Squares_of_a_Sorted_Array.cpp | 10 + .../98 Validate Binary Search Tree.java | 38 + Leetcode_practice/hs_err_pid6732.log | 683 +++ Leetcode_practice/replay_pid6732.log | 3720 +++++++++++++++++ 12 files changed, 4740 insertions(+) create mode 100644 Leetcode_practice/203 Remove_Linked_List.cpp create mode 100644 Leetcode_practice/206 Reverse_Linked_LIst.py create mode 100644 Leetcode_practice/209 Minium_Size_Subarray_Sum.cpp create mode 100644 Leetcode_practice/409. Longest Palindrome.cpp create mode 100644 Leetcode_practice/53 Maximum Subarray.java create mode 100644 Leetcode_practice/59 Spiral_Matrix_II.cpp create mode 100644 Leetcode_practice/704 Binary_Search.cpp create mode 100644 Leetcode_practice/707 Design_Linked_List.cpp create mode 100644 Leetcode_practice/977 Squares_of_a_Sorted_Array.cpp create mode 100644 Leetcode_practice/98 Validate Binary Search Tree.java create mode 100644 Leetcode_practice/hs_err_pid6732.log create mode 100644 Leetcode_practice/replay_pid6732.log diff --git a/Leetcode_practice/203 Remove_Linked_List.cpp b/Leetcode_practice/203 Remove_Linked_List.cpp new file mode 100644 index 0000000..cd24b77 --- /dev/null +++ b/Leetcode_practice/203 Remove_Linked_List.cpp @@ -0,0 +1,29 @@ +/** + * Definition for singly-linked list. + * struct ListNode { + * int val; + * ListNode *next; + * ListNode() : val(0), next(nullptr) {} + * ListNode(int x) : val(x), next(nullptr) {} + * ListNode(int x, ListNode *next) : val(x), next(next) {} + * }; + */ +class Solution { +public: + ListNode* removeElements(ListNode* head, int val) { + ListNode* ans=new ListNode(0,head); + ListNode* dummy=ans; + + while(dummy!=nullptr) + { + while(dummy->next!=nullptr && dummy->next->val==val){ + dummy->next=dummy->next->next; + } + dummy=dummy->next; + } + ListNode* result=ans->next; + delete ans; + + return result; + } +}; \ No newline at end of file diff --git a/Leetcode_practice/206 Reverse_Linked_LIst.py b/Leetcode_practice/206 Reverse_Linked_LIst.py new file mode 100644 index 0000000..4cd36e6 --- /dev/null +++ b/Leetcode_practice/206 Reverse_Linked_LIst.py @@ -0,0 +1,17 @@ +# Definition for singly-linked list. +# class ListNode: +# def __init__(self, val=0, next=None): +# self.val = val +# self.next = next +class Solution: + def reverseList(self, head: Optional[ListNode]) -> Optional[ListNode]: + prev=None + while head: + next=head.next #head指向自己->指向下一個head + head.next=prev#head.next指向前一個(prev) + prev=head#prev:指向前一個->指向自己(head) + head=next + return prev + +#「指向下一個 head.next」改成指向「前一個節點 prev」: +#head.next=prev \ No newline at end of file diff --git a/Leetcode_practice/209 Minium_Size_Subarray_Sum.cpp b/Leetcode_practice/209 Minium_Size_Subarray_Sum.cpp new file mode 100644 index 0000000..f0673f6 --- /dev/null +++ b/Leetcode_practice/209 Minium_Size_Subarray_Sum.cpp @@ -0,0 +1,22 @@ +#include +#include +class Solution { +public: + int minSubArrayLen(int s, vector& nums) { + int result = INT32_MAX; + int sum = 0; // 滑動窗口數字之和 + int i = 0; // 滑動窗口起始位置 + int subLength = 0; // 滑動窗口的長度 + for (int j = 0; j < nums.size(); j++) { + sum += nums[j]; + // 注意這裡使用while,每次更新 i(起始位置),並不斷比較序列是否符合條件 + while (sum >= s) { + subLength = (j - i + 1); // 取子序列的長度 + result = result < subLength ? result : subLength; + sum -= nums[i++]; // 這裡出現滑動窗口的精隨之處,不斷變更i(子序列的起始位置) + } + } + // 如果result沒有被賦值的話,就返回0,說明沒有符合條件的子序列 + return result == INT32_MAX ? 0 : result; + } +}; \ No newline at end of file diff --git a/Leetcode_practice/409. Longest Palindrome.cpp b/Leetcode_practice/409. Longest Palindrome.cpp new file mode 100644 index 0000000..e035aa6 --- /dev/null +++ b/Leetcode_practice/409. Longest Palindrome.cpp @@ -0,0 +1,29 @@ +/*此問題的解決方法: +初始化兩個變量,oddCount 用於儲存出現次數為奇數的字元數,無序映射 ump 用於儲存字串中每個字元的計數。 +迭代字串,對於每個字元 ch,增加無序映射中該字元的計數。 +如果目前字元 ch 的計數為奇數,則增加 oddCount。 如果計數為偶數,則減少 oddCount。 +如果 oddCount 大於 1,則傳回 s.length() - oddCount + 1,這是使用除一個出現次數為奇數的字元以外的所有字元形成的回文的最大長度。 +如果 oddCount 不大於 1,則傳回 s.length(),也就是原始字串的長度,因為所有字元都可以用來形成回文。*/ + +#include + +class Solution { +public: + int longestPalindrome(string s) { + int oddCount=0;//用於儲存出現次數為奇數,目前ch的計數為奇數,則增加oddCount + unordered_map ump; + for(char ch : s){ + ump[ch]++; + if(ump[ch]%2==1){ + oddCount++; + } + else{ + oddCount--; + } + } + if(oddCount > 1){ + return s.length()-oddCount+1; + } + return s.length(); + } +}; \ No newline at end of file diff --git a/Leetcode_practice/53 Maximum Subarray.java b/Leetcode_practice/53 Maximum Subarray.java new file mode 100644 index 0000000..1aace03 --- /dev/null +++ b/Leetcode_practice/53 Maximum Subarray.java @@ -0,0 +1,19 @@ +class Solution { + public int maxSubArray(int[] nums) { + int maxSum=Integer.MIN_VALUE; + int currentSum=0; + + for(int i=0;imaxSum){ + maxSum=currentSum; + } + if(currentSum<0){ + currentSum=0; + } + } + return maxSum; + } +} \ No newline at end of file diff --git a/Leetcode_practice/59 Spiral_Matrix_II.cpp b/Leetcode_practice/59 Spiral_Matrix_II.cpp new file mode 100644 index 0000000..28682e8 --- /dev/null +++ b/Leetcode_practice/59 Spiral_Matrix_II.cpp @@ -0,0 +1,47 @@ +class Solution { +public: + vector> generateMatrix(int n) { + vector> res(n, vector(n, 0)); // 使用vector定義一個二維數組 + int startx = 0, starty = 0; // 定義每循環一個圈的起始位置 + int loop = n / 2; // 每個圈循環幾次,例如n為奇數3,那麼loop = 1 只是循環一圈,矩陣中間的值需要單獨處理 + int mid = n / 2; // 矩陣中間的位置,例如:n為3, 中間的位置就是(1,1),n為5,中間位置為(2, 2) + int count = 1; // 用來給矩陣中每一個空格賦值 + int offset = 1; // 需要控制每一條邊遍歷的長度,每次循環右邊收縮一個長度 + int i,j; + while (loop --) { + i = startx; + j = starty; + + // 下面開始的四個for就是模擬轉了一圈 + // 模擬填充上行從左到右(左閉右開) + for (j; j < n - offset; j++) { + res[i][j] = count++; + } + // 模擬填充右列從上到下(左閉右開) + for (i; i < n - offset; i++) { + res[i][j] = count++; + } + // 模擬填充下行從右到左(左閉右開) + for (; j > starty; j--) { + res[i][j] = count++; + } + // 模擬填充左列從下到上(左閉右開) + for (; i > startx; i--) { + res[i][j] = count++; + } + + // 第二圈開始的時候,起始位置要各自加1, 例如:第一圈起始位置是(0, 0),第二圈起始位置是(1, 1) + startx++; + starty++; + + // offset 控制每一圈裡每一條邊遍歷的長度 + offset += 1; + } + + // 如果n為奇數的話,需要單獨給矩陣最中間的位置賦值 + if (n % 2) { + res[mid][mid] = count; + } + return res; + } +}; \ No newline at end of file diff --git a/Leetcode_practice/704 Binary_Search.cpp b/Leetcode_practice/704 Binary_Search.cpp new file mode 100644 index 0000000..4423602 --- /dev/null +++ b/Leetcode_practice/704 Binary_Search.cpp @@ -0,0 +1,21 @@ +class Solution { + public: + int search(vector& nums, int target) { + int left = 0; + int right = nums.size() - 1; + + while (left <= right) { + int mid = left + (right - left) / 2; + + if (nums[mid] == target) {//相等 + return mid; + } else if (nums[mid] < target) {//在右側 + left = mid + 1; + } else {//在左側 + right = mid - 1; + } + } + + return -1;//沒找到 + } + }; \ No newline at end of file diff --git a/Leetcode_practice/707 Design_Linked_List.cpp b/Leetcode_practice/707 Design_Linked_List.cpp new file mode 100644 index 0000000..71e0b34 --- /dev/null +++ b/Leetcode_practice/707 Design_Linked_List.cpp @@ -0,0 +1,105 @@ +class MyLinkedList { +public: +//定義鏈表節點結構體 + struct LinkedNode{ + int val; + LinkedNode* next; + LinkedNode(int val):val(val),next(nullptr){} + }; + //初始化鏈表 + MyLinkedList() { + _dummyHead=new LinkedNode(0);//這裡定義的頭節點是一個虛擬頭節點,而不是真正的鏈表頭節點 + _size=0; + } + //獲取到第index個節點數值,如果index是非法數值直接返回-1,注意index是從0開始的,第0個節點就是頭節點 + int get(int index){ + if(index>(_size-1)||index<0)//檢查index是否有再範圍內 + { + return -1; + } + LinkedNode* cur=_dummyHead->next; + while(index--){//如果--index就會陷入死循環 + cur=cur->next; + } + return cur->val; + } + +// 在鏈表最前面插入一個節點,插入完成後,新插入的節點為鏈表的新頭節點 + void addAtHead(int val) { + LinkedNode* newNode=new LinkedNode(val); + newNode->next=_dummyHead->next; + _dummyHead->next=newNode; + _size++; + } + //在鏈表最後面添加一個節點 + void addAtTail(int val) { + LinkedNode* newNode=new LinkedNode(val); + LinkedNode* cur=_dummyHead; + while(cur->next!=nullptr){ + cur=cur->next; + } + cur->next=newNode; + _size++; + } + +//第index個節點前插入node + void addAtIndex(int index, int val) { + if(index>_size) return; + if(index<0)index=0; + LinkedNode* newNode=new LinkedNode(val); + LinkedNode* cur=_dummyHead; + while(index--) + { + cur=cur->next; + } + newNode->next=cur->next; + cur->next=newNode; + _size++; + } + + //刪除第index個節點,如果index大於等於鍊表的長度,直接return,注意index是從0開始的 + void deleteAtIndex(int index) { + if(index>=_size||index<0) + { + return; + } + LinkedNode* cur=_dummyHead; + while(index--) + { + cur=cur->next; + } + LinkedNode* tmp=cur->next; + cur->next=cur->next->next; + delete tmp; + //delete命令指示釋放了tmp指針原本所指的那部分內存, + //被delete後的指針tmp的值(地址)並非就是NULL,而是隨機值。也就是被delete後, + //如果不再加上一句tmp=nullptr,tmp會成為亂指的野指針 + //如果之後的程序不小心使用了tmp,會指向難以預想的內存空間 + tmp=nullptr; + _size--; + } + + //打印鏈表 + void printLinkedList(){ + LinkedNode* cur=_dummyHead; + while(cur->next!=nullptr) + { + cout<next->val<<" "; + cur=cur->next; + } + cout<get(index); + * obj->addAtHead(val); + * obj->addAtTail(val); + * obj->addAtIndex(index,val); + * obj->deleteAtIndex(index); + */ \ No newline at end of file diff --git a/Leetcode_practice/977 Squares_of_a_Sorted_Array.cpp b/Leetcode_practice/977 Squares_of_a_Sorted_Array.cpp new file mode 100644 index 0000000..4ec7781 --- /dev/null +++ b/Leetcode_practice/977 Squares_of_a_Sorted_Array.cpp @@ -0,0 +1,10 @@ +class Solution { +public: + vector sortedSquares(vector& nums) { + for(int i =0;i= max || root.val <= min) return false; + + // 遞歸檢查左子樹和右子樹 + return isValid(root.left, min, root.val) && isValid(root.right, root.val, max); + } + + // 主函數,檢查整棵樹是否為有效的二叉搜索樹 + public boolean isValidBST(TreeNode root) { + return isValid(root, Long.MIN_VALUE, Long.MAX_VALUE); + } +} \ No newline at end of file diff --git a/Leetcode_practice/hs_err_pid6732.log b/Leetcode_practice/hs_err_pid6732.log new file mode 100644 index 0000000..e60ff0e --- /dev/null +++ b/Leetcode_practice/hs_err_pid6732.log @@ -0,0 +1,683 @@ +# +# There is insufficient memory for the Java Runtime Environment to continue. +# Native memory allocation (malloc) failed to allocate 1106256 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=6732, tid=10820 +# +# JRE version: OpenJDK Runtime Environment Temurin-21.0.6+7 (21.0.6+7) (build 21.0.6+7-LTS) +# Java VM: OpenJDK 64-Bit Server VM Temurin-21.0.6+7 (21.0.6+7-LTS, mixed mode, sharing, tiered, compressed oops, compressed class ptrs, parallel 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-modules=ALL-SYSTEM --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/sun.nio.fs=ALL-UNNAMED -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Djava.import.generatesMetadataFilesAtProjectRoot=false -DDetectVMInstallationsJob.disabled=true -Dfile.encoding=utf8 -XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -Xlog:disable -javaagent:c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\lombok\lombok-1.18.36.jar c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.7.0.v20250331-1702.jar -configuration c:\Users\jorda\AppData\Roaming\Code\User\globalStorage\redhat.java\1.41.1\config_ss_win -data c:\Users\jorda\AppData\Roaming\Code\User\workspaceStorage\f0324213c61b0eaf7655e2d81f50bb23\redhat.java\ss_ws --pipe=\\.\pipe\lsp-9bc2839c2037285198ebb3b0a6686f34-sock + +Host: Intel(R) Core(TM) i5-8265U CPU @ 1.60GHz, 8 cores, 3G, Windows 11 , 64 bit Build 26100 (10.0.26100.3912) +Time: Thu May 15 19:22:55 2025 Windows 11 , 64 bit Build 26100 (10.0.26100.3912) elapsed time: 49.082117 seconds (0d 0h 0m 49s) + +--------------- T H R E A D --------------- + +Current thread (0x000002196f1e1b50): JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=10820, stack(0x0000007f68100000,0x0000007f68200000) (1024K)] + + +Current CompileTask: +C2:49083 2739 4 org.lombokweb.asm.ClassReader::readMethod (1070 bytes) + +Stack: [0x0000007f68100000,0x0000007f68200000] +Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code) +V [jvm.dll+0x6cdee9] +V [jvm.dll+0x8a83d1] +V [jvm.dll+0x8aa8fe] +V [jvm.dll+0x8aafe3] +V [jvm.dll+0x27f706] +V [jvm.dll+0xc500d] +V [jvm.dll+0xc5543] +V [jvm.dll+0x3b6752] +V [jvm.dll+0x382935] +V [jvm.dll+0x381d9a] +V [jvm.dll+0x2479f0] +V [jvm.dll+0x246fcf] +V [jvm.dll+0x1c75ee] +V [jvm.dll+0x25685a] +V [jvm.dll+0x254dfa] +V [jvm.dll+0x3f0256] +V [jvm.dll+0x851f8b] +V [jvm.dll+0x6cc5ed] +C [ucrtbase.dll+0x37b0] +C [KERNEL32.DLL+0x2e8d7] +C [ntdll.dll+0x9c5dc] + + +--------------- P R O C E S S --------------- + +Threads class SMR info: +_java_thread_list=0x0000021975defd70, length=19, elements={ +0x000002195a6719c0, 0x000002196f1c7030, 0x000002196f1cb750, 0x000002196f1d0190, +0x000002196f1d0de0, 0x000002196f1d9a60, 0x000002196f1dff60, 0x000002196f1e1b50, +0x000002196f1e3f70, 0x00000219750b0f30, 0x000002197532f9a0, 0x00000219757ea170, +0x00000219759bbdc0, 0x00000219759bd420, 0x00000219759e6330, 0x00000219757c50a0, +0x0000021975a5d8a0, 0x00000219757101c0, 0x0000021975af0020 +} + +Java Threads: ( => current thread ) + 0x000002195a6719c0 JavaThread "main" [_thread_blocked, id=19772, stack(0x0000007f67700000,0x0000007f67800000) (1024K)] + 0x000002196f1c7030 JavaThread "Reference Handler" daemon [_thread_blocked, id=9532, stack(0x0000007f67b00000,0x0000007f67c00000) (1024K)] + 0x000002196f1cb750 JavaThread "Finalizer" daemon [_thread_blocked, id=17424, stack(0x0000007f67c00000,0x0000007f67d00000) (1024K)] + 0x000002196f1d0190 JavaThread "Signal Dispatcher" daemon [_thread_blocked, id=22384, stack(0x0000007f67d00000,0x0000007f67e00000) (1024K)] + 0x000002196f1d0de0 JavaThread "Attach Listener" daemon [_thread_blocked, id=13504, stack(0x0000007f67e00000,0x0000007f67f00000) (1024K)] + 0x000002196f1d9a60 JavaThread "Service Thread" daemon [_thread_blocked, id=144, stack(0x0000007f67f00000,0x0000007f68000000) (1024K)] + 0x000002196f1dff60 JavaThread "Monitor Deflation Thread" daemon [_thread_blocked, id=20936, stack(0x0000007f68000000,0x0000007f68100000) (1024K)] +=>0x000002196f1e1b50 JavaThread "C2 CompilerThread0" daemon [_thread_in_native, id=10820, stack(0x0000007f68100000,0x0000007f68200000) (1024K)] + 0x000002196f1e3f70 JavaThread "C1 CompilerThread0" daemon [_thread_blocked, id=20296, stack(0x0000007f68200000,0x0000007f68300000) (1024K)] + 0x00000219750b0f30 JavaThread "Common-Cleaner" daemon [_thread_blocked, id=16352, stack(0x0000007f68300000,0x0000007f68400000) (1024K)] + 0x000002197532f9a0 JavaThread "Notification Thread" daemon [_thread_blocked, id=17492, stack(0x0000007f68400000,0x0000007f68500000) (1024K)] + 0x00000219757ea170 JavaThread "Active Thread: Equinox Container: 9f282ed1-d3d8-4f5e-9586-4ecb29e8f580" [_thread_blocked, id=9780, stack(0x0000007f68b00000,0x0000007f68c00000) (1024K)] + 0x00000219759bbdc0 JavaThread "Framework Event Dispatcher: Equinox Container: 9f282ed1-d3d8-4f5e-9586-4ecb29e8f580" daemon [_thread_blocked, id=3376, stack(0x0000007f68c00000,0x0000007f68d00000) (1024K)] + 0x00000219759bd420 JavaThread "Start Level: Equinox Container: 9f282ed1-d3d8-4f5e-9586-4ecb29e8f580" daemon [_thread_in_native, id=18664, stack(0x0000007f68d00000,0x0000007f68e00000) (1024K)] + 0x00000219759e6330 JavaThread "SCR Component Actor" daemon [_thread_blocked, id=21584, stack(0x0000007f68e00000,0x0000007f68f00000) (1024K)] + 0x00000219757c50a0 JavaThread "Worker-JM" [_thread_blocked, id=19600, stack(0x0000007f69100000,0x0000007f69200000) (1024K)] + 0x0000021975a5d8a0 JavaThread "JNA Cleaner" daemon [_thread_blocked, id=19564, stack(0x0000007f69000000,0x0000007f69100000) (1024K)] + 0x00000219757101c0 JavaThread "Worker-0" [_thread_blocked, id=1912, stack(0x0000007f69200000,0x0000007f69300000) (1024K)] + 0x0000021975af0020 JavaThread "Worker-1" [_thread_blocked, id=19872, stack(0x0000007f69300000,0x0000007f69400000) (1024K)] +Total: 19 + +Other Threads: + 0x000002196f1b27a0 VMThread "VM Thread" [id=19180, stack(0x0000007f67a00000,0x0000007f67b00000) (1024K)] + 0x000002196f0eca00 WatcherThread "VM Periodic Task Thread" [id=14296, stack(0x0000007f67900000,0x0000007f67a00000) (1024K)] + 0x000002195a68fc30 WorkerThread "GC Thread#0" [id=13628, stack(0x0000007f67800000,0x0000007f67900000) (1024K)] + 0x0000021975827170 WorkerThread "GC Thread#1" [id=17856, stack(0x0000007f68500000,0x0000007f68600000) (1024K)] + 0x000002197582ec90 WorkerThread "GC Thread#2" [id=21460, stack(0x0000007f68600000,0x0000007f68700000) (1024K)] + 0x0000021975827510 WorkerThread "GC Thread#3" [id=14392, stack(0x0000007f68700000,0x0000007f68800000) (1024K)] + 0x00000219758278b0 WorkerThread "GC Thread#4" [id=20192, stack(0x0000007f68800000,0x0000007f68900000) (1024K)] + 0x0000021975827c50 WorkerThread "GC Thread#5" [id=20996, stack(0x0000007f68900000,0x0000007f68a00000) (1024K)] + 0x0000021975827ff0 WorkerThread "GC Thread#6" [id=17592, stack(0x0000007f68a00000,0x0000007f68b00000) (1024K)] + 0x000002197543c910 WorkerThread "GC Thread#7" [id=21444, stack(0x0000007f68f00000,0x0000007f69000000) (1024K)] +Total: 10 + +Threads with active compile tasks: +C2 CompilerThread0 49346 2739 4 org.lombokweb.asm.ClassReader::readMethod (1070 bytes) +Total: 1 + +VM state: not at safepoint (normal execution) + +VM Mutex/Monitor currently owned by a thread: None + +Heap address: 0x00000000c0000000, size: 1024 MB, Compressed Oops mode: 32-bit + +CDS archive(s) mapped at: [0x0000021900000000-0x0000021900ba0000-0x0000021900ba0000), size 12189696, SharedBaseAddress: 0x0000021900000000, ArchiveRelocationMode: 1. +Compressed class space mapped at: 0x0000021901000000-0x0000021941000000, reserved size: 1073741824 +Narrow klass base: 0x0000021900000000, Narrow klass shift: 0, Narrow klass range: 0x100000000 + +GC Precious Log: + CardTable entry size: 512 + CPUs: 8 total, 8 available + Memory: 3946M + Large Page Support: Disabled + NUMA Support: Disabled + Compressed Oops: Enabled (32-bit) + Alignments: Space 512K, Generation 512K, Heap 2M + Heap Min Capacity: 100M + Heap Initial Capacity: 100M + Heap Max Capacity: 1G + Pre-touch: Disabled + Parallel Workers: 8 + +Heap: + PSYoungGen total 29184K, used 4346K [0x00000000eab00000, 0x00000000ecc80000, 0x0000000100000000) + eden space 25088K, 17% used [0x00000000eab00000,0x00000000eaf3e860,0x00000000ec380000) + from space 4096K, 0% used [0x00000000ec800000,0x00000000ec800000,0x00000000ecc00000) + to space 4608K, 0% used [0x00000000ec380000,0x00000000ec380000,0x00000000ec800000) + ParOldGen total 68608K, used 8377K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000) + object space 68608K, 12% used [0x00000000c0000000,0x00000000c082e728,0x00000000c4300000) + Metaspace used 21300K, committed 21952K, reserved 1114112K + class space used 2002K, committed 2240K, reserved 1048576K + +Card table byte_map: [0x000002196ca80000,0x000002196cc90000] _byte_map_base: 0x000002196c480000 + +Marking Bits: (ParMarkBitMap*) 0x00007ffc9d1c3260 + Begin Bits: [0x000002196cdf0000, 0x000002196ddf0000) + End Bits: [0x000002196ddf0000, 0x000002196edf0000) + +Polling page: 0x000002195a730000 + +Metaspace: + +Usage: + Non-class: 18.85 MB used. + Class: 1.96 MB used. + Both: 20.80 MB used. + +Virtual space: + Non-class space: 64.00 MB reserved, 19.25 MB ( 30%) committed, 1 nodes. + Class space: 1.00 GB reserved, 2.19 MB ( <1%) committed, 1 nodes. + Both: 1.06 GB reserved, 21.44 MB ( 2%) committed. + +Chunk freelists: + Non-Class: 12.23 MB + Class: 13.82 MB + Both: 26.05 MB + +MaxMetaspaceSize: unlimited +CompressedClassSpaceSize: 1.00 GB +Initial GC threshold: 21.00 MB +Current GC threshold: 35.00 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: 3. +num_arena_births: 496. +num_arena_deaths: 14. +num_vsnodes_births: 2. +num_vsnodes_deaths: 0. +num_space_committed: 343. +num_space_uncommitted: 0. +num_chunks_returned_to_freelist: 17. +num_chunks_taken_from_freelist: 1280. +num_chunk_merges: 7. +num_chunk_splits: 856. +num_chunks_enlarged: 565. +num_inconsistent_stats: 0. + +CodeHeap 'non-profiled nmethods': size=120000Kb used=1087Kb max_used=1087Kb free=118912Kb + bounds [0x0000021965370000, 0x00000219655e0000, 0x000002196c8a0000] +CodeHeap 'profiled nmethods': size=120000Kb used=5386Kb max_used=5386Kb free=114613Kb + bounds [0x000002195d8a0000, 0x000002195ddf0000, 0x0000021964dd0000] +CodeHeap 'non-nmethods': size=5760Kb used=1312Kb max_used=1327Kb free=4447Kb + bounds [0x0000021964dd0000, 0x0000021965040000, 0x0000021965370000] + total_blobs=3347 nmethods=2750 adapters=503 + compilation: enabled + stopped_count=0, restarted_count=0 + full_count=0 + +Compilation events (20 events): +Event: 46.373 Thread 0x000002196f1e3f70 2746 3 org.osgi.util.tracker.ServiceTracker::getService (33 bytes) +Event: 47.387 Thread 0x000002196f1e3f70 nmethod 2746 0x000002195dddc090 code [0x000002195dddc280, 0x000002195dddc918] +Event: 47.388 Thread 0x000002196f1e3f70 2747 3 java.util.concurrent.locks.AbstractQueuedSynchronizer$Node:: (5 bytes) +Event: 47.389 Thread 0x000002196f1e3f70 nmethod 2747 0x000002195dddcb90 code [0x000002195dddcd40, 0x000002195dddcea8] +Event: 47.389 Thread 0x000002196f1e3f70 2748 3 java.util.concurrent.locks.AbstractQueuedSynchronizer::tryAcquireSharedNanos (62 bytes) +Event: 47.391 Thread 0x000002196f1e3f70 nmethod 2748 0x000002195dddcf90 code [0x000002195dddd1c0, 0x000002195dddd8b0] +Event: 47.493 Thread 0x000002196f1e3f70 2749 ! 3 org.eclipse.equinox.launcher.JNIBridge::updateSplash (25 bytes) +Event: 47.497 Thread 0x000002196f1e3f70 nmethod 2749 0x000002195dddda90 code [0x000002195ddddd00, 0x000002195ddde4b8] +Event: 47.555 Thread 0x000002196f1e3f70 2750 ! 3 org.eclipse.core.runtime.internal.adaptor.DefaultStartupMonitor::update (25 bytes) +Event: 47.556 Thread 0x000002196f1e3f70 nmethod 2750 0x000002195ddde790 code [0x000002195ddde9e0, 0x000002195dddf128] +Event: 47.556 Thread 0x000002196f1e3f70 2751 3 java.lang.invoke.DirectMethodHandle$Holder::invokeSpecial (14 bytes) +Event: 47.557 Thread 0x000002196f1e3f70 nmethod 2751 0x000002195dddf490 code [0x000002195dddf660, 0x000002195dddfb00] +Event: 47.557 Thread 0x000002196f1e3f70 2752 3 org.eclipse.equinox.launcher.Main$SplashHandler::updateSplash (32 bytes) +Event: 47.559 Thread 0x000002196f1e3f70 nmethod 2752 0x000002195dddfc10 code [0x000002195dddfe80, 0x000002195dde0720] +Event: 47.616 Thread 0x000002196f1e3f70 2753 3 java.util.concurrent.locks.AbstractQueuedSynchronizer::cancelAcquire (45 bytes) +Event: 47.617 Thread 0x000002196f1e3f70 nmethod 2753 0x000002195dde0a90 code [0x000002195dde0c60, 0x000002195dde0fb8] +Event: 47.617 Thread 0x000002196f1e3f70 2754 3 java.util.concurrent.locks.AbstractQueuedSynchronizer::cleanQueue (174 bytes) +Event: 47.620 Thread 0x000002196f1e3f70 nmethod 2754 0x000002195dde1110 code [0x000002195dde13e0, 0x000002195dde2238] +Event: 47.620 Thread 0x000002196f1e3f70 2755 3 java.util.concurrent.locks.AbstractQueuedSynchronizer$Node::casNext (13 bytes) +Event: 47.621 Thread 0x000002196f1e3f70 nmethod 2755 0x000002195dde2610 code [0x000002195dde27c0, 0x000002195dde2920] + +GC Heap History (14 events): +Event: 6.161 GC heap before +{Heap before GC invocations=1 (full 0): + PSYoungGen total 29696K, used 25600K [0x00000000eab00000, 0x00000000ecc00000, 0x0000000100000000) + eden space 25600K, 100% used [0x00000000eab00000,0x00000000ec400000,0x00000000ec400000) + from space 4096K, 0% used [0x00000000ec800000,0x00000000ec800000,0x00000000ecc00000) + to space 4096K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000ec800000) + ParOldGen total 68608K, used 0K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000) + object space 68608K, 0% used [0x00000000c0000000,0x00000000c0000000,0x00000000c4300000) + Metaspace used 4361K, committed 4544K, reserved 1114112K + class space used 439K, committed 512K, reserved 1048576K +} +Event: 6.224 GC heap after +{Heap after GC invocations=1 (full 0): + PSYoungGen total 29696K, used 3205K [0x00000000eab00000, 0x00000000ecc00000, 0x0000000100000000) + eden space 25600K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec400000) + from space 4096K, 78% used [0x00000000ec400000,0x00000000ec7217f0,0x00000000ec800000) + to space 4096K, 0% used [0x00000000ec800000,0x00000000ec800000,0x00000000ecc00000) + ParOldGen total 68608K, used 8K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000) + object space 68608K, 0% used [0x00000000c0000000,0x00000000c0002000,0x00000000c4300000) + Metaspace used 4361K, committed 4544K, reserved 1114112K + class space used 439K, committed 512K, reserved 1048576K +} +Event: 30.036 GC heap before +{Heap before GC invocations=2 (full 0): + PSYoungGen total 29696K, used 28805K [0x00000000eab00000, 0x00000000ecc00000, 0x0000000100000000) + eden space 25600K, 100% used [0x00000000eab00000,0x00000000ec400000,0x00000000ec400000) + from space 4096K, 78% used [0x00000000ec400000,0x00000000ec7217f0,0x00000000ec800000) + to space 4096K, 0% used [0x00000000ec800000,0x00000000ec800000,0x00000000ecc00000) + ParOldGen total 68608K, used 8K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000) + object space 68608K, 0% used [0x00000000c0000000,0x00000000c0002000,0x00000000c4300000) + Metaspace used 8179K, committed 8448K, reserved 1114112K + class space used 811K, committed 960K, reserved 1048576K +} +Event: 30.114 GC heap after +{Heap after GC invocations=2 (full 0): + PSYoungGen total 29696K, used 4085K [0x00000000eab00000, 0x00000000ecc00000, 0x0000000100000000) + eden space 25600K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec400000) + from space 4096K, 99% used [0x00000000ec800000,0x00000000ecbfd7e0,0x00000000ecc00000) + to space 4096K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000ec800000) + ParOldGen total 68608K, used 848K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000) + object space 68608K, 1% used [0x00000000c0000000,0x00000000c00d41e0,0x00000000c4300000) + Metaspace used 8179K, committed 8448K, reserved 1114112K + class space used 811K, committed 960K, reserved 1048576K +} +Event: 33.000 GC heap before +{Heap before GC invocations=3 (full 0): + PSYoungGen total 29696K, used 29685K [0x00000000eab00000, 0x00000000ecc00000, 0x0000000100000000) + eden space 25600K, 100% used [0x00000000eab00000,0x00000000ec400000,0x00000000ec400000) + from space 4096K, 99% used [0x00000000ec800000,0x00000000ecbfd7e0,0x00000000ecc00000) + to space 4096K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000ec800000) + ParOldGen total 68608K, used 848K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000) + object space 68608K, 1% used [0x00000000c0000000,0x00000000c00d41e0,0x00000000c4300000) + Metaspace used 12982K, committed 13568K, reserved 1114112K + class space used 1301K, committed 1536K, reserved 1048576K +} +Event: 33.010 GC heap after +{Heap after GC invocations=3 (full 0): + PSYoungGen total 29696K, used 4084K [0x00000000eab00000, 0x00000000ecc00000, 0x0000000100000000) + eden space 25600K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec400000) + from space 4096K, 99% used [0x00000000ec400000,0x00000000ec7fd050,0x00000000ec800000) + to space 4096K, 0% used [0x00000000ec800000,0x00000000ec800000,0x00000000ecc00000) + ParOldGen total 68608K, used 2690K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000) + object space 68608K, 3% used [0x00000000c0000000,0x00000000c02a0b68,0x00000000c4300000) + Metaspace used 12982K, committed 13568K, reserved 1114112K + class space used 1301K, committed 1536K, reserved 1048576K +} +Event: 37.757 GC heap before +{Heap before GC invocations=4 (full 0): + PSYoungGen total 29696K, used 29684K [0x00000000eab00000, 0x00000000ecc00000, 0x0000000100000000) + eden space 25600K, 100% used [0x00000000eab00000,0x00000000ec400000,0x00000000ec400000) + from space 4096K, 99% used [0x00000000ec400000,0x00000000ec7fd050,0x00000000ec800000) + to space 4096K, 0% used [0x00000000ec800000,0x00000000ec800000,0x00000000ecc00000) + ParOldGen total 68608K, used 2690K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000) + object space 68608K, 3% used [0x00000000c0000000,0x00000000c02a0b68,0x00000000c4300000) + Metaspace used 17009K, committed 17664K, reserved 1114112K + class space used 1699K, committed 1984K, reserved 1048576K +} +Event: 37.765 GC heap after +{Heap after GC invocations=4 (full 0): + PSYoungGen total 29696K, used 4087K [0x00000000eab00000, 0x00000000ecc00000, 0x0000000100000000) + eden space 25600K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec400000) + from space 4096K, 99% used [0x00000000ec800000,0x00000000ecbfdef8,0x00000000ecc00000) + to space 4096K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000ec800000) + ParOldGen total 68608K, used 5374K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000) + object space 68608K, 7% used [0x00000000c0000000,0x00000000c053fb80,0x00000000c4300000) + Metaspace used 17009K, committed 17664K, reserved 1114112K + class space used 1699K, committed 1984K, reserved 1048576K +} +Event: 41.972 GC heap before +{Heap before GC invocations=5 (full 0): + PSYoungGen total 29696K, used 29687K [0x00000000eab00000, 0x00000000ecc00000, 0x0000000100000000) + eden space 25600K, 100% used [0x00000000eab00000,0x00000000ec400000,0x00000000ec400000) + from space 4096K, 99% used [0x00000000ec800000,0x00000000ecbfdef8,0x00000000ecc00000) + to space 4096K, 0% used [0x00000000ec400000,0x00000000ec400000,0x00000000ec800000) + ParOldGen total 68608K, used 5374K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000) + object space 68608K, 7% used [0x00000000c0000000,0x00000000c053fb80,0x00000000c4300000) + Metaspace used 20325K, committed 20992K, reserved 1114112K + class space used 1928K, committed 2176K, reserved 1048576K +} +Event: 44.000 GC heap after +{Heap after GC invocations=5 (full 0): + PSYoungGen total 29696K, used 4088K [0x00000000eab00000, 0x00000000ecc00000, 0x0000000100000000) + eden space 25600K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec400000) + from space 4096K, 99% used [0x00000000ec400000,0x00000000ec7fe2f0,0x00000000ec800000) + to space 4096K, 0% used [0x00000000ec800000,0x00000000ec800000,0x00000000ecc00000) + ParOldGen total 68608K, used 5809K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000) + object space 68608K, 8% used [0x00000000c0000000,0x00000000c05ac710,0x00000000c4300000) + Metaspace used 20325K, committed 20992K, reserved 1114112K + class space used 1928K, committed 2176K, reserved 1048576K +} +Event: 44.093 GC heap before +{Heap before GC invocations=6 (full 0): + PSYoungGen total 29696K, used 9378K [0x00000000eab00000, 0x00000000ecc00000, 0x0000000100000000) + eden space 25600K, 20% used [0x00000000eab00000,0x00000000eb02a648,0x00000000ec400000) + from space 4096K, 99% used [0x00000000ec400000,0x00000000ec7fe2f0,0x00000000ec800000) + to space 4096K, 0% used [0x00000000ec800000,0x00000000ec800000,0x00000000ecc00000) + ParOldGen total 68608K, used 5809K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000) + object space 68608K, 8% used [0x00000000c0000000,0x00000000c05ac710,0x00000000c4300000) + Metaspace used 20859K, committed 21504K, reserved 1114112K + class space used 1969K, committed 2240K, reserved 1048576K +} +Event: 44.103 GC heap after +{Heap after GC invocations=6 (full 0): + PSYoungGen total 29184K, used 4090K [0x00000000eab00000, 0x00000000ecc80000, 0x0000000100000000) + eden space 25088K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec380000) + from space 4096K, 99% used [0x00000000ec800000,0x00000000ecbfe978,0x00000000ecc00000) + to space 4608K, 0% used [0x00000000ec380000,0x00000000ec380000,0x00000000ec800000) + ParOldGen total 68608K, used 5849K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000) + object space 68608K, 8% used [0x00000000c0000000,0x00000000c05b6710,0x00000000c4300000) + Metaspace used 20859K, committed 21504K, reserved 1114112K + class space used 1969K, committed 2240K, reserved 1048576K +} +Event: 44.103 GC heap before +{Heap before GC invocations=7 (full 1): + PSYoungGen total 29184K, used 4090K [0x00000000eab00000, 0x00000000ecc80000, 0x0000000100000000) + eden space 25088K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec380000) + from space 4096K, 99% used [0x00000000ec800000,0x00000000ecbfe978,0x00000000ecc00000) + to space 4608K, 0% used [0x00000000ec380000,0x00000000ec380000,0x00000000ec800000) + ParOldGen total 68608K, used 5849K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000) + object space 68608K, 8% used [0x00000000c0000000,0x00000000c05b6710,0x00000000c4300000) + Metaspace used 20859K, committed 21504K, reserved 1114112K + class space used 1969K, committed 2240K, reserved 1048576K +} +Event: 44.310 GC heap after +{Heap after GC invocations=7 (full 1): + PSYoungGen total 29184K, used 0K [0x00000000eab00000, 0x00000000ecc80000, 0x0000000100000000) + eden space 25088K, 0% used [0x00000000eab00000,0x00000000eab00000,0x00000000ec380000) + from space 4096K, 0% used [0x00000000ec800000,0x00000000ec800000,0x00000000ecc00000) + to space 4608K, 0% used [0x00000000ec380000,0x00000000ec380000,0x00000000ec800000) + ParOldGen total 68608K, used 8377K [0x00000000c0000000, 0x00000000c4300000, 0x00000000eab00000) + object space 68608K, 12% used [0x00000000c0000000,0x00000000c082e728,0x00000000c4300000) + Metaspace used 20846K, committed 21504K, reserved 1114112K + class space used 1965K, committed 2240K, reserved 1048576K +} + +Dll operation events (10 events): +Event: 0.348 Loaded shared library c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\java.dll +Event: 0.489 Loaded shared library c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\zip.dll +Event: 1.010 Loaded shared library C:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\instrument.dll +Event: 1.045 Loaded shared library C:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\net.dll +Event: 1.103 Loaded shared library C:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\nio.dll +Event: 1.116 Loaded shared library C:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\zip.dll +Event: 1.230 Loaded shared library C:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\jimage.dll +Event: 1.564 Loaded shared library c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\verify.dll +Event: 29.575 Loaded shared library C:\Users\jorda\AppData\Roaming\Code\User\globalStorage\redhat.java\1.41.1\config_ss_win\org.eclipse.equinox.launcher\org.eclipse.equinox.launcher.win32.win32.x86_64_1.2.1300.v20250331-1702\eclipse_11911.dll +Event: 36.735 Loaded shared library C:\Users\jorda\AppData\Local\Temp\jna-101312778\jna13287142480032780452.dll + +Deoptimization events (20 events): +Event: 37.655 Thread 0x00000219759bd420 Uncommon trap: trap_request=0xffffffde fr.pc=0x000002196544e05c relative=0x000000000000021c +Event: 37.655 Thread 0x00000219759bd420 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000002196544e05c method=java.util.regex.Pattern$BmpCharPropertyGreedy.match(Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z @ 70 c2 +Event: 37.655 Thread 0x00000219759bd420 DEOPT PACKING pc=0x000002196544e05c sp=0x0000007f68deefb0 +Event: 37.655 Thread 0x00000219759bd420 DEOPT UNPACKING pc=0x0000021964e23aa2 sp=0x0000007f68deef58 mode 2 +Event: 37.655 Thread 0x00000219759bd420 Uncommon trap: trap_request=0xffffffde fr.pc=0x000002196544e05c relative=0x000000000000021c +Event: 37.655 Thread 0x00000219759bd420 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000002196544e05c method=java.util.regex.Pattern$BmpCharPropertyGreedy.match(Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z @ 70 c2 +Event: 37.655 Thread 0x00000219759bd420 DEOPT PACKING pc=0x000002196544e05c sp=0x0000007f68def140 +Event: 37.655 Thread 0x00000219759bd420 DEOPT UNPACKING pc=0x0000021964e23aa2 sp=0x0000007f68def0e8 mode 2 +Event: 37.655 Thread 0x00000219759bd420 Uncommon trap: trap_request=0xffffffde fr.pc=0x000002196544e05c relative=0x000000000000021c +Event: 37.655 Thread 0x00000219759bd420 Uncommon trap: reason=class_check action=maybe_recompile pc=0x000002196544e05c method=java.util.regex.Pattern$BmpCharPropertyGreedy.match(Ljava/util/regex/Matcher;ILjava/lang/CharSequence;)Z @ 70 c2 +Event: 37.655 Thread 0x00000219759bd420 DEOPT PACKING pc=0x000002196544e05c sp=0x0000007f68deefc0 +Event: 37.655 Thread 0x00000219759bd420 DEOPT UNPACKING pc=0x0000021964e23aa2 sp=0x0000007f68deef68 mode 2 +Event: 41.942 Thread 0x00000219759bd420 Uncommon trap: trap_request=0xffffff45 fr.pc=0x000002196547cd84 relative=0x0000000000000164 +Event: 41.942 Thread 0x00000219759bd420 Uncommon trap: reason=unstable_if action=reinterpret pc=0x000002196547cd84 method=org.lombokweb.asm.ByteVector.putByteArray([BII)Lorg/lombokweb/asm/ByteVector; @ 20 c2 +Event: 41.942 Thread 0x00000219759bd420 DEOPT PACKING pc=0x000002196547cd84 sp=0x0000007f68dee660 +Event: 41.942 Thread 0x00000219759bd420 DEOPT UNPACKING pc=0x0000021964e23aa2 sp=0x0000007f68dee630 mode 2 +Event: 44.002 Thread 0x00000219759bd420 Uncommon trap: trap_request=0xffffff45 fr.pc=0x0000021965452f10 relative=0x0000000000000210 +Event: 44.002 Thread 0x00000219759bd420 Uncommon trap: reason=unstable_if action=reinterpret pc=0x0000021965452f10 method=java.util.concurrent.locks.ReentrantLock$NonfairSync.initialTryLock()Z @ 25 c2 +Event: 44.002 Thread 0x00000219759bd420 DEOPT PACKING pc=0x0000021965452f10 sp=0x0000007f68df27c0 +Event: 44.002 Thread 0x00000219759bd420 DEOPT UNPACKING pc=0x0000021964e23aa2 sp=0x0000007f68df2620 mode 2 + +Classes loaded (20 events): +Event: 37.686 Loading class java/io/StringReader +Event: 37.686 Loading class java/io/StringReader done +Event: 37.693 Loading class java/util/zip/GZIPInputStream +Event: 37.693 Loading class java/util/zip/GZIPInputStream done +Event: 37.701 Loading class java/net/SocketTimeoutException +Event: 37.701 Loading class java/io/InterruptedIOException +Event: 37.702 Loading class java/io/InterruptedIOException done +Event: 37.702 Loading class java/net/SocketTimeoutException done +Event: 37.702 Loading class java/net/SocketException +Event: 37.702 Loading class java/net/SocketException done +Event: 37.702 Loading class java/net/UnknownHostException +Event: 37.702 Loading class java/net/UnknownHostException done +Event: 37.702 Loading class java/net/ProtocolException +Event: 37.702 Loading class java/net/ProtocolException done +Event: 37.733 Loading class java/lang/ThreadLocal$SuppliedThreadLocal +Event: 37.733 Loading class java/lang/ThreadLocal$SuppliedThreadLocal done +Event: 37.740 Loading class java/io/FileWriter +Event: 37.740 Loading class java/io/FileWriter done +Event: 38.861 Loading class java/lang/NegativeArraySizeException +Event: 38.862 Loading class java/lang/NegativeArraySizeException done + +Classes unloaded (7 events): +Event: 44.122 Thread 0x000002196f1b27a0 Unloading class 0x0000021901182800 'java/lang/invoke/LambdaForm$MH+0x0000021901182800' +Event: 44.123 Thread 0x000002196f1b27a0 Unloading class 0x0000021901182400 'java/lang/invoke/LambdaForm$MH+0x0000021901182400' +Event: 44.123 Thread 0x000002196f1b27a0 Unloading class 0x0000021901182000 'java/lang/invoke/LambdaForm$MH+0x0000021901182000' +Event: 44.123 Thread 0x000002196f1b27a0 Unloading class 0x0000021901181c00 'java/lang/invoke/LambdaForm$MH+0x0000021901181c00' +Event: 44.123 Thread 0x000002196f1b27a0 Unloading class 0x0000021901181800 'java/lang/invoke/LambdaForm$BMH+0x0000021901181800' +Event: 44.123 Thread 0x000002196f1b27a0 Unloading class 0x0000021901181400 'java/lang/invoke/LambdaForm$DMH+0x0000021901181400' +Event: 44.123 Thread 0x000002196f1b27a0 Unloading class 0x0000021901180400 'java/lang/invoke/LambdaForm$DMH+0x0000021901180400' + +Classes redefined (0 events): +No events + +Internal exceptions (20 events): +Event: 33.901 Thread 0x00000219759bd420 Exception (0x00000000eb5185e0) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 34.585 Thread 0x00000219759bd420 Exception (0x00000000eb67a360) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 36.858 Thread 0x00000219759bd420 Exception (0x00000000eb799ef8) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 36.859 Thread 0x00000219759bd420 Exception (0x00000000eb79d888) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 36.860 Thread 0x00000219759bd420 Exception (0x00000000eb7a45c0) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 36.903 Thread 0x00000219759bd420 Exception (0x00000000eb8b6848) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 37.004 Thread 0x00000219759bd420 Exception (0x00000000eb9ac710) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 37.005 Thread 0x00000219759bd420 Exception (0x00000000eb9b4128) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 37.005 Thread 0x00000219759bd420 Exception (0x00000000eb9b7f88) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 37.026 Thread 0x00000219759bd420 Exception (0x00000000eba29558) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 37.053 Thread 0x00000219759bd420 Exception (0x00000000ebaaaca0) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 840] +Event: 37.416 Thread 0x00000219759bd420 Exception (0x00000000ebac1078) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 37.418 Thread 0x00000219759bd420 Exception (0x00000000ebac8ba0) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 37.420 Thread 0x00000219759bd420 Exception (0x00000000ebacc690) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 37.422 Thread 0x00000219757101c0 Exception (0x00000000eb9ee790) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 37.423 Thread 0x00000219757101c0 Exception (0x00000000eb9f54c8) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 37.500 Thread 0x00000219759bd420 Exception (0x00000000ebbcf728) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 37.624 Thread 0x00000219759bd420 Exception (0x00000000ebeaf950) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 37.625 Thread 0x00000219759bd420 Exception (0x00000000ebeb3010) +thrown [s\src\hotspot\share\interpreter\linkResolver.cpp, line 773] +Event: 41.942 Thread 0x00000219759bd420 Implicit null exception at 0x000002196547cc75 to 0x000002196547cd68 + +ZGC Phase Switch (0 events): +No events + +VM Operations (20 events): +Event: 33.246 Executing VM operation: HandshakeAllThreads (Deoptimize) +Event: 33.246 Executing VM operation: HandshakeAllThreads (Deoptimize) done +Event: 34.051 Executing VM operation: HandshakeAllThreads (Deoptimize) +Event: 34.051 Executing VM operation: HandshakeAllThreads (Deoptimize) done +Event: 34.051 Executing VM operation: Cleanup +Event: 34.051 Executing VM operation: Cleanup done +Event: 35.052 Executing VM operation: Cleanup +Event: 35.052 Executing VM operation: Cleanup done +Event: 36.808 Executing VM operation: HandshakeAllThreads (Deoptimize) +Event: 36.808 Executing VM operation: HandshakeAllThreads (Deoptimize) done +Event: 37.757 Executing VM operation: ParallelGCFailedAllocation (Allocation Failure) +Event: 37.765 Executing VM operation: ParallelGCFailedAllocation (Allocation Failure) done +Event: 38.766 Executing VM operation: Cleanup +Event: 38.841 Executing VM operation: Cleanup done +Event: 41.868 Executing VM operation: Cleanup +Event: 41.868 Executing VM operation: Cleanup done +Event: 41.972 Executing VM operation: ParallelGCFailedAllocation (Allocation Failure) +Event: 44.001 Executing VM operation: ParallelGCFailedAllocation (Allocation Failure) done +Event: 44.092 Executing VM operation: CollectForMetadataAllocation (Metadata GC Threshold) +Event: 44.310 Executing VM operation: CollectForMetadataAllocation (Metadata GC Threshold) done + +Memory protections (0 events): +No events + +Nmethod flushes (0 events): +No events + +Events (20 events): +Event: 0.504 Thread 0x000002195a6719c0 Thread added: 0x000002196f1d0190 +Event: 0.504 Thread 0x000002195a6719c0 Thread added: 0x000002196f1d0de0 +Event: 0.519 Thread 0x000002195a6719c0 Thread added: 0x000002196f1d9a60 +Event: 0.529 Thread 0x000002195a6719c0 Thread added: 0x000002196f1dff60 +Event: 0.529 Thread 0x000002195a6719c0 Thread added: 0x000002196f1e1b50 +Event: 0.529 Thread 0x000002195a6719c0 Thread added: 0x000002196f1e3f70 +Event: 0.632 Thread 0x000002195a6719c0 Thread added: 0x00000219750b0f30 +Event: 2.113 Thread 0x000002195a6719c0 Thread added: 0x000002197532f9a0 +Event: 8.818 Thread 0x000002195a6719c0 Thread added: 0x00000219757ea170 +Event: 29.405 Thread 0x000002195a6719c0 Thread added: 0x00000219759bbdc0 +Event: 29.480 Thread 0x000002195a6719c0 Thread added: 0x00000219759bd420 +Event: 29.909 Thread 0x00000219759bd420 Thread added: 0x00000219759e6330 +Event: 30.656 Thread 0x00000219759bd420 Thread added: 0x00000219754a5d40 +Event: 32.251 Thread 0x00000219759bd420 Thread added: 0x00000219757c50a0 +Event: 36.544 Thread 0x00000219754a5d40 Thread exited: 0x00000219754a5d40 +Event: 36.874 Thread 0x00000219759bd420 Thread added: 0x0000021975a5d8a0 +Event: 37.015 Thread 0x00000219759bd420 Thread added: 0x00000219757101c0 +Event: 37.426 Thread 0x00000219759bd420 Thread added: 0x0000021975af0020 +Event: 37.428 Thread 0x00000219759bd420 Thread added: 0x0000021975c1a6f0 +Event: 44.002 Thread 0x0000021975c1a6f0 Thread exited: 0x0000021975c1a6f0 + + +Dynamic libraries: +0x00007ff6cff30000 - 0x00007ff6cff3e000 c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\java.exe +0x00007ffd9c900000 - 0x00007ffd9cb66000 C:\WINDOWS\SYSTEM32\ntdll.dll +0x00007ffd9b730000 - 0x00007ffd9b7f9000 C:\WINDOWS\System32\KERNEL32.DLL +0x00007ffd9a0f0000 - 0x00007ffd9a4bc000 C:\WINDOWS\System32\KERNELBASE.dll +0x00007ffd99e20000 - 0x00007ffd99f6b000 C:\WINDOWS\System32\ucrtbase.dll +0x00007ffd8e760000 - 0x00007ffd8e77e000 c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\VCRUNTIME140.dll +0x00007ffd8da90000 - 0x00007ffd8daa8000 c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\jli.dll +0x00007ffd9ba70000 - 0x00007ffd9bc3a000 C:\WINDOWS\System32\USER32.dll +0x00007ffd99c10000 - 0x00007ffd99c37000 C:\WINDOWS\System32\win32u.dll +0x00007ffd7df20000 - 0x00007ffd7e1ba000 C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.3912_none_3e07963ce335137e\COMCTL32.dll +0x00007ffd9af10000 - 0x00007ffd9af3b000 C:\WINDOWS\System32\GDI32.dll +0x00007ffd9b9c0000 - 0x00007ffd9ba69000 C:\WINDOWS\System32\msvcrt.dll +0x00007ffd9a580000 - 0x00007ffd9a6b2000 C:\WINDOWS\System32\gdi32full.dll +0x00007ffd99cd0000 - 0x00007ffd99d73000 C:\WINDOWS\System32\msvcp_win.dll +0x00007ffd9b6f0000 - 0x00007ffd9b720000 C:\WINDOWS\System32\IMM32.DLL +0x00007ffd8e7c0000 - 0x00007ffd8e7cc000 c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\vcruntime140_1.dll +0x00007ffd0e7d0000 - 0x00007ffd0e85d000 c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\msvcp140.dll +0x00007ffc9c510000 - 0x00007ffc9d2a0000 c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\server\jvm.dll +0x00007ffd9bfd0000 - 0x00007ffd9c082000 C:\WINDOWS\System32\ADVAPI32.dll +0x00007ffd9ace0000 - 0x00007ffd9ad86000 C:\WINDOWS\System32\sechost.dll +0x00007ffd9adf0000 - 0x00007ffd9af06000 C:\WINDOWS\System32\RPCRT4.dll +0x00007ffd9b0c0000 - 0x00007ffd9b134000 C:\WINDOWS\System32\WS2_32.dll +0x00007ffd99360000 - 0x00007ffd993be000 C:\WINDOWS\SYSTEM32\POWRPROF.dll +0x00007ffd7e640000 - 0x00007ffd7e676000 C:\WINDOWS\SYSTEM32\WINMM.dll +0x00007ffd8ad90000 - 0x00007ffd8ad9b000 C:\WINDOWS\SYSTEM32\VERSION.dll +0x00007ffd99340000 - 0x00007ffd99354000 C:\WINDOWS\SYSTEM32\UMPDC.dll +0x00007ffd98820000 - 0x00007ffd9883a000 C:\WINDOWS\SYSTEM32\kernel.appcore.dll +0x00007ffd8da40000 - 0x00007ffd8da4a000 c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\jimage.dll +0x00007ffd941c0000 - 0x00007ffd94401000 C:\WINDOWS\SYSTEM32\DBGHELP.DLL +0x00007ffd9a8c0000 - 0x00007ffd9ac44000 C:\WINDOWS\System32\combase.dll +0x00007ffd9c7d0000 - 0x00007ffd9c8b0000 C:\WINDOWS\System32\OLEAUT32.dll +0x00007ffd7abf0000 - 0x00007ffd7ac29000 C:\WINDOWS\SYSTEM32\dbgcore.DLL +0x00007ffd99d80000 - 0x00007ffd99e19000 C:\WINDOWS\System32\bcryptPrimitives.dll +0x00007ffd8d110000 - 0x00007ffd8d11f000 c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\instrument.dll +0x00007ffd7db20000 - 0x00007ffd7db3f000 c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\java.dll +0x00007ffd9c090000 - 0x00007ffd9c7bd000 C:\WINDOWS\System32\SHELL32.dll +0x00007ffd99a90000 - 0x00007ffd99c04000 C:\WINDOWS\System32\wintypes.dll +0x00007ffd976e0000 - 0x00007ffd97f36000 C:\WINDOWS\SYSTEM32\windows.storage.dll +0x00007ffd9be40000 - 0x00007ffd9bf2f000 C:\WINDOWS\System32\SHCORE.dll +0x00007ffd9b140000 - 0x00007ffd9b1a9000 C:\WINDOWS\System32\shlwapi.dll +0x00007ffd999a0000 - 0x00007ffd999cf000 C:\WINDOWS\SYSTEM32\profapi.dll +0x00007ffd7d0d0000 - 0x00007ffd7d0e8000 c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\zip.dll +0x00007ffd8d100000 - 0x00007ffd8d110000 C:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\net.dll +0x00007ffd8e160000 - 0x00007ffd8e27e000 C:\WINDOWS\SYSTEM32\WINHTTP.dll +0x00007ffd98dc0000 - 0x00007ffd98e2a000 C:\WINDOWS\system32\mswsock.dll +0x00007ffd6f270000 - 0x00007ffd6f286000 C:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\nio.dll +0x00007ffd82b20000 - 0x00007ffd82b30000 c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\verify.dll +0x00007ffd4a5b0000 - 0x00007ffd4a5f5000 C:\Users\jorda\AppData\Roaming\Code\User\globalStorage\redhat.java\1.41.1\config_ss_win\org.eclipse.equinox.launcher\org.eclipse.equinox.launcher.win32.win32.x86_64_1.2.1300.v20250331-1702\eclipse_11911.dll +0x00007ffd9a710000 - 0x00007ffd9a8af000 C:\WINDOWS\System32\ole32.dll +0x00007ffd99060000 - 0x00007ffd9907c000 C:\WINDOWS\SYSTEM32\CRYPTSP.dll +0x00007ffd98780000 - 0x00007ffd987ba000 C:\WINDOWS\system32\rsaenh.dll +0x00007ffd98e60000 - 0x00007ffd98e8b000 C:\WINDOWS\SYSTEM32\USERENV.dll +0x00007ffd99970000 - 0x00007ffd99996000 C:\WINDOWS\SYSTEM32\bcrypt.dll +0x00007ffd99080000 - 0x00007ffd9908c000 C:\WINDOWS\SYSTEM32\CRYPTBASE.dll +0x00007ffd98230000 - 0x00007ffd98263000 C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL +0x00007ffd9c7c0000 - 0x00007ffd9c7ca000 C:\WINDOWS\System32\NSI.dll +0x00007ffd4a560000 - 0x00007ffd4a5a9000 C:\Users\jorda\AppData\Local\Temp\jna-101312778\jna13287142480032780452.dll +0x00007ffd9bf40000 - 0x00007ffd9bf48000 C:\WINDOWS\System32\PSAPI.DLL + +dbghelp: loaded successfully - version: 4.0.5 - missing functions: none +symbol engine: initialized successfully - sym options: 0x614 - pdb path: .;c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin;C:\WINDOWS\SYSTEM32;C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.26100.3912_none_3e07963ce335137e;c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\jre\21.0.6-win32-x86_64\bin\server;C:\Users\jorda\AppData\Roaming\Code\User\globalStorage\redhat.java\1.41.1\config_ss_win\org.eclipse.equinox.launcher\org.eclipse.equinox.launcher.win32.win32.x86_64_1.2.1300.v20250331-1702;C:\Users\jorda\AppData\Local\Temp\jna-101312778 + +VM Arguments: +jvm_args: --add-modules=ALL-SYSTEM --add-opens=java.base/java.util=ALL-UNNAMED --add-opens=java.base/java.lang=ALL-UNNAMED --add-opens=java.base/sun.nio.fs=ALL-UNNAMED -Declipse.application=org.eclipse.jdt.ls.core.id1 -Dosgi.bundles.defaultStartLevel=4 -Declipse.product=org.eclipse.jdt.ls.core.product -Djava.import.generatesMetadataFilesAtProjectRoot=false -DDetectVMInstallationsJob.disabled=true -Dfile.encoding=utf8 -XX:+UseParallelGC -XX:GCTimeRatio=4 -XX:AdaptiveSizePolicyWeight=90 -Dsun.zip.disableMemoryMapping=true -Xmx1G -Xms100m -Xlog:disable -javaagent:c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\lombok\lombok-1.18.36.jar +java_command: c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.7.0.v20250331-1702.jar -configuration c:\Users\jorda\AppData\Roaming\Code\User\globalStorage\redhat.java\1.41.1\config_ss_win -data c:\Users\jorda\AppData\Roaming\Code\User\workspaceStorage\f0324213c61b0eaf7655e2d81f50bb23\redhat.java\ss_ws --pipe=\\.\pipe\lsp-9bc2839c2037285198ebb3b0a6686f34-sock +java_class_path (initial): c:\Users\jorda\.vscode\extensions\redhat.java-1.41.1-win32-x64\server\plugins\org.eclipse.equinox.launcher_1.7.0.v20250331-1702.jar +Launcher Type: SUN_STANDARD + +[Global flags] + uintx AdaptiveSizePolicyWeight = 90 {product} {command line} + intx CICompilerCount = 4 {product} {ergonomic} + uintx GCTimeRatio = 4 {product} {command line} + size_t InitialHeapSize = 104857600 {product} {command line} + size_t MaxHeapSize = 1073741824 {product} {command line} + size_t MaxNewSize = 357564416 {product} {ergonomic} + size_t MinHeapDeltaBytes = 524288 {product} {ergonomic} + size_t MinHeapSize = 104857600 {product} {command line} + size_t NewSize = 34603008 {product} {ergonomic} + uintx NonNMethodCodeHeapSize = 5839372 {pd product} {ergonomic} + uintx NonProfiledCodeHeapSize = 122909434 {pd product} {ergonomic} + size_t OldSize = 70254592 {product} {ergonomic} + uintx ProfiledCodeHeapSize = 122909434 {pd product} {ergonomic} + uintx ReservedCodeCacheSize = 251658240 {pd product} {ergonomic} + bool SegmentedCodeCache = true {product} {ergonomic} + size_t SoftMaxHeapSize = 1073741824 {manageable} {ergonomic} + bool UseCompressedOops = true {product lp64_product} {ergonomic} + bool UseLargePagesIndividualAllocation = false {pd product} {ergonomic} + bool UseParallelGC = true {product} {command line} + +Logging: +Log output configuration: + #0: stdout all=off uptime,level,tags foldmultilines=false + #1: stderr all=off uptime,level,tags foldmultilines=false + +Environment Variables: +PATH=C:\Program Files\Common Files\Oracle\Java\javapath;C:\Program Files\Microsoft\jdk-11.0.12.7-hotspot\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\System32\WindowsPowerShell\v1.0\;C:\WINDOWS\System32\OpenSSH\;C:\Program Files\Intel\WiFi\bin\;C:\Program Files\Common Files\Intel\WirelessCommon\;C:\Program Files\Microsoft SQL Server\150\Tools\Binn\;C:\Program Files\Microsoft SQL Server\Client SDK\ODBC\170\Tools\Binn\;C:\Program Files\dotnet\;C:\Program Files\Git\cmd;C:\Program Files\MongoDB\mongosh-2.1.5-win32-x64\bin;C:\Users\jorda\AppData\Local\Programs\Python\Python313\Scripts\;C:\Users\jorda\AppData\Local\Programs\Python\Python313\;C:\Program Files\MySQL\MySQL Shell 8.0\bin\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python39_64\Scripts\;C:\Users\jorda\AppData\Local\Programs\Microsoft VS Code\bin;C:\Users\jorda\.dotnet\tools;C:\Users\jorda\AppData\Local\GitHubDesktop\bin;C:\Users\jorda\AppData\Local\Microsoft\WindowsApps; +USERNAME=jorda +OS=Windows_NT +PROCESSOR_IDENTIFIER=Intel64 Family 6 Model 142 Stepping 12, GenuineIntel +TMP=C:\Users\jorda\AppData\Local\Temp +TEMP=C:\Users\jorda\AppData\Local\Temp + + + + +Periodic native trim disabled + +--------------- S Y S T E M --------------- + +OS: + Windows 11 , 64 bit Build 26100 (10.0.26100.3912) +OS uptime: 0 days 4:37 hours +Hyper-V role detected + +CPU: total 8 (initial active 8) (4 cores per cpu, 2 threads per core) family 6 model 142 stepping 12 microcode 0xde, 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, fma, vzeroupper, clflush, clflushopt, hv, rdtscp, f16c +Processor Information for the first 8 processors : + Max Mhz: 1800, Current Mhz: 1500, Mhz Limit: 1584 + +Memory: 4k page, system-wide physical 3946M (355M free) +TotalPageFile size 16234M (AvailPageFile size 5M) +current process WorkingSet (physical memory assigned to process): 119M, peak: 119M +current process commit charge ("private bytes"): 237M, peak: 238M + +vm_info: OpenJDK 64-Bit Server VM (21.0.6+7-LTS) for windows-amd64 JRE (21.0.6+7-LTS), built on 2025-01-21T00:00:00Z by "admin" with MS VC++ 17.7 (VS2022) + +END. diff --git a/Leetcode_practice/replay_pid6732.log b/Leetcode_practice/replay_pid6732.log new file mode 100644 index 0000000..4fb6c4c --- /dev/null +++ b/Leetcode_practice/replay_pid6732.log @@ -0,0 +1,3720 @@ +version 2 +JvmtiExport can_access_local_variables 0 +JvmtiExport can_hotswap_or_post_breakpoint 1 +JvmtiExport can_post_on_exceptions 0 +# 486 ciObject found +instanceKlass org/lombokweb/asm/ClassReader +ciInstanceKlass java/lang/Cloneable 1 0 7 100 1 100 1 1 1 +instanceKlass org/eclipse/jdt/internal/core/util/ICacheEnumeration +instanceKlass org/eclipse/jdt/internal/formatter/TokenTraverser +instanceKlass org/eclipse/text/edits/TextEdit +instanceKlass org/eclipse/jdt/core/formatter/CodeFormatter +instanceKlass lombok/patcher/scripts/WrapperMethodDescriptor +instanceKlass lombok/patcher/scripts/SetSymbolDuringMethodCallScript$1 +instanceKlass org/eclipse/jdt/core/SourceRange +instanceKlass org/eclipse/jdt/internal/compiler/util/JRTUtil$JrtFileVisitor +instanceKlass org/eclipse/jdt/core/IOrdinaryClassFile +instanceKlass org/eclipse/jdt/internal/core/util/ReferenceInfoAdapter +instanceKlass org/eclipse/jdt/internal/compiler/ISourceElementRequestor +instanceKlass org/eclipse/jdt/core/search/TypeNameMatchRequestor +instanceKlass org/eclipse/jdt/internal/compiler/env/ISourceType +instanceKlass org/eclipse/jdt/internal/compiler/env/IGenericType +instanceKlass org/eclipse/jdt/internal/compiler/problem/ProblemHandler +instanceKlass org/eclipse/jdt/core/search/MethodNameMatch +instanceKlass org/eclipse/jdt/core/search/IJavaSearchScope +instanceKlass org/eclipse/jdt/internal/compiler/ASTVisitor +instanceKlass org/eclipse/jdt/core/search/TypeNameMatch +instanceKlass org/eclipse/jdt/core/search/SearchParticipant +instanceKlass org/eclipse/jdt/internal/core/search/IndexQueryRequestor +instanceKlass org/eclipse/jdt/core/search/SearchPattern +instanceKlass org/eclipse/jdt/core/search/IParallelizable +instanceKlass org/eclipse/jdt/internal/core/search/BasicSearchEngine +instanceKlass org/eclipse/jdt/core/ITypeParameter +instanceKlass org/eclipse/jdt/core/ISourceRange +instanceKlass org/eclipse/jdt/core/IAnnotation +instanceKlass org/eclipse/jdt/internal/core/AbstractModule +instanceKlass org/eclipse/jdt/core/IModuleDescription +instanceKlass org/eclipse/jdt/internal/core/NameLookup +instanceKlass org/eclipse/jface/text/IDocument +instanceKlass org/eclipse/jdt/internal/core/JavaModelCache$1 +instanceKlass org/eclipse/jdt/internal/compiler/env/IBinaryInfo +instanceKlass org/eclipse/jdt/internal/core/JavaModelCache +instanceKlass org/eclipse/jdt/core/IType +instanceKlass org/eclipse/jdt/core/IAnnotatable +instanceKlass org/eclipse/jdt/core/IMember +instanceKlass org/eclipse/jdt/internal/core/hierarchy/HierarchyBuilder +instanceKlass org/eclipse/jdt/internal/core/hierarchy/TypeHierarchy +instanceKlass org/eclipse/jdt/core/ITypeHierarchy +instanceKlass org/eclipse/jdt/core/dom/ASTNode +instanceKlass org/eclipse/jdt/core/dom/StructuralPropertyDescriptor +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/RewriteEvent +instanceKlass org/eclipse/jdt/internal/core/dom/rewrite/RewriteEventStore +instanceKlass org/eclipse/jdt/core/dom/ASTVisitor +instanceKlass org/eclipse/jdt/internal/core/DeltaProcessor +instanceKlass org/eclipse/jdt/internal/codeassist/CompletionEngine$1 +instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding ()V 46 argL0 ; # org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding$$Lambda+0x00000219012072e8 +instanceKlass org/eclipse/jdt/internal/compiler/lookup/ParameterNonNullDefaultProvider +instanceKlass org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding$3 +instanceKlass org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding$2 +instanceKlass org/eclipse/jdt/internal/compiler/lookup/ReductionResult +instanceKlass org/eclipse/jdt/internal/compiler/lookup/ElementValuePair +instanceKlass org/eclipse/jdt/internal/compiler/lookup/AnnotationBinding +instanceKlass org/eclipse/jdt/internal/compiler/env/IUpdatableModule +instanceKlass org/eclipse/jdt/internal/compiler/lookup/HotSwappable +instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeBindingVisitor +instanceKlass org/eclipse/jdt/internal/compiler/parser/ScannerHelper +instanceKlass org/eclipse/jdt/core/Signature +instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeConstants$CloseMethodRecord +instanceKlass org/eclipse/jdt/internal/core/IJavaElementRequestor +instanceKlass org/eclipse/jdt/internal/core/INamingRequestor +instanceKlass lombok/patcher/scripts/ReplaceMethodCallScript$1 +instanceKlass org/eclipse/jdt/core/CompletionRequestor +instanceKlass org/eclipse/jdt/internal/compiler/lookup/Substitution +instanceKlass org/eclipse/jdt/internal/codeassist/MissingTypesGuesser$GuessedTypeRequestor +instanceKlass org/eclipse/jdt/internal/codeassist/UnresolvedReferenceNameFinder$UnresolvedReferenceNameRequestor +instanceKlass org/eclipse/jdt/core/search/SearchRequestor +instanceKlass org/eclipse/jdt/core/CompletionProposal +instanceKlass org/eclipse/jdt/internal/codeassist/complete/CompletionNode +instanceKlass org/eclipse/jdt/internal/compiler/lookup/Binding +instanceKlass org/eclipse/jdt/internal/compiler/lookup/Scope +instanceKlass org/eclipse/jdt/core/compiler/IProblem +instanceKlass org/eclipse/jdt/core/CompletionContext +instanceKlass org/eclipse/jdt/internal/compiler/env/INameEnvironment +instanceKlass org/eclipse/jdt/internal/compiler/lookup/InvocationSite +instanceKlass org/eclipse/jdt/internal/compiler/ast/ASTNode +instanceKlass org/eclipse/jdt/internal/codeassist/impl/Engine +instanceKlass org/eclipse/jdt/internal/codeassist/ICompletionEngine +instanceKlass org/eclipse/jdt/internal/codeassist/RelevanceConstants +instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeConstants +instanceKlass org/eclipse/jdt/internal/codeassist/ISearchRequestor +instanceKlass org/eclipse/jdt/internal/compiler/impl/ReferenceContext +instanceKlass org/eclipse/jdt/internal/compiler/ICompilerRequestor +instanceKlass org/eclipse/jdt/internal/compiler/Compiler +instanceKlass org/eclipse/jdt/internal/compiler/problem/ProblemSeverities +instanceKlass org/eclipse/jdt/internal/compiler/impl/ITypeRequestor +instanceKlass org/eclipse/jdt/internal/core/builder/ClasspathLocation +instanceKlass org/eclipse/jdt/core/IBuffer +instanceKlass org/eclipse/jdt/core/IBufferFactory +instanceKlass org/eclipse/jdt/internal/core/BufferManager +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$8 +instanceKlass @bci org/eclipse/jdt/internal/core/JavaModelManager ()V 139 argL0 ; # org/eclipse/jdt/internal/core/JavaModelManager$$Lambda+0x00000219011e26a0 +instanceKlass @bci org/eclipse/jdt/internal/core/search/indexing/IndexNamesRegistry (Ljava/io/File;Lorg/eclipse/core/runtime/IPath;)V 24 member ; # org/eclipse/jdt/internal/core/search/indexing/IndexNamesRegistry$$Lambda+0x00000219011e2488 +instanceKlass org/eclipse/jdt/internal/core/search/indexing/IndexNamesRegistry +instanceKlass org/eclipse/jdt/internal/compiler/util/SimpleLookupTable +instanceKlass org/eclipse/jdt/internal/core/index/IndexLocation +instanceKlass org/eclipse/jdt/internal/core/search/indexing/IndexRequest +instanceKlass org/eclipse/jdt/internal/compiler/parser/Parser +instanceKlass org/eclipse/jdt/internal/compiler/lookup/TypeIds +instanceKlass org/eclipse/jdt/internal/compiler/ast/OperatorIds +instanceKlass org/eclipse/jdt/internal/compiler/parser/ConflictedParser +instanceKlass org/eclipse/jdt/internal/compiler/parser/ParserBasicInformation +instanceKlass org/eclipse/jdt/internal/compiler/IProblemFactory +instanceKlass org/eclipse/jdt/internal/core/search/processing/JobManager +instanceKlass org/eclipse/jdt/internal/core/search/indexing/IIndexConstants +instanceKlass @bci org/eclipse/jdt/internal/core/JavaModelManager ()V 404 argL0 ; # org/eclipse/jdt/internal/core/JavaModelManager$$Lambda+0x00000219011de730 +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$3 +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$2 +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$EclipsePreferencesListener +instanceKlass org/eclipse/jdt/core/IElementChangedListener +instanceKlass org/eclipse/jdt/internal/core/DeltaProcessingState +instanceKlass org/eclipse/jdt/internal/core/ExternalFoldersManager +instanceKlass org/eclipse/jdt/internal/core/util/Util$Comparer +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$CompilationParticipants +instanceKlass org/eclipse/jdt/internal/core/BatchInitializationMonitor +instanceKlass org/eclipse/jdt/internal/core/JavaModelOperation +instanceKlass org/eclipse/jdt/internal/codeassist/ISelectionRequestor +instanceKlass org/eclipse/jdt/internal/core/JavaElementInfo +instanceKlass org/eclipse/core/internal/jobs/JobQueue$2 +instanceKlass org/eclipse/jdt/core/IJavaModelStatus +instanceKlass org/eclipse/jdt/internal/compiler/env/IElementInfo +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager$1 +instanceKlass org/eclipse/jdt/core/IClassFile +instanceKlass org/eclipse/jdt/core/IPackageFragment +instanceKlass org/eclipse/jdt/internal/core/search/processing/IJob +instanceKlass org/eclipse/jdt/core/IAccessRule +instanceKlass org/eclipse/jdt/internal/core/util/LRUCache +instanceKlass org/eclipse/jdt/internal/core/search/IRestrictedAccessTypeRequestor +instanceKlass org/eclipse/jdt/core/IJavaElementDelta +instanceKlass org/eclipse/jdt/internal/compiler/util/SuffixConstants +instanceKlass org/eclipse/jdt/internal/compiler/env/ICompilationUnit +instanceKlass org/eclipse/jdt/internal/compiler/env/IDependent +instanceKlass org/eclipse/jdt/core/ICompilationUnit +instanceKlass org/eclipse/jdt/core/ISourceManipulation +instanceKlass org/eclipse/jdt/core/ITypeRoot +instanceKlass org/eclipse/jdt/core/ICodeAssist +instanceKlass org/eclipse/jdt/core/ISourceReference +instanceKlass org/lombokweb/asm/Handle +instanceKlass org/eclipse/jdt/core/IBufferChangedListener +instanceKlass org/eclipse/jdt/core/IPackageFragmentRoot +instanceKlass org/eclipse/jdt/internal/compiler/util/Util$Displayable +instanceKlass org/eclipse/jdt/core/IJavaProject +instanceKlass org/eclipse/jdt/core/IClasspathContainer +instanceKlass org/eclipse/jdt/internal/core/JavaModelManager +instanceKlass @bci java/util/Comparator thenComparing (Ljava/util/Comparator;)Ljava/util/Comparator; 7 member ; # java/util/Comparator$$Lambda+0x00000219010f98f8 +instanceKlass @cpi java/util/Comparator 251 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x00000219011d0800 +instanceKlass @bci java/util/Comparator comparingDouble (Ljava/util/function/ToDoubleFunction;)Ljava/util/Comparator; 6 member ; # java/util/Comparator$$Lambda+0x00000219010f9668 +instanceKlass @bci org/eclipse/jdt/core/JavaCore ()V 200 argL0 ; # org/eclipse/jdt/core/JavaCore$$Lambda+0x00000219011d2000 +instanceKlass @cpi org/eclipse/jdt/core/JavaCore 2468 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x00000219011d0400 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x00000219011d0000 +instanceKlass java/util/function/ToDoubleFunction +instanceKlass org/eclipse/jdt/core/compiler/CharOperation +instanceKlass org/eclipse/jdt/internal/compiler/impl/CompilerOptions +instanceKlass org/eclipse/jdt/core/IRegion +instanceKlass org/eclipse/jdt/core/IWorkingCopy +instanceKlass org/eclipse/jdt/core/IClasspathAttribute +instanceKlass org/eclipse/jdt/core/search/TypeNameRequestor +instanceKlass org/eclipse/jdt/core/IClasspathEntry +instanceKlass org/eclipse/jdt/internal/compiler/env/IModule +instanceKlass org/eclipse/jdt/core/IJavaModel +instanceKlass org/eclipse/jdt/core/IParent +instanceKlass org/eclipse/jdt/core/IOpenable +instanceKlass org/eclipse/jdt/core/IJavaElement +instanceKlass org/eclipse/core/resources/IWorkspaceRunnable +instanceKlass org/eclipse/core/internal/events/NodeIDMap +instanceKlass org/eclipse/core/internal/events/ResourceDeltaInfo +instanceKlass org/eclipse/core/internal/dtree/NodeComparison +instanceKlass org/eclipse/core/internal/events/ResourceComparator +instanceKlass org/eclipse/jdt/core/WorkingCopyOwner +instanceKlass org/eclipse/core/internal/events/ResourceDeltaFactory +instanceKlass org/eclipse/core/resources/IMarkerDelta +instanceKlass java/net/Authenticator +instanceKlass java/nio/channels/AsynchronousByteChannel +instanceKlass java/nio/channels/AsynchronousChannel +instanceKlass java/net/SocketAddress +instanceKlass org/eclipse/jdt/ls/core/internal/lsp/JavaProtocolExtensions +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219011cc800 +instanceKlass org/eclipse/jdt/ls/core/internal/syntaxserver/IExtendedProtocol +instanceKlass org/eclipse/lsp4j/services/WorkspaceService +instanceKlass org/eclipse/lsp4j/services/TextDocumentService +instanceKlass org/eclipse/lsp4j/services/LanguageServer +instanceKlass org/eclipse/jdt/ls/core/internal/BaseJDTLanguageServer +instanceKlass org/eclipse/jdt/ls/core/contentassist/ICompletionContributionService +instanceKlass org/eclipse/core/runtime/SubMonitor$RootInfo +instanceKlass org/eclipse/jdt/ls/core/internal/preferences/PreferenceManager +instanceKlass org/eclipse/core/runtime/SubMonitor +instanceKlass java/util/concurrent/locks/ReentrantReadWriteLock$Sync$HoldCounter +instanceKlass org/eclipse/core/resources/team/ResourceRuleFactory +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219011c9000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219011c8c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219011c8800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219011c8400 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x00000219011c8000 +instanceKlass org/eclipse/osgi/framework/util/CaseInsensitiveDictionaryMap$KeyIterator +instanceKlass org/eclipse/core/resources/IResourceChangeEvent +instanceKlass java/util/concurrent/atomic/Striped64$1 +instanceKlass jdk/internal/util/random/RandomSupport +instanceKlass @bci org/apache/felix/scr/impl/manager/ComponentContextImpl createNewFieldHandlerMap ()Ljava/util/Map; 4 argL0 ; # org/apache/felix/scr/impl/manager/ComponentContextImpl$$Lambda+0x000002190114ea80 +instanceKlass @bci org/eclipse/core/internal/runtime/InternalPlatform getLog (Lorg/osgi/framework/Bundle;)Lorg/eclipse/core/runtime/ILog; 13 member ; # org/eclipse/core/internal/runtime/InternalPlatform$$Lambda+0x00000219011c4000 +instanceKlass org/eclipse/core/internal/runtime/Log +instanceKlass org/eclipse/core/internal/preferences/BundleStateScope +instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler$Resolved +instanceKlass org/apache/felix/scr/impl/inject/field/FieldUtils$FieldSearchResult +instanceKlass org/apache/felix/scr/impl/inject/field/FieldUtils$1 +instanceKlass org/apache/felix/scr/impl/inject/field/FieldUtils +instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler$1 +instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler$ReferenceMethodImpl +instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler$NotResolved +instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler$State +instanceKlass org/apache/felix/scr/impl/inject/InitReferenceMethod +instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler +instanceKlass org/apache/felix/scr/impl/inject/field/FieldMethods +instanceKlass org/eclipse/core/internal/resources/CheckMissingNaturesListener +instanceKlass org/eclipse/core/internal/resources/ResourceChangeListenerRegistrar +instanceKlass org/eclipse/core/internal/resources/Rules +instanceKlass @bci org/eclipse/core/internal/jobs/JobManager startJob (Lorg/eclipse/core/internal/jobs/Worker;)Lorg/eclipse/core/runtime/jobs/Job; 45 ; # java/lang/invoke/LambdaForm$MH+0x00000219011bbc00 +instanceKlass @bci org/eclipse/core/internal/jobs/JobManager startJob (Lorg/eclipse/core/internal/jobs/Worker;)Lorg/eclipse/core/runtime/jobs/Job; 45 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x00000219011bb800 +instanceKlass @bci org/eclipse/core/internal/jobs/JobManager startJob (Lorg/eclipse/core/internal/jobs/Worker;)Lorg/eclipse/core/runtime/jobs/Job; 45 member ; # org/eclipse/core/internal/jobs/JobManager$$Lambda+0x0000021901162ca0 +instanceKlass @cpi org/eclipse/core/internal/jobs/JobManager 1512 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x00000219011bb400 +instanceKlass @bci org/eclipse/core/internal/jobs/JobManager endJob (Lorg/eclipse/core/internal/jobs/InternalJob;Lorg/eclipse/core/runtime/IStatus;ZZ)V 14 ; # java/lang/invoke/LambdaForm$MH+0x00000219011bb000 +instanceKlass @bci org/eclipse/core/internal/jobs/JobManager endJob (Lorg/eclipse/core/internal/jobs/InternalJob;Lorg/eclipse/core/runtime/IStatus;ZZ)V 14 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x00000219011bac00 +instanceKlass @bci org/eclipse/core/internal/jobs/JobManager endJob (Lorg/eclipse/core/internal/jobs/InternalJob;Lorg/eclipse/core/runtime/IStatus;ZZ)V 14 member ; # org/eclipse/core/internal/jobs/JobManager$$Lambda+0x0000021901162a68 +instanceKlass @cpi org/eclipse/core/internal/jobs/JobManager 1468 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x00000219011ba800 +instanceKlass @bci org/eclipse/core/internal/resources/AliasManager buildAliasedProjectsSet ()V 30 member ; # org/eclipse/core/internal/resources/AliasManager$$Lambda+0x00000219011bed50 +instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding ()V 46 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x00000219011ba400 +instanceKlass org/eclipse/core/internal/filesystem/FileStoreUtil +instanceKlass @bci org/eclipse/core/internal/resources/AliasManager$LocationMap (Lorg/eclipse/core/internal/resources/AliasManager;)V 14 argL0 ; # org/eclipse/core/internal/resources/AliasManager$LocationMap$$Lambda+0x00000219011beac8 +instanceKlass org/eclipse/core/internal/resources/AliasManager$LocationMap +instanceKlass org/eclipse/core/internal/resources/AliasManager +instanceKlass org/eclipse/core/resources/refresh/IRefreshMonitor +instanceKlass org/eclipse/core/internal/refresh/MonitorManager +instanceKlass org/eclipse/core/resources/IResourceDeltaVisitor +instanceKlass org/eclipse/core/resources/IPathVariableChangeListener +instanceKlass org/eclipse/core/internal/refresh/RefreshManager +instanceKlass org/eclipse/core/resources/refresh/IRefreshResult +instanceKlass @bci org/eclipse/core/internal/resources/ContentDescriptionManager getCurrentPlatformState ()Ljava/lang/String; 39 argL0 ; # org/eclipse/core/internal/resources/ContentDescriptionManager$$Lambda+0x00000219011bcfa0 +instanceKlass @bci org/eclipse/core/internal/properties/PropertyBucket$PropertyEntry ()V 0 argL0 ; # org/eclipse/core/internal/properties/PropertyBucket$PropertyEntry$$Lambda+0x00000219011bc998 +instanceKlass @cpi org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding 1523 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x00000219011ba000 +instanceKlass org/eclipse/core/internal/resources/ProjectContentTypes +instanceKlass org/eclipse/core/internal/utils/Cache +instanceKlass org/eclipse/core/internal/resources/ContentDescriptionManager +instanceKlass @bci org/eclipse/core/internal/resources/CharsetManager initPreferenceChangeListener ()V 2 member ; # org/eclipse/core/internal/resources/CharsetManager$$Lambda+0x00000219011b2d60 +instanceKlass @bci org/eclipse/core/internal/jobs/Worker (Lorg/eclipse/core/internal/jobs/WorkerPool;)V 10 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x00000219011b9c00 +instanceKlass @bci org/eclipse/core/internal/jobs/Worker (Lorg/eclipse/core/internal/jobs/WorkerPool;)V 10 argL3 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x00000219011b9800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219011b9400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219011b9000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219011b8c00 +instanceKlass @bci org/eclipse/core/internal/jobs/JobManager now ()J 5 member ; # org/eclipse/core/internal/jobs/JobManager$$Lambda+0x0000021901162830 +instanceKlass java/util/function/LongUnaryOperator +instanceKlass org/eclipse/core/internal/jobs/JobChangeEvent +instanceKlass @bci org/eclipse/core/internal/jobs/JobManager schedule (Lorg/eclipse/core/internal/jobs/InternalJob;J)V 5 ; # java/lang/invoke/LambdaForm$MH+0x00000219011b8800 +instanceKlass @bci org/eclipse/core/internal/jobs/JobManager schedule (Lorg/eclipse/core/internal/jobs/InternalJob;J)V 5 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x00000219011b8400 +instanceKlass @bci org/eclipse/core/internal/jobs/JobManager schedule (Lorg/eclipse/core/internal/jobs/InternalJob;J)V 5 member ; # org/eclipse/core/internal/jobs/JobManager$$Lambda+0x00000219011623a0 +instanceKlass @cpi org/eclipse/core/internal/jobs/JobManager 1485 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x00000219011b8000 +instanceKlass org/eclipse/core/internal/resources/CharsetDeltaJob$ICharsetListenerFilter +instanceKlass @bci org/osgi/framework/FrameworkUtil lambda$4 (Ljava/lang/Class;)Lorg/osgi/framework/Bundle; 29 argL0 ; # org/osgi/framework/FrameworkUtil$$Lambda+0x000002190116d658 +instanceKlass @bci org/osgi/framework/FrameworkUtil lambda$4 (Ljava/lang/Class;)Lorg/osgi/framework/Bundle; 19 argL0 ; # org/osgi/framework/FrameworkUtil$$Lambda+0x000002190116d418 +instanceKlass @bci org/osgi/framework/FrameworkUtil lambda$4 (Ljava/lang/Class;)Lorg/osgi/framework/Bundle; 9 member ; # org/osgi/framework/FrameworkUtil$$Lambda+0x000002190116d1e0 +instanceKlass org/eclipse/core/runtime/PerformanceStats +instanceKlass org/eclipse/core/internal/events/ResourceStats +instanceKlass org/eclipse/core/internal/events/ResourceChangeListenerList$ListenerEntry +instanceKlass org/eclipse/core/internal/resources/CharsetManager$ResourceChangeListener +instanceKlass org/eclipse/core/resources/IResourceChangeListener +instanceKlass org/eclipse/core/internal/resources/CharsetManager +instanceKlass org/eclipse/core/internal/localstore/Bucket$Entry +instanceKlass org/eclipse/core/internal/localstore/BucketTree +instanceKlass org/eclipse/core/internal/localstore/Bucket$Visitor +instanceKlass org/eclipse/core/internal/localstore/Bucket +instanceKlass org/eclipse/core/internal/properties/PropertyManager2 +instanceKlass org/eclipse/core/internal/events/LifecycleEvent +instanceKlass @bci jdk/internal/reflect/MethodHandleShortFieldAccessorImpl setShort (Ljava/lang/Object;S)V 41 ; # java/lang/invoke/LambdaForm$MH+0x00000219011b2000 +instanceKlass java/lang/Short$ShortCache +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219011b1c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219011b1800 +instanceKlass com/sun/jna/NativeMappedConverter +instanceKlass com/sun/jna/Klass +instanceKlass com/sun/jna/Native$Buffers +instanceKlass com/sun/jna/VarArgsChecker +instanceKlass com/sun/jna/NativeLibrary$NativeLibraryDisposer +instanceKlass com/sun/jna/NativeLibrary$1 +instanceKlass com/sun/jna/SymbolProvider +instanceKlass com/sun/jna/NativeLibrary +instanceKlass org/eclipse/core/internal/filesystem/local/Win32Handler$FileAPIh +instanceKlass com/sun/jna/Memory$MemoryDisposer +instanceKlass com/sun/jna/internal/Cleaner$Cleanable +instanceKlass com/sun/jna/internal/Cleaner +instanceKlass com/sun/jna/WeakMemoryHolder +instanceKlass org/eclipse/core/filesystem/provider/FileInfo +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219011b1400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219011b1000 +instanceKlass @bci jdk/internal/reflect/MethodHandleShortFieldAccessorImpl getShort (Ljava/lang/Object;)S 20 ; # java/lang/invoke/LambdaForm$MH+0x00000219011b0c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219011b0800 +# instanceKlass java/lang/invoke/LambdaForm$BMH+0x00000219011b0400 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x00000219011b0000 +instanceKlass com/sun/jna/Structure$StructField +instanceKlass com/sun/jna/Structure$LayoutInfo +instanceKlass java/lang/Class$AnnotationData +instanceKlass com/sun/jna/Structure$FieldOrder +instanceKlass @bci com/sun/jna/Structure fieldOrder ()Ljava/util/List; 84 member ; # com/sun/jna/Structure$$Lambda+0x00000219011adf68 +instanceKlass @bci com/sun/jna/Structure getFieldList ()Ljava/util/List; 84 member ; # com/sun/jna/Structure$$Lambda+0x00000219011add30 +instanceKlass @bci com/sun/jna/Structure validateFields ()V 75 member ; # com/sun/jna/Structure$$Lambda+0x00000219011adaf8 +instanceKlass com/sun/jna/platform/win32/WinBase +instanceKlass com/sun/jna/platform/win32/BaseTSD +instanceKlass com/sun/jna/platform/win32/WinDef +instanceKlass com/sun/jna/Library +instanceKlass com/sun/jna/win32/W32APITypeMapper$2 +instanceKlass com/sun/jna/DefaultTypeMapper$Entry +instanceKlass com/sun/jna/win32/W32APITypeMapper$1 +instanceKlass com/sun/jna/TypeConverter +instanceKlass com/sun/jna/DefaultTypeMapper +instanceKlass com/sun/jna/TypeMapper +instanceKlass com/sun/jna/Structure$ByReference +instanceKlass com/sun/jna/Native$2 +instanceKlass com/sun/jna/Structure$FFIType$FFITypes +instanceKlass com/sun/jna/Native$ffi_callback +instanceKlass com/sun/jna/JNIEnv +instanceKlass com/sun/jna/PointerType +instanceKlass com/sun/jna/NativeMapped +instanceKlass com/sun/jna/WString +instanceKlass com/sun/jna/win32/DLLCallback +instanceKlass com/sun/jna/CallbackProxy +instanceKlass com/sun/jna/Callback +instanceKlass com/sun/jna/Structure$ByValue +instanceKlass jdk/internal/loader/NativeLibraries$Unloader +instanceKlass java/io/FileOutputStream$1 +instanceKlass sun/security/provider/AbstractDrbg$NonceProvider +instanceKlass @bci sun/security/provider/AbstractDrbg$SeederHolder ()V 42 member ; # sun/security/provider/AbstractDrbg$SeederHolder$$Lambda+0x00000219010f5a30 +instanceKlass @cpi sun/security/provider/AbstractDrbg$SeederHolder 91 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x00000219011aac00 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x00000219011aa800 +instanceKlass sun/nio/fs/BasicFileAttributesHolder +instanceKlass sun/nio/fs/WindowsDirectoryStream$WindowsDirectoryIterator +instanceKlass sun/nio/fs/WindowsDirectoryStream +instanceKlass java/nio/file/DirectoryStream +instanceKlass java/nio/file/Files$AcceptAllFilter +instanceKlass java/nio/file/DirectoryStream$Filter +instanceKlass java/net/NetworkInterface$1 +instanceKlass java/net/DefaultInterface +instanceKlass java/net/Inet6Address$Inet6AddressHolder +instanceKlass java/net/InetAddress$PlatformResolver +instanceKlass java/net/spi/InetAddressResolver +instanceKlass java/net/spi/InetAddressResolver$LookupPolicy +instanceKlass java/net/Inet4AddressImpl +instanceKlass java/net/Inet6AddressImpl +instanceKlass java/net/InetAddressImpl +instanceKlass java/util/concurrent/ConcurrentSkipListMap$Node +instanceKlass java/util/concurrent/ConcurrentSkipListMap$Index +instanceKlass java/util/concurrent/ConcurrentNavigableMap +instanceKlass java/net/InetAddress$InetAddressHolder +instanceKlass java/net/InetAddress$1 +instanceKlass jdk/internal/access/JavaNetInetAddressAccess +instanceKlass java/net/InetAddress +instanceKlass java/net/InterfaceAddress +instanceKlass java/net/NetworkInterface +instanceKlass sun/security/provider/SeedGenerator$1 +instanceKlass sun/security/provider/SeedGenerator +instanceKlass sun/security/provider/AbstractDrbg$SeederHolder +instanceKlass java/security/DrbgParameters$NextBytes +instanceKlass @bci sun/security/provider/AbstractDrbg ()V 12 argL0 ; # sun/security/provider/AbstractDrbg$$Lambda+0x00000219010f31a8 +instanceKlass @cpi sun/security/provider/AbstractDrbg 383 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x00000219011aa400 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x00000219011aa000 +instanceKlass sun/security/provider/EntropySource +instanceKlass sun/security/provider/AbstractDrbg +instanceKlass java/security/DrbgParameters$Instantiation +instanceKlass java/security/DrbgParameters +instanceKlass sun/security/provider/MoreDrbgParameters +instanceKlass @bci sun/security/provider/DRBG (Ljava/security/SecureRandomParameters;)V 26 argL0 ; # sun/security/provider/DRBG$$Lambda+0x00000219010f1ce8 +instanceKlass java/security/SecureRandomSpi +instanceKlass java/io/File$TempDirectory +instanceKlass com/sun/jna/Native$5 +instanceKlass com/sun/jna/Platform +instanceKlass com/sun/jna/Native$1 +instanceKlass com/sun/jna/Callback$UncaughtExceptionHandler +instanceKlass com/sun/jna/Native +instanceKlass com/sun/jna/Version +instanceKlass java/util/logging/Logger$SystemLoggerHelper$1 +instanceKlass java/util/logging/Logger$SystemLoggerHelper +instanceKlass java/util/logging/LogManager$4 +instanceKlass jdk/internal/logger/BootstrapLogger$BootstrapExecutors +instanceKlass jdk/internal/logger/LoggerFinderLoader +instanceKlass @bci java/lang/System$LoggerFinder accessProvider ()Ljava/lang/System$LoggerFinder; 8 argL0 ; # java/lang/System$LoggerFinder$$Lambda+0x00000219010f0470 +instanceKlass java/util/stream/Streams +instanceKlass java/util/stream/Stream$Builder +instanceKlass java/util/stream/Streams$AbstractStreamBuilderImpl +instanceKlass @bci java/util/logging/Level$KnownLevel findByName (Ljava/lang/String;Ljava/util/function/Function;)Ljava/util/Optional; 29 argL0 ; # java/util/logging/Level$KnownLevel$$Lambda+0x800000023 +instanceKlass @bci java/util/logging/Level findLevel (Ljava/lang/String;)Ljava/util/logging/Level; 13 argL0 ; # java/util/logging/Level$$Lambda+0x800000011 +instanceKlass java/util/logging/LogManager$LoggerContext$1 +instanceKlass java/util/logging/LogManager$VisitedLoggers +instanceKlass java/util/logging/LogManager$2 +instanceKlass java/util/logging/LogManager$LoggingProviderAccess +instanceKlass java/util/logging/LogManager$LogNode +instanceKlass java/util/logging/LogManager$LoggerContext +instanceKlass java/util/logging/LogManager$1 +instanceKlass java/util/logging/LogManager +instanceKlass java/util/logging/Logger$ConfigurationData +instanceKlass java/util/logging/Logger$LoggerBundle +instanceKlass @bci java/util/logging/Level$KnownLevel add (Ljava/util/logging/Level;)V 49 argL0 ; # java/util/logging/Level$KnownLevel$$Lambda+0x800000022 +instanceKlass @bci java/util/logging/Level$KnownLevel add (Ljava/util/logging/Level;)V 19 argL0 ; # java/util/logging/Level$KnownLevel$$Lambda+0x800000021 +instanceKlass java/util/logging/Level +instanceKlass java/util/logging/Handler +instanceKlass java/util/logging/Logger +instanceKlass com/sun/jna/FromNativeContext +instanceKlass com/sun/jna/FromNativeConverter +instanceKlass com/sun/jna/ToNativeConverter +instanceKlass com/sun/jna/ToNativeContext +instanceKlass com/sun/jna/Structure +instanceKlass com/sun/jna/Pointer +instanceKlass org/eclipse/core/internal/filesystem/local/NativeHandler +instanceKlass org/eclipse/core/internal/filesystem/local/LocalFileNativesManager +instanceKlass org/eclipse/core/internal/resources/LinkDescription +instanceKlass javax/xml/parsers/DocumentBuilder +instanceKlass javax/xml/parsers/DocumentBuilderFactory +instanceKlass org/eclipse/core/internal/runtime/XmlProcessorFactory +instanceKlass org/eclipse/core/internal/resources/IModelObjectConstants +instanceKlass java/util/AbstractMap$2$1 +instanceKlass @bci org/eclipse/core/internal/resources/ProjectVariableProviderManager ()V 14 argL0 ; # org/eclipse/core/internal/resources/ProjectVariableProviderManager$$Lambda+0x0000021901199800 +instanceKlass @cpi org/eclipse/core/internal/resources/ProjectVariableProviderManager 171 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000002190119f000 +instanceKlass org/eclipse/core/resources/variableresolvers/PathVariableResolver +instanceKlass org/eclipse/core/internal/resources/ProjectVariableProviderManager$Descriptor +instanceKlass org/eclipse/core/internal/resources/ProjectVariableProviderManager +instanceKlass org/eclipse/core/internal/resources/ProjectPathVariableManager +instanceKlass @bci org/eclipse/core/internal/filesystem/local/LocalFile createExecutor (I)Ljava/util/concurrent/ForkJoinPool; 15 argL0 ; # org/eclipse/core/internal/filesystem/local/LocalFile$$Lambda+0x000002190119e9a8 +instanceKlass @bci org/eclipse/core/internal/filesystem/local/LocalFile createExecutor (I)Ljava/util/concurrent/ForkJoinPool; 5 argL0 ; # org/eclipse/core/internal/filesystem/local/LocalFile$$Lambda+0x000002190119e798 +instanceKlass java/util/concurrent/ForkJoinPool$2 +instanceKlass jdk/internal/access/JavaUtilConcurrentFJPAccess +instanceKlass java/util/concurrent/ForkJoinPool$DefaultForkJoinWorkerThreadFactory +instanceKlass java/util/concurrent/ForkJoinPool$WorkQueue +instanceKlass java/util/concurrent/ForkJoinPool$ForkJoinWorkerThreadFactory +instanceKlass org/eclipse/jdt/ls/core/internal/filesystem/JLSFsUtils +instanceKlass sun/nio/fs/WindowsUriSupport +instanceKlass org/eclipse/core/filesystem/IFileStore +instanceKlass org/eclipse/jdt/ls/core/internal/filesystem/JDTLSFilesystemActivator$1 +instanceKlass org/eclipse/jdt/ls/core/internal/filesystem/JDTLSFilesystemActivator +instanceKlass org/eclipse/core/filesystem/IFileSystem +instanceKlass org/eclipse/core/internal/filesystem/InternalFileSystemCore +instanceKlass org/eclipse/core/filesystem/EFS +instanceKlass org/eclipse/core/internal/localstore/FileStoreRoot +instanceKlass org/eclipse/core/filesystem/IFileInfo +instanceKlass org/eclipse/core/filesystem/URIUtil +instanceKlass org/eclipse/core/internal/watson/ElementTree$ChildIDsCache +instanceKlass @bci org/eclipse/core/internal/resources/SaveManager initSnap (Lorg/eclipse/core/runtime/IProgressMonitor;)V 67 argL0 ; # org/eclipse/core/internal/resources/SaveManager$$Lambda+0x0000021901193578 +instanceKlass java/io/FilenameFilter +instanceKlass @bci org/eclipse/core/internal/jobs/JobManager cancel (Lorg/eclipse/core/internal/jobs/InternalJob;)Z 15 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x0000021901197000 +instanceKlass @bci org/eclipse/core/internal/jobs/JobManager cancel (Lorg/eclipse/core/internal/jobs/InternalJob;)Z 15 member ; # org/eclipse/core/internal/jobs/JobManager$$Lambda+0x0000021901162168 +instanceKlass org/eclipse/core/internal/utils/ObjectMap +instanceKlass org/eclipse/core/internal/dtree/DataTreeLookup +instanceKlass org/eclipse/core/internal/dtree/DataTreeReader +instanceKlass org/eclipse/core/internal/watson/ElementTreeReader$1 +instanceKlass org/eclipse/core/internal/dtree/IDataFlattener +instanceKlass org/eclipse/core/internal/watson/ElementTreeReader +instanceKlass org/eclipse/core/resources/IFileState +instanceKlass org/eclipse/core/internal/events/BuilderPersistentInfo +instanceKlass @bci org/eclipse/core/internal/resources/LocalMetaArea getSafeTableLocationFor (Ljava/lang/String;)Lorg/eclipse/core/runtime/IPath; 44 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901196c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901196800 +instanceKlass @bci org/eclipse/core/internal/resources/LocalMetaArea getSafeTableLocationFor (Ljava/lang/String;)Lorg/eclipse/core/runtime/IPath; 44 argL3 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901196400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901196000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901195c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901195800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901195400 +instanceKlass @bci org/eclipse/core/internal/resources/LocalMetaArea getSafeTableLocationFor (Ljava/lang/String;)Lorg/eclipse/core/runtime/IPath; 44 argL1 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901195000 +instanceKlass @bci org/eclipse/core/internal/resources/LocalMetaArea getSafeTableLocationFor (Ljava/lang/String;)Lorg/eclipse/core/runtime/IPath; 44 argL1 argL1 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901194c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901194800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901194400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901194000 +instanceKlass org/eclipse/core/internal/resources/SafeFileTable +instanceKlass org/eclipse/core/internal/resources/SavedState +instanceKlass org/eclipse/core/internal/resources/SyncInfoReader +instanceKlass org/eclipse/core/internal/resources/WorkspaceTreeReader +instanceKlass org/eclipse/core/resources/ISaveContext +instanceKlass org/eclipse/core/resources/ISavedState +instanceKlass org/eclipse/core/internal/resources/SaveManager +instanceKlass org/eclipse/core/internal/watson/IElementInfoFlattener +instanceKlass org/eclipse/core/internal/resources/SyncInfoWriter +instanceKlass org/eclipse/core/internal/resources/Synchronizer +instanceKlass org/eclipse/core/internal/resources/MarkerWriter +instanceKlass org/eclipse/core/internal/resources/MarkerDeltaManager +instanceKlass org/eclipse/core/internal/resources/MarkerTypeDefinitionCache$MarkerTypeDefinition +instanceKlass org/eclipse/core/internal/resources/MarkerTypeDefinitionCache +instanceKlass org/eclipse/core/internal/resources/MarkerInfo +instanceKlass org/eclipse/core/internal/resources/IMarkerSetElement +instanceKlass org/eclipse/core/internal/resources/MarkerManager +instanceKlass @bci org/eclipse/core/internal/events/NotificationManager$NotifyJob (Lorg/eclipse/core/internal/events/NotificationManager;)V 13 argL0 ; # org/eclipse/core/internal/events/NotificationManager$NotifyJob$$Lambda+0x000002190118c760 +instanceKlass org/eclipse/core/internal/events/ResourceChangeListenerList +instanceKlass org/eclipse/core/internal/events/NotificationManager +instanceKlass java/util/stream/SortedOps +instanceKlass @bci org/eclipse/core/internal/runtime/InternalPlatform getBundles0 (Ljava/lang/String;Ljava/lang/String;)Ljava/util/stream/Stream; 90 argL0 ; # org/eclipse/core/internal/runtime/InternalPlatform$$Lambda+0x000002190117dcb8 +instanceKlass @bci org/eclipse/core/internal/runtime/InternalPlatform getBundles0 (Ljava/lang/String;Ljava/lang/String;)Ljava/util/stream/Stream; 80 argL0 ; # org/eclipse/core/internal/runtime/InternalPlatform$$Lambda+0x000002190117da88 +instanceKlass org/eclipse/core/internal/events/BuildManager$DeltaCache +instanceKlass org/eclipse/core/resources/ICommand +instanceKlass org/eclipse/core/resources/IResourceDelta +instanceKlass org/eclipse/core/internal/events/InternalBuilder +instanceKlass org/eclipse/core/resources/IBuildContext +instanceKlass org/eclipse/core/internal/events/BuildManager +instanceKlass org/eclipse/core/internal/resources/FilterTypeManager$1 +instanceKlass org/eclipse/core/internal/resources/FilterDescriptor +instanceKlass org/eclipse/core/resources/IFilterMatcherDescriptor +instanceKlass org/eclipse/core/internal/resources/FilterTypeManager +instanceKlass org/eclipse/core/resources/IProjectNatureDescriptor +instanceKlass org/eclipse/core/internal/resources/NatureManager +instanceKlass org/eclipse/core/internal/events/ILifecycleListener +instanceKlass org/eclipse/core/internal/resources/PathVariableManager +instanceKlass @bci org/eclipse/core/internal/resources/WorkspaceRoot getProject (Ljava/lang/String;)Lorg/eclipse/core/resources/IProject; 95 member ; # org/eclipse/core/internal/resources/WorkspaceRoot$$Lambda+0x0000021901187a50 +instanceKlass java/text/AttributedCharacterIterator$Attribute +instanceKlass java/text/FieldPosition$Delegate +instanceKlass java/text/Format$FieldDelegate +instanceKlass java/text/DigitList +instanceKlass @bci sun/util/locale/provider/JRELocaleProviderAdapter getDecimalFormatSymbolsProvider ()Ljava/text/spi/DecimalFormatSymbolsProvider; 8 member ; # sun/util/locale/provider/JRELocaleProviderAdapter$$Lambda+0x800000066 +instanceKlass java/text/DecimalFormatSymbols +instanceKlass java/lang/Class$1 +instanceKlass sun/util/resources/Bundles$2 +instanceKlass sun/util/resources/Bundles$CacheKeyReference +instanceKlass @bci java/util/ResourceBundle$ResourceBundleProviderHelper newResourceBundle (Ljava/lang/Class;)Ljava/util/ResourceBundle; 22 member ; # java/util/ResourceBundle$ResourceBundleProviderHelper$$Lambda+0x800000010 +instanceKlass java/util/ResourceBundle$ResourceBundleProviderHelper +instanceKlass @bci sun/util/cldr/CLDRLocaleProviderAdapter applyAliases (Ljava/util/Locale;)Ljava/util/Locale; 4 argL0 ; # sun/util/cldr/CLDRLocaleProviderAdapter$$Lambda+0x80000005f +instanceKlass sun/util/resources/LocaleData$LocaleDataResourceBundleProvider +instanceKlass java/util/spi/ResourceBundleProvider +instanceKlass sun/util/resources/Bundles$CacheKey +instanceKlass sun/util/resources/Bundles +instanceKlass sun/util/resources/LocaleData$LocaleDataStrategy +instanceKlass sun/util/resources/Bundles$Strategy +instanceKlass sun/util/resources/LocaleData$1 +instanceKlass java/util/ResourceBundle$Control +instanceKlass sun/util/resources/LocaleData +instanceKlass sun/util/locale/provider/LocaleResources +instanceKlass java/util/Locale$Builder +instanceKlass sun/util/locale/provider/CalendarDataUtility +instanceKlass sun/util/locale/provider/AvailableLanguageTags +instanceKlass @bci sun/util/locale/provider/JRELocaleProviderAdapter getNumberFormatProvider ()Ljava/text/spi/NumberFormatProvider; 8 member ; # sun/util/locale/provider/JRELocaleProviderAdapter$$Lambda+0x800000067 +instanceKlass sun/util/resources/cldr/provider/CLDRLocaleDataMetaInfo +instanceKlass jdk/internal/module/ModulePatcher$PatchedModuleReader +instanceKlass @bci sun/util/cldr/CLDRLocaleProviderAdapter ()V 4 argL0 ; # sun/util/cldr/CLDRLocaleProviderAdapter$$Lambda+0x800000061 +instanceKlass sun/util/locale/LocaleObjectCache +instanceKlass sun/util/locale/BaseLocale$Key +instanceKlass sun/util/locale/InternalLocaleBuilder$CaseInsensitiveChar +instanceKlass sun/util/locale/InternalLocaleBuilder +instanceKlass sun/util/locale/StringTokenIterator +instanceKlass sun/util/locale/ParseStatus +instanceKlass sun/util/locale/LanguageTag +instanceKlass sun/util/cldr/CLDRBaseLocaleDataMetaInfo +instanceKlass sun/util/locale/provider/LocaleDataMetaInfo +instanceKlass sun/util/locale/provider/ResourceBundleBasedAdapter +instanceKlass sun/util/locale/provider/LocaleProviderAdapter +instanceKlass java/util/spi/LocaleServiceProvider +instanceKlass java/text/FieldPosition +instanceKlass java/text/Format +instanceKlass org/eclipse/core/internal/preferences/PreferencesService$1 +instanceKlass @bci org/eclipse/core/internal/preferences/PreferencesService getLookupOrder (Ljava/lang/String;Ljava/lang/String;)[Ljava/lang/String; 29 argL0 ; # org/eclipse/core/internal/preferences/PreferencesService$$Lambda+0x0000021901173178 +instanceKlass java/util/function/IntFunction +instanceKlass @bci org/eclipse/core/internal/localstore/FileSystemResourceManager (Lorg/eclipse/core/internal/resources/Workspace;)V 6 member ; # org/eclipse/core/internal/localstore/FileSystemResourceManager$$Lambda+0x0000021901187838 +instanceKlass org/eclipse/core/internal/localstore/RefreshLocalVisitor +instanceKlass org/eclipse/core/internal/localstore/ILocalStoreConstants +instanceKlass org/eclipse/core/internal/localstore/IHistoryStore +instanceKlass org/eclipse/core/internal/localstore/IUnifiedTreeVisitor +instanceKlass org/eclipse/core/internal/localstore/FileSystemResourceManager +instanceKlass org/eclipse/core/runtime/jobs/MultiRule +instanceKlass org/eclipse/core/internal/jobs/OrderedLock +instanceKlass java/lang/invoke/DirectMethodHandle$1 +instanceKlass org/eclipse/core/internal/runtime/LocalizationUtils +instanceKlass org/eclipse/core/runtime/Status +instanceKlass org/eclipse/core/internal/resources/WorkManager$NotifyRule +instanceKlass org/eclipse/core/internal/resources/WorkManager +instanceKlass org/eclipse/core/runtime/NullProgressMonitor +instanceKlass org/eclipse/core/runtime/preferences/IExportedPreferences +instanceKlass @bci org/eclipse/core/internal/resources/WorkspacePreferences ()V 189 member ; # org/eclipse/core/internal/resources/WorkspacePreferences$$Lambda+0x0000021901177b00 +instanceKlass org/eclipse/core/runtime/Preferences$IPropertyChangeListener +instanceKlass org/eclipse/core/runtime/preferences/IEclipsePreferences$INodeChangeListener +instanceKlass org/eclipse/core/runtime/preferences/IEclipsePreferences$IPreferenceChangeListener +instanceKlass @bci org/eclipse/core/runtime/Plugin getPluginPreferences ()Lorg/eclipse/core/runtime/Preferences; 65 member ; # org/eclipse/core/runtime/Plugin$$Lambda+0x000002190117d0f0 +instanceKlass org/eclipse/core/runtime/Preferences +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901185000 +instanceKlass lombok/eclipse/agent/PatchFixesShadowLoaded +instanceKlass lombok/core/LombokNode +instanceKlass lombok/core/DiagnosticsReceiver +instanceKlass lombok/launch/PatchFixesHider$Util +instanceKlass lombok/launch/PatchFixesHider$LombokDeps +instanceKlass lombok/launch/ClassFileMetaData +instanceKlass @bci jdk/internal/reflect/MethodHandleObjectFieldAccessorImpl set (Ljava/lang/Object;Ljava/lang/Object;)V 41 ; # java/lang/invoke/LambdaForm$MH+0x0000021901184000 +instanceKlass lombok/launch/PackageShader +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901183c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901183800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901183400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901183000 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x0000021901182c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901181000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901180c00 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x0000021901180800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901180000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000002190117fc00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000002190117f800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000002190117f400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000002190117f000 +instanceKlass java/lang/constant/ClassDesc +instanceKlass java/io/ObjectOutput +instanceKlass java/io/ObjectStreamConstants +instanceKlass java/io/ObjectInput +instanceKlass java/lang/foreign/ValueLayout +instanceKlass java/lang/foreign/MemoryLayout +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000002190117ec00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000002190117e800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000002190117e400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000002190117e000 +instanceKlass org/eclipse/core/internal/runtime/Product +instanceKlass org/eclipse/core/runtime/IProduct +instanceKlass lombok/patcher/scripts/WrapReturnValuesScript$1 +instanceKlass org/eclipse/osgi/internal/url/URLStreamHandlerProxy$1 +instanceKlass org/eclipse/osgi/internal/url/URLStreamHandlerSetter +instanceKlass org/eclipse/osgi/internal/url/NullURLStreamHandlerService +instanceKlass org/osgi/service/url/URLStreamHandlerSetter +instanceKlass @bci org/eclipse/osgi/internal/url/URLStreamHandlerFactoryImpl createInternalURLStreamHandler (Ljava/lang/String;)Ljava/net/URLStreamHandler; 18 member ; # org/eclipse/osgi/internal/url/URLStreamHandlerFactoryImpl$$Lambda+0x000002190116c688 +instanceKlass org/eclipse/equinox/internal/app/ProductExtensionBranding +instanceKlass org/eclipse/core/internal/runtime/FindSupport +instanceKlass org/eclipse/core/runtime/FileLocator +instanceKlass @bci org/eclipse/osgi/internal/framework/legacy/PackageAdminImpl getBundles (Ljava/lang/String;Ljava/lang/String;)[Lorg/osgi/framework/Bundle; 281 argL0 ; # org/eclipse/osgi/internal/framework/legacy/PackageAdminImpl$$Lambda+0x000002190116c458 +instanceKlass org/eclipse/core/runtime/SafeRunner +instanceKlass @bci org/eclipse/core/internal/preferences/PreferenceServiceRegistryHelper runInitializer (Lorg/eclipse/core/runtime/IConfigurationElement;)V 18 member ; # org/eclipse/core/internal/preferences/PreferenceServiceRegistryHelper$$Lambda+0x0000021901172200 +instanceKlass org/eclipse/core/runtime/IExecutableExtensionFactory +instanceKlass org/eclipse/core/runtime/IExecutableExtension +instanceKlass org/eclipse/core/runtime/preferences/AbstractPreferenceInitializer +instanceKlass org/eclipse/core/internal/dtree/AbstractDataTree +instanceKlass org/eclipse/core/internal/dtree/AbstractDataTreeNode +instanceKlass org/eclipse/core/internal/watson/ElementTree +instanceKlass org/eclipse/core/internal/runtime/DataArea +instanceKlass org/eclipse/core/internal/runtime/MetaDataKeeper +instanceKlass org/eclipse/core/internal/resources/LocalMetaArea +instanceKlass org/eclipse/core/internal/resources/LocationValidator +instanceKlass org/eclipse/core/runtime/Platform$OS +instanceKlass org/eclipse/core/internal/utils/FileUtil +instanceKlass org/eclipse/core/internal/watson/IElementContentVisitor +instanceKlass org/eclipse/core/resources/IResourceFilterDescription +instanceKlass org/eclipse/core/resources/team/IResourceTree +instanceKlass org/eclipse/core/resources/IMarker +instanceKlass org/eclipse/core/resources/IResourceProxy +instanceKlass @bci jdk/internal/reflect/MethodHandleObjectFieldAccessorImpl set (Ljava/lang/Object;Ljava/lang/Object;)V 29 ; # java/lang/invoke/LambdaForm$MH+0x0000021901170800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901170400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901170000 +instanceKlass java/util/ResourceBundle$1 +instanceKlass jdk/internal/access/JavaUtilResourceBundleAccess +instanceKlass java/util/ResourceBundle +instanceKlass @bci org/eclipse/osgi/util/NLS ()V 7 argL0 ; # org/eclipse/osgi/util/NLS$$Lambda+0x000002190111bcf0 +instanceKlass org/eclipse/osgi/util/NLS +instanceKlass org/eclipse/core/runtime/Platform +instanceKlass org/eclipse/core/resources/team/FileModificationValidationContext +instanceKlass org/eclipse/core/resources/team/IMoveDeleteHook +instanceKlass org/eclipse/core/internal/resources/ModelObject +instanceKlass org/eclipse/core/resources/IProject +instanceKlass org/eclipse/core/resources/IPathVariableManager +instanceKlass org/eclipse/core/resources/IProjectDescription +instanceKlass org/eclipse/core/internal/properties/IPropertyManager +instanceKlass org/eclipse/core/internal/resources/IManager +instanceKlass org/eclipse/core/resources/IWorkspaceDescription +instanceKlass org/eclipse/core/internal/resources/InternalTeamHook +instanceKlass org/eclipse/core/internal/watson/IElementComparator +instanceKlass org/eclipse/core/internal/dtree/IComparator +instanceKlass org/eclipse/core/resources/IBuildConfiguration +instanceKlass org/eclipse/core/resources/IResourceRuleFactory +instanceKlass org/eclipse/core/resources/ISynchronizer +instanceKlass org/eclipse/core/resources/IFile +instanceKlass org/eclipse/core/resources/IEncodedStorage +instanceKlass org/eclipse/core/resources/IStorage +instanceKlass org/eclipse/core/resources/IFolder +instanceKlass org/eclipse/core/internal/watson/IPathRequestor +instanceKlass org/eclipse/core/internal/resources/ResourceInfo +instanceKlass org/eclipse/core/internal/utils/IStringPoolParticipant +instanceKlass org/eclipse/core/runtime/ICoreRunnable +instanceKlass org/eclipse/core/internal/watson/IElementTreeData +instanceKlass org/eclipse/core/internal/jobs/WorkerPool +instanceKlass org/eclipse/core/internal/jobs/JobQueue +instanceKlass org/eclipse/core/internal/jobs/DeadlockDetector +instanceKlass org/eclipse/core/internal/jobs/LockManager +instanceKlass org/eclipse/core/runtime/jobs/JobChangeAdapter +instanceKlass @bci org/eclipse/core/internal/jobs/JobManager ()V 52 member ; # org/eclipse/core/internal/jobs/JobManager$$Lambda+0x000002190115fc20 +instanceKlass @bci org/eclipse/core/internal/jobs/JobListeners ()V 50 argL0 ; # org/eclipse/core/internal/jobs/JobListeners$$Lambda+0x000002190115fa10 +instanceKlass @bci org/eclipse/core/internal/jobs/JobListeners ()V 41 argL0 ; # org/eclipse/core/internal/jobs/JobListeners$$Lambda+0x000002190115f800 +instanceKlass @bci org/eclipse/core/internal/jobs/JobListeners ()V 32 argL0 ; # org/eclipse/core/internal/jobs/JobListeners$$Lambda+0x000002190115ec58 +instanceKlass @bci org/eclipse/core/internal/jobs/JobListeners ()V 23 argL0 ; # org/eclipse/core/internal/jobs/JobListeners$$Lambda+0x000002190115ea48 +instanceKlass @bci org/eclipse/core/internal/jobs/JobListeners ()V 14 argL0 ; # org/eclipse/core/internal/jobs/JobListeners$$Lambda+0x000002190115e838 +instanceKlass @bci org/eclipse/core/internal/jobs/JobListeners ()V 5 argL0 ; # org/eclipse/core/internal/jobs/JobListeners$$Lambda+0x000002190115e628 +instanceKlass @cpi org/eclipse/core/internal/jobs/JobListeners 385 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000002190115f000 +instanceKlass org/eclipse/core/internal/jobs/JobListeners$IListenerDoit +instanceKlass org/eclipse/core/runtime/jobs/IJobChangeEvent +instanceKlass org/eclipse/core/internal/jobs/JobListeners +instanceKlass org/eclipse/core/internal/jobs/ImplicitJobs +instanceKlass org/eclipse/core/internal/jobs/JobManager$1 +instanceKlass org/eclipse/core/runtime/ProgressMonitorWrapper +instanceKlass org/eclipse/core/runtime/IProgressMonitorWithBlocking +instanceKlass org/eclipse/core/internal/jobs/InternalJobGroup +instanceKlass org/eclipse/core/runtime/jobs/ILock +instanceKlass org/eclipse/core/runtime/jobs/IJobChangeListener +instanceKlass org/eclipse/core/internal/jobs/JobManager +instanceKlass org/eclipse/core/runtime/jobs/IJobManager +instanceKlass org/eclipse/core/internal/jobs/JobOSGiUtils +instanceKlass org/eclipse/core/internal/jobs/JobActivator +instanceKlass org/eclipse/core/resources/IWorkspaceRoot +instanceKlass org/eclipse/core/resources/IContainer +instanceKlass org/eclipse/core/resources/IResource +instanceKlass org/eclipse/core/runtime/jobs/ISchedulingRule +instanceKlass org/eclipse/core/runtime/PlatformObject +instanceKlass org/eclipse/core/internal/resources/ICoreConstants +instanceKlass java/util/Formatter$Flags +instanceKlass java/util/Formattable +instanceKlass java/util/Formatter$FormatSpecifier +instanceKlass java/util/Formatter$Conversion +instanceKlass java/util/Formatter$FixedString +instanceKlass java/util/Formatter$FormatString +instanceKlass @bci java/util/regex/Pattern union (Ljava/util/regex/Pattern$CharPredicate;Ljava/util/regex/Pattern$CharPredicate;Z)Ljava/util/regex/Pattern$CharPredicate; 6 member ; # java/util/regex/Pattern$$Lambda+0x800000032 +instanceKlass @bci java/util/regex/Pattern Range (II)Ljava/util/regex/Pattern$CharPredicate; 23 member ; # java/util/regex/Pattern$$Lambda+0x80000002a +instanceKlass java/util/Formatter +instanceKlass java/time/zone/Ser +instanceKlass java/io/Externalizable +instanceKlass java/time/zone/ZoneRulesProvider$1 +instanceKlass java/time/zone/ZoneRulesProvider +instanceKlass sun/util/calendar/ZoneInfoFile$ZoneOffsetTransitionRule +instanceKlass sun/util/calendar/ZoneInfoFile$1 +instanceKlass sun/util/calendar/ZoneInfoFile +instanceKlass java/util/TimeZone +instanceKlass @bci java/time/format/DateTimeFormatter ()V 1075 argL0 ; # java/time/format/DateTimeFormatter$$Lambda+0x80000000e +instanceKlass @bci java/time/format/DateTimeFormatter ()V 1067 argL0 ; # java/time/format/DateTimeFormatter$$Lambda+0x80000000d +instanceKlass java/time/Period +instanceKlass java/time/chrono/ChronoPeriod +instanceKlass java/time/format/DateTimeFormatterBuilder$TextPrinterParser +instanceKlass java/time/format/DateTimeTextProvider$1 +instanceKlass java/time/format/DateTimeTextProvider +instanceKlass java/util/AbstractMap$SimpleImmutableEntry +instanceKlass java/time/format/DateTimeTextProvider$LocaleStore +instanceKlass java/time/format/DateTimeFormatterBuilder$InstantPrinterParser +instanceKlass java/time/format/DateTimeFormatterBuilder$StringLiteralPrinterParser +instanceKlass java/time/format/DateTimeFormatterBuilder$ZoneIdPrinterParser +instanceKlass java/time/format/DateTimeFormatterBuilder$OffsetIdPrinterParser +instanceKlass java/time/format/DecimalStyle +instanceKlass java/time/format/DateTimeFormatterBuilder$CompositePrinterParser +instanceKlass java/time/chrono/AbstractChronology +instanceKlass java/time/chrono/Chronology +instanceKlass java/time/format/DateTimeFormatterBuilder$CharLiteralPrinterParser +instanceKlass java/time/format/DateTimeFormatterBuilder$NumberPrinterParser +instanceKlass java/time/format/DateTimeFormatterBuilder$DateTimePrinterParser +instanceKlass java/time/temporal/JulianFields +instanceKlass java/time/temporal/IsoFields +instanceKlass @bci java/time/format/DateTimeFormatterBuilder ()V 0 argL0 ; # java/time/format/DateTimeFormatterBuilder$$Lambda+0x80000000f +instanceKlass java/time/temporal/TemporalQuery +instanceKlass java/time/format/DateTimeFormatterBuilder +instanceKlass java/time/format/DateTimeFormatter +instanceKlass org/eclipse/osgi/internal/debug/EclipseDebugTrace +instanceKlass org/eclipse/core/internal/utils/Policy$1 +instanceKlass org/eclipse/core/runtime/IProgressMonitor +instanceKlass org/eclipse/core/internal/utils/Policy +instanceKlass org/eclipse/core/resources/ResourcesPlugin$WorkspaceInitCustomizer +instanceKlass org/eclipse/core/resources/IWorkspace +instanceKlass org/eclipse/core/runtime/IAdaptable +instanceKlass org/eclipse/jdt/ls/core/internal/managers/ProjectsManager +instanceKlass org/eclipse/jdt/ls/core/internal/managers/IProjectsManager +instanceKlass org/eclipse/core/resources/ISaveParticipant +instanceKlass org/eclipse/core/internal/runtime/LogServiceFactory +instanceKlass org/eclipse/equinox/internal/app/AppCommands +instanceKlass @bci org/eclipse/equinox/internal/app/EclipseAppDescriptor getInstanceID ()Ljava/lang/String; 31 ; # java/lang/invoke/LambdaForm$MH+0x0000021901157400 +instanceKlass @bci org/eclipse/equinox/internal/app/EclipseAppDescriptor getInstanceID ()Ljava/lang/String; 31 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901157000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901156c00 +instanceKlass @bci org/eclipse/equinox/internal/app/EclipseAppDescriptor getInstanceID ()Ljava/lang/String; 31 form names 6 function resolvedHandle form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x0000021901156800 +instanceKlass @bci org/eclipse/equinox/internal/app/EclipseAppDescriptor getInstanceID ()Ljava/lang/String; 31 argL3 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901156400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901156000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901155c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901155800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901155400 +instanceKlass @bci org/eclipse/equinox/internal/app/EclipseAppDescriptor getInstanceID ()Ljava/lang/String; 31 form names 10 function resolvedHandle form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x0000021901155000 +instanceKlass @bci org/eclipse/equinox/internal/app/EclipseAppDescriptor getInstanceID ()Ljava/lang/String; 31 argL1 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901154c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901154800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901154400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901154000 +instanceKlass org/eclipse/equinox/internal/app/EclipseAppContainer$RegisterService +instanceKlass org/eclipse/core/runtime/spi/RegistryContributor +instanceKlass org/eclipse/equinox/app/IApplicationContext +instanceKlass org/osgi/service/application/ApplicationHandle +instanceKlass org/osgi/service/application/ApplicationDescriptor +instanceKlass org/eclipse/osgi/service/runnable/ApplicationLauncher +instanceKlass org/eclipse/osgi/service/runnable/ApplicationRunnable +instanceKlass org/eclipse/osgi/service/runnable/ParameterizedRunnable +instanceKlass org/eclipse/equinox/internal/app/IBranding +instanceKlass org/eclipse/equinox/internal/app/EclipseAppContainer +instanceKlass org/osgi/service/application/ScheduledApplication +instanceKlass org/eclipse/equinox/internal/app/AppPersistence +instanceKlass org/eclipse/equinox/internal/app/Activator +instanceKlass org/eclipse/equinox/internal/app/CommandLineArgs +instanceKlass org/eclipse/core/internal/preferences/legacy/InitLegacyPreferences +instanceKlass org/eclipse/core/internal/preferences/legacy/ProductPreferencesService +instanceKlass org/eclipse/core/internal/preferences/exchange/IProductPreferencesService +instanceKlass org/eclipse/core/internal/runtime/AuthorizationHandler +instanceKlass org/eclipse/core/runtime/IBundleGroupProvider +instanceKlass java/util/Collections$ReverseComparator2 +instanceKlass @bci java/util/Comparator comparing (Ljava/util/function/Function;)Ljava/util/Comparator; 6 member ; # java/util/Comparator$$Lambda+0x00000219010e3278 +instanceKlass @bci org/eclipse/core/internal/runtime/InternalPlatform ()V 98 argL0 ; # org/eclipse/core/internal/runtime/InternalPlatform$$Lambda+0x0000021901150000 +instanceKlass org/eclipse/core/runtime/ILog +instanceKlass org/eclipse/core/internal/runtime/InternalPlatform +instanceKlass org/eclipse/core/runtime/Plugin +instanceKlass org/eclipse/osgi/internal/loader/buddy/PolicyHandler +instanceKlass org/osgi/util/promise/DeferredPromiseImpl$ResolveWith +instanceKlass @bci org/osgi/util/promise/PromiseFactory$All run ()V 81 member ; # org/osgi/util/promise/PromiseFactory$All$$Lambda+0x000002190114a448 +instanceKlass @cpi org/osgi/util/promise/PromiseFactory$All 144 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000002190114b000 +instanceKlass org/osgi/util/promise/PromiseImpl$Result +instanceKlass org/osgi/util/promise/PromiseFactory$All +instanceKlass org/osgi/util/promise/PromiseImpl$InlineCallback +instanceKlass org/eclipse/core/runtime/QualifiedName +instanceKlass org/apache/felix/scr/impl/inject/methods/ActivateMethod$1 +instanceKlass org/apache/felix/scr/impl/inject/MethodResult +instanceKlass org/eclipse/core/internal/content/ContentTypeManager$ContentTypeRegistryChangeListener +instanceKlass org/apache/felix/scr/impl/manager/DependencyManager$OpenStatusImpl +instanceKlass org/apache/felix/scr/impl/manager/SingleComponentManager$1 +instanceKlass org/apache/felix/scr/impl/inject/ReferenceMethod$1 +instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod$Resolved +instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod$MethodInfo +instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod$1 +instanceKlass org/eclipse/core/runtime/content/IContentTypeManager$ISelectionPolicy +instanceKlass org/eclipse/core/internal/content/BasicDescription +instanceKlass org/eclipse/core/internal/content/ContentTypeBuilder +instanceKlass org/eclipse/core/internal/content/ContentTypeCatalog +instanceKlass org/eclipse/core/internal/preferences/BundleStateScopeServiceFactory +instanceKlass org/eclipse/core/internal/preferences/Activator$1 +instanceKlass @bci org/eclipse/core/internal/runtime/InternalPlatform openOSGiTrackers ()V 96 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901148c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901148800 +instanceKlass @bci org/eclipse/core/internal/runtime/InternalPlatform openOSGiTrackers ()V 96 argL3 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901148400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901148000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901147c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901147800 +instanceKlass org/eclipse/core/internal/registry/ExtensionRegistry$ListenerInfo +instanceKlass org/eclipse/core/runtime/IContributor +instanceKlass org/eclipse/core/internal/preferences/PreferenceServiceRegistryHelper +instanceKlass @bci org/eclipse/core/internal/preferences/OSGiPreferencesServiceManager getQualifier (Lorg/osgi/framework/Bundle;)Ljava/lang/String; 6 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901147400 +instanceKlass @bci org/eclipse/core/internal/preferences/OSGiPreferencesServiceManager getQualifier (Lorg/osgi/framework/Bundle;)Ljava/lang/String; 6 argL3 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901147000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901146c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901146800 +instanceKlass @bci org/eclipse/equinox/internal/app/EclipseAppDescriptor getInstanceID ()Ljava/lang/String; 31 argL1 argL1 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901146400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901146000 +instanceKlass org/eclipse/core/runtime/ListenerList$ListenerListIterator +instanceKlass org/eclipse/core/internal/preferences/OSGiPreferencesServiceManager +instanceKlass org/osgi/service/prefs/PreferencesService +instanceKlass org/eclipse/core/internal/preferences/AbstractScope +instanceKlass org/eclipse/core/runtime/Assert +instanceKlass org/eclipse/core/runtime/Path +instanceKlass org/eclipse/core/runtime/Path$Constants +instanceKlass org/eclipse/core/runtime/IPath +instanceKlass org/eclipse/core/internal/preferences/ImmutableMap +instanceKlass org/eclipse/core/internal/preferences/EclipsePreferences +instanceKlass org/eclipse/core/runtime/preferences/IScope +instanceKlass org/eclipse/core/runtime/preferences/IEclipsePreferences +instanceKlass org/eclipse/core/internal/preferences/PreferencesService +instanceKlass org/eclipse/core/runtime/preferences/IPreferencesService +instanceKlass org/eclipse/core/internal/preferences/exchange/ILegacyPreferences +instanceKlass org/eclipse/core/internal/preferences/PreferencesOSGiUtils +instanceKlass org/eclipse/core/internal/preferences/Activator +instanceKlass org/eclipse/core/runtime/preferences/IScopeContext +instanceKlass org/eclipse/core/runtime/content/IContentTypeManager$IContentTypeChangeListener +instanceKlass org/apache/felix/scr/impl/inject/ValueUtils +instanceKlass org/eclipse/core/internal/content/ILazySource +instanceKlass org/eclipse/core/internal/adapter/AdapterManagerListener +instanceKlass org/eclipse/core/internal/runtime/IAdapterManagerProvider +instanceKlass org/eclipse/core/runtime/IRegistryEventListener +instanceKlass org/eclipse/core/internal/registry/osgi/RegistryCommandProvider +instanceKlass org/eclipse/osgi/framework/console/CommandProvider +instanceKlass org/eclipse/core/internal/registry/RegistryProviderFactory +instanceKlass org/eclipse/core/internal/registry/osgi/RegistryProviderOSGI +instanceKlass org/eclipse/core/internal/registry/osgi/EclipseBundleListener +instanceKlass org/eclipse/core/internal/registry/OffsetTable +instanceKlass org/eclipse/osgi/compatibility/state/ReadOnlyState +instanceKlass org/eclipse/core/internal/registry/HashtableOfStringAndInt +instanceKlass org/eclipse/core/internal/registry/KeyedHashSet +instanceKlass org/eclipse/core/runtime/IConfigurationElement +instanceKlass org/eclipse/core/internal/registry/Handle +instanceKlass org/eclipse/core/internal/registry/RegistryObjectManager +instanceKlass org/eclipse/core/internal/registry/IObjectManager +instanceKlass @bci org/eclipse/core/internal/registry/RegistryProperties getContextProperty (Ljava/lang/String;)Ljava/lang/String; 18 member ; # org/eclipse/core/internal/registry/RegistryProperties$$Lambda+0x000002190113a9f0 +instanceKlass org/eclipse/core/internal/registry/RegistryTimestamp +instanceKlass org/eclipse/core/internal/registry/TableReader +instanceKlass org/eclipse/core/runtime/ListenerList +instanceKlass org/eclipse/core/internal/registry/ReadWriteMonitor +instanceKlass org/eclipse/core/runtime/ISafeRunnable +instanceKlass org/eclipse/core/internal/registry/RegistryObjectFactory +instanceKlass org/eclipse/core/runtime/IExtensionDelta +instanceKlass org/eclipse/core/runtime/IExtensionPoint +instanceKlass org/eclipse/core/runtime/IExtension +instanceKlass org/eclipse/core/internal/registry/RegistryObject +instanceKlass org/eclipse/core/internal/registry/KeyedElement +instanceKlass org/eclipse/core/internal/registry/ExtensionRegistry +instanceKlass org/eclipse/core/runtime/spi/IDynamicExtensionRegistry +instanceKlass org/eclipse/core/runtime/IExtensionRegistry +instanceKlass org/eclipse/core/runtime/RegistryFactory +instanceKlass org/eclipse/core/internal/registry/ReferenceMap$IEntry +instanceKlass org/eclipse/core/internal/registry/ReferenceMap +instanceKlass org/eclipse/core/internal/registry/osgi/OSGIUtils +instanceKlass org/eclipse/core/internal/registry/osgi/EquinoxUtils +instanceKlass org/eclipse/core/internal/registry/RegistryProperties +instanceKlass org/eclipse/core/runtime/spi/IRegistryProvider +instanceKlass org/eclipse/core/runtime/spi/RegistryStrategy +instanceKlass org/eclipse/core/internal/registry/osgi/Activator +instanceKlass org/eclipse/core/runtime/IRegistryChangeListener +instanceKlass org/eclipse/core/internal/content/IContentTypeInfo +instanceKlass org/eclipse/core/runtime/content/IContentDescription +instanceKlass org/eclipse/core/runtime/content/IContentType +instanceKlass org/eclipse/core/runtime/content/IContentTypeSettings +instanceKlass org/osgi/service/prefs/Preferences +instanceKlass org/apache/felix/scr/impl/inject/internal/ComponentConstructorImpl +instanceKlass org/apache/felix/scr/impl/inject/ReferenceMethods$1 +instanceKlass org/apache/felix/scr/impl/inject/ReferenceMethod +instanceKlass org/apache/felix/scr/impl/inject/methods/BindMethods +instanceKlass org/apache/felix/scr/impl/inject/ReferenceMethods +instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod$NotApplicable +instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod$NotResolved +instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod$State +instanceKlass org/apache/felix/scr/impl/inject/BaseParameter +instanceKlass org/apache/felix/scr/impl/inject/methods/BaseMethod +instanceKlass org/eclipse/core/internal/content/ContentTypeMatcher +instanceKlass org/eclipse/core/runtime/content/IContentTypeManager +instanceKlass org/eclipse/core/runtime/content/IContentTypeMatcher +instanceKlass org/eclipse/osgi/internal/framework/EquinoxBundle$1 +instanceKlass org/apache/felix/scr/impl/helper/ComponentServiceObjectsHelper +instanceKlass org/apache/felix/scr/impl/manager/EdgeInfo +instanceKlass org/apache/felix/scr/impl/manager/ComponentContextImpl$ComponentInstanceImpl +instanceKlass org/osgi/service/component/ComponentInstance +instanceKlass org/apache/felix/scr/impl/manager/ComponentContextImpl +instanceKlass org/apache/felix/scr/impl/manager/RegistrationManager$RegStateWrapper +instanceKlass org/apache/felix/scr/impl/BundleComponentActivator$ListenerInfo +instanceKlass org/apache/felix/scr/impl/manager/ServiceTracker$AbstractTracked +instanceKlass org/apache/felix/scr/impl/manager/ExtendedServiceListener +instanceKlass org/apache/felix/scr/impl/manager/ServiceTracker +instanceKlass java/util/Collections$ReverseComparator +instanceKlass org/apache/felix/scr/impl/helper/Coercions +instanceKlass org/apache/felix/scr/impl/manager/DependencyManager$AbstractCustomizer +instanceKlass org/apache/felix/scr/impl/inject/RefPair +instanceKlass org/apache/felix/scr/impl/manager/DependencyManager$Customizer +instanceKlass org/apache/felix/scr/impl/manager/ServiceTrackerCustomizer +instanceKlass org/apache/felix/scr/impl/inject/OpenStatus +instanceKlass org/apache/felix/scr/impl/manager/DependencyManager +instanceKlass org/apache/felix/scr/impl/manager/ReferenceManager +instanceKlass org/osgi/util/promise/Deferred +instanceKlass org/apache/felix/scr/impl/inject/ScrComponentContext +instanceKlass org/apache/felix/scr/component/ExtComponentContext +instanceKlass org/apache/felix/scr/impl/manager/SingleComponentManager$SetImplementationObject +instanceKlass org/apache/felix/scr/impl/manager/RegistrationManager +instanceKlass org/apache/felix/scr/impl/helper/ConfigAdminTracker$1 +instanceKlass org/apache/felix/scr/impl/helper/ConfigAdminTracker +instanceKlass java/util/Timer$ThreadReaper +instanceKlass java/util/TaskQueue +instanceKlass java/util/Timer +instanceKlass org/apache/felix/scr/impl/inject/ComponentConstructor +instanceKlass org/apache/felix/scr/impl/inject/LifecycleMethod +instanceKlass org/apache/felix/scr/impl/inject/internal/ComponentMethodsImpl +instanceKlass org/apache/felix/scr/impl/metadata/TargetedPID +instanceKlass java/util/concurrent/CompletionStage +instanceKlass org/osgi/util/promise/PromiseImpl +instanceKlass org/osgi/util/promise/Promise +instanceKlass org/osgi/util/promise/PromiseFactory +instanceKlass org/osgi/util/promise/Promises +instanceKlass org/apache/felix/scr/impl/inject/ComponentMethods +instanceKlass org/osgi/service/component/ComponentFactory +instanceKlass org/apache/felix/scr/impl/manager/AbstractComponentManager +instanceKlass org/apache/felix/scr/impl/manager/ComponentManager +instanceKlass org/apache/felix/scr/impl/manager/ConfigurableComponentHolder +instanceKlass org/apache/felix/scr/impl/manager/ComponentContainer +instanceKlass org/apache/felix/scr/impl/ComponentRegistryKey +instanceKlass org/apache/felix/scr/impl/metadata/PropertyMetadata +instanceKlass org/apache/felix/scr/impl/metadata/ReferenceMetadata +instanceKlass org/apache/felix/scr/impl/metadata/ServiceMetadata +instanceKlass org/apache/felix/scr/impl/metadata/ComponentMetadata +instanceKlass org/apache/felix/scr/impl/xml/XmlConstants +instanceKlass com/sun/org/apache/xerces/internal/impl/Constants$ArrayEnumeration +instanceKlass com/sun/org/apache/xerces/internal/impl/Constants +instanceKlass com/sun/org/apache/xerces/internal/parsers/AbstractSAXParser$LocatorProxy +instanceKlass org/xml/sax/ext/Locator2 +instanceKlass org/xml/sax/Locator +instanceKlass com/sun/org/apache/xerces/internal/util/XMLSymbols +instanceKlass com/sun/org/apache/xerces/internal/util/XMLChar +instanceKlass com/sun/xml/internal/stream/Entity +instanceKlass com/sun/xml/internal/stream/util/BufferAllocator +instanceKlass com/sun/xml/internal/stream/util/ThreadLocalBufferAllocator +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityManager$EncodingInfo +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLLimitAnalyzer +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLInputSource +instanceKlass com/sun/org/apache/xerces/internal/util/ErrorHandlerWrapper +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLErrorHandler +instanceKlass com/sun/org/apache/xerces/internal/impl/ExternalSubsetResolver +instanceKlass com/sun/org/apache/xerces/internal/util/EntityResolverWrapper +instanceKlass org/xml/sax/ext/EntityResolver2 +instanceKlass org/xml/sax/InputSource +instanceKlass com/sun/org/apache/xerces/internal/parsers/AbstractSAXParser$AttributesProxy +instanceKlass org/xml/sax/ext/Attributes2 +instanceKlass org/xml/sax/Attributes +instanceKlass org/xml/sax/AttributeList +instanceKlass com/sun/org/apache/xerces/internal/util/FeatureState +instanceKlass com/sun/org/apache/xerces/internal/util/PropertyState +instanceKlass com/sun/org/apache/xerces/internal/impl/msg/XMLMessageFormatter +instanceKlass com/sun/org/apache/xerces/internal/util/MessageFormatter +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLVersionDetector +instanceKlass com/sun/org/apache/xerces/internal/impl/validation/ValidationManager +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/NMTOKENDatatypeValidator +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/NOTATIONDatatypeValidator +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/ENTITYDatatypeValidator +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/ListDatatypeValidator +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/IDREFDatatypeValidator +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/IDDatatypeValidator +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/dtd/StringDatatypeValidator +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/DatatypeValidator +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/DTDDVFactory +instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/DTDGrammarBucket +instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLAttributeDecl +instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLSimpleType +instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLElementDecl +instanceKlass com/sun/org/apache/xerces/internal/impl/validation/ValidationState +instanceKlass com/sun/org/apache/xerces/internal/impl/dv/ValidationContext +instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLDTDValidator +instanceKlass com/sun/org/apache/xerces/internal/impl/RevalidationHandler +instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLDTDValidatorFilter +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDocumentFilter +instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLEntityDecl +instanceKlass com/sun/org/apache/xerces/internal/impl/dtd/XMLDTDProcessor +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDContentModelFilter +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDFilter +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDScanner +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDContentModelSource +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDTDSource +instanceKlass com/sun/org/apache/xerces/internal/xni/grammars/XMLDTDDescription +instanceKlass com/sun/org/apache/xerces/internal/xni/grammars/XMLGrammarDescription +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl$TrailingMiscDriver +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl$PrologDriver +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentScannerImpl$XMLDeclDriver +instanceKlass com/sun/org/apache/xerces/internal/util/NamespaceSupport +instanceKlass com/sun/org/apache/xerces/internal/xni/NamespaceContext +instanceKlass com/sun/org/apache/xerces/internal/util/XMLAttributesImpl$Attribute +instanceKlass com/sun/org/apache/xerces/internal/util/XMLAttributesImpl +instanceKlass com/sun/org/apache/xerces/internal/xni/XMLAttributes +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$FragmentContentDriver +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$Driver +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$ElementStack2 +instanceKlass com/sun/org/apache/xerces/internal/xni/QName +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLDocumentFragmentScannerImpl$ElementStack +instanceKlass com/sun/org/apache/xerces/internal/xni/XMLString +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLScanner +instanceKlass com/sun/xml/internal/stream/XMLBufferListener +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityHandler +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDocumentScanner +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLDocumentSource +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLErrorReporter +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityScanner +instanceKlass com/sun/org/apache/xerces/internal/xni/XMLLocator +instanceKlass com/sun/xml/internal/stream/XMLEntityStorage +instanceKlass com/sun/org/apache/xerces/internal/util/AugmentationsImpl$AugmentationsItemsContainer +instanceKlass com/sun/org/apache/xerces/internal/util/AugmentationsImpl +instanceKlass com/sun/org/apache/xerces/internal/xni/Augmentations +instanceKlass com/sun/org/apache/xerces/internal/util/XMLResourceIdentifierImpl +instanceKlass com/sun/org/apache/xerces/internal/xni/XMLResourceIdentifier +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityManager +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLEntityResolver +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLComponent +instanceKlass com/sun/org/apache/xerces/internal/util/SymbolTable$Entry +instanceKlass com/sun/org/apache/xerces/internal/util/SymbolTable +instanceKlass jdk/xml/internal/JdkConstants +instanceKlass jdk/xml/internal/JdkXmlUtils +instanceKlass com/sun/org/apache/xerces/internal/util/ParserConfigurationSettings +instanceKlass com/sun/org/apache/xerces/internal/parsers/XML11Configurable +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLPullParserConfiguration +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLParserConfiguration +instanceKlass com/sun/org/apache/xerces/internal/xni/parser/XMLComponentManager +instanceKlass com/sun/org/apache/xerces/internal/parsers/XMLParser +instanceKlass com/sun/org/apache/xerces/internal/xni/XMLDTDContentModelHandler +instanceKlass com/sun/org/apache/xerces/internal/xni/XMLDTDHandler +instanceKlass com/sun/org/apache/xerces/internal/xni/XMLDocumentHandler +instanceKlass org/xml/sax/XMLReader +instanceKlass org/xml/sax/Parser +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityPropertyManager +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityManager +instanceKlass javax/xml/parsers/SAXParser +instanceKlass com/sun/org/apache/xerces/internal/xs/PSVIProvider +instanceKlass com/sun/org/apache/xerces/internal/jaxp/JAXPConstants +instanceKlass @bci javax/xml/parsers/FactoryFinder newInstance (Ljava/lang/Class;Ljava/lang/String;Ljava/lang/ClassLoader;ZZ)Ljava/lang/Object; 104 member ; # javax/xml/parsers/FactoryFinder$$Lambda+0x00000219010c8ca0 +instanceKlass @bci jdk/xml/internal/SecuritySupport getContextClassLoader ()Ljava/lang/ClassLoader; 0 argL0 ; # jdk/xml/internal/SecuritySupport$$Lambda+0x00000219010c8838 +instanceKlass @bci javax/xml/parsers/FactoryFinder find (Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Object; 104 member ; # javax/xml/parsers/FactoryFinder$$Lambda+0x00000219010c8620 +instanceKlass javax/xml/parsers/FactoryFinder$1 +instanceKlass @bci jdk/xml/internal/SecuritySupport getFileInputStream (Ljava/io/File;)Ljava/io/FileInputStream; 1 member ; # jdk/xml/internal/SecuritySupport$$Lambda+0x00000219010c81e8 +instanceKlass @bci jdk/xml/internal/SecuritySupport doesFileExist (Ljava/io/File;)Z 1 member ; # jdk/xml/internal/SecuritySupport$$Lambda+0x00000219010c7fd0 +instanceKlass @bci javax/xml/parsers/FactoryFinder find (Ljava/lang/Class;Ljava/lang/String;)Ljava/lang/Object; 6 member ; # javax/xml/parsers/FactoryFinder$$Lambda+0x00000219010c7db8 +instanceKlass @bci jdk/xml/internal/SecuritySupport getSystemProperty (Ljava/lang/String;)Ljava/lang/String; 1 member ; # jdk/xml/internal/SecuritySupport$$Lambda+0x00000219010c7ba0 +instanceKlass jdk/xml/internal/SecuritySupport +instanceKlass javax/xml/parsers/FactoryFinder +instanceKlass javax/xml/parsers/SAXParserFactory +instanceKlass @bci org/eclipse/osgi/storage/Storage lambda$7 (Ljava/util/List;Ljava/lang/String;)Ljava/util/stream/Stream; 7 member ; # org/eclipse/osgi/storage/Storage$$Lambda+0x0000021901119838 +instanceKlass @bci java/util/stream/StreamSpliterators$WrappingSpliterator initPartialTraversalState ()V 37 member ; # java/util/stream/StreamSpliterators$WrappingSpliterator$$Lambda+0x00000219010c6d20 +instanceKlass java/util/function/BooleanSupplier +instanceKlass @bci java/util/stream/StreamSpliterators$WrappingSpliterator initPartialTraversalState ()V 24 member ; # java/util/stream/StreamSpliterators$WrappingSpliterator$$Lambda+0x00000219010c6890 +instanceKlass java/util/stream/StreamSpliterators +instanceKlass java/util/stream/AbstractSpinedBuffer +instanceKlass org/eclipse/osgi/internal/container/InternalUtils$1 +instanceKlass java/util/stream/StreamSpliterators$AbstractWrappingSpliterator +instanceKlass @bci java/util/stream/AbstractPipeline spliterator ()Ljava/util/Spliterator; 103 member ; # java/util/stream/AbstractPipeline$$Lambda+0x00000219010c5a98 +instanceKlass @bci org/eclipse/osgi/storage/Storage findEntries (Ljava/util/List;Ljava/lang/String;Ljava/lang/String;I)Ljava/util/Enumeration; 101 argL0 ; # org/eclipse/osgi/storage/Storage$$Lambda+0x00000219011193b8 +instanceKlass @bci org/eclipse/osgi/storage/Storage findEntries (Ljava/util/List;Ljava/lang/String;Ljava/lang/String;I)Ljava/util/Enumeration; 91 member ; # org/eclipse/osgi/storage/Storage$$Lambda+0x0000021901119180 +instanceKlass org/xml/sax/helpers/DefaultHandler +instanceKlass org/xml/sax/ErrorHandler +instanceKlass org/xml/sax/ContentHandler +instanceKlass org/xml/sax/DTDHandler +instanceKlass org/xml/sax/EntityResolver +instanceKlass org/apache/felix/scr/impl/BundleComponentActivator +instanceKlass org/apache/felix/scr/impl/manager/ComponentActivator +instanceKlass org/apache/felix/scr/impl/manager/ExtendedServiceListenerContext +instanceKlass java/util/AbstractList$Itr +instanceKlass org/eclipse/core/internal/runtime/IAdapterFactoryExt +instanceKlass org/eclipse/core/internal/runtime/AdapterFactoryBridge$LazyAdapterFactory +instanceKlass org/eclipse/core/internal/runtime/AdapterFactoryBridge +instanceKlass org/eclipse/core/runtime/IAdapterFactory +instanceKlass org/eclipse/core/internal/runtime/TracingOptions$1 +instanceKlass org/eclipse/core/internal/runtime/TracingOptions +instanceKlass java/util/AbstractMap$1$1 +instanceKlass java/util/ArrayList$ArrayListSpliterator +instanceKlass org/osgi/service/url/URLStreamHandlerService +instanceKlass @bci org/eclipse/core/runtime/ServiceCaller current ()Ljava/util/Optional; 4 argL0 ; # org/eclipse/core/runtime/ServiceCaller$$Lambda+0x000002190111f000 +instanceKlass @bci org/eclipse/core/internal/runtime/InternalPlatform openOSGiTrackers ()V 96 argL2 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000002190111e000 +instanceKlass @bci org/eclipse/core/runtime/ServiceCaller trackCurrent ()Ljava/util/Optional; 19 member ; # org/eclipse/core/runtime/ServiceCaller$$Lambda+0x000002190111dca8 +instanceKlass @bci org/eclipse/core/runtime/ServiceCaller getCurrent ()Ljava/util/Optional; 12 member ; # org/eclipse/core/runtime/ServiceCaller$$Lambda+0x000002190111da70 +instanceKlass sun/invoke/util/VerifyAccess$1 +instanceKlass org/eclipse/core/runtime/ServiceCaller$ReferenceAndService +instanceKlass java/util/concurrent/ConcurrentLinkedQueue$Node +instanceKlass org/eclipse/core/internal/runtime/AdapterManager +instanceKlass org/eclipse/core/runtime/IAdapterManager +instanceKlass org/eclipse/core/internal/runtime/PlatformURLConverter +instanceKlass org/eclipse/core/internal/runtime/RuntimeLog +instanceKlass org/eclipse/core/runtime/IStatus +instanceKlass org/eclipse/core/internal/runtime/PlatformLogWriter +instanceKlass org/eclipse/osgi/internal/log/ExtendedLogReaderServiceImpl +instanceKlass @bci org/eclipse/core/runtime/ServiceCaller (Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/String;)V 39 argL0 ; # org/eclipse/core/runtime/ServiceCaller$$Lambda+0x000002190111c000 +instanceKlass @bci org/osgi/framework/FrameworkUtil getBundle (Ljava/lang/Class;)Lorg/osgi/framework/Bundle; 26 member ; # org/osgi/framework/FrameworkUtil$$Lambda+0x0000021901118448 +instanceKlass @bci org/osgi/framework/FrameworkUtil getBundle (Ljava/lang/Class;)Lorg/osgi/framework/Bundle; 17 argL0 ; # org/osgi/framework/FrameworkUtil$$Lambda+0x0000021901118218 +instanceKlass @bci org/osgi/framework/FrameworkUtil getBundle (Ljava/lang/Class;)Lorg/osgi/framework/Bundle; 1 member ; # org/osgi/framework/FrameworkUtil$$Lambda+0x0000021901118000 +instanceKlass @bci org/osgi/framework/FrameworkUtil ()V 27 member ; # org/osgi/framework/FrameworkUtil$$Lambda+0x000002190110fbe8 +instanceKlass org/osgi/framework/connect/FrameworkUtilHelper +instanceKlass @bci org/osgi/framework/FrameworkUtil ()V 8 argL0 ; # org/osgi/framework/FrameworkUtil$$Lambda+0x000002190110f7e8 +instanceKlass @bci org/eclipse/core/runtime/ServiceCaller (Ljava/lang/Class;Ljava/lang/Class;Ljava/lang/String;)V 31 argL0 ; # org/eclipse/core/runtime/ServiceCaller$$Lambda+0x0000021901116c88 +instanceKlass org/osgi/framework/FrameworkUtil +instanceKlass org/eclipse/core/runtime/ServiceCaller +instanceKlass org/eclipse/core/internal/runtime/Activator +instanceKlass org/apache/felix/scr/impl/config/ScrMetaTypeProviderServiceFactory +instanceKlass org/apache/felix/scr/impl/config/ScrManagedServiceServiceFactory +instanceKlass org/apache/felix/scr/impl/ComponentCommands$2 +instanceKlass org/apache/felix/scr/impl/ComponentCommands$1 +instanceKlass org/apache/felix/scr/impl/ComponentCommands +instanceKlass org/eclipse/osgi/storage/ManifestLocalization$BundleResourceBundle +instanceKlass org/eclipse/osgi/storage/ManifestLocalization +instanceKlass org/apache/felix/scr/impl/Activator$ScrExtension +instanceKlass org/apache/felix/scr/impl/ComponentActorThread$1 +instanceKlass org/apache/felix/scr/impl/ComponentActorThread +instanceKlass org/apache/felix/scr/impl/runtime/ServiceComponentRuntimeImpl +instanceKlass java/util/TimerTask +instanceKlass org/apache/felix/scr/impl/manager/ComponentHolder +instanceKlass org/apache/felix/scr/impl/manager/RegionConfigurationSupport +instanceKlass org/apache/felix/scr/impl/ComponentRegistry +instanceKlass org/osgi/util/tracker/BundleTracker +instanceKlass org/apache/felix/scr/impl/logger/ScrLogManager$1 +instanceKlass org/apache/felix/scr/impl/logger/LogManager$LogDomain +instanceKlass org/apache/felix/scr/impl/logger/LogManager$Lock +instanceKlass org/apache/felix/scr/impl/logger/LogManager$LoggerFacade +instanceKlass org/apache/felix/scr/impl/logger/BundleLogger +instanceKlass org/apache/felix/scr/impl/logger/ComponentLogger +instanceKlass org/apache/felix/scr/impl/logger/ScrLogger +instanceKlass org/apache/felix/scr/impl/logger/InternalLogger +instanceKlass org/apache/felix/scr/impl/logger/ScrLoggerFactory +instanceKlass org/osgi/service/component/ComponentContext +instanceKlass org/osgi/service/component/ComponentServiceObjects +instanceKlass org/apache/felix/scr/impl/inject/internal/ClassUtils +instanceKlass org/apache/felix/scr/impl/config/ScrConfigurationImpl +instanceKlass org/osgi/service/component/runtime/ServiceComponentRuntime +instanceKlass org/apache/felix/scr/impl/manager/ScrConfiguration +instanceKlass org/apache/felix/scr/impl/logger/LogConfiguration +instanceKlass org/eclipse/osgi/internal/loader/ModuleClassLoader$DefineClassResult +instanceKlass org/apache/felix/scr/impl/AbstractExtender +instanceKlass org/osgi/util/tracker/BundleTrackerCustomizer +instanceKlass org/osgi/framework/hooks/weaving/WeavingHook +instanceKlass org/eclipse/osgi/internal/weaving/WeavingHookConfigurator$WovenClassContext +instanceKlass org/eclipse/osgi/internal/weaving/WovenClassImpl +instanceKlass org/osgi/framework/hooks/weaving/WovenClass +instanceKlass org/eclipse/osgi/internal/loader/classpath/ClasspathManager$DefineContext +instanceKlass org/eclipse/osgi/internal/loader/BundleLoader$3 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901110400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901110000 +instanceKlass org/eclipse/osgi/container/ModuleContainer$ContainerStartLevel$2 +instanceKlass java/util/concurrent/CountDownLatch +instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor$1$1 +instanceKlass org/osgi/dto/DTO +instanceKlass org/eclipse/osgi/framework/eventmgr/EventManager$EventThread$Queued +instanceKlass @bci org/eclipse/osgi/framework/eventmgr/EventManager getEventThread ()Lorg/eclipse/osgi/framework/eventmgr/EventManager$EventThread; 24 member ; # org/eclipse/osgi/framework/eventmgr/EventManager$$Lambda+0x000002190110a950 +instanceKlass @bci org/eclipse/osgi/internal/framework/EquinoxEventPublisher notifyEventHooksPrivileged (Lorg/osgi/framework/BundleEvent;Ljava/util/Collection;)V 98 member ; # org/eclipse/osgi/internal/framework/EquinoxEventPublisher$$Lambda+0x000002190110a408 +instanceKlass org/osgi/framework/hooks/bundle/EventHook +instanceKlass @bci org/eclipse/osgi/internal/framework/BundleContextImpl notifyFindHooksPriviledged (Lorg/eclipse/osgi/internal/framework/BundleContextImpl;Ljava/util/Collection;)V 73 member ; # org/eclipse/osgi/internal/framework/BundleContextImpl$$Lambda+0x00000219011099e8 +instanceKlass org/osgi/framework/hooks/bundle/FindHook +instanceKlass org/eclipse/osgi/framework/util/FilePath +instanceKlass sun/nio/ch/FileChannelImpl$Closer +instanceKlass sun/nio/fs/WindowsChannelFactory$Flags +instanceKlass sun/nio/fs/WindowsChannelFactory$1 +instanceKlass sun/nio/fs/WindowsChannelFactory +instanceKlass org/eclipse/core/runtime/internal/adaptor/ConsoleManager +instanceKlass org/eclipse/core/runtime/internal/adaptor/DefaultStartupMonitor +instanceKlass org/eclipse/osgi/service/runnable/StartupMonitor +instanceKlass java/lang/Thread$Builder$OfVirtual +instanceKlass java/lang/Thread$Builder$OfPlatform +instanceKlass java/lang/Thread$Builder +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceFactoryUse$1 +instanceKlass java/util/LinkedList$ListItr +instanceKlass java/util/LinkedList$Node +instanceKlass org/eclipse/osgi/internal/resolver/StateImpl +instanceKlass org/eclipse/osgi/service/resolver/GenericSpecification +instanceKlass org/eclipse/osgi/service/resolver/BundleSpecification +instanceKlass org/eclipse/osgi/service/resolver/BundleDescription +instanceKlass org/eclipse/osgi/service/resolver/HostSpecification +instanceKlass org/eclipse/osgi/service/resolver/GenericDescription +instanceKlass org/eclipse/osgi/service/resolver/NativeCodeSpecification +instanceKlass org/eclipse/osgi/service/resolver/NativeCodeDescription +instanceKlass org/eclipse/osgi/service/resolver/ExportPackageDescription +instanceKlass org/eclipse/osgi/service/resolver/BaseDescription +instanceKlass org/eclipse/osgi/service/resolver/ImportPackageSpecification +instanceKlass org/eclipse/osgi/service/resolver/VersionConstraint +instanceKlass org/eclipse/osgi/internal/resolver/StateObjectFactoryImpl +instanceKlass org/eclipse/osgi/service/resolver/Resolver +instanceKlass org/eclipse/osgi/service/resolver/State +instanceKlass org/eclipse/osgi/service/resolver/StateObjectFactory +instanceKlass org/eclipse/osgi/compatibility/state/PlatformAdminImpl +instanceKlass org/eclipse/osgi/service/resolver/PlatformAdmin +instanceKlass org/eclipse/osgi/compatibility/state/Activator +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceConsumer$2 +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceConsumer$1 +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceConsumer +instanceKlass org/eclipse/osgi/service/security/TrustEngine +instanceKlass org/eclipse/osgi/internal/signedcontent/SignedContentConstants +instanceKlass org/eclipse/osgi/internal/signedcontent/SignedBundleHook$1 +instanceKlass org/eclipse/osgi/internal/framework/XMLParsingServiceFactory +instanceKlass org/eclipse/osgi/storage/BundleLocalizationImpl +instanceKlass org/eclipse/osgi/service/localization/BundleLocalization +instanceKlass org/eclipse/osgi/storage/url/BundleURLConverter +instanceKlass org/eclipse/osgi/service/urlconversion/URLConverter +instanceKlass org/apache/felix/resolver/Logger +instanceKlass org/apache/felix/resolver/util/OpenHashMap +instanceKlass org/apache/felix/resolver/ResolutionError +instanceKlass org/apache/felix/resolver/ResolverImpl +instanceKlass org/osgi/service/resolver/Resolver +instanceKlass org/eclipse/osgi/internal/framework/legacy/StartLevelImpl +instanceKlass org/eclipse/osgi/internal/framework/legacy/PackageAdminImpl +instanceKlass org/osgi/service/condition/ConditionImpl +instanceKlass org/osgi/service/condition/Condition +instanceKlass java/net/ContentHandler +instanceKlass java/net/ContentHandlerFactory +instanceKlass org/eclipse/osgi/internal/url/EquinoxFactoryManager +instanceKlass org/eclipse/osgi/internal/log/ConfigAdminListener +instanceKlass @bci org/eclipse/osgi/internal/serviceregistry/ServiceRegistry notifyFindHooksPrivileged (Lorg/eclipse/osgi/internal/framework/BundleContextImpl;Ljava/lang/String;Ljava/lang/String;ZLjava/util/Collection;)V 102 ; # java/lang/invoke/LambdaForm$MH+0x00000219010b9400 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x00000219010b9000 +instanceKlass @bci org/eclipse/osgi/internal/serviceregistry/ServiceRegistry notifyFindHooksPrivileged (Lorg/eclipse/osgi/internal/framework/BundleContextImpl;Ljava/lang/String;Ljava/lang/String;ZLjava/util/Collection;)V 102 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x00000219010b8c00 +instanceKlass @bci org/eclipse/osgi/internal/serviceregistry/ServiceRegistry notifyFindHooksPrivileged (Lorg/eclipse/osgi/internal/framework/BundleContextImpl;Ljava/lang/String;Ljava/lang/String;ZLjava/util/Collection;)V 102 member ; # org/eclipse/osgi/internal/serviceregistry/ServiceRegistry$$Lambda+0x00000219010bbd20 +instanceKlass @cpi org/eclipse/osgi/internal/serviceregistry/ServiceRegistry 1084 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x00000219010b8800 +instanceKlass org/osgi/framework/hooks/service/FindHook +instanceKlass org/eclipse/osgi/internal/serviceregistry/ShrinkableCollection +instanceKlass org/eclipse/osgi/internal/framework/FilterImpl$Parser +instanceKlass org/eclipse/osgi/internal/framework/FilterImpl +instanceKlass org/osgi/util/tracker/AbstractTracked +instanceKlass org/osgi/util/tracker/ServiceTracker +instanceKlass org/eclipse/osgi/internal/log/EventAdminAdapter +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceRegistry$2 +instanceKlass org/eclipse/osgi/framework/eventmgr/CopyOnWriteIdentityMap$Snapshot$SnapshotIterator +instanceKlass org/eclipse/osgi/framework/eventmgr/ListenerQueue +instanceKlass @bci org/eclipse/osgi/internal/serviceregistry/ServiceRegistry notifyEventListenerHooksPrivileged (Lorg/osgi/framework/ServiceEvent;Ljava/util/Map;)V 78 member ; # org/eclipse/osgi/internal/serviceregistry/ServiceRegistry$$Lambda+0x00000219010bdb68 +instanceKlass org/osgi/framework/hooks/service/EventListenerHook +instanceKlass @bci org/eclipse/osgi/internal/serviceregistry/ServiceRegistry notifyEventHooksPrivileged (Lorg/osgi/framework/ServiceEvent;Ljava/util/Collection;)V 78 member ; # org/eclipse/osgi/internal/serviceregistry/ServiceRegistry$$Lambda+0x00000219010bd3b0 +instanceKlass org/osgi/framework/hooks/service/EventHook +instanceKlass org/eclipse/osgi/framework/eventmgr/CopyOnWriteIdentityMap$Snapshot +instanceKlass org/osgi/framework/PrototypeServiceFactory +instanceKlass org/eclipse/osgi/framework/util/CaseInsensitiveDictionaryMap$CaseInsensitiveKey +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceReferenceImpl +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceUse +instanceKlass @bci org/eclipse/osgi/internal/serviceregistry/ServiceRegistry notifyListenerHooksPrivileged (Ljava/util/Collection;Z)V 106 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x00000219010b8400 +instanceKlass @bci org/eclipse/osgi/internal/serviceregistry/ServiceRegistry notifyListenerHooksPrivileged (Ljava/util/Collection;Z)V 106 member ; # org/eclipse/osgi/internal/serviceregistry/ServiceRegistry$$Lambda+0x00000219010b6918 +instanceKlass @cpi org/eclipse/osgi/internal/serviceregistry/ServiceRegistry 1107 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x00000219010b8000 +instanceKlass org/eclipse/osgi/internal/serviceregistry/HookContext +instanceKlass org/osgi/framework/UnfilteredServiceListener +instanceKlass org/eclipse/osgi/internal/serviceregistry/FilteredServiceListener +instanceKlass org/osgi/framework/hooks/service/ListenerHook$ListenerInfo +instanceKlass org/eclipse/osgi/framework/eventmgr/CopyOnWriteIdentityMap$Entry +instanceKlass org/eclipse/osgi/framework/eventmgr/CopyOnWriteIdentityMap +instanceKlass org/eclipse/osgi/internal/log/OrderedExecutor +instanceKlass org/eclipse/osgi/internal/framework/BundleContextImpl$2 +instanceKlass org/osgi/service/startlevel/StartLevel +instanceKlass org/osgi/service/packageadmin/PackageAdmin +instanceKlass org/eclipse/osgi/internal/framework/SystemBundleActivator +instanceKlass org/eclipse/osgi/internal/loader/classpath/TitleVersionVendor +instanceKlass org/eclipse/osgi/internal/loader/classpath/ManifestPackageAttributes +instanceKlass org/eclipse/osgi/internal/loader/classpath/ClasspathEntry$PDEData +instanceKlass org/eclipse/osgi/internal/loader/classpath/ClasspathEntry +instanceKlass org/eclipse/osgi/internal/loader/classpath/FragmentClasspath +instanceKlass org/eclipse/osgi/internal/loader/classpath/ClasspathManager +instanceKlass org/eclipse/osgi/internal/loader/ModuleClassLoader$ClassNameLock$1 +instanceKlass org/eclipse/osgi/internal/loader/ModuleClassLoader$ClassNameLock +instanceKlass org/eclipse/osgi/internal/container/KeyBasedLockStore +instanceKlass org/eclipse/osgi/internal/loader/BundleLoaderSources +instanceKlass org/eclipse/osgi/internal/loader/BundleLoader$1 +instanceKlass org/eclipse/osgi/internal/loader/sources/PackageSource +instanceKlass java/lang/ApplicationShutdownHooks$1 +instanceKlass java/lang/ApplicationShutdownHooks +instanceKlass org/eclipse/osgi/internal/framework/StorageSaver$StorageSaverTask +instanceKlass org/eclipse/osgi/internal/framework/StorageSaver +instanceKlass java/util/concurrent/Executors$RunnableAdapter +instanceKlass java/util/concurrent/FutureTask$WaitNode +instanceKlass java/util/concurrent/FutureTask +instanceKlass jdk/internal/vm/ThreadContainers +instanceKlass jdk/internal/vm/StackableScope +instanceKlass java/util/concurrent/RunnableScheduledFuture +instanceKlass java/util/concurrent/ScheduledFuture +instanceKlass java/util/concurrent/Delayed +instanceKlass java/util/concurrent/RunnableFuture +instanceKlass java/util/concurrent/Future +instanceKlass java/util/concurrent/ThreadPoolExecutor$AbortPolicy +instanceKlass java/util/concurrent/AbstractExecutorService +instanceKlass java/util/concurrent/ScheduledExecutorService +instanceKlass java/util/concurrent/ExecutorService +instanceKlass java/util/concurrent/Executors +instanceKlass org/eclipse/osgi/internal/framework/ContextFinder$1 +instanceKlass org/osgi/framework/ServiceObjects +instanceKlass org/eclipse/osgi/internal/framework/BundleContextImpl +instanceKlass org/osgi/framework/hooks/service/ListenerHook +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceRegistrationImpl +instanceKlass org/osgi/framework/ServiceRegistration +instanceKlass org/eclipse/osgi/internal/serviceregistry/ServiceRegistry +instanceKlass org/eclipse/osgi/framework/eventmgr/EventManager +instanceKlass org/eclipse/osgi/internal/framework/EquinoxEventPublisher +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219010adc00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219010ad800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219010ad400 +instanceKlass org/eclipse/osgi/storage/bundlefile/BundleEntry +instanceKlass org/eclipse/osgi/container/ModuleDatabase$2 +instanceKlass java/util/ArrayList$SubList$1 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219010ad000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219010acc00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219010ac800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x00000219010ac400 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x00000219010ac000 +instanceKlass java/lang/reflect/AnnotatedType +instanceKlass java/lang/reflect/TypeVariable +instanceKlass org/eclipse/osgi/container/ModuleWiring$LoaderInitializer +instanceKlass org/eclipse/osgi/container/ModuleWiring +instanceKlass org/eclipse/osgi/container/ModuleWire +instanceKlass org/osgi/framework/wiring/BundleWire +instanceKlass java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$UnmodifiableEntry +instanceKlass java/util/Collections$UnmodifiableMap$UnmodifiableEntrySet$1 +instanceKlass org/eclipse/osgi/internal/container/Capabilities$NamespaceSet +instanceKlass org/eclipse/osgi/container/ModuleRequirement +instanceKlass org/osgi/framework/wiring/BundleRequirement +instanceKlass org/eclipse/osgi/container/ModuleRevision$2 +instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder$8 +instanceKlass org/eclipse/osgi/container/ModuleCapability +instanceKlass org/osgi/framework/wiring/BundleCapability +instanceKlass org/osgi/resource/Capability +instanceKlass org/eclipse/osgi/internal/container/NamespaceList$3 +instanceKlass org/eclipse/osgi/internal/container/NamespaceList$2 +instanceKlass org/eclipse/osgi/internal/container/NamespaceList$1 +instanceKlass org/eclipse/osgi/internal/container/NamespaceList +instanceKlass org/eclipse/osgi/container/ModuleRevision$1 +instanceKlass org/osgi/framework/wiring/BundleWiring +instanceKlass org/osgi/resource/Wiring +instanceKlass org/eclipse/osgi/container/ModuleRevision +instanceKlass org/eclipse/osgi/container/ModuleRevisions +instanceKlass org/osgi/framework/wiring/BundleRevisions +instanceKlass org/lombokweb/asm/Opcodes +instanceKlass org/lombokweb/asm/Handler +instanceKlass lombok/patcher/MethodLogistics +instanceKlass org/lombokweb/asm/Label +instanceKlass org/lombokweb/asm/Type +instanceKlass org/lombokweb/asm/Frame +instanceKlass org/lombokweb/asm/Context +instanceKlass org/lombokweb/asm/Attribute +instanceKlass lombok/patcher/scripts/ExitFromMethodEarlyScript$1 +instanceKlass org/lombokweb/asm/ByteVector +instanceKlass org/lombokweb/asm/Symbol +instanceKlass org/lombokweb/asm/SymbolTable +instanceKlass org/lombokweb/asm/FieldVisitor +instanceKlass org/lombokweb/asm/MethodVisitor +instanceKlass org/lombokweb/asm/AnnotationVisitor +instanceKlass org/lombokweb/asm/ModuleVisitor +instanceKlass org/lombokweb/asm/RecordComponentVisitor +instanceKlass org/lombokweb/asm/ClassReader +instanceKlass org/eclipse/osgi/internal/framework/EquinoxBundle +instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder$2 +instanceKlass org/eclipse/osgi/container/ModuleRevisionBuilder$GenericInfo$1 +instanceKlass org/eclipse/osgi/container/ModuleRevisionBuilder$GenericInfo +instanceKlass org/eclipse/osgi/container/ModuleRevisionBuilder +instanceKlass org/osgi/resource/Wire +instanceKlass org/eclipse/osgi/container/ModuleDatabase$Persistence +instanceKlass org/eclipse/osgi/container/ModuleContainer$ContainerStartLevel +instanceKlass org/eclipse/osgi/container/ModuleContainer$ContainerWiring +instanceKlass org/eclipse/osgi/container/ModuleResolver +instanceKlass org/eclipse/osgi/container/ModuleContainer$ResolutionLock +instanceKlass org/eclipse/osgi/internal/container/LockSet +instanceKlass org/osgi/framework/wiring/FrameworkWiring +instanceKlass org/osgi/framework/startlevel/FrameworkStartLevel +instanceKlass org/osgi/resource/Requirement +instanceKlass org/eclipse/osgi/report/resolution/ResolutionReport +instanceKlass org/eclipse/osgi/container/ModuleContainer +instanceKlass org/eclipse/osgi/internal/container/Capabilities +instanceKlass org/eclipse/osgi/container/Module +instanceKlass org/osgi/framework/startlevel/BundleStartLevel +instanceKlass org/eclipse/osgi/container/ModuleDatabase +instanceKlass java/util/concurrent/LinkedBlockingQueue$Node +instanceKlass java/util/concurrent/RejectedExecutionHandler +instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainerAdaptor$1 +instanceKlass java/util/concurrent/LinkedTransferQueue$DualNode +instanceKlass java/util/concurrent/TransferQueue +instanceKlass java/util/concurrent/atomic/AtomicReference +instanceKlass org/eclipse/osgi/internal/container/AtomicLazyInitializer +instanceKlass org/eclipse/osgi/internal/framework/OSGiFrameworkHooks$BundleCollisionHook +instanceKlass org/osgi/framework/ServiceReference +instanceKlass org/osgi/framework/hooks/resolver/ResolverHook +instanceKlass org/eclipse/osgi/internal/framework/OSGiFrameworkHooks$CoreResolverHookFactory +instanceKlass org/osgi/framework/hooks/resolver/ResolverHookFactory +instanceKlass org/eclipse/osgi/container/ModuleCollisionHook +instanceKlass org/eclipse/osgi/internal/framework/OSGiFrameworkHooks +instanceKlass org/eclipse/osgi/container/ModuleContainerAdaptor$1 +instanceKlass java/util/concurrent/Callable +instanceKlass org/eclipse/osgi/container/ModuleLoader +instanceKlass java/util/concurrent/BlockingQueue +instanceKlass java/util/concurrent/Executor +instanceKlass org/eclipse/osgi/internal/permadmin/SecurityRow +instanceKlass org/eclipse/osgi/internal/permadmin/PermissionAdminTable +instanceKlass org/osgi/service/permissionadmin/PermissionInfo +instanceKlass org/osgi/service/condpermadmin/ConditionalPermissionInfo +instanceKlass org/osgi/service/condpermadmin/ConditionalPermissionUpdate +instanceKlass org/eclipse/osgi/internal/permadmin/SecurityAdmin +instanceKlass org/osgi/service/condpermadmin/ConditionalPermissionAdmin +instanceKlass org/osgi/service/permissionadmin/PermissionAdmin +instanceKlass org/eclipse/osgi/storage/PermissionData +instanceKlass @bci org/eclipse/osgi/storage/Storage connectPersistentBundles (Ljava/util/List;)V 2 member ; # org/eclipse/osgi/storage/Storage$$Lambda+0x000002190109d578 +instanceKlass @cpi org/eclipse/jdt/internal/core/search/indexing/IndexNamesRegistry 198 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x0000021901099c00 +instanceKlass org/eclipse/osgi/storage/BundleInfo$Generation +instanceKlass org/eclipse/osgi/storage/BundleInfo +instanceKlass org/eclipse/osgi/framework/util/ObjectPool +instanceKlass jdk/internal/util/ByteArray +instanceKlass org/eclipse/osgi/storagemanager/StorageManager$Entry +instanceKlass org/eclipse/osgi/framework/internal/reliablefile/ReliableFile$CacheInfo +instanceKlass java/util/ComparableTimSort +instanceKlass java/lang/Shutdown$Lock +instanceKlass java/lang/Shutdown +instanceKlass java/io/DeleteOnExitHook$1 +instanceKlass java/io/DeleteOnExitHook +instanceKlass @bci org/eclipse/osgi/framework/internal/reliablefile/ReliableFile createTempFile (Ljava/lang/String;Ljava/lang/String;Ljava/io/File;)Ljava/io/File; 61 argL0 ; # org/eclipse/osgi/framework/internal/reliablefile/ReliableFile$$Lambda+0x0000021901093770 +instanceKlass java/util/function/IntUnaryOperator +instanceKlass org/eclipse/osgi/framework/internal/reliablefile/ReliableFile +instanceKlass sun/nio/ch/FileKey +instanceKlass sun/nio/ch/FileLockTable +instanceKlass sun/nio/ch/NativeThread +instanceKlass java/nio/channels/FileLock +instanceKlass sun/nio/ch/NativeThreadSet +instanceKlass sun/nio/ch/IOUtil +instanceKlass sun/nio/ch/NativeDispatcher +instanceKlass java/nio/file/attribute/FileAttribute +instanceKlass java/nio/channels/spi/AbstractInterruptibleChannel +instanceKlass java/nio/channels/InterruptibleChannel +instanceKlass java/nio/channels/ScatteringByteChannel +instanceKlass java/nio/channels/GatheringByteChannel +instanceKlass java/nio/channels/SeekableByteChannel +instanceKlass java/nio/channels/ByteChannel +instanceKlass java/nio/channels/WritableByteChannel +instanceKlass java/nio/channels/ReadableByteChannel +instanceKlass java/nio/channels/Channel +instanceKlass org/eclipse/osgi/internal/location/Locker_JavaNio +instanceKlass org/eclipse/osgi/storagemanager/StorageManager +instanceKlass java/util/HashMap$HashMapSpliterator +instanceKlass @bci java/lang/SecurityManager nonExportedPkgs (Ljava/lang/module/ModuleDescriptor;)Ljava/util/Set; 92 member ; # java/lang/SecurityManager$$Lambda+0x0000021901032738 +instanceKlass @bci java/lang/SecurityManager nonExportedPkgs (Ljava/lang/module/ModuleDescriptor;)Ljava/util/Set; 76 argL0 ; # java/lang/SecurityManager$$Lambda+0x0000021901032508 +instanceKlass @bci java/lang/SecurityManager nonExportedPkgs (Ljava/lang/module/ModuleDescriptor;)Ljava/util/Set; 66 argL0 ; # java/lang/SecurityManager$$Lambda+0x00000219010322c8 +instanceKlass @bci java/lang/SecurityManager nonExportedPkgs (Ljava/lang/module/ModuleDescriptor;)Ljava/util/Set; 47 member ; # java/lang/SecurityManager$$Lambda+0x00000219010320a0 +instanceKlass @bci java/lang/SecurityManager nonExportedPkgs (Ljava/lang/module/ModuleDescriptor;)Ljava/util/Set; 31 argL0 ; # java/lang/SecurityManager$$Lambda+0x0000021901031e70 +instanceKlass @bci java/lang/SecurityManager nonExportedPkgs (Ljava/lang/module/ModuleDescriptor;)Ljava/util/Set; 21 argL0 ; # java/lang/SecurityManager$$Lambda+0x0000021901031c30 +instanceKlass @cpi org/eclipse/core/internal/filesystem/local/LocalFile 759 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x0000021901099800 +instanceKlass @bci java/lang/SecurityManager addNonExportedPackages (Ljava/lang/ModuleLayer;)V 59 argL0 ; # java/lang/SecurityManager$$Lambda+0x0000021901031a10 +instanceKlass @cpi java/lang/SecurityManager 535 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x0000021901099400 +instanceKlass @cpi org/eclipse/core/internal/events/NotificationManager$NotifyJob 101 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x0000021901099000 +instanceKlass @bci java/lang/SecurityManager addNonExportedPackages (Ljava/lang/ModuleLayer;)V 49 argL0 ; # java/lang/SecurityManager$$Lambda+0x00000219010317e0 +instanceKlass @cpi org/eclipse/core/internal/runtime/InternalPlatform 1102 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x0000021901098c00 +instanceKlass @bci java/lang/SecurityManager addNonExportedPackages (Ljava/lang/ModuleLayer;)V 39 argL0 ; # java/lang/SecurityManager$$Lambda+0x00000219010315b0 +instanceKlass @bci java/lang/SecurityManager addNonExportedPackages (Ljava/lang/ModuleLayer;)V 29 member ; # java/lang/SecurityManager$$Lambda+0x0000021901031368 +instanceKlass @cpi java/lang/SecurityManager 518 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x0000021901098800 +instanceKlass @cpi java/util/Comparator 259 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x0000021901098400 +instanceKlass @bci java/lang/SecurityManager addNonExportedPackages (Ljava/lang/ModuleLayer;)V 17 argL0 ; # java/lang/SecurityManager$$Lambda+0x0000021901031138 +# instanceKlass java/net/SetAccessible+0x0000021901098000 +instanceKlass jdk/internal/org/objectweb/asm/ClassReader +instanceKlass @bci java/lang/invoke/BootstrapMethodInvoker invoke (Ljava/lang/Class;Ljava/lang/invoke/MethodHandle;Ljava/lang/String;Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/Class;)Ljava/lang/Object; 462 ; # java/lang/invoke/LambdaForm$MH+0x0000021901097c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901097800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901097400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901097000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901096c00 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x0000021901096800 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x0000021901096400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901096000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901095c00 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x0000021901095800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901095400 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x0000021901095000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901094c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901094800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901094400 +instanceKlass jdk/internal/vm/annotation/ForceInline +instanceKlass java/lang/annotation/Documented +instanceKlass java/lang/Deprecated +instanceKlass @bci java/util/stream/Collectors joining (Ljava/lang/CharSequence;Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/util/stream/Collector; 22 argL0 ; # java/util/stream/Collectors$$Lambda+0x800000043 +instanceKlass @bci java/util/stream/Collectors joining (Ljava/lang/CharSequence;Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/util/stream/Collector; 17 argL0 ; # java/util/stream/Collectors$$Lambda+0x800000041 +instanceKlass @bci java/util/stream/Collectors joining (Ljava/lang/CharSequence;Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/util/stream/Collector; 12 argL0 ; # java/util/stream/Collectors$$Lambda+0x80000003e +instanceKlass @bci java/util/stream/Collectors joining (Ljava/lang/CharSequence;Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/util/stream/Collector; 7 member ; # java/util/stream/Collectors$$Lambda+0x800000046 +instanceKlass @bci java/lang/Class methodToString (Ljava/lang/String;[Ljava/lang/Class;)Ljava/lang/String; 42 argL0 ; # java/lang/Class$$Lambda+0x0000021901030208 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901094000 +instanceKlass sun/misc/Unsafe +instanceKlass org/eclipse/osgi/internal/url/MultiplexingFactory +instanceKlass org/eclipse/osgi/storage/FrameworkExtensionInstaller +instanceKlass org/eclipse/osgi/storage/bundlefile/MRUBundleFileList +instanceKlass org/eclipse/osgi/framework/eventmgr/EventDispatcher +instanceKlass org/eclipse/osgi/storage/bundlefile/BundleFile +instanceKlass org/eclipse/osgi/storage/ContentProvider +instanceKlass org/osgi/framework/Filter +instanceKlass org/eclipse/osgi/container/ModuleContainerAdaptor +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002190108c400 +instanceKlass java/lang/invoke/MethodHandle$1 +instanceKlass org/eclipse/osgi/storage/Storage +instanceKlass @bci org/eclipse/osgi/internal/cds/CDSHookConfigurator addHooks (Lorg/eclipse/osgi/internal/hookregistry/HookRegistry;)V 77 argL0 ; # org/eclipse/osgi/internal/cds/CDSHookConfigurator$$Lambda+0x000002190108d928 +instanceKlass org/eclipse/osgi/signedcontent/SignedContent +instanceKlass org/eclipse/osgi/internal/hookregistry/StorageHookFactory$StorageHook +instanceKlass org/eclipse/osgi/internal/hookregistry/StorageHookFactory +instanceKlass org/osgi/framework/BundleActivator +instanceKlass org/eclipse/osgi/internal/cds/CDSHookConfigurator +instanceKlass org/eclipse/osgi/internal/signedcontent/SignedBundleHook +instanceKlass org/eclipse/osgi/signedcontent/SignedContentFactory +instanceKlass org/eclipse/osgi/internal/hookregistry/ActivatorHookFactory +instanceKlass org/osgi/framework/wiring/BundleRevision +instanceKlass org/osgi/resource/Resource +instanceKlass org/eclipse/osgi/internal/connect/ConnectHookConfigurator +instanceKlass org/eclipse/osgi/internal/hookregistry/HookConfigurator +instanceKlass java/net/URLClassLoader$3$1 +instanceKlass java/net/URLClassLoader$3 +instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainer$ConnectModules +instanceKlass @bci org/eclipse/osgi/internal/log/ExtendedLogServiceImpl applyLogLevels (Lorg/eclipse/osgi/internal/log/ExtendedLogServiceFactory$EquinoxLoggerContext;)V 20 member ; # org/eclipse/osgi/internal/log/ExtendedLogServiceImpl$$Lambda+0x000002190108e000 +instanceKlass @bci org/eclipse/osgi/internal/log/ExtendedLogServiceImpl applyLogLevels (Lorg/eclipse/osgi/internal/log/ExtendedLogServiceFactory$EquinoxLoggerContext;)V 5 member ; # org/eclipse/osgi/internal/log/ExtendedLogServiceImpl$$Lambda+0x000002190108bd90 +instanceKlass @cpi org/eclipse/osgi/internal/log/ExtendedLogServiceImpl 376 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x000002190108c000 +instanceKlass org/eclipse/osgi/internal/log/ExtendedLogServiceFactory$EquinoxLoggerContext +instanceKlass org/eclipse/osgi/internal/log/EquinoxLogFactory$1 +instanceKlass org/eclipse/osgi/framework/log/FrameworkLog +instanceKlass org/eclipse/osgi/internal/log/EquinoxLogFactory +instanceKlass org/osgi/service/log/FormatterLogger +instanceKlass org/eclipse/osgi/internal/log/LoggerImpl +instanceKlass org/eclipse/osgi/internal/log/ExtendedLogServiceImpl +instanceKlass org/eclipse/osgi/internal/log/ExtendedLogServiceFactory$EquinoxLoggerAdmin +instanceKlass org/osgi/service/log/admin/LoggerContext +instanceKlass org/eclipse/osgi/internal/log/LoggerContextTargetMap +instanceKlass org/eclipse/osgi/internal/log/LogServiceManager$MockSystemBundle +instanceKlass org/osgi/service/log/admin/LoggerAdmin +instanceKlass org/eclipse/osgi/internal/log/ExtendedLogServiceFactory +instanceKlass org/eclipse/osgi/framework/util/ArrayMap +instanceKlass java/util/concurrent/locks/ReentrantReadWriteLock$WriteLock +instanceKlass java/util/concurrent/locks/ReentrantReadWriteLock$ReadLock +instanceKlass java/util/concurrent/locks/ReentrantReadWriteLock +instanceKlass java/util/concurrent/locks/ReadWriteLock +instanceKlass org/eclipse/osgi/internal/log/ExtendedLogReaderServiceFactory$1 +instanceKlass org/osgi/service/log/LogEntry +instanceKlass org/eclipse/osgi/internal/log/ExtendedLogReaderServiceFactory +instanceKlass org/osgi/framework/ServiceFactory +instanceKlass org/eclipse/equinox/log/ExtendedLogReaderService +instanceKlass org/osgi/service/log/LogReaderService +instanceKlass org/eclipse/equinox/log/ExtendedLogService +instanceKlass org/eclipse/equinox/log/Logger +instanceKlass org/osgi/service/log/Logger +instanceKlass org/osgi/service/log/LogService +instanceKlass org/osgi/service/log/LoggerFactory +instanceKlass org/eclipse/osgi/internal/log/LogServiceManager +instanceKlass org/osgi/framework/AllServiceListener +instanceKlass org/osgi/framework/ServiceListener +instanceKlass org/eclipse/osgi/internal/log/EquinoxLogWriter +instanceKlass org/eclipse/equinox/log/LogFilter +instanceKlass org/eclipse/equinox/log/SynchronousLogListener +instanceKlass org/osgi/service/log/LogListener +instanceKlass org/eclipse/osgi/internal/log/EquinoxLogServices +instanceKlass org/eclipse/osgi/util/ManifestElement +instanceKlass org/eclipse/osgi/internal/debug/Debug +instanceKlass org/eclipse/osgi/service/debug/DebugOptionsListener +instanceKlass org/eclipse/osgi/service/debug/DebugTrace +instanceKlass org/eclipse/osgi/internal/debug/FrameworkDebugOptions +instanceKlass org/osgi/util/tracker/ServiceTrackerCustomizer +instanceKlass java/nio/file/FileVisitor +instanceKlass org/eclipse/osgi/storage/StorageUtil +instanceKlass org/eclipse/osgi/internal/location/BasicLocation +instanceKlass org/eclipse/osgi/internal/location/EquinoxLocations +instanceKlass java/util/concurrent/atomic/AtomicBoolean +instanceKlass java/util/UUID +instanceKlass java/util/Random +instanceKlass java/util/random/RandomGenerator +instanceKlass org/eclipse/osgi/internal/container/InternalUtils +instanceKlass org/osgi/framework/Version +instanceKlass org/eclipse/osgi/internal/location/Locker +instanceKlass org/eclipse/osgi/internal/location/LocationHelper +instanceKlass org/eclipse/osgi/internal/framework/EquinoxConfiguration$ConfigValues +instanceKlass org/eclipse/osgi/internal/util/Tokenizer +instanceKlass java/nio/charset/CoderResult +instanceKlass java/nio/charset/CharsetDecoder +instanceKlass sun/util/logging/PlatformLogger +instanceKlass sun/util/logging/PlatformLogger$ConfigurableBridge$LoggerConfiguration +instanceKlass jdk/internal/logger/BootstrapLogger$RedirectedLoggers +instanceKlass jdk/internal/logger/LazyLoggers$LazyLoggerAccessor +instanceKlass jdk/internal/logger/LazyLoggers$LoggerAccessor +instanceKlass jdk/internal/logger/AbstractLoggerWrapper +instanceKlass java/util/ServiceLoader$ProviderImpl +instanceKlass java/util/ServiceLoader$Provider +instanceKlass java/util/ServiceLoader$1 +instanceKlass sun/util/logging/internal/LoggingProviderImpl$LogManagerAccess +instanceKlass java/util/concurrent/CopyOnWriteArrayList$COWIterator +instanceKlass jdk/internal/logger/BootstrapLogger$DetectBackend$1 +instanceKlass jdk/internal/logger/BootstrapLogger$DetectBackend +instanceKlass jdk/internal/logger/BootstrapLogger +instanceKlass sun/util/logging/PlatformLogger$ConfigurableBridge +instanceKlass sun/util/logging/PlatformLogger$Bridge +instanceKlass jdk/internal/logger/DefaultLoggerFinder$1 +instanceKlass java/lang/System$LoggerFinder +instanceKlass jdk/internal/logger/LazyLoggers$LazyLoggerFactories +instanceKlass jdk/internal/logger/LazyLoggers$1 +instanceKlass jdk/internal/logger/LazyLoggers +instanceKlass jdk/internal/event/EventHelper$ThreadTrackHolder +instanceKlass java/net/URLClassLoader$2 +instanceKlass org/eclipse/osgi/internal/framework/AliasMapper +instanceKlass org/eclipse/osgi/framework/util/KeyedElement +instanceKlass org/eclipse/osgi/internal/hookregistry/ClassLoaderHook +instanceKlass org/eclipse/osgi/internal/hookregistry/HookRegistry +instanceKlass org/eclipse/osgi/service/datalocation/Location +instanceKlass org/eclipse/osgi/service/debug/DebugOptions +instanceKlass org/eclipse/osgi/internal/framework/EquinoxConfiguration +instanceKlass org/eclipse/osgi/service/environment/EnvironmentInfo +# instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainer$$InjectedInvoker+0x0000021901081400 +instanceKlass java/lang/invoke/MethodHandleImpl$BindCaller$InjectedInvokerHolder +instanceKlass java/lang/invoke/MethodHandleImpl$BindCaller +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901081000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901080c00 +instanceKlass java/lang/annotation/Target +instanceKlass java/lang/reflect/Proxy$ProxyBuilder$1 +instanceKlass jdk/internal/org/objectweb/asm/Edge +instanceKlass @bci java/lang/reflect/ProxyGenerator addProxyMethod (Ljava/lang/reflect/Method;Ljava/lang/Class;)V 23 argL0 ; # java/lang/reflect/ProxyGenerator$$Lambda+0x00000219010282f0 +instanceKlass @bci java/lang/reflect/ProxyGenerator addProxyMethod (Ljava/lang/reflect/ProxyGenerator$ProxyMethod;)V 10 argL0 ; # java/lang/reflect/ProxyGenerator$$Lambda+0x00000219010280c0 +instanceKlass java/lang/reflect/ProxyGenerator$ProxyMethod +instanceKlass @bci java/lang/reflect/Proxy getLoader (Ljava/lang/Module;)Ljava/lang/ClassLoader; 6 member ; # java/lang/reflect/Proxy$$Lambda+0x0000021901027998 +instanceKlass @bci java/lang/module/ModuleDescriptor$Builder packages (Ljava/util/Set;)Ljava/lang/module/ModuleDescriptor$Builder; 17 argL0 ; # java/lang/module/ModuleDescriptor$Builder$$Lambda+0x800000002 +instanceKlass java/lang/module/ModuleDescriptor$Builder +instanceKlass @bci java/lang/reflect/Proxy$ProxyBuilder getDynamicModule (Ljava/lang/ClassLoader;)Ljava/lang/Module; 4 argL0 ; # java/lang/reflect/Proxy$ProxyBuilder$$Lambda+0x0000021901027578 +instanceKlass java/lang/PublicMethods +instanceKlass java/lang/reflect/Proxy$ProxyBuilder +instanceKlass @bci java/lang/reflect/Proxy getProxyConstructor (Ljava/lang/Class;Ljava/lang/ClassLoader;[Ljava/lang/Class;)Ljava/lang/reflect/Constructor; 35 argL0 ; # java/lang/reflect/Proxy$$Lambda+0x0000021901026d20 +instanceKlass java/lang/reflect/Proxy +instanceKlass sun/reflect/annotation/AnnotationInvocationHandler +instanceKlass java/lang/reflect/InvocationHandler +instanceKlass sun/reflect/annotation/AnnotationParser$1 +instanceKlass sun/reflect/annotation/ExceptionProxy +instanceKlass java/lang/annotation/Inherited +instanceKlass java/lang/annotation/Retention +instanceKlass sun/reflect/annotation/AnnotationType$1 +instanceKlass sun/reflect/annotation/AnnotationType +instanceKlass java/lang/reflect/GenericArrayType +instanceKlass sun/reflect/generics/visitor/Reifier +instanceKlass sun/reflect/generics/visitor/TypeTreeVisitor +instanceKlass sun/reflect/generics/factory/CoreReflectionFactory +instanceKlass sun/reflect/generics/factory/GenericsFactory +instanceKlass sun/reflect/generics/scope/AbstractScope +instanceKlass sun/reflect/generics/scope/Scope +instanceKlass sun/reflect/generics/tree/ClassTypeSignature +instanceKlass sun/reflect/generics/tree/SimpleClassTypeSignature +instanceKlass sun/reflect/generics/tree/FieldTypeSignature +instanceKlass sun/reflect/generics/tree/BaseType +instanceKlass sun/reflect/generics/tree/TypeSignature +instanceKlass sun/reflect/generics/tree/ReturnType +instanceKlass sun/reflect/generics/tree/TypeArgument +instanceKlass sun/reflect/generics/tree/TypeTree +instanceKlass sun/reflect/generics/tree/Tree +instanceKlass sun/reflect/generics/parser/SignatureParser +instanceKlass org/eclipse/osgi/framework/util/SecureAction$1 +instanceKlass org/eclipse/osgi/framework/util/SecureAction +instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainer +instanceKlass org/eclipse/osgi/launch/Equinox +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901080800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901080400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901080000 +instanceKlass java/util/EventObject +instanceKlass org/osgi/framework/BundleContext +instanceKlass org/osgi/framework/BundleReference +instanceKlass org/eclipse/core/runtime/adaptor/EclipseStarter$InitialBundle +instanceKlass org/eclipse/core/runtime/adaptor/EclipseStarter$StartupEventListener +instanceKlass org/osgi/framework/FrameworkListener +instanceKlass org/osgi/framework/SynchronousBundleListener +instanceKlass java/util/concurrent/Semaphore +instanceKlass org/osgi/framework/launch/Framework +instanceKlass org/osgi/framework/Bundle +instanceKlass org/osgi/framework/BundleListener +instanceKlass java/util/EventListener +instanceKlass org/eclipse/core/runtime/adaptor/EclipseStarter +instanceKlass @bci java/io/FilePermissionCollection add (Ljava/security/Permission;)V 68 argL0 ; # java/io/FilePermissionCollection$$Lambda+0x0000021901020fe8 +instanceKlass sun/security/util/SecurityProperties +instanceKlass sun/security/util/FilePermCompat +instanceKlass java/io/FilePermission$1 +instanceKlass jdk/internal/access/JavaIOFilePermissionAccess +instanceKlass java/net/URLClassLoader$1 +instanceKlass java/nio/file/FileStore +instanceKlass sun/nio/fs/WindowsSecurity +instanceKlass sun/nio/fs/AbstractAclFileAttributeView +instanceKlass java/nio/file/attribute/AclFileAttributeView +instanceKlass java/nio/file/attribute/FileOwnerAttributeView +instanceKlass sun/nio/fs/WindowsLinkSupport +instanceKlass sun/nio/fs/WindowsFileSystemProvider$1 +instanceKlass org/eclipse/equinox/launcher/JNIBridge +instanceKlass @bci org/eclipse/core/internal/preferences/EclipsePreferences absolutePath ()Ljava/lang/String; 66 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000002190101c000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000002190101bc00 +instanceKlass @bci org/eclipse/core/internal/preferences/EclipsePreferences absolutePath ()Ljava/lang/String; 66 argL3 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000002190101b800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000002190101b400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000002190101b000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000002190101ac00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000002190101a800 +instanceKlass @bci org/eclipse/core/internal/preferences/EclipsePreferences absolutePath ()Ljava/lang/String; 66 argL1 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x000002190101a400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000002190101a000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901019c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901019800 +instanceKlass java/io/RandomAccessFile$1 +instanceKlass @bci org/eclipse/core/runtime/Path addFileExtension (Ljava/lang/String;)Lorg/eclipse/core/runtime/IPath; 52 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901019400 +instanceKlass java/lang/invoke/LambdaFormEditor$1 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901019000 +instanceKlass @bci org/eclipse/core/runtime/Path addFileExtension (Ljava/lang/String;)Lorg/eclipse/core/runtime/IPath; 52 argL3 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901018c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901018800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901018400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901018000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901017c00 +instanceKlass @bci org/eclipse/core/runtime/Path addFileExtension (Ljava/lang/String;)Lorg/eclipse/core/runtime/IPath; 52 argL1 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901017800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901017400 +instanceKlass @bci org/eclipse/core/internal/resources/LocalMetaArea getSafeTableLocationFor (Ljava/lang/String;)Lorg/eclipse/core/runtime/IPath; 44 argL1 argL0 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901017000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901016c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901016800 +instanceKlass java/lang/Long$LongCache +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901016400 +instanceKlass @bci org/eclipse/core/internal/resources/CheckMissingNaturesListener ()V 11 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901016000 +instanceKlass sun/net/www/MimeEntry +instanceKlass java/util/Hashtable$Enumerator +instanceKlass java/util/Collections$SynchronizedCollection +instanceKlass java/util/Properties$EntrySet +instanceKlass sun/net/www/MimeTable$DefaultInstanceHolder$1 +instanceKlass sun/net/www/MimeTable$DefaultInstanceHolder +instanceKlass sun/net/www/MimeTable$2 +instanceKlass sun/net/www/MimeTable$1 +instanceKlass sun/net/www/MimeTable +instanceKlass java/net/URLConnection$1 +instanceKlass java/net/FileNameMap +instanceKlass java/util/Collections$3 +instanceKlass jdk/internal/loader/URLClassPath$1 +instanceKlass java/lang/CompoundEnumeration +instanceKlass jdk/internal/loader/BuiltinClassLoader$1 +instanceKlass java/util/Collections$EmptyEnumeration +instanceKlass java/util/ServiceLoader$3 +instanceKlass java/util/ServiceLoader$2 +instanceKlass java/util/ServiceLoader$LazyClassPathLookupIterator +instanceKlass java/util/Spliterators$1Adapter +instanceKlass java/util/Spliterators$ArraySpliterator +instanceKlass java/util/ServiceLoader$ModuleServicesLookupIterator +instanceKlass java/util/ServiceLoader +instanceKlass java/net/spi/URLStreamHandlerProvider +instanceKlass java/net/URL$1 +instanceKlass java/net/URL$2 +instanceKlass java/net/URL$ThreadTrackHolder +instanceKlass java/lang/Thread$ThreadNumbering +instanceKlass java/nio/file/attribute/PosixFilePermissions +instanceKlass java/security/Policy +instanceKlass jdk/internal/misc/PreviewFeatures +instanceKlass jdk/internal/misc/MainMethodFinder +instanceKlass org/eclipse/equinox/launcher/Main +instanceKlass sun/security/util/ManifestEntryVerifier$SunProviderHolder +instanceKlass java/util/Base64$Encoder +instanceKlass java/util/Base64$Decoder +instanceKlass java/util/Base64 +instanceKlass javax/crypto/SecretKey +instanceKlass sun/security/util/Length +instanceKlass sun/security/util/KeyUtil +instanceKlass java/security/interfaces/XECKey +instanceKlass java/security/interfaces/ECKey +instanceKlass sun/security/util/JarConstraintsParameters +instanceKlass sun/security/util/ConstraintsParameters +instanceKlass java/security/CodeSigner +instanceKlass java/security/Timestamp +instanceKlass sun/security/timestamp/TimestampToken +instanceKlass java/security/cert/CertPath +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901014c00 +instanceKlass java/math/MutableBigInteger +instanceKlass sun/security/rsa/RSAPadding +instanceKlass sun/security/rsa/RSACore +instanceKlass java/security/interfaces/RSAPrivateCrtKey +instanceKlass sun/security/pkcs/PKCS8Key +instanceKlass sun/security/util/InternalPrivateKey +instanceKlass java/security/interfaces/RSAPrivateKey +instanceKlass java/security/PrivateKey +instanceKlass javax/security/auth/Destroyable +instanceKlass jdk/internal/icu/util/CodePointTrie$Data +instanceKlass jdk/internal/icu/util/CodePointMap +instanceKlass jdk/internal/icu/util/VersionInfo +instanceKlass @bci jdk/internal/module/SystemModuleFinders$SystemModuleReader open (Ljava/lang/String;)Ljava/util/Optional; 6 member ; # jdk/internal/module/SystemModuleFinders$SystemModuleReader$$Lambda+0x0000021901075488 +instanceKlass jdk/internal/jimage/decompressor/ZipDecompressor +instanceKlass jdk/internal/jimage/decompressor/ResourceDecompressor +instanceKlass jdk/internal/jimage/decompressor/ResourceDecompressorFactory +instanceKlass jdk/internal/jimage/decompressor/ResourceDecompressorRepository +instanceKlass jdk/internal/jimage/decompressor/CompressedResourceHeader +instanceKlass @bci jdk/internal/jimage/BasicImageReader getResourceBuffer (Ljdk/internal/jimage/ImageLocation;)Ljava/nio/ByteBuffer; 168 member ; # jdk/internal/jimage/BasicImageReader$$Lambda+0x0000021901074448 +instanceKlass jdk/internal/jimage/decompressor/ResourceDecompressor$StringsProvider +instanceKlass java/util/TimSort +instanceKlass java/util/Arrays$LegacyMergeSort +instanceKlass java/util/AbstractMap$SimpleEntry +instanceKlass jdk/internal/jimage/ImageBufferCache$2 +instanceKlass jdk/internal/jimage/ImageBufferCache +instanceKlass jdk/internal/module/Checks +instanceKlass jdk/internal/icu/impl/ICUBinary$1 +instanceKlass jdk/internal/icu/impl/ICUBinary +instanceKlass jdk/internal/icu/impl/NormalizerImpl$IsAcceptable +instanceKlass jdk/internal/icu/impl/ICUBinary$Authenticate +instanceKlass jdk/internal/icu/impl/NormalizerImpl +instanceKlass jdk/internal/icu/impl/Norm2AllModes$Norm2AllModesSingleton +instanceKlass jdk/internal/icu/impl/Norm2AllModes$NFKCSingleton +instanceKlass jdk/internal/icu/impl/Norm2AllModes +instanceKlass jdk/internal/icu/text/Normalizer2 +instanceKlass jdk/internal/icu/text/NormalizerBase$ModeImpl +instanceKlass jdk/internal/icu/text/NormalizerBase$NFKDModeImpl +instanceKlass jdk/internal/icu/text/NormalizerBase$1 +instanceKlass jdk/internal/icu/text/NormalizerBase$Mode +instanceKlass jdk/internal/icu/text/NormalizerBase +instanceKlass java/text/Normalizer +instanceKlass sun/security/x509/AVAKeyword +instanceKlass java/util/StringJoiner +instanceKlass sun/security/jca/ServiceId +instanceKlass java/security/Signature$1 +instanceKlass jdk/internal/access/JavaSecuritySignatureAccess +instanceKlass java/security/SignatureSpi +instanceKlass sun/security/util/SignatureUtil +instanceKlass java/lang/invoke/VarHandle$AccessDescriptor +instanceKlass sun/security/provider/ByteArrayAccess$BE +instanceKlass sun/security/provider/ByteArrayAccess +instanceKlass sun/security/util/MessageDigestSpi2 +instanceKlass java/security/MessageDigestSpi +instanceKlass sun/security/pkcs/SigningCertificateInfo$ESSCertId +instanceKlass sun/security/pkcs/SigningCertificateInfo +instanceKlass sun/security/pkcs/PKCS9Attribute +instanceKlass sun/security/pkcs/PKCS9Attributes +instanceKlass java/time/Instant +instanceKlass java/time/zone/ZoneOffsetTransition +instanceKlass java/time/LocalTime +instanceKlass java/time/temporal/ValueRange +instanceKlass java/time/Duration +instanceKlass java/time/temporal/TemporalAmount +instanceKlass java/time/temporal/TemporalUnit +instanceKlass java/time/temporal/TemporalField +instanceKlass java/time/LocalDate +instanceKlass java/time/chrono/ChronoLocalDate +instanceKlass java/time/ZonedDateTime +instanceKlass java/time/chrono/ChronoZonedDateTime +instanceKlass java/time/LocalDateTime +instanceKlass java/time/chrono/ChronoLocalDateTime +instanceKlass java/time/temporal/Temporal +instanceKlass java/time/zone/ZoneOffsetTransitionRule +instanceKlass java/time/zone/ZoneRules +instanceKlass @bci java/time/ZoneOffset ofTotalSeconds (I)Ljava/time/ZoneOffset; 37 argL0 ; # java/time/ZoneOffset$$Lambda+0x80000000c +instanceKlass java/time/temporal/TemporalAdjuster +instanceKlass java/time/temporal/TemporalAccessor +instanceKlass java/time/ZoneId +instanceKlass @bci java/util/regex/CharPredicates ASCII_DIGIT ()Ljava/util/regex/Pattern$BmpCharPredicate; 0 argL0 ; # java/util/regex/CharPredicates$$Lambda+0x800000025 +instanceKlass @bci java/util/regex/CharPredicates ASCII_SPACE ()Ljava/util/regex/Pattern$BmpCharPredicate; 0 argL0 ; # java/util/regex/CharPredicates$$Lambda+0x800000026 +instanceKlass java/util/regex/CharPredicates +instanceKlass sun/security/util/DisabledAlgorithmConstraints$Constraints$Holder +instanceKlass sun/security/util/DisabledAlgorithmConstraints$Constraint +instanceKlass java/util/StringTokenizer +instanceKlass java/security/spec/ECFieldF2m +instanceKlass java/security/spec/ECParameterSpec +instanceKlass java/security/spec/ECPoint +instanceKlass java/security/spec/EllipticCurve +instanceKlass java/security/spec/ECFieldFp +instanceKlass java/security/spec/ECField +instanceKlass sun/security/util/CurveDB +instanceKlass sun/security/util/DisabledAlgorithmConstraints$Constraints +instanceKlass java/util/TreeMap$PrivateEntryIterator +instanceKlass java/util/NavigableSet +instanceKlass java/util/SortedSet +instanceKlass sun/security/util/AbstractAlgorithmConstraints$1 +instanceKlass sun/security/util/AlgorithmDecomposer +instanceKlass sun/security/util/DisabledAlgorithmConstraints$JarHolder +instanceKlass @bci java/util/regex/Pattern DOT ()Ljava/util/regex/Pattern$CharPredicate; 0 argL0 ; # java/util/regex/Pattern$$Lambda+0x0000021901067150 +instanceKlass java/util/regex/ASCII +instanceKlass sun/security/util/AbstractAlgorithmConstraints +instanceKlass java/security/AlgorithmConstraints +instanceKlass sun/security/pkcs/SignerInfo +instanceKlass java/security/cert/PolicyQualifierInfo +instanceKlass sun/security/x509/CertificatePolicyId +instanceKlass sun/security/x509/PolicyInformation +instanceKlass sun/security/x509/DistributionPoint +instanceKlass sun/security/x509/DNSName +instanceKlass sun/security/x509/URIName +instanceKlass sun/security/x509/GeneralName +instanceKlass sun/security/x509/AccessDescription +instanceKlass sun/security/x509/GeneralNames +instanceKlass java/lang/invoke/VarForm +instanceKlass java/lang/invoke/VarHandleGuards +instanceKlass java/lang/invoke/VarHandles +instanceKlass java/lang/System$Logger +instanceKlass jdk/internal/event/EventHelper +instanceKlass sun/security/jca/JCAUtil +instanceKlass sun/security/util/MemoryCache$CacheEntry +instanceKlass sun/security/x509/KeyIdentifier +instanceKlass java/util/TreeMap$Entry +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901014800 +instanceKlass sun/security/x509/OIDMap$OIDInfo +instanceKlass sun/security/x509/PKIXExtensions +instanceKlass sun/security/x509/OIDMap +instanceKlass sun/security/x509/Extension +instanceKlass java/security/cert/Extension +instanceKlass java/util/Collections$SynchronizedMap +instanceKlass java/util/NavigableMap +instanceKlass java/util/SortedMap +instanceKlass sun/security/x509/CertificateExtensions +instanceKlass sun/security/rsa/RSAUtil +instanceKlass java/security/interfaces/RSAPublicKey +instanceKlass java/security/interfaces/RSAKey +instanceKlass java/security/spec/PSSParameterSpec +instanceKlass java/security/spec/AlgorithmParameterSpec +instanceKlass java/security/spec/RSAPrivateKeySpec +instanceKlass java/security/spec/RSAPublicKeySpec +instanceKlass java/security/KeyFactorySpi +instanceKlass sun/security/rsa/SunRsaSignEntries +instanceKlass sun/security/jca/ProviderList$ServiceList$1 +instanceKlass java/security/KeyFactory +instanceKlass @bci java/security/spec/EncodedKeySpec ()V 0 argL0 ; # java/security/spec/EncodedKeySpec$$Lambda+0x000002190105db40 +instanceKlass @cpi org/eclipse/core/internal/preferences/PreferenceServiceRegistryHelper 448 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x0000021901014400 +instanceKlass jdk/internal/access/JavaSecuritySpecAccess +instanceKlass java/security/spec/EncodedKeySpec +instanceKlass java/security/spec/KeySpec +instanceKlass sun/security/util/BitArray +instanceKlass sun/security/x509/X509Key +instanceKlass java/security/PublicKey +instanceKlass java/security/Key +instanceKlass sun/security/x509/CertificateX509Key +instanceKlass java/util/Date +instanceKlass sun/util/calendar/CalendarUtils +instanceKlass sun/util/calendar/CalendarDate +instanceKlass sun/util/calendar/CalendarSystem$GregorianHolder +instanceKlass sun/util/calendar/CalendarSystem +instanceKlass sun/security/x509/CertificateValidity +instanceKlass sun/security/x509/AVA +instanceKlass sun/security/x509/RDN +instanceKlass javax/security/auth/x500/X500Principal +instanceKlass @bci sun/security/x509/X500Name ()V 153 argL0 ; # sun/security/x509/X500Name$$Lambda+0x000002190105b748 +instanceKlass sun/security/x509/X500Name +instanceKlass sun/security/x509/GeneralNameInterface +instanceKlass sun/security/x509/CertificateAlgorithmId +instanceKlass sun/security/x509/SerialNumber +instanceKlass sun/security/x509/CertificateSerialNumber +instanceKlass sun/security/x509/CertificateVersion +instanceKlass sun/security/x509/X509CertInfo +instanceKlass sun/security/util/Cache$EqualByteArray +instanceKlass java/security/cert/X509Extension +instanceKlass java/lang/Byte$ByteCache +instanceKlass @bci sun/security/util/DerInputStream seeOptionalContextSpecific (I)Z 2 member ; # sun/security/util/DerInputStream$$Lambda+0x0000021901059178 +instanceKlass @cpi sun/security/util/DerInputStream 295 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x0000021901014000 +instanceKlass sun/security/jca/GetInstance$Instance +instanceKlass sun/security/util/Cache +instanceKlass jdk/internal/event/Event +instanceKlass sun/security/jca/GetInstance +instanceKlass java/security/cert/CertificateFactorySpi +instanceKlass java/security/cert/CertificateFactory +instanceKlass sun/security/x509/AlgorithmId +instanceKlass sun/security/util/ByteArrayTagOrder +instanceKlass sun/security/util/ByteArrayLexOrder +instanceKlass sun/security/util/DerValue +instanceKlass sun/security/util/ObjectIdentifier +instanceKlass sun/security/pkcs/ContentInfo +instanceKlass sun/security/util/DerEncoder +instanceKlass sun/security/util/DerInputStream +instanceKlass sun/security/pkcs/PKCS7 +instanceKlass java/util/Collections$EmptyIterator +instanceKlass java/util/LinkedHashMap$LinkedHashIterator +instanceKlass sun/security/util/SecurityProviderConstants +instanceKlass java/security/Provider$UString +instanceKlass java/security/Provider$Service +instanceKlass sun/security/provider/NativePRNG$NonBlocking +instanceKlass sun/security/provider/NativePRNG$Blocking +instanceKlass sun/security/provider/NativePRNG +instanceKlass sun/security/provider/SunEntries$1 +instanceKlass sun/security/provider/SunEntries +instanceKlass sun/security/util/SecurityConstants +instanceKlass java/security/Security$1 +instanceKlass jdk/internal/access/JavaSecurityPropertiesAccess +instanceKlass java/util/concurrent/ConcurrentHashMap$MapEntry +instanceKlass java/io/FileInputStream$1 +instanceKlass java/util/Properties$LineReader +instanceKlass @bci java/security/Security ()V 9 argL0 ; # java/security/Security$$Lambda+0x80000000b +instanceKlass java/security/Security +instanceKlass sun/security/jca/ProviderList$2 +instanceKlass jdk/internal/math/FloatingDecimal$ASCIIToBinaryBuffer +instanceKlass jdk/internal/math/FloatingDecimal$PreparedASCIIToBinaryBuffer +instanceKlass jdk/internal/math/FloatingDecimal$ASCIIToBinaryConverter +instanceKlass jdk/internal/math/FloatingDecimal$BinaryToASCIIBuffer +instanceKlass jdk/internal/math/FloatingDecimal$ExceptionalBinaryToASCIIBuffer +instanceKlass jdk/internal/math/FloatingDecimal$BinaryToASCIIConverter +instanceKlass jdk/internal/math/FloatingDecimal +instanceKlass javax/security/auth/login/Configuration$Parameters +instanceKlass java/security/Policy$Parameters +instanceKlass java/security/cert/CertStoreParameters +instanceKlass java/security/SecureRandomParameters +instanceKlass java/security/Provider$EngineDescription +instanceKlass java/security/Provider$ServiceKey +instanceKlass sun/security/jca/ProviderConfig +instanceKlass sun/security/jca/ProviderList +instanceKlass sun/security/jca/Providers +instanceKlass @bci sun/security/util/ManifestDigester ([B)V 350 argL0 ; # sun/security/util/ManifestDigester$$Lambda+0x000002190104d0d8 +instanceKlass sun/security/util/ManifestDigester$Section +instanceKlass sun/security/util/ManifestDigester$Entry +instanceKlass sun/security/util/ManifestDigester$Position +instanceKlass sun/security/util/ManifestDigester +instanceKlass sun/security/util/ManifestEntryVerifier +instanceKlass jdk/internal/misc/ThreadTracker +instanceKlass java/util/jar/JarFile$ThreadTrackHolder +instanceKlass java/util/jar/JarVerifier +instanceKlass sun/launcher/LauncherHelper +instanceKlass lombok/patcher/scripts/ScriptBuilder$SetSymbolDuringMethodCallBuilder +instanceKlass lombok/patcher/scripts/ScriptBuilder$ReplaceMethodCallBuilder +instanceKlass lombok/eclipse/agent/EclipsePatcher$4 +instanceKlass lombok/eclipse/agent/EclipsePatcher$3 +instanceKlass lombok/patcher/scripts/ScriptBuilder$WrapMethodCallBuilder +instanceKlass lombok/patcher/ScriptManager$WitnessAction +instanceKlass lombok/patcher/scripts/ScriptBuilder$WrapReturnValueBuilder +instanceKlass java/nio/charset/StandardCharsets +instanceKlass lombok/patcher/ClassRootFinder +instanceKlass lombok/patcher/scripts/ScriptBuilder$AddFieldBuilder +instanceKlass java/util/Collections$1 +instanceKlass lombok/patcher/PatchScript$MethodPatcherFactory +instanceKlass org/lombokweb/asm/ClassVisitor +instanceKlass lombok/patcher/Hook +instanceKlass @bci java/util/regex/Pattern negate (Ljava/util/regex/Pattern$CharPredicate;)Ljava/util/regex/Pattern$CharPredicate; 1 member ; # java/util/regex/Pattern$$Lambda+0x800000031 +instanceKlass java/util/regex/Pattern$BitClass +instanceKlass lombok/patcher/MethodTarget +instanceKlass lombok/patcher/scripts/ScriptBuilder$ExitEarlyBuilder +instanceKlass lombok/patcher/scripts/ScriptBuilder +instanceKlass lombok/eclipse/agent/EclipseLoaderPatcher +instanceKlass lombok/eclipse/agent/EclipsePatcher$2 +instanceKlass lombok/eclipse/agent/EclipsePatcher$1 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000002190100d800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000002190100d400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000002190100d000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x000002190100cc00 +# instanceKlass java/lang/invoke/LambdaForm$BMH+0x000002190100c800 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002190100c400 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x000002190100c000 +instanceKlass java/lang/instrument/ClassDefinition +instanceKlass lombok/patcher/ScriptManager$OurClassFileTransformer +instanceKlass lombok/patcher/Filter$1 +instanceKlass lombok/patcher/TransplantMapper$1 +instanceKlass java/lang/instrument/ClassFileTransformer +instanceKlass lombok/patcher/ScriptManager +instanceKlass lombok/patcher/TransplantMapper +instanceKlass lombok/patcher/Filter +instanceKlass lombok/patcher/PatchScript +instanceKlass lombok/patcher/TargetMatcher +instanceKlass lombok/eclipse/agent/EclipsePatcher +instanceKlass lombok/core/AgentLauncher$AgentLaunchable +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901008400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901008000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901007c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901007800 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x0000021901007400 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x0000021901007000 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x0000021901006c00 +instanceKlass java/lang/ClassValue$Version +instanceKlass java/lang/ClassValue$Identity +instanceKlass java/lang/ClassValue +instanceKlass java/lang/invoke/MethodHandleImpl$ArrayAccessor +instanceKlass java/lang/invoke/MethodHandleImpl$LoopClauses +instanceKlass java/lang/invoke/MethodHandleImpl$CasesHolder +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901006800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901006400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901006000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901005c00 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x0000021901005800 +# instanceKlass java/lang/invoke/LambdaForm$BMH+0x0000021901005400 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x0000021901005000 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901004c00 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x0000021901004800 +instanceKlass java/lang/invoke/ClassSpecializer$Factory$1Var +instanceKlass java/lang/invoke/MethodHandles$1 +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x0000021901004400 +instanceKlass sun/invoke/util/ValueConversions$1 +instanceKlass sun/invoke/util/ValueConversions$WrapperCache +# instanceKlass java/lang/invoke/LambdaForm$DMH+0x0000021901004000 +instanceKlass jdk/internal/foreign/MemorySessionImpl +instanceKlass java/lang/foreign/MemorySegment$Scope +instanceKlass lombok/core/AgentLauncher$AgentInfo +instanceKlass lombok/core/AgentLauncher +instanceKlass java/util/IdentityHashMap$IdentityHashMapIterator +instanceKlass lombok/launch/ClassFileMetaData +instanceKlass sun/net/www/MessageHeader +instanceKlass sun/net/www/protocol/jar/JarFileFactory +instanceKlass sun/net/www/protocol/jar/URLJarFile$URLJarFileCloseController +instanceKlass java/net/URLConnection +instanceKlass java/util/zip/ZipFile$ZipEntryIterator +instanceKlass java/util/WeakHashMap$HashIterator +instanceKlass java/net/URLDecoder +instanceKlass java/util/regex/IntHashSet +instanceKlass java/util/regex/Matcher +instanceKlass java/util/regex/MatchResult +instanceKlass java/util/regex/Pattern$TreeInfo +instanceKlass @bci java/util/regex/Pattern Single (I)Ljava/util/regex/Pattern$BmpCharPredicate; 1 member ; # java/util/regex/Pattern$$Lambda+0x800000029 +instanceKlass java/util/regex/Pattern$BmpCharPredicate +instanceKlass java/util/regex/Pattern$CharPredicate +instanceKlass java/util/regex/Pattern$Node +instanceKlass java/util/regex/Pattern +instanceKlass jdk/internal/jimage/ImageLocation +instanceKlass jdk/internal/jimage/decompressor/Decompressor +instanceKlass jdk/internal/jimage/ImageStringsReader +instanceKlass jdk/internal/jimage/ImageStrings +instanceKlass jdk/internal/jimage/ImageHeader +instanceKlass jdk/internal/jimage/NativeImageBuffer$1 +instanceKlass jdk/internal/jimage/NativeImageBuffer +instanceKlass jdk/internal/jimage/BasicImageReader$1 +instanceKlass jdk/internal/jimage/BasicImageReader +instanceKlass jdk/internal/jimage/ImageReader +instanceKlass jdk/internal/jimage/ImageReaderFactory$1 +instanceKlass java/net/URI$Parser +instanceKlass java/nio/file/FileSystems$DefaultFileSystemHolder$1 +instanceKlass java/nio/file/FileSystems$DefaultFileSystemHolder +instanceKlass java/nio/file/FileSystems +instanceKlass java/nio/file/Paths +instanceKlass jdk/internal/jimage/ImageReaderFactory +instanceKlass jdk/internal/module/SystemModuleFinders$SystemImage +instanceKlass jdk/internal/module/SystemModuleFinders$SystemModuleReader +instanceKlass java/lang/module/ModuleReader +instanceKlass jdk/internal/loader/BuiltinClassLoader$5 +instanceKlass jdk/internal/loader/BuiltinClassLoader$2 +instanceKlass jdk/internal/module/Resources +instanceKlass java/util/Arrays$ArrayItr +instanceKlass lombok/launch/PackageShader +instanceKlass java/io/Reader +instanceKlass java/lang/Readable +instanceKlass lombok/launch/Main +instanceKlass @bci jdk/internal/reflect/DirectMethodHandleAccessor invokeImpl (Ljava/lang/Object;[Ljava/lang/Object;Ljava/lang/Class;)Ljava/lang/Object; 136 ; # java/lang/invoke/LambdaForm$MH+0x0000021901002c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901002800 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901002400 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901002000 +instanceKlass @bci org/eclipse/core/internal/filesystem/local/Win32Handler toLongWindowsPath (Ljava/lang/String;)Ljava/lang/String; 39 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901001c00 +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901001800 +instanceKlass sun/instrument/InstrumentationImpl$1 +instanceKlass lombok/launch/Agent +instanceKlass java/security/SecureClassLoader$DebugHolder +instanceKlass java/security/Permission +instanceKlass java/security/Guard +instanceKlass java/security/PermissionCollection +instanceKlass java/security/SecureClassLoader$1 +instanceKlass java/util/zip/Checksum$1 +instanceKlass java/util/zip/CRC32 +instanceKlass java/util/zip/Checksum +instanceKlass sun/nio/ByteBuffered +instanceKlass java/lang/Package$VersionInfo +instanceKlass java/lang/NamedPackage +instanceKlass java/util/jar/Attributes$Name +instanceKlass java/util/jar/Attributes +instanceKlass jdk/internal/loader/Resource +instanceKlass sun/security/action/GetIntegerAction +instanceKlass sun/security/util/Debug +instanceKlass sun/security/util/SignatureFileVerifier +instanceKlass java/util/zip/ZipFile$InflaterCleanupAction +instanceKlass java/util/zip/Inflater$InflaterZStreamRef +instanceKlass java/util/zip/Inflater +instanceKlass java/util/zip/ZipEntry +instanceKlass java/util/zip/ZipFile$2 +instanceKlass java/nio/Bits$1 +instanceKlass jdk/internal/misc/VM$BufferPool +instanceKlass java/nio/Bits +instanceKlass sun/nio/ch/DirectBuffer +instanceKlass jdk/internal/perf/PerfCounter$CoreCounters +instanceKlass jdk/internal/perf/Perf +instanceKlass jdk/internal/perf/Perf$GetPerfAction +instanceKlass jdk/internal/perf/PerfCounter +instanceKlass sun/util/locale/LocaleUtils +instanceKlass sun/util/locale/BaseLocale +instanceKlass java/util/Locale +instanceKlass java/nio/file/attribute/FileTime +instanceKlass java/lang/StringCoding +instanceKlass java/util/zip/ZipUtils +instanceKlass java/util/zip/ZipFile$Source$End +instanceKlass java/io/RandomAccessFile$2 +instanceKlass jdk/internal/access/JavaIORandomAccessFileAccess +instanceKlass java/io/RandomAccessFile +instanceKlass java/io/DataInput +instanceKlass java/io/DataOutput +instanceKlass sun/nio/fs/WindowsNativeDispatcher$CompletionStatus +instanceKlass sun/nio/fs/WindowsNativeDispatcher$AclInformation +instanceKlass sun/nio/fs/WindowsNativeDispatcher$Account +instanceKlass sun/nio/fs/WindowsNativeDispatcher$DiskFreeSpace +instanceKlass sun/nio/fs/WindowsNativeDispatcher$VolumeInformation +instanceKlass sun/nio/fs/WindowsNativeDispatcher$FirstStream +instanceKlass sun/nio/fs/WindowsNativeDispatcher$FirstFile +instanceKlass java/util/Enumeration +instanceKlass java/util/concurrent/ConcurrentHashMap$Traverser +instanceKlass sun/nio/fs/WindowsNativeDispatcher +instanceKlass sun/nio/fs/NativeBuffer$Deallocator +instanceKlass sun/nio/fs/NativeBuffer +instanceKlass java/lang/ThreadLocal$ThreadLocalMap +instanceKlass java/lang/ThreadLocal +instanceKlass sun/nio/fs/NativeBuffers +instanceKlass sun/nio/fs/WindowsFileAttributes +instanceKlass java/nio/file/attribute/DosFileAttributes +instanceKlass sun/nio/fs/AbstractBasicFileAttributeView +instanceKlass sun/nio/fs/DynamicFileAttributeView +instanceKlass sun/nio/fs/WindowsFileAttributeViews +instanceKlass sun/nio/fs/Util +instanceKlass java/nio/file/attribute/BasicFileAttributeView +instanceKlass java/nio/file/attribute/FileAttributeView +instanceKlass java/nio/file/attribute/AttributeView +instanceKlass java/nio/file/Files +instanceKlass java/nio/file/CopyOption +instanceKlass java/nio/file/attribute/BasicFileAttributes +instanceKlass sun/nio/fs/WindowsPath +instanceKlass java/util/zip/ZipFile$Source$Key +instanceKlass sun/nio/fs/WindowsPathParser$Result +instanceKlass sun/nio/fs/WindowsPathParser +instanceKlass java/nio/file/FileSystem +instanceKlass java/nio/file/OpenOption +instanceKlass java/nio/file/spi/FileSystemProvider +instanceKlass sun/nio/fs/DefaultFileSystemProvider +instanceKlass java/util/zip/ZipFile$Source +instanceKlass java/util/zip/ZipCoder +instanceKlass java/util/zip/ZipFile$CleanableResource +instanceKlass java/lang/Runtime$Version +instanceKlass java/util/jar/JavaUtilJarAccessImpl +instanceKlass jdk/internal/access/JavaUtilJarAccess +instanceKlass jdk/internal/loader/FileURLMapper +instanceKlass jdk/internal/loader/URLClassPath$JarLoader$1 +instanceKlass java/util/zip/ZipFile$1 +instanceKlass jdk/internal/access/JavaUtilZipFileAccess +instanceKlass java/util/zip/ZipFile +instanceKlass java/util/zip/ZipConstants +instanceKlass jdk/internal/loader/URLClassPath$Loader +instanceKlass jdk/internal/loader/URLClassPath$3 +instanceKlass java/security/PrivilegedExceptionAction +instanceKlass sun/net/util/URLUtil +instanceKlass sun/instrument/TransformerManager$TransformerInfo +instanceKlass sun/instrument/TransformerManager +instanceKlass jdk/internal/loader/NativeLibraries$3 +instanceKlass jdk/internal/loader/NativeLibrary +instanceKlass java/util/ArrayDeque$DeqIterator +instanceKlass jdk/internal/loader/NativeLibraries$NativeLibraryContext$1 +instanceKlass jdk/internal/loader/NativeLibraries$NativeLibraryContext +instanceKlass jdk/internal/loader/NativeLibraries$2 +instanceKlass jdk/internal/loader/NativeLibraries$1 +instanceKlass jdk/internal/loader/NativeLibraries$LibraryPaths +instanceKlass @bci sun/instrument/InstrumentationImpl ()V 16 argL0 ; # sun/instrument/InstrumentationImpl$$Lambda+0x0000021901042ef8 +instanceKlass sun/instrument/InstrumentationImpl +instanceKlass java/lang/instrument/Instrumentation +instanceKlass java/lang/invoke/StringConcatFactory +instanceKlass jdk/internal/module/ModuleBootstrap$SafeModuleFinder +instanceKlass @bci java/lang/WeakPairMap computeIfAbsent (Ljava/lang/Object;Ljava/lang/Object;Ljava/util/function/BiFunction;)Ljava/lang/Object; 18 member ; # java/lang/WeakPairMap$$Lambda+0x00000219010427b0 +instanceKlass @bci java/lang/Module implAddExportsOrOpens (Ljava/lang/String;Ljava/lang/Module;ZZ)V 145 argL0 ; # java/lang/Module$$Lambda+0x0000021901041e98 +instanceKlass @bci jdk/internal/module/ModuleBootstrap decode (Ljava/lang/String;Ljava/lang/String;Z)Ljava/util/Map; 193 argL0 ; # jdk/internal/module/ModuleBootstrap$$Lambda+0x0000021901041c68 +instanceKlass java/lang/ModuleLayer$Controller +instanceKlass java/util/concurrent/CopyOnWriteArrayList +instanceKlass jdk/internal/module/ServicesCatalog$ServiceProvider +instanceKlass jdk/internal/loader/AbstractClassLoaderValue$Memoizer +instanceKlass jdk/internal/module/ModuleLoaderMap$Modules +instanceKlass jdk/internal/module/ModuleLoaderMap$Mapper +instanceKlass jdk/internal/module/ModuleLoaderMap +instanceKlass java/lang/module/ResolvedModule +instanceKlass java/util/Collections$UnmodifiableCollection$1 +instanceKlass java/util/SequencedMap +instanceKlass java/util/SequencedSet +instanceKlass java/lang/ModuleLayer +instanceKlass java/util/ImmutableCollections$ListItr +instanceKlass java/util/ListIterator +instanceKlass java/lang/module/ModuleFinder$1 +instanceKlass java/nio/file/Path +instanceKlass java/nio/file/Watchable +instanceKlass java/lang/module/Resolver +instanceKlass java/lang/module/Configuration +instanceKlass java/util/stream/ForEachOps$ForEachOp +instanceKlass java/util/stream/ForEachOps +instanceKlass @bci jdk/internal/module/ModuleBootstrap boot2 ()Ljava/lang/ModuleLayer; 791 member ; # jdk/internal/module/ModuleBootstrap$$Lambda+0x0000021901041288 +instanceKlass @cpi org/eclipse/core/internal/registry/RegistryProperties 118 form vmentry ; # java/lang/invoke/LambdaForm$DMH+0x0000021901000c00 +instanceKlass @bci jdk/internal/module/ModuleBootstrap boot2 ()Ljava/lang/ModuleLayer; 779 member ; # jdk/internal/module/ModuleBootstrap$$Lambda+0x0000021901041040 +instanceKlass @bci jdk/internal/module/ModuleBootstrap boot2 ()Ljava/lang/ModuleLayer; 767 argL0 ; # jdk/internal/module/ModuleBootstrap$$Lambda+0x0000021901040c28 +instanceKlass @bci jdk/internal/module/ModuleBootstrap boot2 ()Ljava/lang/ModuleLayer; 757 argL0 ; # jdk/internal/module/ModuleBootstrap$$Lambda+0x00000219010409f8 +instanceKlass @bci java/util/stream/FindOps$FindSink$OfRef ()V 43 argL0 ; # java/util/stream/FindOps$FindSink$OfRef$$Lambda+0x800000048 +instanceKlass @bci java/util/stream/FindOps$FindSink$OfRef ()V 38 argL0 ; # java/util/stream/FindOps$FindSink$OfRef$$Lambda+0x80000004a +instanceKlass @bci java/util/stream/FindOps$FindSink$OfRef ()V 16 argL0 ; # java/util/stream/FindOps$FindSink$OfRef$$Lambda+0x800000049 +instanceKlass @bci java/util/stream/FindOps$FindSink$OfRef ()V 11 argL0 ; # java/util/stream/FindOps$FindSink$OfRef$$Lambda+0x80000004b +instanceKlass java/util/stream/FindOps$FindOp +instanceKlass java/util/stream/FindOps$FindSink +instanceKlass java/util/stream/FindOps +instanceKlass @bci jdk/internal/module/DefaultRoots exportsAPI (Ljava/lang/module/ModuleDescriptor;)Z 9 argL0 ; # jdk/internal/module/DefaultRoots$$Lambda+0x800000051 +instanceKlass java/util/stream/Sink$ChainedReference +instanceKlass java/util/stream/ReduceOps$AccumulatingSink +instanceKlass java/util/stream/TerminalSink +instanceKlass java/util/stream/Sink +instanceKlass java/util/function/Consumer +instanceKlass java/util/stream/ReduceOps$Box +instanceKlass java/util/stream/ReduceOps$ReduceOp +instanceKlass java/util/stream/TerminalOp +instanceKlass java/util/stream/ReduceOps +instanceKlass @bci java/util/stream/Collectors castingIdentity ()Ljava/util/function/Function; 0 argL0 ; # java/util/stream/Collectors$$Lambda+0x800000042 +instanceKlass @bci java/util/stream/Collectors toSet ()Ljava/util/stream/Collector; 14 argL0 ; # java/util/stream/Collectors$$Lambda+0x800000040 +instanceKlass java/util/function/BinaryOperator +instanceKlass @bci java/util/stream/Collectors toSet ()Ljava/util/stream/Collector; 9 argL0 ; # java/util/stream/Collectors$$Lambda+0x800000039 +instanceKlass java/util/function/BiConsumer +instanceKlass @bci java/util/stream/Collectors toSet ()Ljava/util/stream/Collector; 4 argL0 ; # java/util/stream/Collectors$$Lambda+0x800000045 +instanceKlass java/util/stream/Collector +instanceKlass java/util/Collections$UnmodifiableCollection +instanceKlass java/util/stream/Collectors +instanceKlass @bci jdk/internal/module/DefaultRoots compute (Ljava/lang/module/ModuleFinder;Ljava/lang/module/ModuleFinder;)Ljava/util/Set; 42 argL0 ; # jdk/internal/module/DefaultRoots$$Lambda+0x80000004e +instanceKlass @bci jdk/internal/module/DefaultRoots compute (Ljava/lang/module/ModuleFinder;Ljava/lang/module/ModuleFinder;)Ljava/util/Set; 32 member ; # jdk/internal/module/DefaultRoots$$Lambda+0x800000052 +instanceKlass @bci jdk/internal/module/DefaultRoots compute (Ljava/lang/module/ModuleFinder;Ljava/lang/module/ModuleFinder;)Ljava/util/Set; 21 argL0 ; # jdk/internal/module/DefaultRoots$$Lambda+0x80000004f +instanceKlass java/util/concurrent/ForkJoinPool$ManagedBlocker +instanceKlass java/util/concurrent/locks/AbstractQueuedSynchronizer$Node +instanceKlass java/lang/ref/Cleaner$Cleanable +instanceKlass jdk/internal/ref/CleanerImpl +instanceKlass java/lang/ref/Cleaner$1 +instanceKlass java/lang/ref/Cleaner +instanceKlass jdk/internal/ref/CleanerFactory$1 +instanceKlass java/util/concurrent/ThreadFactory +instanceKlass jdk/internal/ref/CleanerFactory +instanceKlass @bci org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding ()V 46 form vmentry ; # java/lang/invoke/LambdaForm$MH+0x0000021901000800 +instanceKlass @bci jdk/internal/module/DefaultRoots compute (Ljava/lang/module/ModuleFinder;Ljava/lang/module/ModuleFinder;)Ljava/util/Set; 11 argL0 ; # jdk/internal/module/DefaultRoots$$Lambda+0x800000050 +instanceKlass java/lang/invoke/LambdaProxyClassArchive +instanceKlass java/lang/invoke/InfoFromMemberName +instanceKlass java/lang/invoke/MethodHandleInfo +instanceKlass jdk/internal/org/objectweb/asm/ConstantDynamic +instanceKlass jdk/internal/org/objectweb/asm/Handle +instanceKlass sun/security/action/GetBooleanAction +instanceKlass java/lang/invoke/AbstractValidatingLambdaMetafactory +instanceKlass java/lang/invoke/BootstrapMethodInvoker +instanceKlass java/util/function/Predicate +instanceKlass java/lang/WeakPairMap$Pair$Lookup +instanceKlass java/lang/WeakPairMap$Pair +instanceKlass java/lang/WeakPairMap +instanceKlass java/lang/Module$ReflectionData +instanceKlass java/lang/invoke/LambdaMetafactory +# instanceKlass java/lang/invoke/LambdaForm$MH+0x0000021901000400 +instanceKlass java/lang/invoke/MethodHandles$Lookup$ClassDefiner +instanceKlass java/lang/invoke/MethodHandles$Lookup$ClassFile +instanceKlass jdk/internal/org/objectweb/asm/Handler +instanceKlass jdk/internal/org/objectweb/asm/Attribute +instanceKlass jdk/internal/org/objectweb/asm/FieldVisitor +instanceKlass java/util/ArrayList$Itr +instanceKlass sun/invoke/empty/Empty +instanceKlass sun/invoke/util/VerifyType +instanceKlass java/lang/invoke/InvokerBytecodeGenerator$ClassData +instanceKlass jdk/internal/org/objectweb/asm/AnnotationVisitor +instanceKlass jdk/internal/org/objectweb/asm/Frame +instanceKlass jdk/internal/org/objectweb/asm/Label +instanceKlass jdk/internal/org/objectweb/asm/Type +instanceKlass jdk/internal/org/objectweb/asm/MethodVisitor +instanceKlass sun/invoke/util/BytecodeDescriptor +instanceKlass jdk/internal/org/objectweb/asm/ByteVector +instanceKlass jdk/internal/org/objectweb/asm/Symbol +instanceKlass jdk/internal/org/objectweb/asm/SymbolTable +instanceKlass jdk/internal/org/objectweb/asm/ClassVisitor +instanceKlass java/lang/invoke/LambdaFormBuffer +instanceKlass java/lang/invoke/LambdaFormEditor$TransformKey +instanceKlass java/lang/invoke/LambdaFormEditor +instanceKlass java/lang/invoke/Invokers$Holder +instanceKlass java/lang/invoke/DelegatingMethodHandle$Holder +instanceKlass java/lang/invoke/DirectMethodHandle$2 +instanceKlass java/lang/invoke/ClassSpecializer$Factory +instanceKlass java/lang/invoke/ClassSpecializer$SpeciesData +instanceKlass java/lang/invoke/ClassSpecializer$1 +instanceKlass java/lang/invoke/ClassSpecializer +instanceKlass java/lang/invoke/InvokerBytecodeGenerator$1 +instanceKlass java/lang/invoke/InvokerBytecodeGenerator +instanceKlass java/lang/invoke/LambdaForm$Holder +instanceKlass java/lang/invoke/LambdaForm$Name +instanceKlass java/lang/reflect/Array +instanceKlass java/lang/invoke/Invokers +instanceKlass sun/invoke/util/ValueConversions +instanceKlass java/lang/invoke/DirectMethodHandle$Holder +instanceKlass java/lang/Void +instanceKlass sun/invoke/util/Wrapper$Format +instanceKlass java/lang/invoke/MethodHandleImpl$1 +instanceKlass jdk/internal/access/JavaLangInvokeAccess +instanceKlass java/lang/invoke/LambdaForm$NamedFunction +instanceKlass java/lang/invoke/MethodHandleImpl +instanceKlass jdk/internal/reflect/MethodHandleAccessorFactory$LazyStaticHolder +instanceKlass java/lang/invoke/MethodTypeForm +instanceKlass jdk/internal/util/StrongReferenceKey +instanceKlass jdk/internal/util/ReferenceKey +instanceKlass jdk/internal/util/ReferencedKeyMap +instanceKlass java/lang/invoke/MethodType$1 +instanceKlass jdk/internal/reflect/MethodHandleAccessorFactory +instanceKlass sun/reflect/annotation/AnnotationParser +instanceKlass java/lang/Class$3 +instanceKlass java/lang/PublicMethods$Key +instanceKlass java/lang/PublicMethods$MethodList +instanceKlass java/lang/Class$Atomic +instanceKlass java/lang/Class$ReflectionData +instanceKlass java/util/EnumMap$1 +instanceKlass java/util/stream/StreamOpFlag$MaskBuilder +instanceKlass java/util/stream/Stream +instanceKlass java/util/stream/BaseStream +instanceKlass java/util/stream/PipelineHelper +instanceKlass java/util/stream/StreamSupport +instanceKlass java/util/Spliterators$IteratorSpliterator +instanceKlass java/util/Spliterator$OfDouble +instanceKlass java/util/Spliterator$OfLong +instanceKlass java/util/Spliterator$OfInt +instanceKlass java/util/Spliterator$OfPrimitive +instanceKlass java/util/Spliterator +instanceKlass java/util/Spliterators$EmptySpliterator +instanceKlass java/util/Spliterators +instanceKlass jdk/internal/module/DefaultRoots +instanceKlass jdk/internal/loader/BuiltinClassLoader$LoadedModule +instanceKlass jdk/internal/loader/AbstractClassLoaderValue +instanceKlass jdk/internal/module/ServicesCatalog +instanceKlass java/util/Deque +instanceKlass java/util/Queue +instanceKlass sun/net/util/IPAddressUtil$MASKS +instanceKlass sun/net/util/IPAddressUtil +instanceKlass java/net/URLStreamHandler +instanceKlass java/lang/StringUTF16 +instanceKlass sun/net/www/ParseUtil +instanceKlass java/net/URL$3 +instanceKlass jdk/internal/access/JavaNetURLAccess +instanceKlass java/net/URL$DefaultFactory +instanceKlass java/net/URLStreamHandlerFactory +instanceKlass jdk/internal/loader/URLClassPath +instanceKlass java/security/Principal +instanceKlass java/security/ProtectionDomain$Key +instanceKlass java/security/ProtectionDomain$JavaSecurityAccessImpl +instanceKlass jdk/internal/access/JavaSecurityAccess +instanceKlass java/lang/ClassLoader$ParallelLoaders +instanceKlass java/security/cert/Certificate +instanceKlass jdk/internal/loader/ArchivedClassLoaders +instanceKlass java/util/concurrent/ConcurrentHashMap$CollectionView +instanceKlass jdk/internal/loader/ClassLoaderHelper +instanceKlass jdk/internal/loader/NativeLibraries +instanceKlass java/lang/Module$EnableNativeAccess +instanceKlass jdk/internal/loader/BootLoader +instanceKlass java/util/Optional +instanceKlass jdk/internal/module/SystemModuleFinders$SystemModuleFinder +instanceKlass java/lang/module/ModuleFinder +instanceKlass jdk/internal/module/SystemModuleFinders$3 +instanceKlass jdk/internal/module/ModuleHashes$HashSupplier +instanceKlass jdk/internal/module/SystemModuleFinders$2 +instanceKlass java/util/function/Supplier +instanceKlass java/lang/module/ModuleReference +instanceKlass jdk/internal/module/ModuleResolution +instanceKlass java/util/Collections$UnmodifiableMap +instanceKlass jdk/internal/module/ModuleHashes$Builder +instanceKlass jdk/internal/module/ModuleHashes +instanceKlass jdk/internal/module/ModuleTarget +instanceKlass java/util/ImmutableCollections$Set12$1 +instanceKlass java/lang/reflect/AccessFlag$18 +instanceKlass java/lang/reflect/AccessFlag$17 +instanceKlass java/lang/reflect/AccessFlag$16 +instanceKlass java/lang/reflect/AccessFlag$15 +instanceKlass java/lang/reflect/AccessFlag$14 +instanceKlass java/lang/reflect/AccessFlag$13 +instanceKlass java/lang/reflect/AccessFlag$12 +instanceKlass java/lang/reflect/AccessFlag$11 +instanceKlass java/lang/reflect/AccessFlag$10 +instanceKlass java/lang/reflect/AccessFlag$9 +instanceKlass java/lang/reflect/AccessFlag$8 +instanceKlass java/lang/reflect/AccessFlag$7 +instanceKlass java/lang/reflect/AccessFlag$6 +instanceKlass java/lang/reflect/AccessFlag$5 +instanceKlass java/lang/reflect/AccessFlag$4 +instanceKlass java/lang/reflect/AccessFlag$3 +instanceKlass java/lang/reflect/AccessFlag$2 +instanceKlass java/lang/reflect/AccessFlag$1 +instanceKlass java/lang/module/ModuleDescriptor$Version +instanceKlass java/lang/module/ModuleDescriptor$Provides +instanceKlass java/lang/module/ModuleDescriptor$Opens +instanceKlass java/util/ImmutableCollections$SetN$SetNIterator +instanceKlass java/lang/module/ModuleDescriptor$Exports +instanceKlass java/lang/module/ModuleDescriptor$Requires +instanceKlass jdk/internal/module/Builder +instanceKlass jdk/internal/module/SystemModules$all +instanceKlass jdk/internal/module/SystemModules +instanceKlass jdk/internal/module/SystemModulesMap +instanceKlass java/net/URI$1 +instanceKlass jdk/internal/access/JavaNetUriAccess +instanceKlass java/net/URI +instanceKlass jdk/internal/module/SystemModuleFinders +instanceKlass jdk/internal/module/ArchivedModuleGraph +instanceKlass jdk/internal/module/ArchivedBootLayer +instanceKlass jdk/internal/module/ModuleBootstrap$Counters +instanceKlass jdk/internal/module/ModulePatcher +instanceKlass java/io/FileSystem +instanceKlass java/io/DefaultFileSystem +instanceKlass java/io/File +instanceKlass java/lang/module/ModuleDescriptor$1 +instanceKlass jdk/internal/access/JavaLangModuleAccess +instanceKlass java/lang/reflect/Modifier +instanceKlass sun/invoke/util/VerifyAccess +instanceKlass java/util/KeyValueHolder +instanceKlass java/util/ImmutableCollections$MapN$MapNIterator +instanceKlass java/lang/StrictMath +instanceKlass java/lang/invoke/MethodHandles$Lookup +instanceKlass java/lang/invoke/MemberName$Factory +instanceKlass java/lang/invoke/MethodHandles +instanceKlass java/lang/module/ModuleDescriptor +instanceKlass jdk/internal/module/ModuleBootstrap +instanceKlass java/lang/Character$CharacterCache +instanceKlass java/util/HexFormat +instanceKlass jdk/internal/util/ClassFileDumper +instanceKlass sun/security/action/GetPropertyAction +instanceKlass java/lang/invoke/MethodHandleStatics +instanceKlass jdk/internal/misc/Blocker +instanceKlass java/util/Collections +instanceKlass java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject +instanceKlass java/util/concurrent/locks/Condition +instanceKlass java/lang/Thread$ThreadIdentifiers +instanceKlass sun/io/Win32ErrorMode +instanceKlass jdk/internal/misc/OSEnvironment +instanceKlass java/lang/Integer$IntegerCache +instanceKlass jdk/internal/misc/Signal$NativeHandler +instanceKlass java/util/Hashtable$Entry +instanceKlass jdk/internal/misc/Signal +instanceKlass java/lang/Terminator$1 +instanceKlass jdk/internal/misc/Signal$Handler +instanceKlass java/lang/Terminator +instanceKlass java/nio/ByteOrder +instanceKlass java/nio/Buffer$2 +instanceKlass jdk/internal/access/JavaNioAccess +instanceKlass java/nio/Buffer$1 +instanceKlass jdk/internal/misc/ScopedMemoryAccess +instanceKlass java/nio/charset/CodingErrorAction +instanceKlass java/nio/charset/CharsetEncoder +instanceKlass java/io/Writer +instanceKlass java/io/PrintStream$1 +instanceKlass jdk/internal/access/JavaIOPrintStreamAccess +instanceKlass jdk/internal/misc/InternalLock +instanceKlass java/io/OutputStream +instanceKlass java/io/Flushable +instanceKlass java/io/FileDescriptor$1 +instanceKlass jdk/internal/access/JavaIOFileDescriptorAccess +instanceKlass java/io/FileDescriptor +instanceKlass jdk/internal/util/StaticProperty +instanceKlass java/util/HashMap$HashIterator +instanceKlass java/util/concurrent/locks/LockSupport +instanceKlass java/util/concurrent/ConcurrentHashMap$Node +instanceKlass java/util/concurrent/ConcurrentHashMap$CounterCell +instanceKlass java/util/concurrent/locks/ReentrantLock +instanceKlass java/util/concurrent/locks/Lock +instanceKlass java/lang/CharacterData +instanceKlass java/util/Arrays +instanceKlass jdk/internal/util/Preconditions$3 +instanceKlass jdk/internal/util/Preconditions$2 +instanceKlass jdk/internal/util/Preconditions$4 +instanceKlass java/util/function/BiFunction +instanceKlass jdk/internal/util/Preconditions$1 +instanceKlass java/util/function/Function +instanceKlass jdk/internal/util/Preconditions +instanceKlass java/lang/Runtime +instanceKlass java/lang/VersionProps +instanceKlass java/lang/StringConcatHelper +instanceKlass java/util/HashMap$Node +instanceKlass java/util/Map$Entry +instanceKlass jdk/internal/util/ArraysSupport +instanceKlass sun/nio/cs/HistoricallyNamedCharset +instanceKlass java/nio/charset/spi/CharsetProvider +instanceKlass java/nio/charset/Charset +instanceKlass jdk/internal/util/SystemProps$Raw +instanceKlass jdk/internal/util/SystemProps +instanceKlass java/lang/System$2 +instanceKlass jdk/internal/access/JavaLangAccess +instanceKlass java/lang/ref/NativeReferenceQueue$Lock +instanceKlass java/lang/ref/ReferenceQueue +instanceKlass java/lang/ref/Reference$1 +instanceKlass jdk/internal/access/JavaLangRefAccess +instanceKlass jdk/internal/reflect/ReflectionFactory +instanceKlass java/lang/Math +instanceKlass java/lang/StringLatin1 +instanceKlass jdk/internal/reflect/Reflection +instanceKlass jdk/internal/reflect/ReflectionFactory$GetReflectionFactoryAction +instanceKlass java/security/PrivilegedAction +instanceKlass jdk/internal/access/SharedSecrets +instanceKlass java/lang/reflect/ReflectAccess +instanceKlass jdk/internal/access/JavaLangReflectAccess +instanceKlass java/util/ImmutableCollections +instanceKlass java/util/Objects +instanceKlass java/util/Set +instanceKlass jdk/internal/misc/CDS +instanceKlass java/lang/Module$ArchivedData +instanceKlass jdk/internal/misc/VM +instanceKlass java/lang/String$CaseInsensitiveComparator +instanceKlass java/util/Comparator +instanceKlass java/io/ObjectStreamField +instanceKlass jdk/internal/vm/FillerObject +instanceKlass jdk/internal/vm/vector/VectorSupport$VectorPayload +instanceKlass jdk/internal/vm/vector/VectorSupport +instanceKlass java/lang/reflect/RecordComponent +instanceKlass java/util/Iterator +instanceKlass java/lang/Number +instanceKlass java/lang/Character +instanceKlass java/lang/Boolean +instanceKlass java/util/concurrent/locks/AbstractOwnableSynchronizer +instanceKlass java/lang/LiveStackFrame +instanceKlass java/lang/StackFrameInfo +instanceKlass java/lang/StackWalker$StackFrame +instanceKlass java/lang/StackStreamFactory$AbstractStackWalker +instanceKlass java/lang/StackWalker +instanceKlass java/nio/Buffer +instanceKlass java/lang/StackTraceElement +instanceKlass java/util/RandomAccess +instanceKlass java/util/List +instanceKlass java/util/SequencedCollection +instanceKlass java/util/AbstractCollection +instanceKlass java/util/Collection +instanceKlass java/lang/Iterable +instanceKlass java/util/concurrent/ConcurrentMap +instanceKlass java/util/AbstractMap +instanceKlass java/security/CodeSource +instanceKlass jdk/internal/loader/ClassLoaders +instanceKlass java/util/jar/Manifest +instanceKlass java/lang/Enum +instanceKlass java/net/URL +instanceKlass java/io/InputStream +instanceKlass java/io/Closeable +instanceKlass java/lang/AutoCloseable +instanceKlass jdk/internal/module/Modules +instanceKlass jdk/internal/misc/Unsafe +instanceKlass jdk/internal/misc/UnsafeConstants +instanceKlass java/lang/AbstractStringBuilder +instanceKlass java/lang/Appendable +instanceKlass java/lang/AssertionStatusDirectives +instanceKlass java/lang/invoke/MethodHandleNatives$CallSiteContext +instanceKlass jdk/internal/foreign/abi/ABIDescriptor +instanceKlass jdk/internal/foreign/abi/NativeEntryPoint +instanceKlass java/lang/invoke/CallSite +instanceKlass java/lang/invoke/MethodType +instanceKlass java/lang/invoke/TypeDescriptor$OfMethod +instanceKlass java/lang/invoke/LambdaForm +instanceKlass java/lang/invoke/MethodHandleNatives +instanceKlass java/lang/invoke/ResolvedMethodName +instanceKlass java/lang/invoke/MemberName +instanceKlass java/lang/invoke/VarHandle +instanceKlass java/lang/invoke/MethodHandle +instanceKlass jdk/internal/reflect/CallerSensitive +instanceKlass java/lang/annotation/Annotation +instanceKlass jdk/internal/reflect/FieldAccessor +instanceKlass jdk/internal/reflect/ConstantPool +instanceKlass jdk/internal/reflect/ConstructorAccessor +instanceKlass jdk/internal/reflect/MethodAccessor +instanceKlass jdk/internal/reflect/MagicAccessorImpl +instanceKlass jdk/internal/vm/StackChunk +instanceKlass jdk/internal/vm/Continuation +instanceKlass jdk/internal/vm/ContinuationScope +instanceKlass java/lang/reflect/Parameter +instanceKlass java/lang/reflect/Member +instanceKlass java/lang/reflect/AccessibleObject +instanceKlass java/lang/Module +instanceKlass java/util/Map +instanceKlass java/util/Dictionary +instanceKlass java/lang/ThreadGroup +instanceKlass java/lang/Thread$UncaughtExceptionHandler +instanceKlass java/lang/Thread$Constants +instanceKlass java/lang/Thread$FieldHolder +instanceKlass java/lang/Thread +instanceKlass java/lang/Runnable +instanceKlass java/lang/ref/Reference +instanceKlass java/lang/Record +instanceKlass java/security/AccessController +instanceKlass java/security/AccessControlContext +instanceKlass java/security/ProtectionDomain +instanceKlass java/lang/SecurityManager +instanceKlass java/lang/Throwable +instanceKlass java/lang/System +instanceKlass java/lang/ClassLoader +instanceKlass java/lang/Cloneable +instanceKlass java/lang/Class +instanceKlass java/lang/invoke/TypeDescriptor$OfField +instanceKlass java/lang/invoke/TypeDescriptor +instanceKlass java/lang/reflect/Type +instanceKlass java/lang/reflect/GenericDeclaration +instanceKlass java/lang/reflect/AnnotatedElement +instanceKlass java/lang/String +instanceKlass java/lang/constant/ConstantDesc +instanceKlass java/lang/constant/Constable +instanceKlass java/lang/CharSequence +instanceKlass java/lang/Comparable +instanceKlass java/io/Serializable +ciInstanceKlass java/lang/Object 1 1 124 7 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 8 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 7 1 10 7 12 1 1 1 10 12 1 1 10 12 1 100 1 8 1 10 12 1 3 8 1 7 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 3 1 1 +ciInstanceKlass java/io/Serializable 1 0 7 100 1 100 1 1 1 +ciInstanceKlass java/lang/System 1 1 834 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 1 10 7 12 1 1 1 11 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 100 1 8 1 10 12 1 10 7 12 1 1 1 10 7 12 1 1 1 18 12 1 1 10 7 12 1 1 1 7 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 7 12 1 1 1 9 100 12 1 1 1 10 7 12 1 1 1 11 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 7 1 10 10 12 1 1 8 1 10 12 1 8 1 10 12 1 9 12 1 1 8 1 10 7 12 1 1 1 10 12 1 1 100 1 8 1 10 9 12 1 1 8 1 10 12 1 1 10 100 12 1 1 1 8 1 10 12 1 7 1 10 12 1 8 1 10 12 1 10 12 1 1 100 1 10 12 10 12 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 100 1 100 1 8 1 10 12 1 10 12 1 1 7 1 10 12 1 100 1 8 1 10 10 12 1 100 1 8 1 10 8 1 10 100 12 1 1 8 1 10 12 100 1 8 1 10 10 12 1 1 10 7 12 1 1 1 100 1 18 12 1 100 1 9 100 12 1 1 1 10 12 1 100 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 7 1 10 12 1 9 7 12 1 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 7 12 1 1 1 7 1 8 1 10 9 12 1 9 12 1 10 12 1 10 7 12 1 1 10 12 1 10 12 1 1 8 1 10 12 1 1 8 1 11 12 1 10 12 11 12 1 1 11 7 12 1 1 1 11 7 12 1 1 11 12 1 1 7 1 11 12 1 10 12 1 8 1 10 12 1 1 8 1 8 1 8 1 8 1 11 12 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 1 8 1 9 12 1 8 1 10 7 12 1 1 8 1 7 1 9 7 12 1 1 1 10 12 1 7 1 9 12 10 9 12 7 1 10 12 9 12 1 1 8 1 10 12 1 1 8 1 10 7 12 1 1 10 12 1 10 12 1 1 11 7 12 1 1 10 12 10 7 12 1 1 1 9 12 1 1 7 1 8 1 10 12 1 1 10 7 12 1 1 1 7 1 10 12 1 1 10 12 1 8 1 8 1 10 8 1 8 1 8 1 8 1 10 10 7 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 100 12 1 1 1 10 7 1 8 1 10 10 10 12 1 1 10 12 1 1 8 1 10 12 1 8 1 8 1 10 12 1 10 7 12 1 1 1 10 12 1 1 7 1 10 10 12 1 10 12 1 9 12 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 100 1 1 1 1 1 1 1 1 1 1 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 16 15 10 12 1 1 16 15 10 12 16 1 15 10 100 12 1 1 1 1 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/System in Ljava/io/InputStream; java/io/BufferedInputStream +staticfield java/lang/System out Ljava/io/PrintStream; java/io/PrintStream +staticfield java/lang/System err Ljava/io/PrintStream; java/io/PrintStream +instanceKlass com/sun/jna/Native$6 +instanceKlass org/eclipse/osgi/internal/permadmin/EquinoxSecurityManager +instanceKlass org/eclipse/osgi/internal/loader/BundleLoader$ClassContext +instanceKlass org/eclipse/osgi/internal/framework/ContextFinder$Finder +instanceKlass org/eclipse/osgi/internal/url/MultiplexingFactory$InternalSecurityManager +ciInstanceKlass java/lang/SecurityManager 1 1 576 10 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 100 1 8 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 7 1 10 100 1 10 9 100 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 100 1 8 1 10 9 12 1 1 9 12 1 8 1 9 12 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 100 1 10 10 12 1 1 100 1 8 1 10 12 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 8 1 8 1 8 1 8 1 8 1 10 7 12 1 1 1 10 12 1 1 8 1 100 1 8 1 10 8 1 8 1 8 1 8 1 8 1 10 100 12 1 1 8 1 100 1 8 1 8 1 10 8 1 10 12 1 100 1 8 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 10 7 12 1 1 11 7 12 1 1 1 18 12 1 1 11 7 12 1 1 1 18 12 1 1 11 12 1 1 18 18 11 12 1 18 12 1 11 12 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 7 1 10 7 12 1 1 10 12 1 10 12 1 18 12 1 18 10 7 12 1 1 1 18 12 1 10 12 1 18 18 8 1 10 12 1 9 12 1 1 11 7 12 1 1 1 8 1 100 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 10 12 1 1 8 1 100 1 10 9 12 1 8 1 10 12 1 8 1 100 1 10 10 7 12 1 1 10 7 1 9 7 12 1 1 1 11 12 1 1 10 12 1 11 12 1 10 12 1 7 1 10 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 7 12 1 1 1 16 1 16 15 10 12 16 1 15 10 12 16 15 11 7 1 16 1 16 1 15 10 12 16 15 10 12 16 15 10 12 1 16 1 15 11 12 1 15 10 12 16 15 10 16 1 15 10 7 12 1 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/SecurityManager packageAccessLock Ljava/lang/Object; java/lang/Object +staticfield java/lang/SecurityManager packageDefinitionLock Ljava/lang/Object; java/lang/Object +staticfield java/lang/SecurityManager nonExportedPkgs Ljava/util/Map; java/util/concurrent/ConcurrentHashMap +ciInstanceKlass java/security/AccessController 1 1 295 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 100 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 7 1 7 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 9 100 12 1 1 1 10 7 12 1 1 1 10 12 1 10 12 1 9 100 12 1 1 1 10 12 1 10 12 1 1 9 12 1 1 10 100 1 10 11 7 12 1 1 1 10 7 12 1 1 11 7 1 100 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 1 8 1 10 100 12 1 1 1 8 1 7 1 10 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 8 1 10 7 12 1 1 8 1 8 1 10 12 1 8 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 3 1 1 1 +staticfield java/security/AccessController $assertionsDisabled Z 1 +instanceKlass org/eclipse/osgi/internal/loader/ModuleClassLoader$GenerationProtectionDomain +ciInstanceKlass java/security/ProtectionDomain 1 1 348 10 7 12 1 1 1 9 7 12 1 1 1 7 1 10 9 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 7 1 9 12 1 9 12 1 1 7 1 9 12 1 1 9 12 1 10 100 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 9 12 1 9 100 12 1 1 10 12 1 1 10 100 1 10 12 1 1 8 1 7 1 8 1 10 12 1 10 11 10 7 12 1 1 1 10 12 1 1 8 1 11 8 1 10 12 1 8 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 8 1 10 12 1 8 1 8 1 10 7 12 1 1 1 9 100 12 1 1 1 10 12 1 1 9 100 12 1 1 1 10 7 12 1 1 1 100 1 18 12 1 1 10 7 12 1 1 1 10 7 1 10 12 1 10 12 1 1 11 100 12 1 1 11 12 1 100 1 11 7 12 1 1 1 10 12 1 10 11 12 1 1 11 12 1 1 10 12 1 10 7 12 1 1 10 100 12 1 1 11 12 1 10 12 10 12 1 8 1 8 1 10 7 12 1 1 1 7 1 10 10 7 12 1 1 1 1 1 1 1 1 1 1 7 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 100 1 1 16 15 10 12 16 15 10 100 12 1 1 1 1 1 1 1 100 1 100 1 1 +staticfield java/security/ProtectionDomain filePermCompatInPD Z 0 +ciInstanceKlass java/security/CodeSource 1 1 398 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 10 7 12 1 1 10 7 10 7 12 1 1 1 10 100 12 1 1 1 10 12 1 1 7 1 10 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 7 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 10 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 8 1 10 12 1 1 10 7 1 10 10 12 1 1 8 1 10 12 1 10 12 1 10 12 1 8 1 8 1 9 12 1 1 100 1 8 1 10 12 1 10 12 1 1 8 1 10 12 1 8 1 8 1 8 1 10 100 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 100 1 100 1 10 12 1 10 12 10 12 1 1 10 100 12 1 1 10 12 1 7 1 10 12 10 100 12 1 1 1 10 8 1 10 12 1 10 12 1 10 12 1 1 100 1 10 12 1 1 100 1 7 1 8 1 8 1 10 10 12 1 1 10 100 12 1 1 1 7 1 10 12 10 12 1 1 11 7 12 1 1 10 10 12 1 11 10 12 1 8 1 100 1 10 12 1 10 12 1 1 10 12 1 11 12 1 1 7 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/Boolean 1 1 152 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 8 1 10 7 12 1 1 9 12 1 1 9 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 100 1 100 1 10 12 1 1 9 100 12 1 1 9 12 10 100 12 1 1 1 10 12 1 1 8 1 10 7 12 1 1 1 9 12 1 1 7 1 7 1 7 1 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 +staticfield java/lang/Boolean TRUE Ljava/lang/Boolean; java/lang/Boolean +staticfield java/lang/Boolean FALSE Ljava/lang/Boolean; java/lang/Boolean +staticfield java/lang/Boolean TYPE Ljava/lang/Class; java/lang/Class +ciInstanceKlass java/lang/Comparable 1 0 12 100 1 100 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/constant/Constable 1 0 11 100 1 100 1 1 1 1 1 1 1 +ciInstanceKlass java/util/Map 1 1 263 11 7 12 1 1 1 11 12 1 1 10 7 12 1 1 11 12 1 1 11 7 12 1 1 1 11 100 12 1 1 1 11 12 1 1 7 1 11 12 1 11 12 1 100 1 100 1 10 12 1 1 11 100 12 1 1 1 11 100 12 1 1 1 11 12 1 11 12 1 10 12 1 1 11 12 1 11 7 12 1 9 7 12 1 1 1 7 1 10 12 7 1 7 1 10 12 1 7 1 10 7 1 11 12 1 11 12 1 1 11 12 1 1 7 1 11 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/Class 1 1 1698 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 10 12 1 1 8 1 10 12 1 8 1 8 1 10 12 1 1 10 7 12 1 1 1 10 12 1 7 1 10 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 8 1 10 12 1 8 1 8 1 10 12 1 1 10 7 12 1 1 1 18 12 1 1 11 7 12 1 1 1 8 1 8 1 8 1 10 7 12 1 1 1 11 12 1 1 8 1 10 12 1 10 11 100 12 1 1 1 11 7 12 1 1 1 11 8 1 18 8 1 10 12 1 10 7 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 9 100 12 1 1 1 10 7 12 1 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 18 12 1 1 10 7 12 1 1 1 10 7 12 1 10 12 1 1 10 7 1 7 1 10 12 1 1 9 12 1 1 7 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 7 1 10 12 1 7 1 7 1 10 10 12 1 1 10 12 1 1 100 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 10 12 1 1 9 12 1 1 9 12 1 1 10 12 1 1 10 100 1 10 12 1 10 12 1 10 12 1 1 10 9 12 1 10 12 1 8 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 9 7 12 1 1 1 10 7 12 1 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 9 100 12 1 1 1 9 12 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 100 12 1 1 10 12 1 10 12 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 7 1 10 10 10 12 1 1 10 12 1 1 10 12 10 10 12 1 1 7 1 8 1 10 10 12 1 1 10 12 1 100 1 11 12 1 10 100 12 1 1 10 12 1 10 12 1 10 100 12 1 1 10 10 12 1 1 8 1 10 12 1 10 12 1 1 8 1 10 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 12 7 1 9 12 1 10 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 10 12 1 10 12 1 10 7 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 100 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 10 12 11 7 12 1 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 10 12 1 1 7 1 10 10 12 1 1 10 7 12 1 1 1 100 1 7 1 10 12 1 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 10 100 12 1 1 1 11 7 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 1 10 12 1 9 12 1 1 100 1 10 9 12 1 1 10 12 7 1 10 12 1 9 12 1 10 100 12 1 1 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 10 12 10 12 1 1 100 1 10 8 1 10 12 1 11 11 12 1 1 11 7 12 1 1 11 12 1 8 1 10 12 1 10 12 1 1 9 12 1 9 12 1 1 10 7 12 1 1 9 12 1 10 12 1 1 10 10 12 1 10 7 12 1 1 1 10 100 12 1 1 10 100 12 1 1 9 12 1 1 10 12 1 9 12 1 10 12 1 10 12 1 1 9 12 1 1 9 12 1 10 12 1 10 12 1 1 9 12 1 100 1 10 10 12 1 1 7 1 10 12 1 1 100 11 7 1 9 12 1 1 9 12 1 7 1 10 12 1 9 12 1 1 9 12 1 10 12 1 10 12 1 1 9 12 1 7 1 10 10 12 1 1 10 10 12 1 10 12 10 10 12 1 9 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 8 10 7 8 1 18 8 1 8 1 10 12 1 9 12 1 9 12 1 1 10 12 1 7 1 7 1 10 12 1 9 12 1 1 7 1 10 10 12 1 10 7 1 9 12 1 8 1 10 12 1 7 1 10 12 1 10 12 1 1 100 1 7 1 9 12 1 100 1 8 1 10 10 7 12 1 1 1 10 12 11 7 12 1 1 1 10 12 1 10 12 1 1 10 8 1 8 1 10 12 1 1 9 7 12 1 1 11 12 7 1 11 7 12 1 1 9 12 1 10 100 12 1 1 1 10 7 12 1 1 10 12 1 1 9 12 1 9 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 11 12 1 100 1 11 12 1 10 100 12 1 1 1 10 12 1 11 12 1 10 100 12 1 1 1 10 12 1 10 100 12 1 1 1 11 12 1 11 12 1 1 10 12 1 10 12 1 1 9 12 1 1 9 100 12 1 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 8 1 10 12 1 10 12 1 10 12 1 100 1 10 12 10 100 12 1 1 1 11 100 12 1 1 1 10 12 1 1 10 12 1 18 12 1 1 11 12 1 1 18 11 12 1 18 12 1 11 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 8 1 10 12 1 7 1 9 12 1 1 7 1 7 1 7 1 7 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 100 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 16 15 11 12 16 1 16 15 16 15 10 12 16 16 15 10 12 16 15 16 1 15 10 12 16 15 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 100 1 100 1 1 100 1 100 1 1 100 1 100 1 1 +staticfield java/lang/Class EMPTY_CLASS_ARRAY [Ljava/lang/Class; 0 [Ljava/lang/Class; +staticfield java/lang/Class serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField; +ciInstanceKlass java/lang/reflect/AnnotatedElement 1 1 164 11 7 12 1 1 1 11 12 1 1 7 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 100 12 1 1 1 11 12 1 1 11 7 12 1 1 10 7 12 1 1 1 10 12 1 10 100 12 1 1 1 18 12 1 1 11 100 12 1 1 18 12 1 18 12 1 1 10 100 12 1 1 1 11 100 12 1 1 1 7 1 10 100 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 16 15 16 1 16 1 15 11 12 16 16 1 15 10 100 12 1 1 1 16 1 15 10 100 12 1 1 1 1 100 1 100 1 1 +ciInstanceKlass java/lang/invoke/TypeDescriptor 1 0 17 100 1 100 1 1 1 1 1 1 100 1 100 1 1 1 1 +ciInstanceKlass java/lang/reflect/GenericDeclaration 1 0 30 7 1 7 1 7 1 1 1 1 1 1 1 1 100 1 8 1 1 12 10 1 1 1 8 1 1 1 8 1 +ciInstanceKlass java/lang/reflect/Type 1 1 17 11 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/invoke/TypeDescriptor$OfField 1 0 21 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/StringBuilder 1 1 422 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 10 12 1 1 10 12 1 10 12 1 10 12 1 10 100 12 1 1 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 1 10 100 12 1 1 1 10 100 1 10 12 1 1 10 100 12 1 1 10 12 1 10 12 1 1 100 1 100 1 8 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 10 12 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 10 12 1 10 12 1 7 1 7 1 7 1 7 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/lang/StringBuilder +instanceKlass java/lang/StringBuffer +ciInstanceKlass java/lang/AbstractStringBuilder 1 1 605 7 1 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 7 1 3 3 10 12 1 10 12 1 1 11 7 1 100 1 7 1 10 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 9 12 1 1 10 12 1 1 10 7 12 1 1 1 10 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 7 1 8 1 10 10 12 1 1 100 1 10 12 10 12 1 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 10 7 12 1 1 1 10 12 1 100 1 10 10 7 12 1 1 1 9 12 1 1 9 12 1 10 12 1 1 10 10 12 1 1 10 12 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 10 12 1 10 12 1 10 100 12 1 1 1 100 1 100 1 10 12 1 10 100 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 10 12 1 1 18 12 1 1 100 1 10 100 12 1 1 1 18 10 12 1 1 10 12 1 10 12 1 1 11 12 1 1 10 12 1 10 12 10 12 1 10 10 10 12 1 10 5 0 10 10 12 1 1 100 1 8 1 10 10 12 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 100 1 10 12 100 1 10 100 1 10 7 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 7 1 1 16 1 15 10 12 16 15 10 12 15 10 100 12 1 1 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/AbstractStringBuilder EMPTYVALUE [B 0 +ciMethod java/lang/StringBuilder toString ()Ljava/lang/String; 10 0 17173 0 -1 +ciInstanceKlass java/lang/Appendable 1 0 14 100 1 100 1 1 1 1 100 1 1 1 1 1 +ciInstanceKlass java/lang/CharSequence 1 1 131 11 7 12 1 1 1 18 12 1 1 100 1 10 100 12 1 1 1 18 10 100 12 1 1 1 11 12 1 1 11 7 1 11 12 1 1 10 100 12 1 1 1 11 12 1 1 100 1 10 12 1 1 10 100 12 1 1 1 100 1 10 10 12 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 1 15 11 12 16 15 11 12 15 10 100 12 1 1 1 1 1 100 1 100 1 1 100 1 1 100 1 100 1 1 +ciInstanceKlass java/lang/AutoCloseable 1 0 12 100 1 100 1 1 1 1 100 1 1 1 +ciInstanceKlass java/io/Closeable 1 0 14 100 1 100 1 100 1 1 1 1 100 1 1 1 +instanceKlass org/eclipse/jface/text/BadLocationException +instanceKlass org/eclipse/jdt/internal/compiler/lookup/ReferenceBinding$InvalidBindingException +instanceKlass org/eclipse/jdt/core/compiler/InvalidInputException +instanceKlass org/eclipse/jdt/internal/compiler/classfmt/ClassFormatException +instanceKlass java/util/concurrent/ExecutionException +instanceKlass java/util/concurrent/TimeoutException +instanceKlass org/osgi/service/application/ApplicationException +instanceKlass java/lang/CloneNotSupportedException +instanceKlass org/eclipse/core/runtime/CoreException +instanceKlass org/osgi/service/prefs/BackingStoreException +instanceKlass org/apache/felix/scr/impl/inject/methods/SuitableMethodNotAccessibleException +instanceKlass org/xml/sax/SAXException +instanceKlass javax/xml/parsers/ParserConfigurationException +instanceKlass org/osgi/service/resolver/ResolutionException +instanceKlass java/security/GeneralSecurityException +instanceKlass org/eclipse/osgi/container/ModuleContainer$ResolutionLockException +instanceKlass java/security/PrivilegedActionException +instanceKlass org/osgi/framework/InvalidSyntaxException +instanceKlass java/lang/InterruptedException +instanceKlass org/osgi/framework/BundleException +instanceKlass java/net/URISyntaxException +instanceKlass java/lang/instrument/UnmodifiableClassException +instanceKlass java/io/IOException +instanceKlass java/lang/ReflectiveOperationException +instanceKlass java/lang/RuntimeException +ciInstanceKlass java/lang/Exception 1 1 40 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/lang/Exception +instanceKlass java/lang/Error +ciInstanceKlass java/lang/Throwable 1 1 404 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 100 1 7 1 10 8 1 10 12 1 1 8 1 10 100 12 1 1 10 10 12 1 100 1 8 1 10 10 12 1 1 10 7 12 1 1 10 12 1 8 1 9 7 12 1 1 1 10 12 1 1 100 1 10 12 10 12 1 10 100 12 1 1 1 100 1 10 12 10 12 1 10 12 1 100 1 10 10 7 12 1 1 1 11 100 12 1 1 1 10 12 1 1 10 12 1 1 8 1 10 12 1 10 12 1 1 8 1 8 1 10 12 1 1 10 12 1 8 1 8 1 9 12 1 1 10 12 1 1 100 1 10 11 12 1 8 1 8 1 10 7 12 1 1 8 1 10 12 1 8 1 100 1 10 12 1 9 12 1 1 10 12 1 10 100 12 1 9 12 1 1 10 12 1 1 100 1 8 1 10 12 1 10 100 12 1 1 10 12 1 1 7 1 10 100 12 1 1 1 10 12 1 11 7 12 1 1 1 11 7 12 1 1 11 12 1 8 1 10 12 1 1 8 1 10 10 9 100 12 1 1 1 8 1 10 12 1 1 11 10 100 1 8 1 10 11 12 1 1 8 1 9 12 1 10 100 12 1 1 11 9 12 1 1 11 12 1 1 100 10 12 1 10 12 1 1 7 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/Throwable UNASSIGNED_STACK [Ljava/lang/StackTraceElement; 0 [Ljava/lang/StackTraceElement; +staticfield java/lang/Throwable SUPPRESSED_SENTINEL Ljava/util/List; java/util/Collections$EmptyList +staticfield java/lang/Throwable EMPTY_THROWABLE_ARRAY [Ljava/lang/Throwable; 0 [Ljava/lang/Throwable; +staticfield java/lang/Throwable $assertionsDisabled Z 1 +instanceKlass org/eclipse/core/internal/resources/SaveManager$MasterTable +instanceKlass org/eclipse/osgi/util/NLS$MessagesProperties +instanceKlass org/eclipse/core/internal/preferences/SortedProperties +instanceKlass java/security/Provider +ciInstanceKlass java/util/Properties 1 1 690 10 7 12 1 1 1 100 1 10 7 12 1 1 7 1 10 12 1 9 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 8 1 10 7 12 1 1 1 7 1 10 12 1 10 12 1 1 8 1 10 12 1 7 1 10 12 10 12 1 1 9 12 1 1 10 12 1 1 7 1 10 12 1 10 12 1 10 12 1 1 100 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 7 1 3 10 10 100 12 1 1 1 10 12 1 10 12 1 1 8 1 10 12 1 10 12 1 1 8 1 10 100 12 1 1 10 12 1 1 10 12 1 10 12 1 1 100 1 10 12 1 10 12 1 1 100 1 9 100 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 100 1 9 12 1 1 7 1 7 1 10 12 1 7 1 11 7 12 1 1 1 11 12 1 1 11 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 11 12 1 11 12 1 10 12 1 1 8 1 10 12 1 10 100 12 1 1 10 12 1 100 1 10 10 12 1 10 12 1 100 1 10 10 12 1 1 10 7 12 1 1 9 100 12 1 1 10 12 1 1 10 100 12 1 1 1 100 1 100 1 100 1 10 8 1 8 1 10 12 1 10 12 1 10 12 1 1 10 10 12 1 1 10 12 1 1 7 1 10 10 12 1 11 7 12 1 1 10 7 12 1 1 1 8 1 10 100 12 1 1 11 11 7 1 8 1 10 100 1 11 10 12 1 10 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 10 12 1 10 12 1 10 12 1 10 10 12 1 1 10 12 1 1 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 10 11 12 1 4 11 10 12 1 1 10 100 12 1 1 11 12 1 10 12 1 1 10 100 12 1 1 10 12 1 100 1 8 1 10 12 1 10 10 100 12 1 1 1 100 1 6 0 10 12 1 1 11 100 12 1 1 1 10 12 1 10 12 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 100 1 1 +staticfield java/util/Properties UNSAFE Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +instanceKlass org/apache/felix/scr/impl/helper/ReadOnlyDictionary +instanceKlass org/osgi/framework/FrameworkUtil$MapAsDictionary +instanceKlass org/eclipse/osgi/framework/util/CaseInsensitiveDictionaryMap$UnmodifiableDictionary +instanceKlass org/eclipse/osgi/framework/util/CaseInsensitiveDictionaryMap +instanceKlass org/eclipse/osgi/internal/framework/EquinoxBundle$SystemBundle$SystemBundleHeaders +instanceKlass org/eclipse/osgi/storage/BundleInfo$CachedManifest +instanceKlass java/util/Hashtable +ciInstanceKlass java/util/Dictionary 1 1 36 10 7 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/util/Properties +ciInstanceKlass java/util/Hashtable 1 1 516 7 1 10 7 12 1 1 1 9 7 12 1 1 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 1 8 1 10 12 1 9 12 1 1 7 1 9 12 1 1 4 10 7 12 1 1 1 9 12 1 4 10 12 1 11 7 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 10 12 1 1 100 1 10 9 12 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 10 12 1 3 9 12 1 9 12 1 3 10 12 1 10 12 1 10 12 1 1 11 12 1 1 11 100 12 1 1 1 11 7 12 1 1 1 11 12 1 100 1 11 12 1 11 12 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 1 9 12 9 12 1 1 10 100 1 7 1 10 12 1 10 8 1 10 10 12 1 8 1 10 8 1 10 7 12 1 1 1 7 1 10 12 1 10 12 1 100 1 10 12 1 10 12 1 1 100 1 10 100 1 10 10 12 1 1 11 12 1 1 11 12 1 7 1 10 10 10 100 12 1 1 11 100 12 1 1 1 100 1 10 11 100 12 1 1 11 100 12 1 10 12 1 10 12 1 1 10 100 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 8 10 100 12 1 1 100 1 8 1 10 4 4 10 12 1 1 10 12 1 8 1 4 10 12 10 100 12 1 1 1 100 1 11 100 12 1 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 10 7 1 7 1 1 1 1 1 1 5 0 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 7 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/String 1 1 1443 10 7 12 1 1 1 8 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 10 7 12 1 1 1 10 7 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 1 7 1 9 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 9 7 12 1 1 10 12 9 7 12 1 1 10 12 1 1 3 10 12 1 1 100 1 11 12 1 1 11 12 1 11 12 1 1 10 100 12 1 1 1 10 12 1 1 9 100 12 1 1 1 10 12 1 1 10 12 1 11 12 1 1 10 12 1 1 10 12 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 100 1 7 1 10 12 1 10 12 1 10 12 1 1 100 1 10 12 1 1 100 1 10 12 1 1 10 12 1 1 10 12 1 10 10 12 1 100 1 100 1 100 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 100 12 1 1 100 1 11 10 7 12 1 1 11 12 1 11 12 1 10 12 1 1 10 12 1 10 12 10 12 1 1 10 10 100 12 1 1 1 10 100 12 1 1 10 12 1 1 10 100 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 100 1 10 12 1 1 10 12 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 3 3 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 7 1 10 8 1 10 12 1 1 10 12 1 8 1 10 12 1 1 10 12 10 12 1 8 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 7 1 10 10 12 1 10 12 1 10 12 1 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 10 12 1 100 1 10 10 12 1 1 10 12 1 1 10 7 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 11 7 1 11 12 10 12 1 10 12 1 1 10 12 1 1 10 10 12 1 10 12 1 9 12 1 1 11 7 12 1 1 1 10 12 10 10 12 1 10 12 1 1 10 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 12 1 10 10 12 1 10 12 10 10 12 10 10 12 1 10 12 1 10 10 12 10 7 12 1 1 1 10 12 10 10 12 10 12 1 10 12 10 12 10 10 12 1 10 12 1 1 10 12 1 1 10 10 12 1 10 7 12 1 1 1 10 12 1 1 10 10 7 12 1 1 1 11 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 7 1 8 1 10 10 10 12 1 10 12 1 1 8 1 10 12 1 3 3 10 12 1 10 12 1 1 10 12 7 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 7 1 10 12 1 10 12 1 1 8 1 10 12 1 1 10 12 1 11 7 12 1 1 1 11 7 12 1 1 11 12 1 10 12 1 10 12 1 1 10 10 7 12 1 1 1 10 12 1 10 12 1 10 10 12 10 12 1 1 10 10 12 1 10 10 12 1 10 10 12 1 10 10 12 1 10 12 1 1 10 10 12 1 8 1 10 12 1 1 18 12 1 1 11 100 12 1 1 1 7 1 3 18 12 1 18 12 1 8 1 10 100 12 1 1 1 11 12 1 1 10 12 10 10 12 1 10 11 12 1 1 10 12 1 1 11 12 1 18 3 11 10 12 1 11 11 10 12 1 10 12 1 1 8 1 10 12 1 10 12 1 10 12 1 1 10 10 12 1 11 100 12 1 100 1 100 1 10 12 100 1 10 10 100 12 1 1 1 100 1 10 7 1 10 10 12 1 10 10 12 1 8 1 10 10 12 1 8 1 8 1 10 12 1 10 12 1 10 10 12 10 7 12 1 1 10 7 12 1 1 10 7 12 1 1 8 1 10 12 1 10 12 1 10 9 12 1 10 12 9 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 8 1 10 100 12 1 1 1 10 12 10 12 1 1 10 12 10 10 12 10 12 7 1 9 12 1 1 7 1 10 7 1 7 1 7 1 7 1 1 1 1 1 1 5 0 1 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 16 15 10 12 15 10 12 15 10 12 15 10 100 12 1 1 1 1 1 1 1 100 1 100 1 1 1 +staticfield java/lang/String COMPACT_STRINGS Z 1 +staticfield java/lang/String serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField; +staticfield java/lang/String CASE_INSENSITIVE_ORDER Ljava/util/Comparator; java/lang/String$CaseInsensitiveComparator +ciMethod java/lang/String equals (Ljava/lang/Object;)Z 1010 0 8080 0 440 +ciMethod java/lang/String hashCode ()I 1024 0 6780 0 184 +ciMethod java/lang/String length ()I 622 0 158648 0 112 +ciMethod java/lang/String charAt (I)C 792 0 354842 0 192 +ciInstanceKlass java/lang/constant/ConstantDesc 1 0 37 100 1 100 1 1 1 1 100 1 1 1 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 1 100 1 100 1 1 +ciInstanceKlass java/lang/InternalError 1 1 34 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/lang/ThreadDeath +instanceKlass java/lang/AssertionError +instanceKlass java/lang/VirtualMachineError +instanceKlass java/lang/LinkageError +ciInstanceKlass java/lang/Error 1 1 40 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/lang/StackOverflowError +instanceKlass java/lang/OutOfMemoryError +instanceKlass java/lang/InternalError +ciInstanceKlass java/lang/VirtualMachineError 1 1 34 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/util/Iterator 1 1 53 100 1 8 1 10 12 1 1 10 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 11 7 12 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass org/eclipse/core/internal/resources/ContentDescriptionManager$LazyFileInputStream +instanceKlass java/io/ObjectInputStream +instanceKlass org/eclipse/core/internal/localstore/SafeChunkyInputStream +instanceKlass org/eclipse/core/internal/registry/BufferedRandomInputStream +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLEntityManager$RewindableInputStream +instanceKlass org/eclipse/osgi/storage/url/reference/ReferenceInputStream +instanceKlass java/util/jar/JarVerifier$VerifierStream +instanceKlass java/util/zip/ZipFile$ZipFileInputStream +instanceKlass java/io/FilterInputStream +instanceKlass java/io/FileInputStream +instanceKlass java/io/ByteArrayInputStream +ciInstanceKlass java/io/InputStream 1 1 195 7 1 10 7 12 1 1 1 100 1 10 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 100 1 3 10 12 1 1 100 1 8 1 10 12 1 10 7 12 1 1 1 3 7 1 8 1 10 10 7 12 1 1 1 7 1 10 11 7 12 1 1 1 10 12 1 1 11 12 1 1 11 7 12 1 1 1 11 12 1 1 7 1 10 7 12 1 1 1 5 0 10 12 1 10 12 1 1 100 1 10 8 1 10 8 1 8 1 10 12 1 1 10 100 12 1 1 1 7 1 5 0 10 12 1 100 1 7 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/misc/Unsafe 1 1 1287 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 100 1 10 10 12 1 1 10 12 1 1 5 0 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 7 1 7 1 10 8 1 10 12 1 1 10 12 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 5 0 5 0 5 0 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 7 1 8 1 10 100 1 10 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 9 7 12 1 1 9 12 1 100 1 10 10 12 1 1 8 1 10 8 1 8 1 10 12 1 1 9 7 12 1 1 1 9 7 1 9 7 1 9 7 1 9 9 7 1 9 7 1 9 7 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 5 0 5 0 9 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 8 1 3 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 10 100 1 10 9 12 1 5 0 10 12 1 1 5 0 10 12 1 5 0 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 5 0 5 0 5 0 10 12 1 1 10 12 1 10 12 1 10 12 10 100 12 1 1 8 1 100 1 11 12 1 1 8 1 11 12 1 1 10 100 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 7 1 10 12 1 9 12 1 7 1 9 12 1 7 1 9 12 1 7 1 9 12 1 7 1 9 12 1 7 1 9 12 1 7 1 9 12 1 7 1 9 12 1 7 1 9 12 1 10 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield jdk/internal/misc/Unsafe theUnsafe Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +staticfield jdk/internal/misc/Unsafe ARRAY_BOOLEAN_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_BYTE_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_SHORT_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_CHAR_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_INT_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_LONG_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_FLOAT_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_DOUBLE_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_OBJECT_BASE_OFFSET I 16 +staticfield jdk/internal/misc/Unsafe ARRAY_BOOLEAN_INDEX_SCALE I 1 +staticfield jdk/internal/misc/Unsafe ARRAY_BYTE_INDEX_SCALE I 1 +staticfield jdk/internal/misc/Unsafe ARRAY_SHORT_INDEX_SCALE I 2 +staticfield jdk/internal/misc/Unsafe ARRAY_CHAR_INDEX_SCALE I 2 +staticfield jdk/internal/misc/Unsafe ARRAY_INT_INDEX_SCALE I 4 +staticfield jdk/internal/misc/Unsafe ARRAY_LONG_INDEX_SCALE I 8 +staticfield jdk/internal/misc/Unsafe ARRAY_FLOAT_INDEX_SCALE I 4 +staticfield jdk/internal/misc/Unsafe ARRAY_DOUBLE_INDEX_SCALE I 8 +staticfield jdk/internal/misc/Unsafe ARRAY_OBJECT_INDEX_SCALE I 4 +staticfield jdk/internal/misc/Unsafe ADDRESS_SIZE I 8 +instanceKlass lombok/launch/ShadowClassLoader +instanceKlass org/eclipse/osgi/internal/loader/ModuleClassLoader +instanceKlass org/eclipse/osgi/internal/framework/ContextFinder +instanceKlass org/eclipse/osgi/internal/framework/EquinoxContainer$1 +instanceKlass lombok/launch/ShadowClassLoader +instanceKlass jdk/internal/reflect/DelegatingClassLoader +instanceKlass java/security/SecureClassLoader +ciInstanceKlass java/lang/ClassLoader 1 1 1108 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 7 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 1 100 1 10 12 1 10 12 1 1 10 7 12 1 1 1 100 1 8 1 10 12 1 10 7 12 1 1 1 10 7 12 1 10 7 1 10 7 1 7 1 7 1 10 12 1 10 12 1 9 12 1 1 10 10 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 1 7 1 10 12 1 9 12 1 1 10 12 1 1 10 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 10 12 1 1 9 12 10 12 1 1 7 1 10 8 1 10 12 1 1 10 12 1 10 7 1 7 1 10 12 1 1 10 7 12 1 1 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 7 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 10 12 1 10 12 1 10 100 12 1 1 10 12 1 1 10 12 1 1 10 12 1 100 1 10 12 1 7 1 10 12 1 10 7 12 1 1 1 10 10 12 1 1 10 12 1 1 7 1 8 1 10 8 1 10 12 1 10 12 1 100 1 8 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 7 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 8 1 9 12 1 10 12 1 1 8 1 8 1 10 7 12 1 1 100 1 10 10 12 10 12 1 10 12 1 10 12 1 10 12 1 1 10 7 12 1 1 10 12 1 10 7 1 7 1 10 12 1 1 10 12 1 10 7 1 10 12 1 100 1 18 12 1 10 100 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 10 12 1 10 12 1 100 1 10 12 1 8 1 10 10 12 1 1 10 12 1 10 12 1 1 7 1 10 12 1 10 12 1 1 10 7 12 1 1 10 12 1 8 1 100 1 10 10 12 1 9 12 1 10 7 12 1 1 10 12 1 7 1 8 1 10 12 1 10 8 1 8 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 7 1 100 1 10 12 1 1 7 1 7 1 10 7 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 9 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 8 1 7 1 18 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 10 12 1 18 12 1 11 100 12 1 1 1 100 1 10 12 1 1 10 12 1 10 11 12 1 1 10 18 10 12 1 1 11 7 12 1 18 12 1 11 12 1 1 10 12 10 12 1 1 10 12 1 1 100 1 8 1 10 10 12 1 8 1 8 1 10 100 12 1 1 10 12 1 100 1 10 10 12 1 8 1 8 1 8 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 1 11 7 12 1 1 100 1 10 11 10 12 1 10 12 1 10 12 1 1 9 7 12 1 1 9 12 1 1 9 12 9 12 1 9 12 1 9 12 1 8 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 10 12 1 11 12 1 1 10 100 12 1 1 1 100 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 1 15 10 12 16 1 16 15 10 12 16 1 16 1 15 10 12 16 15 10 12 16 15 10 12 16 15 10 100 12 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/ClassLoader nocerts [Ljava/security/cert/Certificate; 0 [Ljava/security/cert/Certificate; +staticfield java/lang/ClassLoader $assertionsDisabled Z 1 +ciInstanceKlass java/lang/reflect/Constructor 1 1 439 10 100 12 1 1 1 10 100 12 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 1 10 100 12 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 1 9 12 1 100 1 8 1 10 12 1 10 12 1 9 12 1 1 10 7 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 7 1 100 1 8 1 10 10 12 1 10 12 1 10 12 1 1 10 12 1 1 9 100 12 1 1 1 10 7 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 100 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 8 1 10 10 12 1 100 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 8 1 9 12 1 1 10 7 12 1 1 1 10 7 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 9 7 12 1 1 10 12 1 10 12 1 10 12 1 100 1 8 1 10 10 12 1 1 10 12 1 10 10 12 1 1 10 12 1 1 10 100 12 1 1 1 11 100 12 1 1 1 10 12 1 1 9 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 +instanceKlass java/lang/reflect/Executable +instanceKlass java/lang/reflect/Field +ciInstanceKlass java/lang/reflect/AccessibleObject 1 1 400 10 7 12 1 1 1 9 100 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 10 7 12 1 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 1 7 1 10 7 12 1 1 1 11 12 1 7 1 10 12 1 7 1 100 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 7 12 1 1 1 10 12 1 1 11 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 8 1 7 1 7 1 10 10 12 1 1 8 1 10 12 1 10 12 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 100 1 10 12 1 10 12 1 9 12 1 1 10 12 1 1 10 12 1 10 7 1 100 1 8 1 10 8 1 10 12 1 8 1 10 12 1 10 12 1 1 10 100 1 8 1 10 11 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 1 100 1 10 12 1 7 1 10 12 1 10 12 1 1 10 100 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 1 10 12 1 9 12 1 10 100 12 1 1 8 1 10 100 12 1 1 1 8 1 10 7 12 1 1 1 9 12 1 7 1 10 7 1 10 10 7 12 1 1 1 7 1 10 10 7 12 1 1 1 7 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/reflect/AccessibleObject reflectionFactory Ljdk/internal/reflect/ReflectionFactory; jdk/internal/reflect/ReflectionFactory +instanceKlass java/lang/reflect/Constructor +instanceKlass java/lang/reflect/Method +ciInstanceKlass java/lang/reflect/Executable 1 1 581 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 11 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 8 1 10 10 12 1 1 10 12 1 1 10 100 12 1 1 1 18 12 1 1 11 100 12 1 1 1 8 1 8 1 8 1 10 100 12 1 1 1 11 12 1 1 7 1 8 1 8 1 10 12 1 7 1 8 1 10 12 1 8 1 11 100 12 1 1 1 7 1 11 7 12 1 1 1 11 12 1 8 1 18 8 1 10 12 1 10 12 1 1 18 8 1 10 12 1 100 1 10 12 1 10 12 1 11 12 1 10 12 1 1 8 1 8 1 10 12 1 1 10 12 1 1 10 10 12 1 9 100 12 1 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 10 100 12 1 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 7 1 10 100 12 1 1 1 10 12 1 1 10 7 12 1 1 10 12 1 10 12 1 1 9 100 12 1 1 1 10 100 10 12 1 8 1 10 12 1 10 12 1 3 100 1 8 1 10 12 1 10 12 1 10 10 12 1 10 12 1 1 8 1 8 1 8 1 9 12 1 1 9 12 1 10 12 1 100 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 10 12 1 100 1 10 12 1 10 12 1 1 100 1 10 7 12 1 1 1 7 1 10 7 12 1 1 1 10 12 1 1 11 7 12 1 1 10 12 1 10 100 12 1 1 1 10 12 1 1 9 12 1 10 12 1 1 10 12 1 10 12 1 1 9 100 12 1 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 9 12 1 10 10 10 10 100 12 1 1 1 10 12 1 9 12 1 10 12 1 1 9 12 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 16 15 16 1 16 1 15 10 12 16 15 10 100 12 1 1 1 1 1 1 100 1 1 100 1 100 1 1 +ciInstanceKlass java/lang/reflect/Member 1 1 37 100 1 10 12 1 1 100 1 100 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass com/sun/jna/internal/Cleaner$CleanerThread +instanceKlass java/util/logging/LogManager$Cleaner +instanceKlass org/eclipse/core/internal/jobs/InternalWorker +instanceKlass org/eclipse/core/internal/jobs/Worker +instanceKlass java/util/TimerThread +instanceKlass org/eclipse/osgi/framework/eventmgr/EventManager$EventThread +instanceKlass org/eclipse/equinox/launcher/Main$SplashHandler +instanceKlass java/util/concurrent/ForkJoinWorkerThread +instanceKlass jdk/internal/misc/InnocuousThread +instanceKlass java/lang/ref/Finalizer$FinalizerThread +instanceKlass java/lang/ref/Reference$ReferenceHandler +instanceKlass java/lang/BaseVirtualThread +ciInstanceKlass java/lang/Thread 1 1 870 10 7 12 1 1 1 9 12 1 1 10 7 12 1 1 10 12 1 10 100 12 1 1 100 1 8 1 10 12 1 1 9 12 1 9 12 1 1 9 12 1 1 7 1 10 12 1 1 10 12 1 10 100 12 1 1 1 10 12 9 12 1 1 10 12 1 7 1 10 12 1 100 1 8 1 10 9 100 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 3 8 1 7 1 5 0 10 7 12 1 1 1 9 12 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 1 10 7 1 8 1 10 7 1 10 12 1 9 12 1 1 10 7 12 1 1 1 10 10 12 1 1 9 100 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 12 1 10 12 1 10 7 12 1 1 9 12 1 10 7 12 1 1 1 10 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 10 100 12 1 1 10 100 12 1 1 1 10 12 1 10 12 1 10 7 12 1 1 9 12 1 8 1 9 7 12 1 1 9 12 1 1 5 0 100 1 10 100 1 10 100 1 10 7 1 10 8 1 10 12 1 1 10 7 12 1 10 12 1 10 12 1 100 1 8 1 10 10 12 1 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 12 1 7 1 9 12 1 1 100 1 10 10 12 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 9 12 1 1 10 10 12 1 1 10 12 1 1 11 7 12 1 1 10 7 12 1 1 9 12 1 9 12 1 1 9 12 1 1 10 100 12 1 1 10 12 1 1 9 7 12 1 1 1 10 7 12 1 1 10 12 1 10 12 1 100 1 10 10 12 9 12 1 1 10 12 1 11 100 12 1 1 10 12 1 10 12 1 10 12 1 9 12 1 10 10 12 1 10 12 1 1 9 12 1 9 12 10 12 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 9 7 12 1 1 1 8 1 10 9 12 1 10 12 1 7 1 8 1 10 10 12 1 8 1 10 12 1 1 9 12 10 12 8 1 10 10 12 1 10 12 1 8 1 10 12 1 10 8 1 10 100 12 1 1 10 12 1 1 100 1 8 1 10 9 12 1 9 12 1 1 10 12 1 1 10 10 12 1 10 12 1 100 10 7 12 1 1 1 9 12 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 11 7 12 1 1 1 9 100 12 1 1 1 10 100 12 1 1 1 7 1 10 12 1 100 1 10 12 1 10 12 1 1 10 12 1 1 8 1 9 12 1 10 12 1 10 12 1 1 11 7 12 1 1 1 10 12 1 1 1 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 100 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/Thread NEW_THREAD_BINDINGS Ljava/lang/Object; java/lang/Class +staticfield java/lang/Thread EMPTY_STACK_TRACE [Ljava/lang/StackTraceElement; 0 [Ljava/lang/StackTraceElement; +ciInstanceKlass java/lang/Runnable 1 0 11 100 1 100 1 1 1 1 1 1 1 +ciInstanceKlass java/net/URL 1 1 771 10 7 12 1 1 1 10 12 1 10 7 12 1 1 9 12 1 1 9 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 1 10 7 12 1 1 1 8 1 10 12 1 1 7 1 10 10 12 1 1 8 1 10 12 1 1 9 12 1 7 1 8 1 10 12 1 10 12 1 8 1 9 12 1 10 12 1 1 9 12 1 10 12 1 10 12 1 9 12 1 9 12 1 8 1 9 12 1 10 12 1 1 8 1 9 12 1 1 10 12 1 1 10 7 12 1 1 1 8 1 10 12 1 7 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 10 12 1 8 1 9 12 1 8 1 10 12 1 10 7 12 1 1 1 7 1 10 12 1 10 12 1 1 10 7 12 1 1 1 100 1 8 1 10 10 12 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 8 1 10 10 100 1 10 10 12 1 8 1 10 7 12 1 1 1 10 12 1 9 100 12 1 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 10 100 12 1 1 1 100 1 100 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 10 12 1 10 12 1 10 12 1 1 8 1 9 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 9 100 12 1 1 1 10 12 1 1 100 1 10 12 1 10 12 1 10 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 9 12 1 1 9 12 1 1 7 1 8 1 10 10 12 1 9 12 1 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 12 1 1 10 12 1 8 1 8 1 10 7 12 1 1 1 7 1 10 7 12 1 1 1 10 12 1 10 12 1 7 1 10 9 7 12 1 1 1 10 7 12 1 1 10 12 1 1 10 12 1 8 1 7 1 10 10 7 12 1 1 1 10 12 1 8 9 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 11 7 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 1 10 100 12 1 1 10 100 12 1 1 1 8 10 100 12 1 1 100 1 10 8 8 10 12 1 8 8 8 100 1 10 12 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 10 12 1 1 10 12 1 1 10 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 10 12 1 100 1 8 1 10 10 10 12 1 1 10 12 1 10 12 1 1 8 1 7 1 10 10 7 1 10 12 1 9 7 12 1 1 1 9 12 1 1 7 1 10 10 7 12 1 1 1 7 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/net/URL defaultFactory Ljava/net/URLStreamHandlerFactory; java/net/URL$DefaultFactory +staticfield java/net/URL streamHandlerLock Ljava/lang/Object; java/lang/Object +staticfield java/net/URL serialPersistentFields [Ljava/io/ObjectStreamField; 7 [Ljava/io/ObjectStreamField; +ciMethod java/lang/System arraycopy (Ljava/lang/Object;ILjava/lang/Object;II)V 256 0 128 0 -1 +ciInstanceKlass java/lang/Module 1 1 1070 10 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 7 1 10 7 12 1 1 1 10 12 1 1 11 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 9 100 12 1 1 1 10 7 12 1 1 1 10 12 1 8 1 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 10 12 1 9 12 1 1 10 100 12 1 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 10 12 1 10 7 12 1 1 8 1 8 1 10 8 1 8 1 9 12 1 1 8 1 10 100 12 1 1 1 10 12 1 9 12 1 1 11 12 1 9 7 12 1 1 10 7 12 1 1 1 10 100 12 1 1 1 10 12 1 1 8 1 10 12 1 1 10 12 1 10 12 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 10 12 1 10 12 1 9 12 1 1 11 7 12 1 1 10 12 1 1 9 12 1 9 12 1 10 12 1 10 12 1 100 1 8 1 10 10 12 1 1 10 12 1 8 1 10 12 1 1 8 1 8 1 10 12 1 1 10 12 1 10 12 1 1 18 12 1 1 10 12 1 1 11 12 1 9 12 1 11 12 10 100 12 1 1 100 1 8 1 10 11 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 1 11 12 1 1 11 7 12 1 1 11 12 1 1 9 12 1 11 12 1 10 12 1 1 10 12 1 1 9 12 1 10 12 10 7 12 1 1 10 7 1 18 12 1 1 11 100 12 1 1 1 18 12 1 11 12 1 1 10 100 12 1 1 1 11 12 1 1 10 7 12 1 1 7 1 11 12 1 7 1 7 1 10 12 1 10 7 12 1 1 1 10 11 7 12 1 8 1 10 10 12 1 1 10 7 12 1 1 10 12 1 10 12 1 7 1 10 12 1 10 11 12 1 1 10 12 10 12 1 1 9 12 1 1 100 1 10 10 12 1 1 11 7 1 10 12 1 1 11 12 1 10 10 12 1 11 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 12 1 10 12 1 1 10 10 12 1 1 10 12 1 18 12 1 11 12 1 18 12 1 10 12 1 10 12 1 10 12 7 1 10 12 1 10 12 1 10 12 1 9 12 1 7 1 10 10 10 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 18 12 1 1 10 7 12 1 1 1 100 1 8 1 10 12 1 1 10 12 1 1 10 7 12 1 1 7 1 10 12 1 1 7 1 8 1 10 12 1 1 100 1 11 12 1 1 10 100 12 1 1 1 18 12 1 1 11 100 12 1 1 1 100 1 10 12 1 10 12 1 1 7 1 7 1 10 12 8 1 10 12 1 1 10 12 1 1 10 100 12 1 1 10 12 1 1 10 12 1 10 12 10 12 1 1 7 1 10 10 12 1 1 10 7 12 1 1 1 100 1 10 12 1 1 10 7 12 1 1 8 1 18 12 1 1 100 1 100 1 9 12 1 1 9 12 1 9 12 1 11 100 12 1 1 1 100 1 11 12 1 1 100 1 10 12 1 8 1 10 12 1 10 12 10 12 1 8 1 10 10 100 12 1 1 7 1 10 10 12 1 10 7 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 10 12 11 12 1 10 12 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 16 16 15 10 12 16 16 15 10 16 1 15 10 12 16 1 15 10 12 16 1 16 15 10 12 16 16 1 15 10 12 16 15 10 7 12 1 1 1 15 10 100 12 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 100 1 100 1 1 +staticfield java/lang/Module ALL_UNNAMED_MODULE Ljava/lang/Module; java/lang/Module +staticfield java/lang/Module ALL_UNNAMED_MODULE_SET Ljava/util/Set; java/util/ImmutableCollections$Set12 +staticfield java/lang/Module EVERYONE_MODULE Ljava/lang/Module; java/lang/Module +staticfield java/lang/Module EVERYONE_SET Ljava/util/Set; java/util/ImmutableCollections$Set12 +staticfield java/lang/Module $assertionsDisabled Z 1 +ciInstanceKlass java/lang/StringLatin1 1 1 392 7 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 10 12 1 10 12 1 10 9 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 12 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 1 9 12 1 1 100 1 10 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 100 1 7 1 8 1 10 12 1 8 1 10 12 1 1 100 1 10 10 12 10 7 12 1 1 1 8 1 8 1 8 1 10 12 1 1 10 100 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 10 12 10 12 1 10 12 10 10 12 1 10 12 1 10 12 1 10 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 +staticfield java/lang/StringLatin1 $assertionsDisabled Z 1 +ciInstanceKlass java/lang/Math 1 1 460 7 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 6 0 6 0 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 100 1 3 3 3 10 7 12 1 1 1 100 1 5 0 5 0 5 0 5 0 5 0 9 100 12 1 1 1 10 100 12 1 1 1 100 1 8 1 10 12 1 8 1 10 12 1 1 10 12 1 1 7 1 5 0 5 0 7 1 3 5 0 3 5 0 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 8 1 10 12 1 1 10 12 1 1 9 12 1 1 9 12 1 100 1 7 1 10 10 12 1 1 8 1 10 12 1 10 12 1 1 10 10 12 1 10 12 1 10 12 1 10 12 1 1 8 1 8 1 10 12 1 1 10 12 1 10 12 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 6 0 10 12 1 9 12 1 1 100 1 10 10 12 1 100 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 10 12 1 1 10 12 1 1 10 12 1 1 10 12 6 0 10 12 1 1 10 12 10 12 1 4 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 5 0 6 0 4 6 0 4 6 0 4 10 12 1 9 12 1 1 10 12 9 12 1 10 7 12 1 1 1 4 6 0 1 1 6 0 1 6 0 1 6 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/Math negativeZeroFloatBits J -2147483648 +staticfield java/lang/Math negativeZeroDoubleBits J -9223372036854775808 +staticfield java/lang/Math $assertionsDisabled Z 1 +ciInstanceKlass jdk/internal/util/ArraysSupport 1 1 378 7 1 7 1 8 1 10 12 1 1 10 12 1 1 10 7 12 1 1 9 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 10 12 9 12 1 10 12 1 1 10 12 7 1 10 12 1 1 10 12 1 100 1 10 12 1 1 10 12 100 1 10 12 1 100 1 10 12 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 9 12 1 1 11 100 12 1 1 1 9 12 1 9 12 1 10 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 10 12 1 1 10 7 12 1 1 1 9 12 1 9 12 1 10 12 1 1 10 12 1 9 12 1 10 12 1 10 7 12 1 1 1 9 12 1 9 12 1 10 12 1 10 12 1 10 7 12 1 1 1 3 10 12 1 7 1 8 1 8 1 8 1 10 10 100 12 1 1 1 11 7 12 1 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 9 12 1 10 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 7 1 10 7 12 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 +staticfield jdk/internal/util/ArraysSupport U Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +staticfield jdk/internal/util/ArraysSupport BIG_ENDIAN Z 0 +staticfield jdk/internal/util/ArraysSupport LOG2_ARRAY_BOOLEAN_INDEX_SCALE I 0 +staticfield jdk/internal/util/ArraysSupport LOG2_ARRAY_BYTE_INDEX_SCALE I 0 +staticfield jdk/internal/util/ArraysSupport LOG2_ARRAY_CHAR_INDEX_SCALE I 1 +staticfield jdk/internal/util/ArraysSupport LOG2_ARRAY_SHORT_INDEX_SCALE I 1 +staticfield jdk/internal/util/ArraysSupport LOG2_ARRAY_INT_INDEX_SCALE I 2 +staticfield jdk/internal/util/ArraysSupport LOG2_ARRAY_LONG_INDEX_SCALE I 3 +staticfield jdk/internal/util/ArraysSupport LOG2_ARRAY_FLOAT_INDEX_SCALE I 2 +staticfield jdk/internal/util/ArraysSupport LOG2_ARRAY_DOUBLE_INDEX_SCALE I 3 +staticfield jdk/internal/util/ArraysSupport LOG2_BYTE_BIT_SIZE I 3 +staticfield jdk/internal/util/ArraysSupport JLA Ljdk/internal/access/JavaLangAccess; java/lang/System$2 +ciInstanceKlass java/lang/Character 1 1 604 7 1 7 1 100 1 9 12 1 1 8 1 9 12 1 1 7 1 9 12 1 1 10 7 12 1 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 12 1 1 3 3 3 3 3 10 12 1 1 10 12 1 3 11 7 12 1 1 1 11 12 1 1 10 12 1 1 10 12 1 1 100 1 10 10 12 1 3 10 12 1 1 10 12 1 10 12 1 1 100 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 10 10 12 1 10 10 12 1 10 12 1 1 10 12 1 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 10 12 10 10 12 1 10 10 12 1 10 10 12 1 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 10 12 1 10 10 12 1 10 10 12 1 1 10 10 12 1 10 5 0 10 12 1 10 12 1 10 10 12 1 10 10 12 1 1 10 10 12 1 10 10 12 1 9 12 1 1 100 1 10 10 12 1 10 12 1 1 3 10 100 12 1 1 1 10 12 1 10 100 12 1 1 7 1 10 10 12 1 1 10 12 1 1 10 12 1 1 8 1 10 12 1 9 100 12 1 1 1 10 12 1 10 10 12 1 10 12 1 1 10 12 1 10 10 12 1 1 10 10 12 1 1 7 1 8 1 10 12 1 1 10 7 12 1 1 1 8 1 10 12 1 1 9 12 1 1 7 1 7 1 7 1 1 1 1 3 1 3 1 3 1 3 1 1 1 1 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 3 1 1 3 1 1 1 1 1 3 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 +staticfield java/lang/Character TYPE Ljava/lang/Class; java/lang/Class +staticfield java/lang/Character $assertionsDisabled Z 1 +ciInstanceKlass java/lang/OutOfMemoryError 1 1 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 +ciMethod java/lang/StringLatin1 equals ([B[B)Z 984 768 7150 0 -1 +ciMethod java/lang/StringLatin1 hashCode ([B)I 1024 0 5734 0 632 +ciMethod java/lang/StringLatin1 indexOf ([BIII)I 402 0 7095 0 496 +ciMethod java/lang/StringLatin1 indexOfChar ([BIII)I 256 3790 7059 0 -1 +ciMethod java/lang/StringLatin1 charAt ([BI)C 792 0 354850 0 0 +ciMethod java/lang/StringLatin1 canEncode (I)Z 512 0 37560 0 104 +ciInstanceKlass java/lang/StringUTF16 1 1 604 7 1 7 1 10 7 12 1 1 1 100 1 10 7 1 3 7 1 7 1 10 8 1 10 12 1 1 10 12 1 8 1 10 12 1 1 10 12 1 9 12 1 1 10 12 1 1 100 1 8 1 10 12 1 9 12 1 1 9 12 1 10 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 100 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 100 12 1 1 1 10 100 12 1 1 1 10 12 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 100 1 10 12 1 1 10 12 1 3 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 9 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 10 12 10 12 10 10 12 1 1 10 100 12 1 1 1 10 12 1 10 12 1 100 1 8 1 8 1 10 12 1 1 100 1 10 10 7 12 1 1 1 10 100 12 1 1 8 1 8 1 8 1 10 12 1 1 10 12 1 1 10 12 10 12 1 10 100 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 10 12 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 11 7 12 1 1 10 12 1 10 12 1 10 12 1 1 9 12 1 1 9 12 1 5 0 5 0 10 12 1 10 12 10 12 10 7 12 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 +staticfield java/lang/StringUTF16 HI_BYTE_SHIFT I 0 +staticfield java/lang/StringUTF16 LO_BYTE_SHIFT I 8 +staticfield java/lang/StringUTF16 $assertionsDisabled Z 1 +ciInstanceKlass java/lang/Integer 1 1 453 7 1 7 1 7 1 7 1 10 12 1 1 9 12 1 1 9 12 1 1 10 100 12 1 1 1 10 12 1 1 10 100 12 1 1 1 10 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 10 12 1 9 12 1 1 9 12 1 100 1 8 1 10 12 1 7 1 10 12 1 8 1 10 12 1 1 10 12 1 8 1 10 12 1 8 1 10 12 1 1 3 10 12 1 1 3 10 12 1 1 10 12 1 1 10 7 12 1 1 1 11 7 1 10 12 1 1 11 10 12 1 1 8 1 10 12 1 1 8 1 7 1 10 12 1 1 10 12 1 1 5 0 8 1 10 12 1 10 12 1 10 12 1 10 12 1 1 7 1 9 12 1 1 9 12 1 1 10 12 1 10 7 1 9 12 1 10 12 1 10 12 1 10 12 1 1 10 7 12 1 1 1 100 1 100 1 10 12 1 1 10 12 1 1 8 1 8 1 10 12 1 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 10 12 1 5 0 3 3 3 3 10 12 1 10 12 1 3 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 8 1 10 7 12 1 1 1 9 12 1 1 7 1 7 1 7 1 1 1 1 3 1 1 1 3 1 3 1 1 5 0 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/Integer TYPE Ljava/lang/Class; java/lang/Class +staticfield java/lang/Integer digits [C 36 +staticfield java/lang/Integer DigitTens [B 100 +staticfield java/lang/Integer DigitOnes [B 100 +instanceKlass com/sun/jna/IntegerType +instanceKlass java/util/concurrent/atomic/Striped64 +instanceKlass java/math/BigInteger +instanceKlass java/util/concurrent/atomic/AtomicLong +instanceKlass java/util/concurrent/atomic/AtomicInteger +instanceKlass java/lang/Long +instanceKlass java/lang/Integer +instanceKlass java/lang/Short +instanceKlass java/lang/Byte +instanceKlass java/lang/Double +instanceKlass java/lang/Float +ciInstanceKlass java/lang/Number 1 1 37 10 7 12 1 1 1 10 100 12 1 1 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciMethod java/lang/StringUTF16 checkIndex (I[B)V 0 0 5 0 -1 +ciMethod java/lang/StringUTF16 hashCode ([B)I 0 0 1 0 -1 +ciMethod java/lang/StringUTF16 indexOf ([BIII)I 0 0 1 0 -1 +ciMethod java/lang/StringUTF16 getChar ([BI)C 1024 0 11265 0 -1 +ciMethod java/lang/StringUTF16 charAt ([BI)C 0 0 5 0 0 +ciInstanceKlass java/lang/Thread$FieldHolder 1 1 48 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 100 1 1 1 +ciInstanceKlass java/lang/Thread$Constants 0 0 59 7 1 10 7 12 1 1 1 100 1 10 10 7 12 1 1 1 7 1 8 1 10 12 1 9 7 12 1 1 1 7 1 7 1 10 12 1 10 12 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/ThreadGroup 1 1 411 10 7 12 1 1 1 9 7 12 1 1 1 8 1 9 12 1 1 7 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 1 18 12 1 1 11 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 11 12 1 1 11 7 12 1 1 11 12 1 1 10 12 1 1 10 12 1 10 12 1 11 12 1 11 12 1 1 100 1 10 10 12 1 100 1 10 18 12 1 1 11 7 12 1 1 1 11 12 1 1 9 12 1 1 10 12 1 1 8 1 10 7 12 1 1 1 10 100 12 1 1 1 10 12 1 1 11 12 10 12 1 1 10 12 1 1 11 7 1 9 12 1 7 1 10 8 1 10 12 1 1 10 12 1 1 8 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 7 1 8 1 10 8 1 10 12 1 10 12 1 8 1 9 12 1 1 9 12 1 10 100 12 1 1 1 100 9 12 1 1 7 1 9 12 1 10 12 10 12 1 1 100 10 12 9 12 1 10 12 1 100 1 10 11 12 1 1 7 1 10 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 16 16 15 10 12 16 15 10 100 12 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/ThreadGroup $assertionsDisabled Z 1 +ciInstanceKlass java/lang/Thread$UncaughtExceptionHandler 1 0 16 100 1 100 1 1 1 1 1 1 1 1 100 1 1 1 +ciInstanceKlass java/security/AccessControlContext 1 1 374 9 7 12 1 1 1 9 12 1 1 10 100 12 1 1 1 8 1 10 100 12 1 1 1 10 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 1 10 7 12 1 1 7 1 10 12 1 11 7 12 1 1 1 11 12 1 11 12 1 11 12 1 1 7 1 11 12 1 1 10 12 1 10 7 12 1 1 1 9 100 12 1 1 1 10 7 12 1 1 1 11 100 12 1 1 1 10 7 1 100 1 8 1 10 12 1 10 12 1 1 7 1 10 7 12 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 10 7 12 1 1 1 9 12 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 7 1 10 10 12 1 1 10 7 12 1 1 1 10 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 8 1 10 12 1 8 1 10 12 1 8 1 10 12 1 10 12 1 10 12 1 1 8 1 8 1 100 1 10 12 1 10 12 1 1 100 1 10 12 1 8 1 10 12 1 10 12 1 10 8 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 11 10 12 1 10 12 1 1 10 10 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 +instanceKlass java/lang/ThreadBuilders$BoundVirtualThread +instanceKlass java/lang/VirtualThread +ciInstanceKlass java/lang/BaseVirtualThread 0 0 36 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 100 1 1 +ciInstanceKlass java/lang/VirtualThread 0 0 907 9 7 12 1 1 1 10 7 12 1 1 1 10 100 12 1 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 100 1 10 12 1 9 12 1 1 18 12 1 1 9 12 1 1 10 12 1 1 100 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 7 12 1 10 12 1 10 12 1 10 12 1 10 12 1 11 100 12 1 1 1 100 1 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 12 1 100 1 10 10 12 1 10 12 1 1 9 12 1 1 10 12 1 1 9 12 1 1 10 12 1 9 12 1 1 9 12 1 100 1 10 10 12 1 10 100 12 1 1 10 9 10 10 12 1 1 10 12 1 1 10 100 12 1 1 10 100 1 10 9 10 10 12 1 7 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 9 12 1 10 12 1 10 12 1 9 12 1 1 10 12 1 10 12 1 9 12 1 1 10 12 1 10 12 1 10 12 1 11 100 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 10 100 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 9 12 1 1 10 100 12 1 1 10 12 1 10 12 1 1 10 100 12 1 1 10 12 1 100 1 8 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 100 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 10 12 1 1 10 12 1 1 100 1 10 10 12 1 7 1 9 12 1 1 10 7 12 1 1 10 9 12 1 1 18 9 100 12 1 1 1 11 100 12 1 1 1 11 100 1 11 12 10 12 1 10 12 1 1 10 12 1 100 1 10 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 9 12 1 1 11 100 12 1 1 10 12 9 100 12 1 1 1 9 12 1 10 12 1 1 9 12 1 9 12 1 9 12 1 7 1 10 10 12 1 1 10 12 1 10 12 7 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 10 10 12 1 8 1 10 10 12 1 10 12 1 10 7 12 1 1 8 1 8 1 10 9 100 12 1 1 1 10 12 1 1 10 12 1 10 10 10 12 9 12 1 10 12 1 1 9 12 1 10 12 1 1 9 12 1 10 12 1 1 18 12 1 1 18 12 1 10 7 12 1 1 1 8 1 10 100 12 1 1 1 10 7 12 1 1 1 18 12 1 10 100 12 1 1 1 100 1 10 12 1 8 1 10 12 1 8 1 10 12 1 1 8 1 8 1 10 100 12 1 1 8 1 10 12 1 8 1 8 1 10 100 12 1 1 1 10 12 1 10 12 1 1 10 12 1 18 12 1 1 18 12 1 1 5 0 9 12 1 10 12 1 18 12 1 100 1 10 12 10 7 12 1 1 10 12 1 1 7 1 8 1 10 10 12 1 10 12 1 1 10 12 1 9 12 1 8 10 12 1 1 8 8 9 12 1 8 10 12 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 16 15 10 12 15 16 15 10 12 16 15 10 12 16 16 15 10 12 16 15 10 12 16 15 10 12 16 15 10 12 16 1 15 10 100 12 1 1 1 1 1 1 1 7 1 1 100 1 100 1 1 +ciInstanceKlass java/lang/ThreadBuilders$BoundVirtualThread 0 0 132 10 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 1 10 12 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 7 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 8 1 10 12 1 8 1 10 12 1 1 10 100 12 1 1 9 100 12 1 1 1 10 12 1 1 10 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 +ciInstanceKlass jdk/internal/vm/ContinuationScope 0 0 50 10 100 12 1 1 1 10 100 12 1 1 1 100 1 9 100 12 1 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/vm/StackChunk 0 0 32 10 100 12 1 1 1 9 100 12 1 1 1 9 12 1 1 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/Float 1 1 279 7 1 7 1 10 100 12 1 1 1 10 100 12 1 1 1 4 7 1 10 12 1 1 10 12 1 1 8 1 8 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 100 1 4 10 7 12 1 1 9 12 1 1 10 12 1 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 3 3 100 1 4 4 4 3 10 12 1 1 9 12 1 1 100 1 10 3 3 4 4 10 12 1 3 3 3 10 12 1 1 10 12 1 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 8 1 10 12 1 1 9 12 1 1 7 1 7 1 7 1 1 1 1 4 1 4 1 1 1 4 1 1 3 1 3 1 3 1 3 1 3 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/Float TYPE Ljava/lang/Class; java/lang/Class +staticfield java/lang/Float $assertionsDisabled Z 1 +ciMethod java/lang/Float intBitsToFloat (I)F 0 0 1 0 -1 +ciInstanceKlass java/lang/Double 1 1 290 7 1 7 1 10 100 12 1 1 1 10 12 1 1 10 7 1 10 12 1 1 10 7 12 1 1 1 6 0 8 1 10 12 1 1 8 1 10 12 1 1 8 1 6 0 10 12 1 1 100 1 5 0 5 0 8 1 8 1 10 7 12 1 1 1 10 7 12 1 1 1 8 1 10 12 1 1 8 1 8 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 7 1 6 0 10 7 12 1 1 9 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 5 0 10 12 1 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 8 1 10 7 12 1 1 1 9 12 1 1 7 1 7 1 7 1 1 1 6 0 1 6 0 1 6 0 1 1 1 6 0 1 1 3 1 3 1 3 1 3 1 3 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/Double TYPE Ljava/lang/Class; java/lang/Class +ciMethod java/lang/Double longBitsToDouble (J)D 1726 0 863 0 -1 +ciInstanceKlass java/lang/Byte 1 1 213 7 1 100 1 10 7 12 1 1 1 9 12 1 1 8 1 9 12 1 1 7 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 9 7 12 1 1 1 10 12 1 1 100 1 7 1 10 12 1 1 8 1 10 12 1 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 8 1 8 1 10 7 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 5 0 10 12 1 1 8 1 10 7 12 1 1 1 9 12 1 1 7 1 7 1 1 1 3 1 3 1 1 1 1 3 1 3 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/Byte TYPE Ljava/lang/Class; java/lang/Class +ciMethod java/lang/Byte valueOf (B)Ljava/lang/Byte; 130 0 65 0 -1 +ciInstanceKlass java/lang/Short 1 1 222 7 1 7 1 100 1 10 7 12 1 1 1 10 12 1 1 100 1 7 1 10 12 1 1 8 1 10 12 1 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 1 8 1 9 12 1 1 7 1 10 12 1 1 10 12 1 10 100 12 1 1 1 10 100 12 1 1 1 9 7 12 1 1 1 10 12 1 10 12 1 1 10 8 1 8 1 10 7 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 3 3 5 0 10 12 1 1 8 1 10 7 12 1 1 1 9 12 1 1 7 1 7 1 1 1 3 1 3 1 1 1 1 3 1 3 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/Short TYPE Ljava/lang/Class; java/lang/Class +ciMethod java/lang/Short valueOf (S)Ljava/lang/Short; 104 0 52 0 -1 +ciInstanceKlass java/lang/Integer$IntegerCache 1 1 95 10 7 12 1 1 1 7 1 10 7 12 1 1 1 9 7 12 1 1 1 8 1 10 7 12 1 1 1 10 12 1 1 10 100 12 1 1 1 3 10 12 1 100 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 9 12 1 100 1 10 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 100 1 1 1 1 1 +staticfield java/lang/Integer$IntegerCache high I 127 +staticfield java/lang/Integer$IntegerCache cache [Ljava/lang/Integer; 256 [Ljava/lang/Integer; +staticfield java/lang/Integer$IntegerCache $assertionsDisabled Z 1 +ciInstanceKlass java/lang/Long 1 1 524 7 1 7 1 7 1 7 1 10 12 1 1 9 12 1 1 9 7 12 1 1 1 10 100 12 1 1 1 10 12 1 1 10 100 12 1 1 1 10 10 12 10 12 1 10 12 1 10 12 1 5 0 5 0 7 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 100 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 10 12 1 5 0 5 0 9 12 1 1 9 12 1 5 0 100 1 8 1 10 12 1 8 1 10 12 1 8 1 8 1 10 12 1 1 5 0 10 12 1 1 5 0 10 12 1 1 10 12 1 1 10 100 12 1 1 1 11 7 1 10 12 1 1 11 10 12 1 1 8 1 10 12 1 1 8 1 7 1 10 12 1 1 10 12 1 8 1 8 1 11 12 1 1 10 12 1 10 12 1 10 12 1 5 0 5 0 9 7 12 1 1 1 10 12 1 10 12 1 1 8 1 8 1 10 12 1 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 10 7 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 100 1 100 1 10 12 1 1 10 12 1 1 5 0 10 12 1 10 12 1 5 0 5 0 5 0 10 12 1 1 10 12 1 5 0 5 0 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 8 1 10 7 12 1 1 1 9 12 1 1 7 1 7 1 7 1 1 1 1 5 0 1 1 1 1 3 1 3 1 5 0 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/Long TYPE Ljava/lang/Class; java/lang/Class +ciInstanceKlass jdk/internal/vm/vector/VectorSupport 0 0 573 100 1 10 100 12 1 1 1 9 12 1 1 10 12 1 1 100 1 10 12 1 11 100 12 1 1 1 11 100 12 1 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 1 11 100 12 1 1 11 100 12 1 1 1 11 100 12 1 1 1 11 100 12 1 1 11 100 12 1 1 1 11 100 12 1 1 100 1 10 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 11 100 12 1 1 9 12 1 1 10 100 12 1 1 11 100 12 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass jdk/internal/vm/vector/VectorSupport$VectorShuffle +instanceKlass jdk/internal/vm/vector/VectorSupport$VectorMask +instanceKlass jdk/internal/vm/vector/VectorSupport$Vector +ciInstanceKlass jdk/internal/vm/vector/VectorSupport$VectorPayload 0 0 32 10 100 12 1 1 1 9 100 12 1 1 1 10 100 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/vm/vector/VectorSupport$Vector 0 0 28 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 +ciInstanceKlass jdk/internal/vm/vector/VectorSupport$VectorMask 0 0 28 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 +ciInstanceKlass jdk/internal/vm/vector/VectorSupport$VectorShuffle 0 0 28 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 +ciInstanceKlass jdk/internal/vm/FillerObject 0 0 16 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 +instanceKlass java/lang/ref/PhantomReference +instanceKlass java/lang/ref/FinalReference +instanceKlass java/lang/ref/WeakReference +instanceKlass java/lang/ref/SoftReference +ciInstanceKlass java/lang/ref/Reference 1 1 190 9 7 12 1 1 1 9 7 12 1 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 1 9 12 1 1 9 12 1 1 7 1 10 12 1 10 7 12 1 1 10 12 1 10 12 1 1 10 12 1 7 1 8 1 10 12 1 1 7 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 10 12 1 1 10 12 1 10 12 1 9 12 1 7 1 100 1 10 12 9 12 1 9 12 1 100 1 10 10 12 1 10 10 7 12 1 1 7 1 10 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 7 1 1 1 +staticfield java/lang/ref/Reference processPendingLock Ljava/lang/Object; java/lang/Object +staticfield java/lang/ref/Reference $assertionsDisabled Z 1 +instanceKlass sun/util/locale/provider/LocaleResources$ResourceReference +instanceKlass sun/util/resources/Bundles$BundleReference +instanceKlass sun/util/locale/LocaleObjectCache$CacheEntry +instanceKlass org/eclipse/core/internal/registry/ReferenceMap$SoftRef +instanceKlass sun/security/util/MemoryCache$SoftCacheEntry +instanceKlass java/lang/invoke/LambdaFormEditor$Transform +ciInstanceKlass java/lang/ref/SoftReference 1 1 47 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 +instanceKlass com/sun/jna/CallbackReference +instanceKlass java/util/logging/LogManager$LoggerWeakRef +instanceKlass java/util/logging/Level$KnownLevel +instanceKlass org/eclipse/osgi/internal/container/KeyBasedLockStore$LockWeakRef +instanceKlass sun/nio/ch/FileLockTable$FileLockReference +instanceKlass java/lang/ClassValue$Entry +instanceKlass java/lang/ThreadLocal$ThreadLocalMap$Entry +instanceKlass java/lang/WeakPairMap$WeakRefPeer +instanceKlass jdk/internal/util/WeakReferenceKey +instanceKlass java/util/WeakHashMap$Entry +ciInstanceKlass java/lang/ref/WeakReference 1 1 31 10 7 12 1 1 1 10 12 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/lang/ref/Finalizer +ciInstanceKlass java/lang/ref/FinalReference 1 1 50 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 7 1 8 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 +instanceKlass com/sun/jna/internal/Cleaner$CleanerRef +instanceKlass jdk/internal/ref/PhantomCleanable +instanceKlass jdk/internal/ref/Cleaner +ciInstanceKlass java/lang/ref/PhantomReference 1 1 39 10 100 12 1 1 1 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/ref/Finalizer 1 1 155 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 10 12 1 7 1 8 1 10 12 1 10 12 1 1 9 12 1 100 1 10 12 1 7 1 11 100 12 1 1 10 12 1 7 1 10 12 1 100 1 10 12 1 10 7 12 1 1 1 10 100 12 1 1 1 100 1 10 10 12 1 7 1 10 12 1 7 1 10 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 7 1 10 7 1 10 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/ref/Finalizer lock Ljava/lang/Object; java/lang/Object +staticfield java/lang/ref/Finalizer ENABLED Z 1 +staticfield java/lang/ref/Finalizer $assertionsDisabled Z 1 +instanceKlass org/apache/felix/scr/impl/inject/field/FieldHandler$METHOD_TYPE +instanceKlass java/security/DrbgParameters$Capability +instanceKlass java/nio/file/StandardCopyOption +instanceKlass java/math/RoundingMode +instanceKlass sun/util/locale/provider/LocaleProviderAdapter$Type +instanceKlass java/time/format/TextStyle +instanceKlass java/time/format/DateTimeFormatterBuilder$SettingsParser +instanceKlass java/util/Locale$Category +instanceKlass java/time/format/ResolverStyle +instanceKlass java/time/format/SignStyle +instanceKlass java/time/temporal/JulianFields$Field +instanceKlass java/time/temporal/IsoFields$Unit +instanceKlass java/time/temporal/IsoFields$Field +instanceKlass java/util/Comparators$NaturalOrderComparator +instanceKlass java/lang/StackWalker$Option +instanceKlass org/apache/felix/scr/impl/inject/ValueUtils$ValueType +instanceKlass org/apache/felix/scr/impl/manager/RegistrationManager$RegState +instanceKlass org/apache/felix/scr/impl/manager/AbstractComponentManager$State +instanceKlass org/osgi/util/promise/PromiseFactory$Option +instanceKlass org/apache/felix/scr/impl/metadata/ReferenceMetadata$ReferenceScope +instanceKlass org/apache/felix/scr/impl/metadata/ServiceMetadata$Scope +instanceKlass org/apache/felix/scr/impl/metadata/DSVersion +instanceKlass com/sun/org/apache/xerces/internal/impl/XMLScanner$NameType +instanceKlass com/sun/org/apache/xerces/internal/util/Status +instanceKlass javax/xml/catalog/CatalogFeatures$Feature +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityPropertyManager$Property +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityPropertyManager$State +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityManager$NameMap +instanceKlass jdk/xml/internal/JdkProperty$State +instanceKlass com/sun/org/apache/xerces/internal/utils/XMLSecurityManager$Limit +instanceKlass org/apache/felix/scr/impl/logger/InternalLogger$Level +instanceKlass org/eclipse/osgi/container/ModuleContainerAdaptor$ContainerEvent +instanceKlass org/eclipse/osgi/container/Module$StartOptions +instanceKlass org/eclipse/osgi/container/ModuleDatabase$Sort +instanceKlass org/eclipse/osgi/container/Module$Settings +instanceKlass org/eclipse/osgi/container/ModuleContainerAdaptor$ModuleEvent +instanceKlass org/eclipse/osgi/storage/ContentProvider$Type +instanceKlass org/eclipse/osgi/container/Module$State +instanceKlass org/osgi/service/log/LogLevel +instanceKlass sun/util/logging/PlatformLogger$Level +instanceKlass jdk/internal/logger/BootstrapLogger$LoggingBackend +instanceKlass java/lang/reflect/ProxyGenerator$PrimitiveTypeInfo +instanceKlass java/lang/annotation/RetentionPolicy +instanceKlass java/nio/file/AccessMode +instanceKlass java/nio/file/attribute/PosixFilePermission +instanceKlass jdk/internal/icu/util/CodePointTrie$ValueWidth +instanceKlass jdk/internal/icu/util/CodePointTrie$Type +instanceKlass java/text/Normalizer$Form +instanceKlass java/time/temporal/ChronoUnit +instanceKlass java/time/temporal/ChronoField +instanceKlass sun/security/util/DisabledAlgorithmConstraints$Constraint$Operator +instanceKlass java/lang/System$Logger$Level +instanceKlass sun/security/rsa/RSAUtil$KeyType +instanceKlass sun/security/util/KnownOIDs +instanceKlass lombok/patcher/StackRequest +instanceKlass java/util/regex/Pattern$Qtype +instanceKlass java/lang/invoke/MethodHandleImpl$ArrayAccess +instanceKlass java/util/zip/ZipCoder$Comparison +instanceKlass java/nio/file/LinkOption +instanceKlass sun/nio/fs/WindowsPathType +instanceKlass java/nio/file/StandardOpenOption +instanceKlass java/util/stream/Collector$Characteristics +instanceKlass java/util/concurrent/TimeUnit +instanceKlass java/util/stream/StreamShape +instanceKlass java/lang/invoke/MethodHandles$Lookup$ClassOption +instanceKlass java/lang/invoke/VarHandle$AccessType +instanceKlass java/lang/invoke/VarHandle$AccessMode +instanceKlass java/lang/invoke/MethodHandleImpl$Intrinsic +instanceKlass java/lang/invoke/LambdaForm$BasicType +instanceKlass java/lang/invoke/LambdaForm$Kind +instanceKlass sun/invoke/util/Wrapper +instanceKlass java/util/stream/StreamOpFlag$Type +instanceKlass java/util/stream/StreamOpFlag +instanceKlass java/io/File$PathStatus +instanceKlass java/lang/module/ModuleDescriptor$Requires$Modifier +instanceKlass java/lang/reflect/AccessFlag$Location +instanceKlass java/lang/reflect/AccessFlag +instanceKlass java/lang/module/ModuleDescriptor$Modifier +instanceKlass java/lang/reflect/ClassFileFormatVersion +instanceKlass java/lang/Thread$State +ciInstanceKlass java/lang/Enum 1 1 204 9 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 10 7 12 1 1 1 100 1 10 10 12 1 1 10 12 1 7 1 10 10 7 12 1 1 10 12 1 1 18 12 1 1 10 100 12 1 1 1 10 12 1 1 11 7 12 1 1 1 100 1 8 1 10 12 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 1 8 1 10 12 1 10 100 1 8 1 10 10 12 1 1 10 100 12 1 1 1 7 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 1 1 100 1 7 1 1 100 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 16 15 10 100 12 1 1 1 1 1 100 1 100 1 1 +ciInstanceKlass java/lang/reflect/Method 1 1 472 9 7 12 1 1 1 10 100 12 1 1 1 10 100 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 100 12 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 100 1 8 1 10 12 1 10 12 1 9 12 1 1 8 1 10 7 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 9 100 12 1 1 1 10 12 1 1 10 12 10 7 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 7 1 10 7 12 1 1 1 10 7 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 10 8 1 10 12 1 10 12 1 7 1 8 1 8 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 12 1 11 7 1 10 12 1 9 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 11 12 1 9 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 9 12 1 1 10 7 12 1 1 1 10 7 12 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 11 7 12 1 1 1 10 7 12 1 1 1 7 1 100 1 100 1 10 12 1 10 12 1 1 10 12 1 100 1 8 1 10 12 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/reflect/Field 1 1 457 9 7 12 1 1 1 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 100 12 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 1 100 1 8 1 10 12 1 10 12 1 9 12 1 1 9 12 1 10 12 1 10 7 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 9 100 12 1 1 1 10 100 12 1 1 1 7 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 7 1 10 7 12 1 1 7 1 10 8 1 10 12 1 1 10 12 1 1 8 1 10 12 10 12 1 8 1 8 1 10 11 7 1 9 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 10 12 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 1 10 12 1 10 7 12 1 1 10 12 1 10 12 1 10 12 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 100 12 1 1 10 12 1 1 11 7 1 10 12 1 7 1 10 100 12 1 1 1 10 100 12 1 1 1 9 12 1 10 100 12 1 1 1 11 100 12 1 1 1 10 12 1 1 10 12 1 1 9 100 12 1 1 10 100 12 1 1 1 10 12 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 100 1 1 +ciInstanceKlass java/lang/reflect/Parameter 0 0 243 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 7 1 10 10 12 1 1 11 7 12 1 1 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 8 1 8 1 10 7 12 1 1 1 10 12 1 10 12 9 100 12 1 1 1 10 100 12 1 1 1 10 12 1 8 1 10 12 1 9 12 1 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 10 12 1 10 100 12 1 1 1 10 12 1 1 11 7 12 1 1 10 7 12 1 1 7 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 9 12 1 100 1 10 11 12 1 1 11 12 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 +ciInstanceKlass java/lang/reflect/RecordComponent 0 0 196 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 10 12 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 100 12 1 1 10 100 12 1 1 9 12 1 1 10 100 12 1 1 1 11 100 12 1 1 1 10 9 100 12 1 1 1 10 100 12 1 1 1 9 12 1 1 10 100 12 1 1 1 10 12 1 1 11 7 12 1 1 10 7 12 1 1 7 1 9 12 1 9 12 1 1 9 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 7 1 10 10 12 1 10 12 1 1 8 1 10 12 1 10 12 1 9 12 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 100 1 1 +ciInstanceKlass java/lang/StringBuffer 1 1 483 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 10 10 100 12 1 1 1 10 10 12 1 1 9 12 1 1 10 100 12 1 1 10 100 1 8 10 100 12 1 1 1 8 10 12 1 8 1 10 12 1 10 12 1 10 100 12 1 1 1 10 100 12 1 1 1 7 1 10 12 100 1 8 1 10 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 10 12 10 12 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 7 1 10 12 1 9 7 12 1 1 1 9 7 1 9 12 1 1 7 1 7 1 7 1 7 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/StringBuffer serialPersistentFields [Ljava/io/ObjectStreamField; 3 [Ljava/io/ObjectStreamField; +instanceKlass jdk/internal/loader/BuiltinClassLoader +instanceKlass java/net/URLClassLoader +ciInstanceKlass java/security/SecureClassLoader 1 1 102 10 7 12 1 1 1 7 1 10 12 1 9 7 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 7 1 10 7 1 10 12 1 7 1 10 12 1 11 7 12 1 1 1 7 1 11 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 +instanceKlass org/eclipse/equinox/launcher/Main$StartupClassLoader +ciInstanceKlass java/net/URLClassLoader 1 1 600 10 7 12 1 1 1 7 1 10 12 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 7 1 10 12 1 9 12 1 1 10 12 1 10 10 12 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 7 1 10 12 1 1 10 12 1 1 10 12 1 1 100 1 100 1 10 7 12 1 1 1 100 1 8 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 11 100 12 1 1 1 11 7 12 1 1 1 11 12 1 1 7 1 11 12 1 11 7 12 1 1 10 12 1 11 12 1 11 12 1 1 11 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 12 1 10 12 1 1 7 1 100 1 10 12 1 1 7 1 10 10 12 1 1 10 7 12 1 1 10 12 1 100 1 7 1 10 8 1 10 12 1 1 8 1 10 12 1 1 10 10 12 1 8 1 8 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 100 1 100 1 8 1 10 12 1 10 12 1 1 10 12 1 1 7 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 8 1 10 12 1 1 11 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 10 7 12 1 1 1 8 1 10 12 1 1 7 1 10 10 12 1 10 12 1 1 10 12 1 1 7 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 7 1 10 7 12 1 1 9 7 12 1 1 1 10 12 1 8 1 100 1 8 1 10 12 1 10 12 1 8 1 10 12 1 10 12 1 9 12 1 1 10 100 12 1 1 10 12 1 10 12 1 10 100 1 8 1 10 100 1 10 12 1 10 7 12 1 100 1 10 12 1 10 12 1 100 1 10 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 100 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 +ciInstanceKlass java/util/jar/Manifest 1 1 339 10 7 12 1 1 1 7 1 10 9 7 12 1 1 1 7 1 10 9 12 1 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 11 7 1 11 12 1 1 10 12 1 1 10 100 12 1 1 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 11 100 1 10 12 1 10 12 1 1 11 12 1 1 10 12 1 11 12 1 1 11 100 12 1 1 1 11 7 12 1 1 11 12 1 1 100 1 10 12 1 8 1 11 12 1 7 1 10 12 1 1 11 12 1 10 12 1 10 12 1 10 7 12 1 1 1 8 1 10 12 1 1 10 9 7 12 1 1 1 10 12 1 1 10 100 12 1 10 12 1 10 12 1 9 100 12 1 1 1 8 1 10 12 1 8 1 8 1 7 1 10 12 1 10 12 1 10 12 1 1 100 1 8 1 10 12 1 1 8 1 10 10 12 1 1 8 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 11 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 11 10 12 1 11 10 12 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/io/ByteArrayInputStream 1 1 117 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 10 100 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 100 12 1 1 1 10 12 1 1 3 10 100 1 10 100 12 1 1 1 9 12 1 1 100 1 10 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/io/ByteArrayInputStream $assertionsDisabled Z 1 +instanceKlass java/nio/DoubleBuffer +instanceKlass java/nio/FloatBuffer +instanceKlass java/nio/ShortBuffer +instanceKlass java/nio/CharBuffer +instanceKlass java/nio/IntBuffer +instanceKlass java/nio/LongBuffer +instanceKlass java/nio/ByteBuffer +ciInstanceKlass java/nio/Buffer 1 1 256 100 1 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 100 1 7 1 10 8 1 10 12 1 1 10 12 1 8 1 8 1 10 12 1 1 10 12 1 8 1 9 12 1 1 100 1 8 1 10 12 1 8 1 8 1 9 12 10 12 1 8 1 8 1 8 1 10 12 1 8 1 8 1 8 1 100 1 10 100 1 10 100 1 10 9 12 1 1 10 7 12 1 1 1 100 1 10 12 1 1 10 12 1 10 100 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 7 1 10 10 12 1 1 7 1 10 10 7 12 1 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 1 +staticfield java/nio/Buffer UNSAFE Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +staticfield java/nio/Buffer SCOPED_MEMORY_ACCESS Ljdk/internal/misc/ScopedMemoryAccess; jdk/internal/misc/ScopedMemoryAccess +staticfield java/nio/Buffer IOOBE_FORMATTER Ljava/util/function/BiFunction; jdk/internal/util/Preconditions$4 +staticfield java/nio/Buffer $assertionsDisabled Z 1 +ciInstanceKlass jdk/internal/util/Preconditions 1 1 194 10 7 12 1 1 1 11 7 12 1 1 1 11 100 12 1 1 1 7 1 100 1 10 7 12 1 1 1 10 12 1 8 1 7 1 10 7 12 1 1 1 10 12 1 1 8 1 8 1 10 7 12 1 1 7 1 10 12 1 8 1 10 7 12 1 1 1 8 1 10 12 1 1 10 12 1 1 11 12 1 8 1 8 1 11 12 1 1 8 1 8 1 8 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 7 1 10 10 12 1 1 9 12 1 1 7 1 10 9 12 1 7 1 10 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield jdk/internal/util/Preconditions SIOOBE_FORMATTER Ljava/util/function/BiFunction; jdk/internal/util/Preconditions$4 +staticfield jdk/internal/util/Preconditions AIOOBE_FORMATTER Ljava/util/function/BiFunction; jdk/internal/util/Preconditions$4 +staticfield jdk/internal/util/Preconditions IOOBE_FORMATTER Ljava/util/function/BiFunction; jdk/internal/util/Preconditions$4 +instanceKlass org/eclipse/osgi/internal/container/InternalUtils$CopyOnFirstWriteList +instanceKlass org/eclipse/osgi/internal/weaving/DynamicImportList +instanceKlass java/util/AbstractSequentialList +instanceKlass java/util/Collections$SingletonList +instanceKlass java/util/Vector +instanceKlass sun/security/jca/ProviderList$ServiceList +instanceKlass sun/security/jca/ProviderList$3 +instanceKlass java/util/Arrays$ArrayList +instanceKlass java/util/ArrayList$SubList +instanceKlass java/util/Collections$EmptyList +instanceKlass java/util/ArrayList +ciInstanceKlass java/util/AbstractList 1 1 218 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 1 100 1 10 10 12 1 1 11 100 12 1 1 1 11 12 1 1 11 12 1 10 7 12 1 1 1 10 12 1 11 12 1 11 12 1 11 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 11 7 1 11 7 1 10 12 1 100 1 10 12 1 10 12 1 1 7 1 100 1 10 12 1 100 1 10 100 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 8 1 100 1 8 1 8 1 8 1 10 7 1 11 10 10 12 1 11 12 1 10 12 1 1 8 1 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/Iterable 1 1 62 10 7 12 1 1 1 11 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 11 7 12 1 1 1 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/util/Collection 1 1 115 11 7 12 1 1 1 7 1 11 7 12 1 1 1 10 100 12 1 1 1 11 12 1 1 11 100 12 1 1 1 11 12 1 1 11 100 12 1 1 1 11 12 1 1 10 100 12 1 1 1 11 12 1 10 7 12 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/util/SequencedCollection 1 1 109 100 1 10 12 1 1 11 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 11 12 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 8 1 1 12 10 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 8 1 1 1 8 1 1 8 1 1 1 8 1 1 8 1 1 1 8 1 1 8 1 1 8 1 +ciInstanceKlass java/util/List 1 1 251 10 100 12 1 1 1 11 100 12 1 1 1 11 100 12 1 1 1 11 12 1 1 11 100 12 1 1 11 12 1 1 11 12 1 1 10 100 12 1 1 1 100 1 100 1 10 12 1 1 100 1 10 100 12 1 1 1 11 12 1 1 11 12 1 11 12 1 100 1 10 12 1 11 12 1 1 11 12 1 1 11 12 1 10 100 12 1 1 1 9 7 12 1 1 1 7 1 10 12 10 12 1 7 1 10 12 1 1 10 12 1 10 12 1 1 11 12 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 100 1 1 1 +ciMethod java/util/List add (Ljava/lang/Object;)Z 0 0 1 0 -1 +ciMethod java/util/List iterator ()Ljava/util/Iterator; 0 0 1 0 -1 +instanceKlass com/sun/jna/Structure$StructureSet +instanceKlass java/util/IdentityHashMap$Values +instanceKlass java/util/AbstractMap$2 +instanceKlass java/util/TreeMap$Values +instanceKlass org/eclipse/osgi/internal/container/NamespaceList$Builder +instanceKlass java/util/AbstractQueue +instanceKlass java/util/LinkedHashMap$LinkedValues +instanceKlass java/util/HashMap$Values +instanceKlass java/util/ArrayDeque +instanceKlass java/util/AbstractSet +instanceKlass java/util/ImmutableCollections$AbstractImmutableCollection +instanceKlass java/util/AbstractList +ciInstanceKlass java/util/AbstractCollection 1 1 160 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 11 7 12 1 1 1 11 12 1 1 10 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 10 7 12 1 1 1 7 1 10 7 12 1 1 1 10 100 12 1 1 1 100 1 10 11 12 1 11 7 1 10 12 1 10 12 1 10 100 12 1 1 1 11 8 1 7 1 10 10 12 1 1 8 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciMethod java/util/AbstractCollection ()V 858 0 20726 0 80 +ciMethod java/util/AbstractList ()V 284 0 13233 0 0 +ciInstanceKlass java/lang/AssertionStatusDirectives 0 0 24 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass org/eclipse/jdt/internal/codeassist/select/SelectionNodeFound +instanceKlass org/eclipse/jdt/internal/core/DeltaProcessor$1FoundRelevantDeltaException +instanceKlass org/eclipse/jdt/internal/codeassist/complete/InvalidCursorLocation +instanceKlass org/eclipse/jdt/internal/codeassist/complete/CompletionNodeFound +instanceKlass org/eclipse/jdt/internal/compiler/problem/AbortCompilation +instanceKlass org/eclipse/jdt/internal/compiler/lookup/SourceTypeCollisionException +instanceKlass org/eclipse/jdt/internal/core/builder/MissingSourceFileException +instanceKlass org/eclipse/jdt/internal/core/builder/ImageBuilderInternalException +instanceKlass java/lang/NegativeArraySizeException +instanceKlass org/eclipse/jdt/internal/core/ClasspathEntry$AssertionFailedException +instanceKlass java/lang/reflect/UndeclaredThrowableException +instanceKlass org/eclipse/core/internal/events/BuildManager$JobManagerSuspendedException +instanceKlass org/eclipse/core/internal/localstore/IsSynchronizedVisitor$ResourceChangedException +instanceKlass java/lang/IllegalCallerException +instanceKlass org/eclipse/core/internal/dtree/ObjectNotFoundException +instanceKlass org/eclipse/core/internal/utils/WrappedRuntimeException +instanceKlass org/eclipse/core/runtime/OperationCanceledException +instanceKlass org/osgi/util/promise/FailedPromisesException +instanceKlass org/eclipse/core/runtime/InvalidRegistryObjectException +instanceKlass java/util/concurrent/RejectedExecutionException +instanceKlass org/eclipse/core/runtime/AssertionFailedException +instanceKlass java/util/MissingResourceException +instanceKlass org/osgi/service/component/ComponentException +instanceKlass org/osgi/framework/hooks/weaving/WeavingException +instanceKlass java/util/ConcurrentModificationException +instanceKlass org/osgi/framework/ServiceException +instanceKlass java/lang/TypeNotPresentException +instanceKlass java/lang/IndexOutOfBoundsException +instanceKlass org/eclipse/osgi/framework/util/ThreadInfoReport +instanceKlass org/eclipse/osgi/storage/Storage$StorageException +instanceKlass java/util/NoSuchElementException +instanceKlass java/lang/SecurityException +instanceKlass java/lang/invoke/WrongMethodTypeException +instanceKlass java/lang/UnsupportedOperationException +instanceKlass java/lang/IllegalStateException +instanceKlass java/lang/IllegalArgumentException +instanceKlass java/lang/ArithmeticException +instanceKlass java/lang/NullPointerException +instanceKlass java/lang/IllegalMonitorStateException +instanceKlass java/lang/ArrayStoreException +instanceKlass java/lang/ClassCastException +ciInstanceKlass java/lang/RuntimeException 1 1 40 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/lang/reflect/Proxy$ProxyBuilder$ProxyClassContext +instanceKlass sun/security/pkcs/SignerInfo$AlgorithmInfo +instanceKlass jdk/internal/misc/ThreadTracker$ThreadRef +instanceKlass java/security/SecureClassLoader$CodeSourceKey +instanceKlass jdk/internal/module/ModuleReferenceImpl$CachedHash +instanceKlass java/util/stream/Collectors$CollectorImpl +instanceKlass jdk/internal/reflect/ReflectionFactory$Config +instanceKlass jdk/internal/foreign/abi/UpcallLinker$CallRegs +instanceKlass jdk/internal/foreign/abi/VMStorage +ciInstanceKlass java/lang/Record 1 1 22 10 7 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/invoke/MethodType 1 1 780 7 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 9 7 12 1 1 8 1 10 100 12 1 1 1 9 7 1 9 7 1 10 12 1 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 7 1 8 1 10 12 1 100 1 10 10 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 9 12 1 11 12 1 1 7 10 12 1 1 10 12 1 1 7 1 7 1 10 7 12 1 1 1 10 12 1 10 12 1 9 12 1 1 10 7 12 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 8 1 8 1 10 12 1 1 9 12 1 1 100 1 10 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 1 10 100 12 1 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 10 10 12 1 1 10 12 1 9 12 1 1 10 12 1 1 11 12 1 1 10 12 1 1 10 12 1 10 12 1 7 1 8 1 8 1 8 1 10 12 1 10 12 1 10 12 1 1 10 10 12 1 11 12 1 1 11 12 1 10 100 12 1 1 1 9 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 9 12 1 1 7 1 10 12 1 10 12 1 1 9 100 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 8 1 10 7 12 1 1 1 11 12 1 1 9 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 100 12 1 1 100 1 10 12 1 1 11 100 12 1 1 18 12 1 1 11 12 1 1 18 12 1 11 12 1 100 1 11 100 12 1 1 10 12 1 100 1 10 12 1 10 100 12 1 1 10 12 1 1 9 12 1 1 9 100 12 1 1 1 10 7 12 1 1 1 9 12 1 10 100 12 1 1 10 12 1 100 10 12 1 1 10 12 1 7 1 10 10 12 1 1 7 1 7 1 9 12 1 1 7 1 7 1 7 1 1 1 5 0 1 1 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 16 16 15 10 12 16 15 10 100 12 1 1 1 1 1 7 1 1 7 1 1 100 1 100 1 1 +staticfield java/lang/invoke/MethodType internTable Ljdk/internal/util/ReferencedKeySet; jdk/internal/util/ReferencedKeySet +staticfield java/lang/invoke/MethodType NO_PTYPES [Ljava/lang/Class; 0 [Ljava/lang/Class; +staticfield java/lang/invoke/MethodType objectOnlyTypes [Ljava/lang/invoke/MethodType; 20 [Ljava/lang/invoke/MethodType; +staticfield java/lang/invoke/MethodType METHOD_HANDLE_ARRAY [Ljava/lang/Class; 1 [Ljava/lang/Class; +staticfield java/lang/invoke/MethodType serialPersistentFields [Ljava/io/ObjectStreamField; 0 [Ljava/io/ObjectStreamField; +staticfield java/lang/invoke/MethodType $assertionsDisabled Z 1 +ciInstanceKlass java/lang/invoke/TypeDescriptor$OfMethod 1 0 43 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 +instanceKlass java/lang/InstantiationException +instanceKlass java/lang/IllegalAccessException +instanceKlass java/lang/reflect/InvocationTargetException +instanceKlass java/lang/NoSuchFieldException +instanceKlass java/lang/NoSuchMethodException +instanceKlass java/lang/ClassNotFoundException +ciInstanceKlass java/lang/ReflectiveOperationException 1 1 34 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/lang/invoke/DelegatingMethodHandle +instanceKlass java/lang/invoke/BoundMethodHandle +instanceKlass java/lang/invoke/DirectMethodHandle +ciInstanceKlass java/lang/invoke/MethodHandle 1 1 733 100 1 9 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 7 1 7 1 10 12 1 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 11 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 8 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 10 7 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 8 1 10 7 12 1 1 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 8 1 10 12 1 1 8 1 10 12 1 8 1 10 7 12 1 1 1 9 12 1 1 100 1 10 9 7 12 1 1 1 9 7 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 8 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 9 100 12 1 1 1 10 12 1 1 11 12 1 10 12 1 10 12 1 1 10 100 12 1 1 100 1 11 12 1 10 100 1 11 12 1 7 1 10 12 1 11 12 1 9 100 12 1 1 1 11 12 1 1 11 100 12 1 1 1 10 12 1 1 9 12 1 11 12 1 9 12 1 9 12 1 9 12 1 11 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 8 1 10 12 1 10 12 1 8 1 10 12 1 10 12 1 10 12 1 1 10 10 10 7 12 1 1 10 12 1 1 100 1 7 1 8 1 8 1 10 10 12 1 1 10 12 1 10 12 1 7 1 10 100 12 1 1 1 10 9 7 12 1 1 1 10 12 1 1 10 12 1 1 8 1 8 1 10 7 12 1 1 9 12 1 9 12 1 1 9 12 1 1 10 12 1 7 1 10 12 1 10 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 11 7 12 1 1 9 12 1 10 12 1 1 9 12 1 10 12 1 8 10 12 1 1 8 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 100 1 7 1 100 1 1 100 1 1 100 1 1 1 1 +staticfield java/lang/invoke/MethodHandle FORM_OFFSET J 20 +staticfield java/lang/invoke/MethodHandle UPDATE_OFFSET J 13 +staticfield java/lang/invoke/MethodHandle $assertionsDisabled Z 1 +ciInstanceKlass java/util/concurrent/ConcurrentHashMap 1 1 1210 7 1 7 1 3 10 12 1 1 3 7 1 10 7 12 1 1 1 7 1 10 7 12 1 1 1 100 1 11 12 1 1 11 12 1 11 12 1 1 9 12 1 1 9 12 1 1 9 12 1 10 7 12 1 1 1 7 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 4 10 12 1 9 12 1 10 12 1 1 100 1 10 5 0 10 12 1 10 12 1 1 5 0 10 12 1 1 10 12 1 9 12 1 1 10 12 1 1 9 12 1 9 12 1 1 10 12 1 1 9 12 1 10 12 1 1 9 12 1 1 10 12 1 1 100 1 10 100 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 100 1 10 12 1 1 7 1 100 1 8 1 10 12 1 10 12 1 1 10 12 1 1 11 7 12 1 1 10 12 1 1 11 12 1 1 11 7 12 1 1 1 11 7 12 1 1 1 11 12 1 7 1 11 12 1 11 12 1 10 12 1 1 10 12 1 1 9 12 1 1 10 100 12 1 1 1 9 10 12 1 1 9 12 1 10 12 1 1 5 0 9 12 1 1 7 1 10 12 1 9 12 1 1 7 1 10 12 1 9 12 1 7 1 10 7 1 10 10 12 1 1 8 1 10 12 1 10 12 1 1 11 100 1 10 12 1 10 100 12 1 1 1 8 1 10 100 12 1 1 1 8 1 10 12 1 8 1 10 12 1 10 12 1 1 10 100 12 1 1 10 12 1 10 12 1 10 12 1 9 12 1 9 10 12 1 9 12 1 1 11 100 12 1 1 1 11 7 12 1 1 1 100 1 10 12 11 100 12 1 1 10 11 7 12 1 10 12 1 100 1 10 12 1 100 1 10 10 9 7 12 1 1 1 10 12 3 10 7 12 1 1 9 12 1 10 12 1 1 9 12 1 1 9 12 1 10 12 1 1 10 100 12 1 1 9 12 1 9 7 12 1 1 10 12 1 1 10 12 1 3 9 12 1 9 12 1 10 12 1 1 7 1 9 3 9 12 1 7 1 10 12 1 9 12 1 10 12 1 9 12 1 10 12 1 9 12 1 10 100 12 1 1 1 100 10 12 1 7 1 5 0 10 100 12 1 1 100 1 10 12 1 1 10 12 1 10 12 1 100 1 10 12 1 10 100 1 100 1 10 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 7 1 10 12 1 1 100 1 10 12 1 10 10 12 1 100 1 10 12 1 10 10 12 1 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 10 100 1 10 10 100 1 10 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 10 100 1 10 10 100 1 10 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 100 1 10 12 1 10 10 12 1 10 7 12 1 1 1 10 12 1 7 1 7 1 10 12 1 9 12 1 1 9 12 1 1 10 12 1 1 8 10 12 1 1 8 8 8 8 7 10 12 1 1 10 12 1 100 1 8 1 10 7 1 7 1 7 1 1 1 5 0 1 1 3 1 3 1 1 1 1 3 1 3 1 3 1 1 1 1 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/util/concurrent/ConcurrentHashMap NCPU I 8 +staticfield java/util/concurrent/ConcurrentHashMap serialPersistentFields [Ljava/io/ObjectStreamField; 3 [Ljava/io/ObjectStreamField; +staticfield java/util/concurrent/ConcurrentHashMap U Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +staticfield java/util/concurrent/ConcurrentHashMap SIZECTL J 20 +staticfield java/util/concurrent/ConcurrentHashMap TRANSFERINDEX J 32 +staticfield java/util/concurrent/ConcurrentHashMap BASECOUNT J 24 +staticfield java/util/concurrent/ConcurrentHashMap CELLSBUSY J 36 +staticfield java/util/concurrent/ConcurrentHashMap CELLVALUE J 144 +staticfield java/util/concurrent/ConcurrentHashMap ABASE I 16 +staticfield java/util/concurrent/ConcurrentHashMap ASHIFT I 2 +instanceKlass java/util/concurrent/ConcurrentSkipListMap +instanceKlass org/eclipse/osgi/internal/framework/FilterImpl$ServiceReferenceMap +instanceKlass org/eclipse/osgi/internal/serviceregistry/ShrinkableValueCollectionMap +instanceKlass java/util/Collections$SingletonMap +instanceKlass java/util/TreeMap +instanceKlass sun/util/PreHashedMap +instanceKlass java/util/IdentityHashMap +instanceKlass java/util/EnumMap +instanceKlass java/util/WeakHashMap +instanceKlass java/util/Collections$EmptyMap +instanceKlass java/util/HashMap +instanceKlass java/util/ImmutableCollections$AbstractImmutableMap +instanceKlass java/util/concurrent/ConcurrentHashMap +ciInstanceKlass java/util/AbstractMap 1 1 196 10 7 12 1 1 1 10 7 12 1 1 1 11 7 12 1 1 1 10 11 12 1 1 11 7 12 1 1 1 11 12 1 1 7 1 11 12 1 10 12 1 1 11 12 1 100 1 10 11 12 1 11 7 1 10 12 1 1 11 12 1 9 12 1 1 7 1 10 12 1 9 12 1 1 7 1 10 11 11 12 1 1 11 12 1 7 1 100 1 11 12 1 8 1 7 1 10 10 12 1 1 8 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 100 1 1 1 1 1 1 +ciInstanceKlass java/util/concurrent/ConcurrentMap 1 1 208 11 7 12 1 1 1 10 100 12 1 1 11 12 1 1 11 100 12 1 1 1 11 7 12 1 1 1 11 12 1 1 100 1 11 12 1 11 12 1 100 1 11 100 12 1 1 1 18 12 1 11 12 1 1 11 100 12 1 1 11 12 1 1 11 100 12 1 11 12 1 1 11 12 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 11 12 15 10 100 12 1 1 1 1 1 100 1 100 1 1 1 100 1 8 1 1 12 10 1 1 1 8 1 1 1 8 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 8 1 +ciInstanceKlass jdk/internal/loader/ClassLoaders 1 1 183 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 100 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 7 1 11 100 12 1 1 1 100 1 11 12 1 1 11 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 100 1 100 1 10 7 12 1 1 1 9 12 1 1 10 12 1 1 7 1 10 12 1 1 10 12 1 7 1 8 1 10 7 12 1 1 1 10 12 1 1 7 1 10 12 1 10 12 1 10 12 1 8 1 10 7 12 1 1 8 1 8 1 10 12 1 7 1 10 12 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield jdk/internal/loader/ClassLoaders JLA Ljdk/internal/access/JavaLangAccess; java/lang/System$2 +staticfield jdk/internal/loader/ClassLoaders BOOT_LOADER Ljdk/internal/loader/ClassLoaders$BootClassLoader; jdk/internal/loader/ClassLoaders$BootClassLoader +staticfield jdk/internal/loader/ClassLoaders PLATFORM_LOADER Ljdk/internal/loader/ClassLoaders$PlatformClassLoader; jdk/internal/loader/ClassLoaders$PlatformClassLoader +staticfield jdk/internal/loader/ClassLoaders APP_LOADER Ljdk/internal/loader/ClassLoaders$AppClassLoader; jdk/internal/loader/ClassLoaders$AppClassLoader +instanceKlass jdk/internal/loader/ClassLoaders$BootClassLoader +instanceKlass jdk/internal/loader/ClassLoaders$PlatformClassLoader +instanceKlass jdk/internal/loader/ClassLoaders$AppClassLoader +ciInstanceKlass jdk/internal/loader/BuiltinClassLoader 1 1 737 9 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 7 1 10 12 1 9 12 1 10 12 1 9 12 1 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 11 7 12 1 1 1 7 1 7 1 10 10 12 1 1 8 1 10 12 1 10 12 7 1 10 12 1 10 12 1 1 11 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 7 1 8 1 8 1 10 9 12 1 1 10 7 12 1 1 11 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 11 7 12 1 1 1 10 7 12 1 1 7 1 10 7 12 1 1 1 10 12 1 100 1 8 1 10 12 1 1 10 8 1 10 12 1 1 10 12 1 1 10 12 1 1 11 7 12 1 1 11 12 1 7 1 10 11 12 1 1 11 10 12 1 1 7 1 10 12 1 10 7 12 1 10 12 1 7 1 10 12 1 10 7 12 1 1 1 100 1 10 12 1 1 11 12 1 7 1 100 1 10 12 1 10 12 1 1 100 1 100 1 10 12 1 10 12 1 18 12 1 1 10 12 1 10 12 1 1 18 100 1 10 7 12 1 1 1 7 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 1 100 1 10 10 12 1 1 10 12 1 1 10 12 1 10 12 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 18 12 1 7 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 100 1 10 12 1 7 1 10 12 1 10 7 12 1 1 1 10 12 1 11 12 1 7 1 10 12 1 7 1 100 1 10 12 1 10 12 1 11 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 8 1 10 12 1 1 10 7 12 1 1 10 12 1 100 1 8 1 8 1 10 10 12 1 8 1 8 1 10 7 12 1 1 1 11 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 10 7 12 1 1 1 8 1 10 12 1 7 1 10 12 1 1 10 12 1 7 1 10 11 12 1 1 10 12 10 12 1 10 12 1 100 1 10 12 1 10 12 1 10 10 12 1 10 7 12 1 1 8 1 10 7 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 16 15 10 12 16 15 10 12 16 15 10 12 16 1 15 10 100 12 1 1 1 1 1 100 1 1 1 1 1 100 1 100 1 1 +staticfield jdk/internal/loader/BuiltinClassLoader packageToModule Ljava/util/Map; java/util/concurrent/ConcurrentHashMap +staticfield jdk/internal/loader/BuiltinClassLoader $assertionsDisabled Z 1 +ciInstanceKlass jdk/internal/loader/ClassLoaders$AppClassLoader 1 1 119 8 1 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 7 1 8 1 10 12 10 7 12 1 1 1 10 7 12 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 7 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 +ciInstanceKlass jdk/internal/loader/ClassLoaders$PlatformClassLoader 1 1 42 8 1 10 7 12 1 1 1 10 7 12 1 1 1 7 1 10 12 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 100 1 1 +ciInstanceKlass java/lang/ArithmeticException 1 1 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/ArrayStoreException 1 1 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/ClassCastException 1 1 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/ClassNotFoundException 1 1 96 7 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 100 12 1 1 1 8 1 10 100 12 1 1 1 10 7 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 7 1 10 12 1 9 12 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/ClassNotFoundException serialPersistentFields [Ljava/io/ObjectStreamField; 1 [Ljava/io/ObjectStreamField; +instanceKlass java/nio/charset/UnsupportedCharsetException +instanceKlass java/nio/charset/IllegalCharsetNameException +instanceKlass java/lang/NumberFormatException +ciInstanceKlass java/lang/IllegalArgumentException 1 1 35 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 +ciMethod java/lang/IllegalArgumentException (Ljava/lang/String;)V 0 0 14 0 -1 +ciInstanceKlass java/lang/IllegalMonitorStateException 1 1 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/BootstrapMethodError 0 0 45 10 100 12 1 1 1 10 12 1 10 12 1 10 100 12 1 1 1 10 100 12 1 1 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 +instanceKlass java/lang/ClassFormatError +instanceKlass java/lang/UnsatisfiedLinkError +instanceKlass java/lang/IncompatibleClassChangeError +instanceKlass java/lang/BootstrapMethodError +instanceKlass java/lang/NoClassDefFoundError +ciInstanceKlass java/lang/LinkageError 1 1 31 10 7 12 1 1 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/NullPointerException 1 1 52 10 7 12 1 1 1 10 12 1 9 7 12 1 1 1 10 12 1 1 9 12 1 1 10 12 1 1 10 12 1 1 1 1 5 0 1 1 1 1 1 1 1 1 100 1 100 1 100 1 1 1 +ciInstanceKlass java/lang/NoClassDefFoundError 0 0 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/StackOverflowError 1 1 26 10 100 12 1 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/StackTraceElement 0 0 235 10 7 12 1 1 1 10 7 12 1 1 9 12 1 1 9 12 1 1 9 12 1 9 12 1 8 1 10 100 12 1 1 1 7 1 9 12 1 8 1 9 12 1 9 12 1 9 12 1 1 10 12 1 1 10 12 1 8 1 10 100 12 1 1 1 7 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 10 12 1 8 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 9 12 1 1 10 7 12 1 1 1 10 12 1 1 7 1 10 12 1 1 10 100 12 1 1 10 100 12 1 1 1 10 7 12 1 1 10 100 12 1 1 10 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 7 1 1 1 1 1 1 1 3 1 3 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 +instanceKlass java/util/concurrent/locks/AbstractQueuedSynchronizer +ciInstanceKlass java/util/concurrent/locks/AbstractOwnableSynchronizer 1 1 32 10 7 12 1 1 1 9 7 12 1 1 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/vm/Continuation 0 0 549 9 100 12 1 1 1 9 12 1 9 12 1 100 1 7 1 10 12 1 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 9 7 12 1 1 1 11 100 12 1 1 1 10 7 1 9 12 1 1 9 12 1 1 10 8 1 10 12 1 9 12 1 1 10 11 12 1 1 100 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 11 12 1 1 9 12 1 1 10 12 1 1 18 12 1 1 10 7 12 1 1 1 100 1 10 12 1 11 100 12 1 1 1 10 12 1 9 12 1 10 12 1 1 100 1 8 1 10 12 1 10 12 1 1 9 12 1 1 11 12 1 1 9 12 1 1 8 1 10 11 12 1 1 11 12 1 1 10 12 1 1 10 12 1 1 9 12 1 10 12 1 10 10 12 1 8 1 10 12 1 8 1 8 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 9 12 1 11 12 1 7 1 10 12 1 10 12 1 1 9 12 1 1 7 1 10 12 1 1 9 12 1 1 10 12 1 10 12 1 11 7 12 1 1 10 7 1 10 12 1 8 1 9 12 1 10 12 1 1 9 12 1 1 10 7 12 1 1 8 1 8 1 8 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 9 12 1 1 10 12 1 1 9 12 1 8 1 10 7 12 1 1 1 10 12 1 8 1 100 1 8 1 10 9 12 1 1 8 1 10 7 12 1 1 10 100 12 1 1 8 1 8 1 10 12 10 100 12 1 1 1 10 7 1 10 7 12 1 1 1 18 11 100 12 1 1 1 18 12 1 11 12 1 1 7 1 10 7 12 1 1 10 12 1 1 8 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 10 12 1 8 1 10 12 1 7 1 7 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 16 1 15 10 12 16 15 11 7 12 1 1 1 16 1 16 1 15 10 12 16 15 10 100 12 1 1 1 1 1 1 1 1 100 1 100 1 1 +ciInstanceKlass jdk/internal/misc/UnsafeConstants 1 1 34 10 100 12 1 1 1 9 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 1 1 1 1 1 1 1 +staticfield jdk/internal/misc/UnsafeConstants ADDRESS_SIZE0 I 8 +staticfield jdk/internal/misc/UnsafeConstants PAGE_SIZE I 4096 +staticfield jdk/internal/misc/UnsafeConstants BIG_ENDIAN Z 0 +staticfield jdk/internal/misc/UnsafeConstants UNALIGNED_ACCESS Z 1 +staticfield jdk/internal/misc/UnsafeConstants DATA_CACHE_LINE_FLUSH_SIZE I 0 +ciInstanceKlass java/lang/invoke/LambdaForm 1 1 1059 7 1 100 1 10 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 10 7 12 1 1 9 12 1 10 12 1 1 100 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 9 12 1 9 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 9 100 12 1 1 1 10 12 1 1 9 7 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 9 12 1 1 9 12 1 9 12 1 1 10 12 1 9 12 1 10 100 12 1 1 1 10 12 1 1 7 1 10 12 1 9 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 7 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 8 1 10 12 1 10 12 1 10 10 12 1 8 1 8 1 9 12 1 9 12 1 1 10 12 1 1 10 12 1 9 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 10 100 12 1 1 1 9 12 1 10 12 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 9 12 1 7 1 10 12 1 1 9 12 1 10 12 1 10 12 1 1 10 12 10 12 1 10 12 1 1 10 12 1 1 10 10 12 1 1 10 12 1 1 7 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 8 1 10 12 1 1 8 1 8 1 8 1 10 12 1 10 12 1 10 12 1 1 100 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 9 12 1 1 8 1 10 100 12 1 1 1 10 7 12 1 1 10 12 10 12 1 1 10 12 1 1 9 12 1 8 10 12 1 1 100 1 10 12 1 1 10 12 1 9 7 12 1 1 9 7 12 1 1 1 8 1 10 100 12 1 1 10 12 1 1 7 1 7 1 10 10 12 1 1 10 12 1 1 8 1 8 1 7 1 8 1 10 12 10 12 1 10 12 1 10 12 1 1 8 1 8 1 10 12 1 10 12 1 1 8 1 8 1 8 1 7 1 8 1 7 1 8 1 7 1 8 1 10 12 1 8 1 9 10 7 12 1 1 1 10 12 1 9 12 1 1 10 12 1 10 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 8 1 100 10 12 1 10 12 1 9 12 1 1 10 7 12 1 1 8 1 8 1 7 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 8 1 8 1 8 1 10 12 1 8 1 10 12 1 8 1 8 1 8 1 8 1 8 1 10 12 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 9 12 1 1 8 1 10 12 1 1 9 12 1 1 10 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 7 1 10 7 12 1 1 1 9 12 1 10 12 1 10 12 1 8 1 10 12 1 9 12 1 1 7 1 10 7 12 1 1 1 8 1 100 1 10 12 1 9 12 1 9 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 9 7 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 9 12 10 12 1 10 10 12 1 9 12 1 9 9 12 1 7 9 12 1 1 10 12 1 1 9 12 1 10 12 1 10 7 1 9 1 1 1 1 3 1 3 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 100 1 1 7 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/invoke/LambdaForm DEFAULT_CUSTOMIZED Ljava/lang/invoke/MethodHandle; null +staticfield java/lang/invoke/LambdaForm DEFAULT_KIND Ljava/lang/invoke/LambdaForm$Kind; java/lang/invoke/LambdaForm$Kind +staticfield java/lang/invoke/LambdaForm COMPILE_THRESHOLD I 0 +staticfield java/lang/invoke/LambdaForm INTERNED_ARGUMENTS [[Ljava/lang/invoke/LambdaForm$Name; 5 [[Ljava/lang/invoke/LambdaForm$Name; +staticfield java/lang/invoke/LambdaForm IMPL_NAMES Ljava/lang/invoke/MemberName$Factory; java/lang/invoke/MemberName$Factory +staticfield java/lang/invoke/LambdaForm LF_identity [Ljava/lang/invoke/LambdaForm; 6 [Ljava/lang/invoke/LambdaForm; +staticfield java/lang/invoke/LambdaForm LF_zero [Ljava/lang/invoke/LambdaForm; 6 [Ljava/lang/invoke/LambdaForm; +staticfield java/lang/invoke/LambdaForm NF_identity [Ljava/lang/invoke/LambdaForm$NamedFunction; 6 [Ljava/lang/invoke/LambdaForm$NamedFunction; +staticfield java/lang/invoke/LambdaForm NF_zero [Ljava/lang/invoke/LambdaForm$NamedFunction; 6 [Ljava/lang/invoke/LambdaForm$NamedFunction; +staticfield java/lang/invoke/LambdaForm createFormsLock Ljava/lang/Object; java/lang/Object +staticfield java/lang/invoke/LambdaForm DEBUG_NAME_COUNTERS Ljava/util/HashMap; null +staticfield java/lang/invoke/LambdaForm DEBUG_NAMES Ljava/util/HashMap; null +staticfield java/lang/invoke/LambdaForm TRACE_INTERPRETER Z 0 +staticfield java/lang/invoke/LambdaForm $assertionsDisabled Z 1 +ciInstanceKlass java/lang/invoke/MemberName 1 1 724 7 1 7 1 100 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 9 7 12 1 1 10 12 1 7 1 7 1 10 12 1 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 9 12 1 1 8 1 10 100 12 1 1 1 7 1 10 10 12 1 1 100 1 100 1 10 12 1 9 12 1 1 100 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 8 1 8 1 10 12 1 8 1 9 12 1 1 3 10 12 1 10 12 1 10 12 1 10 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 7 1 8 10 12 1 1 10 12 1 1 8 1 9 7 1 8 9 7 1 10 12 1 1 10 12 1 10 12 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 7 1 10 12 1 1 10 12 1 8 1 10 12 1 10 12 1 8 1 10 12 1 1 10 12 1 1 7 1 10 12 1 1 10 12 8 1 8 1 7 1 10 12 1 10 100 12 1 1 1 100 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 10 12 1 10 12 1 10 12 1 3 10 12 1 3 10 12 1 3 3 3 3 3 3 10 12 1 3 9 12 1 10 12 1 1 3 10 12 1 10 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 10 10 12 1 10 12 1 1 10 12 1 10 10 12 1 1 10 12 1 10 12 1 10 12 1 7 1 10 10 10 12 100 1 10 10 10 12 1 1 10 12 1 1 10 10 12 1 8 10 7 1 10 12 1 10 7 1 10 12 1 10 12 1 10 12 1 10 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 100 1 10 12 1 1 100 1 8 1 10 7 1 10 12 1 10 12 10 12 1 1 10 12 1 10 12 1 8 1 8 1 8 1 8 1 10 12 1 10 12 1 10 7 12 1 1 1 8 1 8 1 10 12 1 8 1 10 10 10 12 1 10 12 1 8 1 8 1 10 10 12 1 8 1 10 100 12 1 1 1 8 1 100 1 10 12 1 10 12 1 1 10 12 1 8 1 8 1 8 1 8 1 100 1 10 8 1 8 1 8 1 8 1 10 12 1 7 1 100 1 7 1 10 100 1 10 7 1 10 7 12 1 1 1 9 7 12 1 1 1 7 1 7 1 1 1 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/invoke/MemberName $assertionsDisabled Z 1 +instanceKlass java/lang/invoke/VarHandleLongs$FieldInstanceReadOnly +instanceKlass java/lang/invoke/VarHandleBooleans$FieldInstanceReadOnly +instanceKlass java/lang/invoke/VarHandleReferences$FieldInstanceReadOnly +instanceKlass java/lang/invoke/VarHandleByteArrayAsDoubles$ByteArrayViewVarHandle +instanceKlass java/lang/invoke/VarHandleByteArrayAsFloats$ByteArrayViewVarHandle +instanceKlass java/lang/invoke/VarHandleByteArrayAsChars$ByteArrayViewVarHandle +instanceKlass java/lang/invoke/VarHandleByteArrayAsShorts$ByteArrayViewVarHandle +instanceKlass java/lang/invoke/VarHandleInts$FieldInstanceReadOnly +instanceKlass java/lang/invoke/VarHandleByteArrayAsLongs$ByteArrayViewVarHandle +instanceKlass java/lang/invoke/VarHandleByteArrayAsInts$ByteArrayViewVarHandle +instanceKlass java/lang/invoke/VarHandleReferences$FieldStaticReadOnly +ciInstanceKlass java/lang/invoke/VarHandle 1 1 473 10 7 12 1 1 1 10 7 12 1 1 9 12 1 1 9 12 1 1 100 1 10 8 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 9 100 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 9 12 1 10 12 1 9 12 1 1 10 7 12 1 1 10 12 1 9 7 12 1 1 1 9 12 1 1 10 12 1 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 8 1 10 12 1 10 12 1 9 12 1 1 9 12 1 10 12 1 10 12 1 1 10 12 1 10 10 100 12 1 1 1 10 12 1 1 10 12 1 1 10 7 12 1 1 1 10 100 12 1 1 1 10 100 12 1 1 1 9 12 1 1 9 10 12 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 1 9 12 1 1 10 12 1 1 9 12 1 10 12 1 10 12 1 10 7 12 1 1 100 1 10 9 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 8 10 12 1 1 7 1 10 12 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 1 1 1 1 1 100 1 1 1 100 1 1 100 1 100 1 100 1 100 1 100 1 100 1 1 1 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 +staticfield java/lang/invoke/VarHandle VFORM_OFFSET J 16 +staticfield java/lang/invoke/VarHandle $assertionsDisabled Z 1 +ciInstanceKlass java/util/Collections 1 1 932 10 7 12 1 1 1 11 7 12 1 1 1 7 1 11 12 1 1 7 1 10 12 1 1 10 12 1 11 12 1 1 7 1 11 12 1 1 11 12 1 1 10 12 1 11 100 12 1 1 11 12 1 1 11 12 1 10 12 1 10 12 1 10 12 11 100 12 1 1 1 10 12 1 1 11 12 1 11 12 1 1 9 12 1 1 100 1 10 10 12 1 1 10 12 1 11 100 12 1 1 1 11 12 1 1 10 12 1 11 12 1 100 1 8 1 10 12 1 11 7 12 1 1 1 11 7 1 11 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 11 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 11 12 1 1 7 1 10 12 1 11 7 1 100 1 10 12 1 11 7 1 7 1 10 12 1 11 100 1 100 1 10 12 1 11 7 1 7 1 10 12 1 11 100 1 100 1 10 12 1 11 7 1 11 7 1 10 12 10 11 7 1 7 1 10 12 1 11 100 1 100 1 10 11 100 1 100 1 10 12 1 11 100 1 100 1 10 12 1 7 1 10 10 12 1 7 1 10 10 12 1 100 1 10 100 1 10 100 1 10 100 1 10 10 12 1 10 7 1 10 100 1 10 100 1 10 100 1 10 12 1 10 100 12 1 1 1 100 1 100 1 10 12 1 100 1 10 12 1 100 1 10 12 1 100 1 10 12 1 100 1 10 12 1 100 1 10 100 1 10 12 1 100 1 10 12 1 100 1 10 12 1 9 7 12 1 1 1 9 100 12 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 7 1 10 12 7 1 10 100 1 10 7 1 10 7 1 10 12 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 100 1 10 12 1 9 7 12 1 1 1 9 7 12 1 1 1 7 1 9 12 1 1 10 12 7 1 10 7 1 10 11 100 12 1 1 11 12 1 10 12 1 11 11 12 1 11 11 12 1 8 1 7 1 10 11 100 1 10 12 1 100 1 10 100 12 1 1 1 100 1 10 12 1 7 1 10 7 1 10 7 1 10 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/util/Collections EMPTY_SET Ljava/util/Set; java/util/Collections$EmptySet +staticfield java/util/Collections EMPTY_LIST Ljava/util/List; java/util/Collections$EmptyList +staticfield java/util/Collections EMPTY_MAP Ljava/util/Map; java/util/Collections$EmptyMap +instanceKlass jdk/internal/reflect/FieldAccessorImpl +instanceKlass jdk/internal/reflect/ConstructorAccessorImpl +instanceKlass jdk/internal/reflect/MethodAccessorImpl +ciInstanceKlass jdk/internal/reflect/MagicAccessorImpl 1 1 16 10 7 12 1 1 1 100 1 1 1 1 1 1 1 1 +instanceKlass jdk/internal/reflect/DirectMethodHandleAccessor +ciInstanceKlass jdk/internal/reflect/MethodAccessorImpl 1 1 38 10 7 12 1 1 1 10 100 12 1 1 1 100 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/reflect/MethodAccessor 1 0 17 100 1 100 1 1 1 1 100 1 100 1 1 1 1 1 1 +instanceKlass jdk/internal/reflect/DirectConstructorHandleAccessor +instanceKlass jdk/internal/reflect/NativeConstructorAccessorImpl +ciInstanceKlass jdk/internal/reflect/ConstructorAccessorImpl 1 1 27 10 7 12 1 1 1 100 1 100 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 1 1 +ciInstanceKlass jdk/internal/reflect/ConstructorAccessor 1 0 16 100 1 100 1 1 1 1 100 1 100 1 100 1 1 1 +ciInstanceKlass jdk/internal/reflect/DelegatingClassLoader 0 0 18 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/reflect/CallerSensitive 1 0 17 100 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/reflect/NativeConstructorAccessorImpl 0 0 125 10 7 12 1 1 1 9 7 12 1 1 1 100 1 10 12 1 9 12 1 1 9 12 1 1 10 100 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 9 12 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 100 1 10 10 12 1 1 10 12 1 10 12 1 1 10 12 1 7 1 10 12 1 1 10 12 1 1 8 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 100 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/reflect/ConstantPool 1 1 142 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 100 12 1 1 1 8 11 7 12 1 1 1 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/reflect/UnsafeStaticFieldAccessorImpl 0 0 47 10 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 8 11 100 12 1 1 1 10 100 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/reflect/FieldAccessor 1 0 48 100 1 100 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass jdk/internal/reflect/MethodHandleFieldAccessorImpl +instanceKlass jdk/internal/reflect/UnsafeFieldAccessorImpl +ciInstanceKlass jdk/internal/reflect/FieldAccessorImpl 1 1 269 10 7 12 1 1 1 9 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 10 7 12 1 1 1 10 12 1 1 7 1 10 10 12 1 1 10 12 1 1 8 1 10 10 12 1 100 1 8 1 10 12 1 8 1 10 12 1 8 1 10 12 1 100 1 10 12 1 1 10 8 1 10 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 8 1 10 7 12 1 1 10 12 1 1 8 1 10 12 1 1 10 100 12 1 1 1 8 1 10 12 1 8 1 8 1 8 1 8 1 10 7 12 1 1 1 8 1 8 1 8 1 10 12 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass jdk/internal/reflect/UnsafeStaticFieldAccessorImpl +ciInstanceKlass jdk/internal/reflect/UnsafeFieldAccessorImpl 0 0 62 10 100 12 1 1 1 10 100 12 1 1 1 10 100 12 1 1 1 9 100 12 1 1 10 12 1 9 12 1 1 10 100 12 1 1 1 9 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/lang/invoke/VolatileCallSite +instanceKlass java/lang/invoke/MutableCallSite +instanceKlass java/lang/invoke/ConstantCallSite +ciInstanceKlass java/lang/invoke/CallSite 1 1 307 10 7 12 1 1 1 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 7 1 10 12 1 1 10 12 1 1 9 100 12 1 1 1 10 7 12 1 1 10 12 1 1 100 1 7 1 10 10 7 12 1 1 1 10 12 1 1 8 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 10 100 12 1 1 10 12 1 1 9 12 1 9 100 12 1 1 1 8 1 10 7 12 1 1 1 10 12 1 1 7 1 10 12 1 1 9 12 1 8 1 100 1 10 12 1 10 12 1 100 1 8 1 10 10 12 1 10 12 1 1 100 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 1 8 10 12 1 1 9 12 1 1 100 1 10 10 12 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 7 1 8 1 10 10 12 10 12 1 1 7 1 7 1 7 1 8 1 10 12 1 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 7 1 1 1 1 +staticfield java/lang/invoke/CallSite $assertionsDisabled Z 1 +ciInstanceKlass java/lang/invoke/ConstantCallSite 1 1 65 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 10 7 12 1 1 1 10 12 1 100 1 10 12 9 12 1 1 100 1 10 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 +staticfield java/lang/invoke/ConstantCallSite UNSAFE Ljdk/internal/misc/Unsafe; jdk/internal/misc/Unsafe +instanceKlass java/lang/invoke/DirectMethodHandle$Special +instanceKlass java/lang/invoke/DirectMethodHandle$StaticAccessor +instanceKlass java/lang/invoke/DirectMethodHandle$Interface +instanceKlass java/lang/invoke/DirectMethodHandle$Constructor +instanceKlass java/lang/invoke/DirectMethodHandle$Accessor +ciInstanceKlass java/lang/invoke/DirectMethodHandle 1 1 923 7 1 7 1 100 1 7 1 7 1 10 7 12 1 1 1 10 7 12 1 1 1 7 1 10 12 1 10 12 1 1 10 7 12 1 1 10 12 1 1 10 12 1 10 12 1 7 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 9 12 1 1 100 1 10 9 12 1 1 9 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 1 8 1 10 12 1 1 7 1 10 12 1 7 1 10 10 12 1 10 12 1 10 12 1 10 7 12 1 1 1 10 12 1 1 7 1 10 12 1 10 12 1 7 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 8 10 7 12 1 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 9 7 12 1 1 1 7 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 1 9 12 1 1 7 1 10 8 1 10 12 1 1 10 12 1 1 8 1 10 12 1 10 12 1 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 10 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 8 1 9 7 12 1 1 1 8 1 9 12 1 9 12 1 8 1 9 12 1 9 12 1 8 1 9 12 1 9 12 1 8 1 10 12 1 10 12 1 1 9 12 1 1 7 1 10 12 1 1 7 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 1 7 1 10 12 1 1 10 12 1 10 12 1 1 7 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 9 12 1 1 10 7 1 9 12 9 12 1 10 7 12 1 1 1 10 12 1 7 1 7 1 7 1 9 12 1 1 10 7 12 1 1 1 10 12 10 12 1 7 1 10 12 1 10 12 1 1 8 1 9 12 1 9 12 1 10 12 1 1 9 12 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 9 12 1 1 10 12 1 1 9 7 12 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 8 1 9 12 1 1 9 12 1 1 10 12 1 10 12 1 1 9 7 1 10 12 1 9 12 1 1 10 12 10 12 1 10 12 1 10 12 1 10 12 1 10 8 1 8 1 8 1 8 1 10 12 1 1 9 12 1 1 10 12 1 10 100 12 1 1 1 8 9 12 1 1 10 12 1 1 8 1 8 8 9 12 1 8 1 8 8 8 8 8 1 8 10 12 1 7 1 10 12 1 8 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 1 7 1 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 3 1 3 1 1 1 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield java/lang/invoke/DirectMethodHandle IMPL_NAMES Ljava/lang/invoke/MemberName$Factory; java/lang/invoke/MemberName$Factory +staticfield java/lang/invoke/DirectMethodHandle FT_UNCHECKED_REF I 8 +staticfield java/lang/invoke/DirectMethodHandle ACCESSOR_FORMS [Ljava/lang/invoke/LambdaForm; 132 [Ljava/lang/invoke/LambdaForm; +staticfield java/lang/invoke/DirectMethodHandle ALL_WRAPPERS [Lsun/invoke/util/Wrapper; 10 [Lsun/invoke/util/Wrapper; +staticfield java/lang/invoke/DirectMethodHandle NFS [Ljava/lang/invoke/LambdaForm$NamedFunction; 12 [Ljava/lang/invoke/LambdaForm$NamedFunction; +staticfield java/lang/invoke/DirectMethodHandle OBJ_OBJ_TYPE Ljava/lang/invoke/MethodType; java/lang/invoke/MethodType +staticfield java/lang/invoke/DirectMethodHandle LONG_OBJ_TYPE Ljava/lang/invoke/MethodType; java/lang/invoke/MethodType +staticfield java/lang/invoke/DirectMethodHandle $assertionsDisabled Z 1 +ciInstanceKlass java/lang/invoke/MutableCallSite 0 0 63 10 100 12 1 1 1 10 12 1 9 100 12 1 1 1 10 12 1 10 12 1 1 9 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 +ciInstanceKlass java/lang/invoke/VolatileCallSite 0 0 37 10 100 12 1 1 1 10 12 1 10 100 12 1 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/invoke/ResolvedMethodName 1 1 16 10 100 12 1 1 1 100 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/invoke/MethodHandleNatives 1 1 690 100 1 10 7 12 1 1 1 9 7 12 1 1 1 10 12 1 1 100 1 10 10 12 1 1 10 12 1 10 12 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 1 7 1 10 7 12 1 1 1 10 7 12 1 1 1 7 1 10 10 12 1 1 8 1 10 12 1 8 1 10 12 1 1 8 1 10 12 1 1 9 7 12 1 1 1 8 1 10 100 12 1 1 1 7 1 10 12 100 1 100 1 8 1 7 1 10 10 12 1 7 1 9 7 12 1 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 9 12 1 8 1 10 12 1 1 10 12 1 8 1 10 12 1 1 7 1 10 12 1 10 7 12 1 1 1 10 12 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 8 1 10 12 1 8 1 8 1 8 1 7 1 10 12 1 8 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 10 10 12 1 1 10 12 1 10 100 12 1 1 1 100 1 8 1 10 100 12 1 1 1 7 1 8 1 10 12 1 8 1 8 1 8 1 8 1 8 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 7 1 10 12 1 7 1 7 1 10 12 1 10 12 1 8 1 8 1 10 10 12 1 1 10 12 1 1 8 1 10 7 12 1 1 8 1 8 1 10 12 1 1 10 7 12 1 1 1 100 1 10 12 1 1 7 1 9 12 1 1 10 7 12 1 1 1 10 10 12 1 9 12 1 10 12 1 9 12 1 9 12 1 10 12 1 1 10 12 1 10 12 1 1 7 1 7 1 10 12 1 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 12 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 7 12 1 1 1 10 12 1 1 100 1 8 1 10 9 7 12 1 1 1 10 12 1 1 10 12 1 1 7 1 10 12 1 1 10 12 1 1 100 1 100 1 10 10 100 1 100 1 10 100 1 10 10 12 1 1 10 7 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 8 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 10 7 12 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 100 1 1 1 +staticfield java/lang/invoke/MethodHandleNatives $assertionsDisabled Z 1 +ciInstanceKlass java/lang/invoke/MethodHandleNatives$CallSiteContext 1 1 49 10 7 12 1 1 1 7 1 10 10 7 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 +ciInstanceKlass jdk/internal/foreign/abi/NativeEntryPoint 0 0 194 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 100 1 8 1 10 12 1 10 12 1 1 100 1 10 100 12 1 1 1 10 12 1 9 12 1 1 18 12 1 1 10 100 12 1 1 1 10 7 12 1 1 1 9 7 12 1 1 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 8 1 10 12 1 1 7 1 8 1 10 12 1 10 12 1 1 10 12 1 9 12 1 1 18 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 10 100 12 1 1 1 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 1 15 10 12 16 1 16 15 10 12 15 10 100 12 1 1 1 1 1 100 1 1 100 1 100 1 1 +ciInstanceKlass jdk/internal/foreign/abi/ABIDescriptor 0 0 55 10 100 12 1 1 1 9 100 12 1 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass jdk/internal/foreign/abi/VMStorage 0 0 91 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 1 9 12 1 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 18 12 1 18 12 1 1 18 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 15 15 15 15 15 10 100 12 1 1 1 1 100 1 100 1 1 +ciInstanceKlass jdk/internal/foreign/abi/UpcallLinker$CallRegs 0 0 66 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 18 12 1 1 18 12 1 1 18 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 8 1 15 15 15 10 100 12 1 1 1 1 1 100 1 100 1 1 +ciInstanceKlass java/lang/StackWalker 1 1 271 9 7 12 1 1 1 7 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 11 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 100 1 8 1 10 12 1 10 12 1 10 12 1 10 7 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 10 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 10 7 12 1 1 1 11 12 1 1 100 1 8 1 10 10 7 12 1 1 9 12 1 1 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 18 12 1 1 100 1 8 1 10 8 1 10 12 1 1 10 100 12 1 1 1 10 12 1 1 9 100 12 1 1 11 100 12 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 16 15 10 12 16 1 15 10 100 12 1 1 1 1 1 1 1 1 1 100 1 100 1 1 +staticfield java/lang/StackWalker DEFAULT_EMPTY_OPTION Ljava/util/EnumSet; java/util/RegularEnumSet +staticfield java/lang/StackWalker DEFAULT_WALKER Ljava/lang/StackWalker; java/lang/StackWalker +ciInstanceKlass java/lang/StackWalker$StackFrame 0 0 41 100 1 10 12 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 +instanceKlass java/lang/LiveStackFrameInfo +ciInstanceKlass java/lang/StackFrameInfo 0 0 142 10 7 12 1 1 1 9 7 12 1 1 1 9 7 1 9 12 1 1 11 100 12 1 1 1 9 12 1 1 11 12 1 1 10 12 1 1 10 7 12 1 1 1 10 12 1 11 12 1 11 12 1 1 11 12 1 10 12 1 1 9 12 1 1 10 12 1 1 10 7 12 1 1 10 12 1 1 11 12 1 1 9 12 1 1 10 7 1 10 12 1 9 12 1 1 10 12 1 1 100 1 8 1 10 12 1 10 100 12 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 7 1 1 1 1 1 1 +ciInstanceKlass java/lang/LiveStackFrameInfo 0 0 97 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 9 12 1 9 12 1 9 12 1 1 7 1 10 12 1 1 10 12 1 8 1 10 12 1 1 8 1 8 1 8 1 10 100 1 10 12 1 100 1 10 12 1 7 1 7 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 +ciInstanceKlass java/lang/LiveStackFrame 0 0 135 100 1 10 100 12 1 1 1 11 7 12 1 1 1 11 12 1 10 7 12 1 1 1 100 1 8 1 10 12 1 1 10 7 12 1 1 1 9 100 12 1 1 1 10 7 12 1 1 1 10 7 12 1 1 1 11 12 1 10 12 1 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 100 1 8 1 1 12 10 1 1 1 8 1 1 1 8 1 1 1 8 1 1 1 8 1 1 8 1 1 1 8 1 1 8 1 +ciInstanceKlass java/lang/StackStreamFactory$AbstractStackWalker 1 0 375 100 1 7 1 3 10 7 12 1 1 1 10 7 12 1 1 10 7 12 1 1 1 9 12 1 1 10 12 1 1 9 12 1 1 9 12 1 1 9 12 1 1 9 12 1 10 7 12 1 1 1 10 12 1 1 10 7 12 1 1 9 12 1 1 9 12 1 1 10 12 1 1 9 100 12 1 1 1 10 12 1 1 10 12 1 9 12 1 1 10 100 12 1 1 1 10 12 1 1 9 12 1 1 9 7 12 1 1 1 7 1 10 8 1 10 12 1 1 10 12 1 8 1 10 12 1 1 10 100 12 1 1 1 100 1 8 1 10 12 1 8 1 10 12 10 100 12 1 1 9 12 1 8 1 5 0 8 1 8 1 9 12 1 1 10 12 1 1 18 12 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 10 12 1 9 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 8 1 10 12 1 10 12 1 10 12 1 10 12 1 1 8 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 10 12 1 9 12 1 8 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 8 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 7 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 15 10 100 12 1 1 1 1 1 1 1 1 100 1 100 1 1 +ciInstanceKlass jdk/internal/module/Modules 1 1 504 10 7 12 1 1 1 9 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 11 12 1 1 11 12 1 1 11 12 1 11 12 1 11 12 1 11 12 1 11 12 1 1 10 7 12 1 1 1 10 100 12 1 1 1 18 12 1 1 10 7 12 1 1 1 7 1 10 7 12 1 1 1 10 100 12 1 1 1 10 100 12 1 1 10 12 1 1 11 12 1 9 12 1 1 11 7 12 1 1 1 10 12 1 1 10 10 12 1 10 9 12 1 1 10 100 12 1 1 10 12 1 1 10 100 12 1 1 100 1 11 100 12 1 1 1 10 100 12 1 1 1 11 100 12 1 1 10 12 1 1 10 100 12 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 11 12 1 1 18 12 1 1 11 100 12 1 1 10 100 12 1 1 1 11 100 12 1 1 1 7 1 11 12 1 1 11 7 12 1 1 1 11 12 1 1 10 12 1 1 10 100 12 1 1 18 12 1 1 11 12 1 1 18 12 1 1 11 12 1 1 10 12 1 18 18 10 12 1 1 9 12 1 1 11 7 12 1 1 1 100 1 10 11 12 1 11 12 1 1 11 12 1 1 10 100 1 10 12 1 1 10 100 12 1 1 10 12 1 1 11 12 10 12 1 1 7 1 10 18 12 1 10 12 1 1 7 1 8 1 10 12 1 10 100 12 1 1 18 12 1 11 11 12 10 12 1 10 10 100 1 18 12 1 10 10 10 7 12 1 1 10 7 12 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 10 12 1 16 16 15 10 12 1 16 1 16 1 15 10 12 1 16 1 16 1 15 10 12 16 1 15 10 16 1 15 10 12 16 1 15 10 12 16 15 10 12 16 15 10 12 15 10 100 12 1 1 1 1 1 1 100 1 100 1 1 +staticfield jdk/internal/module/Modules JLA Ljdk/internal/access/JavaLangAccess; java/lang/System$2 +staticfield jdk/internal/module/Modules JLMA Ljdk/internal/access/JavaLangModuleAccess; java/lang/module/ModuleDescriptor$1 +staticfield jdk/internal/module/Modules $assertionsDisabled Z 1 +ciInstanceKlass java/util/ArrayList 1 1 509 10 7 12 1 1 1 7 1 9 7 12 1 1 1 9 12 1 100 1 7 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 9 12 1 11 7 12 1 1 1 9 12 1 1 11 12 1 1 7 10 7 12 1 1 1 9 12 1 10 12 1 10 12 1 1 10 7 12 1 1 1 10 7 12 1 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 100 1 7 1 10 12 1 10 10 7 12 1 1 1 10 7 12 1 1 10 12 1 100 1 10 10 12 10 12 1 1 10 12 1 1 10 12 1 10 12 10 12 1 1 7 1 10 12 1 1 10 12 1 1 10 12 1 100 1 10 11 12 1 1 11 7 12 1 1 1 11 12 1 10 12 1 10 12 1 10 12 1 1 100 1 10 12 1 1 10 10 12 1 1 10 12 1 8 1 8 1 8 1 8 1 10 12 1 1 10 12 1 1 11 12 1 7 1 10 100 12 1 1 10 12 1 10 12 1 1 10 100 12 1 1 10 12 1 10 100 12 1 1 1 11 100 12 1 1 1 10 12 1 100 1 8 1 10 7 1 10 12 1 7 1 10 12 1 10 12 1 1 7 1 10 12 1 10 12 1 1 11 7 12 1 1 7 1 10 12 1 10 12 1 1 11 100 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 11 100 12 1 1 10 12 1 1 7 1 7 1 7 1 1 1 1 5 0 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 1 1 1 1 +staticfield java/util/ArrayList EMPTY_ELEMENTDATA [Ljava/lang/Object; 0 [Ljava/lang/Object; +staticfield java/util/ArrayList DEFAULTCAPACITY_EMPTY_ELEMENTDATA [Ljava/lang/Object; 0 [Ljava/lang/Object; +ciInstanceKlass java/util/RandomAccess 1 0 7 100 1 100 1 1 1 +ciMethod java/util/ArrayList add (Ljava/lang/Object;)Z 518 0 9738 0 1416 +ciMethod java/util/ArrayList iterator ()Ljava/util/Iterator; 524 0 5804 0 200 +ciMethod java/util/ArrayList remove (I)Ljava/lang/Object; 514 0 1085 0 -1 +ciMethod java/util/ArrayList ()V 182 0 5571 0 112 +ciMethod java/util/ArrayList add (Ljava/lang/Object;[Ljava/lang/Object;I)V 518 0 9738 0 -1 +ciInstanceKlass java/util/regex/Pattern 1 1 1581 7 1 10 12 1 1 9 12 1 1 9 12 1 1 10 12 1 1 7 1 10 12 1 9 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 7 1 10 12 10 12 1 10 12 1 1 10 12 1 11 7 12 1 1 1 11 12 1 1 10 12 1 1 11 12 1 7 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 11 7 12 1 1 1 7 1 8 1 10 12 1 1 7 1 10 8 1 10 12 1 1 10 10 7 1 3 10 12 1 10 12 1 8 1 10 12 1 10 100 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 7 1 9 12 1 1 10 12 1 9 12 1 9 12 1 10 7 1 100 1 8 1 10 12 1 1 10 12 1 7 1 8 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 9 12 1 100 1 10 10 7 12 1 1 1 10 12 1 1 8 1 10 12 10 12 1 10 100 12 1 1 1 10 12 1 1 9 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 10 7 12 1 1 10 12 1 100 1 10 11 100 1 10 12 1 1 8 1 18 12 1 1 11 12 1 1 10 10 12 1 1 8 1 9 12 1 10 12 1 8 1 10 12 1 10 12 10 12 1 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 7 1 8 1 10 10 10 7 12 1 1 1 10 100 12 1 1 9 12 1 9 12 1 1 10 7 12 1 1 10 12 1 100 1 8 1 10 12 1 10 12 1 10 100 12 1 1 1 10 12 1 10 12 9 12 1 9 12 1 10 12 1 10 12 1 9 12 1 7 1 9 12 1 1 9 12 1 1 10 9 12 1 1 10 12 1 1 9 7 12 1 1 10 12 1 1 9 12 1 10 12 1 8 1 8 1 8 1 7 1 10 7 12 1 1 7 1 10 7 1 7 1 9 12 1 11 12 1 1 11 7 12 1 1 11 12 1 7 1 9 12 1 7 1 10 10 12 1 1 11 7 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 10 12 1 3 10 12 1 1 10 12 1 7 1 10 10 7 12 1 10 12 1 10 12 10 12 1 1 100 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 100 1 10 100 1 10 10 100 1 10 12 1 7 1 10 7 1 10 12 1 1 10 10 12 1 10 12 1 8 1 8 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 100 12 1 1 1 10 12 1 100 1 10 12 1 100 1 10 10 12 1 10 12 1 10 12 1 1 100 1 9 12 1 10 10 7 12 1 1 10 12 1 1 9 12 1 1 11 7 12 1 1 100 1 10 10 12 1 11 7 1 10 12 1 100 1 10 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 100 1 10 100 1 10 9 12 1 10 12 1 8 1 10 12 1 11 12 1 8 1 8 1 10 12 1 10 12 1 10 12 1 100 1 10 8 1 7 1 10 11 12 1 1 8 1 8 1 11 12 1 8 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 10 12 1 10 12 1 8 1 10 12 1 10 12 1 1 10 12 1 10 12 1 8 1 8 1 9 100 12 1 1 1 10 12 1 10 12 1 8 1 8 1 8 1 8 1 8 1 8 1 10 12 1 1 10 12 1 10 12 1 1 8 1 8 1 8 1 8 1 10 12 1 1 8 1 10 12 1 10 12 1 8 1 8 1 7 1 10 12 1 8 1 10 12 1 8 1 11 10 12 1 1 100 1 10 100 1 10 7 1 9 7 12 1 1 1 10 12 1 11 12 1 8 1 8 1 10 12 1 11 12 1 1 9 7 12 1 1 1 7 1 10 10 12 1 1 9 12 1 8 1 10 12 1 1 100 1 9 12 1 9 12 1 10 12 1 100 1 10 100 1 10 7 1 10 11 11 12 1 8 1 10 12 1 8 1 8 1 10 12 1 9 12 1 9 12 1 9 12 1 7 1 9 7 1 7 1 9 12 1 9 12 1 9 12 1 9 12 1 10 12 1 9 10 12 3 11 100 1 10 7 1 10 12 1 9 9 9 12 1 8 1 10 10 9 12 1 1 10 12 1 9 12 1 10 12 1 1 7 1 10 12 1 7 1 10 12 1 10 12 1 10 12 1 1 8 1 8 1 8 1 8 1 8 1 10 12 1 10 12 1 3 8 1 8 1 8 1 8 1 10 12 1 10 12 1 10 12 10 12 1 10 12 1 1 10 12 1 8 1 10 12 1 8 1 8 1 8 1 11 100 1 10 12 1 100 1 10 100 1 10 7 1 10 100 1 10 10 9 12 1 9 12 1 10 12 1 18 12 1 1 18 12 1 18 18 18 12 1 18 12 1 18 12 18 12 18 18 12 18 18 18 12 18 12 18 12 18 3 3 18 18 12 18 18 18 12 1 1 18 100 1 10 100 1 10 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 11 12 10 7 12 1 1 10 9 12 7 1 10 7 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 16 1 15 10 12 16 16 15 10 12 15 10 12 15 10 12 15 10 12 15 10 12 15 10 12 15 10 12 15 10 12 15 10 12 15 10 12 15 10 12 15 10 12 15 10 12 15 10 12 15 10 12 15 10 12 15 10 12 15 10 12 15 10 12 15 10 12 16 15 10 12 16 15 10 12 15 10 7 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 100 1 1 +staticfield java/util/regex/Pattern accept Ljava/util/regex/Pattern$Node; java/util/regex/Pattern$Node +staticfield java/util/regex/Pattern lastAccept Ljava/util/regex/Pattern$Node; java/util/regex/Pattern$LastNode +staticfield java/util/regex/Pattern $assertionsDisabled Z 1 +ciMethod java/util/regex/Pattern compile ()V 34 1030 17 0 -1 +ciMethod java/util/regex/Pattern matcher (Ljava/lang/CharSequence;)Ljava/util/regex/Matcher; 516 0 305 0 -1 +ciInstanceKlass java/util/regex/Matcher 1 1 489 10 7 12 1 1 1 7 1 9 12 1 1 9 12 1 9 12 1 9 12 1 9 12 1 9 12 1 1 9 12 1 9 12 1 1 9 12 1 1 9 7 12 1 1 10 7 12 1 1 1 9 12 1 1 9 12 1 9 12 1 9 12 1 7 1 9 12 1 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 11 7 12 1 1 1 11 12 1 1 100 1 10 12 1 10 100 12 1 1 10 12 1 1 10 12 1 11 12 1 10 12 1 100 1 8 1 10 12 1 9 12 1 9 12 1 10 12 1 9 12 1 10 12 1 9 12 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 1 100 1 8 1 10 10 7 12 1 1 1 7 1 10 10 10 12 1 1 10 12 1 1 10 10 7 1 10 12 1 10 12 1 1 10 12 1 10 10 12 1 10 8 1 11 7 12 1 1 8 1 10 100 12 1 1 10 12 1 10 12 1 8 1 8 1 10 12 1 1 8 1 10 12 1 8 1 11 7 12 1 1 1 7 1 8 1 8 1 10 12 1 8 1 10 12 1 10 12 1 11 12 1 100 1 100 1 10 12 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 10 100 12 1 1 11 100 12 1 1 100 1 10 100 1 10 12 1 100 1 10 100 12 1 1 1 10 100 12 1 1 1 100 1 8 1 10 8 8 8 1 8 1 8 1 10 12 1 1 10 12 1 8 1 10 12 1 10 12 1 10 12 1 8 1 10 12 9 12 1 9 12 1 9 12 1 1 10 7 12 1 1 9 12 1 11 8 1 10 12 1 8 1 8 1 8 1 100 1 8 1 10 10 7 1 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciMethod java/util/regex/Matcher (Ljava/util/regex/Pattern;Ljava/lang/CharSequence;)V 522 0 311 0 -1 +ciMethod java/util/regex/Matcher group (I)Ljava/lang/String; 504 0 241 0 -1 +ciMethod java/util/regex/Matcher reset ()Ljava/util/regex/Matcher; 228 4674 312 0 -1 +ciMethod java/util/regex/Matcher matches ()Z 452 0 223 0 -1 +ciMethod java/util/regex/Matcher find ()Z 1024 0 1258 0 -1 +ciMethod java/util/regex/Matcher getTextLength ()I 228 0 312 0 -1 +ciInstanceKlass java/lang/annotation/Annotation 1 0 17 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/util/function/BiFunction 1 1 65 10 100 12 1 1 1 18 12 1 1 11 7 12 1 1 11 100 12 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 16 15 11 12 15 10 100 12 1 1 1 1 100 1 100 1 1 +instanceKlass java/util/ArrayList$ListItr +ciInstanceKlass java/util/ArrayList$Itr 1 1 104 9 7 12 1 1 1 10 7 12 1 1 1 9 12 1 1 9 7 12 1 1 9 12 1 9 12 1 9 12 1 10 12 1 100 1 10 9 12 1 1 100 1 10 100 1 10 10 12 1 1 100 1 10 100 12 1 1 1 10 12 1 1 11 100 12 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciMethod java/util/ArrayList$Itr remove ()V 12 0 6 0 0 +ciMethod java/util/ArrayList$Itr hasNext ()Z 514 0 6236 0 120 +ciMethod java/util/ArrayList$Itr next ()Ljava/lang/Object; 512 0 5621 0 272 +ciMethod java/util/ArrayList$Itr (Ljava/util/ArrayList;)V 524 0 5805 0 0 +ciMethod java/util/ArrayList$Itr checkForComodification ()V 510 0 5627 0 0 +ciMethod java/util/Iterator remove ()V 0 0 1 0 -1 +ciInstanceKlass jdk/internal/util/Preconditions$4 1 1 61 9 7 12 1 1 1 10 7 12 1 1 1 10 100 12 1 1 1 11 100 12 1 1 1 100 1 100 1 100 1 10 12 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 1 1 1 1 +ciInstanceKlass java/util/Arrays$ArrayList 1 1 149 10 7 12 1 1 1 10 7 12 1 1 1 7 1 9 7 12 1 1 10 7 12 1 1 1 10 12 1 1 10 100 12 1 1 1 10 100 12 1 1 1 10 12 1 1 10 12 1 1 100 1 10 100 12 1 1 1 11 100 12 1 1 1 11 100 12 1 1 10 12 1 1 7 1 10 12 1 100 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/util/Collections$UnmodifiableRandomAccessList +ciInstanceKlass java/util/Collections$UnmodifiableList 1 1 127 10 7 12 1 1 1 9 7 12 1 1 1 11 7 12 1 1 1 11 12 1 1 11 12 1 1 100 1 10 12 1 11 12 1 1 11 12 1 10 12 1 1 100 1 10 12 1 11 12 1 1 10 12 1 100 1 100 1 10 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 100 1 1 1 1 1 +ciMethod java/util/Collections$UnmodifiableList (Ljava/util/List;)V 526 0 2104 0 -1 +ciInstanceKlass java/util/Collections$UnmodifiableRandomAccessList 1 1 52 10 7 12 1 1 1 7 1 9 12 1 1 11 7 12 1 1 1 10 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 +ciMethod java/util/Collections$UnmodifiableRandomAccessList (Ljava/util/List;)V 524 0 2101 0 -1 +ciInstanceKlass java/util/Collections$UnmodifiableCollection$1 1 1 71 9 7 12 1 1 1 10 7 12 1 1 1 9 7 12 1 1 1 11 7 12 1 1 1 9 12 1 1 11 7 12 1 1 1 11 12 1 1 100 1 10 11 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 1 +ciInstanceKlass java/util/regex/IntHashSet 1 1 54 10 7 12 1 1 1 9 7 12 1 1 1 9 12 1 1 9 12 1 10 7 12 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 +ciMethod java/util/regex/IntHashSet clear ()V 0 0 1 0 -1 +ciMethod java/util/Collections unmodifiableList (Ljava/util/List;)Ljava/util/List; 520 0 1129 0 0 +ciMethod jdk/internal/util/Preconditions checkIndex (IILjava/util/function/BiFunction;)I 792 0 3706 0 -1 +ciMethod java/lang/Integer valueOf (I)Ljava/lang/Integer; 152 0 1508 0 0 +ciMethod java/lang/Integer (I)V 528 0 546 0 0 +ciMethod java/lang/Number ()V 608 0 2534 0 0 +ciMethod java/lang/Character valueOf (C)Ljava/lang/Character; 80 0 40 0 -1 +ciMethod jdk/internal/util/ArraysSupport vectorizedHashCode (Ljava/lang/Object;IIII)I 1024 0 11279 0 -1 +ciMethod java/lang/Math max (II)I 514 0 32808 0 -1 +ciMethod java/lang/Math min (II)I 524 0 45936 0 -1 +ciMethod java/util/Iterator next ()Ljava/lang/Object; 0 0 1 0 -1 +ciMethod java/util/Iterator hasNext ()Z 0 0 1 0 -1 +ciMethod java/lang/String replace (Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/lang/String; 528 0 6062 0 -1 +ciMethod java/lang/String isLatin1 ()Z 1024 0 400749 0 112 +ciMethod java/lang/String coder ()B 646 0 225090 0 88 +ciMethod java/lang/String indexOf (II)I 144 0 7095 0 544 +ciMethod java/lang/String checkIndex (II)V 792 0 355565 0 0 +ciMethod java/lang/CharSequence length ()I 0 0 1 0 -1 +ciMethod java/lang/StringBuilder append (Ljava/lang/String;)Ljava/lang/StringBuilder; 10 0 52495 0 -1 +ciMethod java/lang/StringBuilder ()V 10 0 13101 0 -1 +ciMethod java/lang/StringBuilder (Ljava/lang/String;)V 514 0 4304 0 -1 +ciMethod java/lang/Object getClass ()Ljava/lang/Class; 256 0 128 0 -1 +ciMethod java/lang/Object ()V 1024 0 238955 0 136 +ciInstanceKlass lombok/patcher/TargetMatcher 1 0 15 100 1 100 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass lombok/patcher/MethodTarget 1 1 305 7 1 7 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 1 1 1 1 1 1 1 10 7 1 12 1 1 9 12 8 1 9 12 8 1 9 12 1 1 1 1 9 12 10 7 1 12 1 1 100 1 10 12 1 1 10 12 1 1 10 12 1 1 8 1 10 12 1 1 9 12 10 12 1 1 1 1 1 1 1 1 1 1 1 9 12 1 1 1 9 12 1 1 9 12 1 10 12 1 1 1 1 1 1 8 1 10 12 1 1 10 100 1 12 1 10 12 100 1 8 10 8 8 8 8 1 10 12 1 1 8 1 100 1 8 1 10 10 7 1 12 1 1 10 7 1 12 1 1 1 1 1 10 12 1 1 10 7 1 12 1 8 1 7 1 10 10 12 1 11 7 1 12 1 10 12 1 1 1 1 1 1 1 1 1 10 12 1 1 1 1 1 10 12 1 1 1 10 12 10 12 1 1 10 12 11 12 1 1 11 7 1 12 1 1 10 12 1 11 12 1 1 1 1 1 8 1 10 12 1 1 10 12 1 1 10 12 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 1 1 1 1 1 8 1 10 12 1 1 1 10 12 11 1 10 12 1 1 11 1 1 1 8 1 8 1 8 1 8 1 10 12 1 8 1 10 12 1 8 1 1 1 +staticfield lombok/patcher/MethodTarget PARAM_SPEC Ljava/util/regex/Pattern; java/util/regex/Pattern +staticfield lombok/patcher/MethodTarget COMPLETE_SPEC Ljava/util/regex/Pattern; java/util/regex/Pattern +staticfield lombok/patcher/MethodTarget BRACE_PAIRS Ljava/util/regex/Pattern; java/util/regex/Pattern +ciInstanceKlass lombok/patcher/Hook 1 1 233 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 10 12 1 8 1 8 1 11 7 1 12 1 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 10 7 1 12 1 1 9 12 1 1 1 1 1 10 100 1 8 1 10 12 1 8 8 8 9 12 9 12 9 12 7 1 10 11 7 1 12 1 1 10 12 1 1 9 12 1 1 1 1 1 1 1 8 10 7 1 12 1 1 1 1 1 1 1 1 1 10 12 1 1 1 7 1 10 8 1 10 12 1 1 11 12 1 1 11 7 1 12 1 1 10 12 1 11 12 1 8 1 10 12 1 1 1 1 10 12 1 1 10 12 1 1 8 1 8 1 10 12 1 1 11 12 1 1 8 1 10 12 1 1 8 1 10 12 1 1 10 1 1 10 12 11 1 10 12 1 1 11 1 1 1 8 1 10 8 1 8 1 8 1 10 12 1 8 1 1 1 +staticfield lombok/patcher/Hook PRIMITIVES Ljava/util/Map; java/util/Collections$UnmodifiableMap +instanceKlass lombok/patcher/scripts/AddFieldScript$1 +instanceKlass lombok/patcher/PatchScript$MethodPatcher +instanceKlass org/lombokweb/asm/ClassWriter +instanceKlass lombok/patcher/PatchScript$NoopClassVisitor +ciInstanceKlass org/lombokweb/asm/ClassVisitor 1 1 175 1 7 1 7 1 1 100 1 100 1 1 1 1 1 1 1 1 12 10 1 1 12 10 3 3 3 3 3 3 3 1 100 1 1 1 100 10 1 8 1 1 12 10 1 12 10 1 1 12 10 12 10 1 12 10 1 100 1 1 12 10 12 9 12 9 1 1 1 1 1 3 1 100 1 8 10 12 10 1 1 1 1 1 1 1 1 1 1 12 10 1 1 1 1 1 8 12 10 1 1 8 12 10 1 1 1 12 10 1 1 1 1 12 10 1 1 1 1 1 8 12 10 1 1 1 1 1 12 10 1 1 1 1 8 12 10 1 1 1 8 12 10 1 1 1 12 10 1 1 1 1 1 8 12 10 1 1 12 10 1 1 1 1 12 10 1 1 12 10 1 1 1 1 1 +instanceKlass lombok/patcher/PatchScript$FixedClassWriter +ciInstanceKlass org/lombokweb/asm/ClassWriter 1 1 578 1 7 1 7 1 1 100 1 100 1 1 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 3 12 10 12 9 1 7 1 12 10 1 12 10 12 9 12 9 1 1 1 1 1 1 12 9 12 9 3 1 1 12 10 12 9 1 1 12 10 12 9 1 1 12 10 1 7 1 12 9 12 9 12 9 12 9 1 1 1 1 1 1 1 1 1 12 9 1 7 1 12 10 3 1 1 12 10 12 9 1 1 1 1 1 100 1 12 10 1 12 10 12 9 1 1 12 9 1 1 1 12 9 1 1 12 10 12 9 1 1 1 1 12 9 1 7 1 1 12 10 12 9 1 1 1 1 12 9 1 12 10 12 9 1 1 1 1 1 12 9 1 12 9 1 1 12 9 12 9 1 1 12 10 1 1 12 9 12 9 1 1 1 12 9 1 12 9 12 9 1 1 1 1 1 1 1 100 1 12 10 12 9 12 9 1 1 12 9 1 1 1 1 7 1 12 10 12 9 12 9 1 1 12 9 1 1 1 1 1 1 7 1 12 10 12 9 12 9 1 1 12 9 1 1 1 1 1 1 1 12 10 1 12 10 1 12 9 1 8 1 8 1 8 1 8 1 8 1 8 3 1 8 1 8 1 12 10 1 8 1 8 1 8 1 12 10 1 12 10 1 12 10 1 8 1 8 1 8 3 1 12 10 1 8 10 1 12 10 1 12 10 1 12 10 1 100 1 1 12 10 1 12 10 10 3 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 12 9 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 12 10 1 100 1 12 10 1 1 12 10 12 10 1 1 1 10 1 12 10 1 1 12 10 10 10 1 12 10 1 1 1 1 1 1 12 10 1 1 1 1 12 10 1 1 1 1 1 12 10 1 1 1 1 1 12 10 1 1 1 12 10 1 1 1 1 1 12 10 1 1 1 1 1 1 12 10 1 1 1 1 12 10 1 1 1 1 12 10 1 1 1 1 100 1 1 12 10 1 100 1 1 12 10 1 100 1 1 12 10 1 100 1 12 10 1 1 12 10 12 10 1 8 1 1 12 10 1 12 10 1 1 1 1 1 1 1 1 1 1 100 1 12 10 10 1 1 1 1 1 +ciInstanceKlass lombok/patcher/PatchScript$FixedClassWriter 1 1 35 100 1 7 1 1 1 1 10 12 1 1 1 1 1 1 1 1 1 1 10 12 8 1 100 1 1 1 1 1 1 1 100 1 1 +instanceKlass lombok/patcher/scripts/SetSymbolDuringMethodCallScript$2 +ciInstanceKlass lombok/patcher/PatchScript$MethodPatcher 1 1 184 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 10 12 1 7 1 10 12 1 9 12 9 12 9 12 9 12 1 1 1 1 1 1 1 1 9 12 1 1 11 7 1 12 1 1 1 1 1 1 9 12 10 12 1 1 1 1 1 1 1 1 1 100 1 8 1 10 12 1 1 1 11 12 1 1 11 7 1 12 1 1 7 1 7 1 8 1 10 10 12 1 10 7 1 12 1 1 8 1 10 12 1 1 10 12 1 11 7 1 12 1 1 9 12 10 7 1 12 1 1 11 12 1 1 1 1 1 10 12 10 12 1 10 12 1 10 12 1 11 12 1 7 1 11 12 1 1 7 1 10 12 1 11 7 1 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass lombok/patcher/PatchScript$MethodPatcherFactory 1 0 13 100 1 100 1 1 1 1 1 1 100 1 1 +ciInstanceKlass lombok/patcher/scripts/AddFieldScript$1 1 1 80 7 1 7 1 1 1 1 1 1 1 1 9 12 10 12 1 9 12 1 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 10 7 1 12 1 1 10 12 1 1 1 1 1 1 1 1 1 9 12 1 10 12 1 1 10 12 1 10 12 1 1 10 7 1 12 10 1 1 1 1 1 12 1 1 1 +ciInstanceKlass org/lombokweb/asm/ClassReader 1 1 1065 1 7 1 7 1 1 100 1 100 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 1 1 12 10 1 1 1 12 10 12 9 12 9 1 1 12 10 1 100 1 1 1 100 10 1 8 1 1 12 10 1 12 10 1 1 12 10 12 10 1 12 10 1 1 12 10 12 9 1 7 12 9 10 12 9 12 9 1 100 12 9 1 1 12 10 12 9 1 1 1 1 1 1 1 1 1 1 1 100 1 1 12 10 12 10 1 1 1 1 12 10 1 1 1 8 12 10 1 100 1 1 12 10 1 1 1 100 1 8 10 1 1 12 10 1 100 10 1 100 1 1 12 10 1 12 10 1 12 10 1 12 10 10 1 1 12 10 1 1 1 1 1 1 1 1 12 10 1 100 1 1 12 10 1 1 1 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 7 1 12 10 1 1 1 1 7 10 1 1 12 9 12 9 12 9 1 12 10 1 12 10 1 12 10 1 8 1 1 12 10 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 3 1 8 1 8 1 1 12 10 1 8 1 8 1 8 3 1 8 1 8 1 8 1 8 1 1 12 10 1 1 12 9 1 7 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 12 9 1 1 12 9 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 12 10 1 100 1 12 10 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 12 10 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 100 10 10 10 10 1 1 1 1 1 1 8 1 1 12 10 1 1 12 10 1 7 10 10 10 10 1 1 1 1 1 1 1 12 9 1 12 9 1 12 9 1 8 1 8 1 8 1 8 1 8 1 8 12 10 1 1 12 10 1 7 1 1 12 10 1 1 12 10 1 12 10 1 7 1 1 12 10 1 1 12 10 1 1 12 10 1 100 10 10 10 1 1 12 10 10 1 12 10 1 1 12 10 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 12 9 1 1 12 10 1 1 12 10 1 8 1 1 12 10 1 8 1 8 1 1 12 10 1 1 12 10 1 8 1 8 1 12 9 1 12 9 1 12 9 1 12 9 1 1 12 9 1 12 9 1 12 9 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 7 1 1 12 10 1 1 12 10 1 12 10 1 100 10 1 12 10 1 1 12 10 1 1 12 10 1 12 9 1 12 9 1 12 9 1 1 12 10 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 10 1 1 12 9 1 1 100 1 12 10 1 12 10 1 1 1 1 1 1 1 1 3 3 3 1 1 12 10 1 1 12 10 1 1 1 1 1 1 1 100 1 1 12 10 1 12 10 1 100 1 12 10 1 100 1 12 10 1 100 1 1 12 9 1 12 9 1 12 10 1 7 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 100 1 1 12 10 1 100 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 8 1 7 1 1 12 9 1 1 12 10 1 12 9 1 12 9 1 12 9 1 12 9 1 1 12 10 1 1 1 1 1 1 1 12 10 1 1 1 1 1 1 1 1 1 1 12 9 1 12 9 1 1 1 1 1 1 12 9 1 12 10 10 1 1 1 1 1 1 5 0 1 1 1 1 1 12 10 1 1 1 1 1 1 12 10 1 1 12 10 1 1 1 7 1 12 10 1 12 10 1 7 1 12 10 1 12 10 1 12 10 1 12 10 12 10 12 10 1 1 +instanceKlass org/lombokweb/asm/AnnotationWriter +ciInstanceKlass org/lombokweb/asm/AnnotationVisitor 1 1 98 1 100 1 100 1 1 100 1 100 1 1 1 1 1 1 1 1 12 10 1 1 12 10 3 3 3 3 3 3 3 1 100 1 1 1 100 10 1 8 1 1 12 10 1 12 10 1 1 12 10 12 10 1 12 10 1 100 1 1 12 10 12 9 12 9 1 1 1 1 1 12 10 1 1 1 1 1 1 12 10 1 1 1 12 10 1 1 12 10 1 12 10 1 1 1 1 1 +ciInstanceKlass org/lombokweb/asm/AnnotationWriter 1 1 254 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 12 10 12 9 12 9 12 9 1 100 1 12 9 12 9 12 9 12 9 1 1 1 1 12 10 1 100 1 1 12 10 1 1 12 10 12 10 1 1 1 1 100 1 1 12 10 1 100 1 1 12 10 1 1 1 1 1 1 12 9 1 100 1 1 12 10 1 100 1 1 12 10 1 1 12 10 1 100 1 12 9 1 100 1 1 12 10 1 100 1 1 12 10 1 100 1 1 12 10 1 100 1 1 12 10 1 100 1 100 1 100 1 100 1 100 1 100 1 1 12 10 1 100 1 1 12 10 1 100 1 1 12 10 1 1 12 10 1 8 1 12 9 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 9 1 1 1 1 1 1 8 12 10 1 8 1 8 1 8 1 1 1 1 1 1 12 10 1 12 10 1 1 12 10 1 1 1 1 1 1 12 10 1 1 1 1 1 1 1 1 1 12 10 1 1 1 1 +instanceKlass lombok/patcher/scripts/SetSymbolDuringMethodCallScript$WrapWithSymbol +instanceKlass lombok/patcher/scripts/ReplaceMethodCallScript$ReplaceMethodCall +instanceKlass lombok/patcher/scripts/WrapReturnValuesScript$WrapReturnValues +instanceKlass lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly +instanceKlass org/lombokweb/asm/MethodWriter +ciInstanceKlass org/lombokweb/asm/MethodVisitor 1 1 262 1 7 1 7 1 1 100 1 100 1 1 1 1 8 1 1 1 1 1 1 1 12 10 1 1 12 10 3 3 3 3 3 3 3 1 100 1 1 1 100 10 1 8 1 1 12 10 1 12 10 1 1 12 10 12 10 1 12 10 1 100 1 1 12 10 12 9 12 9 1 1 1 1 1 1 100 10 12 10 1 1 1 1 12 10 1 1 12 10 1 1 1 1 1 12 10 1 1 1 1 1 12 10 1 1 1 12 10 1 1 1 12 10 1 1 1 12 10 1 1 12 10 1 1 1 1 1 1 1 12 10 1 1 1 12 10 1 1 12 10 1 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 1 8 12 10 1 1 1 12 10 1 1 1 1 1 12 10 1 1 1 1 12 10 1 1 100 1 100 1 1 12 10 1 100 1 8 12 10 1 1 1 12 10 1 1 1 12 10 1 1 1 1 1 1 1 12 10 1 1 1 12 10 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 1 12 10 1 1 1 1 12 10 1 12 10 1 1 12 10 1 1 1 12 10 1 1 1 1 1 1 1 1 +ciInstanceKlass org/lombokweb/asm/MethodWriter 1 1 809 1 7 1 7 1 1 100 1 7 1 1 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 12 10 1 7 1 12 10 12 9 12 9 8 1 7 1 1 12 10 3 12 9 1 7 1 1 12 10 12 9 12 9 12 9 12 9 12 9 12 9 12 9 1 1 12 10 1 7 1 12 9 12 9 1 7 1 12 10 12 9 12 9 1 7 10 12 9 1 1 12 10 1 1 1 1 1 1 1 1 1 1 12 9 12 9 1 1 12 9 12 9 1 1 12 10 1 1 12 9 1 7 1 12 10 1 1 12 9 1 1 12 10 12 9 1 1 1 12 9 1 12 10 12 9 1 1 1 1 1 12 9 12 9 1 1 1 12 9 1 12 10 12 9 1 1 1 1 1 12 10 12 9 1 12 9 12 9 1 1 1 1 12 9 1 1 12 9 1 100 12 10 1 100 1 1 12 10 1 1 12 10 1 1 12 10 12 9 10 1 12 9 1 1 12 10 12 9 1 1 12 10 1 12 10 1 1 12 10 1 100 1 8 1 12 10 12 9 12 9 1 100 10 1 12 10 1 1 12 10 10 12 9 1 7 1 1 12 9 1 12 9 12 9 12 9 1 7 1 1 12 10 1 1 1 1 1 1 1 1 1 1 12 9 1 1 12 10 12 9 1 12 10 1 1 1 1 1 1 12 10 1 12 10 1 1 1 1 12 9 1 12 9 12 9 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 12 10 1 1 1 1 1 1 1 1 12 10 12 10 1 1 1 1 1 1 1 1 12 10 1 1 1 1 1 1 1 12 9 1 1 12 10 1 1 12 10 1 12 10 12 9 1 1 1 1 1 1 12 9 1 1 12 10 12 9 12 9 12 9 1 12 9 1 1 1 12 10 1 12 9 1 12 9 1 1 1 1 1 1 1 1 1 1 1 12 10 1 12 10 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 3 12 9 12 9 1 1 1 7 1 12 10 12 9 1 12 9 1 1 1 1 1 1 1 12 9 12 9 12 9 12 9 1 1 1 100 1 12 10 1 1 12 9 12 9 1 1 1 12 10 1 12 10 1 12 9 1 8 1 1 12 10 1 12 9 1 12 9 1 12 9 1 100 1 1 12 9 1 12 10 1 12 9 1 12 9 1 12 10 1 12 9 1 12 9 1 1 12 10 1 12 9 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 3 1 1 12 10 1 12 9 1 12 10 1 12 9 1 1 1 1 1 1 1 1 1 1 1 12 10 1 12 10 1 1 1 1 12 10 1 7 1 12 10 1 12 10 1 1 1 1 12 10 3 1 7 1 1 12 10 1 1 1 1 1 1 1 1 12 9 12 9 1 1 1 3 1 100 1 1 12 10 1 12 10 1 8 1 1 12 10 1 8 1 8 1 8 1 8 1 8 1 8 1 12 10 1 8 1 1 12 10 1 8 1 12 10 1 12 10 1 8 1 1 12 10 1 8 1 8 1 8 1 12 10 1 1 1 12 9 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 1 1 1 1 1 1 1 1 12 10 1 1 1 1 1 1 +staticfield org/lombokweb/asm/MethodWriter STACK_SIZE_DELTA [I 202 +ciInstanceKlass org/lombokweb/asm/SymbolTable 1 1 632 1 7 1 7 1 1 7 1 1 100 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 12 9 12 9 12 9 12 9 1 7 10 12 9 1 1 1 1 7 1 1 12 9 1 1 12 10 1 12 9 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 1 1 12 10 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 100 10 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 8 1 7 1 1 12 10 12 9 12 9 1 1 12 10 1 12 10 3 1 12 10 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 12 9 1 1 12 9 1 1 1 1 12 10 1 7 1 12 9 1 1 1 12 9 1 1 1 1 12 10 1 12 9 1 1 1 12 10 1 1 12 10 1 1 1 1 12 9 12 9 1 1 12 9 1 1 1 1 1 1 1 1 1 1 7 1 12 10 1 1 12 10 1 7 10 1 7 1 1 12 10 1 7 10 1 7 1 1 12 10 1 7 1 1 12 10 1 1 12 10 1 7 1 1 12 10 1 1 12 10 1 7 1 1 12 10 1 1 12 10 1 12 10 1 7 1 12 10 1 12 10 1 12 10 1 12 10 1 7 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 12 10 1 100 10 10 1 1 12 10 1 1 12 10 1 1 12 10 1 1 1 100 10 1 8 1 1 12 10 1 12 10 1 12 10 12 10 1 12 10 1 1 1 1 1 1 1 1 1 1 12 10 1 1 1 12 10 1 1 1 1 1 1 1 1 12 10 12 10 12 9 12 9 12 9 12 9 1 12 10 1 1 12 10 1 12 10 12 10 1 12 10 1 1 12 10 1 1 12 10 1 12 9 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 9 12 10 12 10 1 1 12 10 1 12 10 1 12 10 12 10 1 12 10 12 10 1 1 1 1 12 10 1 12 10 1 1 1 1 1 1 1 12 10 1 1 1 1 1 1 1 12 10 12 10 10 1 12 10 1 1 1 1 1 1 1 1 1 1 12 9 1 1 1 12 9 1 1 12 9 1 12 9 1 1 12 10 1 1 1 12 10 1 12 10 1 1 1 1 1 12 10 9 1 1 1 12 9 1 100 1 1 12 10 12 10 1 1 1 1 1 1 100 1 1 12 10 1 12 9 1 1 12 10 1 12 9 12 9 1 12 10 1 1 1 10 1 1 1 1 1 1 1 1 1 +instanceKlass org/lombokweb/asm/SymbolTable$Entry +ciInstanceKlass org/lombokweb/asm/Symbol 1 1 93 1 7 1 7 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 12 10 12 9 12 9 12 9 12 9 12 9 12 9 1 1 1 1 12 9 1 7 1 12 10 1 1 1 1 1 +ciInstanceKlass org/lombokweb/asm/SymbolTable$Entry 1 1 38 1 7 1 7 1 1 100 1 1 1 1 1 1 1 1 12 10 12 9 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass org/lombokweb/asm/ByteVector 1 1 107 1 7 1 7 1 1 1 1 1 1 1 12 10 12 9 1 1 1 1 1 12 9 1 1 1 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 12 10 3 1 100 1 8 1 12 10 1 1 12 10 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 1 12 10 1 1 1 100 1 8 1 12 10 1 1 1 1 1 1 1 +ciInstanceKlass lombok/patcher/scripts/ExitFromMethodEarlyScript$1 1 1 90 7 1 7 1 100 1 1 1 1 1 1 1 1 9 12 9 12 10 12 1 1 1 1 1 1 1 10 7 1 12 1 1 10 12 1 1 10 7 1 12 1 1 100 1 100 1 8 1 10 12 1 10 12 1 1 8 1 8 1 10 12 1 1 10 7 1 10 12 1 1 1 1 1 1 1 1 1 1 12 1 1 1 100 1 100 1 1 1 1 +ciInstanceKlass lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 1 1 160 7 1 7 1 1 1 1 1 1 1 1 1 1 9 12 3 10 12 1 9 12 9 12 1 1 1 1 1 1 1 1 10 7 1 12 1 1 10 7 1 12 1 1 9 12 10 12 1 1 10 12 1 10 12 1 1 9 7 1 12 1 1 11 7 1 12 1 1 10 12 1 1 9 12 1 1 11 7 1 12 1 1 11 7 1 12 1 1 10 12 1 10 12 1 11 12 1 1 10 12 1 1 10 12 1 1 10 12 1 10 7 1 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 7 1 10 12 10 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 1 1 1 1 1 1 1 1 +ciInstanceKlass org/lombokweb/asm/Attribute 1 1 137 1 100 1 100 1 1 100 1 1 1 1 1 1 1 1 1 1 12 10 12 9 1 1 1 1 1 1 1 100 1 1 12 10 12 9 1 100 1 12 9 1 100 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 7 1 12 10 1 1 1 1 1 1 1 1 12 9 1 1 1 1 12 10 1 1 1 7 12 9 1 1 12 10 12 10 12 9 1 1 1 12 10 1 8 1 8 3 1 8 1 1 1 1 1 12 10 1 1 1 1 12 10 1 12 10 1 12 9 1 1 12 10 1 1 1 1 1 1 1 +ciInstanceKlass org/lombokweb/asm/Context 1 1 43 1 100 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 1 1 1 1 +ciInstanceKlass java/util/NoSuchElementException 0 0 34 10 100 12 1 1 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass org/lombokweb/asm/MethodTooLargeException +instanceKlass org/lombokweb/asm/ClassTooLargeException +instanceKlass java/lang/ArrayIndexOutOfBoundsException +ciInstanceKlass java/lang/IndexOutOfBoundsException 0 0 49 10 100 12 1 1 1 10 12 1 100 1 10 8 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/lang/AssertionError 0 0 79 10 100 12 1 1 1 10 12 1 10 100 12 1 1 1 10 100 1 100 1 10 12 1 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 10 12 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass java/nio/channels/OverlappingFileLockException +ciInstanceKlass java/lang/IllegalStateException 1 0 35 10 100 12 1 1 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 1 +instanceKlass org/lombokweb/asm/CurrentFrame +ciInstanceKlass org/lombokweb/asm/Frame 0 0 504 1 100 1 100 1 1 100 1 100 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 3 1 3 1 3 1 1 3 1 3 1 3 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 12 9 1 1 1 1 12 9 12 9 12 9 12 9 12 9 12 9 12 9 12 9 1 1 1 1 100 1 1 12 10 1 100 1 100 1 1 12 10 1 1 12 10 1 1 12 10 1 100 1 12 9 1 8 1 12 9 1 100 1 1 12 10 1 1 12 10 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 1 12 10 1 12 10 1 1 12 10 1 100 1 12 10 1 1 1 100 10 1 8 1 1 12 10 1 12 10 12 10 1 12 10 1 1 8 12 10 1 1 1 1 1 1 3 1 12 10 1 1 12 10 1 1 1 1 1 1 1 1 12 10 1 100 1 12 9 12 9 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 12 10 1 100 1 1 12 10 1 1 1 1 1 12 9 1 1 1 1 1 12 10 12 10 1 1 1 1 12 10 12 10 1 1 1 1 1 1 1 3 1 1 12 10 1 100 1 12 9 1 1 1 1 1 1 12 9 1 8 8 1 8 1 8 12 10 1 100 10 12 10 12 10 12 10 1 8 12 10 1 12 9 12 10 3 3 3 3 3 3 3 3 10 1 1 8 12 10 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 12 10 1 12 10 1 1 1 1 1 3 1 12 10 8 1 12 10 1 1 1 1 1 1 1 1 1 1 1 1 100 1 1 12 10 1 12 10 1 12 10 1 1 1 1 1 1 1 1 1 1 1 100 1 1 12 10 1 1 12 10 1 12 9 1 12 10 1 1 12 9 1 1 12 10 1 1 12 10 1 12 10 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass org/lombokweb/asm/Type 1 1 379 1 7 1 7 1 1 100 1 100 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 8 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 12 9 12 9 12 9 12 9 1 1 1 1 7 1 1 12 10 1 1 12 10 1 1 1 1 100 1 1 12 10 1 100 1 1 12 9 12 9 1 100 9 12 9 1 100 9 12 9 1 100 9 12 9 1 100 9 12 9 1 100 9 12 9 1 100 9 12 9 1 100 9 12 9 1 100 9 12 9 1 100 10 1 1 12 10 12 10 1 1 1 1 1 1 12 10 1 1 1 1 1 1 12 10 1 1 1 1 1 12 10 1 1 1 1 12 10 12 10 1 1 1 1 1 12 10 1 1 1 1 1 1 12 10 1 12 10 1 1 12 10 1 1 12 10 1 7 1 12 10 1 1 1 1 1 1 1 100 1 1 12 10 12 10 1 1 1 1 1 1 12 10 1 12 10 1 12 10 1 100 1 1 1 100 10 1 8 1 1 12 10 1 12 10 12 10 1 12 10 1 1 1 1 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 1 8 12 10 12 10 10 1 8 1 1 12 10 1 1 12 10 1 1 1 1 1 12 10 1 1 8 1 8 12 10 1 1 12 10 1 1 12 10 1 100 10 1 8 1 1 1 12 10 1 1 12 10 1 1 12 10 1 12 10 12 10 1 1 1 1 1 1 1 12 10 1 1 1 1 1 1 100 10 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 +staticfield org/lombokweb/asm/Type VOID_TYPE Lorg/lombokweb/asm/Type; org/lombokweb/asm/Type +staticfield org/lombokweb/asm/Type BOOLEAN_TYPE Lorg/lombokweb/asm/Type; org/lombokweb/asm/Type +staticfield org/lombokweb/asm/Type CHAR_TYPE Lorg/lombokweb/asm/Type; org/lombokweb/asm/Type +staticfield org/lombokweb/asm/Type BYTE_TYPE Lorg/lombokweb/asm/Type; org/lombokweb/asm/Type +staticfield org/lombokweb/asm/Type SHORT_TYPE Lorg/lombokweb/asm/Type; org/lombokweb/asm/Type +staticfield org/lombokweb/asm/Type INT_TYPE Lorg/lombokweb/asm/Type; org/lombokweb/asm/Type +staticfield org/lombokweb/asm/Type FLOAT_TYPE Lorg/lombokweb/asm/Type; org/lombokweb/asm/Type +staticfield org/lombokweb/asm/Type LONG_TYPE Lorg/lombokweb/asm/Type; org/lombokweb/asm/Type +staticfield org/lombokweb/asm/Type DOUBLE_TYPE Lorg/lombokweb/asm/Type; org/lombokweb/asm/Type +ciInstanceKlass org/lombokweb/asm/Label 1 1 231 1 7 1 7 1 1 100 1 100 1 1 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 3 1 1 3 1 3 1 3 1 3 1 3 1 3 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 1 12 9 1 100 1 8 1 12 10 12 9 1 1 12 9 1 100 1 12 9 1 1 12 9 12 9 1 7 1 1 12 10 1 1 1 1 1 7 1 1 12 10 3 1 1 12 10 1 1 1 1 1 1 1 1 7 1 12 9 1 1 12 10 1 1 12 10 1 12 10 1 1 1 1 1 1 12 9 1 1 1 1 1 1 1 1 12 9 1 1 1 1 1 1 1 12 9 12 9 12 9 1 1 12 10 1 1 1 1 100 12 9 12 9 1 12 9 1 12 10 1 1 1 1 12 9 1 1 1 1 1 1 1 1 12 10 1 1 1 100 10 1 8 1 1 12 10 1 12 10 12 10 12 10 1 10 1 1 1 1 1 1 +staticfield org/lombokweb/asm/Label EMPTY_LIST Lorg/lombokweb/asm/Label; org/lombokweb/asm/Label +ciInstanceKlass lombok/patcher/MethodLogistics 1 1 169 7 1 7 1 1 1 1 1 1 1 1 1 1 1 1 1 1 10 12 1 9 12 10 7 1 12 1 1 11 7 1 12 1 1 11 7 1 12 1 1 7 1 10 12 1 1 9 12 10 12 1 9 12 7 1 10 10 7 1 12 1 1 11 12 1 1 10 12 1 11 12 1 1 10 7 1 12 1 1 9 12 9 12 9 12 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 11 12 1 1 1 11 12 1 1 10 12 1 10 7 1 12 1 1 1 1 1 1 10 12 10 12 1 1 1 1 1 1 1 1 10 12 1 1 100 1 8 1 10 12 1 100 1 100 1 8 1 10 10 12 1 1 10 12 1 1 10 1 1 +ciInstanceKlass lombok/patcher/scripts/WrapReturnValuesScript$1 1 1 54 7 1 7 1 100 1 1 1 1 1 1 1 1 9 12 9 12 10 12 1 1 1 1 1 1 1 7 1 10 12 1 1 1 1 1 1 1 1 1 1 100 1 12 1 1 1 100 1 100 1 1 1 1 +ciInstanceKlass lombok/patcher/scripts/WrapReturnValuesScript$WrapReturnValues 1 1 155 7 1 7 1 1 1 1 1 1 1 1 1 1 1 9 12 3 10 12 1 9 12 9 12 10 7 1 12 1 1 9 12 1 1 1 1 1 1 1 1 1 10 7 1 12 1 1 10 12 10 12 1 1 9 7 1 12 1 1 11 7 1 12 1 1 10 12 1 1 9 12 10 12 1 1 10 12 1 9 12 1 10 12 1 9 12 1 1 11 7 1 12 1 1 11 7 1 12 1 1 10 12 1 10 12 1 11 12 1 1 10 12 1 10 12 1 1 10 12 1 1 10 12 1 10 7 1 12 1 1 10 12 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 +ciInstanceKlass org/lombokweb/asm/Handle 1 1 93 1 7 1 7 1 1 100 1 100 1 1 1 1 1 1 1 1 1 1 1 1 1 12 10 1 1 1 12 10 12 9 12 9 12 9 12 9 12 9 1 1 1 1 1 1 1 1 1 1 7 12 10 1 1 1 1 12 10 1 1 8 1 8 1 1 1 100 10 1 1 12 10 1 8 1 8 1 12 10 1 8 12 10 12 10 1 1 1 1 1 1 1 +ciInstanceKlass lombok/patcher/scripts/ReplaceMethodCallScript$ReplaceMethodCall 1 1 134 7 1 7 1 1 1 1 1 1 1 1 1 1 9 12 3 10 12 1 9 12 9 12 1 1 1 1 1 1 1 1 10 7 1 12 1 1 10 7 1 12 1 1 10 7 1 12 1 1 10 12 1 10 12 1 10 12 1 1 9 7 1 12 1 1 11 7 1 12 1 9 12 10 7 1 12 1 1 9 12 1 1 11 7 1 12 1 1 11 7 1 12 1 1 10 12 1 1 10 12 1 11 12 1 1 10 12 1 1 10 12 1 10 12 1 1 10 12 1 10 12 1 1 1 1 1 1 1 1 1 1 1 1 +ciInstanceKlass java/util/ConcurrentModificationException 0 0 34 10 100 12 1 1 1 10 12 1 10 12 1 10 12 1 100 1 1 1 1 5 0 1 1 1 1 1 1 1 1 1 1 1 +ciMethodData java/lang/Object ()V 2 238443 orig 80 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 4 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/lang/String hashCode ()I 2 6268 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 42 0x60007 0x13ce 0x108 0x4af 0xd0007 0x3 0xe8 0x4ac 0x110005 0x4ac 0x0 0x0 0x0 0x0 0x0 0x140007 0x0 0x48 0x4ac 0x1b0002 0x4ac 0x1e0003 0x4ac 0x28 0x250002 0x0 0x2a0007 0x4ab 0x38 0x1 0x320003 0x1 0x18 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0xe oops 0 methods 0 +ciMethodData java/lang/String isLatin1 ()Z 2 400237 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 18 0x30007 0x0 0x58 0x61b6e 0x80000006000a0007 0x7 0x38 0x61b68 0xe0003 0x61b68 0x18 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/lang/StringLatin1 hashCode ([B)I 2 5222 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 25 0x20008 0x6 0x1462 0x70 0x1 0x40 0x4 0x58 0x1d0003 0x1 0x40 0x270003 0x4 0x28 0x300002 0x1462 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0xffffffffffffffff oops 0 methods 0 +ciMethodData java/lang/String equals (Ljava/lang/Object;)Z 2 7575 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 49 0x20007 0x1a09 0x20 0x38e 0x80104 0x0 0x0 0x2196f1f1848 0x1a08 0x0 0x0 0xb0007 0x1 0xe0 0x1a08 0xf0004 0x0 0x0 0x2196f1f1848 0x1a08 0x0 0x0 0x160007 0x0 0x40 0x1a08 0x210007 0x0 0x68 0x1a08 0x2c0002 0x1a08 0x2f0007 0x1930 0x38 0xd8 0x330003 0xd8 0x18 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 2 7 java/lang/String 18 java/lang/String methods 0 +ciMethodData java/util/AbstractCollection ()V 2 20297 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 7 0x10002 0x4f49 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/lang/String coder ()B 2 224767 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 14 0x30007 0x0 0x38 0x36dff 0xa0003 0x36dff 0x18 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/lang/String length ()I 2 158442 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 16 0x60005 0x26aea 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/lang/String indexOf (II)I 2 7023 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 43 0x10005 0x1b6f 0x0 0x0 0x0 0x0 0x0 0x40007 0x0 0x80 0x1b6f 0xe0005 0x1b6f 0x0 0x0 0x0 0x0 0x0 0x110002 0x1b6f 0x140003 0x1b6f 0x60 0x1e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x210002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData java/lang/String charAt (I)C 2 354456 orig 80 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 25 0x10005 0x56898 0x0 0x0 0x0 0x0 0x0 0x40007 0x3 0x30 0x56896 0xc0002 0x56896 0x150002 0x3 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData java/lang/StringLatin1 charAt ([BI)C 2 354454 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 12 0x30002 0x56896 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData java/lang/String checkIndex (II)V 2 355169 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 12 0x50002 0x56b61 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData java/lang/StringLatin1 canEncode (I)Z 2 37304 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 11 0x40007 0x0 0x38 0x91b8 0x80003 0x91b8 0x18 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/lang/StringLatin1 indexOf ([BIII)I 2 6894 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 28 0x10002 0x1aee 0x40007 0x1aee 0x20 0x0 0xb0002 0x1aee 0x120002 0x1aee 0x180007 0x1acb 0x20 0x23 0x210002 0x1acb 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData java/lang/StringUTF16 charAt ([BI)C 1 5 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 14 0x20002 0x5 0x70002 0x3 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethod java/lang/IllegalStateException ()V 0 0 1 0 -1 +ciMethodData java/lang/Integer valueOf (I)Ljava/lang/Integer; 2 1451 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 17 0x30007 0x8 0x40 0x5a3 0xa0007 0x10e 0x20 0x495 0x1c0002 0x116 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/lang/Integer (I)V 1 284 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 10 0x10002 0x11c 0x0 0x0 0x0 0x0 0x9 0x2 0x6 0x0 oops 0 methods 0 +ciMethodData java/lang/Number ()V 2 2230 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 7 0x10002 0x8b6 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/util/ArrayList$Itr hasNext ()Z 2 5979 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 14 0xb0007 0x53f 0x38 0x121c 0xf0003 0x121c 0x18 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/util/ArrayList add (Ljava/lang/Object;)Z 2 9573 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 17 0x140005 0x2565 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0xe 0x0 oops 0 methods 0 +ciMethodData java/util/ArrayList ()V 2 5481 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0x10002 0x1569 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/util/AbstractList ()V 2 13093 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0x10002 0x3325 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/util/ArrayList iterator ()Ljava/util/Iterator; 2 5542 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 8 0x50002 0x15a6 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/util/ArrayList$Itr (Ljava/util/ArrayList;)V 2 5543 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 10 0x60002 0x15a7 0x0 0x0 0x0 0x0 0x9 0x2 0xc 0x0 oops 0 methods 0 +ciMethodData java/util/ArrayList$Itr next ()Ljava/lang/Object; 2 5365 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 28 0x10005 0x14f5 0x0 0x0 0x0 0x0 0x0 0x110007 0x14f5 0x30 0x0 0x180002 0x0 0x270007 0x14f5 0x30 0x0 0x2e0002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x6 oops 0 methods 0 +ciMethodData java/util/ArrayList$Itr checkForComodification ()V 2 5372 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 13 0xb0007 0x14fc 0x30 0x0 0x120002 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData java/lang/String replace (Ljava/lang/CharSequence;Ljava/lang/CharSequence;)Ljava/lang/String; 2 5798 orig 80 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 178 0x10005 0x0 0x0 0x2196f1f1848 0x16a6 0x0 0x0 0x80005 0x0 0x0 0x2196f1f1848 0x16a6 0x0 0x0 0x100005 0x16a6 0x0 0x0 0x0 0x0 0x0 0x160005 0x16a6 0x0 0x0 0x0 0x0 0x0 0x1d0005 0x16a6 0x0 0x0 0x0 0x0 0x0 0x240007 0x0 0x268 0x16a6 0x80000006002a0007 0x1 0xe8 0x16a6 0x300007 0x0 0xc8 0x16a6 0x360005 0x16a6 0x0 0x0 0x0 0x0 0x0 0x3c0005 0x16a6 0x0 0x0 0x0 0x0 0x0 0x3f0005 0x16a6 0x0 0x0 0x0 0x0 0x0 0x440005 0x1 0x0 0x0 0x0 0x0 0x0 0x4a0005 0x1 0x0 0x0 0x0 0x0 0x0 0x510005 0x1 0x0 0x0 0x0 0x0 0x0 0x580007 0x0 0x88 0x1 0x5d0007 0x0 0x68 0x1 0x620007 0x0 0x48 0x1 0x780002 0x1 0x7b0003 0x1 0x28 0x970002 0x0 0x9e0007 0x1 0x20 0x0 0xab0002 0x0 0xb00002 0x0 0xb30002 0x0 0xb80003 0x0 0x28 0xc40002 0x0 0xce0002 0x0 0xd70005 0x0 0x0 0x0 0x0 0x0 0x0 0xe20007 0x0 0xe0 0x0 0xea0005 0x0 0x0 0x0 0x0 0x0 0x0 0xed0005 0x0 0x0 0x0 0x0 0x0 0x0 0xf20005 0x0 0x0 0x0 0x0 0x0 0x0 0xf90003 0x0 0xffffffffffffff38 0xfe0005 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 2 3 java/lang/String 10 java/lang/String methods 0 +ciMethodData java/util/Collections unmodifiableList (Ljava/util/List;)Ljava/util/List; 1 878 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 49 0x10005 0x26 0x0 0x2196f1f52a8 0x343 0x2197625b4f0 0x5 0x80007 0x0 0x78 0x36e 0xc0005 0x26 0x0 0x2196f1f52a8 0x343 0x2197625b4f0 0x5 0x130007 0x351 0x20 0x1d 0x190004 0xfffffffffffffffd 0x0 0x2197625b4f0 0x7 0x2196f1f52a8 0x347 0x1c0007 0x3 0x48 0x34e 0x240002 0x34e 0x270003 0x34e 0x28 0x2f0002 0x3 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0xffffffffffffffff oops 6 3 java/util/ArrayList 5 java/util/Arrays$ArrayList 14 java/util/ArrayList 16 java/util/Arrays$ArrayList 25 java/util/Arrays$ArrayList 27 java/util/ArrayList methods 0 +ciMethod java/util/ConcurrentModificationException ()V 0 0 1 0 -1 +ciMethod lombok/patcher/TargetMatcher matches (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Z 0 0 1 0 -1 +ciMethod lombok/patcher/MethodTarget decomposeFullDesc (Ljava/lang/String;)Ljava/util/List; 130 228 62 0 0 +ciMethod lombok/patcher/MethodTarget classMatches (Ljava/lang/String;)Z 26 0 45 0 0 +ciMethod lombok/patcher/MethodTarget matches (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Z 1024 0 6705 0 0 +ciMethod lombok/patcher/MethodTarget descriptorMatch (Ljava/lang/String;)Z 22 16 43 0 0 +ciMethod lombok/patcher/MethodTarget typeSpecMatch (Ljava/lang/String;Ljava/lang/String;)Z 164 110 82 0 -1 +ciMethod lombok/patcher/MethodTarget typeMatches (Ljava/lang/String;Ljava/lang/String;)Z 512 0 38086 0 -1 +ciMethod lombok/patcher/Hook getMethodName ()Ljava/lang/String; 1374 0 687 0 0 +ciMethod lombok/patcher/Hook getMethodDescriptor ()Ljava/lang/String; 270 438 171 0 0 +ciMethod lombok/patcher/Hook toSpec (Ljava/lang/String;)Ljava/lang/String; 522 26 440 0 -1 +ciMethod org/lombokweb/asm/ClassVisitor visitMethod (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)Lorg/lombokweb/asm/MethodVisitor; 1024 0 7133 0 0 +ciMethod org/lombokweb/asm/ClassWriter visitMethod (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)Lorg/lombokweb/asm/MethodVisitor; 924 0 7140 0 0 +ciMethod lombok/patcher/PatchScript$MethodPatcher visitMethod (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)Lorg/lombokweb/asm/MethodVisitor; 994 2048 6619 0 0 +ciMethod lombok/patcher/PatchScript$MethodPatcherFactory createMethodVisitor (Ljava/lang/String;Ljava/lang/String;Lorg/lombokweb/asm/MethodVisitor;Llombok/patcher/MethodLogistics;)Lorg/lombokweb/asm/MethodVisitor; 0 0 1 0 -1 +ciMethodData lombok/patcher/MethodTarget typeMatches (Ljava/lang/String;Ljava/lang/String;)Z 2 37831 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 24 0x60005 0x93c7 0x0 0x0 0x0 0x0 0x0 0xa0005 0x93c7 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0xffffffffffffffff 0x0 oops 0 methods 0 +ciMethod org/lombokweb/asm/ClassReader readMethod (Lorg/lombokweb/asm/ClassVisitor;Lorg/lombokweb/asm/Context;I)I 570 914 7268 0 -1 +ciMethod org/lombokweb/asm/ClassReader readCode (Lorg/lombokweb/asm/MethodVisitor;Lorg/lombokweb/asm/Context;I)V 12 5296 27 0 0 +ciMethod org/lombokweb/asm/ClassReader readBytecodeInstructionOffset (I)V 586 0 1624 0 -1 +ciMethod org/lombokweb/asm/ClassReader createLabel (I[Lorg/lombokweb/asm/Label;)Lorg/lombokweb/asm/Label; 244 0 681 0 -1 +ciMethod org/lombokweb/asm/ClassReader createDebugLabel (I[Lorg/lombokweb/asm/Label;)V 786 0 1239 0 -1 +ciMethod org/lombokweb/asm/ClassReader readTypeAnnotations (Lorg/lombokweb/asm/MethodVisitor;Lorg/lombokweb/asm/Context;IZ)[I 0 0 1 0 -1 +ciMethod org/lombokweb/asm/ClassReader getTypeAnnotationBytecodeOffset ([II)I 112 0 56 0 -1 +ciMethod org/lombokweb/asm/ClassReader readTypeAnnotationTarget (Lorg/lombokweb/asm/Context;I)I 0 0 1 0 0 +ciMethod org/lombokweb/asm/ClassReader readParameterAnnotations (Lorg/lombokweb/asm/MethodVisitor;Lorg/lombokweb/asm/Context;IZ)V 0 0 1 0 0 +ciMethod org/lombokweb/asm/ClassReader readElementValues (Lorg/lombokweb/asm/AnnotationVisitor;IZ[C)I 0 0 1 0 0 +ciMethod org/lombokweb/asm/ClassReader readElementValue (Lorg/lombokweb/asm/AnnotationVisitor;ILjava/lang/String;[C)I 0 0 1 0 0 +ciMethod org/lombokweb/asm/ClassReader computeImplicitFrame (Lorg/lombokweb/asm/Context;)V 0 0 1 0 -1 +ciMethod org/lombokweb/asm/ClassReader readStackMapFrame (IZZLorg/lombokweb/asm/Context;)I 484 1944 242 0 -1 +ciMethod org/lombokweb/asm/ClassReader readAttribute ([Lorg/lombokweb/asm/Attribute;Ljava/lang/String;II[CI[Lorg/lombokweb/asm/Label;)Lorg/lombokweb/asm/Attribute; 0 0 1 0 0 +ciMethod org/lombokweb/asm/ClassReader readByte (I)I 52 0 1052 0 0 +ciMethod org/lombokweb/asm/ClassReader readUnsignedShort (I)I 530 0 9515 0 184 +ciMethod org/lombokweb/asm/ClassReader readShort (I)S 512 0 689 0 -1 +ciMethod org/lombokweb/asm/ClassReader readInt (I)I 676 0 2320 0 216 +ciMethod org/lombokweb/asm/ClassReader readLong (I)J 46 0 311 0 -1 +ciMethod org/lombokweb/asm/ClassReader readUTF8 (I[C)Ljava/lang/String; 770 0 52968 0 2528 +ciMethod org/lombokweb/asm/ClassReader readUtf (I[C)Ljava/lang/String; 568 0 13215 0 2360 +ciMethod org/lombokweb/asm/ClassReader readUtf (II[C)Ljava/lang/String; 238 5748 3747 0 -1 +ciMethod org/lombokweb/asm/ClassReader readStringish (I[C)Ljava/lang/String; 938 0 11117 0 0 +ciMethod org/lombokweb/asm/ClassReader readClass (I[C)Ljava/lang/String; 938 0 11117 0 288 +ciMethod org/lombokweb/asm/ClassReader readConst (I[C)Ljava/lang/Object; 702 0 2718 0 -1 +ciMethod org/lombokweb/asm/AnnotationVisitor visit (Ljava/lang/String;Ljava/lang/Object;)V 0 0 1 0 -1 +ciMethod org/lombokweb/asm/AnnotationVisitor visitEnum (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)V 0 0 1 0 -1 +ciMethod org/lombokweb/asm/AnnotationVisitor visitAnnotation (Ljava/lang/String;Ljava/lang/String;)Lorg/lombokweb/asm/AnnotationVisitor; 0 0 1 0 -1 +ciMethod org/lombokweb/asm/AnnotationVisitor visitArray (Ljava/lang/String;)Lorg/lombokweb/asm/AnnotationVisitor; 0 0 1 0 -1 +ciMethod org/lombokweb/asm/AnnotationVisitor visitEnd ()V 0 0 1 0 -1 +ciMethod org/lombokweb/asm/AnnotationWriter visitEnd ()V 0 0 1 0 0 +ciMethod org/lombokweb/asm/MethodVisitor (I)V 924 0 7140 0 0 +ciMethod org/lombokweb/asm/MethodVisitor (ILorg/lombokweb/asm/MethodVisitor;)V 930 0 7160 0 0 +ciMethod org/lombokweb/asm/MethodVisitor stringConcat$0 (I)Ljava/lang/String; 0 0 1 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitParameter (Ljava/lang/String;I)V 0 0 1 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitAnnotationDefault ()Lorg/lombokweb/asm/AnnotationVisitor; 0 0 1 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitAnnotation (Ljava/lang/String;Z)Lorg/lombokweb/asm/AnnotationVisitor; 0 0 1 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitTypeAnnotation (ILorg/lombokweb/asm/TypePath;Ljava/lang/String;Z)Lorg/lombokweb/asm/AnnotationVisitor; 0 0 1 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitAnnotableParameterCount (IZ)V 0 0 1 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitParameterAnnotation (ILjava/lang/String;Z)Lorg/lombokweb/asm/AnnotationVisitor; 0 0 1 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitAttribute (Lorg/lombokweb/asm/Attribute;)V 0 0 1 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitCode ()V 42 0 20 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitFrame (II[Ljava/lang/Object;I[Ljava/lang/Object;)V 392 0 196 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitInsn (I)V 1024 0 515 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitIntInsn (II)V 84 0 42 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitVarInsn (II)V 770 0 1031 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitTypeInsn (ILjava/lang/String;)V 184 0 92 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitFieldInsn (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V 826 0 456 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitMethodInsn (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;Z)V 644 0 322 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitInvokeDynamicInsn (Ljava/lang/String;Ljava/lang/String;Lorg/lombokweb/asm/Handle;[Ljava/lang/Object;)V 4 0 2 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitJumpInsn (ILorg/lombokweb/asm/Label;)V 536 0 278 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitLabel (Lorg/lombokweb/asm/Label;)V 580 0 816 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitLdcInsn (Ljava/lang/Object;)V 62 0 31 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitIincInsn (II)V 10 0 5 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitTableSwitchInsn (IILorg/lombokweb/asm/Label;[Lorg/lombokweb/asm/Label;)V 4 0 2 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitLookupSwitchInsn (Lorg/lombokweb/asm/Label;[I[Lorg/lombokweb/asm/Label;)V 0 0 1 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitMultiANewArrayInsn (Ljava/lang/String;I)V 0 0 1 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitInsnAnnotation (ILorg/lombokweb/asm/TypePath;Ljava/lang/String;Z)Lorg/lombokweb/asm/AnnotationVisitor; 0 0 1 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitTryCatchBlock (Lorg/lombokweb/asm/Label;Lorg/lombokweb/asm/Label;Lorg/lombokweb/asm/Label;Ljava/lang/String;)V 22 0 11 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitLocalVariable (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lorg/lombokweb/asm/Label;Lorg/lombokweb/asm/Label;I)V 300 0 150 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitLocalVariableAnnotation (ILorg/lombokweb/asm/TypePath;[Lorg/lombokweb/asm/Label;[Lorg/lombokweb/asm/Label;[ILjava/lang/String;Z)Lorg/lombokweb/asm/AnnotationVisitor; 0 0 1 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitMaxs (II)V 42 0 21 0 -1 +ciMethod org/lombokweb/asm/MethodVisitor visitEnd ()V 42 0 20 0 -1 +ciMethod org/lombokweb/asm/MethodWriter (Lorg/lombokweb/asm/SymbolTable;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;I)V 924 300 7140 0 0 +ciMethod org/lombokweb/asm/MethodWriter visitLabel (Lorg/lombokweb/asm/Label;)V 486 0 7571 0 -1 +ciMethod org/lombokweb/asm/MethodWriter addSuccessorToCurrentBasicBlock (ILorg/lombokweb/asm/Label;)V 0 0 1 0 -1 +ciMethod org/lombokweb/asm/MethodWriter canCopyMethodAttributes (Lorg/lombokweb/asm/ClassReader;ZZIII)Z 680 184 5482 0 720 +ciMethod org/lombokweb/asm/MethodWriter setMethodAttributesSource (II)V 674 0 7113 0 0 +ciMethod org/lombokweb/asm/SymbolTable getSource ()Lorg/lombokweb/asm/ClassReader; 280 0 140 0 0 +ciMethod org/lombokweb/asm/SymbolTable getMajorVersion ()I 358 0 179 0 0 +ciMethod org/lombokweb/asm/SymbolTable get (I)Lorg/lombokweb/asm/SymbolTable$Entry; 514 0 14709 0 0 +ciMethod org/lombokweb/asm/SymbolTable put (Lorg/lombokweb/asm/SymbolTable$Entry;)Lorg/lombokweb/asm/SymbolTable$Entry; 290 0 381 0 0 +ciMethod org/lombokweb/asm/SymbolTable addConstantClass (Ljava/lang/String;)Lorg/lombokweb/asm/Symbol; 758 0 1377 0 0 +ciMethod org/lombokweb/asm/SymbolTable addConstantUtf8 (Ljava/lang/String;)I 370 120 11569 0 1120 +ciMethod org/lombokweb/asm/SymbolTable addConstantUtf8Reference (ILjava/lang/String;)Lorg/lombokweb/asm/Symbol; 550 478 1472 0 0 +ciMethod org/lombokweb/asm/SymbolTable hash (ILjava/lang/String;)I 582 0 23781 0 0 +ciMethod org/lombokweb/asm/Symbol (IILjava/lang/String;Ljava/lang/String;Ljava/lang/String;J)V 620 0 9508 0 136 +ciMethod org/lombokweb/asm/SymbolTable$Entry (IILjava/lang/String;I)V 582 0 7173 0 128 +ciMethod org/lombokweb/asm/ByteVector ()V 528 0 7263 0 0 +ciMethod org/lombokweb/asm/ByteVector putByte (I)Lorg/lombokweb/asm/ByteVector; 542 0 3176 0 0 +ciMethod org/lombokweb/asm/ByteVector put12 (II)Lorg/lombokweb/asm/ByteVector; 294 0 1153 0 -1 +ciMethod org/lombokweb/asm/ByteVector putUTF8 (Ljava/lang/String;)Lorg/lombokweb/asm/ByteVector; 216 4142 200 0 0 +ciMethod org/lombokweb/asm/ByteVector encodeUtf8 (Ljava/lang/String;II)Lorg/lombokweb/asm/ByteVector; 0 0 1 0 -1 +ciMethod org/lombokweb/asm/ByteVector enlarge (I)V 18 0 121 0 -1 +ciMethodData org/lombokweb/asm/ClassReader readUnsignedShort (I)I 2 9250 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 8 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/ClassReader readUtf (I[C)Ljava/lang/String; 2 12931 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 36 0x80007 0xe2e 0x20 0x2455 0x220005 0x0 0x0 0x219750135e0 0xe2e 0x0 0x0 0x260005 0xe2e 0x0 0x0 0x0 0x0 0x0 0x2a0004 0x0 0x0 0x2196f1f1848 0xe2e 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 2 7 org/lombokweb/asm/ClassReader 21 java/lang/String methods 0 +ciMethodData org/lombokweb/asm/ClassReader readUtf (II[C)Ljava/lang/String; 2 3628 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 33 0x160007 0xe2c 0xa8 0x189d7 0x290007 0x0 0x38 0x189d7 0x390003 0x189d7 0x50 0x450007 0x0 0x38 0x0 0x640003 0x0 0x18 0x920003 0x189d7 0xffffffffffffff70 0x9d0002 0xe2c 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/Symbol (IILjava/lang/String;Ljava/lang/String;Ljava/lang/String;J)V 2 9198 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 16 0x10002 0x23ee 0x0 0x0 0x0 0x0 0x9 0x8 0x3e 0x0 0x0 0x0 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/SymbolTable hash (ILjava/lang/String;)I 2 23490 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 17 0x40005 0x5bc2 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0xe oops 0 methods 0 +ciMethodData org/lombokweb/asm/SymbolTable$Entry (IILjava/lang/String;I)V 2 6882 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 13 0x70002 0x1ae2 0x0 0x0 0x0 0x0 0x9 0x5 0x7e 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethod org/lombokweb/asm/Attribute (Ljava/lang/String;)V 0 0 1 0 -1 +ciMethod org/lombokweb/asm/Attribute read (Lorg/lombokweb/asm/ClassReader;II[CI[Lorg/lombokweb/asm/Label;)Lorg/lombokweb/asm/Attribute; 0 0 1 0 -1 +ciMethodData org/lombokweb/asm/ClassReader readUTF8 (I[C)Ljava/lang/String; 2 54681 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 33 0x20005 0x0 0x0 0x219750135e0 0xd599 0x0 0x0 0x70007 0x1a 0x40 0xd57f 0xb0007 0xd579 0x20 0x6 0x130005 0xd579 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 1 3 org/lombokweb/asm/ClassReader methods 0 +ciMethod org/lombokweb/asm/Type getType (Ljava/lang/String;)Lorg/lombokweb/asm/Type; 0 0 1 0 -1 +ciMethod org/lombokweb/asm/Type getArgumentsAndReturnSizes (Ljava/lang/String;)I 316 332 6886 0 2032 +ciMethod org/lombokweb/asm/Label ()V 308 0 7572 0 0 +ciMethod org/lombokweb/asm/Label addLineNumber (I)V 546 0 841 0 -1 +ciMethod org/lombokweb/asm/Label accept (Lorg/lombokweb/asm/MethodVisitor;Z)V 792 0 927 0 -1 +ciMethod org/lombokweb/asm/Label resolve ([BLorg/lombokweb/asm/ByteVector;I)Z 1024 74 5811 0 -1 +ciMethod lombok/patcher/MethodLogistics (ILjava/lang/String;)V 8 10 20 0 0 +ciMethod lombok/patcher/MethodLogistics loadOpcodeFor (Ljava/lang/String;)I 62 0 26 0 0 +ciMethod lombok/patcher/MethodLogistics returnOpcodeFor (Ljava/lang/String;)I 46 0 20 0 0 +ciMethod lombok/patcher/MethodLogistics sizeOf (Ljava/lang/String;)I 108 0 46 0 0 +ciMethodData org/lombokweb/asm/SymbolTable get (I)Lorg/lombokweb/asm/SymbolTable$Entry; 2 14452 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 8 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/ByteVector putByte (I)Lorg/lombokweb/asm/ByteVector; 2 3021 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 21 0xd0007 0xba6 0x58 0x27 0x120005 0x27 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x6 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/SymbolTable addConstantUtf8Reference (ILjava/lang/String;)Lorg/lombokweb/asm/Symbol; 2 1197 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 69 0x20002 0x4ad 0x80005 0x4ad 0x0 0x0 0x0 0x0 0x0 0xf0007 0x21 0xd0 0x6df 0x180007 0x1d0 0x98 0x50f 0x210007 0x83 0x78 0x48c 0x2a0005 0x48c 0x0 0x0 0x0 0x0 0x0 0x2d0007 0x0 0x20 0x48c 0x3a0003 0x253 0xffffffffffffff48 0x440005 0x21 0x0 0x0 0x0 0x0 0x0 0x470005 0x21 0x0 0x0 0x0 0x0 0x0 0x5e0002 0x21 0x610005 0x21 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x4c 0x0 0xffffffffffffffff oops 0 methods 0 +ciMethodData org/lombokweb/asm/SymbolTable addConstantUtf8 (Ljava/lang/String;)I 2 11384 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 68 0x20002 0x2c78 0x80005 0x2c78 0x0 0x0 0x0 0x0 0x0 0xd0007 0x5c 0xd0 0x3ff2 0x150007 0xcac 0x98 0x3346 0x1d0007 0x72a 0x78 0x2c1c 0x250005 0x2c1c 0x0 0x0 0x0 0x0 0x0 0x280007 0x0 0x20 0x2c1c 0x350003 0x13d6 0xffffffffffffff48 0x3d0005 0x0 0x0 0x21975be1680 0x5c 0x0 0x0 0x410005 0x0 0x0 0x21975be1680 0x5c 0x0 0x0 0x580002 0x5c 0x5b0005 0x5c 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x4c 0xffffffffffffffff oops 2 38 org/lombokweb/asm/ByteVector 45 org/lombokweb/asm/ByteVector methods 0 +ciMethodData org/lombokweb/asm/SymbolTable put (Lorg/lombokweb/asm/SymbolTable$Entry;)Lorg/lombokweb/asm/SymbolTable$Entry; 1 236 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 46 0xd0007 0xeb 0xc8 0x1 0x290007 0x1 0xa8 0x34e 0x370007 0x34e 0x70 0x27b 0x5a0004 0x0 0x0 0x219751a0e78 0x27b 0x0 0x0 0x5f0003 0x27b 0xffffffffffffffa8 0x650003 0x34e 0xffffffffffffff70 0x940004 0x0 0x0 0x219751a0e78 0xec 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x44 0x40 oops 2 15 org/lombokweb/asm/SymbolTable$Entry 28 org/lombokweb/asm/SymbolTable$Entry methods 0 +ciMethodData org/lombokweb/asm/ClassReader readClass (I[C)Ljava/lang/String; 2 10648 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 18 0x30005 0x2998 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/ClassReader readStringish (I[C)Ljava/lang/String; 2 10648 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 25 0x70005 0x0 0x0 0x219750135e0 0x2998 0x0 0x0 0xc0005 0x0 0x0 0x219750135e0 0x2998 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 2 3 org/lombokweb/asm/ClassReader 10 org/lombokweb/asm/ClassReader methods 0 +ciMethodData org/lombokweb/asm/Label ()V 2 7418 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 7 0x10002 0x1cfa 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/SymbolTable addConstantClass (Ljava/lang/String;)Lorg/lombokweb/asm/Symbol; 1 998 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 17 0x40005 0x3e6 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/ByteVector putUTF8 (Ljava/lang/String;)Lorg/lombokweb/asm/ByteVector; 1 92 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 67 0x10005 0x5c 0x0 0x0 0x0 0x0 0x0 0x80007 0x5c 0x30 0x0 0x110002 0x0 0x240007 0x5c 0x58 0x0 0x2b0005 0x0 0x0 0x0 0x0 0x0 0x0 0x4f0007 0x5c 0x100 0x92a 0x550005 0x92a 0x0 0x0 0x0 0x0 0x0 0x5d0007 0x0 0x58 0x92a 0x640007 0x0 0x38 0x92a 0x710003 0x92a 0x50 0x7f0005 0x0 0x0 0x0 0x0 0x0 0x0 0x860003 0x92a 0xffffffffffffff18 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0xffffffffffffffff 0xffffffffffffffff oops 0 methods 0 +ciMethodData org/lombokweb/asm/ClassReader readInt (I)I 2 1982 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 8 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/ByteVector ()V 2 6999 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0x10002 0x1b57 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/ClassReader readMethod (Lorg/lombokweb/asm/ClassVisitor;Lorg/lombokweb/asm/Context;I)I 2 6983 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 683 0xd0005 0x0 0x0 0x219750135e0 0x1b47 0x0 0x0 0x1b0005 0x0 0x0 0x219750135e0 0x1b47 0x0 0x0 0x290005 0x0 0x0 0x219750135e0 0x1b47 0x0 0x0 0x5f0005 0x0 0x0 0x219750135e0 0x1b47 0x0 0x0 0x6c0007 0x1b47 0x7c8 0x1c20 0x740005 0x0 0x0 0x219750135e0 0x1c20 0x0 0x0 0x7e0005 0x0 0x0 0x219750135e0 0x1c20 0x0 0x0 0x8b0005 0x1c20 0x0 0x0 0x0 0x0 0x0 0x8e0007 0xf0 0x58 0x1b30 0x970007 0x0 0x6c8 0x1b30 0x9e0003 0x1b30 0x6a8 0xa60005 0xf0 0x0 0x0 0x0 0x0 0x0 0xa90007 0x3b 0x118 0xb5 0xb30005 0x0 0x0 0x219750135e0 0xb5 0x0 0x0 0xc90007 0xb5 0xa8 0xb5 0xd50005 0x0 0x0 0x219750135e0 0xb5 0x0 0x0 0xd80004 0x0 0x0 0x2196f1f1848 0xb5 0x0 0x0 0xdf0003 0xb5 0xffffffffffffff70 0xe20003 0xb5 0x558 0xea0005 0x3b 0x0 0x0 0x0 0x0 0x0 0xed0007 0x1a 0x70 0x21 0xf30005 0x0 0x0 0x219750135e0 0x21 0x0 0x0 0xf80003 0x21 0x4b0 0x1000005 0x1a 0x0 0x0 0x0 0x0 0x0 0x1030007 0x0 0x38 0x1a 0x1120003 0x1a 0x440 0x11a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x11d0007 0x0 0x38 0x0 0x1240003 0x0 0x3d0 0x12c0005 0x0 0x0 0x0 0x0 0x0 0x0 0x12f0007 0x0 0x38 0x0 0x1360003 0x0 0x360 0x13e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1410007 0x0 0x38 0x0 0x1480003 0x0 0x2f0 0x1500005 0x0 0x0 0x0 0x0 0x0 0x0 0x1530007 0x0 0x38 0x0 0x1650003 0x0 0x280 0x16d0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1700007 0x0 0x38 0x0 0x1770003 0x0 0x210 0x17f0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1820007 0x0 0x38 0x0 0x1890003 0x0 0x1a0 0x1910005 0x0 0x0 0x0 0x0 0x0 0x0 0x1940007 0x0 0x38 0x0 0x19b0003 0x0 0x130 0x1a30005 0x0 0x0 0x0 0x0 0x0 0x0 0x1a60007 0x0 0x38 0x0 0x1ad0003 0x0 0xc0 0x1b50005 0x0 0x0 0x0 0x0 0x0 0x0 0x1b80007 0x0 0x38 0x0 0x1bf0003 0x0 0x50 0x1d10005 0x0 0x0 0x0 0x0 0x0 0x0 0x1e80003 0x1c20 0xfffffffffffff850 0x1fa0007 0x21 0x38 0x1b26 0x1fe0003 0x1b26 0x50 0x2060005 0x21 0x0 0x0 0x0 0x0 0x0 0x20b0005 0x7b 0x0 0x21975014f90 0x162 0x21975015040 0x196a 0x2120007 0x1ad0 0x20 0x77 0x21a0004 0xffffffffffffffef 0x0 0x219750150f0 0x1abf 0x0 0x0 0x21d0007 0x11 0x158 0x1abf 0x2220004 0x0 0x0 0x219750150f0 0x1abf 0x0 0x0 0x2340007 0x1aa5 0x38 0x1a 0x2380003 0x1a 0x18 0x2400005 0x0 0x0 0x219750135e0 0x1abf 0x0 0x0 0x2470005 0x1abf 0x0 0x0 0x0 0x0 0x0 0x24a0007 0x4 0x58 0x1abb 0x2540005 0x1abb 0x0 0x0 0x0 0x0 0x0 0x25c0007 0x15 0x158 0x0 0x2650007 0x0 0x138 0x0 0x26b0005 0x0 0x0 0x0 0x0 0x0 0x0 0x27b0007 0x0 0xe0 0x0 0x2850005 0x0 0x0 0x0 0x0 0x0 0x0 0x28d0005 0x0 0x0 0x0 0x0 0x0 0x0 0x2900005 0x0 0x0 0x0 0x0 0x0 0x0 0x2960003 0x0 0xffffffffffffff38 0x29b0007 0x15 0xe8 0x0 0x2a00005 0x0 0x0 0x0 0x0 0x0 0x0 0x2ad0005 0x0 0x0 0x0 0x0 0x0 0x0 0x2b30007 0x0 0x58 0x0 0x2b80005 0x0 0x0 0x0 0x0 0x0 0x0 0x2bd0007 0x15 0x138 0x0 0x2c30005 0x0 0x0 0x0 0x0 0x0 0x0 0x2d30007 0x0 0xe0 0x0 0x2db0005 0x0 0x0 0x0 0x0 0x0 0x0 0x2e90005 0x0 0x0 0x0 0x0 0x0 0x0 0x2f10005 0x0 0x0 0x0 0x0 0x0 0x0 0x2f60003 0x0 0xffffffffffffff38 0x2fb0007 0x15 0x138 0x0 0x3010005 0x0 0x0 0x0 0x0 0x0 0x0 0x3110007 0x0 0xe0 0x0 0x3190005 0x0 0x0 0x0 0x0 0x0 0x0 0x3270005 0x0 0x0 0x0 0x0 0x0 0x0 0x32f0005 0x0 0x0 0x0 0x0 0x0 0x0 0x3340003 0x0 0xffffffffffffff38 0x3390007 0x15 0x170 0x0 0x33f0005 0x0 0x0 0x0 0x0 0x0 0x0 0x34f0007 0x0 0x118 0x0 0x3560005 0x0 0x0 0x0 0x0 0x0 0x0 0x3600005 0x0 0x0 0x0 0x0 0x0 0x0 0x3760005 0x0 0x0 0x0 0x0 0x0 0x0 0x37e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x3830003 0x0 0xffffffffffffff00 0x3880007 0x15 0x170 0x0 0x38e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x39e0007 0x0 0x118 0x0 0x3a50005 0x0 0x0 0x0 0x0 0x0 0x0 0x3af0005 0x0 0x0 0x0 0x0 0x0 0x0 0x3c50005 0x0 0x0 0x0 0x0 0x0 0x0 0x3cd0005 0x0 0x0 0x0 0x0 0x0 0x0 0x3d20003 0x0 0xffffffffffffff00 0x3d70007 0x15 0x58 0x0 0x3e10005 0x0 0x0 0x0 0x0 0x0 0x0 0x3e60007 0x15 0x58 0x0 0x3f00005 0x0 0x0 0x0 0x0 0x0 0x0 0x3f50007 0x15 0x70 0x0 0x4090005 0x0 0x0 0x0 0x0 0x0 0x0 0x4100003 0x0 0xffffffffffffffa8 0x4150007 0x0 0x90 0x15 0x41a0005 0x8 0x0 0x219750151a0 0x9 0x219750150f0 0x4 0x4230005 0x15 0x0 0x0 0x0 0x0 0x0 0x4280005 0x8 0x0 0x219750151a0 0x9 0x219750150f0 0x4 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 19 3 org/lombokweb/asm/ClassReader 10 org/lombokweb/asm/ClassReader 17 org/lombokweb/asm/ClassReader 24 org/lombokweb/asm/ClassReader 35 org/lombokweb/asm/ClassReader 42 org/lombokweb/asm/ClassReader 78 org/lombokweb/asm/ClassReader 89 org/lombokweb/asm/ClassReader 96 java/lang/String 120 org/lombokweb/asm/ClassReader 294 lombok/patcher/scripts/AddFieldScript$1 296 lombok/patcher/PatchScript$MethodPatcher 305 org/lombokweb/asm/MethodWriter 316 org/lombokweb/asm/MethodWriter 330 org/lombokweb/asm/ClassReader 637 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 639 org/lombokweb/asm/MethodWriter 651 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 653 org/lombokweb/asm/MethodWriter methods 0 +ciMethodData org/lombokweb/asm/ClassReader readAttribute ([Lorg/lombokweb/asm/Attribute;Ljava/lang/String;II[CI[Lorg/lombokweb/asm/Label;)Lorg/lombokweb/asm/Attribute; 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 50 0xf0007 0x0 0xc8 0x0 0x1f0005 0x0 0x0 0x0 0x0 0x0 0x0 0x220007 0x0 0x58 0x0 0x310005 0x0 0x0 0x0 0x0 0x0 0x0 0x380003 0x0 0xffffffffffffff50 0x400002 0x0 0x4a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x8 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/MethodWriter canCopyMethodAttributes (Lorg/lombokweb/asm/ClassReader;ZZIII)Z 2 5142 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 106 0x50005 0x1416 0x0 0x0 0x0 0x0 0x0 0x80007 0x2 0xb8 0x1414 0x110007 0x0 0x98 0x1414 0x1a0007 0x0 0x78 0x1414 0x260007 0x1402 0x38 0x12 0x2a0003 0x12 0x18 0x2e0007 0x1414 0x20 0x0 0x370005 0x1414 0x0 0x0 0x0 0x0 0x0 0x3c0007 0x1414 0x58 0x0 0x470007 0x0 0x38 0x0 0x4b0003 0x0 0x18 0x540007 0x1414 0x20 0x0 0x5b0007 0x73 0x40 0x13a1 0x620007 0x13a1 0x108 0x0 0x6a0005 0x0 0x0 0x219750135e0 0x73 0x0 0x0 0x710007 0x0 0xb0 0x73 0x830007 0x73 0x90 0x73 0x890005 0x0 0x0 0x219750135e0 0x73 0x0 0x0 0x930007 0x73 0x20 0x0 0x9e0003 0x73 0xffffffffffffff88 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x7 0x0 0x0 0x0 0x0 0x0 0x0 0x0 oops 2 63 org/lombokweb/asm/ClassReader 78 org/lombokweb/asm/ClassReader methods 0 +ciMethodData org/lombokweb/asm/MethodWriter setMethodAttributesSource (II)V 2 6808 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 9 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/ClassReader readByte (I)I 2 1060 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 8 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/AnnotationWriter visitEnd ()V 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 11 0x50007 0x0 0x20 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/MethodVisitor (I)V 2 6678 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 8 0x30002 0x1a16 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData java/util/regex/Matcher reset ()Ljava/util/regex/Matcher; 2 198 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 53 0x170007 0xc6 0x38 0xf78 0x240003 0xf78 0xffffffffffffffe0 0x2f0007 0xc6 0x38 0x1dd 0x3c0003 0x1dd 0xffffffffffffffe0 0x470007 0xc6 0x90 0x3d 0x500007 0x3d 0x58 0x0 0x590005 0x0 0x0 0x0 0x0 0x0 0x0 0x5f0003 0x3d 0xffffffffffffff88 0x6e0005 0xc6 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x7e oops 0 methods 0 +ciMethodData java/util/regex/Matcher getTextLength ()I 1 198 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 16 0x40005 0x0 0x0 0x2196f1f1848 0xc6 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 1 3 java/lang/String methods 0 +ciMethodData java/util/regex/Pattern matcher (Ljava/lang/CharSequence;)Ljava/util/regex/Matcher; 1 53 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 30 0x40007 0x35 0x90 0x0 0xf0007 0x0 0x58 0x0 0x130005 0x0 0x0 0x0 0x0 0x0 0x0 0x180003 0x0 0x18 0x260002 0x35 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData java/util/regex/Matcher (Ljava/util/regex/Pattern;Ljava/lang/CharSequence;)V 1 50 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 25 0x10002 0x32 0x370002 0x32 0x5a0005 0x32 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x3fe 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/ClassReader readElementValue (Lorg/lombokweb/asm/AnnotationVisitor;ILjava/lang/String;[C)I 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 749 0x40007 0x0 0xe0 0x0 0x120008 0x8 0x0 0xc0 0x0 0x50 0x0 0x88 0x0 0x50 0x420005 0x0 0x0 0x0 0x0 0x0 0x0 0x4f0005 0x0 0x0 0x0 0x0 0x0 0x0 0x660008 0x6a 0x0 0x1540 0x0 0x968 0x0 0x1540 0x0 0x360 0x0 0x430 0x0 0x500 0x0 0x1540 0x0 0x500 0x0 0x1540 0x0 0x1540 0x0 0x500 0x0 0x500 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x5c0 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x690 0x0 0xa28 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x8d0 0x0 0x1540 0x0 0x810 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x1540 0x0 0x788 0x14e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1520005 0x0 0x0 0x0 0x0 0x0 0x0 0x1560002 0x0 0x1590005 0x0 0x0 0x0 0x0 0x0 0x0 0x15f0003 0x0 0x1138 0x16c0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1700005 0x0 0x0 0x0 0x0 0x0 0x0 0x1740002 0x0 0x1770005 0x0 0x0 0x0 0x0 0x0 0x0 0x17d0003 0x0 0x1068 0x1860005 0x0 0x0 0x0 0x0 0x0 0x0 0x18b0005 0x0 0x0 0x0 0x0 0x0 0x0 0x18e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1940003 0x0 0xfa8 0x1a10005 0x0 0x0 0x0 0x0 0x0 0x0 0x1a50005 0x0 0x0 0x0 0x0 0x0 0x0 0x1a90002 0x0 0x1ac0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1b20003 0x0 0xed8 0x1bf0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1c30005 0x0 0x0 0x0 0x0 0x0 0x0 0x1c60007 0x0 0x38 0x0 0x1cc0003 0x0 0x18 0x1d20005 0x0 0x0 0x0 0x0 0x0 0x0 0x1d80003 0x0 0xde0 0x1e20005 0x0 0x0 0x0 0x0 0x0 0x0 0x1e50005 0x0 0x0 0x0 0x0 0x0 0x0 0x1eb0003 0x0 0xd58 0x1f50005 0x0 0x0 0x0 0x0 0x0 0x0 0x1ff0005 0x0 0x0 0x0 0x0 0x0 0x0 0x2020005 0x0 0x0 0x0 0x0 0x0 0x0 0x2080003 0x0 0xc98 0x2120005 0x0 0x0 0x0 0x0 0x0 0x0 0x2150002 0x0 0x2180005 0x0 0x0 0x0 0x0 0x0 0x0 0x21e0003 0x0 0xc00 0x2290005 0x0 0x0 0x0 0x0 0x0 0x0 0x22c0005 0x0 0x0 0x0 0x0 0x0 0x0 0x2360005 0x0 0x0 0x0 0x0 0x0 0x0 0x23b0003 0x0 0xb40 0x2410005 0x0 0x0 0x0 0x0 0x0 0x0 0x24b0007 0x0 0x90 0x0 0x2510005 0x0 0x0 0x0 0x0 0x0 0x0 0x25b0005 0x0 0x0 0x0 0x0 0x0 0x0 0x26a0008 0x34 0x0 0x9c8 0x0 0x1b0 0x0 0x4d0 0x0 0x8c0 0x0 0x9c8 0x0 0x7b8 0x0 0x9c8 0x0 0x9c8 0x0 0x5c8 0x0 0x6c0 0x0 0x9c8 0x0 0x9c8 0x0 0x9c8 0x0 0x9c8 0x0 0x9c8 0x0 0x9c8 0x0 0x9c8 0x0 0x9c8 0x0 0x3d8 0x0 0x9c8 0x0 0x9c8 0x0 0x9c8 0x0 0x9c8 0x0 0x9c8 0x0 0x9c8 0x0 0x2a8 0x2e90007 0x0 0xa8 0x0 0x2fa0005 0x0 0x0 0x0 0x0 0x0 0x0 0x2fe0005 0x0 0x0 0x0 0x0 0x0 0x0 0x3090003 0x0 0xffffffffffffff70 0x3100005 0x0 0x0 0x0 0x0 0x0 0x0 0x3130003 0x0 0x7d0 0x3230007 0x0 0xe0 0x0 0x3340005 0x0 0x0 0x0 0x0 0x0 0x0 0x3380005 0x0 0x0 0x0 0x0 0x0 0x0 0x33b0007 0x0 0x38 0x0 0x33f0003 0x0 0x18 0x34a0003 0x0 0xffffffffffffff38 0x3510005 0x0 0x0 0x0 0x0 0x0 0x0 0x3540003 0x0 0x6a0 0x3640007 0x0 0xa8 0x0 0x3750005 0x0 0x0 0x0 0x0 0x0 0x0 0x3790005 0x0 0x0 0x0 0x0 0x0 0x0 0x3840003 0x0 0xffffffffffffff70 0x38b0005 0x0 0x0 0x0 0x0 0x0 0x0 0x38e0003 0x0 0x5a8 0x39e0007 0x0 0xa8 0x0 0x3af0005 0x0 0x0 0x0 0x0 0x0 0x0 0x3b30005 0x0 0x0 0x0 0x0 0x0 0x0 0x3be0003 0x0 0xffffffffffffff70 0x3c50005 0x0 0x0 0x0 0x0 0x0 0x0 0x3c80003 0x0 0x4b0 0x3d80007 0x0 0xa8 0x0 0x3e90005 0x0 0x0 0x0 0x0 0x0 0x0 0x3ed0005 0x0 0x0 0x0 0x0 0x0 0x0 0x3f70003 0x0 0xffffffffffffff70 0x3fe0005 0x0 0x0 0x0 0x0 0x0 0x0 0x4010003 0x0 0x3b8 0x4110007 0x0 0xa8 0x0 0x4220005 0x0 0x0 0x0 0x0 0x0 0x0 0x4260005 0x0 0x0 0x0 0x0 0x0 0x0 0x4300003 0x0 0xffffffffffffff70 0x4370005 0x0 0x0 0x0 0x0 0x0 0x0 0x43a0003 0x0 0x2c0 0x44a0007 0x0 0xb8 0x0 0x45b0005 0x0 0x0 0x0 0x0 0x0 0x0 0x45f0005 0x0 0x0 0x0 0x0 0x0 0x0 0x4620002 0x0 0x46c0003 0x0 0xffffffffffffff60 0x4730005 0x0 0x0 0x0 0x0 0x0 0x0 0x4760003 0x0 0x1b8 0x4860007 0x0 0xb8 0x0 0x4970005 0x0 0x0 0x0 0x0 0x0 0x0 0x49b0005 0x0 0x0 0x0 0x0 0x0 0x0 0x49e0002 0x0 0x4a80003 0x0 0xffffffffffffff60 0x4af0005 0x0 0x0 0x0 0x0 0x0 0x0 0x4b20003 0x0 0xb0 0x4b80005 0x0 0x0 0x0 0x0 0x0 0x0 0x4c20005 0x0 0x0 0x0 0x0 0x0 0x0 0x4c70003 0x0 0x28 0x4ce0002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x5 0x0 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/ClassReader readElementValues (Lorg/lombokweb/asm/AnnotationVisitor;IZ[C)I 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 70 0x60005 0x0 0x0 0x0 0x0 0x0 0x0 0xf0007 0x0 0xc8 0x0 0x170007 0x0 0x118 0x0 0x1f0005 0x0 0x0 0x0 0x0 0x0 0x0 0x2e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x330003 0x0 0xffffffffffffff70 0x3b0007 0x0 0x70 0x0 0x450005 0x0 0x0 0x0 0x0 0x0 0x0 0x4a0003 0x0 0xffffffffffffffa8 0x4e0007 0x0 0x58 0x0 0x520005 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x5 0x0 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/ClassReader readTypeAnnotationTarget (Lorg/lombokweb/asm/Context;I)I 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 276 0x40005 0x0 0x0 0x0 0x0 0x0 0x0 0xe0008 0x9a 0x0 0x768 0x0 0x4e0 0x0 0x4e0 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x738 0x0 0x738 0x0 0x738 0x0 0x4f8 0x0 0x4f8 0x0 0x4f8 0x0 0x4e0 0x0 0x738 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x768 0x0 0x510 0x0 0x510 0x0 0x738 0x0 0x750 0x0 0x750 0x0 0x750 0x0 0x750 0x0 0x720 0x0 0x720 0x0 0x720 0x0 0x720 0x0 0x720 0x1570003 0x0 0x298 0x1650003 0x0 0x280 0x1740005 0x0 0x0 0x0 0x0 0x0 0x0 0x19d0007 0x0 0x1c0 0x0 0x1a20005 0x0 0x0 0x0 0x0 0x0 0x0 0x1ab0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1b40005 0x0 0x0 0x0 0x0 0x0 0x0 0x1c90005 0x0 0x0 0x0 0x0 0x0 0x0 0x1cc0004 0x0 0x0 0x0 0x0 0x0 0x0 0x1dd0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1e00004 0x0 0x0 0x0 0x0 0x0 0x0 0x1ed0003 0x0 0xfffffffffffffe58 0x1f00003 0x0 0x70 0x1fe0003 0x0 0x58 0x20c0003 0x0 0x40 0x21a0003 0x0 0x28 0x2210002 0x0 0x22d0005 0x0 0x0 0x0 0x0 0x0 0x0 0x2350007 0x0 0x38 0x0 0x2390003 0x0 0x28 0x2450002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/ClassReader readParameterAnnotations (Lorg/lombokweb/asm/MethodVisitor;Lorg/lombokweb/asm/Context;IZ)V 1 0 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 62 0x180005 0x0 0x0 0x0 0x0 0x0 0x0 0x280007 0x0 0x150 0x0 0x2e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x3b0007 0x0 0xe0 0x0 0x430005 0x0 0x0 0x0 0x0 0x0 0x0 0x530005 0x0 0x0 0x0 0x0 0x0 0x0 0x5b0005 0x0 0x0 0x0 0x0 0x0 0x0 0x600003 0x0 0xffffffffffffff38 0x660003 0x0 0xfffffffffffffec8 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x5 0x0 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/ClassReader readCode (Lorg/lombokweb/asm/MethodVisitor;Lorg/lombokweb/asm/Context;I)V 2 22 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 2691 0x120005 0x0 0x0 0x219750135e0 0x16 0x0 0x0 0x1c0005 0x0 0x0 0x219750135e0 0x16 0x0 0x0 0x260005 0x0 0x0 0x219750135e0 0x16 0x0 0x0 0x380007 0x16 0x30 0x0 0x3f0002 0x0 0x600007 0x16 0x1440 0xadb 0x770008 0x1bc 0x0 0x13f8 0x0 0xdf0 0x3f 0xdf0 0x8 0xdf0 0x37 0xdf0 0x47 0xdf0 0x8 0xdf0 0x3 0xdf0 0x3 0xdf0 0x1 0xdf0 0x1 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x1d 0x1398 0xc 0x13b0 0x6 0x1398 0x18 0x13b0 0x5 0x13b0 0x53 0x1398 0x1 0x1398 0x0 0x1398 0x0 0x1398 0xb1 0x1398 0x0 0xdf0 0x15 0xdf0 0x21 0xdf0 0xc 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x13d 0xdf0 0x96 0xdf0 0x12 0xdf0 0x23 0xdf0 0x15 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x12 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x2f 0x1398 0x1 0x1398 0x0 0x1398 0x0 0x1398 0x5b 0x1398 0x0 0xdf0 0x4 0xdf0 0x4 0xdf0 0xc 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x1 0xdf0 0x4 0xdf0 0x6 0xdf0 0x13 0xdf0 0x11 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0xd 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x8 0xdf0 0x0 0xdf0 0x46 0xdf0 0xe 0xdf0 0x0 0xdf0 0xc 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0xd 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x1b 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x1 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x10 0xdf0 0x2 0xdf0 0xa 0xdf0 0x1 0xdf0 0x0 0xdf0 0x0 0xdf0 0x5 0x13b0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x3 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x5f 0xe08 0x2f 0xe08 0x1 0xe08 0x3 0xe08 0x0 0xe08 0x3 0xe08 0x2 0xe08 0xc 0xe08 0x5 0xe08 0x1 0xe08 0x0 0xe08 0x3 0xe08 0x1 0xe08 0x3 0xe08 0x4b 0xe08 0x0 0xe08 0x0 0x1398 0x2 0x10c0 0x0 0x1248 0xc 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0xf 0xdf0 0x1b 0xdf0 0x1d 0x13b0 0x1f 0x13b0 0x13e 0x13b0 0x4f 0x13b0 0xbd 0x13b0 0x15 0x13b0 0x3a 0x13b0 0x1e 0x13c8 0x2 0x13c8 0x15 0x13b0 0x1 0x1398 0xd 0x13b0 0xb 0xdf0 0x7 0xdf0 0x18 0x13b0 0x1d 0x13b0 0x0 0xdf0 0x0 0xdf0 0x0 0xfa0 0x0 0x13e0 0x19 0xe08 0x8 0xe08 0x0 0xf18 0x0 0xf18 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xf18 0x3fb0003 0x48f 0x618 0x4060005 0x0 0x0 0x219750135e0 0x11c 0x0 0x0 0x40c0005 0x11c 0x0 0x0 0x0 0x0 0x0 0x4130003 0x11c 0x590 0x41e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x4240005 0x0 0x0 0x0 0x0 0x0 0x0 0x42b0003 0x0 0x508 0x4360005 0x0 0x0 0x0 0x0 0x0 0x0 0x43c0005 0x0 0x0 0x0 0x0 0x0 0x0 0x4430003 0x0 0x480 0x4510008 0x1a 0x0 0x110 0x0 0xe0 0x0 0xe0 0x0 0xe0 0x0 0xe0 0x0 0xe0 0x0 0xe0 0x0 0xe0 0x0 0xe0 0x0 0xe0 0x0 0xe0 0x0 0xf8 0x0 0xe0 0x4bf0003 0x0 0x388 0x4c50003 0x0 0x370 0x4cc0002 0x0 0x4e10005 0x0 0x0 0x219750135e0 0x2 0x0 0x0 0x4e70005 0x2 0x0 0x0 0x0 0x0 0x0 0x4f10005 0x0 0x0 0x219750135e0 0x2 0x0 0x0 0x4f90005 0x0 0x0 0x219750135e0 0x2 0x0 0x0 0x5090007 0x2 0x268 0x11 0x5120005 0x0 0x0 0x219750135e0 0x11 0x0 0x0 0x5180005 0x11 0x0 0x0 0x0 0x0 0x0 0x51f0003 0x11 0xffffffffffffff70 0x5330005 0x0 0x0 0x0 0x0 0x0 0x0 0x5390005 0x0 0x0 0x0 0x0 0x0 0x0 0x5420005 0x0 0x0 0x0 0x0 0x0 0x0 0x54f0007 0x0 0x118 0x0 0x55a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x5600005 0x0 0x0 0x0 0x0 0x0 0x0 0x5670003 0x0 0xffffffffffffff70 0x56d0003 0x1b4 0x70 0x5730003 0x35a 0x58 0x5790003 0x20 0x40 0x57f0003 0x0 0x28 0x5860002 0x0 0x58a0003 0xadb 0xffffffffffffebd8 0x5900005 0x0 0x0 0x219750135e0 0x16 0x0 0x0 0x59d0007 0x16 0x230 0xe 0x5a40005 0x0 0x0 0x219750135e0 0xe 0x0 0x0 0x5a90005 0xe 0x0 0x0 0x0 0x0 0x0 0x5b40005 0x0 0x0 0x219750135e0 0xe 0x0 0x0 0x5b90005 0xe 0x0 0x0 0x0 0x0 0x0 0x5c40005 0x0 0x0 0x219750135e0 0xe 0x0 0x0 0x5c90005 0xe 0x0 0x0 0x0 0x0 0x0 0x5d90005 0x0 0x0 0x219750135e0 0xe 0x0 0x0 0x5df0005 0x0 0x0 0x219750135e0 0xe 0x0 0x0 0x5f00005 0x3 0x0 0x219750151a0 0x6 0x219762418c8 0x5 0x5f30003 0xe 0xfffffffffffffde8 0x6110005 0x0 0x0 0x219750135e0 0x16 0x0 0x0 0x61e0007 0x16 0x780 0x3f 0x6260005 0x0 0x0 0x219750135e0 0x3f 0x0 0x0 0x6300005 0x0 0x0 0x219750135e0 0x3f 0x0 0x0 0x63d0005 0x3f 0x0 0x0 0x0 0x0 0x0 0x6400007 0x29 0x1a8 0x16 0x6490007 0x0 0x680 0x16 0x6570005 0x0 0x0 0x219750135e0 0x16 0x0 0x0 0x6640007 0x16 0x118 0x97 0x66a0005 0x0 0x0 0x219750135e0 0x97 0x0 0x0 0x6740005 0x97 0x0 0x0 0x0 0x0 0x0 0x67c0005 0x0 0x0 0x219750135e0 0x97 0x0 0x0 0x6890005 0x97 0x0 0x0 0x0 0x0 0x0 0x68f0003 0x97 0xffffffffffffff00 0x6920003 0x16 0x510 0x69a0005 0x29 0x0 0x0 0x0 0x0 0x0 0x69d0007 0x29 0x38 0x0 0x6a40003 0x0 0x4a0 0x6ac0005 0x29 0x0 0x0 0x0 0x0 0x0 0x6af0007 0x13 0x1a8 0x16 0x6b80007 0x0 0x430 0x16 0x6c20005 0x0 0x0 0x219750135e0 0x16 0x0 0x0 0x6cf0007 0x16 0x118 0x2e8 0x6d50005 0x0 0x0 0x219750135e0 0x2e8 0x0 0x0 0x6df0005 0x0 0x0 0x219750135e0 0x2e8 0x0 0x0 0x6ec0005 0x2e8 0x0 0x0 0x0 0x0 0x0 0x6f60005 0x2e8 0x0 0x0 0x0 0x0 0x0 0x6f90003 0x2e8 0xffffffffffffff00 0x6fc0003 0x16 0x2c0 0x7040005 0x13 0x0 0x0 0x0 0x0 0x0 0x7070007 0x13 0x70 0x0 0x7100005 0x0 0x0 0x0 0x0 0x0 0x0 0x7150003 0x0 0x218 0x71d0005 0x13 0x0 0x0 0x0 0x0 0x0 0x7200007 0x13 0x70 0x0 0x7290005 0x0 0x0 0x0 0x0 0x0 0x0 0x72e0003 0x0 0x170 0x7360005 0x13 0x0 0x0 0x0 0x0 0x0 0x7390007 0x0 0x58 0x13 0x7420007 0x0 0x100 0x13 0x7520003 0x13 0xe0 0x75a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x75d0007 0x0 0x58 0x0 0x7660007 0x0 0x70 0x0 0x7790003 0x0 0x50 0x78c0005 0x0 0x0 0x0 0x0 0x0 0x0 0x7a30003 0x3f 0xfffffffffffff898 0x7ad0007 0x16 0x38 0x0 0x7b10003 0x0 0x18 0x7b90007 0x3 0x1a0 0x13 0x7e90007 0x13 0x58 0x0 0x7ee0005 0x0 0x0 0x0 0x0 0x0 0x0 0x7fb0007 0x13 0x128 0x683 0x8050007 0x679 0xf0 0xa 0x80d0005 0x0 0x0 0x219750135e0 0xa 0x0 0x0 0x8140007 0x0 0x98 0xa 0x81b0007 0x6 0x78 0x4 0x82d0007 0x0 0x58 0x4 0x8350005 0x4 0x0 0x0 0x0 0x0 0x0 0x83c0003 0x683 0xfffffffffffffef0 0x8410007 0x16 0x78 0x0 0x84c0007 0x0 0x58 0x0 0x8560005 0x0 0x0 0x0 0x0 0x0 0x0 0x8600005 0x16 0x0 0x0 0x0 0x0 0x0 0x86c0005 0x16 0x0 0x0 0x0 0x0 0x0 0x87c0007 0x0 0x38 0x16 0x8810003 0x16 0x18 0x88f0007 0x16 0x2710 0xadb 0x89c0005 0x0 0x0 0x219750135e0 0xadb 0x0 0x0 0x8a80007 0x7b3 0x90 0x328 0x8b40007 0x0 0x38 0x328 0x8b80003 0x328 0x18 0x8bc0005 0x328 0x0 0x0 0x0 0x0 0x0 0x8c10007 0x8b 0x1d0 0xb2e 0x8ca0007 0xcb 0x40 0xa63 0x8d20007 0xa50 0x190 0x13 0x8da0007 0x13 0xe8 0xcb 0x8df0007 0x0 0x40 0xcb 0x8e40007 0xcb 0x70 0x0 0x8f90005 0x0 0x0 0x0 0x0 0x0 0x0 0x8fc0003 0x0 0x50 0x9140005 0x7d 0x0 0x219750151a0 0x46 0x219750150f0 0x8 0x91e0007 0x13 0x70 0xcb 0x9290005 0xcb 0x0 0x0 0x0 0x0 0x0 0x92e0003 0xcb 0xfffffffffffffe60 0x9340003 0x13 0xfffffffffffffe48 0x9390007 0xadb 0x78 0x0 0x9430007 0x0 0x58 0x0 0x94e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x9610008 0x1bc 0x0 0x2058 0x0 0xdf0 0x3f 0xdf0 0x8 0xdf0 0x37 0xdf0 0x47 0xdf0 0x8 0xdf0 0x3 0xdf0 0x3 0xdf0 0x1 0xdf0 0x1 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x1d 0x1768 0xc 0x17b8 0x6 0x1840 0x18 0x18c8 0x5 0x18c8 0x53 0x1718 0x1 0x1718 0x0 0x1718 0x0 0x1718 0xb1 0x1718 0x0 0xe40 0x15 0xe40 0x21 0xe40 0xc 0xe40 0x0 0xe40 0x0 0xe40 0x0 0xe40 0x0 0xe40 0x0 0xe40 0x0 0xe40 0x0 0xe40 0x0 0xe40 0x0 0xe40 0x0 0xe40 0x0 0xe40 0x0 0xe40 0x13d 0xe40 0x96 0xe40 0x12 0xe40 0x23 0xe40 0x15 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x12 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x2f 0x1718 0x1 0x1718 0x0 0x1718 0x0 0x1718 0x5b 0x1718 0x0 0xe90 0x4 0xe90 0x4 0xe90 0xc 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x0 0xe90 0x1 0xe90 0x4 0xe90 0x6 0xe90 0x13 0xe90 0x11 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0xd 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x8 0xdf0 0x0 0xdf0 0x46 0xdf0 0xe 0xdf0 0x0 0xdf0 0xc 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0xd 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x1b 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x1 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x10 0xdf0 0x2 0xdf0 0xa 0xdf0 0x1 0xdf0 0x0 0xdf0 0x0 0xdf0 0x5 0x1f80 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x3 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0x5f 0xee0 0x2f 0xee0 0x1 0xee0 0x3 0xee0 0x0 0xee0 0x3 0xee0 0x2 0xee0 0xc 0xee0 0x5 0xee0 0x1 0xee0 0x0 0xee0 0x3 0xee0 0x1 0xee0 0x3 0xee0 0x4b 0xee0 0x0 0xee0 0x0 0x1718 0x2 0x13d8 0x0 0x1578 0xc 0xdf0 0x0 0xdf0 0x0 0xdf0 0x0 0xdf0 0xf 0xdf0 0x1b 0xdf0 0x1d 0x1988 0x1f 0x1988 0x13e 0x1988 0x4f 0x1988 0xbd 0x1988 0x15 0x1988 0x3a 0x1988 0x1e 0x1988 0x2 0x1bd0 0x15 0x1ef8 0x1 0x1768 0xd 0x1ef8 0xb 0xdf0 0x7 0xdf0 0x18 0x1ef8 0x1d 0x1ef8 0x0 0xdf0 0x0 0xdf0 0x0 0x1270 0x0 0x1fd0 0x19 0xee0 0x8 0xee0 0x0 0xf68 0x0 0xf68 0x0 0xff0 0x0 0xff0 0x0 0xff0 0x0 0xff0 0x0 0xff0 0x0 0xff0 0x0 0xff0 0x0 0xff0 0x0 0xff0 0x0 0xff0 0x0 0xff0 0x0 0xff0 0x0 0xff0 0x0 0xff0 0x0 0xff0 0x0 0xff0 0x0 0xff0 0x0 0xff0 0x0 0x11e8 0xce70005 0x106 0x0 0x219750151a0 0xf9 0x219750150f0 0x14 0xced0003 0x213 0x1240 0xcff0005 0x13b 0x0 0x219750151a0 0x103 0x219750150f0 0xc 0xd050003 0x24a 0x11f0 0xd170005 0x1f 0x0 0x219750151a0 0x10 0x219750150f0 0x3 0xd1d0003 0x32 0x11a0 0xd2c0005 0x0 0x0 0x219750135e0 0x11c 0x0 0x0 0xd310005 0xb0 0x0 0x219750151a0 0x65 0x219750150f0 0x7 0xd370003 0x11c 0x1118 0xd490005 0x0 0x0 0x0 0x0 0x0 0x0 0xd4e0005 0x0 0x0 0x0 0x0 0x0 0x0 0xd540003 0x0 0x1090 0xd5c0007 0x0 0x38 0x0 0xd640003 0x0 0x18 0xd770005 0x0 0x0 0x0 0x0 0x0 0x0 0xd830007 0x0 0x40 0x0 0xd8b0007 0x0 0x70 0x0 0xd960005 0x0 0x0 0x0 0x0 0x0 0x0 0xd990003 0x0 0xf8 0xda10007 0x0 0x38 0x0 0xdac0003 0x0 0x18 0xdbc0005 0x0 0x0 0x0 0x0 0x0 0x0 0xdc60005 0x0 0x0 0x0 0x0 0x0 0x0 0xdcf0005 0x0 0x0 0x0 0x0 0x0 0x0 0xdd80003 0x0 0xe98 0xde80005 0x0 0x0 0x0 0x0 0x0 0x0 0xded0005 0x0 0x0 0x0 0x0 0x0 0x0 0xdf60003 0x0 0xe10 0xe0b0007 0x0 0xe0 0x0 0xe140005 0x0 0x0 0x0 0x0 0x0 0x0 0xe1c0005 0x0 0x0 0x0 0x0 0x0 0x0 0xe1f0005 0x0 0x0 0x0 0x0 0x0 0x0 0xe250003 0x0 0xd30 0xe300005 0x0 0x0 0x0 0x0 0x0 0x0 0xe330005 0x0 0x0 0x0 0x0 0x0 0x0 0xe390003 0x0 0xca8 0xe4e0005 0x0 0x0 0x219750135e0 0x2 0x0 0x0 0xe5a0005 0x0 0x0 0x219750135e0 0x2 0x0 0x0 0xe650005 0x0 0x0 0x219750135e0 0x2 0x0 0x0 0xe810007 0x2 0xa8 0x11 0xe8f0005 0x0 0x0 0x219750135e0 0x11 0x0 0x0 0xe940004 0x0 0x0 0x21975076240 0x11 0x0 0x0 0xe9b0003 0x11 0xffffffffffffff70 0xea70005 0x0 0x0 0x219762418c8 0x2 0x0 0x0 0xeaa0003 0x2 0xb08 0xebf0005 0x0 0x0 0x0 0x0 0x0 0x0 0xecb0005 0x0 0x0 0x0 0x0 0x0 0x0 0xee70007 0x0 0xe0 0x0 0xef10005 0x0 0x0 0x0 0x0 0x0 0x0 0xf020005 0x0 0x0 0x0 0x0 0x0 0x0 0xf070004 0x0 0x0 0x0 0x0 0x0 0x0 0xf0e0003 0x0 0xffffffffffffff38 0xf180005 0x0 0x0 0x0 0x0 0x0 0x0 0xf1b0003 0x0 0x968 0xf2c0005 0x35 0x0 0x219750151a0 0x6e 0x219762418c8 0xed 0xf320003 0x190 0x918 0xf3f0005 0x6 0x0 0x219750151a0 0x5 0x219762418c8 0x13 0xf450003 0x1e 0x8c8 0xf500005 0x0 0x0 0x219750135e0 0xc 0x0 0x0 0xf530005 0x4 0x0 0x219750151a0 0x6 0x21976241978 0x2 0xf590003 0xc 0x840 0xf6b0005 0x0 0x0 0x219750135e0 0x6 0x0 0x0 0xf6e0005 0x0 0x0 0x219750150f0 0x3 0x219762418c8 0x3 0xf740003 0x6 0x7b8 0xf7e0005 0x0 0x0 0x219750135e0 0x1d 0x0 0x0 0xf830005 0x0 0x0 0x219750135e0 0x1d 0x0 0x0 0xf860005 0xa 0x0 0x219750151a0 0x12 0x219750150f0 0x1 0xf8c0003 0x1d 0x6f8 0xf980005 0x0 0x0 0x219750135e0 0x2f3 0x0 0x0 0xfa70005 0x0 0x0 0x219750135e0 0x2f3 0x0 0x0 0xfb20005 0x0 0x0 0x219750135e0 0x2f3 0x0 0x0 0xfbc0005 0x0 0x0 0x219750135e0 0x2f3 0x0 0x0 0xfc80005 0x0 0x0 0x219750135e0 0x2f3 0x0 0x0 0xfd20007 0x12a 0x70 0x1c9 0xfde0005 0x69 0x0 0x219750151a0 0xd9 0x219762418c8 0x87 0xfe10003 0x1c9 0x88 0xfed0007 0x10c 0x38 0x1e 0xff10003 0x1e 0x18 0x10020005 0xda 0x0 0x219750151a0 0x46 0x219750150f0 0xa 0x100a0007 0x2d5 0x38 0x1e 0x10100003 0x1e 0x4c8 0x10160003 0x2d5 0x4b0 0x10220005 0x0 0x0 0x219750135e0 0x2 0x0 0x0 0x10310005 0x0 0x0 0x219750135e0 0x2 0x0 0x0 0x103c0005 0x0 0x0 0x219750135e0 0x2 0x0 0x0 0x10480005 0x0 0x0 0x219750135e0 0x2 0x0 0x0 0x10540005 0x0 0x0 0x219750135e0 0x2 0x0 0x0 0x105e0005 0x0 0x0 0x219750135e0 0x2 0x0 0x0 0x10630005 0x0 0x0 0x219750135e0 0x2 0x0 0x0 0x10660004 0x0 0x0 0x21976234168 0x2 0x0 0x0 0x10700005 0x0 0x0 0x219750135e0 0x2 0x0 0x0 0x10830007 0x2 0xe0 0x2 0x108e0005 0x0 0x0 0x219750135e0 0x2 0x0 0x0 0x10930005 0x0 0x0 0x219750135e0 0x2 0x0 0x0 0x10960004 0x0 0x0 0x2196f1f1848 0x2 0x0 0x0 0x109d0003 0x2 0xffffffffffffff38 0x10a90005 0x0 0x0 0x219750151a0 0x2 0x0 0x0 0x10af0003 0x2 0x188 0x10bc0005 0x0 0x0 0x219750135e0 0x57 0x0 0x0 0x10bf0005 0x29 0x0 0x219750151a0 0x2d 0x219750150f0 0x1 0x10c50003 0x57 0x100 0x10db0005 0x1 0x0 0x219762418c8 0x3 0x219750151a0 0x1 0x10e10003 0x5 0xb0 0x10ec0005 0x0 0x0 0x0 0x0 0x0 0x0 0x10fa0005 0x0 0x0 0x0 0x0 0x0 0x0 0x11000003 0x0 0x28 0x11070002 0x0 0x110d0007 0xadb 0x1b0 0x0 0x11150007 0x0 0x190 0x0 0x111c0007 0x0 0x170 0x0 0x11230007 0x0 0x100 0x0 0x112d0005 0x0 0x0 0x0 0x0 0x0 0x0 0x11370005 0x0 0x0 0x0 0x0 0x0 0x0 0x114c0005 0x0 0x0 0x0 0x0 0x0 0x0 0x11540005 0x0 0x0 0x0 0x0 0x0 0x0 0x11600005 0x0 0x0 0x0 0x0 0x0 0x0 0x11650003 0x0 0xfffffffffffffe68 0x116a0007 0xadb 0x1b0 0x0 0x11720007 0x0 0x190 0x0 0x11790007 0x0 0x170 0x0 0x11800007 0x0 0x100 0x0 0x118a0005 0x0 0x0 0x0 0x0 0x0 0x0 0x11940005 0x0 0x0 0x0 0x0 0x0 0x0 0x11a90005 0x0 0x0 0x0 0x0 0x0 0x0 0x11b10005 0x0 0x0 0x0 0x0 0x0 0x0 0x11bd0005 0x0 0x0 0x0 0x0 0x0 0x0 0x11c20003 0x0 0xfffffffffffffe68 0x11c50003 0xadb 0xffffffffffffd908 0x11cd0007 0x1 0x58 0x15 0x11d60005 0x8 0x0 0x219750151a0 0x9 0x219750150f0 0x4 0x11db0007 0x0 0x3e8 0x16 0x11e40007 0x0 0x3c8 0x16 0x11ec0007 0x16 0x100 0x0 0x11f20005 0x0 0x0 0x0 0x0 0x0 0x0 0x12080007 0x0 0xa8 0x0 0x12250005 0x0 0x0 0x0 0x0 0x0 0x0 0x12330005 0x0 0x0 0x0 0x0 0x0 0x0 0x123a0003 0x0 0xffffffffffffff70 0x12400005 0x0 0x0 0x219750135e0 0x16 0x0 0x0 0x12500007 0x16 0x270 0x97 0x12560005 0x0 0x0 0x219750135e0 0x97 0x0 0x0 0x12600005 0x0 0x0 0x219750135e0 0x97 0x0 0x0 0x126c0005 0x0 0x0 0x219750135e0 0x97 0x0 0x0 0x12790005 0x0 0x0 0x219750135e0 0x97 0x0 0x0 0x12840005 0x0 0x0 0x219750135e0 0x97 0x0 0x0 0x12910007 0x97 0xe8 0x0 0x129c0007 0x0 0xc8 0x0 0x12a60007 0x0 0x90 0x0 0x12b20007 0x0 0x70 0x0 0x12bf0005 0x0 0x0 0x0 0x0 0x0 0x0 0x12c40003 0x0 0x30 0x12ca0003 0x0 0xffffffffffffff50 0x12e30005 0x5b 0x0 0x219750151a0 0x34 0x219750150f0 0x8 0x12e60003 0x97 0xfffffffffffffda8 0x12eb0007 0x16 0x1b0 0x0 0x12fe0007 0x0 0x190 0x0 0x130b0005 0x0 0x0 0x0 0x0 0x0 0x0 0x13140007 0x0 0x40 0x0 0x131b0007 0x0 0x100 0x0 0x13220005 0x0 0x0 0x0 0x0 0x0 0x0 0x132c0005 0x0 0x0 0x0 0x0 0x0 0x0 0x134d0005 0x0 0x0 0x0 0x0 0x0 0x0 0x13550005 0x0 0x0 0x0 0x0 0x0 0x0 0x135c0003 0x0 0xfffffffffffffe88 0x13610007 0x16 0x1b0 0x0 0x13740007 0x0 0x190 0x0 0x13810005 0x0 0x0 0x0 0x0 0x0 0x0 0x138a0007 0x0 0x40 0x0 0x13910007 0x0 0x100 0x0 0x13980005 0x0 0x0 0x0 0x0 0x0 0x0 0x13a20005 0x0 0x0 0x0 0x0 0x0 0x0 0x13c30005 0x0 0x0 0x0 0x0 0x0 0x0 0x13cb0005 0x0 0x0 0x0 0x0 0x0 0x0 0x13d20003 0x0 0xfffffffffffffe88 0x13d70007 0x16 0x70 0x0 0x13ea0005 0x0 0x0 0x0 0x0 0x0 0x0 0x13f10003 0x0 0xffffffffffffffa8 0x13f90005 0x9 0x0 0x219750151a0 0x9 0x219750150f0 0x4 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 97 3 org/lombokweb/asm/ClassReader 10 org/lombokweb/asm/ClassReader 17 org/lombokweb/asm/ClassReader 483 org/lombokweb/asm/ClassReader 570 org/lombokweb/asm/ClassReader 584 org/lombokweb/asm/ClassReader 591 org/lombokweb/asm/ClassReader 602 org/lombokweb/asm/ClassReader 678 org/lombokweb/asm/ClassReader 689 org/lombokweb/asm/ClassReader 703 org/lombokweb/asm/ClassReader 717 org/lombokweb/asm/ClassReader 731 org/lombokweb/asm/ClassReader 738 org/lombokweb/asm/ClassReader 745 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 747 lombok/patcher/scripts/WrapReturnValuesScript$WrapReturnValues 755 org/lombokweb/asm/ClassReader 766 org/lombokweb/asm/ClassReader 773 org/lombokweb/asm/ClassReader 795 org/lombokweb/asm/ClassReader 806 org/lombokweb/asm/ClassReader 820 org/lombokweb/asm/ClassReader 869 org/lombokweb/asm/ClassReader 880 org/lombokweb/asm/ClassReader 887 org/lombokweb/asm/ClassReader 1032 org/lombokweb/asm/ClassReader 1101 org/lombokweb/asm/ClassReader 1160 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 1162 org/lombokweb/asm/MethodWriter 1645 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 1647 org/lombokweb/asm/MethodWriter 1655 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 1657 org/lombokweb/asm/MethodWriter 1665 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 1667 org/lombokweb/asm/MethodWriter 1675 org/lombokweb/asm/ClassReader 1682 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 1684 org/lombokweb/asm/MethodWriter 1834 org/lombokweb/asm/ClassReader 1841 org/lombokweb/asm/ClassReader 1848 org/lombokweb/asm/ClassReader 1859 org/lombokweb/asm/ClassReader 1866 org/lombokweb/asm/Label 1876 lombok/patcher/scripts/WrapReturnValuesScript$WrapReturnValues 1938 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 1940 lombok/patcher/scripts/WrapReturnValuesScript$WrapReturnValues 1948 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 1950 lombok/patcher/scripts/WrapReturnValuesScript$WrapReturnValues 1958 org/lombokweb/asm/ClassReader 1965 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 1967 lombok/patcher/scripts/ReplaceMethodCallScript$ReplaceMethodCall 1975 org/lombokweb/asm/ClassReader 1982 org/lombokweb/asm/MethodWriter 1984 lombok/patcher/scripts/WrapReturnValuesScript$WrapReturnValues 1992 org/lombokweb/asm/ClassReader 1999 org/lombokweb/asm/ClassReader 2006 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 2008 org/lombokweb/asm/MethodWriter 2016 org/lombokweb/asm/ClassReader 2023 org/lombokweb/asm/ClassReader 2030 org/lombokweb/asm/ClassReader 2037 org/lombokweb/asm/ClassReader 2044 org/lombokweb/asm/ClassReader 2055 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 2057 lombok/patcher/scripts/WrapReturnValuesScript$WrapReturnValues 2072 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 2074 org/lombokweb/asm/MethodWriter 2089 org/lombokweb/asm/ClassReader 2096 org/lombokweb/asm/ClassReader 2103 org/lombokweb/asm/ClassReader 2110 org/lombokweb/asm/ClassReader 2117 org/lombokweb/asm/ClassReader 2124 org/lombokweb/asm/ClassReader 2131 org/lombokweb/asm/ClassReader 2138 org/lombokweb/asm/Handle 2145 org/lombokweb/asm/ClassReader 2156 org/lombokweb/asm/ClassReader 2163 org/lombokweb/asm/ClassReader 2170 java/lang/String 2180 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 2190 org/lombokweb/asm/ClassReader 2197 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 2199 org/lombokweb/asm/MethodWriter 2207 lombok/patcher/scripts/WrapReturnValuesScript$WrapReturnValues 2209 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 2351 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 2353 org/lombokweb/asm/MethodWriter 2398 org/lombokweb/asm/ClassReader 2409 org/lombokweb/asm/ClassReader 2416 org/lombokweb/asm/ClassReader 2423 org/lombokweb/asm/ClassReader 2430 org/lombokweb/asm/ClassReader 2437 org/lombokweb/asm/ClassReader 2473 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 2475 org/lombokweb/asm/MethodWriter 2605 lombok/patcher/scripts/ExitFromMethodEarlyScript$ExitEarly 2607 org/lombokweb/asm/MethodWriter methods 0 +ciMethodData org/lombokweb/asm/MethodWriter (Lorg/lombokweb/asm/SymbolTable;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;I)V 2 6678 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 116 0x30002 0x1a16 0xb0002 0x1a16 0x1a0005 0x1a16 0x0 0x0 0x0 0x0 0x0 0x1d0007 0x19fa 0x38 0x1c 0x240003 0x1c 0x18 0x2e0005 0x1a16 0x0 0x0 0x0 0x0 0x0 0x3d0005 0x1a16 0x0 0x0 0x0 0x0 0x0 0x4c0007 0x12 0x38 0x1a04 0x500003 0x1a04 0x50 0x560005 0x12 0x0 0x0 0x0 0x0 0x0 0x5e0007 0x19d9 0xc8 0x3d 0x640007 0x0 0xa8 0x3d 0x810007 0x3d 0x70 0x3d 0x900005 0x3d 0x0 0x0 0x0 0x0 0x0 0x9a0003 0x3d 0xffffffffffffffa8 0x9d0003 0x3d 0x18 0xb20007 0xa8 0x98 0x196e 0xb70002 0x196e 0xc20007 0x17db 0x20 0x193 0xd90002 0x196e 0xe40005 0x196e 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x8 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/MethodVisitor (ILorg/lombokweb/asm/MethodVisitor;)V 2 6695 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 51 0x10002 0x1a27 0x70007 0x1a27 0x100 0x0 0xd0007 0x0 0xe0 0x0 0x130007 0x0 0xc0 0x0 0x190007 0x0 0xa0 0x0 0x1f0007 0x0 0x80 0x0 0x250007 0x0 0x60 0x0 0x2b0007 0x0 0x40 0x0 0x330002 0x0 0x360002 0x0 0x3d0007 0x1a27 0x30 0x0 0x410002 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0xffffffffffffffff 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/Type getArgumentsAndReturnSizes (Ljava/lang/String;)I 2 6728 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 97 0x60005 0x1a48 0x0 0x0 0x0 0x0 0x0 0xd0007 0x1a48 0x1d8 0x17f7 0x130007 0x20 0x40 0x17d7 0x190007 0x17d7 0x38 0x0 0x220003 0x20 0x128 0x270005 0x1a90 0x0 0x0 0x0 0x0 0x0 0x2c0007 0x17d7 0x38 0x2b9 0x320003 0x2b9 0xffffffffffffffa8 0x3a0005 0x17d7 0x0 0x0 0x0 0x0 0x0 0x3f0007 0x93b 0x68 0xe9c 0x460005 0xe9c 0x0 0x0 0x0 0x0 0x0 0x500002 0xe9c 0x590005 0x17f7 0x0 0x0 0x0 0x0 0x0 0x5d0003 0x17f7 0xfffffffffffffe40 0x640005 0x1a48 0x0 0x0 0x0 0x0 0x0 0x6b0007 0x422 0x20 0x1626 0x750007 0x0 0x40 0x422 0x7b0007 0x422 0x38 0x0 0x7f0003 0x0 0x18 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/MethodWriter visitLabel (Lorg/lombokweb/asm/Label;)V 2 7420 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 121 0x180005 0x1cfc 0x0 0x0 0x0 0x0 0x0 0x250007 0x1aa1 0x20 0x25b 0x2e0007 0x1aa1 0x100 0x0 0x350007 0x0 0x78 0x0 0x430007 0x0 0x20 0x0 0x680005 0x0 0x0 0x0 0x0 0x0 0x0 0x6f0007 0x0 0x40 0x0 0x7d0007 0x0 0x20 0x0 0xbf0002 0x0 0xc50003 0x0 0x178 0xcd0007 0x1aa1 0x70 0x0 0xd40007 0x0 0x38 0x0 0xdc0003 0x0 0x120 0xea0003 0x0 0x108 0xf20007 0x1aa1 0xb0 0x0 0xf90007 0x0 0x58 0x0 0x10e0005 0x0 0x0 0x0 0x0 0x0 0x0 0x1240007 0x0 0x20 0x0 0x1340003 0x0 0x58 0x13c0007 0x0 0x40 0x1aa1 0x1430007 0xf1 0x20 0x19b0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/ClassWriter visitMethod (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)Lorg/lombokweb/asm/MethodVisitor; 2 6678 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 23 0x130002 0x1a16 0x1c0007 0x1a02 0x38 0x14 0x250003 0x14 0x18 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x6 0x0 0x0 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData org/lombokweb/asm/ClassVisitor visitMethod (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)Lorg/lombokweb/asm/MethodVisitor; 2 6621 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 25 0x40007 0x0 0x58 0x19de 0x120005 0x0 0x0 0x2197554f9a8 0x19de 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x6 0x0 0x0 0x0 0x0 0x0 0x0 oops 1 7 lombok/patcher/PatchScript$FixedClassWriter methods 0 +ciMethodData lombok/patcher/MethodTarget matches (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Z 2 6193 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 36 0x50005 0x1832 0x0 0x0 0x0 0x0 0x0 0x80007 0x27 0x20 0x180b 0xf0005 0x27 0x0 0x0 0x0 0x0 0x0 0x120007 0x27 0x20 0x0 0x190002 0x27 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x4 0x0 0x0 0x0 0x0 oops 0 methods 0 +ciMethodData lombok/patcher/PatchScript$MethodPatcher visitMethod (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)Lorg/lombokweb/asm/MethodVisitor; 2 6122 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 149 0x80002 0x17ea 0x110005 0x0 0x0 0x2196f1f52a8 0x17ea 0x0 0x0 0x180003 0x17ea 0x1e0 0x1d0005 0x0 0x0 0x2197554b960 0xedd 0x0 0x0 0x220004 0x0 0x0 0x2197554ab00 0xedd 0x0 0x0 0x290005 0x0 0x0 0x2197554ab00 0xedd 0x0 0x0 0x2d0005 0xedd 0x0 0x0 0x0 0x0 0x0 0x300007 0xeda 0xe8 0x3 0x350005 0x0 0x0 0x2197554ab00 0x3 0x0 0x0 0x390005 0x3 0x0 0x0 0x0 0x0 0x0 0x3c0007 0x0 0x58 0x3 0x410005 0x0 0x0 0x2197554b960 0x3 0x0 0x0 0x480005 0x0 0x0 0x2197554b960 0x26c7 0x0 0x0 0x4d0007 0xedd 0xfffffffffffffe00 0x17ea 0x540005 0x0 0x0 0x2196f1f52a8 0x17ea 0x0 0x0 0x5b0003 0x17ea 0x128 0x600005 0x0 0x0 0x2197554b960 0x17fd 0x0 0x0 0x650004 0x0 0x0 0x2197554ba10 0x17fd 0x0 0x0 0x720005 0x0 0x0 0x2197554ba10 0x17fd 0x0 0x0 0x770007 0x17ec 0x68 0x11 0x880002 0x11 0x8b0005 0x2 0x0 0x2197554bac0 0x9 0x2197554bb70 0x6 0x930005 0x0 0x0 0x2197554b960 0x2fd6 0x0 0x0 0x980007 0x17fc 0xfffffffffffffeb8 0x17da 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x6 0x0 0x0 0x0 0x0 0x0 0x0 oops 14 5 java/util/ArrayList 15 java/util/ArrayList$Itr 22 lombok/patcher/Hook 29 lombok/patcher/Hook 47 lombok/patcher/Hook 65 java/util/ArrayList$Itr 72 java/util/ArrayList$Itr 83 java/util/ArrayList 93 java/util/ArrayList$Itr 100 lombok/patcher/MethodTarget 107 lombok/patcher/MethodTarget 120 lombok/patcher/scripts/ExitFromMethodEarlyScript$1 122 lombok/patcher/scripts/WrapReturnValuesScript$1 127 java/util/ArrayList$Itr methods 0 +ciMethodData lombok/patcher/MethodLogistics (ILjava/lang/String;)V 1 16 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 118 0x10002 0x10 0x90007 0xe 0x38 0x2 0xd0003 0x2 0x18 0x150002 0x10 0x1a0005 0x0 0x0 0x2196f1f52a8 0x10 0x0 0x0 0x230005 0x0 0x0 0x2197554b960 0x10 0x0 0x0 0x280004 0x0 0x0 0x2196f1f1848 0x10 0x0 0x0 0x300002 0x10 0x390002 0x10 0x490002 0x10 0x520002 0x10 0x5b0002 0x10 0x600003 0x10 0x180 0x650005 0x0 0x0 0x2197554b960 0x15 0x0 0x0 0x6a0004 0x0 0x0 0x2196f1f1848 0x15 0x0 0x0 0x710002 0x15 0x7a0002 0x15 0x7d0005 0x0 0x0 0x2196f1f52a8 0x15 0x0 0x0 0x870002 0x15 0x8a0005 0x0 0x0 0x2196f1f52a8 0x15 0x0 0x0 0x940002 0x15 0x970002 0x15 0x9a0005 0x0 0x0 0x2196f1f52a8 0x15 0x0 0x0 0xa90005 0x0 0x0 0x2197554b960 0x25 0x0 0x0 0xae0007 0x15 0xfffffffffffffe60 0x10 0xb40002 0x10 0xbd0002 0x10 0xc60002 0x10 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x3 0x0 0x0 0x0 oops 9 14 java/util/ArrayList 21 java/util/ArrayList$Itr 28 java/lang/String 48 java/util/ArrayList$Itr 55 java/lang/String 66 java/util/ArrayList 75 java/util/ArrayList 86 java/util/ArrayList 93 java/util/ArrayList$Itr methods 0 +ciMethodData lombok/patcher/Hook getMethodDescriptor ()Ljava/lang/String; 1 36 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 85 0x40002 0x24 0xb0005 0x24 0x0 0x0 0x0 0x0 0x0 0x130005 0x0 0x0 0x21975fa81c0 0x24 0x0 0x0 0x190003 0x24 0xd0 0x1d0005 0x0 0x0 0x21975fa8270 0x32 0x0 0x0 0x220004 0x0 0x0 0x2196f1f1848 0x32 0x0 0x0 0x280002 0x32 0x2b0005 0x32 0x0 0x0 0x0 0x0 0x0 0x300005 0x0 0x0 0x21975fa8270 0x56 0x0 0x0 0x350007 0x32 0xffffffffffffff10 0x24 0x3b0005 0x24 0x0 0x0 0x0 0x0 0x0 0x440002 0x24 0x470005 0x24 0x0 0x0 0x0 0x0 0x0 0x4c0005 0x24 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x1 0x0 oops 4 12 java/util/Collections$UnmodifiableRandomAccessList 22 java/util/Collections$UnmodifiableCollection$1 29 java/lang/String 45 java/util/Collections$UnmodifiableCollection$1 methods 0 +ciMethodData lombok/patcher/MethodTarget classMatches (Ljava/lang/String;)Z 1 33 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 12 0x50002 0x21 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0xffffffffffffffff oops 0 methods 0 +ciMethodData lombok/patcher/MethodTarget descriptorMatch (Ljava/lang/String;)Z 1 32 orig 80 0 0 0 0 0 0 0 0 0 0 0 0 25 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 data 131 0x40007 0x1f 0x20 0x1 0xa0002 0x1f 0xd0005 0x0 0x0 0x2196f1f52a8 0x1f 0x0 0x0 0x140005 0x0 0x0 0x2197554b960 0x1f 0x0 0x0 0x190004 0x0 0x0 0x2196f1f1848 0x1f 0x0 0x0 0x200002 0x1f 0x230007 0x1b 0x20 0x4 0x2c0005 0x0 0x0 0x21975fa81c0 0x1b 0x0 0x0 0x320003 0x1b 0x128 0x360005 0x0 0x0 0x2197554b960 0x20 0x0 0x0 0x3b0004 0x0 0x0 0x2196f1f1848 0x20 0x0 0x0 0x3f0005 0x0 0x0 0x21975fa8270 0x20 0x0 0x0 0x440004 0x0 0x0 0x2196f1f1848 0x20 0x0 0x0 0x470002 0x20 0x4a0007 0x19 0x20 0x7 0x500005 0x0 0x0 0x2197554b960 0x34 0x0 0x0 0x550007 0x12 0x78 0x22 0x590005 0x0 0x0 0x21975fa8270 0x22 0x0 0x0 0x5e0007 0x20 0xfffffffffffffe60 0x2 0x620005 0x0 0x0 0x2197554b960 0x14 0x0 0x0 0x670007 0x2 0x78 0x12 0x6b0005 0x0 0x0 0x21975fa8270 0x12 0x0 0x0 0x700007 0x3 0x20 0xf 0x0 0x0 0x0 0x0 0x0 0x0 0x9 0x2 0x0 0x0 oops 12 9 java/util/ArrayList 16 java/util/ArrayList$Itr 23 java/lang/String 36 java/util/Collections$UnmodifiableRandomAccessList 46 java/util/ArrayList$Itr 53 java/lang/String 60 java/util/Collections$UnmodifiableCollection$1 67 java/lang/String 80 java/util/ArrayList$Itr 91 java/util/Collections$UnmodifiableCollection$1 102 java/util/ArrayList$Itr 113 java/util/Collections$UnmodifiableCollection$1 methods 0 +compile org/lombokweb/asm/ClassReader readMethod (Lorg/lombokweb/asm/ClassVisitor;Lorg/lombokweb/asm/Context;I)I -1 4 inline 114 0 -1 0 org/lombokweb/asm/ClassReader readMethod (Lorg/lombokweb/asm/ClassVisitor;Lorg/lombokweb/asm/Context;I)I 1 13 0 org/lombokweb/asm/ClassReader readUnsignedShort (I)I 1 95 0 org/lombokweb/asm/ClassReader readUnsignedShort (I)I 1 126 0 org/lombokweb/asm/ClassReader readInt (I)I 1 139 0 java/lang/String equals (Ljava/lang/Object;)Z 1 179 0 org/lombokweb/asm/ClassReader readUnsignedShort (I)I 1 213 0 org/lombokweb/asm/ClassReader readClass (I[C)Ljava/lang/String; 2 3 0 org/lombokweb/asm/ClassReader readStringish (I[C)Ljava/lang/String; 3 7 0 org/lombokweb/asm/ClassReader readUnsignedShort (I)I 1 523 0 lombok/patcher/PatchScript$MethodPatcher visitMethod (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)Lorg/lombokweb/asm/MethodVisitor; 2 8 0 org/lombokweb/asm/ClassVisitor visitMethod (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)Lorg/lombokweb/asm/MethodVisitor; 3 18 0 org/lombokweb/asm/ClassWriter visitMethod (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)Lorg/lombokweb/asm/MethodVisitor; 4 19 0 org/lombokweb/asm/MethodWriter (Lorg/lombokweb/asm/SymbolTable;ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;I)V 5 3 0 org/lombokweb/asm/MethodVisitor (I)V 6 3 0 org/lombokweb/asm/MethodVisitor (ILorg/lombokweb/asm/MethodVisitor;)V 7 1 0 java/lang/Object ()V 5 11 0 org/lombokweb/asm/ByteVector ()V 6 1 0 java/lang/Object ()V 5 26 0 java/lang/String equals (Ljava/lang/Object;)Z 5 46 0 org/lombokweb/asm/SymbolTable addConstantUtf8 (Ljava/lang/String;)I 6 2 0 org/lombokweb/asm/SymbolTable hash (ILjava/lang/String;)I 7 4 0 java/lang/String hashCode ()I 8 17 0 java/lang/String isLatin1 ()Z 6 8 0 org/lombokweb/asm/SymbolTable get (I)Lorg/lombokweb/asm/SymbolTable$Entry; 6 37 0 java/lang/String equals (Ljava/lang/Object;)Z 6 88 0 org/lombokweb/asm/SymbolTable$Entry (IILjava/lang/String;I)V 7 7 0 org/lombokweb/asm/Symbol (IILjava/lang/String;Ljava/lang/String;Ljava/lang/String;J)V 8 1 0 java/lang/Object ()V 5 61 0 org/lombokweb/asm/SymbolTable addConstantUtf8 (Ljava/lang/String;)I 6 2 0 org/lombokweb/asm/SymbolTable hash (ILjava/lang/String;)I 7 4 0 java/lang/String hashCode ()I 8 17 0 java/lang/String isLatin1 ()Z 6 8 0 org/lombokweb/asm/SymbolTable get (I)Lorg/lombokweb/asm/SymbolTable$Entry; 6 37 0 java/lang/String equals (Ljava/lang/Object;)Z 6 88 0 org/lombokweb/asm/SymbolTable$Entry (IILjava/lang/String;I)V 7 7 0 org/lombokweb/asm/Symbol (IILjava/lang/String;Ljava/lang/String;Ljava/lang/String;J)V 8 1 0 java/lang/Object ()V 5 144 0 org/lombokweb/asm/SymbolTable addConstantClass (Ljava/lang/String;)Lorg/lombokweb/asm/Symbol; 5 183 0 org/lombokweb/asm/Type getArgumentsAndReturnSizes (Ljava/lang/String;)I 6 6 0 java/lang/String charAt (I)C 7 1 0 java/lang/String isLatin1 ()Z 7 12 0 java/lang/StringLatin1 charAt ([BI)C 8 3 0 java/lang/String checkIndex (II)V 6 39 0 java/lang/String charAt (I)C 7 1 0 java/lang/String isLatin1 ()Z 7 12 0 java/lang/StringLatin1 charAt ([BI)C 8 3 0 java/lang/String checkIndex (II)V 6 58 0 java/lang/String charAt (I)C 7 1 0 java/lang/String isLatin1 ()Z 7 12 0 java/lang/StringLatin1 charAt ([BI)C 8 3 0 java/lang/String checkIndex (II)V 6 70 0 java/lang/String indexOf (II)I 7 1 0 java/lang/String isLatin1 ()Z 7 14 0 java/lang/String length ()I 8 6 0 java/lang/String coder ()B 7 17 0 java/lang/StringLatin1 indexOf ([BIII)I 8 1 0 java/lang/StringLatin1 canEncode (I)Z 6 89 0 java/lang/String charAt (I)C 7 1 0 java/lang/String isLatin1 ()Z 7 12 0 java/lang/StringLatin1 charAt ([BI)C 8 3 0 java/lang/String checkIndex (II)V 6 100 0 java/lang/String charAt (I)C 7 1 0 java/lang/String isLatin1 ()Z 7 12 0 java/lang/StringLatin1 charAt ([BI)C 8 3 0 java/lang/String checkIndex (II)V 5 217 0 org/lombokweb/asm/Label ()V 6 1 0 java/lang/Object ()V 2 17 0 java/util/ArrayList iterator ()Ljava/util/Iterator; 3 5 0 java/util/ArrayList$Itr (Ljava/util/ArrayList;)V 4 6 0 java/lang/Object ()V 2 72 0 java/util/ArrayList$Itr hasNext ()Z 2 29 0 java/util/ArrayList$Itr next ()Ljava/lang/Object; 3 1 0 java/util/ArrayList$Itr checkForComodification ()V 2 41 0 lombok/patcher/Hook getMethodName ()Ljava/lang/String; 2 45 0 java/lang/String equals (Ljava/lang/Object;)Z 2 84 0 java/util/ArrayList iterator ()Ljava/util/Iterator; 3 5 0 java/util/ArrayList$Itr (Ljava/util/ArrayList;)V 4 6 0 java/lang/Object ()V 2 147 0 java/util/ArrayList$Itr hasNext ()Z 2 96 0 java/util/ArrayList$Itr next ()Ljava/lang/Object; 3 1 0 java/util/ArrayList$Itr checkForComodification ()V 2 114 0 lombok/patcher/MethodTarget matches (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;)Z 3 5 0 java/lang/String equals (Ljava/lang/Object;)Z 2 136 0 lombok/patcher/MethodLogistics (ILjava/lang/String;)V 3 1 0 java/lang/Object ()V 3 48 0 lombok/patcher/MethodLogistics sizeOf (Ljava/lang/String;)I 3 57 0 lombok/patcher/MethodLogistics returnOpcodeFor (Ljava/lang/String;)I 3 73 0 java/util/ArrayList ()V 4 1 0 java/util/AbstractList ()V 5 1 0 java/util/AbstractCollection ()V 6 1 0 java/lang/Object ()V 3 82 0 java/util/ArrayList ()V 4 1 0 java/util/AbstractList ()V 5 1 0 java/util/AbstractCollection ()V 6 1 0 java/lang/Object ()V 3 91 0 java/util/ArrayList ()V 4 1 0 java/util/AbstractList ()V 5 1 0 java/util/AbstractCollection ()V 6 1 0 java/lang/Object ()V 3 113 0 lombok/patcher/MethodLogistics sizeOf (Ljava/lang/String;)I 3 122 0 java/lang/Integer valueOf (I)Ljava/lang/Integer; 3 135 0 java/lang/Integer valueOf (I)Ljava/lang/Integer; 4 28 0 java/lang/Integer (I)V 5 1 0 java/lang/Number ()V 6 1 0 java/lang/Object ()V 3 148 0 lombok/patcher/MethodLogistics loadOpcodeFor (Ljava/lang/String;)I 3 151 0 java/lang/Integer valueOf (I)Ljava/lang/Integer; 1 576 0 org/lombokweb/asm/ClassReader readUnsignedShort (I)I 1 583 0 org/lombokweb/asm/MethodWriter canCopyMethodAttributes (Lorg/lombokweb/asm/ClassReader;ZZIII)Z 2 5 0 org/lombokweb/asm/SymbolTable getSource ()Lorg/lombokweb/asm/ClassReader; 2 55 0 org/lombokweb/asm/SymbolTable getMajorVersion ()I 2 106 0 org/lombokweb/asm/ClassReader readUnsignedShort (I)I 2 137 0 org/lombokweb/asm/ClassReader readUnsignedShort (I)I 1 596 0 org/lombokweb/asm/MethodWriter setMethodAttributesSource (II)V From 0ba0e7d62c49549a5ead510f8254bf6fd3d8f8fb Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 16 May 2025 16:38:50 +0800 Subject: [PATCH 02/36] Delete 108316121-10.html --- 108316121-10.html | 125 ---------------------------------------------- 1 file changed, 125 deletions(-) delete mode 100644 108316121-10.html diff --git a/108316121-10.html b/108316121-10.html deleted file mode 100644 index 59e4251..0000000 --- a/108316121-10.html +++ /dev/null @@ -1,125 +0,0 @@ - - - 作業十 - - - -

【個性心測】你有多愛「勾心鬥角」?

- - -
    -
  • A:醜醜的百公斤胖子
    -

    A.你的勾心鬥角指數50% 。

    - 你這類型的人,覺得把自己份内的事情做好就好,不必要主動攻擊別人、或是勾心鬥角,你認為這樣的生活太辛苦了,除非是有人開始威脅你,你才會出手。 -
  • - -
  • B:黑社會的凶狠老大
    -

    B.你的勾心鬥角指數99% 。

    - 你這類型的人,內心深處很極端,平常表現優雅,對人親切,可是若有競爭對手出現的時候,你就會動用各種陰狠的手段,出幾招就讓對方死得很難看。 -
  • - -
  • C:頭髮全白的老人家
    -

    C.你的勾心鬥角指數20% 。

    - 你這類型的人,覺得做事要靠實力,勾心鬥角、鬥來鬥去時沒必要,也是浪費生命,不過你要小心被身邊的人暗算了。 -
  • -
- -
-
- - - - - - \ No newline at end of file From 2610cb9c5636b3e3041f37852777dc1552b19856 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 16 May 2025 16:39:02 +0800 Subject: [PATCH 03/36] Delete 108316121-11.html --- 108316121-11.html | 51 ----------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 108316121-11.html diff --git a/108316121-11.html b/108316121-11.html deleted file mode 100644 index c3fa52d..0000000 --- a/108316121-11.html +++ /dev/null @@ -1,51 +0,0 @@ - - - 作業11 - - - -
- -

Linux的吉祥物

-
- - \ No newline at end of file From b4330a42891c20d18cc56416ad05f53fcd4852e5 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 16 May 2025 16:39:13 +0800 Subject: [PATCH 04/36] =?UTF-8?q?Delete=20108316121-12-=E6=94=B9.html?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- "108316121-12-\346\224\271.html" | 95 -------------------------------- 1 file changed, 95 deletions(-) delete mode 100644 "108316121-12-\346\224\271.html" diff --git "a/108316121-12-\346\224\271.html" "b/108316121-12-\346\224\271.html" deleted file mode 100644 index feb50ca..0000000 --- "a/108316121-12-\346\224\271.html" +++ /dev/null @@ -1,95 +0,0 @@ - - - - - - 作業12 - - - - -
-
-
    -
  • -
  • -
  • - -
-
-
- - \ No newline at end of file From 497c30e94b0db0df64e05c1fe750bc965e1a5bcb Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 16 May 2025 16:39:22 +0800 Subject: [PATCH 05/36] Delete 108316121-13.html --- 108316121-13.html | 53 ----------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 108316121-13.html diff --git a/108316121-13.html b/108316121-13.html deleted file mode 100644 index 29f25a8..0000000 --- a/108316121-13.html +++ /dev/null @@ -1,53 +0,0 @@ - - - - 作業13 - - -
- -

文具用品計算

-

筆記本*1 =30元

-

原子筆*1 =20元

-

我要本筆記本 + 支原子筆

- - -

總共是 元

-
- - - - \ No newline at end of file From d3c72132ab612c68479253d669d67b361aa06678 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 16 May 2025 16:39:36 +0800 Subject: [PATCH 06/36] Delete 108316121-14.html --- 108316121-14.html | 51 ----------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 108316121-14.html diff --git a/108316121-14.html b/108316121-14.html deleted file mode 100644 index 7fe4a03..0000000 --- a/108316121-14.html +++ /dev/null @@ -1,51 +0,0 @@ - - - - 作業14 - - - - - - \ No newline at end of file From 59c7c4f8be11ebfaee129e6b8eb5b3293e34b2a6 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 16 May 2025 16:40:18 +0800 Subject: [PATCH 07/36] Delete 108316121-15.html --- 108316121-15.html | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 108316121-15.html diff --git a/108316121-15.html b/108316121-15.html deleted file mode 100644 index db3276c..0000000 --- a/108316121-15.html +++ /dev/null @@ -1,27 +0,0 @@ - - - - Fight Monster - - - - - - \ No newline at end of file From a6f340be5cf15d0f99ea9a3ad140432d0bfd3e76 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 16 May 2025 16:40:27 +0800 Subject: [PATCH 08/36] =?UTF-8?q?Delete=20108316121-6=20CSS=E6=A8=A3?= =?UTF-8?q?=E5=BC=8F.html?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...316121-6 CSS\346\250\243\345\274\217.html" | 92 ------------------- 1 file changed, 92 deletions(-) delete mode 100644 "108316121-6 CSS\346\250\243\345\274\217.html" diff --git "a/108316121-6 CSS\346\250\243\345\274\217.html" "b/108316121-6 CSS\346\250\243\345\274\217.html" deleted file mode 100644 index 973d90f..0000000 --- "a/108316121-6 CSS\346\250\243\345\274\217.html" +++ /dev/null @@ -1,92 +0,0 @@ - - - - 作業6 - - - - -

-

叢書介紹

-

-

-

-

叢書有底下幾種類別:

-
-

- -

-

    -
  • -

    基礎學習篇:

    -
  • -
    -
  • 基礎學習第一版
  • -
  • 基礎學習第二版
  • -
  • 基礎學習第三版
  • -
    -
- -

- -

-

    -
  • -

    進階學習篇:

    -
  • -
-
    -
    -
  1. 進階學習第一版
  2. -
  3. 進階學習第二版
  4. -
  5. 進階學習第三版
  6. -
    -
-

- -

-

    -
  • -

    伺服器架設篇:

    -
  • -
-
    -
    -
  1. 伺服器架設第一版
  2. -
  3. 伺服器架設第二版
  4. -
  5. 伺服器架設第三版
  6. -
    -
-
-

- - \ No newline at end of file From 48a1edc8257562b57c69aa05095c85142c522bf2 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 16 May 2025 16:40:48 +0800 Subject: [PATCH 09/36] Delete 108316121-8.htm --- 108316121-8.htm | 181 ------------------------------------------------ 1 file changed, 181 deletions(-) delete mode 100644 108316121-8.htm diff --git a/108316121-8.htm b/108316121-8.htm deleted file mode 100644 index 4902e5c..0000000 --- a/108316121-8.htm +++ /dev/null @@ -1,181 +0,0 @@ - - - -HW8 - - - - - - - - From e708484925d8e01327d8ed941d657445edce75a8 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 16 May 2025 16:40:58 +0800 Subject: [PATCH 10/36] =?UTF-8?q?Delete=2020200311=E7=AC=AC=E4=BA=8C?= =?UTF-8?q?=E6=AC=A1=E4=BD=9C=E6=A5=AD=20=E8=A1=A8=E6=A0=BC.htm?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\346\245\255 \350\241\250\346\240\274.htm" | 87 ------------------- 1 file changed, 87 deletions(-) delete mode 100644 "20200311\347\254\254\344\272\214\346\254\241\344\275\234\346\245\255 \350\241\250\346\240\274.htm" diff --git "a/20200311\347\254\254\344\272\214\346\254\241\344\275\234\346\245\255 \350\241\250\346\240\274.htm" "b/20200311\347\254\254\344\272\214\346\254\241\344\275\234\346\245\255 \350\241\250\346\240\274.htm" deleted file mode 100644 index b3d575b..0000000 --- "a/20200311\347\254\254\344\272\214\346\254\241\344\275\234\346\245\255 \350\241\250\346\240\274.htm" +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
統一發票開獎
 108年11-12月獎金
特別596470421000萬
特獎01260528200萬
頭獎 - - - - - 01616 - - 970
- - 69921 - - 388
- - 53451 - - 508 -
20萬
增開710、585、6332百元
二獎末7位數號碼與頭獎末7位數相同4萬元
三獎末6位數號碼與頭獎末6位數相同1萬元
四獎末5位數號碼與頭獎末5位數相同4千元
五獎末4位數號碼與頭獎末4位數相同1千元
六獎末3位數號碼與頭獎末3位數相同2百元
- - - - \ No newline at end of file From c3d7fecadeb635cf881fa986adf7fd81835b1ab2 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 16 May 2025 16:41:08 +0800 Subject: [PATCH 11/36] =?UTF-8?q?Delete=2020200318=E7=AC=AC=E4=B8=89?= =?UTF-8?q?=E6=AC=A1=E4=BD=9C=E6=A5=AD=20=E8=A1=A8=E5=96=AE.html?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...346\245\255 \350\241\250\345\226\256.html" | 44 ------------------- 1 file changed, 44 deletions(-) delete mode 100644 "20200318\347\254\254\344\270\211\346\254\241\344\275\234\346\245\255 \350\241\250\345\226\256.html" diff --git "a/20200318\347\254\254\344\270\211\346\254\241\344\275\234\346\245\255 \350\241\250\345\226\256.html" "b/20200318\347\254\254\344\270\211\346\254\241\344\275\234\346\245\255 \350\241\250\345\226\256.html" deleted file mode 100644 index 7f8b9e8..0000000 --- "a/20200318\347\254\254\344\270\211\346\254\241\344\275\234\346\245\255 \350\241\250\345\226\256.html" +++ /dev/null @@ -1,44 +0,0 @@ - - - - - -

會員申請表

- - -
-
- -個人相關資料 - - - -帳號:

-密碼:

-姓名:

-性別:男生 - 女生 -
-
-
學歷:
-1.興趣(可複選):看書 -上網 -運動 -唱歌 -聽音樂
-2.備註:
-

-
- - - -
- - From 5c9ccb614b5a9ae28546a2d0d7e974f511028aa5 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 16 May 2025 16:41:16 +0800 Subject: [PATCH 12/36] Delete Midterm_108316121.html --- Midterm_108316121.html | 242 ----------------------------------------- 1 file changed, 242 deletions(-) delete mode 100644 Midterm_108316121.html diff --git a/Midterm_108316121.html b/Midterm_108316121.html deleted file mode 100644 index 22f5900..0000000 --- a/Midterm_108316121.html +++ /dev/null @@ -1,242 +0,0 @@ - - - Midtern - - - - -
阻力帶訓練
- -
-
- -
-
- - - - - - - - - - - - - - - - - - - - - - -
最新消息

-
- 2020年4月17日 新增訓練手臂影片
- 2020年4月17日 新增訓練肩膀影片
- 2020年4月16日 新增阻力帶訓練介紹
-
-
阻力帶訓練介紹
- -

「彈力帶」是一種易於攜帶,使用簡單方便且十分有效的小型體能訓練工具。在100多年前,彈力帶阻力訓練工具便被應用在健身領域,主要用於男生的肌力訓練以及女生的體態塑身。並且廣泛應用在復健訓練的領域上。
- 彈力帶常常作為在家或工作出差時健身訓練的好器材。可配合音樂節奏,變成一種能快速修身、加強心肺功能及改善體態的有氧訓練。訓練者如果參照專業的彈力帶訓練課程進行訓練,訓練效果更加顯著。
-
訓練手臂
-

可以做深蹲 硬舉或是胸推
1.二頭彎舉
2.二頭肌下壓
3.三頭肌下壓
4.反手二頭灣舉
5.三頭肌下壓 -
-
訓練肩膀
-
-
- 肩膀訓練可以訓練到肩膀的前中後束,需要準備兩種不同磅數的彈力繩。一個阻力較大的,另一個是阻力較小的。
- 阻力較大的可用來練肩膀前束,阻力較小的可用來訓練三角肌後束。
- 阻力較大的可以練肩推。
-
訓練背肌

-

站姿划船-背肌訓練
就算你的家中環境極細,又或者不方便坐在地上的話,都可以改變動作,化身成站姿划船,同樣可以訓練得到背肌!
身體前傾,注意要挺胸和下背伸直,臀部往後推。將彈力帶調至適當長度踩在雙腳下,雙手握住彈力帶兩端,留意兩邊長度以免阻力不一。
- 雙手拉住彈力帶兩側,運用背肌,將手肘與肩膊往後拉,手肘盡量超過背部,腹部要用力收緊,亦注意不要駝背和聳肩,以免受傷。在頂峰收縮處保持一至兩秒,感受斜方肌和背闊肌收緊,然後慢慢退回原位
- -
阻力訓練的好處
-
1 可保護關節、骨骼及相關臟器
2 可優美體形,女性不用擔心肌肉變大,女性血睾酮水平很低不會形成大肌肉
3 可讓身體消耗更多能量,每多1KG肌肉會每天多消耗約77Kcal能量(每磅肌肉多消耗35Kcal),幫助減少脂肪
4 提高靈活性,提高處理突發事件能力
5 增加骨密度,防止骨質疏鬆
6 延緩衰老
-
- - -
-
- -
參考網址:https://kknews.cc/health/g295ogy.html
圖片來源:https://img95.699pic.com/photo/50063/5069.jpg_wh860.jpg
本網頁為作業之用,如有侵權敬請告知
- - - From ce2c4f288b9153d83d65c0d4ad103587c224259f Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 16 May 2025 16:41:27 +0800 Subject: [PATCH 13/36] =?UTF-8?q?Delete=2020200414=20CSS=E5=9C=93=E8=A7=92?= =?UTF-8?q?=E9=82=8A=E6=A1=86=E7=B7=B4=E7=BF=92.html?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ...\346\241\206\347\267\264\347\277\222.html" | 28 ------------------- 1 file changed, 28 deletions(-) delete mode 100644 "20200414 CSS\345\234\223\350\247\222\351\202\212\346\241\206\347\267\264\347\277\222.html" diff --git "a/20200414 CSS\345\234\223\350\247\222\351\202\212\346\241\206\347\267\264\347\277\222.html" "b/20200414 CSS\345\234\223\350\247\222\351\202\212\346\241\206\347\267\264\347\277\222.html" deleted file mode 100644 index a32b370..0000000 --- "a/20200414 CSS\345\234\223\350\247\222\351\202\212\346\241\206\347\267\264\347\277\222.html" +++ /dev/null @@ -1,28 +0,0 @@ - - - 圓角邊框練習 - - - - - - - - -
- - -
This is a dog.
這是一隻狗
- - -
- - \ No newline at end of file From 70873e7f9c47990f6bce572a1f88ff47159e23f8 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 16 May 2025 16:41:37 +0800 Subject: [PATCH 14/36] Delete 108316121-9.html --- 108316121-9.html | 179 ----------------------------------------------- 1 file changed, 179 deletions(-) delete mode 100644 108316121-9.html diff --git a/108316121-9.html b/108316121-9.html deleted file mode 100644 index 3d0c8c6..0000000 --- a/108316121-9.html +++ /dev/null @@ -1,179 +0,0 @@ - - - - - - - -
- - - -
    -
  • 台灣大學(https://www.ntu.edu.tw/) -
    國立臺灣大學(英語譯名:National Taiwan University),簡稱臺大、NTU,是臺灣第一所現代綜合大學,為臺灣學生人數最多的高等教育機構。其始於1928年日治時代中期創校的「臺北帝國大學」,1945年中華民國接收臺灣後經改制與兩次易名始用現名。現設有11個學院、3個專業學院,下分56個學系、112個研究所;另設有30餘個各學術領域之國家級或校級研究中心,以及進修推廣部[5]、臺大醫院等附屬機構,是全臺唯一學生人數超過三萬的高等教育學校。目前亦為高教深耕計畫中參與全球鏈結全校型計畫的4所學校之一。
  • -
  • 成功大學(https://web.ncku.edu.tw/) -
    國立成功大學(英文簡稱:NCKU,中文簡稱:成大),為臺灣頂尖大學之一,現為全台規模第二的全科性綜合大學。成大校本部由八大校區組成,每一校區緊緊相連,另有安南校區、歸仁校區及斗六校區,是全台唯一校區最集中的國立綜合大學。此外,成大也是南臺灣教育中心、醫學中心、光電系統科技中心、南區奈米研究中心、航太中心及區域網路中心的所在,是學術領域最為完整的研究型綜合大學。
  • -
  • 交通大學(https://www.nctu.edu.tw/) -
    本校為研究型大學,向以理工著稱,尤在電子、資通訊及光電等領域已佔世界頂尖領導之地位,另於優勢基礎之上,發展管理與科技領域之結合、開拓人文社會新興領域及開展國際客家文化。近年更結合既有優勢領域進入新興生醫電子領域並發展問題解決為取向之科技應用工程領域。
  • -
  • 清華大學(https://www.nthu.edu.tw/) -
    在學術研究上,國立清華大學與國立中央大學、國立交通大學及國立陽明大學四校共同組成中國臺灣聯合大學系統,整合各校資源,共同成立研究中心,以提升中國臺灣學術在國際間的能見度。而在學術外,清華大學和交通大學在每年的春季會舉辦“梅竹賽”,是兩校間的悠久傳統,比賽項目包含球類、橋藝、棋類、拔河等。
  • -
  • 慈濟大學(https://www.tcu.edu.tw/) -
    以慈悲喜捨之精神,為社會培育「尊重生命,以人為本」懷抱濟世助人理念,實踐志工服務的優秀人才。
  • -
- - - - - - - - - - - \ No newline at end of file From 8e4ec468365c08ac479c5429a4e9d8897a43a4e8 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 16 May 2025 16:41:47 +0800 Subject: [PATCH 15/36] Delete beau_PTT_Stock.py --- beau_PTT_Stock.py | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 beau_PTT_Stock.py diff --git a/beau_PTT_Stock.py b/beau_PTT_Stock.py deleted file mode 100644 index 70e03f5..0000000 --- a/beau_PTT_Stock.py +++ /dev/null @@ -1,10 +0,0 @@ -#利用BeautifulSoup爬取PTT -import requests -from bs4 import BeautifulSoup -response=requests.get("https://www.ptt.cc/bbs/Stock/index.html")#取得C_Stock的HTML原始碼 -root=BeautifulSoup(response.text,"html.parser") -#解析原始碼 - -links=root.find_all("div",class_="title") #文章標題 -for link in links: - print(link.text.strip()) #strip()用來刪除文字前面和後面多餘的空白 From 0431daee739f16fcf3df33a668f8bea0da892831 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 16 May 2025 16:44:24 +0800 Subject: [PATCH 16/36] Add files via upload MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 網頁 html --- "\347\266\262\351\240\201/108316121-10.html" | 125 +++++++++ "\347\266\262\351\240\201/108316121-11.html" | 51 ++++ .../108316121-12-\346\224\271.html" | 95 +++++++ "\347\266\262\351\240\201/108316121-13.html" | 53 ++++ "\347\266\262\351\240\201/108316121-14.html" | 51 ++++ "\347\266\262\351\240\201/108316121-15.html" | 27 ++ ...316121-6 CSS\346\250\243\345\274\217.html" | 92 +++++++ "\347\266\262\351\240\201/108316121-8.htm" | 181 +++++++++++++ "\347\266\262\351\240\201/108316121-9.html" | 179 +++++++++++++ ...\346\245\255 \350\241\250\346\240\274.htm" | 87 +++++++ ...346\245\255 \350\241\250\345\226\256.html" | 44 ++++ .../108316121 4 vedio.html" | 16 ++ .../108316121-4-1Server.html" | 36 +++ .../108316121-HW4 1.html" | 52 ++++ ...\346\241\206\347\267\264\347\277\222.html" | 28 ++ ...\346\234\261\345\256\266\345\204\200.html" | 242 ++++++++++++++++++ .../\345\234\260\345\234\226.jpg" | Bin 0 -> 100862 bytes 17 files changed, 1359 insertions(+) create mode 100644 "\347\266\262\351\240\201/108316121-10.html" create mode 100644 "\347\266\262\351\240\201/108316121-11.html" create mode 100644 "\347\266\262\351\240\201/108316121-12-\346\224\271.html" create mode 100644 "\347\266\262\351\240\201/108316121-13.html" create mode 100644 "\347\266\262\351\240\201/108316121-14.html" create mode 100644 "\347\266\262\351\240\201/108316121-15.html" create mode 100644 "\347\266\262\351\240\201/108316121-6 CSS\346\250\243\345\274\217.html" create mode 100644 "\347\266\262\351\240\201/108316121-8.htm" create mode 100644 "\347\266\262\351\240\201/108316121-9.html" create mode 100644 "\347\266\262\351\240\201/20200311\347\254\254\344\272\214\346\254\241\344\275\234\346\245\255 \350\241\250\346\240\274.htm" create mode 100644 "\347\266\262\351\240\201/20200318\347\254\254\344\270\211\346\254\241\344\275\234\346\245\255 \350\241\250\345\226\256.html" create mode 100644 "\347\266\262\351\240\201/20200325\347\254\254\345\233\233\346\254\241\344\275\234\346\245\255 Server and vedio/108316121 4 vedio.html" create mode 100644 "\347\266\262\351\240\201/20200325\347\254\254\345\233\233\346\254\241\344\275\234\346\245\255 Server and vedio/108316121-4-1Server.html" create mode 100644 "\347\266\262\351\240\201/20200325\347\254\254\345\233\233\346\254\241\344\275\234\346\245\255 Server and vedio/108316121-HW4 1.html" create mode 100644 "\347\266\262\351\240\201/20200414 CSS\345\234\223\350\247\222\351\202\212\346\241\206\347\267\264\347\277\222.html" create mode 100644 "\347\266\262\351\240\201/Midterm_108316121_\346\234\261\345\256\266\345\204\200.html" create mode 100644 "\347\266\262\351\240\201/\345\234\260\345\234\226.jpg" diff --git "a/\347\266\262\351\240\201/108316121-10.html" "b/\347\266\262\351\240\201/108316121-10.html" new file mode 100644 index 0000000..59e4251 --- /dev/null +++ "b/\347\266\262\351\240\201/108316121-10.html" @@ -0,0 +1,125 @@ + + + 作業十 + + + +

【個性心測】你有多愛「勾心鬥角」?

+ + +
    +
  • A:醜醜的百公斤胖子
    +

    A.你的勾心鬥角指數50% 。

    + 你這類型的人,覺得把自己份内的事情做好就好,不必要主動攻擊別人、或是勾心鬥角,你認為這樣的生活太辛苦了,除非是有人開始威脅你,你才會出手。 +
  • + +
  • B:黑社會的凶狠老大
    +

    B.你的勾心鬥角指數99% 。

    + 你這類型的人,內心深處很極端,平常表現優雅,對人親切,可是若有競爭對手出現的時候,你就會動用各種陰狠的手段,出幾招就讓對方死得很難看。 +
  • + +
  • C:頭髮全白的老人家
    +

    C.你的勾心鬥角指數20% 。

    + 你這類型的人,覺得做事要靠實力,勾心鬥角、鬥來鬥去時沒必要,也是浪費生命,不過你要小心被身邊的人暗算了。 +
  • +
+ +
+
+ + + + + + \ No newline at end of file diff --git "a/\347\266\262\351\240\201/108316121-11.html" "b/\347\266\262\351\240\201/108316121-11.html" new file mode 100644 index 0000000..c3fa52d --- /dev/null +++ "b/\347\266\262\351\240\201/108316121-11.html" @@ -0,0 +1,51 @@ + + + 作業11 + + + +
+ +

Linux的吉祥物

+
+ + \ No newline at end of file diff --git "a/\347\266\262\351\240\201/108316121-12-\346\224\271.html" "b/\347\266\262\351\240\201/108316121-12-\346\224\271.html" new file mode 100644 index 0000000..feb50ca --- /dev/null +++ "b/\347\266\262\351\240\201/108316121-12-\346\224\271.html" @@ -0,0 +1,95 @@ + + + + + + 作業12 + + + + +
+
+
    +
  • +
  • +
  • + +
+
+
+ + \ No newline at end of file diff --git "a/\347\266\262\351\240\201/108316121-13.html" "b/\347\266\262\351\240\201/108316121-13.html" new file mode 100644 index 0000000..29f25a8 --- /dev/null +++ "b/\347\266\262\351\240\201/108316121-13.html" @@ -0,0 +1,53 @@ + + + + 作業13 + + +
+ +

文具用品計算

+

筆記本*1 =30元

+

原子筆*1 =20元

+

我要本筆記本 + 支原子筆

+ + +

總共是 元

+
+ + + + \ No newline at end of file diff --git "a/\347\266\262\351\240\201/108316121-14.html" "b/\347\266\262\351\240\201/108316121-14.html" new file mode 100644 index 0000000..7fe4a03 --- /dev/null +++ "b/\347\266\262\351\240\201/108316121-14.html" @@ -0,0 +1,51 @@ + + + + 作業14 + + + + + + \ No newline at end of file diff --git "a/\347\266\262\351\240\201/108316121-15.html" "b/\347\266\262\351\240\201/108316121-15.html" new file mode 100644 index 0000000..db3276c --- /dev/null +++ "b/\347\266\262\351\240\201/108316121-15.html" @@ -0,0 +1,27 @@ + + + + Fight Monster + + + + + + \ No newline at end of file diff --git "a/\347\266\262\351\240\201/108316121-6 CSS\346\250\243\345\274\217.html" "b/\347\266\262\351\240\201/108316121-6 CSS\346\250\243\345\274\217.html" new file mode 100644 index 0000000..973d90f --- /dev/null +++ "b/\347\266\262\351\240\201/108316121-6 CSS\346\250\243\345\274\217.html" @@ -0,0 +1,92 @@ + + + + 作業6 + + + + +

+

叢書介紹

+

+

+

+

叢書有底下幾種類別:

+
+

+ +

+

    +
  • +

    基礎學習篇:

    +
  • +
    +
  • 基礎學習第一版
  • +
  • 基礎學習第二版
  • +
  • 基礎學習第三版
  • +
    +
+ +

+ +

+

    +
  • +

    進階學習篇:

    +
  • +
+
    +
    +
  1. 進階學習第一版
  2. +
  3. 進階學習第二版
  4. +
  5. 進階學習第三版
  6. +
    +
+

+ +

+

    +
  • +

    伺服器架設篇:

    +
  • +
+
    +
    +
  1. 伺服器架設第一版
  2. +
  3. 伺服器架設第二版
  4. +
  5. 伺服器架設第三版
  6. +
    +
+
+

+ + \ No newline at end of file diff --git "a/\347\266\262\351\240\201/108316121-8.htm" "b/\347\266\262\351\240\201/108316121-8.htm" new file mode 100644 index 0000000..4902e5c --- /dev/null +++ "b/\347\266\262\351\240\201/108316121-8.htm" @@ -0,0 +1,181 @@ + + + +HW8 + + + + + + + + diff --git "a/\347\266\262\351\240\201/108316121-9.html" "b/\347\266\262\351\240\201/108316121-9.html" new file mode 100644 index 0000000..3d0c8c6 --- /dev/null +++ "b/\347\266\262\351\240\201/108316121-9.html" @@ -0,0 +1,179 @@ + + + + + + + +
+ + + +
    +
  • 台灣大學(https://www.ntu.edu.tw/) +
    國立臺灣大學(英語譯名:National Taiwan University),簡稱臺大、NTU,是臺灣第一所現代綜合大學,為臺灣學生人數最多的高等教育機構。其始於1928年日治時代中期創校的「臺北帝國大學」,1945年中華民國接收臺灣後經改制與兩次易名始用現名。現設有11個學院、3個專業學院,下分56個學系、112個研究所;另設有30餘個各學術領域之國家級或校級研究中心,以及進修推廣部[5]、臺大醫院等附屬機構,是全臺唯一學生人數超過三萬的高等教育學校。目前亦為高教深耕計畫中參與全球鏈結全校型計畫的4所學校之一。
  • +
  • 成功大學(https://web.ncku.edu.tw/) +
    國立成功大學(英文簡稱:NCKU,中文簡稱:成大),為臺灣頂尖大學之一,現為全台規模第二的全科性綜合大學。成大校本部由八大校區組成,每一校區緊緊相連,另有安南校區、歸仁校區及斗六校區,是全台唯一校區最集中的國立綜合大學。此外,成大也是南臺灣教育中心、醫學中心、光電系統科技中心、南區奈米研究中心、航太中心及區域網路中心的所在,是學術領域最為完整的研究型綜合大學。
  • +
  • 交通大學(https://www.nctu.edu.tw/) +
    本校為研究型大學,向以理工著稱,尤在電子、資通訊及光電等領域已佔世界頂尖領導之地位,另於優勢基礎之上,發展管理與科技領域之結合、開拓人文社會新興領域及開展國際客家文化。近年更結合既有優勢領域進入新興生醫電子領域並發展問題解決為取向之科技應用工程領域。
  • +
  • 清華大學(https://www.nthu.edu.tw/) +
    在學術研究上,國立清華大學與國立中央大學、國立交通大學及國立陽明大學四校共同組成中國臺灣聯合大學系統,整合各校資源,共同成立研究中心,以提升中國臺灣學術在國際間的能見度。而在學術外,清華大學和交通大學在每年的春季會舉辦“梅竹賽”,是兩校間的悠久傳統,比賽項目包含球類、橋藝、棋類、拔河等。
  • +
  • 慈濟大學(https://www.tcu.edu.tw/) +
    以慈悲喜捨之精神,為社會培育「尊重生命,以人為本」懷抱濟世助人理念,實踐志工服務的優秀人才。
  • +
+ + + + + + + + + + + \ No newline at end of file diff --git "a/\347\266\262\351\240\201/20200311\347\254\254\344\272\214\346\254\241\344\275\234\346\245\255 \350\241\250\346\240\274.htm" "b/\347\266\262\351\240\201/20200311\347\254\254\344\272\214\346\254\241\344\275\234\346\245\255 \350\241\250\346\240\274.htm" new file mode 100644 index 0000000..b3d575b --- /dev/null +++ "b/\347\266\262\351\240\201/20200311\347\254\254\344\272\214\346\254\241\344\275\234\346\245\255 \350\241\250\346\240\274.htm" @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
統一發票開獎
 108年11-12月獎金
特別596470421000萬
特獎01260528200萬
頭獎 + + + + + 01616 + + 970
+ + 69921 + + 388
+ + 53451 + + 508 +
20萬
增開710、585、6332百元
二獎末7位數號碼與頭獎末7位數相同4萬元
三獎末6位數號碼與頭獎末6位數相同1萬元
四獎末5位數號碼與頭獎末5位數相同4千元
五獎末4位數號碼與頭獎末4位數相同1千元
六獎末3位數號碼與頭獎末3位數相同2百元
+ + + + \ No newline at end of file diff --git "a/\347\266\262\351\240\201/20200318\347\254\254\344\270\211\346\254\241\344\275\234\346\245\255 \350\241\250\345\226\256.html" "b/\347\266\262\351\240\201/20200318\347\254\254\344\270\211\346\254\241\344\275\234\346\245\255 \350\241\250\345\226\256.html" new file mode 100644 index 0000000..7f8b9e8 --- /dev/null +++ "b/\347\266\262\351\240\201/20200318\347\254\254\344\270\211\346\254\241\344\275\234\346\245\255 \350\241\250\345\226\256.html" @@ -0,0 +1,44 @@ + + + + + +

會員申請表

+ + +
+
+ +個人相關資料 + + + +帳號:

+密碼:

+姓名:

+性別:男生 + 女生 +
+
+
學歷:
+1.興趣(可複選):看書 +上網 +運動 +唱歌 +聽音樂
+2.備註:
+

+
+ + + +
+ + diff --git "a/\347\266\262\351\240\201/20200325\347\254\254\345\233\233\346\254\241\344\275\234\346\245\255 Server and vedio/108316121 4 vedio.html" "b/\347\266\262\351\240\201/20200325\347\254\254\345\233\233\346\254\241\344\275\234\346\245\255 Server and vedio/108316121 4 vedio.html" new file mode 100644 index 0000000..b00f3dc --- /dev/null +++ "b/\347\266\262\351\240\201/20200325\347\254\254\345\233\233\346\254\241\344\275\234\346\245\255 Server and vedio/108316121 4 vedio.html" @@ -0,0 +1,16 @@ + + + +

彩虹

+ + + + +
+
+ + +
+ + \ No newline at end of file diff --git "a/\347\266\262\351\240\201/20200325\347\254\254\345\233\233\346\254\241\344\275\234\346\245\255 Server and vedio/108316121-4-1Server.html" "b/\347\266\262\351\240\201/20200325\347\254\254\345\233\233\346\254\241\344\275\234\346\245\255 Server and vedio/108316121-4-1Server.html" new file mode 100644 index 0000000..9689eff --- /dev/null +++ "b/\347\266\262\351\240\201/20200325\347\254\254\345\233\233\346\254\241\344\275\234\346\245\255 Server and vedio/108316121-4-1Server.html" @@ -0,0 +1,36 @@ + + + + + + + +輸入的帳號:

+ +輸入的密碼:

+ +輸入的姓名:

+ + + + +輸入的性別:

+ + + +輸入的學歷:

+ + + +輸入的興趣:

+ + + \ No newline at end of file diff --git "a/\347\266\262\351\240\201/20200325\347\254\254\345\233\233\346\254\241\344\275\234\346\245\255 Server and vedio/108316121-HW4 1.html" "b/\347\266\262\351\240\201/20200325\347\254\254\345\233\233\346\254\241\344\275\234\346\245\255 Server and vedio/108316121-HW4 1.html" new file mode 100644 index 0000000..d1a09c1 --- /dev/null +++ "b/\347\266\262\351\240\201/20200325\347\254\254\345\233\233\346\254\241\344\275\234\346\245\255 Server and vedio/108316121-HW4 1.html" @@ -0,0 +1,52 @@ + + + + + +

會員申請表

+ + + +
+ +個人相關資料 + +
+ +帳號:

+ +密碼:

+ +姓名:

+性別:男生 + 女生 +
+ +
+
學歷:
+ +1.興趣(可複選):看書 +上網 +運動 +唱歌 +聽音樂
+ +2.備註:
+

+
+ + + + + + diff --git "a/\347\266\262\351\240\201/20200414 CSS\345\234\223\350\247\222\351\202\212\346\241\206\347\267\264\347\277\222.html" "b/\347\266\262\351\240\201/20200414 CSS\345\234\223\350\247\222\351\202\212\346\241\206\347\267\264\347\277\222.html" new file mode 100644 index 0000000..a32b370 --- /dev/null +++ "b/\347\266\262\351\240\201/20200414 CSS\345\234\223\350\247\222\351\202\212\346\241\206\347\267\264\347\277\222.html" @@ -0,0 +1,28 @@ + + + 圓角邊框練習 + + + + + + + + +
+ + +
This is a dog.
這是一隻狗
+ + +
+ + \ No newline at end of file diff --git "a/\347\266\262\351\240\201/Midterm_108316121_\346\234\261\345\256\266\345\204\200.html" "b/\347\266\262\351\240\201/Midterm_108316121_\346\234\261\345\256\266\345\204\200.html" new file mode 100644 index 0000000..50db6cd --- /dev/null +++ "b/\347\266\262\351\240\201/Midterm_108316121_\346\234\261\345\256\266\345\204\200.html" @@ -0,0 +1,242 @@ + + + Midtern + + + + +
阻力帶訓練
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + +
最新消息

+
+ 2020年4月17日 新增訓練手臂影片
+ 2020年4月17日 新增訓練肩膀影片
+ 2020年4月16日 新增阻力帶訓練介紹
+
+
阻力帶訓練介紹
+ +

「彈力帶」是一種易於攜帶,使用簡單方便且十分有效的小型體能訓練工具。在100多年前,彈力帶阻力訓練工具便被應用在健身領域,主要用於男生的肌力訓練以及女生的體態塑身。並且廣泛應用在復健訓練的領域上。
+ 彈力帶常常作為在家或工作出差時健身訓練的好器材。可配合音樂節奏,變成一種能快速修身、加強心肺功能及改善體態的有氧訓練。訓練者如果參照專業的彈力帶訓練課程進行訓練,訓練效果更加顯著。
+
訓練手臂
+

可以做深蹲 硬舉或是胸推
1.二頭彎舉
2.二頭肌下壓
3.三頭肌下壓
4.反手二頭灣舉
5.三頭肌下壓 +
+
訓練肩膀
+
+
+ 肩膀訓練可以訓練到肩膀的前中後束,需要準備兩種不同磅數的彈力繩。一個阻力較大的,另一個是阻力較小的。
+ 阻力較大的可用來練肩膀前束,阻力較小的可用來訓練三角肌後束。
+ 阻力較大的可以練肩推。
+
訓練背肌

+

站姿划船-背肌訓練
就算你的家中環境極細,又或者不方便坐在地上的話,都可以改變動作,化身成站姿划船,同樣可以訓練得到背肌!
身體前傾,注意要挺胸和下背伸直,臀部往後推。將彈力帶調至適當長度踩在雙腳下,雙手握住彈力帶兩端,留意兩邊長度以免阻力不一。
+ 雙手拉住彈力帶兩側,運用背肌,將手肘與肩膊往後拉,手肘盡量超過背部,腹部要用力收緊,亦注意不要駝背和聳肩,以免受傷。在頂峰收縮處保持一至兩秒,感受斜方肌和背闊肌收緊,然後慢慢退回原位
+ +
阻力訓練的好處
+
1 可保護關節、骨骼及相關臟器
2 可優美體形,女性不用擔心肌肉變大,女性血睾酮水平很低不會形成大肌肉
3 可讓身體消耗更多能量,每多1KG肌肉會每天多消耗約77Kcal能量(每磅肌肉多消耗35Kcal),幫助減少脂肪
4 提高靈活性,提高處理突發事件能力
5 增加骨密度,防止骨質疏鬆
6 延緩衰老
+
+ + +
+
+ +
參考網址:https://kknews.cc/health/g295ogy.html
圖片來源:https://img95.699pic.com/photo/50063/5069.jpg_wh860.jpg
本網頁為作業之用,如有侵權敬請告知
+ + + \ No newline at end of file diff --git "a/\347\266\262\351\240\201/\345\234\260\345\234\226.jpg" "b/\347\266\262\351\240\201/\345\234\260\345\234\226.jpg" new file mode 100644 index 0000000000000000000000000000000000000000..4c8fc17967cf55e52b1f9946dd19ce44aeea92a2 GIT binary patch literal 100862 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 z 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ℜ!{1LnXH!FAypy&hY_HlrYc^^{GQ^|~A-?Zftp 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 Date: Fri, 16 May 2025 16:52:14 +0800 Subject: [PATCH 17/36] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 179e27e..696c336 100644 --- a/README.md +++ b/README.md @@ -8,3 +8,4 @@ fw.py:分析log檔程式 ## BeautifulSoup爬取ptt_Stock標題 beau_PTT_Stock.py +# patch1(Leetcode) From caf448a1399b8b399cc385e41f6bce51b08fffa4 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 16 May 2025 16:52:34 +0800 Subject: [PATCH 18/36] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 696c336..36a3e63 100644 --- a/README.md +++ b/README.md @@ -8,4 +8,4 @@ fw.py:分析log檔程式 ## BeautifulSoup爬取ptt_Stock標題 beau_PTT_Stock.py -# patch1(Leetcode) +## patch1:Leetcode From 4c8cbc3392447c3940a2a70d5c2ac60b3a4fac46 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 16 May 2025 20:03:20 +0800 Subject: [PATCH 19/36] Update and rename 206 Reverse_Linked_LIst.py to 206 Reverse_Linked_List.py --- .../{206 Reverse_Linked_LIst.py => 206 Reverse_Linked_List.py} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename Leetcode_practice/{206 Reverse_Linked_LIst.py => 206 Reverse_Linked_List.py} (94%) diff --git a/Leetcode_practice/206 Reverse_Linked_LIst.py b/Leetcode_practice/206 Reverse_Linked_List.py similarity index 94% rename from Leetcode_practice/206 Reverse_Linked_LIst.py rename to Leetcode_practice/206 Reverse_Linked_List.py index 4cd36e6..2ebd0c0 100644 --- a/Leetcode_practice/206 Reverse_Linked_LIst.py +++ b/Leetcode_practice/206 Reverse_Linked_List.py @@ -14,4 +14,4 @@ def reverseList(self, head: Optional[ListNode]) -> Optional[ListNode]: return prev #「指向下一個 head.next」改成指向「前一個節點 prev」: -#head.next=prev \ No newline at end of file +#head.next=prev From 107fe16df80dc8fd0c8e96c6c4428ef043e0532b Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Sat, 17 May 2025 11:12:45 +0800 Subject: [PATCH 20/36] Add files via upload 24 Swap_Nodes_in_Pairs.cpp --- Leetcode_practice/24 Swap_Nodes_in_Pairs.cpp | 23 ++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 Leetcode_practice/24 Swap_Nodes_in_Pairs.cpp diff --git a/Leetcode_practice/24 Swap_Nodes_in_Pairs.cpp b/Leetcode_practice/24 Swap_Nodes_in_Pairs.cpp new file mode 100644 index 0000000..f9d9222 --- /dev/null +++ b/Leetcode_practice/24 Swap_Nodes_in_Pairs.cpp @@ -0,0 +1,23 @@ +class Solution{ +public: + ListNode* swapPairs(ListNode* head) + { + ListNode* dummy=new ListNode(0);//虛擬頭節點 + dummy->next=head; + ListNode* cur=dummy; + while(cur->next!=nullptr && cur->next->next!=nullptr) + { + ListNode* tmp1 = cur->next; //節點1 + ListNode* tmp2 = cur->next->next->next; //節點3 + + cur->next=cur->next->next; //step1,dummy->2 + cur ->next-> next=tmp1; //step2,2->1 + cur->next->next->next=tmp2;//step3,3->1 + + cur=cur->next->next; //cur向後移兩位,跳到while開頭,下一輪交換 + } + ListNode* result=dummy->next; + delete dummy; + return result; //回傳頭節點 + } +}; \ No newline at end of file From e3cc27863afd30e8d20e086bc173566a790690ab Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Sat, 17 May 2025 14:28:55 +0800 Subject: [PATCH 21/36] Add files via upload Leetcode: 19 Remove_Nth_Node_From_End_of_List --- .../19 Remove_Nth_Node_From_End_of_List.cpp | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 Leetcode_practice/19 Remove_Nth_Node_From_End_of_List.cpp diff --git a/Leetcode_practice/19 Remove_Nth_Node_From_End_of_List.cpp b/Leetcode_practice/19 Remove_Nth_Node_From_End_of_List.cpp new file mode 100644 index 0000000..c2d208c --- /dev/null +++ b/Leetcode_practice/19 Remove_Nth_Node_From_End_of_List.cpp @@ -0,0 +1,21 @@ +class Solution { +public: + ListNode* removeNthFromEnd(ListNode* head, int n) { + ListNode* dummy=new ListNode(0);//宣告虛擬頭節點 + dummy->next=head;//設定虛擬頭節點位置 + ListNode* slow=dummy; + ListNode* fast=dummy; + while(n-- && fast!=NULL){ //快指針向後移動 + fast=fast->next; + } + + fast=fast->next;//快指針在提前走一步,要讓慢指針指向刪除節點的前一個節點 + while(fast!=NULL){ //fast和slow指針,同時向右移動 + fast=fast->next; //fast指向NULL時,slow指向要刪除節點的前一個node + slow=slow->next; + } + slow->next=slow->next->next;//完成刪除倒數第n個節點 + + return dummy->next; //回傳頭節點 + } +}; \ No newline at end of file From 2b8a14260ac21a698c38fecc3b163b9ffd19a576 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Sat, 17 May 2025 16:58:51 +0800 Subject: [PATCH 22/36] Add files via upload --- Leetcode_practice/142 Linked_List_Cycle_II.py | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 Leetcode_practice/142 Linked_List_Cycle_II.py diff --git a/Leetcode_practice/142 Linked_List_Cycle_II.py b/Leetcode_practice/142 Linked_List_Cycle_II.py new file mode 100644 index 0000000..43212ea --- /dev/null +++ b/Leetcode_practice/142 Linked_List_Cycle_II.py @@ -0,0 +1,26 @@ +# Definition for singly-linked list. +# class ListNode: +# def __init__(self, x): +# self.val = x +# self.next = None + +class Solution: + def detectCycle(self,head): + slow=head + fast=head + + while fast and fast.next: + slow = slow.next #slow向後1步 + fast=fast.next.next #fast向後2步 + + #如果有一個cycle,slow和fast pointer會相遇 + if slow==fast: + #移動其中一個pointers回到list的開頭 + slow=head + while slow!=fast: + slow = slow.next + fast=fast.next + return slow + + #當沒有cycle,return None + return None \ No newline at end of file From b6444f59420934f4e123fb4fa8bfefb3d81e47b9 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Sat, 17 May 2025 19:12:41 +0800 Subject: [PATCH 23/36] Update 19 Remove_Nth_Node_From_End_of_List.cpp --- .../19 Remove_Nth_Node_From_End_of_List.cpp | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/Leetcode_practice/19 Remove_Nth_Node_From_End_of_List.cpp b/Leetcode_practice/19 Remove_Nth_Node_From_End_of_List.cpp index c2d208c..6ed01c1 100644 --- a/Leetcode_practice/19 Remove_Nth_Node_From_End_of_List.cpp +++ b/Leetcode_practice/19 Remove_Nth_Node_From_End_of_List.cpp @@ -1,3 +1,10 @@ +//1.fast先移動n步(n+1) +//2.slow和fast同時move +//3.直到fast指向NULL +//4.slow指向要刪除的node(前一個) +//5.要先把slow指向要刪除的前一個node +//6.最後slow指向的node為NULL +//7.return頭節點 class Solution { public: ListNode* removeNthFromEnd(ListNode* head, int n) { @@ -9,7 +16,7 @@ class Solution { fast=fast->next; } - fast=fast->next;//快指針在提前走一步,要讓慢指針指向刪除節點的前一個節點 + fast=fast->next;//快指針再提前走一步,要讓慢指針指向刪除節點的前一個節點 while(fast!=NULL){ //fast和slow指針,同時向右移動 fast=fast->next; //fast指向NULL時,slow指向要刪除節點的前一個node slow=slow->next; @@ -18,4 +25,4 @@ class Solution { return dummy->next; //回傳頭節點 } -}; \ No newline at end of file +}; From 24a99959843456d37befabb1d50715f9044dc51d Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Sun, 18 May 2025 22:01:17 +0800 Subject: [PATCH 24/36] Add files via upload 242 Valid Anagram --- Leetcode_practice/242 Valid Anagram.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 Leetcode_practice/242 Valid Anagram.py diff --git a/Leetcode_practice/242 Valid Anagram.py b/Leetcode_practice/242 Valid Anagram.py new file mode 100644 index 0000000..a226284 --- /dev/null +++ b/Leetcode_practice/242 Valid Anagram.py @@ -0,0 +1,13 @@ +class Solution: + def isAnagram(self,s:str,t:str): + record=[0]*26 + for i in s: + #不需記字符a的ASCII,只要求出一個相對數值就可以 + record[ord(i)-ord("a")]+=1 + for i in t: + record[ord(i)-ord("a")]-=1 + for i in range(26): + if record[i]!=0: + #record若有些element!=0,說明string s和t,一定有多字符or少字符。 + return False + return True \ No newline at end of file From 5590c6a12da791a2586cbe202d1640d33ece1f37 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Mon, 19 May 2025 08:05:36 +0800 Subject: [PATCH 25/36] Update 242 Valid Anagram.py --- Leetcode_practice/242 Valid Anagram.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Leetcode_practice/242 Valid Anagram.py b/Leetcode_practice/242 Valid Anagram.py index a226284..f10527b 100644 --- a/Leetcode_practice/242 Valid Anagram.py +++ b/Leetcode_practice/242 Valid Anagram.py @@ -2,12 +2,12 @@ class Solution: def isAnagram(self,s:str,t:str): record=[0]*26 for i in s: - #不需記字符a的ASCII,只要求出一個相對數值就可以 + #不需記字母a的ASCII,只要求出一個相對數值就可以 record[ord(i)-ord("a")]+=1 for i in t: record[ord(i)-ord("a")]-=1 for i in range(26): if record[i]!=0: #record若有些element!=0,說明string s和t,一定有多字符or少字符。 - return False + return False#不是有效的 return True \ No newline at end of file From a8137fb2d12bff626c26148be5a49450005bf585 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Mon, 19 May 2025 08:12:44 +0800 Subject: [PATCH 26/36] Update 242 Valid Anagram.py --- Leetcode_practice/242 Valid Anagram.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Leetcode_practice/242 Valid Anagram.py b/Leetcode_practice/242 Valid Anagram.py index f10527b..60e00ec 100644 --- a/Leetcode_practice/242 Valid Anagram.py +++ b/Leetcode_practice/242 Valid Anagram.py @@ -10,4 +10,4 @@ def isAnagram(self,s:str,t:str): if record[i]!=0: #record若有些element!=0,說明string s和t,一定有多字符or少字符。 return False#不是有效的 - return True \ No newline at end of file + return True#是有效的 \ No newline at end of file From 768d6f7911c71390364d499d8239ad594a62bcb1 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Mon, 19 May 2025 11:02:53 +0800 Subject: [PATCH 27/36] Add files via upload --- .../349 Intersection_of_Two_Arrays.py | 33 +++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Leetcode_practice/349 Intersection_of_Two_Arrays.py diff --git a/Leetcode_practice/349 Intersection_of_Two_Arrays.py b/Leetcode_practice/349 Intersection_of_Two_Arrays.py new file mode 100644 index 0000000..1d59aae --- /dev/null +++ b/Leetcode_practice/349 Intersection_of_Two_Arrays.py @@ -0,0 +1,33 @@ + +# Two array的Intersection +#Use Dictionary and Set + +class Solution(object): + def intersection(nums1,nums2): + #Use Hash Table save一個array中的所有element + table={} + for num in nums1: + table[num]=table.get(num,0)+1 + #Use set to save result + result=set() + for num in nums2: + if num in table: + result.add(num) #新增有intersection的element到result list + del table[num] + return list(result) #return intersection的結果 + + +#Use Dictionary +class Solution: + def intersection(self,nums1,nums2): + count1=[0]*1001 + count2=[0]*1001 #題目要求length不超過1000 + result=[] #存intersection result + for i in range(len(nums1)): + count1[nums1[i]]+=1 + for j in range(len(nums2)): + count2[nums2[j]]+=1 + for k in range(1001): + if count1[k]*count2[k]>0: + result.append(k) #若發現有intersection,新增element到result的dictionary + return result #return intersection的結果 \ No newline at end of file From a6a8a729aad1bdb25eefdb4c846d58858e150ba2 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Mon, 19 May 2025 11:03:29 +0800 Subject: [PATCH 28/36] Update 349 Intersection_of_Two_Arrays.py --- Leetcode_practice/349 Intersection_of_Two_Arrays.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Leetcode_practice/349 Intersection_of_Two_Arrays.py b/Leetcode_practice/349 Intersection_of_Two_Arrays.py index 1d59aae..66cfed9 100644 --- a/Leetcode_practice/349 Intersection_of_Two_Arrays.py +++ b/Leetcode_practice/349 Intersection_of_Two_Arrays.py @@ -1,4 +1,3 @@ - # Two array的Intersection #Use Dictionary and Set @@ -30,4 +29,4 @@ def intersection(self,nums1,nums2): for k in range(1001): if count1[k]*count2[k]>0: result.append(k) #若發現有intersection,新增element到result的dictionary - return result #return intersection的結果 \ No newline at end of file + return result #return intersection的結果 From a130e434562bb966323240a6cb3311d8d4322b0c Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Fri, 23 May 2025 13:04:08 +0800 Subject: [PATCH 29/36] Update 349 Intersection_of_Two_Arrays.py --- Leetcode_practice/349 Intersection_of_Two_Arrays.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Leetcode_practice/349 Intersection_of_Two_Arrays.py b/Leetcode_practice/349 Intersection_of_Two_Arrays.py index 66cfed9..8430f82 100644 --- a/Leetcode_practice/349 Intersection_of_Two_Arrays.py +++ b/Leetcode_practice/349 Intersection_of_Two_Arrays.py @@ -1,5 +1,5 @@ # Two array的Intersection -#Use Dictionary and Set +#Use List and Set class Solution(object): def intersection(nums1,nums2): From d1a22a22ffd151e49923dc91004365ed0ebe1279 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Wed, 4 Jun 2025 14:04:15 +0800 Subject: [PATCH 30/36] Add files via upload --- Leetcode_practice/001 Two Sum.java | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 Leetcode_practice/001 Two Sum.java diff --git a/Leetcode_practice/001 Two Sum.java b/Leetcode_practice/001 Two Sum.java new file mode 100644 index 0000000..cf13a2d --- /dev/null +++ b/Leetcode_practice/001 Two Sum.java @@ -0,0 +1,16 @@ +import java.util.Map; + +public int[] twoSum(int[] nums,int target){ + Map indexMap=new HashMap<>(); + + for(int i=0;i Date: Wed, 4 Jun 2025 14:08:38 +0800 Subject: [PATCH 31/36] Update 001 Two Sum.java --- Leetcode_practice/001 Two Sum.java | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Leetcode_practice/001 Two Sum.java b/Leetcode_practice/001 Two Sum.java index cf13a2d..e6f6bcf 100644 --- a/Leetcode_practice/001 Two Sum.java +++ b/Leetcode_practice/001 Two Sum.java @@ -1,5 +1,6 @@ import java.util.Map; +class Solution { public int[] twoSum(int[] nums,int target){ Map indexMap=new HashMap<>(); @@ -9,8 +10,9 @@ public int[] twoSum(int[] nums,int target){ return new int[]{i,indexMap.get(s)};//如果有找到,return目標值 } else{ - indexMap.put(nums[i],i);//如果沒有,把遍歷過的元素和下標加入map中 + indexMap.put(nums[i],i);//如果沒有,把遍歷過的元素和下標(index)加入map中 } } return null; -} \ No newline at end of file +} +} From 46a7142bdb33829ce7afcec6c158e84a38fac13b Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Thu, 5 Jun 2025 09:41:10 +0800 Subject: [PATCH 32/36] Add files via upload --- Leetcode_practice/454 4Sum II.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 Leetcode_practice/454 4Sum II.py diff --git a/Leetcode_practice/454 4Sum II.py b/Leetcode_practice/454 4Sum II.py new file mode 100644 index 0000000..2c0067e --- /dev/null +++ b/Leetcode_practice/454 4Sum II.py @@ -0,0 +1,25 @@ +class Solution(object): + def fourSumCount(self, nums1, nums2, nums3, nums4): + """ + :type nums1: List[int] + :type nums2: List[int] + :type nums3: List[int] + :type nums4: List[int] + :rtype: int + """ + #用dictionary存nums1,nums2的元素,和 + hashmap=dict() + for n1 in nums1: + for n2 in nums2: + if n1+n2 in hashmap: + hashmap[n1+n2]+=1#統計n1+n2的出現次數 + else: + hashmap[n1+n2]=1 + #if nums3和nums4,存在-(n1+n2),存到count + count=0 + for n3 in nums3: + for n4 in nums4: + key = -n3-n4 + if key in hashmap:#找到hashmap中key對應的數值 + count+=hashmap[key] + return count #count統計四元組 \ No newline at end of file From 0895bb0aeb909d2bcc1e34e89acfe9889133fbf3 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Sun, 22 Jun 2025 10:58:15 +0800 Subject: [PATCH 33/36] Create test.txt --- Leetcode_practice/leetcode_sql/test.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 Leetcode_practice/leetcode_sql/test.txt diff --git a/Leetcode_practice/leetcode_sql/test.txt b/Leetcode_practice/leetcode_sql/test.txt new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/Leetcode_practice/leetcode_sql/test.txt @@ -0,0 +1 @@ + From 4749931b89b27d908acef18e84d1544dc5f098d2 Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Sun, 22 Jun 2025 10:58:47 +0800 Subject: [PATCH 34/36] Add files via upload --- Leetcode_practice/leetcode_sql/1148. Article Views I.sql | 4 ++++ .../1378. Replace Employee ID With The Unique Identifier.sql | 2 ++ Leetcode_practice/leetcode_sql/1683. Invalid Tweets.sql | 3 +++ .../leetcode_sql/1757. Recyclable and Low Fat Products.sql | 3 +++ Leetcode_practice/leetcode_sql/584. Find Customer Referee.sql | 3 +++ Leetcode_practice/leetcode_sql/595. Big Countries.sql | 3 +++ 6 files changed, 18 insertions(+) create mode 100644 Leetcode_practice/leetcode_sql/1148. Article Views I.sql create mode 100644 Leetcode_practice/leetcode_sql/1378. Replace Employee ID With The Unique Identifier.sql create mode 100644 Leetcode_practice/leetcode_sql/1683. Invalid Tweets.sql create mode 100644 Leetcode_practice/leetcode_sql/1757. Recyclable and Low Fat Products.sql create mode 100644 Leetcode_practice/leetcode_sql/584. Find Customer Referee.sql create mode 100644 Leetcode_practice/leetcode_sql/595. Big Countries.sql diff --git a/Leetcode_practice/leetcode_sql/1148. Article Views I.sql b/Leetcode_practice/leetcode_sql/1148. Article Views I.sql new file mode 100644 index 0000000..d42fbc0 --- /dev/null +++ b/Leetcode_practice/leetcode_sql/1148. Article Views I.sql @@ -0,0 +1,4 @@ +select distinct author_id as id +FROM Views +where author_id=viewer_id +ORDER BY id; \ No newline at end of file diff --git a/Leetcode_practice/leetcode_sql/1378. Replace Employee ID With The Unique Identifier.sql b/Leetcode_practice/leetcode_sql/1378. Replace Employee ID With The Unique Identifier.sql new file mode 100644 index 0000000..f6458a9 --- /dev/null +++ b/Leetcode_practice/leetcode_sql/1378. Replace Employee ID With The Unique Identifier.sql @@ -0,0 +1,2 @@ +SELECT eu.unique_id as unique_id,e.name as name +FROM Employees e left join EmployeeUNI eu on e.id=eu.id \ No newline at end of file diff --git a/Leetcode_practice/leetcode_sql/1683. Invalid Tweets.sql b/Leetcode_practice/leetcode_sql/1683. Invalid Tweets.sql new file mode 100644 index 0000000..088df47 --- /dev/null +++ b/Leetcode_practice/leetcode_sql/1683. Invalid Tweets.sql @@ -0,0 +1,3 @@ +SELECT tweet_id +FROM Tweets +WHERE LENGTH(content)>15 \ No newline at end of file diff --git a/Leetcode_practice/leetcode_sql/1757. Recyclable and Low Fat Products.sql b/Leetcode_practice/leetcode_sql/1757. Recyclable and Low Fat Products.sql new file mode 100644 index 0000000..4578a8c --- /dev/null +++ b/Leetcode_practice/leetcode_sql/1757. Recyclable and Low Fat Products.sql @@ -0,0 +1,3 @@ +SELECT product_id +FROM Products +WHERE low_fats='Y' and recyclable='Y'; \ No newline at end of file diff --git a/Leetcode_practice/leetcode_sql/584. Find Customer Referee.sql b/Leetcode_practice/leetcode_sql/584. Find Customer Referee.sql new file mode 100644 index 0000000..953f03b --- /dev/null +++ b/Leetcode_practice/leetcode_sql/584. Find Customer Referee.sql @@ -0,0 +1,3 @@ +SELECT name +FROM Customer +WHERE referee_id!=2 or referee_id is null; \ No newline at end of file diff --git a/Leetcode_practice/leetcode_sql/595. Big Countries.sql b/Leetcode_practice/leetcode_sql/595. Big Countries.sql new file mode 100644 index 0000000..2b2527d --- /dev/null +++ b/Leetcode_practice/leetcode_sql/595. Big Countries.sql @@ -0,0 +1,3 @@ +SELECT name,population,area +from World +WHERE area>=3000000 or population>=25000000; \ No newline at end of file From 60c0e084f5697662ce26f9dda0a84586b997a2bc Mon Sep 17 00:00:00 2001 From: zhu06 <118984711+zhu7055@users.noreply.github.com> Date: Sun, 22 Jun 2025 10:59:03 +0800 Subject: [PATCH 35/36] Delete Leetcode_practice/leetcode_sql/test.txt --- Leetcode_practice/leetcode_sql/test.txt | 1 - 1 file changed, 1 deletion(-) delete mode 100644 Leetcode_practice/leetcode_sql/test.txt diff --git a/Leetcode_practice/leetcode_sql/test.txt b/Leetcode_practice/leetcode_sql/test.txt deleted file mode 100644 index 8b13789..0000000 --- a/Leetcode_practice/leetcode_sql/test.txt +++ /dev/null @@ -1 +0,0 @@ - From c8685f6809450ac743053dda79b67ec0210d95b2 Mon Sep 17 00:00:00 2001 From: jiayi-zhu <118984711+zhu7055@users.noreply.github.com> Date: Wed, 2 Jul 2025 09:23:07 +0800 Subject: [PATCH 36/36] Update README.md --- README.md | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 36a3e63..76c6b7b 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,18 @@ + # Personal_Project Personal Project -## Firewall protocol use visualization +

Copyright © 2025 jiayi-zhu

+ +## Firewall protocol use visualization firewall.log:參考log檔 log檔參考:https://github.com/elastic/beats/blob/main/x-pack/filebeat/module/cisco/asa/test/sample.log firewall_protocols.png:圖表 -fw.py:分析log檔程式 +fw.py:分析log檔程式 ## BeautifulSoup爬取ptt_Stock標題 beau_PTT_Stock.py -## patch1:Leetcode + + +# branch +patch1: +Leetcode