final class com.google.protobuf.IntArrayList extends com.google.protobuf.AbstractProtobufList<java.lang.Integer> implements com.google.protobuf.Internal$IntList, java.util.RandomAccess, com.google.protobuf.PrimitiveNonBoxingCollection
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.google.protobuf.IntArrayList
  super_class: com.google.protobuf.AbstractProtobufList
{
  private static final com.google.protobuf.IntArrayList EMPTY_LIST;
    descriptor: Lcom/google/protobuf/IntArrayList;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=0, args_size=0
         0: .line 48
            new com.google.protobuf.IntArrayList
            dup
            iconst_0
            newarray 10
            iconst_0
            invokespecial com.google.protobuf.IntArrayList.<init>:([II)V
            putstatic com.google.protobuf.IntArrayList.EMPTY_LIST:Lcom/google/protobuf/IntArrayList;
         1: .line 50
            getstatic com.google.protobuf.IntArrayList.EMPTY_LIST:Lcom/google/protobuf/IntArrayList;
            invokevirtual com.google.protobuf.IntArrayList.makeImmutable:()V
         2: .line 51
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static com.google.protobuf.IntArrayList emptyList();
    descriptor: ()Lcom/google/protobuf/IntArrayList;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 54
            getstatic com.google.protobuf.IntArrayList.EMPTY_LIST:Lcom/google/protobuf/IntArrayList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.protobuf.IntArrayList this
         0: .line 68
            aload 0 /* this */
            bipush 10
            newarray 10
            iconst_0
            invokespecial com.google.protobuf.IntArrayList.<init>:([II)V
         1: .line 69
            return
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/protobuf/IntArrayList;

  private void <init>(int[], int);
    descriptor: ([II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.google.protobuf.IntArrayList this
        start local 1 // int[] other
        start local 2 // int size
         0: .line 74
            aload 0 /* this */
            invokespecial com.google.protobuf.AbstractProtobufList.<init>:()V
         1: .line 75
            aload 0 /* this */
            aload 1 /* other */
            putfield com.google.protobuf.IntArrayList.array:[I
         2: .line 76
            aload 0 /* this */
            iload 2 /* size */
            putfield com.google.protobuf.IntArrayList.size:I
         3: .line 77
            return
        end local 2 // int size
        end local 1 // int[] other
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/google/protobuf/IntArrayList;
            0    4     1  other  [I
            0    4     2   size  I
    MethodParameters:
       Name  Flags
      other  
      size   

  protected void removeRange(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // com.google.protobuf.IntArrayList this
        start local 1 // int fromIndex
        start local 2 // int toIndex
         0: .line 81
            aload 0 /* this */
            invokevirtual com.google.protobuf.IntArrayList.ensureIsMutable:()V
         1: .line 82
            iload 2 /* toIndex */
            iload 1 /* fromIndex */
            if_icmpge 3
         2: .line 83
            new java.lang.IndexOutOfBoundsException
            dup
            ldc "toIndex < fromIndex"
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 86
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 2 /* toIndex */
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 1 /* fromIndex */
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            iload 2 /* toIndex */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 87
            aload 0 /* this */
            dup
            getfield com.google.protobuf.IntArrayList.size:I
            iload 2 /* toIndex */
            iload 1 /* fromIndex */
            isub
            isub
            putfield com.google.protobuf.IntArrayList.size:I
         5: .line 88
            aload 0 /* this */
            dup
            getfield com.google.protobuf.IntArrayList.modCount:I
            iconst_1
            iadd
            putfield com.google.protobuf.IntArrayList.modCount:I
         6: .line 89
            return
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lcom/google/protobuf/IntArrayList;
            0    7     1  fromIndex  I
            0    7     2    toIndex  I
    MethodParameters:
           Name  Flags
      fromIndex  
      toIndex    

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // com.google.protobuf.IntArrayList this
        start local 1 // java.lang.Object o
         0: .line 93
            aload 0 /* this */
            aload 1 /* o */
            if_acmpne 2
         1: .line 94
            iconst_1
            ireturn
         2: .line 96
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            instanceof com.google.protobuf.IntArrayList
            ifne 4
         3: .line 97
            aload 0 /* this */
            aload 1 /* o */
            invokespecial com.google.protobuf.AbstractProtobufList.equals:(Ljava/lang/Object;)Z
            ireturn
         4: .line 99
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast com.google.protobuf.IntArrayList
            astore 2 /* other */
        start local 2 // com.google.protobuf.IntArrayList other
         5: .line 100
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            aload 2 /* other */
            getfield com.google.protobuf.IntArrayList.size:I
            if_icmpeq 7
         6: .line 101
            iconst_0
            ireturn
         7: .line 104
      StackMap locals: com.google.protobuf.IntArrayList
      StackMap stack:
            aload 2 /* other */
            getfield com.google.protobuf.IntArrayList.array:[I
            astore 3 /* arr */
        start local 3 // int[] arr
         8: .line 105
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         9: goto 13
        10: .line 106
      StackMap locals: int[] int
      StackMap stack:
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 4 /* i */
            iaload
            aload 3 /* arr */
            iload 4 /* i */
            iaload
            if_icmpeq 12
        11: .line 107
            iconst_0
            ireturn
        12: .line 105
      StackMap locals:
      StackMap stack:
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 4 /* i */
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            if_icmplt 10
        end local 4 // int i
        14: .line 111
            iconst_1
            ireturn
        end local 3 // int[] arr
        end local 2 // com.google.protobuf.IntArrayList other
        end local 1 // java.lang.Object o
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   15     0   this  Lcom/google/protobuf/IntArrayList;
            0   15     1      o  Ljava/lang/Object;
            5   15     2  other  Lcom/google/protobuf/IntArrayList;
            8   15     3    arr  [I
            9   14     4      i  I
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.google.protobuf.IntArrayList this
         0: .line 116
            iconst_1
            istore 1 /* result */
        start local 1 // int result
         1: .line 117
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 118
      StackMap locals: int int
      StackMap stack:
            bipush 31
            iload 1 /* result */
            imul
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 2 /* i */
            iaload
            iadd
            istore 1 /* result */
         4: .line 117
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            if_icmplt 3
        end local 2 // int i
         6: .line 120
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    7     0    this  Lcom/google/protobuf/IntArrayList;
            1    7     1  result  I
            2    6     2       i  I

  public com.google.protobuf.Internal$IntList mutableCopyWithCapacity(int);
    descriptor: (I)Lcom/google/protobuf/Internal$IntList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.google.protobuf.IntArrayList this
        start local 1 // int capacity
         0: .line 125
            iload 1 /* capacity */
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            if_icmpge 2
         1: .line 126
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 128
      StackMap locals:
      StackMap stack:
            new com.google.protobuf.IntArrayList
            dup
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 1 /* capacity */
            invokestatic java.util.Arrays.copyOf:([II)[I
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            invokespecial com.google.protobuf.IntArrayList.<init>:([II)V
            areturn
        end local 1 // int capacity
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lcom/google/protobuf/IntArrayList;
            0    3     1  capacity  I
    MethodParameters:
          Name  Flags
      capacity  

  public java.lang.Integer get(int);
    descriptor: (I)Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.protobuf.IntArrayList this
        start local 1 // int index
         0: .line 133
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual com.google.protobuf.IntArrayList.getInt:(I)I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            areturn
        end local 1 // int index
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/protobuf/IntArrayList;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getInt(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.protobuf.IntArrayList this
        start local 1 // int index
         0: .line 138
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual com.google.protobuf.IntArrayList.ensureIndexInRange:(I)V
         1: .line 139
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 1 /* index */
            iaload
            ireturn
        end local 1 // int index
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/google/protobuf/IntArrayList;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.protobuf.IntArrayList this
         0: .line 144
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            ireturn
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/protobuf/IntArrayList;

  public java.lang.Integer set(int, java.lang.Integer);
    descriptor: (ILjava/lang/Integer;)Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.protobuf.IntArrayList this
        start local 1 // int index
        start local 2 // java.lang.Integer element
         0: .line 149
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* element */
            invokevirtual java.lang.Integer.intValue:()I
            invokevirtual com.google.protobuf.IntArrayList.setInt:(II)I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            areturn
        end local 2 // java.lang.Integer element
        end local 1 // int index
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/google/protobuf/IntArrayList;
            0    1     1    index  I
            0    1     2  element  Ljava/lang/Integer;
    MethodParameters:
         Name  Flags
      index    
      element  

  public int setInt(int, int);
    descriptor: (II)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // com.google.protobuf.IntArrayList this
        start local 1 // int index
        start local 2 // int element
         0: .line 154
            aload 0 /* this */
            invokevirtual com.google.protobuf.IntArrayList.ensureIsMutable:()V
         1: .line 155
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual com.google.protobuf.IntArrayList.ensureIndexInRange:(I)V
         2: .line 156
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 1 /* index */
            iaload
            istore 3 /* previousValue */
        start local 3 // int previousValue
         3: .line 157
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 1 /* index */
            iload 2 /* element */
            iastore
         4: .line 158
            iload 3 /* previousValue */
            ireturn
        end local 3 // int previousValue
        end local 2 // int element
        end local 1 // int index
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lcom/google/protobuf/IntArrayList;
            0    5     1          index  I
            0    5     2        element  I
            3    5     3  previousValue  I
    MethodParameters:
         Name  Flags
      index    
      element  

  public boolean add(java.lang.Integer);
    descriptor: (Ljava/lang/Integer;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.protobuf.IntArrayList this
        start local 1 // java.lang.Integer element
         0: .line 163
            aload 0 /* this */
            aload 1 /* element */
            invokevirtual java.lang.Integer.intValue:()I
            invokevirtual com.google.protobuf.IntArrayList.addInt:(I)V
         1: .line 164
            iconst_1
            ireturn
        end local 1 // java.lang.Integer element
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/google/protobuf/IntArrayList;
            0    2     1  element  Ljava/lang/Integer;
    MethodParameters:
         Name  Flags
      element  

  public void add(int, java.lang.Integer);
    descriptor: (ILjava/lang/Integer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.protobuf.IntArrayList this
        start local 1 // int index
        start local 2 // java.lang.Integer element
         0: .line 169
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* element */
            invokevirtual java.lang.Integer.intValue:()I
            invokevirtual com.google.protobuf.IntArrayList.addInt:(II)V
         1: .line 170
            return
        end local 2 // java.lang.Integer element
        end local 1 // int index
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/google/protobuf/IntArrayList;
            0    2     1    index  I
            0    2     2  element  Ljava/lang/Integer;
    MethodParameters:
         Name  Flags
      index    
      element  

  public void addInt(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.google.protobuf.IntArrayList this
        start local 1 // int element
         0: .line 175
            aload 0 /* this */
            invokevirtual com.google.protobuf.IntArrayList.ensureIsMutable:()V
         1: .line 176
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            arraylength
            if_icmpne 6
         2: .line 178
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            iconst_3
            imul
            iconst_2
            idiv
            iconst_1
            iadd
            istore 2 /* length */
        start local 2 // int length
         3: .line 179
            iload 2 /* length */
            newarray 10
            astore 3 /* newArray */
        start local 3 // int[] newArray
         4: .line 181
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iconst_0
            aload 3 /* newArray */
            iconst_0
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 182
            aload 0 /* this */
            aload 3 /* newArray */
            putfield com.google.protobuf.IntArrayList.array:[I
        end local 3 // int[] newArray
        end local 2 // int length
         6: .line 185
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            aload 0 /* this */
            dup
            getfield com.google.protobuf.IntArrayList.size:I
            dup_x1
            iconst_1
            iadd
            putfield com.google.protobuf.IntArrayList.size:I
            iload 1 /* element */
            iastore
         7: .line 186
            return
        end local 1 // int element
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lcom/google/protobuf/IntArrayList;
            0    8     1   element  I
            3    6     2    length  I
            4    6     3  newArray  [I
    MethodParameters:
         Name  Flags
      element  

  private void addInt(int, int);
    descriptor: (II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=5, args_size=3
        start local 0 // com.google.protobuf.IntArrayList this
        start local 1 // int index
        start local 2 // int element
         0: .line 190
            aload 0 /* this */
            invokevirtual com.google.protobuf.IntArrayList.ensureIsMutable:()V
         1: .line 191
            iload 1 /* index */
            iflt 2
            iload 1 /* index */
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            if_icmple 3
         2: .line 192
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual com.google.protobuf.IntArrayList.makeOutOfBoundsExceptionMessage:(I)Ljava/lang/String;
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         3: .line 195
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            arraylength
            if_icmpge 6
         4: .line 197
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 1 /* index */
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 1 /* index */
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            iload 1 /* index */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 198
            goto 11
         6: .line 200
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            iconst_3
            imul
            iconst_2
            idiv
            iconst_1
            iadd
            istore 3 /* length */
        start local 3 // int length
         7: .line 201
            iload 3 /* length */
            newarray 10
            astore 4 /* newArray */
        start local 4 // int[] newArray
         8: .line 204
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iconst_0
            aload 4 /* newArray */
            iconst_0
            iload 1 /* index */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         9: .line 207
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 1 /* index */
            aload 4 /* newArray */
            iload 1 /* index */
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            iload 1 /* index */
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        10: .line 208
            aload 0 /* this */
            aload 4 /* newArray */
            putfield com.google.protobuf.IntArrayList.array:[I
        end local 4 // int[] newArray
        end local 3 // int length
        11: .line 211
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 1 /* index */
            iload 2 /* element */
            iastore
        12: .line 212
            aload 0 /* this */
            dup
            getfield com.google.protobuf.IntArrayList.size:I
            iconst_1
            iadd
            putfield com.google.protobuf.IntArrayList.size:I
        13: .line 213
            aload 0 /* this */
            dup
            getfield com.google.protobuf.IntArrayList.modCount:I
            iconst_1
            iadd
            putfield com.google.protobuf.IntArrayList.modCount:I
        14: .line 214
            return
        end local 2 // int element
        end local 1 // int index
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   15     0      this  Lcom/google/protobuf/IntArrayList;
            0   15     1     index  I
            0   15     2   element  I
            7   11     3    length  I
            8   11     4  newArray  [I
    MethodParameters:
         Name  Flags
      index    
      element  

  public boolean addAll(java.util.Collection<? extends java.lang.Integer>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // com.google.protobuf.IntArrayList this
        start local 1 // java.util.Collection collection
         0: .line 218
            aload 0 /* this */
            invokevirtual com.google.protobuf.IntArrayList.ensureIsMutable:()V
         1: .line 220
            aload 1 /* collection */
            invokestatic com.google.protobuf.Internal.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 223
            aload 1 /* collection */
            instanceof com.google.protobuf.IntArrayList
            ifne 4
         3: .line 224
            aload 0 /* this */
            aload 1 /* collection */
            invokespecial com.google.protobuf.AbstractProtobufList.addAll:(Ljava/util/Collection;)Z
            ireturn
         4: .line 227
      StackMap locals:
      StackMap stack:
            aload 1 /* collection */
            checkcast com.google.protobuf.IntArrayList
            astore 2 /* list */
        start local 2 // com.google.protobuf.IntArrayList list
         5: .line 228
            aload 2 /* list */
            getfield com.google.protobuf.IntArrayList.size:I
            ifne 7
         6: .line 229
            iconst_0
            ireturn
         7: .line 232
      StackMap locals: com.google.protobuf.IntArrayList
      StackMap stack:
            ldc 2147483647
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            isub
            istore 3 /* overflow */
        start local 3 // int overflow
         8: .line 233
            iload 3 /* overflow */
            aload 2 /* list */
            getfield com.google.protobuf.IntArrayList.size:I
            if_icmpge 10
         9: .line 235
            new java.lang.OutOfMemoryError
            dup
            invokespecial java.lang.OutOfMemoryError.<init>:()V
            athrow
        10: .line 238
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            aload 2 /* list */
            getfield com.google.protobuf.IntArrayList.size:I
            iadd
            istore 4 /* newSize */
        start local 4 // int newSize
        11: .line 239
            iload 4 /* newSize */
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            arraylength
            if_icmple 13
        12: .line 240
            aload 0 /* this */
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 4 /* newSize */
            invokestatic java.util.Arrays.copyOf:([II)[I
            putfield com.google.protobuf.IntArrayList.array:[I
        13: .line 243
      StackMap locals: int
      StackMap stack:
            aload 2 /* list */
            getfield com.google.protobuf.IntArrayList.array:[I
            iconst_0
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            aload 2 /* list */
            getfield com.google.protobuf.IntArrayList.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        14: .line 244
            aload 0 /* this */
            iload 4 /* newSize */
            putfield com.google.protobuf.IntArrayList.size:I
        15: .line 245
            aload 0 /* this */
            dup
            getfield com.google.protobuf.IntArrayList.modCount:I
            iconst_1
            iadd
            putfield com.google.protobuf.IntArrayList.modCount:I
        16: .line 246
            iconst_1
            ireturn
        end local 4 // int newSize
        end local 3 // int overflow
        end local 2 // com.google.protobuf.IntArrayList list
        end local 1 // java.util.Collection collection
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   17     0        this  Lcom/google/protobuf/IntArrayList;
            0   17     1  collection  Ljava/util/Collection<+Ljava/lang/Integer;>;
            5   17     2        list  Lcom/google/protobuf/IntArrayList;
            8   17     3    overflow  I
           11   17     4     newSize  I
    Signature: (Ljava/util/Collection<+Ljava/lang/Integer;>;)Z
    MethodParameters:
            Name  Flags
      collection  

  public boolean remove(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // com.google.protobuf.IntArrayList this
        start local 1 // java.lang.Object o
         0: .line 251
            aload 0 /* this */
            invokevirtual com.google.protobuf.IntArrayList.ensureIsMutable:()V
         1: .line 252
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 9
         3: .line 253
      StackMap locals: int
      StackMap stack:
            aload 1 /* o */
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 2 /* i */
            iaload
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
         4: .line 254
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 2 /* i */
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 2 /* i */
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            iload 2 /* i */
            isub
            iconst_1
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 255
            aload 0 /* this */
            dup
            getfield com.google.protobuf.IntArrayList.size:I
            iconst_1
            isub
            putfield com.google.protobuf.IntArrayList.size:I
         6: .line 256
            aload 0 /* this */
            dup
            getfield com.google.protobuf.IntArrayList.modCount:I
            iconst_1
            iadd
            putfield com.google.protobuf.IntArrayList.modCount:I
         7: .line 257
            iconst_1
            ireturn
         8: .line 252
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 2 /* i */
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            if_icmplt 3
        end local 2 // int i
        10: .line 260
            iconst_0
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lcom/google/protobuf/IntArrayList;
            0   11     1     o  Ljava/lang/Object;
            2   10     2     i  I
    MethodParameters:
      Name  Flags
      o     

  public java.lang.Integer remove(int);
    descriptor: (I)Ljava/lang/Integer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=2
        start local 0 // com.google.protobuf.IntArrayList this
        start local 1 // int index
         0: .line 265
            aload 0 /* this */
            invokevirtual com.google.protobuf.IntArrayList.ensureIsMutable:()V
         1: .line 266
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual com.google.protobuf.IntArrayList.ensureIndexInRange:(I)V
         2: .line 267
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 1 /* index */
            iaload
            istore 2 /* value */
        start local 2 // int value
         3: .line 268
            iload 1 /* index */
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            iconst_1
            isub
            if_icmpge 5
         4: .line 269
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 1 /* index */
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.array:[I
            iload 1 /* index */
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            iload 1 /* index */
            isub
            iconst_1
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 271
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.google.protobuf.IntArrayList.size:I
            iconst_1
            isub
            putfield com.google.protobuf.IntArrayList.size:I
         6: .line 272
            aload 0 /* this */
            dup
            getfield com.google.protobuf.IntArrayList.modCount:I
            iconst_1
            iadd
            putfield com.google.protobuf.IntArrayList.modCount:I
         7: .line 273
            iload 2 /* value */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lcom/google/protobuf/IntArrayList;
            0    8     1  index  I
            3    8     2  value  I
    MethodParameters:
       Name  Flags
      index  

  private void ensureIndexInRange(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.google.protobuf.IntArrayList this
        start local 1 // int index
         0: .line 283
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            if_icmplt 2
         1: .line 284
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual com.google.protobuf.IntArrayList.makeOutOfBoundsExceptionMessage:(I)Ljava/lang/String;
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 286
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int index
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/google/protobuf/IntArrayList;
            0    3     1  index  I
    MethodParameters:
       Name  Flags
      index  

  private java.lang.String makeOutOfBoundsExceptionMessage(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.protobuf.IntArrayList this
        start local 1 // int index
         0: .line 289
            new java.lang.StringBuilder
            dup
            ldc "Index:"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 1 /* index */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", Size:"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.google.protobuf.IntArrayList.size:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 1 // int index
        end local 0 // com.google.protobuf.IntArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/protobuf/IntArrayList;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public java.lang.Object set(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            aload 2
            checkcast java.lang.Integer
            invokevirtual com.google.protobuf.IntArrayList.set:(ILjava/lang/Integer;)Ljava/lang/Integer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public com.google.protobuf.Internal$ProtobufList mutableCopyWithCapacity(int);
    descriptor: (I)Lcom/google/protobuf/Internal$ProtobufList;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual com.google.protobuf.IntArrayList.mutableCopyWithCapacity:(I)Lcom/google/protobuf/Internal$IntList;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object get(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual com.google.protobuf.IntArrayList.get:(I)Ljava/lang/Integer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.lang.Object remove(int);
    descriptor: (I)Ljava/lang/Object;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual com.google.protobuf.IntArrayList.remove:(I)Ljava/lang/Integer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void add(int, java.lang.Object);
    descriptor: (ILjava/lang/Object;)V
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            iload 1
            aload 2
            checkcast java.lang.Integer
            invokevirtual com.google.protobuf.IntArrayList.add:(ILjava/lang/Integer;)V
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public boolean add(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Integer
            invokevirtual com.google.protobuf.IntArrayList.add:(Ljava/lang/Integer;)Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lcom/google/protobuf/AbstractProtobufList<Ljava/lang/Integer;>;Lcom/google/protobuf/Internal$IntList;Ljava/util/RandomAccess;Lcom/google/protobuf/PrimitiveNonBoxingCollection;
SourceFile: "IntArrayList.java"
InnerClasses:
  public abstract IntList = com.google.protobuf.Internal$IntList of com.google.protobuf.Internal
  public abstract ProtobufList = com.google.protobuf.Internal$ProtobufList of com.google.protobuf.Internal