public class java.util.WeakHashMap<K, V> extends java.util.AbstractMap<K, V> implements java.util.Map<K, V>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.util.WeakHashMap
  super_class: java.util.AbstractMap
{
  private static final int DEFAULT_INITIAL_CAPACITY;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 16

  private static final int MAXIMUM_CAPACITY;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1073741824

  private static final float DEFAULT_LOAD_FACTOR;
    descriptor: F
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 0.75

  java.util.WeakHashMap$Entry<K, V>[] table;
    descriptor: [Ljava/util/WeakHashMap$Entry;
    flags: (0x0000) 
    Signature: [Ljava/util/WeakHashMap$Entry<TK;TV;>;

  private int size;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int threshold;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private final float loadFactor;
    descriptor: F
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.lang.ref.ReferenceQueue<java.lang.Object> queue;
    descriptor: Ljava/lang/ref/ReferenceQueue;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/lang/ref/ReferenceQueue<Ljava/lang/Object;>;

  int modCount;
    descriptor: I
    flags: (0x0000) 

  static final int ALTERNATIVE_HASHING_THRESHOLD_DEFAULT;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 2147483647

  transient boolean useAltHashing;
    descriptor: Z
    flags: (0x0080) ACC_TRANSIENT

  final transient int hashSeed;
    descriptor: I
    flags: (0x0090) ACC_FINAL, ACC_TRANSIENT

  private static final java.lang.Object NULL_KEY;
    descriptor: Ljava/lang/Object;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private transient java.util.Set<java.util.Map$Entry<K, V>> entrySet;
    descriptor: Ljava/util/Set;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT
    Signature: Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 323
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putstatic java.util.WeakHashMap.NULL_KEY:Ljava/lang/Object;
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  private java.util.WeakHashMap$Entry<K, V>[] newTable(int);
    descriptor: (I)[Ljava/util/WeakHashMap$Entry;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // java.util.WeakHashMap this
        start local 1 // int n
         0: .line 250
            iload 1 /* n */
            anewarray java.util.WeakHashMap$Entry
            areturn
        end local 1 // int n
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/util/WeakHashMap<TK;TV;>;
            0    1     1     n  I
    Signature: (I)[Ljava/util/WeakHashMap$Entry<TK;TV;>;
    MethodParameters:
      Name  Flags
      n     

  public void <init>(int, float);
    descriptor: (IF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=3
        start local 0 // java.util.WeakHashMap this
        start local 1 // int initialCapacity
        start local 2 // float loadFactor
         0: .line 262
            aload 0 /* this */
            invokespecial java.util.AbstractMap.<init>:()V
         1: .line 175
            aload 0 /* this */
            new java.lang.ref.ReferenceQueue
            dup
            invokespecial java.lang.ref.ReferenceQueue.<init>:()V
            putfield java.util.WeakHashMap.queue:Ljava/lang/ref/ReferenceQueue;
         2: .line 246
            aload 0 /* this */
            aload 0 /* this */
            invokestatic sun.misc.Hashing.randomHashSeed:(Ljava/lang/Object;)I
            putfield java.util.WeakHashMap.hashSeed:I
         3: .line 927
            aload 0 /* this */
            aconst_null
            putfield java.util.WeakHashMap.entrySet:Ljava/util/Set;
         4: .line 263
            iload 1 /* initialCapacity */
            ifge 8
         5: .line 264
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Illegal Initial Capacity: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
         6: .line 265
            iload 1 /* initialCapacity */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         7: .line 264
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 266
      StackMap locals: java.util.WeakHashMap int float
      StackMap stack:
            iload 1 /* initialCapacity */
            ldc 1073741824
            if_icmple 10
         9: .line 267
            ldc 1073741824
            istore 1 /* initialCapacity */
        10: .line 269
      StackMap locals:
      StackMap stack:
            fload 2 /* loadFactor */
            fconst_0
            fcmpg
            ifle 11
            fload 2 /* loadFactor */
            invokestatic java.lang.Float.isNaN:(F)Z
            ifeq 14
        11: .line 270
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Illegal Load factor: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        12: .line 271
            fload 2 /* loadFactor */
            invokevirtual java.lang.StringBuilder.append:(F)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        13: .line 270
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        14: .line 272
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 3 /* capacity */
        start local 3 // int capacity
        15: .line 273
            goto 17
        16: .line 274
      StackMap locals: int
      StackMap stack:
            iload 3 /* capacity */
            iconst_1
            ishl
            istore 3 /* capacity */
        17: .line 273
      StackMap locals:
      StackMap stack:
            iload 3 /* capacity */
            iload 1 /* initialCapacity */
            if_icmplt 16
        18: .line 275
            aload 0 /* this */
            aload 0 /* this */
            iload 3 /* capacity */
            invokevirtual java.util.WeakHashMap.newTable:(I)[Ljava/util/WeakHashMap$Entry;
            putfield java.util.WeakHashMap.table:[Ljava/util/WeakHashMap$Entry;
        19: .line 276
            aload 0 /* this */
            fload 2 /* loadFactor */
            putfield java.util.WeakHashMap.loadFactor:F
        20: .line 277
            aload 0 /* this */
            iload 3 /* capacity */
            i2f
            fload 2 /* loadFactor */
            fmul
            f2i
            putfield java.util.WeakHashMap.threshold:I
        21: .line 278
            aload 0 /* this */
            invokestatic sun.misc.VM.isBooted:()Z
            ifeq 23
        22: .line 279
            iload 3 /* capacity */
            getstatic java.util.WeakHashMap$Holder.ALTERNATIVE_HASHING_THRESHOLD:I
            if_icmplt 23
            iconst_1
            goto 24
      StackMap locals:
      StackMap stack: java.util.WeakHashMap
        23: iconst_0
        24: .line 278
      StackMap locals: java.util.WeakHashMap int float int
      StackMap stack: java.util.WeakHashMap int
            putfield java.util.WeakHashMap.useAltHashing:Z
        25: .line 280
            return
        end local 3 // int capacity
        end local 2 // float loadFactor
        end local 1 // int initialCapacity
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   26     0             this  Ljava/util/WeakHashMap<TK;TV;>;
            0   26     1  initialCapacity  I
            0   26     2       loadFactor  F
           15   26     3         capacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  
      loadFactor       

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.util.WeakHashMap this
        start local 1 // int initialCapacity
         0: .line 290
            aload 0 /* this */
            iload 1 /* initialCapacity */
            ldc 0.75
            invokespecial java.util.WeakHashMap.<init>:(IF)V
         1: .line 291
            return
        end local 1 // int initialCapacity
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Ljava/util/WeakHashMap<TK;TV;>;
            0    2     1  initialCapacity  I
    MethodParameters:
                 Name  Flags
      initialCapacity  

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.util.WeakHashMap this
         0: .line 298
            aload 0 /* this */
            bipush 16
            ldc 0.75
            invokespecial java.util.WeakHashMap.<init>:(IF)V
         1: .line 299
            return
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/util/WeakHashMap<TK;TV;>;

  public void <init>(java.util.Map<? extends K, ? extends V>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.util.WeakHashMap this
        start local 1 // java.util.Map m
         0: .line 312
            aload 0 /* this */
            aload 1 /* m */
            invokeinterface java.util.Map.size:()I
            i2f
            ldc 0.75
            fdiv
            f2i
            iconst_1
            iadd
         1: .line 313
            bipush 16
         2: .line 312
            invokestatic java.lang.Math.max:(II)I
         3: .line 314
            ldc 0.75
            invokespecial java.util.WeakHashMap.<init>:(IF)V
         4: .line 315
            aload 0 /* this */
            aload 1 /* m */
            invokevirtual java.util.WeakHashMap.putAll:(Ljava/util/Map;)V
         5: .line 316
            return
        end local 1 // java.util.Map m
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/util/WeakHashMap<TK;TV;>;
            0    6     1     m  Ljava/util/Map<+TK;+TV;>;
    Signature: (Ljava/util/Map<+TK;+TV;>;)V
    MethodParameters:
      Name  Flags
      m     

  private static java.lang.Object maskNull(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.lang.Object key
         0: .line 329
            aload 0 /* key */
            ifnonnull 1
            getstatic java.util.WeakHashMap.NULL_KEY:Ljava/lang/Object;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* key */
      StackMap locals:
      StackMap stack: java.lang.Object
         2: areturn
        end local 0 // java.lang.Object key
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0   key  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   

  static java.lang.Object unmaskNull(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.lang.Object key
         0: .line 336
            aload 0 /* key */
            getstatic java.util.WeakHashMap.NULL_KEY:Ljava/lang/Object;
            if_acmpne 1
            aconst_null
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* key */
      StackMap locals:
      StackMap stack: java.lang.Object
         2: areturn
        end local 0 // java.lang.Object key
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0   key  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   

  private static boolean eq(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.lang.Object x
        start local 1 // java.lang.Object y
         0: .line 344
            aload 0 /* x */
            aload 1 /* y */
            if_acmpeq 1
            aload 0 /* x */
            aload 1 /* y */
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifne 1
            iconst_0
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_1
            ireturn
        end local 1 // java.lang.Object y
        end local 0 // java.lang.Object x
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0     x  Ljava/lang/Object;
            0    2     1     y  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      x     
      y     

  int hash(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.util.WeakHashMap this
        start local 1 // java.lang.Object k
         0: .line 357
            aload 0 /* this */
            getfield java.util.WeakHashMap.useAltHashing:Z
            ifeq 6
         1: .line 358
            aload 0 /* this */
            getfield java.util.WeakHashMap.hashSeed:I
            istore 2 /* h */
        start local 2 // int h
         2: .line 359
            aload 1 /* k */
            instanceof java.lang.String
            ifeq 4
         3: .line 360
            aload 1 /* k */
            checkcast java.lang.String
            invokestatic sun.misc.Hashing.stringHash32:(Ljava/lang/String;)I
            ireturn
         4: .line 362
      StackMap locals: int
      StackMap stack:
            iload 2 /* h */
            aload 1 /* k */
            invokevirtual java.lang.Object.hashCode:()I
            ixor
            istore 2 /* h */
         5: .line 364
            goto 7
        end local 2 // int h
         6: .line 365
      StackMap locals:
      StackMap stack:
            aload 1 /* k */
            invokevirtual java.lang.Object.hashCode:()I
            istore 2 /* h */
        start local 2 // int h
         7: .line 371
      StackMap locals: int
      StackMap stack:
            iload 2 /* h */
            iload 2 /* h */
            bipush 20
            iushr
            iload 2 /* h */
            bipush 12
            iushr
            ixor
            ixor
            istore 2 /* h */
         8: .line 372
            iload 2 /* h */
            iload 2 /* h */
            bipush 7
            iushr
            ixor
            iload 2 /* h */
            iconst_4
            iushr
            ixor
            ireturn
        end local 2 // int h
        end local 1 // java.lang.Object k
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljava/util/WeakHashMap<TK;TV;>;
            0    9     1     k  Ljava/lang/Object;
            2    6     2     h  I
            7    9     2     h  I
    MethodParameters:
      Name  Flags
      k     

  private static int indexFor(int, int);
    descriptor: (II)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // int h
        start local 1 // int length
         0: .line 379
            iload 0 /* h */
            iload 1 /* length */
            iconst_1
            isub
            iand
            ireturn
        end local 1 // int length
        end local 0 // int h
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0       h  I
            0    1     1  length  I
    MethodParameters:
        Name  Flags
      h       
      length  

  private void expungeStaleEntries();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=8, args_size=1
        start local 0 // java.util.WeakHashMap this
         0: .line 386
            goto 22
        start local 1 // java.lang.Object x
         1: .line 387
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield java.util.WeakHashMap.queue:Ljava/lang/ref/ReferenceQueue;
            dup
            astore 2
            monitorenter
         2: .line 389
            aload 1 /* x */
            checkcast java.util.WeakHashMap$Entry
            astore 3 /* e */
        start local 3 // java.util.WeakHashMap$Entry e
         3: .line 390
            aload 3 /* e */
            getfield java.util.WeakHashMap$Entry.hash:I
            aload 0 /* this */
            getfield java.util.WeakHashMap.table:[Ljava/util/WeakHashMap$Entry;
            arraylength
            invokestatic java.util.WeakHashMap.indexFor:(II)I
            istore 4 /* i */
        start local 4 // int i
         4: .line 392
            aload 0 /* this */
            getfield java.util.WeakHashMap.table:[Ljava/util/WeakHashMap$Entry;
            iload 4 /* i */
            aaload
            astore 5 /* prev */
        start local 5 // java.util.WeakHashMap$Entry prev
         5: .line 393
            aload 5 /* prev */
            astore 6 /* p */
        start local 6 // java.util.WeakHashMap$Entry p
         6: .line 394
            goto 17
         7: .line 395
      StackMap locals: java.util.WeakHashMap java.lang.Object java.lang.ref.ReferenceQueue java.util.WeakHashMap$Entry int java.util.WeakHashMap$Entry java.util.WeakHashMap$Entry
      StackMap stack:
            aload 6 /* p */
            getfield java.util.WeakHashMap$Entry.next:Ljava/util/WeakHashMap$Entry;
            astore 7 /* next */
        start local 7 // java.util.WeakHashMap$Entry next
         8: .line 396
            aload 6 /* p */
            aload 3 /* e */
            if_acmpne 15
         9: .line 397
            aload 5 /* prev */
            aload 3 /* e */
            if_acmpne 11
        10: .line 398
            aload 0 /* this */
            getfield java.util.WeakHashMap.table:[Ljava/util/WeakHashMap$Entry;
            iload 4 /* i */
            aload 7 /* next */
            aastore
            goto 12
        11: .line 400
      StackMap locals: java.util.WeakHashMap$Entry
      StackMap stack:
            aload 5 /* prev */
            aload 7 /* next */
            putfield java.util.WeakHashMap$Entry.next:Ljava/util/WeakHashMap$Entry;
        12: .line 403
      StackMap locals:
      StackMap stack:
            aload 3 /* e */
            aconst_null
            putfield java.util.WeakHashMap$Entry.value:Ljava/lang/Object;
        13: .line 404
            aload 0 /* this */
            dup
            getfield java.util.WeakHashMap.size:I
            iconst_1
            isub
            putfield java.util.WeakHashMap.size:I
        14: .line 405
            goto 18
        15: .line 407
      StackMap locals:
      StackMap stack:
            aload 6 /* p */
            astore 5 /* prev */
        16: .line 408
            aload 7 /* next */
            astore 6 /* p */
        end local 7 // java.util.WeakHashMap$Entry next
        17: .line 394
      StackMap locals:
      StackMap stack:
            aload 6 /* p */
            ifnonnull 7
        end local 6 // java.util.WeakHashMap$Entry p
        end local 5 // java.util.WeakHashMap$Entry prev
        end local 4 // int i
        end local 3 // java.util.WeakHashMap$Entry e
        18: .line 387
      StackMap locals: java.util.WeakHashMap java.lang.Object java.lang.ref.ReferenceQueue
      StackMap stack:
            aload 2
            monitorexit
        19: goto 22
      StackMap locals:
      StackMap stack: java.lang.Throwable
        20: aload 2
            monitorexit
        21: athrow
        end local 1 // java.lang.Object x
        22: .line 386
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.util.WeakHashMap.queue:Ljava/lang/ref/ReferenceQueue;
            invokevirtual java.lang.ref.ReferenceQueue.poll:()Ljava/lang/ref/Reference;
            dup
            astore 1 /* x */
        start local 1 // java.lang.Object x
        23: ifnonnull 1
        end local 1 // java.lang.Object x
        24: .line 412
            return
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   25     0  this  Ljava/util/WeakHashMap<TK;TV;>;
            1   22     1     x  Ljava/lang/Object;
           23   24     1     x  Ljava/lang/Object;
            3   18     3     e  Ljava/util/WeakHashMap$Entry<TK;TV;>;
            4   18     4     i  I
            5   18     5  prev  Ljava/util/WeakHashMap$Entry<TK;TV;>;
            6   18     6     p  Ljava/util/WeakHashMap$Entry<TK;TV;>;
            8   17     7  next  Ljava/util/WeakHashMap$Entry<TK;TV;>;
      Exception table:
        from    to  target  type
           2    19      20  any
          20    21      20  any

  private java.util.WeakHashMap$Entry<K, V>[] getTable();
    descriptor: ()[Ljava/util/WeakHashMap$Entry;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.WeakHashMap this
         0: .line 418
            aload 0 /* this */
            invokevirtual java.util.WeakHashMap.expungeStaleEntries:()V
         1: .line 419
            aload 0 /* this */
            getfield java.util.WeakHashMap.table:[Ljava/util/WeakHashMap$Entry;
            areturn
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/util/WeakHashMap<TK;TV;>;
    Signature: ()[Ljava/util/WeakHashMap$Entry<TK;TV;>;

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.WeakHashMap this
         0: .line 429
            aload 0 /* this */
            getfield java.util.WeakHashMap.size:I
            ifne 2
         1: .line 430
            iconst_0
            ireturn
         2: .line 431
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.util.WeakHashMap.expungeStaleEntries:()V
         3: .line 432
            aload 0 /* this */
            getfield java.util.WeakHashMap.size:I
            ireturn
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/util/WeakHashMap<TK;TV;>;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.util.WeakHashMap this
         0: .line 442
            aload 0 /* this */
            invokevirtual java.util.WeakHashMap.size:()I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/util/WeakHashMap<TK;TV;>;

  public V get();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=7, args_size=2
        start local 0 // java.util.WeakHashMap this
        start local 1 // java.lang.Object key
         0: .line 463
            aload 1 /* key */
            invokestatic java.util.WeakHashMap.maskNull:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* k */
        start local 2 // java.lang.Object k
         1: .line 464
            aload 0 /* this */
            aload 2 /* k */
            invokevirtual java.util.WeakHashMap.hash:(Ljava/lang/Object;)I
            istore 3 /* h */
        start local 3 // int h
         2: .line 465
            aload 0 /* this */
            invokevirtual java.util.WeakHashMap.getTable:()[Ljava/util/WeakHashMap$Entry;
            astore 4 /* tab */
        start local 4 // java.util.WeakHashMap$Entry[] tab
         3: .line 466
            iload 3 /* h */
            aload 4 /* tab */
            arraylength
            invokestatic java.util.WeakHashMap.indexFor:(II)I
            istore 5 /* index */
        start local 5 // int index
         4: .line 467
            aload 4 /* tab */
            iload 5 /* index */
            aaload
            astore 6 /* e */
        start local 6 // java.util.WeakHashMap$Entry e
         5: .line 468
            goto 9
         6: .line 469
      StackMap locals: java.util.WeakHashMap java.lang.Object java.lang.Object int java.util.WeakHashMap$Entry[] int java.util.WeakHashMap$Entry
      StackMap stack:
            aload 6 /* e */
            getfield java.util.WeakHashMap$Entry.hash:I
            iload 3 /* h */
            if_icmpne 8
            aload 2 /* k */
            aload 6 /* e */
            invokevirtual java.util.WeakHashMap$Entry.get:()Ljava/lang/Object;
            invokestatic java.util.WeakHashMap.eq:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 8
         7: .line 470
            aload 6 /* e */
            getfield java.util.WeakHashMap$Entry.value:Ljava/lang/Object;
            areturn
         8: .line 471
      StackMap locals:
      StackMap stack:
            aload 6 /* e */
            getfield java.util.WeakHashMap$Entry.next:Ljava/util/WeakHashMap$Entry;
            astore 6 /* e */
         9: .line 468
      StackMap locals:
      StackMap stack:
            aload 6 /* e */
            ifnonnull 6
        10: .line 473
            aconst_null
            areturn
        end local 6 // java.util.WeakHashMap$Entry e
        end local 5 // int index
        end local 4 // java.util.WeakHashMap$Entry[] tab
        end local 3 // int h
        end local 2 // java.lang.Object k
        end local 1 // java.lang.Object key
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   11     0   this  Ljava/util/WeakHashMap<TK;TV;>;
            0   11     1    key  Ljava/lang/Object;
            1   11     2      k  Ljava/lang/Object;
            2   11     3      h  I
            3   11     4    tab  [Ljava/util/WeakHashMap$Entry;
            4   11     5  index  I
            5   11     6      e  Ljava/util/WeakHashMap$Entry<TK;TV;>;
    Signature: (Ljava/lang/Object;)TV;
    MethodParameters:
      Name  Flags
      key   

  public boolean containsKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.util.WeakHashMap this
        start local 1 // java.lang.Object key
         0: .line 485
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual java.util.WeakHashMap.getEntry:(Ljava/lang/Object;)Ljava/util/WeakHashMap$Entry;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 1 // java.lang.Object key
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/util/WeakHashMap<TK;TV;>;
            0    2     1   key  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   

  java.util.WeakHashMap$Entry<K, V> getEntry();
    descriptor: (Ljava/lang/Object;)Ljava/util/WeakHashMap$Entry;
    flags: (0x0000) 
    Code:
      stack=2, locals=7, args_size=2
        start local 0 // java.util.WeakHashMap this
        start local 1 // java.lang.Object key
         0: .line 493
            aload 1 /* key */
            invokestatic java.util.WeakHashMap.maskNull:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* k */
        start local 2 // java.lang.Object k
         1: .line 494
            aload 0 /* this */
            aload 2 /* k */
            invokevirtual java.util.WeakHashMap.hash:(Ljava/lang/Object;)I
            istore 3 /* h */
        start local 3 // int h
         2: .line 495
            aload 0 /* this */
            invokevirtual java.util.WeakHashMap.getTable:()[Ljava/util/WeakHashMap$Entry;
            astore 4 /* tab */
        start local 4 // java.util.WeakHashMap$Entry[] tab
         3: .line 496
            iload 3 /* h */
            aload 4 /* tab */
            arraylength
            invokestatic java.util.WeakHashMap.indexFor:(II)I
            istore 5 /* index */
        start local 5 // int index
         4: .line 497
            aload 4 /* tab */
            iload 5 /* index */
            aaload
            astore 6 /* e */
        start local 6 // java.util.WeakHashMap$Entry e
         5: .line 498
            goto 7
         6: .line 499
      StackMap locals: java.util.WeakHashMap java.lang.Object java.lang.Object int java.util.WeakHashMap$Entry[] int java.util.WeakHashMap$Entry
      StackMap stack:
            aload 6 /* e */
            getfield java.util.WeakHashMap$Entry.next:Ljava/util/WeakHashMap$Entry;
            astore 6 /* e */
         7: .line 498
      StackMap locals:
      StackMap stack:
            aload 6 /* e */
            ifnull 8
            aload 6 /* e */
            getfield java.util.WeakHashMap$Entry.hash:I
            iload 3 /* h */
            if_icmpne 6
            aload 2 /* k */
            aload 6 /* e */
            invokevirtual java.util.WeakHashMap$Entry.get:()Ljava/lang/Object;
            invokestatic java.util.WeakHashMap.eq:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 6
         8: .line 500
      StackMap locals:
      StackMap stack:
            aload 6 /* e */
            areturn
        end local 6 // java.util.WeakHashMap$Entry e
        end local 5 // int index
        end local 4 // java.util.WeakHashMap$Entry[] tab
        end local 3 // int h
        end local 2 // java.lang.Object k
        end local 1 // java.lang.Object key
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Ljava/util/WeakHashMap<TK;TV;>;
            0    9     1    key  Ljava/lang/Object;
            1    9     2      k  Ljava/lang/Object;
            2    9     3      h  I
            3    9     4    tab  [Ljava/util/WeakHashMap$Entry;
            4    9     5  index  I
            5    9     6      e  Ljava/util/WeakHashMap$Entry<TK;TV;>;
    Signature: (Ljava/lang/Object;)Ljava/util/WeakHashMap$Entry<TK;TV;>;
    MethodParameters:
      Name  Flags
      key   

  public V put(K, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=9, args_size=3
        start local 0 // java.util.WeakHashMap this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 516
            aload 1 /* key */
            invokestatic java.util.WeakHashMap.maskNull:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* k */
        start local 3 // java.lang.Object k
         1: .line 517
            aload 0 /* this */
            aload 3 /* k */
            invokevirtual java.util.WeakHashMap.hash:(Ljava/lang/Object;)I
            istore 4 /* h */
        start local 4 // int h
         2: .line 518
            aload 0 /* this */
            invokevirtual java.util.WeakHashMap.getTable:()[Ljava/util/WeakHashMap$Entry;
            astore 5 /* tab */
        start local 5 // java.util.WeakHashMap$Entry[] tab
         3: .line 519
            iload 4 /* h */
            aload 5 /* tab */
            arraylength
            invokestatic java.util.WeakHashMap.indexFor:(II)I
            istore 6 /* i */
        start local 6 // int i
         4: .line 521
            aload 5 /* tab */
            iload 6 /* i */
            aaload
            astore 7 /* e */
        start local 7 // java.util.WeakHashMap$Entry e
         5: goto 12
         6: .line 522
      StackMap locals: java.util.WeakHashMap java.lang.Object java.lang.Object java.lang.Object int java.util.WeakHashMap$Entry[] int java.util.WeakHashMap$Entry
      StackMap stack:
            iload 4 /* h */
            aload 7 /* e */
            getfield java.util.WeakHashMap$Entry.hash:I
            if_icmpne 11
            aload 3 /* k */
            aload 7 /* e */
            invokevirtual java.util.WeakHashMap$Entry.get:()Ljava/lang/Object;
            invokestatic java.util.WeakHashMap.eq:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 11
         7: .line 523
            aload 7 /* e */
            getfield java.util.WeakHashMap$Entry.value:Ljava/lang/Object;
            astore 8 /* oldValue */
        start local 8 // java.lang.Object oldValue
         8: .line 524
            aload 2 /* value */
            aload 8 /* oldValue */
            if_acmpeq 10
         9: .line 525
            aload 7 /* e */
            aload 2 /* value */
            putfield java.util.WeakHashMap$Entry.value:Ljava/lang/Object;
        10: .line 526
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 8 /* oldValue */
            areturn
        end local 8 // java.lang.Object oldValue
        11: .line 521
      StackMap locals:
      StackMap stack:
            aload 7 /* e */
            getfield java.util.WeakHashMap$Entry.next:Ljava/util/WeakHashMap$Entry;
            astore 7 /* e */
      StackMap locals:
      StackMap stack:
        12: aload 7 /* e */
            ifnonnull 6
        end local 7 // java.util.WeakHashMap$Entry e
        13: .line 530
            aload 0 /* this */
            dup
            getfield java.util.WeakHashMap.modCount:I
            iconst_1
            iadd
            putfield java.util.WeakHashMap.modCount:I
        14: .line 531
            aload 5 /* tab */
            iload 6 /* i */
            aaload
            astore 7 /* e */
        start local 7 // java.util.WeakHashMap$Entry e
        15: .line 532
            aload 5 /* tab */
            iload 6 /* i */
            new java.util.WeakHashMap$Entry
            dup
            aload 3 /* k */
            aload 2 /* value */
            aload 0 /* this */
            getfield java.util.WeakHashMap.queue:Ljava/lang/ref/ReferenceQueue;
            iload 4 /* h */
            aload 7 /* e */
            invokespecial java.util.WeakHashMap$Entry.<init>:(Ljava/lang/Object;Ljava/lang/Object;Ljava/lang/ref/ReferenceQueue;ILjava/util/WeakHashMap$Entry;)V
            aastore
        16: .line 533
            aload 0 /* this */
            dup
            getfield java.util.WeakHashMap.size:I
            iconst_1
            iadd
            dup_x1
            putfield java.util.WeakHashMap.size:I
            aload 0 /* this */
            getfield java.util.WeakHashMap.threshold:I
            if_icmplt 18
        17: .line 534
            aload 0 /* this */
            aload 5 /* tab */
            arraylength
            iconst_2
            imul
            invokevirtual java.util.WeakHashMap.resize:(I)V
        18: .line 535
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 7 // java.util.WeakHashMap$Entry e
        end local 6 // int i
        end local 5 // java.util.WeakHashMap$Entry[] tab
        end local 4 // int h
        end local 3 // java.lang.Object k
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   19     0      this  Ljava/util/WeakHashMap<TK;TV;>;
            0   19     1       key  TK;
            0   19     2     value  TV;
            1   19     3         k  Ljava/lang/Object;
            2   19     4         h  I
            3   19     5       tab  [Ljava/util/WeakHashMap$Entry;
            4   19     6         i  I
            5   13     7         e  Ljava/util/WeakHashMap$Entry<TK;TV;>;
            8   11     8  oldValue  TV;
           15   19     7         e  Ljava/util/WeakHashMap$Entry<TK;TV;>;
    Signature: (TK;TV;)TV;
    MethodParameters:
       Name  Flags
      key    
      value  

  void resize(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // java.util.WeakHashMap this
        start local 1 // int newCapacity
         0: .line 553
            aload 0 /* this */
            invokevirtual java.util.WeakHashMap.getTable:()[Ljava/util/WeakHashMap$Entry;
            astore 2 /* oldTable */
        start local 2 // java.util.WeakHashMap$Entry[] oldTable
         1: .line 554
            aload 2 /* oldTable */
            arraylength
            istore 3 /* oldCapacity */
        start local 3 // int oldCapacity
         2: .line 555
            iload 3 /* oldCapacity */
            ldc 1073741824
            if_icmpne 5
         3: .line 556
            aload 0 /* this */
            ldc 2147483647
            putfield java.util.WeakHashMap.threshold:I
         4: .line 557
            return
         5: .line 560
      StackMap locals: java.util.WeakHashMap$Entry[] int
      StackMap stack:
            aload 0 /* this */
            iload 1 /* newCapacity */
            invokevirtual java.util.WeakHashMap.newTable:(I)[Ljava/util/WeakHashMap$Entry;
            astore 4 /* newTable */
        start local 4 // java.util.WeakHashMap$Entry[] newTable
         6: .line 561
            aload 0 /* this */
            getfield java.util.WeakHashMap.useAltHashing:Z
            istore 5 /* oldAltHashing */
        start local 5 // boolean oldAltHashing
         7: .line 562
            aload 0 /* this */
            dup
            getfield java.util.WeakHashMap.useAltHashing:Z
            invokestatic sun.misc.VM.isBooted:()Z
            ifeq 9
         8: .line 563
            iload 1 /* newCapacity */
            getstatic java.util.WeakHashMap$Holder.ALTERNATIVE_HASHING_THRESHOLD:I
            if_icmplt 9
            iconst_1
            goto 10
      StackMap locals: java.util.WeakHashMap int java.util.WeakHashMap$Entry[] int java.util.WeakHashMap$Entry[] int
      StackMap stack: java.util.WeakHashMap int
         9: iconst_0
      StackMap locals: java.util.WeakHashMap int java.util.WeakHashMap$Entry[] int java.util.WeakHashMap$Entry[] int
      StackMap stack: java.util.WeakHashMap int int
        10: ior
        11: .line 562
            putfield java.util.WeakHashMap.useAltHashing:Z
        12: .line 564
            iload 5 /* oldAltHashing */
            aload 0 /* this */
            getfield java.util.WeakHashMap.useAltHashing:Z
            ixor
            istore 6 /* rehash */
        start local 6 // boolean rehash
        13: .line 565
            aload 0 /* this */
            aload 2 /* oldTable */
            aload 4 /* newTable */
            iload 6 /* rehash */
            invokevirtual java.util.WeakHashMap.transfer:([Ljava/util/WeakHashMap$Entry;[Ljava/util/WeakHashMap$Entry;Z)V
        14: .line 566
            aload 0 /* this */
            aload 4 /* newTable */
            putfield java.util.WeakHashMap.table:[Ljava/util/WeakHashMap$Entry;
        15: .line 573
            aload 0 /* this */
            getfield java.util.WeakHashMap.size:I
            aload 0 /* this */
            getfield java.util.WeakHashMap.threshold:I
            iconst_2
            idiv
            if_icmplt 18
        16: .line 574
            aload 0 /* this */
            iload 1 /* newCapacity */
            i2f
            aload 0 /* this */
            getfield java.util.WeakHashMap.loadFactor:F
            fmul
            f2i
            putfield java.util.WeakHashMap.threshold:I
        17: .line 575
            goto 21
        18: .line 576
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.util.WeakHashMap.expungeStaleEntries:()V
        19: .line 577
            aload 0 /* this */
            aload 4 /* newTable */
            aload 2 /* oldTable */
            iconst_0
            invokevirtual java.util.WeakHashMap.transfer:([Ljava/util/WeakHashMap$Entry;[Ljava/util/WeakHashMap$Entry;Z)V
        20: .line 578
            aload 0 /* this */
            aload 2 /* oldTable */
            putfield java.util.WeakHashMap.table:[Ljava/util/WeakHashMap$Entry;
        21: .line 580
      StackMap locals:
      StackMap stack:
            return
        end local 6 // boolean rehash
        end local 5 // boolean oldAltHashing
        end local 4 // java.util.WeakHashMap$Entry[] newTable
        end local 3 // int oldCapacity
        end local 2 // java.util.WeakHashMap$Entry[] oldTable
        end local 1 // int newCapacity
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   22     0           this  Ljava/util/WeakHashMap<TK;TV;>;
            0   22     1    newCapacity  I
            1   22     2       oldTable  [Ljava/util/WeakHashMap$Entry;
            2   22     3    oldCapacity  I
            6   22     4       newTable  [Ljava/util/WeakHashMap$Entry;
            7   22     5  oldAltHashing  Z
           13   22     6         rehash  Z
    MethodParameters:
             Name  Flags
      newCapacity  

  private void transfer(java.util.WeakHashMap$Entry<K, V>[], java.util.WeakHashMap$Entry<K, V>[], );
    descriptor: ([Ljava/util/WeakHashMap$Entry;[Ljava/util/WeakHashMap$Entry;Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=9, args_size=4
        start local 0 // java.util.WeakHashMap this
        start local 1 // java.util.WeakHashMap$Entry[] src
        start local 2 // java.util.WeakHashMap$Entry[] dest
        start local 3 // boolean rehash
         0: .line 584
            iconst_0
            istore 4 /* j */
        start local 4 // int j
         1: goto 20
         2: .line 585
      StackMap locals: int
      StackMap stack:
            aload 1 /* src */
            iload 4 /* j */
            aaload
            astore 5 /* e */
        start local 5 // java.util.WeakHashMap$Entry e
         3: .line 586
            aload 1 /* src */
            iload 4 /* j */
            aconst_null
            aastore
         4: .line 587
            goto 18
         5: .line 588
      StackMap locals: java.util.WeakHashMap$Entry
      StackMap stack:
            aload 5 /* e */
            getfield java.util.WeakHashMap$Entry.next:Ljava/util/WeakHashMap$Entry;
            astore 6 /* next */
        start local 6 // java.util.WeakHashMap$Entry next
         6: .line 589
            aload 5 /* e */
            invokevirtual java.util.WeakHashMap$Entry.get:()Ljava/lang/Object;
            astore 7 /* key */
        start local 7 // java.lang.Object key
         7: .line 590
            aload 7 /* key */
            ifnonnull 12
         8: .line 591
            aload 5 /* e */
            aconst_null
            putfield java.util.WeakHashMap$Entry.next:Ljava/util/WeakHashMap$Entry;
         9: .line 592
            aload 5 /* e */
            aconst_null
            putfield java.util.WeakHashMap$Entry.value:Ljava/lang/Object;
        10: .line 593
            aload 0 /* this */
            dup
            getfield java.util.WeakHashMap.size:I
            iconst_1
            isub
            putfield java.util.WeakHashMap.size:I
        11: .line 594
            goto 17
        12: .line 595
      StackMap locals: java.util.WeakHashMap$Entry java.lang.Object
      StackMap stack:
            iload 3 /* rehash */
            ifeq 14
        13: .line 596
            aload 5 /* e */
            aload 0 /* this */
            aload 7 /* key */
            invokevirtual java.util.WeakHashMap.hash:(Ljava/lang/Object;)I
            putfield java.util.WeakHashMap$Entry.hash:I
        14: .line 598
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            getfield java.util.WeakHashMap$Entry.hash:I
            aload 2 /* dest */
            arraylength
            invokestatic java.util.WeakHashMap.indexFor:(II)I
            istore 8 /* i */
        start local 8 // int i
        15: .line 599
            aload 5 /* e */
            aload 2 /* dest */
            iload 8 /* i */
            aaload
            putfield java.util.WeakHashMap$Entry.next:Ljava/util/WeakHashMap$Entry;
        16: .line 600
            aload 2 /* dest */
            iload 8 /* i */
            aload 5 /* e */
            aastore
        end local 8 // int i
        17: .line 602
      StackMap locals:
      StackMap stack:
            aload 6 /* next */
            astore 5 /* e */
        end local 7 // java.lang.Object key
        end local 6 // java.util.WeakHashMap$Entry next
        18: .line 587
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            ifnonnull 5
        end local 5 // java.util.WeakHashMap$Entry e
        19: .line 584
            iinc 4 /* j */ 1
      StackMap locals:
      StackMap stack:
        20: iload 4 /* j */
            aload 1 /* src */
            arraylength
            if_icmplt 2
        end local 4 // int j
        21: .line 605
            return
        end local 3 // boolean rehash
        end local 2 // java.util.WeakHashMap$Entry[] dest
        end local 1 // java.util.WeakHashMap$Entry[] src
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   22     0    this  Ljava/util/WeakHashMap<TK;TV;>;
            0   22     1     src  [Ljava/util/WeakHashMap$Entry;
            0   22     2    dest  [Ljava/util/WeakHashMap$Entry;
            0   22     3  rehash  Z
            1   21     4       j  I
            3   19     5       e  Ljava/util/WeakHashMap$Entry<TK;TV;>;
            6   18     6    next  Ljava/util/WeakHashMap$Entry<TK;TV;>;
            7   18     7     key  Ljava/lang/Object;
           15   17     8       i  I
    Signature: ([Ljava/util/WeakHashMap$Entry<TK;TV;>;[Ljava/util/WeakHashMap$Entry<TK;TV;>;Z)V
    MethodParameters:
        Name  Flags
      src     
      dest    
      rehash  

  public void putAll(java.util.Map<? extends K, ? extends V>);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // java.util.WeakHashMap this
        start local 1 // java.util.Map m
         0: .line 616
            aload 1 /* m */
            invokeinterface java.util.Map.size:()I
            istore 2 /* numKeysToBeAdded */
        start local 2 // int numKeysToBeAdded
         1: .line 617
            iload 2 /* numKeysToBeAdded */
            ifne 3
         2: .line 618
            return
         3: .line 629
      StackMap locals: int
      StackMap stack:
            iload 2 /* numKeysToBeAdded */
            aload 0 /* this */
            getfield java.util.WeakHashMap.threshold:I
            if_icmple 13
         4: .line 630
            iload 2 /* numKeysToBeAdded */
            i2f
            aload 0 /* this */
            getfield java.util.WeakHashMap.loadFactor:F
            fdiv
            fconst_1
            fadd
            f2i
            istore 3 /* targetCapacity */
        start local 3 // int targetCapacity
         5: .line 631
            iload 3 /* targetCapacity */
            ldc 1073741824
            if_icmple 7
         6: .line 632
            ldc 1073741824
            istore 3 /* targetCapacity */
         7: .line 633
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield java.util.WeakHashMap.table:[Ljava/util/WeakHashMap$Entry;
            arraylength
            istore 4 /* newCapacity */
        start local 4 // int newCapacity
         8: .line 634
            goto 10
         9: .line 635
      StackMap locals: int
      StackMap stack:
            iload 4 /* newCapacity */
            iconst_1
            ishl
            istore 4 /* newCapacity */
        10: .line 634
      StackMap locals:
      StackMap stack:
            iload 4 /* newCapacity */
            iload 3 /* targetCapacity */
            if_icmplt 9
        11: .line 636
            iload 4 /* newCapacity */
            aload 0 /* this */
            getfield java.util.WeakHashMap.table:[Ljava/util/WeakHashMap$Entry;
            arraylength
            if_icmple 13
        12: .line 637
            aload 0 /* this */
            iload 4 /* newCapacity */
            invokevirtual java.util.WeakHashMap.resize:(I)V
        end local 4 // int newCapacity
        end local 3 // int targetCapacity
        13: .line 640
      StackMap locals:
      StackMap stack:
            aload 1 /* m */
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 4
            goto 16
      StackMap locals: java.util.WeakHashMap java.util.Map int top java.util.Iterator
      StackMap stack:
        14: aload 4
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 3 /* e */
        start local 3 // java.util.Map$Entry e
        15: .line 641
            aload 0 /* this */
            aload 3 /* e */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            aload 3 /* e */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            invokevirtual java.util.WeakHashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 3 // java.util.Map$Entry e
        16: .line 640
      StackMap locals:
      StackMap stack:
            aload 4
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 14
        17: .line 642
            return
        end local 2 // int numKeysToBeAdded
        end local 1 // java.util.Map m
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   18     0              this  Ljava/util/WeakHashMap<TK;TV;>;
            0   18     1                 m  Ljava/util/Map<+TK;+TV;>;
            1   18     2  numKeysToBeAdded  I
            5   13     3    targetCapacity  I
            8   13     4       newCapacity  I
           15   16     3                 e  Ljava/util/Map$Entry<+TK;+TV;>;
    Signature: (Ljava/util/Map<+TK;+TV;>;)V
    MethodParameters:
      Name  Flags
      m     

  public V remove();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=9, args_size=2
        start local 0 // java.util.WeakHashMap this
        start local 1 // java.lang.Object key
         0: .line 665
            aload 1 /* key */
            invokestatic java.util.WeakHashMap.maskNull:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* k */
        start local 2 // java.lang.Object k
         1: .line 666
            aload 0 /* this */
            aload 2 /* k */
            invokevirtual java.util.WeakHashMap.hash:(Ljava/lang/Object;)I
            istore 3 /* h */
        start local 3 // int h
         2: .line 667
            aload 0 /* this */
            invokevirtual java.util.WeakHashMap.getTable:()[Ljava/util/WeakHashMap$Entry;
            astore 4 /* tab */
        start local 4 // java.util.WeakHashMap$Entry[] tab
         3: .line 668
            iload 3 /* h */
            aload 4 /* tab */
            arraylength
            invokestatic java.util.WeakHashMap.indexFor:(II)I
            istore 5 /* i */
        start local 5 // int i
         4: .line 669
            aload 4 /* tab */
            iload 5 /* i */
            aaload
            astore 6 /* prev */
        start local 6 // java.util.WeakHashMap$Entry prev
         5: .line 670
            aload 6 /* prev */
            astore 7 /* e */
        start local 7 // java.util.WeakHashMap$Entry e
         6: .line 672
            goto 17
         7: .line 673
      StackMap locals: java.util.WeakHashMap java.lang.Object java.lang.Object int java.util.WeakHashMap$Entry[] int java.util.WeakHashMap$Entry java.util.WeakHashMap$Entry
      StackMap stack:
            aload 7 /* e */
            getfield java.util.WeakHashMap$Entry.next:Ljava/util/WeakHashMap$Entry;
            astore 8 /* next */
        start local 8 // java.util.WeakHashMap$Entry next
         8: .line 674
            iload 3 /* h */
            aload 7 /* e */
            getfield java.util.WeakHashMap$Entry.hash:I
            if_icmpne 15
            aload 2 /* k */
            aload 7 /* e */
            invokevirtual java.util.WeakHashMap$Entry.get:()Ljava/lang/Object;
            invokestatic java.util.WeakHashMap.eq:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 15
         9: .line 675
            aload 0 /* this */
            dup
            getfield java.util.WeakHashMap.modCount:I
            iconst_1
            iadd
            putfield java.util.WeakHashMap.modCount:I
        10: .line 676
            aload 0 /* this */
            dup
            getfield java.util.WeakHashMap.size:I
            iconst_1
            isub
            putfield java.util.WeakHashMap.size:I
        11: .line 677
            aload 6 /* prev */
            aload 7 /* e */
            if_acmpne 13
        12: .line 678
            aload 4 /* tab */
            iload 5 /* i */
            aload 8 /* next */
            aastore
            goto 14
        13: .line 680
      StackMap locals: java.util.WeakHashMap$Entry
      StackMap stack:
            aload 6 /* prev */
            aload 8 /* next */
            putfield java.util.WeakHashMap$Entry.next:Ljava/util/WeakHashMap$Entry;
        14: .line 681
      StackMap locals:
      StackMap stack:
            aload 7 /* e */
            getfield java.util.WeakHashMap$Entry.value:Ljava/lang/Object;
            areturn
        15: .line 683
      StackMap locals:
      StackMap stack:
            aload 7 /* e */
            astore 6 /* prev */
        16: .line 684
            aload 8 /* next */
            astore 7 /* e */
        end local 8 // java.util.WeakHashMap$Entry next
        17: .line 672
      StackMap locals:
      StackMap stack:
            aload 7 /* e */
            ifnonnull 7
        18: .line 687
            aconst_null
            areturn
        end local 7 // java.util.WeakHashMap$Entry e
        end local 6 // java.util.WeakHashMap$Entry prev
        end local 5 // int i
        end local 4 // java.util.WeakHashMap$Entry[] tab
        end local 3 // int h
        end local 2 // java.lang.Object k
        end local 1 // java.lang.Object key
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   19     0  this  Ljava/util/WeakHashMap<TK;TV;>;
            0   19     1   key  Ljava/lang/Object;
            1   19     2     k  Ljava/lang/Object;
            2   19     3     h  I
            3   19     4   tab  [Ljava/util/WeakHashMap$Entry;
            4   19     5     i  I
            5   19     6  prev  Ljava/util/WeakHashMap$Entry<TK;TV;>;
            6   19     7     e  Ljava/util/WeakHashMap$Entry<TK;TV;>;
            8   17     8  next  Ljava/util/WeakHashMap$Entry<TK;TV;>;
    Signature: (Ljava/lang/Object;)TV;
    MethodParameters:
      Name  Flags
      key   

  boolean removeMapping(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0000) 
    Code:
      stack=3, locals=10, args_size=2
        start local 0 // java.util.WeakHashMap this
        start local 1 // java.lang.Object o
         0: .line 692
            aload 1 /* o */
            instanceof java.util.Map$Entry
            ifne 2
         1: .line 693
            iconst_0
            ireturn
         2: .line 694
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.util.WeakHashMap.getTable:()[Ljava/util/WeakHashMap$Entry;
            astore 2 /* tab */
        start local 2 // java.util.WeakHashMap$Entry[] tab
         3: .line 695
            aload 1 /* o */
            checkcast java.util.Map$Entry
            astore 3 /* entry */
        start local 3 // java.util.Map$Entry entry
         4: .line 696
            aload 3 /* entry */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            invokestatic java.util.WeakHashMap.maskNull:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 4 /* k */
        start local 4 // java.lang.Object k
         5: .line 697
            aload 0 /* this */
            aload 4 /* k */
            invokevirtual java.util.WeakHashMap.hash:(Ljava/lang/Object;)I
            istore 5 /* h */
        start local 5 // int h
         6: .line 698
            iload 5 /* h */
            aload 2 /* tab */
            arraylength
            invokestatic java.util.WeakHashMap.indexFor:(II)I
            istore 6 /* i */
        start local 6 // int i
         7: .line 699
            aload 2 /* tab */
            iload 6 /* i */
            aaload
            astore 7 /* prev */
        start local 7 // java.util.WeakHashMap$Entry prev
         8: .line 700
            aload 7 /* prev */
            astore 8 /* e */
        start local 8 // java.util.WeakHashMap$Entry e
         9: .line 702
            goto 20
        10: .line 703
      StackMap locals: java.util.WeakHashMap java.lang.Object java.util.WeakHashMap$Entry[] java.util.Map$Entry java.lang.Object int int java.util.WeakHashMap$Entry java.util.WeakHashMap$Entry
      StackMap stack:
            aload 8 /* e */
            getfield java.util.WeakHashMap$Entry.next:Ljava/util/WeakHashMap$Entry;
            astore 9 /* next */
        start local 9 // java.util.WeakHashMap$Entry next
        11: .line 704
            iload 5 /* h */
            aload 8 /* e */
            getfield java.util.WeakHashMap$Entry.hash:I
            if_icmpne 18
            aload 8 /* e */
            aload 3 /* entry */
            invokevirtual java.util.WeakHashMap$Entry.equals:(Ljava/lang/Object;)Z
            ifeq 18
        12: .line 705
            aload 0 /* this */
            dup
            getfield java.util.WeakHashMap.modCount:I
            iconst_1
            iadd
            putfield java.util.WeakHashMap.modCount:I
        13: .line 706
            aload 0 /* this */
            dup
            getfield java.util.WeakHashMap.size:I
            iconst_1
            isub
            putfield java.util.WeakHashMap.size:I
        14: .line 707
            aload 7 /* prev */
            aload 8 /* e */
            if_acmpne 16
        15: .line 708
            aload 2 /* tab */
            iload 6 /* i */
            aload 9 /* next */
            aastore
            goto 17
        16: .line 710
      StackMap locals: java.util.WeakHashMap$Entry
      StackMap stack:
            aload 7 /* prev */
            aload 9 /* next */
            putfield java.util.WeakHashMap$Entry.next:Ljava/util/WeakHashMap$Entry;
        17: .line 711
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        18: .line 713
      StackMap locals:
      StackMap stack:
            aload 8 /* e */
            astore 7 /* prev */
        19: .line 714
            aload 9 /* next */
            astore 8 /* e */
        end local 9 // java.util.WeakHashMap$Entry next
        20: .line 702
      StackMap locals:
      StackMap stack:
            aload 8 /* e */
            ifnonnull 10
        21: .line 717
            iconst_0
            ireturn
        end local 8 // java.util.WeakHashMap$Entry e
        end local 7 // java.util.WeakHashMap$Entry prev
        end local 6 // int i
        end local 5 // int h
        end local 4 // java.lang.Object k
        end local 3 // java.util.Map$Entry entry
        end local 2 // java.util.WeakHashMap$Entry[] tab
        end local 1 // java.lang.Object o
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   22     0   this  Ljava/util/WeakHashMap<TK;TV;>;
            0   22     1      o  Ljava/lang/Object;
            3   22     2    tab  [Ljava/util/WeakHashMap$Entry;
            4   22     3  entry  Ljava/util/Map$Entry<**>;
            5   22     4      k  Ljava/lang/Object;
            6   22     5      h  I
            7   22     6      i  I
            8   22     7   prev  Ljava/util/WeakHashMap$Entry<TK;TV;>;
            9   22     8      e  Ljava/util/WeakHashMap$Entry<TK;TV;>;
           11   20     9   next  Ljava/util/WeakHashMap$Entry<TK;TV;>;
    MethodParameters:
      Name  Flags
      o     

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // java.util.WeakHashMap this
         0: .line 727
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.util.WeakHashMap.queue:Ljava/lang/ref/ReferenceQueue;
            invokevirtual java.lang.ref.ReferenceQueue.poll:()Ljava/lang/ref/Reference;
            ifnonnull 0
         1: .line 730
            aload 0 /* this */
            dup
            getfield java.util.WeakHashMap.modCount:I
            iconst_1
            iadd
            putfield java.util.WeakHashMap.modCount:I
         2: .line 731
            aload 0 /* this */
            getfield java.util.WeakHashMap.table:[Ljava/util/WeakHashMap$Entry;
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
         3: .line 732
            aload 0 /* this */
            iconst_0
            putfield java.util.WeakHashMap.size:I
         4: .line 737
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.util.WeakHashMap.queue:Ljava/lang/ref/ReferenceQueue;
            invokevirtual java.lang.ref.ReferenceQueue.poll:()Ljava/lang/ref/Reference;
            ifnonnull 4
         5: .line 739
            return
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Ljava/util/WeakHashMap<TK;TV;>;

  public boolean containsValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=5, args_size=2
        start local 0 // java.util.WeakHashMap this
        start local 1 // java.lang.Object value
         0: .line 750
            aload 1 /* value */
            ifnonnull 2
         1: .line 751
            aload 0 /* this */
            invokevirtual java.util.WeakHashMap.containsNullValue:()Z
            ireturn
         2: .line 753
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.util.WeakHashMap.getTable:()[Ljava/util/WeakHashMap$Entry;
            astore 2 /* tab */
        start local 2 // java.util.WeakHashMap$Entry[] tab
         3: .line 754
            aload 2 /* tab */
            arraylength
            istore 3 /* i */
        start local 3 // int i
         4: goto 11
         5: .line 755
      StackMap locals: java.util.WeakHashMap$Entry[] int
      StackMap stack:
            aload 2 /* tab */
            iload 3 /* i */
            aaload
            astore 4 /* e */
        start local 4 // java.util.WeakHashMap$Entry e
         6: goto 10
         7: .line 756
      StackMap locals: java.util.WeakHashMap$Entry
      StackMap stack:
            aload 1 /* value */
            aload 4 /* e */
            getfield java.util.WeakHashMap$Entry.value:Ljava/lang/Object;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 9
         8: .line 757
            iconst_1
            ireturn
         9: .line 755
      StackMap locals:
      StackMap stack:
            aload 4 /* e */
            getfield java.util.WeakHashMap$Entry.next:Ljava/util/WeakHashMap$Entry;
            astore 4 /* e */
      StackMap locals:
      StackMap stack:
        10: aload 4 /* e */
            ifnonnull 7
        end local 4 // java.util.WeakHashMap$Entry e
        11: .line 754
      StackMap locals:
      StackMap stack:
            iload 3 /* i */
            iinc 3 /* i */ -1
            ifgt 5
        end local 3 // int i
        12: .line 758
            iconst_0
            ireturn
        end local 2 // java.util.WeakHashMap$Entry[] tab
        end local 1 // java.lang.Object value
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   13     0   this  Ljava/util/WeakHashMap<TK;TV;>;
            0   13     1  value  Ljava/lang/Object;
            3   13     2    tab  [Ljava/util/WeakHashMap$Entry;
            4   12     3      i  I
            6   11     4      e  Ljava/util/WeakHashMap$Entry<TK;TV;>;
    MethodParameters:
       Name  Flags
      value  

  private boolean containsNullValue();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // java.util.WeakHashMap this
         0: .line 765
            aload 0 /* this */
            invokevirtual java.util.WeakHashMap.getTable:()[Ljava/util/WeakHashMap$Entry;
            astore 1 /* tab */
        start local 1 // java.util.WeakHashMap$Entry[] tab
         1: .line 766
            aload 1 /* tab */
            arraylength
            istore 2 /* i */
        start local 2 // int i
         2: goto 9
         3: .line 767
      StackMap locals: java.util.WeakHashMap$Entry[] int
      StackMap stack:
            aload 1 /* tab */
            iload 2 /* i */
            aaload
            astore 3 /* e */
        start local 3 // java.util.WeakHashMap$Entry e
         4: goto 8
         5: .line 768
      StackMap locals: java.util.WeakHashMap$Entry
      StackMap stack:
            aload 3 /* e */
            getfield java.util.WeakHashMap$Entry.value:Ljava/lang/Object;
            ifnonnull 7
         6: .line 769
            iconst_1
            ireturn
         7: .line 767
      StackMap locals:
      StackMap stack:
            aload 3 /* e */
            getfield java.util.WeakHashMap$Entry.next:Ljava/util/WeakHashMap$Entry;
            astore 3 /* e */
      StackMap locals:
      StackMap stack:
         8: aload 3 /* e */
            ifnonnull 5
        end local 3 // java.util.WeakHashMap$Entry e
         9: .line 766
      StackMap locals:
      StackMap stack:
            iload 2 /* i */
            iinc 2 /* i */ -1
            ifgt 3
        end local 2 // int i
        10: .line 770
            iconst_0
            ireturn
        end local 1 // java.util.WeakHashMap$Entry[] tab
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Ljava/util/WeakHashMap<TK;TV;>;
            1   11     1   tab  [Ljava/util/WeakHashMap$Entry;
            2   10     2     i  I
            4    9     3     e  Ljava/util/WeakHashMap$Entry<TK;TV;>;

  public java.util.Set<K> keySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // java.util.WeakHashMap this
         0: .line 943
            aload 0 /* this */
            getfield java.util.WeakHashMap.keySet:Ljava/util/Set;
            astore 1 /* ks */
        start local 1 // java.util.Set ks
         1: .line 944
            aload 1 /* ks */
            ifnull 2
            aload 1 /* ks */
            goto 3
      StackMap locals: java.util.Set
      StackMap stack:
         2: aload 0 /* this */
            new java.util.WeakHashMap$KeySet
            dup
            aload 0 /* this */
            invokespecial java.util.WeakHashMap$KeySet.<init>:(Ljava/util/WeakHashMap;)V
            dup_x1
            putfield java.util.WeakHashMap.keySet:Ljava/util/Set;
      StackMap locals:
      StackMap stack: java.util.Set
         3: areturn
        end local 1 // java.util.Set ks
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/util/WeakHashMap<TK;TV;>;
            1    4     1    ks  Ljava/util/Set<TK;>;
    Signature: ()Ljava/util/Set<TK;>;

  public java.util.Collection<V> values();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // java.util.WeakHashMap this
         0: .line 988
            aload 0 /* this */
            getfield java.util.WeakHashMap.values:Ljava/util/Collection;
            astore 1 /* vs */
        start local 1 // java.util.Collection vs
         1: .line 989
            aload 1 /* vs */
            ifnull 2
            aload 1 /* vs */
            goto 3
      StackMap locals: java.util.Collection
      StackMap stack:
         2: aload 0 /* this */
            new java.util.WeakHashMap$Values
            dup
            aload 0 /* this */
            invokespecial java.util.WeakHashMap$Values.<init>:(Ljava/util/WeakHashMap;)V
            dup_x1
            putfield java.util.WeakHashMap.values:Ljava/util/Collection;
      StackMap locals:
      StackMap stack: java.util.Collection
         3: areturn
        end local 1 // java.util.Collection vs
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/util/WeakHashMap<TK;TV;>;
            1    4     1    vs  Ljava/util/Collection<TV;>;
    Signature: ()Ljava/util/Collection<TV;>;

  public java.util.Set<java.util.Map$Entry<K, V>> entrySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // java.util.WeakHashMap this
         0: .line 1025
            aload 0 /* this */
            getfield java.util.WeakHashMap.entrySet:Ljava/util/Set;
            astore 1 /* es */
        start local 1 // java.util.Set es
         1: .line 1026
            aload 1 /* es */
            ifnull 2
            aload 1 /* es */
            goto 3
      StackMap locals: java.util.Set
      StackMap stack:
         2: aload 0 /* this */
            new java.util.WeakHashMap$EntrySet
            dup
            aload 0 /* this */
            invokespecial java.util.WeakHashMap$EntrySet.<init>:(Ljava/util/WeakHashMap;)V
            dup_x1
            putfield java.util.WeakHashMap.entrySet:Ljava/util/Set;
      StackMap locals:
      StackMap stack: java.util.Set
         3: areturn
        end local 1 // java.util.Set es
        end local 0 // java.util.WeakHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/util/WeakHashMap<TK;TV;>;
            1    4     1    es  Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;
    Signature: ()Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/util/AbstractMap<TK;TV;>;Ljava/util/Map<TK;TV;>;
SourceFile: "WeakHashMap.java"
NestMembers:
  java.util.WeakHashMap$Entry  java.util.WeakHashMap$EntryIterator  java.util.WeakHashMap$EntrySet  java.util.WeakHashMap$HashIterator  java.util.WeakHashMap$Holder  java.util.WeakHashMap$KeyIterator  java.util.WeakHashMap$KeySet  java.util.WeakHashMap$ValueIterator  java.util.WeakHashMap$Values
InnerClasses:
  public abstract Entry = java.util.Map$Entry of java.util.Map
  private Entry = java.util.WeakHashMap$Entry of java.util.WeakHashMap
  private EntryIterator = java.util.WeakHashMap$EntryIterator of java.util.WeakHashMap
  private EntrySet = java.util.WeakHashMap$EntrySet of java.util.WeakHashMap
  private abstract HashIterator = java.util.WeakHashMap$HashIterator of java.util.WeakHashMap
  private Holder = java.util.WeakHashMap$Holder of java.util.WeakHashMap
  private KeyIterator = java.util.WeakHashMap$KeyIterator of java.util.WeakHashMap
  private KeySet = java.util.WeakHashMap$KeySet of java.util.WeakHashMap
  private ValueIterator = java.util.WeakHashMap$ValueIterator of java.util.WeakHashMap
  private Values = java.util.WeakHashMap$Values of java.util.WeakHashMap