public class org.apache.commons.math3.util.OpenIntToFieldHashMap<T extends org.apache.commons.math3.FieldElement<T>> implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.commons.math3.util.OpenIntToFieldHashMap
  super_class: java.lang.Object
{
  protected static final byte FREE;
    descriptor: B
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 0

  protected static final byte FULL;
    descriptor: B
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  protected static final byte REMOVED;
    descriptor: B
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: -9179080286849120720

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

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

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

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

  private final org.apache.commons.math3.Field<T> field;
    descriptor: Lorg/apache/commons/math3/Field;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/apache/commons/math3/Field<TT;>;

  private int[] keys;
    descriptor: [I
    flags: (0x0002) ACC_PRIVATE

  private T[] values;
    descriptor: [Lorg/apache/commons/math3/FieldElement;
    flags: (0x0002) ACC_PRIVATE
    Signature: [TT;

  private byte[] states;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private final T missingEntries;
    descriptor: Lorg/apache/commons/math3/FieldElement;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: TT;

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

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

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

  public void <init>(org.apache.commons.math3.Field<T>);
    descriptor: (Lorg/apache/commons/math3/Field;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
        start local 1 // org.apache.commons.math3.Field field
         0: .line 99
            aload 0 /* this */
            aload 1 /* field */
            bipush 16
            aload 1 /* field */
            invokeinterface org.apache.commons.math3.Field.getZero:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.FieldElement
            invokespecial org.apache.commons.math3.util.OpenIntToFieldHashMap.<init>:(Lorg/apache/commons/math3/Field;ILorg/apache/commons/math3/FieldElement;)V
         1: .line 100
            return
        end local 1 // org.apache.commons.math3.Field field
        end local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;
            0    2     1  field  Lorg/apache/commons/math3/Field<TT;>;
    Signature: (Lorg/apache/commons/math3/Field<TT;>;)V
    MethodParameters:
       Name  Flags
      field  final

  public void <init>(org.apache.commons.math3.Field<T>, );
    descriptor: (Lorg/apache/commons/math3/Field;Lorg/apache/commons/math3/FieldElement;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
        start local 1 // org.apache.commons.math3.Field field
        start local 2 // org.apache.commons.math3.FieldElement missingEntries
         0: .line 108
            aload 0 /* this */
            aload 1 /* field */
            bipush 16
            aload 2 /* missingEntries */
            invokespecial org.apache.commons.math3.util.OpenIntToFieldHashMap.<init>:(Lorg/apache/commons/math3/Field;ILorg/apache/commons/math3/FieldElement;)V
         1: .line 109
            return
        end local 2 // org.apache.commons.math3.FieldElement missingEntries
        end local 1 // org.apache.commons.math3.Field field
        end local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;
            0    2     1           field  Lorg/apache/commons/math3/Field<TT;>;
            0    2     2  missingEntries  TT;
    Signature: (Lorg/apache/commons/math3/Field<TT;>;TT;)V
    MethodParameters:
                Name  Flags
      field           final
      missingEntries  final

  public void <init>(org.apache.commons.math3.Field<T>, );
    descriptor: (Lorg/apache/commons/math3/Field;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
        start local 1 // org.apache.commons.math3.Field field
        start local 2 // int expectedSize
         0: .line 117
            aload 0 /* this */
            aload 1 /* field */
            iload 2 /* expectedSize */
            aload 1 /* field */
            invokeinterface org.apache.commons.math3.Field.getZero:()Ljava/lang/Object;
            checkcast org.apache.commons.math3.FieldElement
            invokespecial org.apache.commons.math3.util.OpenIntToFieldHashMap.<init>:(Lorg/apache/commons/math3/Field;ILorg/apache/commons/math3/FieldElement;)V
         1: .line 118
            return
        end local 2 // int expectedSize
        end local 1 // org.apache.commons.math3.Field field
        end local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    2     0          this  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;
            0    2     1         field  Lorg/apache/commons/math3/Field<TT;>;
            0    2     2  expectedSize  I
    Signature: (Lorg/apache/commons/math3/Field<TT;>;I)V
    MethodParameters:
              Name  Flags
      field         final
      expectedSize  final

  public void <init>(org.apache.commons.math3.Field<T>, int, );
    descriptor: (Lorg/apache/commons/math3/Field;ILorg/apache/commons/math3/FieldElement;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
        start local 1 // org.apache.commons.math3.Field field
        start local 2 // int expectedSize
        start local 3 // org.apache.commons.math3.FieldElement missingEntries
         0: .line 126
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 128
            aload 0 /* this */
            aload 1 /* field */
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.field:Lorg/apache/commons/math3/Field;
         2: .line 129
            iload 2 /* expectedSize */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.computeCapacity:(I)I
            istore 4 /* capacity */
        start local 4 // int capacity
         3: .line 130
            aload 0 /* this */
            iload 4 /* capacity */
            newarray 10
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.keys:[I
         4: .line 131
            aload 0 /* this */
            aload 0 /* this */
            iload 4 /* capacity */
            invokevirtual org.apache.commons.math3.util.OpenIntToFieldHashMap.buildArray:(I)[Lorg/apache/commons/math3/FieldElement;
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.values:[Lorg/apache/commons/math3/FieldElement;
         5: .line 132
            aload 0 /* this */
            iload 4 /* capacity */
            newarray 8
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.states:[B
         6: .line 133
            aload 0 /* this */
            aload 3 /* missingEntries */
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.missingEntries:Lorg/apache/commons/math3/FieldElement;
         7: .line 134
            aload 0 /* this */
            iload 4 /* capacity */
            iconst_1
            isub
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.mask:I
         8: .line 135
            return
        end local 4 // int capacity
        end local 3 // org.apache.commons.math3.FieldElement missingEntries
        end local 2 // int expectedSize
        end local 1 // org.apache.commons.math3.Field field
        end local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    9     0            this  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;
            0    9     1           field  Lorg/apache/commons/math3/Field<TT;>;
            0    9     2    expectedSize  I
            0    9     3  missingEntries  TT;
            3    9     4        capacity  I
    Signature: (Lorg/apache/commons/math3/Field<TT;>;ITT;)V
    MethodParameters:
                Name  Flags
      field           final
      expectedSize    final
      missingEntries  final

  public void <init>(org.apache.commons.math3.util.OpenIntToFieldHashMap<T>);
    descriptor: (Lorg/apache/commons/math3/util/OpenIntToFieldHashMap;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
        start local 1 // org.apache.commons.math3.util.OpenIntToFieldHashMap source
         0: .line 141
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 142
            aload 0 /* this */
            aload 1 /* source */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.field:Lorg/apache/commons/math3/Field;
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.field:Lorg/apache/commons/math3/Field;
         2: .line 143
            aload 1 /* source */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.keys:[I
            arraylength
            istore 2 /* length */
        start local 2 // int length
         3: .line 144
            aload 0 /* this */
            iload 2 /* length */
            newarray 10
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.keys:[I
         4: .line 145
            aload 1 /* source */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.keys:[I
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.keys:[I
            iconst_0
            iload 2 /* length */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 146
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* length */
            invokevirtual org.apache.commons.math3.util.OpenIntToFieldHashMap.buildArray:(I)[Lorg/apache/commons/math3/FieldElement;
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.values:[Lorg/apache/commons/math3/FieldElement;
         6: .line 147
            aload 1 /* source */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.values:[Lorg/apache/commons/math3/FieldElement;
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.values:[Lorg/apache/commons/math3/FieldElement;
            iconst_0
            iload 2 /* length */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 148
            aload 0 /* this */
            iload 2 /* length */
            newarray 8
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.states:[B
         8: .line 149
            aload 1 /* source */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.states:[B
            iconst_0
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.states:[B
            iconst_0
            iload 2 /* length */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 150
            aload 0 /* this */
            aload 1 /* source */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.missingEntries:Lorg/apache/commons/math3/FieldElement;
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.missingEntries:Lorg/apache/commons/math3/FieldElement;
        10: .line 151
            aload 0 /* this */
            aload 1 /* source */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.size:I
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.size:I
        11: .line 152
            aload 0 /* this */
            aload 1 /* source */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.mask:I
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.mask:I
        12: .line 153
            aload 0 /* this */
            aload 1 /* source */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.count:I
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.count:I
        13: .line 154
            return
        end local 2 // int length
        end local 1 // org.apache.commons.math3.util.OpenIntToFieldHashMap source
        end local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   14     0    this  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;
            0   14     1  source  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;
            3   14     2  length  I
    Signature: (Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;)V
    MethodParameters:
        Name  Flags
      source  final

  private static int computeCapacity(int);
    descriptor: (I)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=3, args_size=1
        start local 0 // int expectedSize
         0: .line 162
            iload 0 /* expectedSize */
            ifne 2
         1: .line 163
            iconst_1
            ireturn
         2: .line 165
      StackMap locals:
      StackMap stack:
            iload 0 /* expectedSize */
            i2f
            ldc 0.5
            fdiv
            f2d
            invokestatic org.apache.commons.math3.util.FastMath.ceil:(D)D
            d2i
            istore 1 /* capacity */
        start local 1 // int capacity
         3: .line 166
            iload 1 /* capacity */
            invokestatic java.lang.Integer.highestOneBit:(I)I
            istore 2 /* powerOfTwo */
        start local 2 // int powerOfTwo
         4: .line 167
            iload 2 /* powerOfTwo */
            iload 1 /* capacity */
            if_icmpne 6
         5: .line 168
            iload 1 /* capacity */
            ireturn
         6: .line 170
      StackMap locals: int int
      StackMap stack:
            iload 1 /* capacity */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.nextPowerOfTwo:(I)I
            ireturn
        end local 2 // int powerOfTwo
        end local 1 // int capacity
        end local 0 // int expectedSize
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    7     0  expectedSize  I
            3    7     1      capacity  I
            4    7     2    powerOfTwo  I
    MethodParameters:
              Name  Flags
      expectedSize  final

  private static int nextPowerOfTwo(int);
    descriptor: (I)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int i
         0: .line 179
            iload 0 /* i */
            invokestatic java.lang.Integer.highestOneBit:(I)I
            iconst_1
            ishl
            ireturn
        end local 0 // int i
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0     i  I
    MethodParameters:
      Name  Flags
      i     final

  public T get();
    descriptor: (I)Lorg/apache/commons/math3/FieldElement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
        start local 1 // int key
         0: .line 189
            iload 1 /* key */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.hashOf:(I)I
            istore 2 /* hash */
        start local 2 // int hash
         1: .line 190
            iload 2 /* hash */
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.mask:I
            iand
            istore 3 /* index */
        start local 3 // int index
         2: .line 191
            aload 0 /* this */
            iload 1 /* key */
            iload 3 /* index */
            invokevirtual org.apache.commons.math3.util.OpenIntToFieldHashMap.containsKey:(II)Z
            ifeq 4
         3: .line 192
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.values:[Lorg/apache/commons/math3/FieldElement;
            iload 3 /* index */
            aaload
            areturn
         4: .line 195
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.states:[B
            iload 3 /* index */
            baload
            ifne 6
         5: .line 196
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.missingEntries:Lorg/apache/commons/math3/FieldElement;
            areturn
         6: .line 199
      StackMap locals:
      StackMap stack:
            iload 3 /* index */
            istore 4 /* j */
        start local 4 // int j
         7: .line 200
            iload 2 /* hash */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.perturb:(I)I
            istore 5 /* perturb */
        start local 5 // int perturb
         8: goto 14
         9: .line 201
      StackMap locals: int int
      StackMap stack:
            iload 5 /* perturb */
            iload 4 /* j */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.probe:(II)I
            istore 4 /* j */
        10: .line 202
            iload 4 /* j */
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.mask:I
            iand
            istore 3 /* index */
        11: .line 203
            aload 0 /* this */
            iload 1 /* key */
            iload 3 /* index */
            invokevirtual org.apache.commons.math3.util.OpenIntToFieldHashMap.containsKey:(II)Z
            ifeq 13
        12: .line 204
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.values:[Lorg/apache/commons/math3/FieldElement;
            iload 3 /* index */
            aaload
            areturn
        13: .line 200
      StackMap locals:
      StackMap stack:
            iload 5 /* perturb */
            iconst_5
            ishr
            istore 5 /* perturb */
      StackMap locals:
      StackMap stack:
        14: aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.states:[B
            iload 3 /* index */
            baload
            ifne 9
        end local 5 // int perturb
        15: .line 208
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.missingEntries:Lorg/apache/commons/math3/FieldElement;
            areturn
        end local 4 // int j
        end local 3 // int index
        end local 2 // int hash
        end local 1 // int key
        end local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   16     0     this  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;
            0   16     1      key  I
            1   16     2     hash  I
            2   16     3    index  I
            7   16     4        j  I
            8   15     5  perturb  I
    Signature: (I)TT;
    MethodParameters:
      Name  Flags
      key   final

  public boolean containsKey(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
        start local 1 // int key
         0: .line 219
            iload 1 /* key */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.hashOf:(I)I
            istore 2 /* hash */
        start local 2 // int hash
         1: .line 220
            iload 2 /* hash */
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.mask:I
            iand
            istore 3 /* index */
        start local 3 // int index
         2: .line 221
            aload 0 /* this */
            iload 1 /* key */
            iload 3 /* index */
            invokevirtual org.apache.commons.math3.util.OpenIntToFieldHashMap.containsKey:(II)Z
            ifeq 4
         3: .line 222
            iconst_1
            ireturn
         4: .line 225
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.states:[B
            iload 3 /* index */
            baload
            ifne 6
         5: .line 226
            iconst_0
            ireturn
         6: .line 229
      StackMap locals:
      StackMap stack:
            iload 3 /* index */
            istore 4 /* j */
        start local 4 // int j
         7: .line 230
            iload 2 /* hash */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.perturb:(I)I
            istore 5 /* perturb */
        start local 5 // int perturb
         8: goto 14
         9: .line 231
      StackMap locals: int int
      StackMap stack:
            iload 5 /* perturb */
            iload 4 /* j */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.probe:(II)I
            istore 4 /* j */
        10: .line 232
            iload 4 /* j */
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.mask:I
            iand
            istore 3 /* index */
        11: .line 233
            aload 0 /* this */
            iload 1 /* key */
            iload 3 /* index */
            invokevirtual org.apache.commons.math3.util.OpenIntToFieldHashMap.containsKey:(II)Z
            ifeq 13
        12: .line 234
            iconst_1
            ireturn
        13: .line 230
      StackMap locals:
      StackMap stack:
            iload 5 /* perturb */
            iconst_5
            ishr
            istore 5 /* perturb */
      StackMap locals:
      StackMap stack:
        14: aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.states:[B
            iload 3 /* index */
            baload
            ifne 9
        end local 5 // int perturb
        15: .line 238
            iconst_0
            ireturn
        end local 4 // int j
        end local 3 // int index
        end local 2 // int hash
        end local 1 // int key
        end local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   16     0     this  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;
            0   16     1      key  I
            1   16     2     hash  I
            2   16     3    index  I
            7   16     4        j  I
            8   15     5  perturb  I
    MethodParameters:
      Name  Flags
      key   final

  public org.apache.commons.math3.util.OpenIntToFieldHashMap<T>.Iterator iterator();
    descriptor: ()Lorg/apache/commons/math3/util/OpenIntToFieldHashMap$Iterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
         0: .line 250
            new org.apache.commons.math3.util.OpenIntToFieldHashMap$Iterator
            dup
            aload 0 /* this */
            invokespecial org.apache.commons.math3.util.OpenIntToFieldHashMap$Iterator.<init>:(Lorg/apache/commons/math3/util/OpenIntToFieldHashMap;)V
            areturn
        end local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;
    Signature: ()Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>.Iterator;

  private static int perturb(int);
    descriptor: (I)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int hash
         0: .line 259
            iload 0 /* hash */
            ldc 2147483647
            iand
            ireturn
        end local 0 // int hash
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  hash  I
    MethodParameters:
      Name  Flags
      hash  final

  private int findInsertionIndex(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
        start local 1 // int key
         0: .line 268
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.keys:[I
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.states:[B
            iload 1 /* key */
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.mask:I
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.findInsertionIndex:([I[BII)I
            ireturn
        end local 1 // int key
        end local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;
            0    1     1   key  I
    MethodParameters:
      Name  Flags
      key   final

  private static int findInsertionIndex(int[], byte[], int, int);
    descriptor: ([I[BII)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=9, args_size=4
        start local 0 // int[] keys
        start local 1 // byte[] states
        start local 2 // int key
        start local 3 // int mask
         0: .line 281
            iload 2 /* key */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.hashOf:(I)I
            istore 4 /* hash */
        start local 4 // int hash
         1: .line 282
            iload 4 /* hash */
            iload 3 /* mask */
            iand
            istore 5 /* index */
        start local 5 // int index
         2: .line 283
            aload 1 /* states */
            iload 5 /* index */
            baload
            ifne 4
         3: .line 284
            iload 5 /* index */
            ireturn
         4: .line 285
      StackMap locals: int int
      StackMap stack:
            aload 1 /* states */
            iload 5 /* index */
            baload
            iconst_1
            if_icmpne 6
            aload 0 /* keys */
            iload 5 /* index */
            iaload
            iload 2 /* key */
            if_icmpne 6
         5: .line 286
            iload 5 /* index */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.changeIndexSign:(I)I
            ireturn
         6: .line 289
      StackMap locals:
      StackMap stack:
            iload 4 /* hash */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.perturb:(I)I
            istore 6 /* perturb */
        start local 6 // int perturb
         7: .line 290
            iload 5 /* index */
            istore 7 /* j */
        start local 7 // int j
         8: .line 291
            aload 1 /* states */
            iload 5 /* index */
            baload
            iconst_1
            if_icmpne 13
         9: .line 293
      StackMap locals: int int
      StackMap stack:
            iload 6 /* perturb */
            iload 7 /* j */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.probe:(II)I
            istore 7 /* j */
        10: .line 294
            iload 7 /* j */
            iload 3 /* mask */
            iand
            istore 5 /* index */
        11: .line 295
            iload 6 /* perturb */
            iconst_5
            ishr
            istore 6 /* perturb */
        12: .line 297
            aload 1 /* states */
            iload 5 /* index */
            baload
            iconst_1
            if_icmpne 13
            aload 0 /* keys */
            iload 5 /* index */
            iaload
            iload 2 /* key */
            if_icmpne 9
        13: .line 303
      StackMap locals:
      StackMap stack:
            aload 1 /* states */
            iload 5 /* index */
            baload
            ifne 15
        14: .line 304
            iload 5 /* index */
            ireturn
        15: .line 305
      StackMap locals:
      StackMap stack:
            aload 1 /* states */
            iload 5 /* index */
            baload
            iconst_1
            if_icmpne 17
        16: .line 308
            iload 5 /* index */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.changeIndexSign:(I)I
            ireturn
        17: .line 311
      StackMap locals:
      StackMap stack:
            iload 5 /* index */
            istore 8 /* firstRemoved */
        start local 8 // int firstRemoved
        18: .line 313
      StackMap locals: int
      StackMap stack:
            iload 6 /* perturb */
            iload 7 /* j */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.probe:(II)I
            istore 7 /* j */
        19: .line 314
            iload 7 /* j */
            iload 3 /* mask */
            iand
            istore 5 /* index */
        20: .line 316
            aload 1 /* states */
            iload 5 /* index */
            baload
            ifne 22
        21: .line 317
            iload 8 /* firstRemoved */
            ireturn
        22: .line 318
      StackMap locals:
      StackMap stack:
            aload 1 /* states */
            iload 5 /* index */
            baload
            iconst_1
            if_icmpne 24
            aload 0 /* keys */
            iload 5 /* index */
            iaload
            iload 2 /* key */
            if_icmpne 24
        23: .line 319
            iload 5 /* index */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.changeIndexSign:(I)I
            ireturn
        24: .line 322
      StackMap locals:
      StackMap stack:
            iload 6 /* perturb */
            iconst_5
            ishr
            istore 6 /* perturb */
        25: .line 312
            goto 18
        end local 8 // int firstRemoved
        end local 7 // int j
        end local 6 // int perturb
        end local 5 // int index
        end local 4 // int hash
        end local 3 // int mask
        end local 2 // int key
        end local 1 // byte[] states
        end local 0 // int[] keys
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   26     0          keys  [I
            0   26     1        states  [B
            0   26     2           key  I
            0   26     3          mask  I
            1   26     4          hash  I
            2   26     5         index  I
            7   26     6       perturb  I
            8   26     7             j  I
           18   26     8  firstRemoved  I
    MethodParameters:
        Name  Flags
      keys    final
      states  final
      key     final
      mask    final

  private static int probe(int, int);
    descriptor: (II)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // int perturb
        start local 1 // int j
         0: .line 335
            iload 1 /* j */
            iconst_2
            ishl
            iload 1 /* j */
            iadd
            iload 0 /* perturb */
            iadd
            iconst_1
            iadd
            ireturn
        end local 1 // int j
        end local 0 // int perturb
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0  perturb  I
            0    1     1        j  I
    MethodParameters:
         Name  Flags
      perturb  final
      j        final

  private static int changeIndexSign(int);
    descriptor: (I)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // int index
         0: .line 344
            iload 0 /* index */
            ineg
            iconst_1
            isub
            ireturn
        end local 0 // int index
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0  index  I
    MethodParameters:
       Name  Flags
      index  final

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
         0: .line 352
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.size:I
            ireturn
        end local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;

  public T remove();
    descriptor: (I)Lorg/apache/commons/math3/FieldElement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
        start local 1 // int key
         0: .line 363
            iload 1 /* key */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.hashOf:(I)I
            istore 2 /* hash */
        start local 2 // int hash
         1: .line 364
            iload 2 /* hash */
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.mask:I
            iand
            istore 3 /* index */
        start local 3 // int index
         2: .line 365
            aload 0 /* this */
            iload 1 /* key */
            iload 3 /* index */
            invokevirtual org.apache.commons.math3.util.OpenIntToFieldHashMap.containsKey:(II)Z
            ifeq 4
         3: .line 366
            aload 0 /* this */
            iload 3 /* index */
            invokevirtual org.apache.commons.math3.util.OpenIntToFieldHashMap.doRemove:(I)Lorg/apache/commons/math3/FieldElement;
            areturn
         4: .line 369
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.states:[B
            iload 3 /* index */
            baload
            ifne 6
         5: .line 370
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.missingEntries:Lorg/apache/commons/math3/FieldElement;
            areturn
         6: .line 373
      StackMap locals:
      StackMap stack:
            iload 3 /* index */
            istore 4 /* j */
        start local 4 // int j
         7: .line 374
            iload 2 /* hash */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.perturb:(I)I
            istore 5 /* perturb */
        start local 5 // int perturb
         8: goto 14
         9: .line 375
      StackMap locals: int int
      StackMap stack:
            iload 5 /* perturb */
            iload 4 /* j */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.probe:(II)I
            istore 4 /* j */
        10: .line 376
            iload 4 /* j */
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.mask:I
            iand
            istore 3 /* index */
        11: .line 377
            aload 0 /* this */
            iload 1 /* key */
            iload 3 /* index */
            invokevirtual org.apache.commons.math3.util.OpenIntToFieldHashMap.containsKey:(II)Z
            ifeq 13
        12: .line 378
            aload 0 /* this */
            iload 3 /* index */
            invokevirtual org.apache.commons.math3.util.OpenIntToFieldHashMap.doRemove:(I)Lorg/apache/commons/math3/FieldElement;
            areturn
        13: .line 374
      StackMap locals:
      StackMap stack:
            iload 5 /* perturb */
            iconst_5
            ishr
            istore 5 /* perturb */
      StackMap locals:
      StackMap stack:
        14: aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.states:[B
            iload 3 /* index */
            baload
            ifne 9
        end local 5 // int perturb
        15: .line 382
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.missingEntries:Lorg/apache/commons/math3/FieldElement;
            areturn
        end local 4 // int j
        end local 3 // int index
        end local 2 // int hash
        end local 1 // int key
        end local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   16     0     this  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;
            0   16     1      key  I
            1   16     2     hash  I
            2   16     3    index  I
            7   16     4        j  I
            8   15     5  perturb  I
    Signature: (I)TT;
    MethodParameters:
      Name  Flags
      key   final

  private boolean containsKey(int, int);
    descriptor: (II)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
        start local 1 // int key
        start local 2 // int index
         0: .line 394
            iload 1 /* key */
            ifne 1
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.states:[B
            iload 2 /* index */
            baload
            iconst_1
            if_icmpne 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.keys:[I
            iload 2 /* index */
            iaload
            iload 1 /* key */
            if_icmpne 2
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         2: iconst_0
            ireturn
        end local 2 // int index
        end local 1 // int key
        end local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;
            0    3     1    key  I
            0    3     2  index  I
    MethodParameters:
       Name  Flags
      key    final
      index  final

  private T doRemove();
    descriptor: (I)Lorg/apache/commons/math3/FieldElement;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
        start local 1 // int index
         0: .line 403
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.keys:[I
            iload 1 /* index */
            iconst_0
            iastore
         1: .line 404
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.states:[B
            iload 1 /* index */
            iconst_2
            bastore
         2: .line 405
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.values:[Lorg/apache/commons/math3/FieldElement;
            iload 1 /* index */
            aaload
            astore 2 /* previous */
        start local 2 // org.apache.commons.math3.FieldElement previous
         3: .line 406
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.values:[Lorg/apache/commons/math3/FieldElement;
            iload 1 /* index */
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.missingEntries:Lorg/apache/commons/math3/FieldElement;
            aastore
         4: .line 407
            aload 0 /* this */
            dup
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.size:I
            iconst_1
            isub
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.size:I
         5: .line 408
            aload 0 /* this */
            dup
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.count:I
            iconst_1
            iadd
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.count:I
         6: .line 409
            aload 2 /* previous */
            areturn
        end local 2 // org.apache.commons.math3.FieldElement previous
        end local 1 // int index
        end local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;
            0    7     1     index  I
            3    7     2  previous  TT;
    Signature: (I)TT;
    MethodParameters:
       Name  Flags
      index  

  public T put(int, );
    descriptor: (ILorg/apache/commons/math3/FieldElement;)Lorg/apache/commons/math3/FieldElement;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
        start local 1 // int key
        start local 2 // org.apache.commons.math3.FieldElement value
         0: .line 419
            aload 0 /* this */
            iload 1 /* key */
            invokevirtual org.apache.commons.math3.util.OpenIntToFieldHashMap.findInsertionIndex:(I)I
            istore 3 /* index */
        start local 3 // int index
         1: .line 420
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.missingEntries:Lorg/apache/commons/math3/FieldElement;
            astore 4 /* previous */
        start local 4 // org.apache.commons.math3.FieldElement previous
         2: .line 421
            iconst_1
            istore 5 /* newMapping */
        start local 5 // boolean newMapping
         3: .line 422
            iload 3 /* index */
            ifge 7
         4: .line 423
            iload 3 /* index */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.changeIndexSign:(I)I
            istore 3 /* index */
         5: .line 424
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.values:[Lorg/apache/commons/math3/FieldElement;
            iload 3 /* index */
            aaload
            astore 4 /* previous */
         6: .line 425
            iconst_0
            istore 5 /* newMapping */
         7: .line 427
      StackMap locals: int org.apache.commons.math3.FieldElement int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.keys:[I
            iload 3 /* index */
            iload 1 /* key */
            iastore
         8: .line 428
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.states:[B
            iload 3 /* index */
            iconst_1
            bastore
         9: .line 429
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.values:[Lorg/apache/commons/math3/FieldElement;
            iload 3 /* index */
            aload 2 /* value */
            aastore
        10: .line 430
            iload 5 /* newMapping */
            ifeq 15
        11: .line 431
            aload 0 /* this */
            dup
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.size:I
            iconst_1
            iadd
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.size:I
        12: .line 432
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.util.OpenIntToFieldHashMap.shouldGrowTable:()Z
            ifeq 14
        13: .line 433
            aload 0 /* this */
            invokevirtual org.apache.commons.math3.util.OpenIntToFieldHashMap.growTable:()V
        14: .line 435
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.count:I
            iconst_1
            iadd
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.count:I
        15: .line 437
      StackMap locals:
      StackMap stack:
            aload 4 /* previous */
            areturn
        end local 5 // boolean newMapping
        end local 4 // org.apache.commons.math3.FieldElement previous
        end local 3 // int index
        end local 2 // org.apache.commons.math3.FieldElement value
        end local 1 // int key
        end local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   16     0        this  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;
            0   16     1         key  I
            0   16     2       value  TT;
            1   16     3       index  I
            2   16     4    previous  TT;
            3   16     5  newMapping  Z
    Signature: (ITT;)TT;
    MethodParameters:
       Name  Flags
      key    final
      value  final

  private void growTable();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=13, args_size=1
        start local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
         0: .line 446
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.states:[B
            arraylength
            istore 1 /* oldLength */
        start local 1 // int oldLength
         1: .line 447
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.keys:[I
            astore 2 /* oldKeys */
        start local 2 // int[] oldKeys
         2: .line 448
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.values:[Lorg/apache/commons/math3/FieldElement;
            astore 3 /* oldValues */
        start local 3 // org.apache.commons.math3.FieldElement[] oldValues
         3: .line 449
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.states:[B
            astore 4 /* oldStates */
        start local 4 // byte[] oldStates
         4: .line 451
            iconst_2
            iload 1 /* oldLength */
            imul
            istore 5 /* newLength */
        start local 5 // int newLength
         5: .line 452
            iload 5 /* newLength */
            newarray 10
            astore 6 /* newKeys */
        start local 6 // int[] newKeys
         6: .line 453
            aload 0 /* this */
            iload 5 /* newLength */
            invokevirtual org.apache.commons.math3.util.OpenIntToFieldHashMap.buildArray:(I)[Lorg/apache/commons/math3/FieldElement;
            astore 7 /* newValues */
        start local 7 // org.apache.commons.math3.FieldElement[] newValues
         7: .line 454
            iload 5 /* newLength */
            newarray 8
            astore 8 /* newStates */
        start local 8 // byte[] newStates
         8: .line 455
            iload 5 /* newLength */
            iconst_1
            isub
            istore 9 /* newMask */
        start local 9 // int newMask
         9: .line 456
            iconst_0
            istore 10 /* i */
        start local 10 // int i
        10: goto 18
        11: .line 457
      StackMap locals: org.apache.commons.math3.util.OpenIntToFieldHashMap int int[] org.apache.commons.math3.FieldElement[] byte[] int int[] org.apache.commons.math3.FieldElement[] byte[] int int
      StackMap stack:
            aload 4 /* oldStates */
            iload 10 /* i */
            baload
            iconst_1
            if_icmpne 17
        12: .line 458
            aload 2 /* oldKeys */
            iload 10 /* i */
            iaload
            istore 11 /* key */
        start local 11 // int key
        13: .line 459
            aload 6 /* newKeys */
            aload 8 /* newStates */
            iload 11 /* key */
            iload 9 /* newMask */
            invokestatic org.apache.commons.math3.util.OpenIntToFieldHashMap.findInsertionIndex:([I[BII)I
            istore 12 /* index */
        start local 12 // int index
        14: .line 460
            aload 6 /* newKeys */
            iload 12 /* index */
            iload 11 /* key */
            iastore
        15: .line 461
            aload 7 /* newValues */
            iload 12 /* index */
            aload 3 /* oldValues */
            iload 10 /* i */
            aaload
            aastore
        16: .line 462
            aload 8 /* newStates */
            iload 12 /* index */
            iconst_1
            bastore
        end local 12 // int index
        end local 11 // int key
        17: .line 456
      StackMap locals:
      StackMap stack:
            iinc 10 /* i */ 1
      StackMap locals:
      StackMap stack:
        18: iload 10 /* i */
            iload 1 /* oldLength */
            if_icmplt 11
        end local 10 // int i
        19: .line 466
            aload 0 /* this */
            iload 9 /* newMask */
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.mask:I
        20: .line 467
            aload 0 /* this */
            aload 6 /* newKeys */
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.keys:[I
        21: .line 468
            aload 0 /* this */
            aload 7 /* newValues */
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.values:[Lorg/apache/commons/math3/FieldElement;
        22: .line 469
            aload 0 /* this */
            aload 8 /* newStates */
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.states:[B
        23: .line 471
            return
        end local 9 // int newMask
        end local 8 // byte[] newStates
        end local 7 // org.apache.commons.math3.FieldElement[] newValues
        end local 6 // int[] newKeys
        end local 5 // int newLength
        end local 4 // byte[] oldStates
        end local 3 // org.apache.commons.math3.FieldElement[] oldValues
        end local 2 // int[] oldKeys
        end local 1 // int oldLength
        end local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   24     0       this  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;
            1   24     1  oldLength  I
            2   24     2    oldKeys  [I
            3   24     3  oldValues  [Lorg/apache/commons/math3/FieldElement;
            4   24     4  oldStates  [B
            5   24     5  newLength  I
            6   24     6    newKeys  [I
            7   24     7  newValues  [Lorg/apache/commons/math3/FieldElement;
            8   24     8  newStates  [B
            9   24     9    newMask  I
           10   19    10          i  I
           13   17    11        key  I
           14   17    12      index  I

  private boolean shouldGrowTable();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
         0: .line 478
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.size:I
            i2f
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.mask:I
            iconst_1
            iadd
            i2f
            ldc 0.5
            fmul
            fcmpl
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;

  private static int hashOf(int);
    descriptor: (I)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // int key
         0: .line 487
            iload 0 /* key */
            iload 0 /* key */
            bipush 20
            iushr
            iload 0 /* key */
            bipush 12
            iushr
            ixor
            ixor
            istore 1 /* h */
        start local 1 // int h
         1: .line 488
            iload 1 /* h */
            iload 1 /* h */
            bipush 7
            iushr
            ixor
            iload 1 /* h */
            iconst_4
            iushr
            ixor
            ireturn
        end local 1 // int h
        end local 0 // int key
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0   key  I
            1    2     1     h  I
    MethodParameters:
      Name  Flags
      key   final

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
        start local 1 // java.io.ObjectInputStream stream
         0: .line 604
            aload 1 /* stream */
            invokevirtual java.io.ObjectInputStream.defaultReadObject:()V
         1: .line 605
            aload 0 /* this */
            iconst_0
            putfield org.apache.commons.math3.util.OpenIntToFieldHashMap.count:I
         2: .line 606
            return
        end local 1 // java.io.ObjectInputStream stream
        end local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;
            0    3     1  stream  Ljava/io/ObjectInputStream;
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
        Name  Flags
      stream  final

  private T[] buildArray();
    descriptor: (I)[Lorg/apache/commons/math3/FieldElement;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
        start local 1 // int length
         0: .line 614
            aload 0 /* this */
            getfield org.apache.commons.math3.util.OpenIntToFieldHashMap.field:Lorg/apache/commons/math3/Field;
            invokeinterface org.apache.commons.math3.Field.getRuntimeClass:()Ljava/lang/Class;
            iload 1 /* length */
            invokestatic java.lang.reflect.Array.newInstance:(Ljava/lang/Class;I)Ljava/lang/Object;
            checkcast org.apache.commons.math3.FieldElement[]
            areturn
        end local 1 // int length
        end local 0 // org.apache.commons.math3.util.OpenIntToFieldHashMap this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/apache/commons/math3/util/OpenIntToFieldHashMap<TT;>;
            0    1     1  length  I
    Signature: (I)[TT;
    MethodParameters:
        Name  Flags
      length  final
}
Signature: <T::Lorg/apache/commons/math3/FieldElement<TT;>;>Ljava/lang/Object;Ljava/io/Serializable;
SourceFile: "OpenIntToFieldHashMap.java"
NestMembers:
  org.apache.commons.math3.util.OpenIntToFieldHashMap$Iterator
InnerClasses:
  public Iterator = org.apache.commons.math3.util.OpenIntToFieldHashMap$Iterator of org.apache.commons.math3.util.OpenIntToFieldHashMap