final class com.google.protobuf.DoubleArrayList extends com.google.protobuf.AbstractProtobufList<java.lang.Double> implements com.google.protobuf.Internal$DoubleList, 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.DoubleArrayList
  super_class: com.google.protobuf.AbstractProtobufList
{
  private static final com.google.protobuf.DoubleArrayList EMPTY_LIST;
    descriptor: Lcom/google/protobuf/DoubleArrayList;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private double[] array;
    descriptor: [D
    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.DoubleArrayList
            dup
            iconst_0
            newarray 7
            iconst_0
            invokespecial com.google.protobuf.DoubleArrayList.<init>:([DI)V
            putstatic com.google.protobuf.DoubleArrayList.EMPTY_LIST:Lcom/google/protobuf/DoubleArrayList;
         1: .line 50
            getstatic com.google.protobuf.DoubleArrayList.EMPTY_LIST:Lcom/google/protobuf/DoubleArrayList;
            invokevirtual com.google.protobuf.DoubleArrayList.makeImmutable:()V
         2: .line 51
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static com.google.protobuf.DoubleArrayList emptyList();
    descriptor: ()Lcom/google/protobuf/DoubleArrayList;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 54
            getstatic com.google.protobuf.DoubleArrayList.EMPTY_LIST:Lcom/google/protobuf/DoubleArrayList;
            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.DoubleArrayList this
         0: .line 68
            aload 0 /* this */
            bipush 10
            newarray 7
            iconst_0
            invokespecial com.google.protobuf.DoubleArrayList.<init>:([DI)V
         1: .line 69
            return
        end local 0 // com.google.protobuf.DoubleArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/protobuf/DoubleArrayList;

  private void <init>(double[], int);
    descriptor: ([DI)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.google.protobuf.DoubleArrayList this
        start local 1 // double[] 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.DoubleArrayList.array:[D
         2: .line 76
            aload 0 /* this */
            iload 2 /* size */
            putfield com.google.protobuf.DoubleArrayList.size:I
         3: .line 77
            return
        end local 2 // int size
        end local 1 // double[] other
        end local 0 // com.google.protobuf.DoubleArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/google/protobuf/DoubleArrayList;
            0    4     1  other  [D
            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.DoubleArrayList this
        start local 1 // int fromIndex
        start local 2 // int toIndex
         0: .line 81
            aload 0 /* this */
            invokevirtual com.google.protobuf.DoubleArrayList.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.DoubleArrayList.array:[D
            iload 2 /* toIndex */
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.array:[D
            iload 1 /* fromIndex */
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.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.DoubleArrayList.size:I
            iload 2 /* toIndex */
            iload 1 /* fromIndex */
            isub
            isub
            putfield com.google.protobuf.DoubleArrayList.size:I
         5: .line 88
            aload 0 /* this */
            dup
            getfield com.google.protobuf.DoubleArrayList.modCount:I
            iconst_1
            iadd
            putfield com.google.protobuf.DoubleArrayList.modCount:I
         6: .line 89
            return
        end local 2 // int toIndex
        end local 1 // int fromIndex
        end local 0 // com.google.protobuf.DoubleArrayList this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    7     0       this  Lcom/google/protobuf/DoubleArrayList;
            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=4, locals=5, args_size=2
        start local 0 // com.google.protobuf.DoubleArrayList 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.DoubleArrayList
            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.DoubleArrayList
            astore 2 /* other */
        start local 2 // com.google.protobuf.DoubleArrayList other
         5: .line 100
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.size:I
            aload 2 /* other */
            getfield com.google.protobuf.DoubleArrayList.size:I
            if_icmpeq 7
         6: .line 101
            iconst_0
            ireturn
         7: .line 104
      StackMap locals: com.google.protobuf.DoubleArrayList
      StackMap stack:
            aload 2 /* other */
            getfield com.google.protobuf.DoubleArrayList.array:[D
            astore 3 /* arr */
        start local 3 // double[] arr
         8: .line 105
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         9: goto 13
        10: .line 106
      StackMap locals: double[] int
      StackMap stack:
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.array:[D
            iload 4 /* i */
            daload
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            aload 3 /* arr */
            iload 4 /* i */
            daload
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lcmp
            ifeq 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.DoubleArrayList.size:I
            if_icmplt 10
        end local 4 // int i
        14: .line 111
            iconst_1
            ireturn
        end local 3 // double[] arr
        end local 2 // com.google.protobuf.DoubleArrayList other
        end local 1 // java.lang.Object o
        end local 0 // com.google.protobuf.DoubleArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   15     0   this  Lcom/google/protobuf/DoubleArrayList;
            0   15     1      o  Ljava/lang/Object;
            5   15     2  other  Lcom/google/protobuf/DoubleArrayList;
            8   15     3    arr  [D
            9   14     4      i  I
    MethodParameters:
      Name  Flags
      o     

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // com.google.protobuf.DoubleArrayList 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 6
         3: .line 118
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.array:[D
            iload 2 /* i */
            daload
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            lstore 3 /* bits */
        start local 3 // long bits
         4: .line 119
            bipush 31
            iload 1 /* result */
            imul
            lload 3 /* bits */
            invokestatic com.google.protobuf.Internal.hashLong:(J)I
            iadd
            istore 1 /* result */
        end local 3 // long bits
         5: .line 117
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 2 /* i */
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.size:I
            if_icmplt 3
        end local 2 // int i
         7: .line 121
            iload 1 /* result */
            ireturn
        end local 1 // int result
        end local 0 // com.google.protobuf.DoubleArrayList this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lcom/google/protobuf/DoubleArrayList;
            1    8     1  result  I
            2    7     2       i  I
            4    5     3    bits  J

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

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

  public double getDouble(int);
    descriptor: (I)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.protobuf.DoubleArrayList this
        start local 1 // int index
         0: .line 139
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual com.google.protobuf.DoubleArrayList.ensureIndexInRange:(I)V
         1: .line 140
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.array:[D
            iload 1 /* index */
            daload
            dreturn
        end local 1 // int index
        end local 0 // com.google.protobuf.DoubleArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lcom/google/protobuf/DoubleArrayList;
            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.DoubleArrayList this
         0: .line 145
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.size:I
            ireturn
        end local 0 // com.google.protobuf.DoubleArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/protobuf/DoubleArrayList;

  public java.lang.Double set(int, java.lang.Double);
    descriptor: (ILjava/lang/Double;)Ljava/lang/Double;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.google.protobuf.DoubleArrayList this
        start local 1 // int index
        start local 2 // java.lang.Double element
         0: .line 150
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* element */
            invokevirtual java.lang.Double.doubleValue:()D
            invokevirtual com.google.protobuf.DoubleArrayList.setDouble:(ID)D
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            areturn
        end local 2 // java.lang.Double element
        end local 1 // int index
        end local 0 // com.google.protobuf.DoubleArrayList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lcom/google/protobuf/DoubleArrayList;
            0    1     1    index  I
            0    1     2  element  Ljava/lang/Double;
    MethodParameters:
         Name  Flags
      index    
      element  

  public double setDouble(int, double);
    descriptor: (ID)D
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // com.google.protobuf.DoubleArrayList this
        start local 1 // int index
        start local 2 // double element
         0: .line 155
            aload 0 /* this */
            invokevirtual com.google.protobuf.DoubleArrayList.ensureIsMutable:()V
         1: .line 156
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual com.google.protobuf.DoubleArrayList.ensureIndexInRange:(I)V
         2: .line 157
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.array:[D
            iload 1 /* index */
            daload
            dstore 4 /* previousValue */
        start local 4 // double previousValue
         3: .line 158
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.array:[D
            iload 1 /* index */
            dload 2 /* element */
            dastore
         4: .line 159
            dload 4 /* previousValue */
            dreturn
        end local 4 // double previousValue
        end local 2 // double element
        end local 1 // int index
        end local 0 // com.google.protobuf.DoubleArrayList this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lcom/google/protobuf/DoubleArrayList;
            0    5     1          index  I
            0    5     2        element  D
            3    5     4  previousValue  D
    MethodParameters:
         Name  Flags
      index    
      element  

  public boolean add(java.lang.Double);
    descriptor: (Ljava/lang/Double;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.protobuf.DoubleArrayList this
        start local 1 // java.lang.Double element
         0: .line 164
            aload 0 /* this */
            aload 1 /* element */
            invokevirtual java.lang.Double.doubleValue:()D
            invokevirtual com.google.protobuf.DoubleArrayList.addDouble:(D)V
         1: .line 165
            iconst_1
            ireturn
        end local 1 // java.lang.Double element
        end local 0 // com.google.protobuf.DoubleArrayList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/google/protobuf/DoubleArrayList;
            0    2     1  element  Ljava/lang/Double;
    MethodParameters:
         Name  Flags
      element  

  public void add(int, java.lang.Double);
    descriptor: (ILjava/lang/Double;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // com.google.protobuf.DoubleArrayList this
        start local 1 // int index
        start local 2 // java.lang.Double element
         0: .line 170
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* element */
            invokevirtual java.lang.Double.doubleValue:()D
            invokevirtual com.google.protobuf.DoubleArrayList.addDouble:(ID)V
         1: .line 171
            return
        end local 2 // java.lang.Double element
        end local 1 // int index
        end local 0 // com.google.protobuf.DoubleArrayList this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lcom/google/protobuf/DoubleArrayList;
            0    2     1    index  I
            0    2     2  element  Ljava/lang/Double;
    MethodParameters:
         Name  Flags
      index    
      element  

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

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

  public boolean addAll(java.util.Collection<? extends java.lang.Double>);
    descriptor: (Ljava/util/Collection;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=2
        start local 0 // com.google.protobuf.DoubleArrayList this
        start local 1 // java.util.Collection collection
         0: .line 219
            aload 0 /* this */
            invokevirtual com.google.protobuf.DoubleArrayList.ensureIsMutable:()V
         1: .line 221
            aload 1 /* collection */
            invokestatic com.google.protobuf.Internal.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         2: .line 224
            aload 1 /* collection */
            instanceof com.google.protobuf.DoubleArrayList
            ifne 4
         3: .line 225
            aload 0 /* this */
            aload 1 /* collection */
            invokespecial com.google.protobuf.AbstractProtobufList.addAll:(Ljava/util/Collection;)Z
            ireturn
         4: .line 228
      StackMap locals:
      StackMap stack:
            aload 1 /* collection */
            checkcast com.google.protobuf.DoubleArrayList
            astore 2 /* list */
        start local 2 // com.google.protobuf.DoubleArrayList list
         5: .line 229
            aload 2 /* list */
            getfield com.google.protobuf.DoubleArrayList.size:I
            ifne 7
         6: .line 230
            iconst_0
            ireturn
         7: .line 233
      StackMap locals: com.google.protobuf.DoubleArrayList
      StackMap stack:
            ldc 2147483647
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.size:I
            isub
            istore 3 /* overflow */
        start local 3 // int overflow
         8: .line 234
            iload 3 /* overflow */
            aload 2 /* list */
            getfield com.google.protobuf.DoubleArrayList.size:I
            if_icmpge 10
         9: .line 236
            new java.lang.OutOfMemoryError
            dup
            invokespecial java.lang.OutOfMemoryError.<init>:()V
            athrow
        10: .line 239
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.size:I
            aload 2 /* list */
            getfield com.google.protobuf.DoubleArrayList.size:I
            iadd
            istore 4 /* newSize */
        start local 4 // int newSize
        11: .line 240
            iload 4 /* newSize */
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.array:[D
            arraylength
            if_icmple 13
        12: .line 241
            aload 0 /* this */
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.array:[D
            iload 4 /* newSize */
            invokestatic java.util.Arrays.copyOf:([DI)[D
            putfield com.google.protobuf.DoubleArrayList.array:[D
        13: .line 244
      StackMap locals: int
      StackMap stack:
            aload 2 /* list */
            getfield com.google.protobuf.DoubleArrayList.array:[D
            iconst_0
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.array:[D
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.size:I
            aload 2 /* list */
            getfield com.google.protobuf.DoubleArrayList.size:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        14: .line 245
            aload 0 /* this */
            iload 4 /* newSize */
            putfield com.google.protobuf.DoubleArrayList.size:I
        15: .line 246
            aload 0 /* this */
            dup
            getfield com.google.protobuf.DoubleArrayList.modCount:I
            iconst_1
            iadd
            putfield com.google.protobuf.DoubleArrayList.modCount:I
        16: .line 247
            iconst_1
            ireturn
        end local 4 // int newSize
        end local 3 // int overflow
        end local 2 // com.google.protobuf.DoubleArrayList list
        end local 1 // java.util.Collection collection
        end local 0 // com.google.protobuf.DoubleArrayList this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   17     0        this  Lcom/google/protobuf/DoubleArrayList;
            0   17     1  collection  Ljava/util/Collection<+Ljava/lang/Double;>;
            5   17     2        list  Lcom/google/protobuf/DoubleArrayList;
            8   17     3    overflow  I
           11   17     4     newSize  I
    Signature: (Ljava/util/Collection<+Ljava/lang/Double;>;)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.DoubleArrayList this
        start local 1 // java.lang.Object o
         0: .line 252
            aload 0 /* this */
            invokevirtual com.google.protobuf.DoubleArrayList.ensureIsMutable:()V
         1: .line 253
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         2: goto 9
         3: .line 254
      StackMap locals: int
      StackMap stack:
            aload 1 /* o */
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.array:[D
            iload 2 /* i */
            daload
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            invokevirtual java.lang.Object.equals:(Ljava/lang/Object;)Z
            ifeq 8
         4: .line 255
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.array:[D
            iload 2 /* i */
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.array:[D
            iload 2 /* i */
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.size:I
            iload 2 /* i */
            isub
            iconst_1
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 256
            aload 0 /* this */
            dup
            getfield com.google.protobuf.DoubleArrayList.size:I
            iconst_1
            isub
            putfield com.google.protobuf.DoubleArrayList.size:I
         6: .line 257
            aload 0 /* this */
            dup
            getfield com.google.protobuf.DoubleArrayList.modCount:I
            iconst_1
            iadd
            putfield com.google.protobuf.DoubleArrayList.modCount:I
         7: .line 258
            iconst_1
            ireturn
         8: .line 253
      StackMap locals:
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 2 /* i */
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.size:I
            if_icmplt 3
        end local 2 // int i
        10: .line 261
            iconst_0
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // com.google.protobuf.DoubleArrayList this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lcom/google/protobuf/DoubleArrayList;
            0   11     1     o  Ljava/lang/Object;
            2   10     2     i  I
    MethodParameters:
      Name  Flags
      o     

  public java.lang.Double remove(int);
    descriptor: (I)Ljava/lang/Double;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // com.google.protobuf.DoubleArrayList this
        start local 1 // int index
         0: .line 266
            aload 0 /* this */
            invokevirtual com.google.protobuf.DoubleArrayList.ensureIsMutable:()V
         1: .line 267
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual com.google.protobuf.DoubleArrayList.ensureIndexInRange:(I)V
         2: .line 268
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.array:[D
            iload 1 /* index */
            daload
            dstore 2 /* value */
        start local 2 // double value
         3: .line 269
            iload 1 /* index */
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.size:I
            iconst_1
            isub
            if_icmpge 5
         4: .line 270
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.array:[D
            iload 1 /* index */
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.array:[D
            iload 1 /* index */
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.size:I
            iload 1 /* index */
            isub
            iconst_1
            isub
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         5: .line 272
      StackMap locals: double
      StackMap stack:
            aload 0 /* this */
            dup
            getfield com.google.protobuf.DoubleArrayList.size:I
            iconst_1
            isub
            putfield com.google.protobuf.DoubleArrayList.size:I
         6: .line 273
            aload 0 /* this */
            dup
            getfield com.google.protobuf.DoubleArrayList.modCount:I
            iconst_1
            iadd
            putfield com.google.protobuf.DoubleArrayList.modCount:I
         7: .line 274
            dload 2 /* value */
            invokestatic java.lang.Double.valueOf:(D)Ljava/lang/Double;
            areturn
        end local 2 // double value
        end local 1 // int index
        end local 0 // com.google.protobuf.DoubleArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Lcom/google/protobuf/DoubleArrayList;
            0    8     1  index  I
            3    8     2  value  D
    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.DoubleArrayList this
        start local 1 // int index
         0: .line 284
            iload 1 /* index */
            iflt 1
            iload 1 /* index */
            aload 0 /* this */
            getfield com.google.protobuf.DoubleArrayList.size:I
            if_icmplt 2
         1: .line 285
      StackMap locals:
      StackMap stack:
            new java.lang.IndexOutOfBoundsException
            dup
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual com.google.protobuf.DoubleArrayList.makeOutOfBoundsExceptionMessage:(I)Ljava/lang/String;
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 287
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int index
        end local 0 // com.google.protobuf.DoubleArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lcom/google/protobuf/DoubleArrayList;
            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.DoubleArrayList this
        start local 1 // int index
         0: .line 290
            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.DoubleArrayList.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.DoubleArrayList this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/protobuf/DoubleArrayList;
            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.Double
            invokevirtual com.google.protobuf.DoubleArrayList.set:(ILjava/lang/Double;)Ljava/lang/Double;
            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.DoubleArrayList.mutableCopyWithCapacity:(I)Lcom/google/protobuf/Internal$DoubleList;
            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.DoubleArrayList.get:(I)Ljava/lang/Double;
            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.DoubleArrayList.remove:(I)Ljava/lang/Double;
            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.Double
            invokevirtual com.google.protobuf.DoubleArrayList.add:(ILjava/lang/Double;)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.Double
            invokevirtual com.google.protobuf.DoubleArrayList.add:(Ljava/lang/Double;)Z
            ireturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lcom/google/protobuf/AbstractProtobufList<Ljava/lang/Double;>;Lcom/google/protobuf/Internal$DoubleList;Ljava/util/RandomAccess;Lcom/google/protobuf/PrimitiveNonBoxingCollection;
SourceFile: "DoubleArrayList.java"
InnerClasses:
  public abstract DoubleList = com.google.protobuf.Internal$DoubleList of com.google.protobuf.Internal
  public abstract ProtobufList = com.google.protobuf.Internal$ProtobufList of com.google.protobuf.Internal