class com.google.common.io.ByteStreams$ByteArrayDataOutputStream implements com.google.common.io.ByteArrayDataOutput
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.google.common.io.ByteStreams$ByteArrayDataOutputStream
  super_class: java.lang.Object
{
  final java.io.DataOutput output;
    descriptor: Ljava/io/DataOutput;
    flags: (0x0010) ACC_FINAL

  final java.io.ByteArrayOutputStream byteArrayOutputStream;
    descriptor: Ljava/io/ByteArrayOutputStream;
    flags: (0x0010) ACC_FINAL

  void <init>(java.io.ByteArrayOutputStream);
    descriptor: (Ljava/io/ByteArrayOutputStream;)V
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
        start local 1 // java.io.ByteArrayOutputStream byteArrayOutputStream
         0: .line 503
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 504
            aload 0 /* this */
            aload 1 /* byteArrayOutputStream */
            putfield com.google.common.io.ByteStreams$ByteArrayDataOutputStream.byteArrayOutputStream:Ljava/io/ByteArrayOutputStream;
         2: .line 505
            aload 0 /* this */
            new java.io.DataOutputStream
            dup
            aload 1 /* byteArrayOutputStream */
            invokespecial java.io.DataOutputStream.<init>:(Ljava/io/OutputStream;)V
            putfield com.google.common.io.ByteStreams$ByteArrayDataOutputStream.output:Ljava/io/DataOutput;
         3: .line 506
            return
        end local 1 // java.io.ByteArrayOutputStream byteArrayOutputStream
        end local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0    4     0                   this  Lcom/google/common/io/ByteStreams$ByteArrayDataOutputStream;
            0    4     1  byteArrayOutputStream  Ljava/io/ByteArrayOutputStream;
    MethodParameters:
                       Name  Flags
      byteArrayOutputStream  

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
        start local 1 // int b
         0: .line 511
            aload 0 /* this */
            getfield com.google.common.io.ByteStreams$ByteArrayDataOutputStream.output:Ljava/io/DataOutput;
            iload 1 /* b */
            invokeinterface java.io.DataOutput.write:(I)V
         1: .line 512
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 2 /* impossible */
        start local 2 // java.io.IOException impossible
         3: .line 513
            new java.lang.AssertionError
            dup
            aload 2 /* impossible */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 2 // java.io.IOException impossible
         4: .line 515
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int b
        end local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/google/common/io/ByteStreams$ByteArrayDataOutputStream;
            0    5     1           b  I
            3    4     2  impossible  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public void write(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
        start local 1 // byte[] b
         0: .line 520
            aload 0 /* this */
            getfield com.google.common.io.ByteStreams$ByteArrayDataOutputStream.output:Ljava/io/DataOutput;
            aload 1 /* b */
            invokeinterface java.io.DataOutput.write:([B)V
         1: .line 521
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 2 /* impossible */
        start local 2 // java.io.IOException impossible
         3: .line 522
            new java.lang.AssertionError
            dup
            aload 2 /* impossible */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 2 // java.io.IOException impossible
         4: .line 524
      StackMap locals:
      StackMap stack:
            return
        end local 1 // byte[] b
        end local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/google/common/io/ByteStreams$ByteArrayDataOutputStream;
            0    5     1           b  [B
            3    4     2  impossible  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 529
            aload 0 /* this */
            getfield com.google.common.io.ByteStreams$ByteArrayDataOutputStream.output:Ljava/io/DataOutput;
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokeinterface java.io.DataOutput.write:([BII)V
         1: .line 530
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 4 /* impossible */
        start local 4 // java.io.IOException impossible
         3: .line 531
            new java.lang.AssertionError
            dup
            aload 4 /* impossible */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 4 // java.io.IOException impossible
         4: .line 533
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/google/common/io/ByteStreams$ByteArrayDataOutputStream;
            0    5     1           b  [B
            0    5     2         off  I
            0    5     3         len  I
            3    4     4  impossible  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public void writeBoolean(boolean);
    descriptor: (Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
        start local 1 // boolean v
         0: .line 538
            aload 0 /* this */
            getfield com.google.common.io.ByteStreams$ByteArrayDataOutputStream.output:Ljava/io/DataOutput;
            iload 1 /* v */
            invokeinterface java.io.DataOutput.writeBoolean:(Z)V
         1: .line 539
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 2 /* impossible */
        start local 2 // java.io.IOException impossible
         3: .line 540
            new java.lang.AssertionError
            dup
            aload 2 /* impossible */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 2 // java.io.IOException impossible
         4: .line 542
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean v
        end local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/google/common/io/ByteStreams$ByteArrayDataOutputStream;
            0    5     1           v  Z
            3    4     2  impossible  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public void writeByte(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
        start local 1 // int v
         0: .line 547
            aload 0 /* this */
            getfield com.google.common.io.ByteStreams$ByteArrayDataOutputStream.output:Ljava/io/DataOutput;
            iload 1 /* v */
            invokeinterface java.io.DataOutput.writeByte:(I)V
         1: .line 548
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 2 /* impossible */
        start local 2 // java.io.IOException impossible
         3: .line 549
            new java.lang.AssertionError
            dup
            aload 2 /* impossible */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 2 // java.io.IOException impossible
         4: .line 551
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int v
        end local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/google/common/io/ByteStreams$ByteArrayDataOutputStream;
            0    5     1           v  I
            3    4     2  impossible  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public void writeBytes(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
        start local 1 // java.lang.String s
         0: .line 556
            aload 0 /* this */
            getfield com.google.common.io.ByteStreams$ByteArrayDataOutputStream.output:Ljava/io/DataOutput;
            aload 1 /* s */
            invokeinterface java.io.DataOutput.writeBytes:(Ljava/lang/String;)V
         1: .line 557
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 2 /* impossible */
        start local 2 // java.io.IOException impossible
         3: .line 558
            new java.lang.AssertionError
            dup
            aload 2 /* impossible */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 2 // java.io.IOException impossible
         4: .line 560
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String s
        end local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/google/common/io/ByteStreams$ByteArrayDataOutputStream;
            0    5     1           s  Ljava/lang/String;
            3    4     2  impossible  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
      Name  Flags
      s     

  public void writeChar(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
        start local 1 // int v
         0: .line 565
            aload 0 /* this */
            getfield com.google.common.io.ByteStreams$ByteArrayDataOutputStream.output:Ljava/io/DataOutput;
            iload 1 /* v */
            invokeinterface java.io.DataOutput.writeChar:(I)V
         1: .line 566
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 2 /* impossible */
        start local 2 // java.io.IOException impossible
         3: .line 567
            new java.lang.AssertionError
            dup
            aload 2 /* impossible */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 2 // java.io.IOException impossible
         4: .line 569
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int v
        end local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/google/common/io/ByteStreams$ByteArrayDataOutputStream;
            0    5     1           v  I
            3    4     2  impossible  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public void writeChars(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
        start local 1 // java.lang.String s
         0: .line 574
            aload 0 /* this */
            getfield com.google.common.io.ByteStreams$ByteArrayDataOutputStream.output:Ljava/io/DataOutput;
            aload 1 /* s */
            invokeinterface java.io.DataOutput.writeChars:(Ljava/lang/String;)V
         1: .line 575
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 2 /* impossible */
        start local 2 // java.io.IOException impossible
         3: .line 576
            new java.lang.AssertionError
            dup
            aload 2 /* impossible */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 2 // java.io.IOException impossible
         4: .line 578
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String s
        end local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/google/common/io/ByteStreams$ByteArrayDataOutputStream;
            0    5     1           s  Ljava/lang/String;
            3    4     2  impossible  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
      Name  Flags
      s     

  public void writeDouble(double);
    descriptor: (D)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
        start local 1 // double v
         0: .line 583
            aload 0 /* this */
            getfield com.google.common.io.ByteStreams$ByteArrayDataOutputStream.output:Ljava/io/DataOutput;
            dload 1 /* v */
            invokeinterface java.io.DataOutput.writeDouble:(D)V
         1: .line 584
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 3 /* impossible */
        start local 3 // java.io.IOException impossible
         3: .line 585
            new java.lang.AssertionError
            dup
            aload 3 /* impossible */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 3 // java.io.IOException impossible
         4: .line 587
      StackMap locals:
      StackMap stack:
            return
        end local 1 // double v
        end local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/google/common/io/ByteStreams$ByteArrayDataOutputStream;
            0    5     1           v  D
            3    4     3  impossible  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public void writeFloat(float);
    descriptor: (F)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
        start local 1 // float v
         0: .line 592
            aload 0 /* this */
            getfield com.google.common.io.ByteStreams$ByteArrayDataOutputStream.output:Ljava/io/DataOutput;
            fload 1 /* v */
            invokeinterface java.io.DataOutput.writeFloat:(F)V
         1: .line 593
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 2 /* impossible */
        start local 2 // java.io.IOException impossible
         3: .line 594
            new java.lang.AssertionError
            dup
            aload 2 /* impossible */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 2 // java.io.IOException impossible
         4: .line 596
      StackMap locals:
      StackMap stack:
            return
        end local 1 // float v
        end local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/google/common/io/ByteStreams$ByteArrayDataOutputStream;
            0    5     1           v  F
            3    4     2  impossible  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public void writeInt(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
        start local 1 // int v
         0: .line 601
            aload 0 /* this */
            getfield com.google.common.io.ByteStreams$ByteArrayDataOutputStream.output:Ljava/io/DataOutput;
            iload 1 /* v */
            invokeinterface java.io.DataOutput.writeInt:(I)V
         1: .line 602
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 2 /* impossible */
        start local 2 // java.io.IOException impossible
         3: .line 603
            new java.lang.AssertionError
            dup
            aload 2 /* impossible */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 2 // java.io.IOException impossible
         4: .line 605
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int v
        end local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/google/common/io/ByteStreams$ByteArrayDataOutputStream;
            0    5     1           v  I
            3    4     2  impossible  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public void writeLong(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
        start local 1 // long v
         0: .line 610
            aload 0 /* this */
            getfield com.google.common.io.ByteStreams$ByteArrayDataOutputStream.output:Ljava/io/DataOutput;
            lload 1 /* v */
            invokeinterface java.io.DataOutput.writeLong:(J)V
         1: .line 611
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 3 /* impossible */
        start local 3 // java.io.IOException impossible
         3: .line 612
            new java.lang.AssertionError
            dup
            aload 3 /* impossible */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 3 // java.io.IOException impossible
         4: .line 614
      StackMap locals:
      StackMap stack:
            return
        end local 1 // long v
        end local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/google/common/io/ByteStreams$ByteArrayDataOutputStream;
            0    5     1           v  J
            3    4     3  impossible  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public void writeShort(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
        start local 1 // int v
         0: .line 619
            aload 0 /* this */
            getfield com.google.common.io.ByteStreams$ByteArrayDataOutputStream.output:Ljava/io/DataOutput;
            iload 1 /* v */
            invokeinterface java.io.DataOutput.writeShort:(I)V
         1: .line 620
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 2 /* impossible */
        start local 2 // java.io.IOException impossible
         3: .line 621
            new java.lang.AssertionError
            dup
            aload 2 /* impossible */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 2 // java.io.IOException impossible
         4: .line 623
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int v
        end local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/google/common/io/ByteStreams$ByteArrayDataOutputStream;
            0    5     1           v  I
            3    4     2  impossible  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public void writeUTF(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
        start local 1 // java.lang.String s
         0: .line 628
            aload 0 /* this */
            getfield com.google.common.io.ByteStreams$ByteArrayDataOutputStream.output:Ljava/io/DataOutput;
            aload 1 /* s */
            invokeinterface java.io.DataOutput.writeUTF:(Ljava/lang/String;)V
         1: .line 629
            goto 4
      StackMap locals:
      StackMap stack: java.io.IOException
         2: astore 2 /* impossible */
        start local 2 // java.io.IOException impossible
         3: .line 630
            new java.lang.AssertionError
            dup
            aload 2 /* impossible */
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 2 // java.io.IOException impossible
         4: .line 632
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.lang.String s
        end local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/google/common/io/ByteStreams$ByteArrayDataOutputStream;
            0    5     1           s  Ljava/lang/String;
            3    4     2  impossible  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           0     1       2  Class java.io.IOException
    MethodParameters:
      Name  Flags
      s     

  public byte[] toByteArray();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
         0: .line 636
            aload 0 /* this */
            getfield com.google.common.io.ByteStreams$ByteArrayDataOutputStream.byteArrayOutputStream:Ljava/io/ByteArrayOutputStream;
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            areturn
        end local 0 // com.google.common.io.ByteStreams$ByteArrayDataOutputStream this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/io/ByteStreams$ByteArrayDataOutputStream;
}
SourceFile: "ByteStreams.java"
NestHost: com.google.common.io.ByteStreams
InnerClasses:
  private ByteArrayDataOutputStream = com.google.common.io.ByteStreams$ByteArrayDataOutputStream of com.google.common.io.ByteStreams