public class freemarker.ext.util.IdentityHashMap extends java.util.AbstractMap implements java.util.Map, java.lang.Cloneable, java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: freemarker.ext.util.IdentityHashMap
  super_class: java.util.AbstractMap
{
  public static final long serialVersionUID;
    descriptor: J
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 362498820763181265

  private transient freemarker.ext.util.IdentityHashMap$Entry[] table;
    descriptor: [Lfreemarker/ext/util/IdentityHashMap$Entry;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient int count;
    descriptor: I
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

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

  private float loadFactor;
    descriptor: F
    flags: (0x0002) ACC_PRIVATE

  private transient int modCount;
    descriptor: I
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient java.util.Set keySet;
    descriptor: Ljava/util/Set;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient java.util.Set entrySet;
    descriptor: Ljava/util/Set;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient java.util.Collection values;
    descriptor: Ljava/util/Collection;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

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

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

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

  private static freemarker.ext.util.IdentityHashMap$EmptyHashIterator emptyHashIterator;
    descriptor: Lfreemarker/ext/util/IdentityHashMap$EmptyHashIterator;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 672
            new freemarker.ext.util.IdentityHashMap$EmptyHashIterator
            dup
            invokespecial freemarker.ext.util.IdentityHashMap$EmptyHashIterator.<init>:()V
         1: .line 671
            putstatic freemarker.ext.util.IdentityHashMap.emptyHashIterator:Lfreemarker/ext/util/IdentityHashMap$EmptyHashIterator;
         2: .line 672
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(int, float);
    descriptor: (IF)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // freemarker.ext.util.IdentityHashMap this
        start local 1 // int initialCapacity
        start local 2 // float loadFactor
         0: .line 83
            aload 0 /* this */
            invokespecial java.util.AbstractMap.<init>:()V
         1: .line 72
            aload 0 /* this */
            iconst_0
            putfield freemarker.ext.util.IdentityHashMap.modCount:I
         2: .line 428
            aload 0 /* this */
            aconst_null
            putfield freemarker.ext.util.IdentityHashMap.keySet:Ljava/util/Set;
         3: .line 429
            aload 0 /* this */
            aconst_null
            putfield freemarker.ext.util.IdentityHashMap.entrySet:Ljava/util/Set;
         4: .line 430
            aload 0 /* this */
            aconst_null
            putfield freemarker.ext.util.IdentityHashMap.values:Ljava/util/Collection;
         5: .line 84
            iload 1 /* initialCapacity */
            ifge 9
         6: .line 85
            new java.lang.IllegalArgumentException
            dup
         7: .line 86
            new java.lang.StringBuilder
            dup
            ldc "Illegal Initial Capacity: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* initialCapacity */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         8: .line 85
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 87
      StackMap locals: freemarker.ext.util.IdentityHashMap int float
      StackMap stack:
            fload 2 /* loadFactor */
            fconst_0
            fcmpg
            ifle 10
            fload 2 /* loadFactor */
            invokestatic java.lang.Float.isNaN:(F)Z
            ifeq 13
        10: .line 88
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
        11: .line 89
            new java.lang.StringBuilder
            dup
            ldc "Illegal Load factor: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            fload 2 /* loadFactor */
            invokevirtual java.lang.StringBuilder.append:(F)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        12: .line 88
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 90
      StackMap locals:
      StackMap stack:
            iload 1 /* initialCapacity */
            ifne 15
        14: .line 91
            iconst_1
            istore 1 /* initialCapacity */
        15: .line 92
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            fload 2 /* loadFactor */
            putfield freemarker.ext.util.IdentityHashMap.loadFactor:F
        16: .line 93
            aload 0 /* this */
            iload 1 /* initialCapacity */
            anewarray freemarker.ext.util.IdentityHashMap$Entry
            putfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
        17: .line 94
            aload 0 /* this */
            iload 1 /* initialCapacity */
            i2f
            fload 2 /* loadFactor */
            fmul
            f2i
            putfield freemarker.ext.util.IdentityHashMap.threshold:I
        18: .line 95
            return
        end local 2 // float loadFactor
        end local 1 // int initialCapacity
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   19     0             this  Lfreemarker/ext/util/IdentityHashMap;
            0   19     1  initialCapacity  I
            0   19     2       loadFactor  F
    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 // freemarker.ext.util.IdentityHashMap this
        start local 1 // int initialCapacity
         0: .line 106
            aload 0 /* this */
            iload 1 /* initialCapacity */
            ldc 0.75
            invokespecial freemarker.ext.util.IdentityHashMap.<init>:(IF)V
         1: .line 107
            return
        end local 1 // int initialCapacity
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0    2     0             this  Lfreemarker/ext/util/IdentityHashMap;
            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 // freemarker.ext.util.IdentityHashMap this
         0: .line 114
            aload 0 /* this */
            bipush 11
            ldc 0.75
            invokespecial freemarker.ext.util.IdentityHashMap.<init>:(IF)V
         1: .line 115
            return
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lfreemarker/ext/util/IdentityHashMap;

  public void <init>(java.util.Map);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // freemarker.ext.util.IdentityHashMap this
        start local 1 // java.util.Map t
         0: .line 126
            aload 0 /* this */
            iconst_2
            aload 1 /* t */
            invokeinterface java.util.Map.size:()I
            imul
            bipush 11
            invokestatic java.lang.Math.max:(II)I
            ldc 0.75
            invokespecial freemarker.ext.util.IdentityHashMap.<init>:(IF)V
         1: .line 127
            aload 0 /* this */
            aload 1 /* t */
            invokevirtual freemarker.ext.util.IdentityHashMap.putAll:(Ljava/util/Map;)V
         2: .line 128
            return
        end local 1 // java.util.Map t
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lfreemarker/ext/util/IdentityHashMap;
            0    3     1     t  Ljava/util/Map;
    MethodParameters:
      Name  Flags
      t     

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // freemarker.ext.util.IdentityHashMap this
         0: .line 137
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.count:I
            ireturn
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lfreemarker/ext/util/IdentityHashMap;

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // freemarker.ext.util.IdentityHashMap this
         0: .line 147
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.count:I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lfreemarker/ext/util/IdentityHashMap;

  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 // freemarker.ext.util.IdentityHashMap this
        start local 1 // java.lang.Object value
         0: .line 160
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 2 /* tab */
        start local 2 // freemarker.ext.util.IdentityHashMap$Entry[] tab
         1: .line 162
            aload 1 /* value */
            ifnonnull 12
         2: .line 163
            aload 2 /* tab */
            arraylength
            istore 3 /* i */
        start local 3 // int i
         3: goto 10
         4: .line 164
      StackMap locals: freemarker.ext.util.IdentityHashMap$Entry[] int
      StackMap stack:
            aload 2 /* tab */
            iload 3 /* i */
            aaload
            astore 4 /* e */
        start local 4 // freemarker.ext.util.IdentityHashMap$Entry e
         5: goto 9
         6: .line 165
      StackMap locals: freemarker.ext.util.IdentityHashMap$Entry
      StackMap stack:
            aload 4 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.value:Ljava/lang/Object;
            ifnonnull 8
         7: .line 166
            iconst_1
            ireturn
         8: .line 164
      StackMap locals:
      StackMap stack:
            aload 4 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 4 /* e */
      StackMap locals:
      StackMap stack:
         9: aload 4 /* e */
            ifnonnull 6
        end local 4 // freemarker.ext.util.IdentityHashMap$Entry e
        10: .line 163
      StackMap locals:
      StackMap stack:
            iload 3 /* i */
            iinc 3 /* i */ -1
            ifgt 4
        end local 3 // int i
        11: .line 167
            goto 21
        12: .line 168
      StackMap locals:
      StackMap stack:
            aload 2 /* tab */
            arraylength
            istore 3 /* i */
        start local 3 // int i
        13: goto 20
        14: .line 169
      StackMap locals: int
      StackMap stack:
            aload 2 /* tab */
            iload 3 /* i */
            aaload
            astore 4 /* e */
        start local 4 // freemarker.ext.util.IdentityHashMap$Entry e
        15: goto 19
        16: .line 170
      StackMap locals: freemarker.ext.util.IdentityHashMap$Entry
      StackMap stack:
            aload 1 /* value */
            aload 4 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.value:Ljava/lang/Object;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 18
        17: .line 171
            iconst_1
            ireturn
        18: .line 169
      StackMap locals:
      StackMap stack:
            aload 4 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 4 /* e */
      StackMap locals:
      StackMap stack:
        19: aload 4 /* e */
            ifnonnull 16
        end local 4 // freemarker.ext.util.IdentityHashMap$Entry e
        20: .line 168
      StackMap locals:
      StackMap stack:
            iload 3 /* i */
            iinc 3 /* i */ -1
            ifgt 14
        end local 3 // int i
        21: .line 174
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // freemarker.ext.util.IdentityHashMap$Entry[] tab
        end local 1 // java.lang.Object value
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   22     0   this  Lfreemarker/ext/util/IdentityHashMap;
            0   22     1  value  Ljava/lang/Object;
            1   22     2    tab  [Lfreemarker/ext/util/IdentityHashMap$Entry;
            3   11     3      i  I
            5   10     4      e  Lfreemarker/ext/util/IdentityHashMap$Entry;
           13   21     3      i  I
           15   20     4      e  Lfreemarker/ext/util/IdentityHashMap$Entry;
    MethodParameters:
       Name  Flags
      value  

  public boolean containsKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // freemarker.ext.util.IdentityHashMap this
        start local 1 // java.lang.Object key
         0: .line 187
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 2 /* tab */
        start local 2 // freemarker.ext.util.IdentityHashMap$Entry[] tab
         1: .line 188
            aload 1 /* key */
            ifnull 11
         2: .line 189
            aload 1 /* key */
            invokestatic java.lang.System.identityHashCode:(Ljava/lang/Object;)I
            istore 3 /* hash */
        start local 3 // int hash
         3: .line 190
            iload 3 /* hash */
            ldc 2147483647
            iand
            aload 2 /* tab */
            arraylength
            irem
            istore 4 /* index */
        start local 4 // int index
         4: .line 191
            aload 2 /* tab */
            iload 4 /* index */
            aaload
            astore 5 /* e */
        start local 5 // freemarker.ext.util.IdentityHashMap$Entry e
         5: goto 9
         6: .line 192
      StackMap locals: freemarker.ext.util.IdentityHashMap java.lang.Object freemarker.ext.util.IdentityHashMap$Entry[] int int freemarker.ext.util.IdentityHashMap$Entry
      StackMap stack:
            aload 5 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.hash:I
            iload 3 /* hash */
            if_icmpne 8
            aload 1 /* key */
            aload 5 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.key:Ljava/lang/Object;
            if_acmpne 8
         7: .line 193
            iconst_1
            ireturn
         8: .line 191
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 5 /* e */
      StackMap locals:
      StackMap stack:
         9: aload 5 /* e */
            ifnonnull 6
        end local 5 // freemarker.ext.util.IdentityHashMap$Entry e
        end local 4 // int index
        end local 3 // int hash
        10: .line 194
            goto 17
        11: .line 195
      StackMap locals:
      StackMap stack:
            aload 2 /* tab */
            iconst_0
            aaload
            astore 3 /* e */
        start local 3 // freemarker.ext.util.IdentityHashMap$Entry e
        12: goto 16
        13: .line 196
      StackMap locals: freemarker.ext.util.IdentityHashMap$Entry
      StackMap stack:
            aload 3 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.key:Ljava/lang/Object;
            ifnonnull 15
        14: .line 197
            iconst_1
            ireturn
        15: .line 195
      StackMap locals:
      StackMap stack:
            aload 3 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 3 /* e */
      StackMap locals:
      StackMap stack:
        16: aload 3 /* e */
            ifnonnull 13
        end local 3 // freemarker.ext.util.IdentityHashMap$Entry e
        17: .line 200
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 2 // freemarker.ext.util.IdentityHashMap$Entry[] tab
        end local 1 // java.lang.Object key
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   18     0   this  Lfreemarker/ext/util/IdentityHashMap;
            0   18     1    key  Ljava/lang/Object;
            1   18     2    tab  [Lfreemarker/ext/util/IdentityHashMap$Entry;
            3   10     3   hash  I
            4   10     4  index  I
            5   10     5      e  Lfreemarker/ext/util/IdentityHashMap$Entry;
           12   17     3      e  Lfreemarker/ext/util/IdentityHashMap$Entry;
    MethodParameters:
      Name  Flags
      key   

  public java.lang.Object get(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=6, args_size=2
        start local 0 // freemarker.ext.util.IdentityHashMap this
        start local 1 // java.lang.Object key
         0: .line 216
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 2 /* tab */
        start local 2 // freemarker.ext.util.IdentityHashMap$Entry[] tab
         1: .line 218
            aload 1 /* key */
            ifnull 11
         2: .line 219
            aload 1 /* key */
            invokestatic java.lang.System.identityHashCode:(Ljava/lang/Object;)I
            istore 3 /* hash */
        start local 3 // int hash
         3: .line 220
            iload 3 /* hash */
            ldc 2147483647
            iand
            aload 2 /* tab */
            arraylength
            irem
            istore 4 /* index */
        start local 4 // int index
         4: .line 221
            aload 2 /* tab */
            iload 4 /* index */
            aaload
            astore 5 /* e */
        start local 5 // freemarker.ext.util.IdentityHashMap$Entry e
         5: goto 9
         6: .line 222
      StackMap locals: freemarker.ext.util.IdentityHashMap java.lang.Object freemarker.ext.util.IdentityHashMap$Entry[] int int freemarker.ext.util.IdentityHashMap$Entry
      StackMap stack:
            aload 5 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.hash:I
            iload 3 /* hash */
            if_icmpne 8
            aload 1 /* key */
            aload 5 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.key:Ljava/lang/Object;
            if_acmpne 8
         7: .line 223
            aload 5 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.value:Ljava/lang/Object;
            areturn
         8: .line 221
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 5 /* e */
      StackMap locals:
      StackMap stack:
         9: aload 5 /* e */
            ifnonnull 6
        end local 5 // freemarker.ext.util.IdentityHashMap$Entry e
        end local 4 // int index
        end local 3 // int hash
        10: .line 224
            goto 17
        11: .line 225
      StackMap locals:
      StackMap stack:
            aload 2 /* tab */
            iconst_0
            aaload
            astore 3 /* e */
        start local 3 // freemarker.ext.util.IdentityHashMap$Entry e
        12: goto 16
        13: .line 226
      StackMap locals: freemarker.ext.util.IdentityHashMap$Entry
      StackMap stack:
            aload 3 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.key:Ljava/lang/Object;
            ifnonnull 15
        14: .line 227
            aload 3 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.value:Ljava/lang/Object;
            areturn
        15: .line 225
      StackMap locals:
      StackMap stack:
            aload 3 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 3 /* e */
      StackMap locals:
      StackMap stack:
        16: aload 3 /* e */
            ifnonnull 13
        end local 3 // freemarker.ext.util.IdentityHashMap$Entry e
        17: .line 230
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // freemarker.ext.util.IdentityHashMap$Entry[] tab
        end local 1 // java.lang.Object key
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   18     0   this  Lfreemarker/ext/util/IdentityHashMap;
            0   18     1    key  Ljava/lang/Object;
            1   18     2    tab  [Lfreemarker/ext/util/IdentityHashMap$Entry;
            3   10     3   hash  I
            4   10     4  index  I
            5   10     5      e  Lfreemarker/ext/util/IdentityHashMap$Entry;
           12   17     3      e  Lfreemarker/ext/util/IdentityHashMap$Entry;
    MethodParameters:
      Name  Flags
      key   

  private void rehash();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=9, args_size=1
        start local 0 // freemarker.ext.util.IdentityHashMap this
         0: .line 239
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
            arraylength
            istore 1 /* oldCapacity */
        start local 1 // int oldCapacity
         1: .line 240
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 2 /* oldMap */
        start local 2 // freemarker.ext.util.IdentityHashMap$Entry[] oldMap
         2: .line 242
            iload 1 /* oldCapacity */
            iconst_2
            imul
            iconst_1
            iadd
            istore 3 /* newCapacity */
        start local 3 // int newCapacity
         3: .line 243
            iload 3 /* newCapacity */
            anewarray freemarker.ext.util.IdentityHashMap$Entry
            astore 4 /* newMap */
        start local 4 // freemarker.ext.util.IdentityHashMap$Entry[] newMap
         4: .line 245
            aload 0 /* this */
            dup
            getfield freemarker.ext.util.IdentityHashMap.modCount:I
            iconst_1
            iadd
            putfield freemarker.ext.util.IdentityHashMap.modCount:I
         5: .line 246
            aload 0 /* this */
            iload 3 /* newCapacity */
            i2f
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.loadFactor:F
            fmul
            f2i
            putfield freemarker.ext.util.IdentityHashMap.threshold:I
         6: .line 247
            aload 0 /* this */
            aload 4 /* newMap */
            putfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
         7: .line 249
            iload 1 /* oldCapacity */
            istore 5 /* i */
        start local 5 // int i
         8: goto 17
         9: .line 250
      StackMap locals: freemarker.ext.util.IdentityHashMap int freemarker.ext.util.IdentityHashMap$Entry[] int freemarker.ext.util.IdentityHashMap$Entry[] int
      StackMap stack:
            aload 2 /* oldMap */
            iload 5 /* i */
            aaload
            astore 6 /* old */
        start local 6 // freemarker.ext.util.IdentityHashMap$Entry old
        10: goto 16
        11: .line 251
      StackMap locals: freemarker.ext.util.IdentityHashMap$Entry
      StackMap stack:
            aload 6 /* old */
            astore 7 /* e */
        start local 7 // freemarker.ext.util.IdentityHashMap$Entry e
        12: .line 252
            aload 6 /* old */
            getfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 6 /* old */
        13: .line 254
            aload 7 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.hash:I
            ldc 2147483647
            iand
            iload 3 /* newCapacity */
            irem
            istore 8 /* index */
        start local 8 // int index
        14: .line 255
            aload 7 /* e */
            aload 4 /* newMap */
            iload 8 /* index */
            aaload
            putfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
        15: .line 256
            aload 4 /* newMap */
            iload 8 /* index */
            aload 7 /* e */
            aastore
        end local 8 // int index
        end local 7 // freemarker.ext.util.IdentityHashMap$Entry e
        16: .line 250
      StackMap locals:
      StackMap stack:
            aload 6 /* old */
            ifnonnull 11
        end local 6 // freemarker.ext.util.IdentityHashMap$Entry old
        17: .line 249
      StackMap locals:
      StackMap stack:
            iload 5 /* i */
            iinc 5 /* i */ -1
            ifgt 9
        end local 5 // int i
        18: .line 259
            return
        end local 4 // freemarker.ext.util.IdentityHashMap$Entry[] newMap
        end local 3 // int newCapacity
        end local 2 // freemarker.ext.util.IdentityHashMap$Entry[] oldMap
        end local 1 // int oldCapacity
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   19     0         this  Lfreemarker/ext/util/IdentityHashMap;
            1   19     1  oldCapacity  I
            2   19     2       oldMap  [Lfreemarker/ext/util/IdentityHashMap$Entry;
            3   19     3  newCapacity  I
            4   19     4       newMap  [Lfreemarker/ext/util/IdentityHashMap$Entry;
            8   18     5            i  I
           10   17     6          old  Lfreemarker/ext/util/IdentityHashMap$Entry;
           12   16     7            e  Lfreemarker/ext/util/IdentityHashMap$Entry;
           14   16     8        index  I

  public java.lang.Object put(java.lang.Object, java.lang.Object);
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=8, args_size=3
        start local 0 // freemarker.ext.util.IdentityHashMap this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 276
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 3 /* tab */
        start local 3 // freemarker.ext.util.IdentityHashMap$Entry[] tab
         1: .line 277
            iconst_0
            istore 4 /* hash */
        start local 4 // int hash
         2: .line 278
            iconst_0
            istore 5 /* index */
        start local 5 // int index
         3: .line 280
            aload 1 /* key */
            ifnull 15
         4: .line 281
            aload 1 /* key */
            invokestatic java.lang.System.identityHashCode:(Ljava/lang/Object;)I
            istore 4 /* hash */
         5: .line 282
            iload 4 /* hash */
            ldc 2147483647
            iand
            aload 3 /* tab */
            arraylength
            irem
            istore 5 /* index */
         6: .line 283
            aload 3 /* tab */
            iload 5 /* index */
            aaload
            astore 6 /* e */
        start local 6 // freemarker.ext.util.IdentityHashMap$Entry e
         7: goto 13
         8: .line 284
      StackMap locals: freemarker.ext.util.IdentityHashMap java.lang.Object java.lang.Object freemarker.ext.util.IdentityHashMap$Entry[] int int freemarker.ext.util.IdentityHashMap$Entry
      StackMap stack:
            aload 6 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.hash:I
            iload 4 /* hash */
            if_icmpne 12
            aload 1 /* key */
            aload 6 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.key:Ljava/lang/Object;
            if_acmpne 12
         9: .line 285
            aload 6 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.value:Ljava/lang/Object;
            astore 7 /* old */
        start local 7 // java.lang.Object old
        10: .line 286
            aload 6 /* e */
            aload 2 /* value */
            putfield freemarker.ext.util.IdentityHashMap$Entry.value:Ljava/lang/Object;
        11: .line 287
            aload 7 /* old */
            areturn
        end local 7 // java.lang.Object old
        12: .line 283
      StackMap locals:
      StackMap stack:
            aload 6 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 6 /* e */
      StackMap locals:
      StackMap stack:
        13: aload 6 /* e */
            ifnonnull 8
        end local 6 // freemarker.ext.util.IdentityHashMap$Entry e
        14: .line 290
            goto 23
        15: .line 291
      StackMap locals:
      StackMap stack:
            aload 3 /* tab */
            iconst_0
            aaload
            astore 6 /* e */
        start local 6 // freemarker.ext.util.IdentityHashMap$Entry e
        16: goto 22
        17: .line 292
      StackMap locals: freemarker.ext.util.IdentityHashMap$Entry
      StackMap stack:
            aload 6 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.key:Ljava/lang/Object;
            ifnonnull 21
        18: .line 293
            aload 6 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.value:Ljava/lang/Object;
            astore 7 /* old */
        start local 7 // java.lang.Object old
        19: .line 294
            aload 6 /* e */
            aload 2 /* value */
            putfield freemarker.ext.util.IdentityHashMap$Entry.value:Ljava/lang/Object;
        20: .line 295
            aload 7 /* old */
            areturn
        end local 7 // java.lang.Object old
        21: .line 291
      StackMap locals:
      StackMap stack:
            aload 6 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 6 /* e */
      StackMap locals:
      StackMap stack:
        22: aload 6 /* e */
            ifnonnull 17
        end local 6 // freemarker.ext.util.IdentityHashMap$Entry e
        23: .line 300
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield freemarker.ext.util.IdentityHashMap.modCount:I
            iconst_1
            iadd
            putfield freemarker.ext.util.IdentityHashMap.modCount:I
        24: .line 301
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.count:I
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.threshold:I
            if_icmplt 28
        25: .line 303
            aload 0 /* this */
            invokevirtual freemarker.ext.util.IdentityHashMap.rehash:()V
        26: .line 305
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 3 /* tab */
        27: .line 306
            iload 4 /* hash */
            ldc 2147483647
            iand
            aload 3 /* tab */
            arraylength
            irem
            istore 5 /* index */
        28: .line 310
      StackMap locals:
      StackMap stack:
            new freemarker.ext.util.IdentityHashMap$Entry
            dup
            iload 4 /* hash */
            aload 1 /* key */
            aload 2 /* value */
            aload 3 /* tab */
            iload 5 /* index */
            aaload
            invokespecial freemarker.ext.util.IdentityHashMap$Entry.<init>:(ILjava/lang/Object;Ljava/lang/Object;Lfreemarker/ext/util/IdentityHashMap$Entry;)V
            astore 6 /* e */
        start local 6 // freemarker.ext.util.IdentityHashMap$Entry e
        29: .line 311
            aload 3 /* tab */
            iload 5 /* index */
            aload 6 /* e */
            aastore
        30: .line 312
            aload 0 /* this */
            dup
            getfield freemarker.ext.util.IdentityHashMap.count:I
            iconst_1
            iadd
            putfield freemarker.ext.util.IdentityHashMap.count:I
        31: .line 313
            aconst_null
            areturn
        end local 6 // freemarker.ext.util.IdentityHashMap$Entry e
        end local 5 // int index
        end local 4 // int hash
        end local 3 // freemarker.ext.util.IdentityHashMap$Entry[] tab
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   32     0   this  Lfreemarker/ext/util/IdentityHashMap;
            0   32     1    key  Ljava/lang/Object;
            0   32     2  value  Ljava/lang/Object;
            1   32     3    tab  [Lfreemarker/ext/util/IdentityHashMap$Entry;
            2   32     4   hash  I
            3   32     5  index  I
            7   14     6      e  Lfreemarker/ext/util/IdentityHashMap$Entry;
           10   12     7    old  Ljava/lang/Object;
           16   23     6      e  Lfreemarker/ext/util/IdentityHashMap$Entry;
           19   21     7    old  Ljava/lang/Object;
           29   32     6      e  Lfreemarker/ext/util/IdentityHashMap$Entry;
    MethodParameters:
       Name  Flags
      key    
      value  

  public java.lang.Object remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // freemarker.ext.util.IdentityHashMap this
        start local 1 // java.lang.Object key
         0: .line 327
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 2 /* tab */
        start local 2 // freemarker.ext.util.IdentityHashMap$Entry[] tab
         1: .line 329
            aload 1 /* key */
            ifnull 19
         2: .line 330
            aload 1 /* key */
            invokestatic java.lang.System.identityHashCode:(Ljava/lang/Object;)I
            istore 3 /* hash */
        start local 3 // int hash
         3: .line 331
            iload 3 /* hash */
            ldc 2147483647
            iand
            aload 2 /* tab */
            arraylength
            irem
            istore 4 /* index */
        start local 4 // int index
         4: .line 333
            aload 2 /* tab */
            iload 4 /* index */
            aaload
            astore 5 /* e */
        start local 5 // freemarker.ext.util.IdentityHashMap$Entry e
         5: aconst_null
            astore 6 /* prev */
        start local 6 // freemarker.ext.util.IdentityHashMap$Entry prev
         6: .line 334
            goto 17
         7: .line 336
      StackMap locals: freemarker.ext.util.IdentityHashMap java.lang.Object freemarker.ext.util.IdentityHashMap$Entry[] int int freemarker.ext.util.IdentityHashMap$Entry freemarker.ext.util.IdentityHashMap$Entry
      StackMap stack:
            aload 5 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.hash:I
            iload 3 /* hash */
            if_icmpne 16
            aload 1 /* key */
            aload 5 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.key:Ljava/lang/Object;
            if_acmpne 16
         8: .line 337
            aload 0 /* this */
            dup
            getfield freemarker.ext.util.IdentityHashMap.modCount:I
            iconst_1
            iadd
            putfield freemarker.ext.util.IdentityHashMap.modCount:I
         9: .line 338
            aload 6 /* prev */
            ifnull 11
        10: .line 339
            aload 6 /* prev */
            aload 5 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
            putfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
            goto 12
        11: .line 341
      StackMap locals:
      StackMap stack:
            aload 2 /* tab */
            iload 4 /* index */
            aload 5 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
            aastore
        12: .line 343
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield freemarker.ext.util.IdentityHashMap.count:I
            iconst_1
            isub
            putfield freemarker.ext.util.IdentityHashMap.count:I
        13: .line 344
            aload 5 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.value:Ljava/lang/Object;
            astore 7 /* oldValue */
        start local 7 // java.lang.Object oldValue
        14: .line 345
            aload 5 /* e */
            aconst_null
            putfield freemarker.ext.util.IdentityHashMap$Entry.value:Ljava/lang/Object;
        15: .line 346
            aload 7 /* oldValue */
            areturn
        end local 7 // java.lang.Object oldValue
        16: .line 335
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            astore 6 /* prev */
            aload 5 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 5 /* e */
        17: .line 334
      StackMap locals:
      StackMap stack:
            aload 5 /* e */
            ifnonnull 7
        end local 6 // freemarker.ext.util.IdentityHashMap$Entry prev
        end local 5 // freemarker.ext.util.IdentityHashMap$Entry e
        end local 4 // int index
        end local 3 // int hash
        18: .line 349
            goto 33
        19: .line 350
      StackMap locals: freemarker.ext.util.IdentityHashMap java.lang.Object freemarker.ext.util.IdentityHashMap$Entry[]
      StackMap stack:
            aload 2 /* tab */
            iconst_0
            aaload
            astore 3 /* e */
        start local 3 // freemarker.ext.util.IdentityHashMap$Entry e
        20: aconst_null
            astore 4 /* prev */
        start local 4 // freemarker.ext.util.IdentityHashMap$Entry prev
        21: .line 351
            goto 32
        22: .line 353
      StackMap locals: freemarker.ext.util.IdentityHashMap$Entry freemarker.ext.util.IdentityHashMap$Entry
      StackMap stack:
            aload 3 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.key:Ljava/lang/Object;
            ifnonnull 31
        23: .line 354
            aload 0 /* this */
            dup
            getfield freemarker.ext.util.IdentityHashMap.modCount:I
            iconst_1
            iadd
            putfield freemarker.ext.util.IdentityHashMap.modCount:I
        24: .line 355
            aload 4 /* prev */
            ifnull 26
        25: .line 356
            aload 4 /* prev */
            aload 3 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
            putfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
            goto 27
        26: .line 358
      StackMap locals:
      StackMap stack:
            aload 2 /* tab */
            iconst_0
            aload 3 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
            aastore
        27: .line 360
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield freemarker.ext.util.IdentityHashMap.count:I
            iconst_1
            isub
            putfield freemarker.ext.util.IdentityHashMap.count:I
        28: .line 361
            aload 3 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.value:Ljava/lang/Object;
            astore 5 /* oldValue */
        start local 5 // java.lang.Object oldValue
        29: .line 362
            aload 3 /* e */
            aconst_null
            putfield freemarker.ext.util.IdentityHashMap$Entry.value:Ljava/lang/Object;
        30: .line 363
            aload 5 /* oldValue */
            areturn
        end local 5 // java.lang.Object oldValue
        31: .line 352
      StackMap locals:
      StackMap stack:
            aload 3 /* e */
            astore 4 /* prev */
            aload 3 /* e */
            getfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 3 /* e */
        32: .line 351
      StackMap locals:
      StackMap stack:
            aload 3 /* e */
            ifnonnull 22
        end local 4 // freemarker.ext.util.IdentityHashMap$Entry prev
        end local 3 // freemarker.ext.util.IdentityHashMap$Entry e
        33: .line 368
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 2 // freemarker.ext.util.IdentityHashMap$Entry[] tab
        end local 1 // java.lang.Object key
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   34     0      this  Lfreemarker/ext/util/IdentityHashMap;
            0   34     1       key  Ljava/lang/Object;
            1   34     2       tab  [Lfreemarker/ext/util/IdentityHashMap$Entry;
            3   18     3      hash  I
            4   18     4     index  I
            5   18     5         e  Lfreemarker/ext/util/IdentityHashMap$Entry;
            6   18     6      prev  Lfreemarker/ext/util/IdentityHashMap$Entry;
           14   16     7  oldValue  Ljava/lang/Object;
           20   33     3         e  Lfreemarker/ext/util/IdentityHashMap$Entry;
           21   33     4      prev  Lfreemarker/ext/util/IdentityHashMap$Entry;
           29   31     5  oldValue  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      key   

  public void putAll(java.util.Map);
    descriptor: (Ljava/util/Map;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // freemarker.ext.util.IdentityHashMap this
        start local 1 // java.util.Map t
         0: .line 381
            aload 1 /* t */
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 2 /* i */
        start local 2 // java.util.Iterator i
         1: .line 382
            goto 4
         2: .line 383
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 2 /* i */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 3 /* e */
        start local 3 // java.util.Map$Entry e
         3: .line 384
            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 freemarker.ext.util.IdentityHashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 3 // java.util.Map$Entry e
         4: .line 382
      StackMap locals:
      StackMap stack:
            aload 2 /* i */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         5: .line 386
            return
        end local 2 // java.util.Iterator i
        end local 1 // java.util.Map t
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lfreemarker/ext/util/IdentityHashMap;
            0    6     1     t  Ljava/util/Map;
            1    6     2     i  Ljava/util/Iterator;
            3    4     3     e  Ljava/util/Map$Entry;
    MethodParameters:
      Name  Flags
      t     

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // freemarker.ext.util.IdentityHashMap this
         0: .line 393
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 1 /* tab */
        start local 1 // freemarker.ext.util.IdentityHashMap$Entry[] tab
         1: .line 394
            aload 0 /* this */
            dup
            getfield freemarker.ext.util.IdentityHashMap.modCount:I
            iconst_1
            iadd
            putfield freemarker.ext.util.IdentityHashMap.modCount:I
         2: .line 395
            aload 1 /* tab */
            arraylength
            istore 2 /* index */
        start local 2 // int index
         3: goto 5
         4: .line 396
      StackMap locals: freemarker.ext.util.IdentityHashMap$Entry[] int
      StackMap stack:
            aload 1 /* tab */
            iload 2 /* index */
            aconst_null
            aastore
         5: .line 395
      StackMap locals:
      StackMap stack:
            iinc 2 /* index */ -1
            iload 2 /* index */
            ifge 4
        end local 2 // int index
         6: .line 397
            aload 0 /* this */
            iconst_0
            putfield freemarker.ext.util.IdentityHashMap.count:I
         7: .line 398
            return
        end local 1 // freemarker.ext.util.IdentityHashMap$Entry[] tab
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lfreemarker/ext/util/IdentityHashMap;
            1    8     1    tab  [Lfreemarker/ext/util/IdentityHashMap$Entry;
            3    6     2  index  I

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // freemarker.ext.util.IdentityHashMap this
         0: .line 409
            aload 0 /* this */
            invokespecial java.util.AbstractMap.clone:()Ljava/lang/Object;
            checkcast freemarker.ext.util.IdentityHashMap
            astore 1 /* t */
        start local 1 // freemarker.ext.util.IdentityHashMap t
         1: .line 410
            aload 1 /* t */
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
            arraylength
            anewarray freemarker.ext.util.IdentityHashMap$Entry
            putfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
         2: .line 411
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
            arraylength
            istore 2 /* i */
        start local 2 // int i
         3: goto 8
         4: .line 412
      StackMap locals: freemarker.ext.util.IdentityHashMap int
      StackMap stack:
            aload 1 /* t */
            getfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
            iload 2 /* i */
         5: .line 413
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
            iload 2 /* i */
            aaload
            ifnull 6
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
            iload 2 /* i */
            aaload
            invokevirtual freemarker.ext.util.IdentityHashMap$Entry.clone:()Ljava/lang/Object;
            checkcast freemarker.ext.util.IdentityHashMap$Entry
            goto 7
      StackMap locals: freemarker.ext.util.IdentityHashMap freemarker.ext.util.IdentityHashMap int
      StackMap stack: freemarker.ext.util.IdentityHashMap$Entry[] int
         6: aconst_null
         7: .line 412
      StackMap locals: freemarker.ext.util.IdentityHashMap freemarker.ext.util.IdentityHashMap int
      StackMap stack: freemarker.ext.util.IdentityHashMap$Entry[] int freemarker.ext.util.IdentityHashMap$Entry
            aastore
         8: .line 411
      StackMap locals:
      StackMap stack:
            iload 2 /* i */
            iinc 2 /* i */ -1
            ifgt 4
        end local 2 // int i
         9: .line 415
            aload 1 /* t */
            aconst_null
            putfield freemarker.ext.util.IdentityHashMap.keySet:Ljava/util/Set;
        10: .line 416
            aload 1 /* t */
            aconst_null
            putfield freemarker.ext.util.IdentityHashMap.entrySet:Ljava/util/Set;
        11: .line 417
            aload 1 /* t */
            aconst_null
            putfield freemarker.ext.util.IdentityHashMap.values:Ljava/util/Collection;
        12: .line 418
            aload 1 /* t */
            iconst_0
            putfield freemarker.ext.util.IdentityHashMap.modCount:I
        13: .line 419
            aload 1 /* t */
        14: areturn
        end local 1 // freemarker.ext.util.IdentityHashMap t
        15: .line 420
      StackMap locals: freemarker.ext.util.IdentityHashMap
      StackMap stack: java.lang.CloneNotSupportedException
            pop
        16: .line 422
            new java.lang.InternalError
            dup
            invokespecial java.lang.InternalError.<init>:()V
            athrow
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   17     0  this  Lfreemarker/ext/util/IdentityHashMap;
            1   15     1     t  Lfreemarker/ext/util/IdentityHashMap;
            3    9     2     i  I
      Exception table:
        from    to  target  type
           0    14      15  Class java.lang.CloneNotSupportedException

  public java.util.Set keySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // freemarker.ext.util.IdentityHashMap this
         0: .line 445
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.keySet:Ljava/util/Set;
            ifnonnull 2
         1: .line 446
            aload 0 /* this */
            new freemarker.ext.util.IdentityHashMap$1
            dup
            aload 0 /* this */
            invokespecial freemarker.ext.util.IdentityHashMap$1.<init>:(Lfreemarker/ext/util/IdentityHashMap;)V
            putfield freemarker.ext.util.IdentityHashMap.keySet:Ljava/util/Set;
         2: .line 472
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.keySet:Ljava/util/Set;
            areturn
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lfreemarker/ext/util/IdentityHashMap;

  public java.util.Collection values();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // freemarker.ext.util.IdentityHashMap this
         0: .line 488
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.values:Ljava/util/Collection;
            ifnonnull 2
         1: .line 489
            aload 0 /* this */
            new freemarker.ext.util.IdentityHashMap$2
            dup
            aload 0 /* this */
            invokespecial freemarker.ext.util.IdentityHashMap$2.<init>:(Lfreemarker/ext/util/IdentityHashMap;)V
            putfield freemarker.ext.util.IdentityHashMap.values:Ljava/util/Collection;
         2: .line 509
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.values:Ljava/util/Collection;
            areturn
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lfreemarker/ext/util/IdentityHashMap;

  public java.util.Set entrySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // freemarker.ext.util.IdentityHashMap this
         0: .line 527
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.entrySet:Ljava/util/Set;
            ifnonnull 2
         1: .line 528
            aload 0 /* this */
            new freemarker.ext.util.IdentityHashMap$3
            dup
            aload 0 /* this */
            invokespecial freemarker.ext.util.IdentityHashMap$3.<init>:(Lfreemarker/ext/util/IdentityHashMap;)V
            putfield freemarker.ext.util.IdentityHashMap.entrySet:Ljava/util/Set;
         2: .line 591
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.entrySet:Ljava/util/Set;
            areturn
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lfreemarker/ext/util/IdentityHashMap;

  private java.util.Iterator getHashIterator(int);
    descriptor: (I)Ljava/util/Iterator;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // freemarker.ext.util.IdentityHashMap this
        start local 1 // int type
         0: .line 595
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.count:I
            ifne 2
         1: .line 596
            getstatic freemarker.ext.util.IdentityHashMap.emptyHashIterator:Lfreemarker/ext/util/IdentityHashMap$EmptyHashIterator;
            areturn
         2: .line 598
      StackMap locals:
      StackMap stack:
            new freemarker.ext.util.IdentityHashMap$HashIterator
            dup
            aload 0 /* this */
            iload 1 /* type */
            invokespecial freemarker.ext.util.IdentityHashMap$HashIterator.<init>:(Lfreemarker/ext/util/IdentityHashMap;I)V
            areturn
        end local 1 // int type
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lfreemarker/ext/util/IdentityHashMap;
            0    3     1  type  I
    MethodParameters:
      Name  Flags
      type  

  private void writeObject(java.io.ObjectOutputStream);
    descriptor: (Ljava/io/ObjectOutputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // freemarker.ext.util.IdentityHashMap this
        start local 1 // java.io.ObjectOutputStream s
         0: .line 788
            aload 1 /* s */
            invokevirtual java.io.ObjectOutputStream.defaultWriteObject:()V
         1: .line 791
            aload 1 /* s */
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
            arraylength
            invokevirtual java.io.ObjectOutputStream.writeInt:(I)V
         2: .line 794
            aload 1 /* s */
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.count:I
            invokevirtual java.io.ObjectOutputStream.writeInt:(I)V
         3: .line 797
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
            arraylength
            iconst_1
            isub
            istore 2 /* index */
        start local 2 // int index
         4: goto 12
         5: .line 798
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
            iload 2 /* index */
            aaload
            astore 3 /* entry */
        start local 3 // freemarker.ext.util.IdentityHashMap$Entry entry
         6: .line 800
            goto 10
         7: .line 801
      StackMap locals: freemarker.ext.util.IdentityHashMap$Entry
      StackMap stack:
            aload 1 /* s */
            aload 3 /* entry */
            getfield freemarker.ext.util.IdentityHashMap$Entry.key:Ljava/lang/Object;
            invokevirtual java.io.ObjectOutputStream.writeObject:(Ljava/lang/Object;)V
         8: .line 802
            aload 1 /* s */
            aload 3 /* entry */
            getfield freemarker.ext.util.IdentityHashMap$Entry.value:Ljava/lang/Object;
            invokevirtual java.io.ObjectOutputStream.writeObject:(Ljava/lang/Object;)V
         9: .line 803
            aload 3 /* entry */
            getfield freemarker.ext.util.IdentityHashMap$Entry.next:Lfreemarker/ext/util/IdentityHashMap$Entry;
            astore 3 /* entry */
        10: .line 800
      StackMap locals:
      StackMap stack:
            aload 3 /* entry */
            ifnonnull 7
        end local 3 // freemarker.ext.util.IdentityHashMap$Entry entry
        11: .line 797
            iinc 2 /* index */ -1
      StackMap locals:
      StackMap stack:
        12: iload 2 /* index */
            ifge 5
        end local 2 // int index
        13: .line 806
            return
        end local 1 // java.io.ObjectOutputStream s
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   14     0   this  Lfreemarker/ext/util/IdentityHashMap;
            0   14     1      s  Ljava/io/ObjectOutputStream;
            4   13     2  index  I
            6   11     3  entry  Lfreemarker/ext/util/IdentityHashMap$Entry;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      s     

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // freemarker.ext.util.IdentityHashMap this
        start local 1 // java.io.ObjectInputStream s
         0: .line 815
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.defaultReadObject:()V
         1: .line 818
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.readInt:()I
            istore 2 /* numBuckets */
        start local 2 // int numBuckets
         2: .line 819
            aload 0 /* this */
            iload 2 /* numBuckets */
            anewarray freemarker.ext.util.IdentityHashMap$Entry
            putfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
         3: .line 822
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.readInt:()I
            istore 3 /* size */
        start local 3 // int size
         4: .line 825
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         5: goto 10
         6: .line 826
      StackMap locals: int int int
      StackMap stack:
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.readObject:()Ljava/lang/Object;
            astore 5 /* key */
        start local 5 // java.lang.Object key
         7: .line 827
            aload 1 /* s */
            invokevirtual java.io.ObjectInputStream.readObject:()Ljava/lang/Object;
            astore 6 /* value */
        start local 6 // java.lang.Object value
         8: .line 828
            aload 0 /* this */
            aload 5 /* key */
            aload 6 /* value */
            invokevirtual freemarker.ext.util.IdentityHashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 6 // java.lang.Object value
        end local 5 // java.lang.Object key
         9: .line 825
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 4 /* i */
            iload 3 /* size */
            if_icmplt 6
        end local 4 // int i
        11: .line 830
            return
        end local 3 // int size
        end local 2 // int numBuckets
        end local 1 // java.io.ObjectInputStream s
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   12     0        this  Lfreemarker/ext/util/IdentityHashMap;
            0   12     1           s  Ljava/io/ObjectInputStream;
            2   12     2  numBuckets  I
            4   12     3        size  I
            5   11     4           i  I
            7    9     5         key  Ljava/lang/Object;
            8    9     6       value  Ljava/lang/Object;
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      s     

  int capacity();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // freemarker.ext.util.IdentityHashMap this
         0: .line 833
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.table:[Lfreemarker/ext/util/IdentityHashMap$Entry;
            arraylength
            ireturn
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lfreemarker/ext/util/IdentityHashMap;

  float loadFactor();
    descriptor: ()F
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // freemarker.ext.util.IdentityHashMap this
         0: .line 837
            aload 0 /* this */
            getfield freemarker.ext.util.IdentityHashMap.loadFactor:F
            freturn
        end local 0 // freemarker.ext.util.IdentityHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lfreemarker/ext/util/IdentityHashMap;
}
SourceFile: "IdentityHashMap.java"
NestMembers:
  freemarker.ext.util.IdentityHashMap$1  freemarker.ext.util.IdentityHashMap$2  freemarker.ext.util.IdentityHashMap$3  freemarker.ext.util.IdentityHashMap$EmptyHashIterator  freemarker.ext.util.IdentityHashMap$Entry  freemarker.ext.util.IdentityHashMap$HashIterator
InnerClasses:
  freemarker.ext.util.IdentityHashMap$1
  freemarker.ext.util.IdentityHashMap$2
  freemarker.ext.util.IdentityHashMap$3
  private EmptyHashIterator = freemarker.ext.util.IdentityHashMap$EmptyHashIterator of freemarker.ext.util.IdentityHashMap
  private Entry = freemarker.ext.util.IdentityHashMap$Entry of freemarker.ext.util.IdentityHashMap
  private HashIterator = freemarker.ext.util.IdentityHashMap$HashIterator of freemarker.ext.util.IdentityHashMap
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()