abstract class io.netty.buffer.AbstractUnpooledSlicedByteBuf extends io.netty.buffer.AbstractDerivedByteBuf
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: io.netty.buffer.AbstractUnpooledSlicedByteBuf
  super_class: io.netty.buffer.AbstractDerivedByteBuf
{
  private final io.netty.buffer.ByteBuf buffer;
    descriptor: Lio/netty/buffer/ByteBuf;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final int adjustment;
    descriptor: I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  void <init>(io.netty.buffer.ByteBuf, int, int);
    descriptor: (Lio/netty/buffer/ByteBuf;II)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // io.netty.buffer.ByteBuf buffer
        start local 2 // int index
        start local 3 // int length
         0: .line 37
            aload 0 /* this */
            iload 3 /* length */
            invokespecial io.netty.buffer.AbstractDerivedByteBuf.<init>:(I)V
         1: .line 38
            iload 2 /* index */
            iload 3 /* length */
            aload 1 /* buffer */
            invokestatic io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkSliceOutOfBounds:(IILio/netty/buffer/ByteBuf;)V
         2: .line 40
            aload 1 /* buffer */
            instanceof io.netty.buffer.AbstractUnpooledSlicedByteBuf
            ifeq 6
         3: .line 41
            aload 0 /* this */
            aload 1 /* buffer */
            checkcast io.netty.buffer.AbstractUnpooledSlicedByteBuf
            getfield io.netty.buffer.AbstractUnpooledSlicedByteBuf.buffer:Lio/netty/buffer/ByteBuf;
            putfield io.netty.buffer.AbstractUnpooledSlicedByteBuf.buffer:Lio/netty/buffer/ByteBuf;
         4: .line 42
            aload 0 /* this */
            aload 1 /* buffer */
            checkcast io.netty.buffer.AbstractUnpooledSlicedByteBuf
            getfield io.netty.buffer.AbstractUnpooledSlicedByteBuf.adjustment:I
            iload 2 /* index */
            iadd
            putfield io.netty.buffer.AbstractUnpooledSlicedByteBuf.adjustment:I
         5: .line 43
            goto 12
      StackMap locals: io.netty.buffer.AbstractUnpooledSlicedByteBuf io.netty.buffer.ByteBuf int int
      StackMap stack:
         6: aload 1 /* buffer */
            instanceof io.netty.buffer.DuplicatedByteBuf
            ifeq 10
         7: .line 44
            aload 0 /* this */
            aload 1 /* buffer */
            invokevirtual io.netty.buffer.ByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            putfield io.netty.buffer.AbstractUnpooledSlicedByteBuf.buffer:Lio/netty/buffer/ByteBuf;
         8: .line 45
            aload 0 /* this */
            iload 2 /* index */
            putfield io.netty.buffer.AbstractUnpooledSlicedByteBuf.adjustment:I
         9: .line 46
            goto 12
        10: .line 47
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* buffer */
            putfield io.netty.buffer.AbstractUnpooledSlicedByteBuf.buffer:Lio/netty/buffer/ByteBuf;
        11: .line 48
            aload 0 /* this */
            iload 2 /* index */
            putfield io.netty.buffer.AbstractUnpooledSlicedByteBuf.adjustment:I
        12: .line 51
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.initLength:(I)V
        13: .line 52
            aload 0 /* this */
            iload 3 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.writerIndex:(I)Lio/netty/buffer/ByteBuf;
            pop
        14: .line 53
            return
        end local 3 // int length
        end local 2 // int index
        end local 1 // io.netty.buffer.ByteBuf buffer
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   15     0    this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0   15     1  buffer  Lio/netty/buffer/ByteBuf;
            0   15     2   index  I
            0   15     3  length  I
    MethodParameters:
        Name  Flags
      buffer  
      index   
      length  

  void initLength(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int length
         0: .line 60
            return
        end local 1 // int length
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    1     1  length  I
    MethodParameters:
        Name  Flags
      length  

  int length();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
         0: .line 63
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.capacity:()I
            ireturn
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;

  public io.netty.buffer.ByteBuf unwrap();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
         0: .line 68
            aload 0 /* this */
            getfield io.netty.buffer.AbstractUnpooledSlicedByteBuf.buffer:Lio/netty/buffer/ByteBuf;
            areturn
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;

  public io.netty.buffer.ByteBufAllocator alloc();
    descriptor: ()Lio/netty/buffer/ByteBufAllocator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
         0: .line 73
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.alloc:()Lio/netty/buffer/ByteBufAllocator;
            areturn
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;

  public java.nio.ByteOrder order();
    descriptor: ()Ljava/nio/ByteOrder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
         0: .line 79
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.order:()Ljava/nio/ByteOrder;
            areturn
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
    RuntimeVisibleAnnotations: 
      java.lang.Deprecated()

  public boolean isDirect();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
         0: .line 84
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.isDirect:()Z
            ireturn
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;

  public io.netty.buffer.ByteBuf capacity(int);
    descriptor: (I)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int newCapacity
         0: .line 89
            new java.lang.UnsupportedOperationException
            dup
            ldc "sliced buffer"
            invokespecial java.lang.UnsupportedOperationException.<init>:(Ljava/lang/String;)V
            athrow
        end local 1 // int newCapacity
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    1     1  newCapacity  I
    MethodParameters:
             Name  Flags
      newCapacity  

  public boolean hasArray();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
         0: .line 94
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.hasArray:()Z
            ireturn
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;

  public byte[] array();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
         0: .line 99
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.array:()[B
            areturn
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;

  public int arrayOffset();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
         0: .line 104
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.arrayOffset:()I
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            ireturn
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;

  public boolean hasMemoryAddress();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
         0: .line 109
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.hasMemoryAddress:()Z
            ireturn
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;

  public long memoryAddress();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
         0: .line 114
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.memoryAddress:()J
            aload 0 /* this */
            getfield io.netty.buffer.AbstractUnpooledSlicedByteBuf.adjustment:I
            i2l
            ladd
            lreturn
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;

  public byte getByte(int);
    descriptor: (I)B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 119
            aload 0 /* this */
            iload 1 /* index */
            iconst_1
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 120
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.getByte:(I)B
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected byte _getByte(int);
    descriptor: (I)B
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 125
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.getByte:(I)B
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public short getShort(int);
    descriptor: (I)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 130
            aload 0 /* this */
            iload 1 /* index */
            iconst_2
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 131
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.getShort:(I)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected short _getShort(int);
    descriptor: (I)S
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 136
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.getShort:(I)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public short getShortLE(int);
    descriptor: (I)S
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 141
            aload 0 /* this */
            iload 1 /* index */
            iconst_2
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 142
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.getShortLE:(I)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected short _getShortLE(int);
    descriptor: (I)S
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 147
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.getShortLE:(I)S
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getUnsignedMedium(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 152
            aload 0 /* this */
            iload 1 /* index */
            iconst_3
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 153
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedMedium:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getUnsignedMedium(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 158
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedMedium:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getUnsignedMediumLE(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 163
            aload 0 /* this */
            iload 1 /* index */
            iconst_3
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 164
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedMediumLE:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getUnsignedMediumLE(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 169
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.getUnsignedMediumLE:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getInt(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 174
            aload 0 /* this */
            iload 1 /* index */
            iconst_4
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 175
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.getInt:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getInt(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 180
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.getInt:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public int getIntLE(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 185
            aload 0 /* this */
            iload 1 /* index */
            iconst_4
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 186
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.getIntLE:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected int _getIntLE(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 191
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.getIntLE:(I)I
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public long getLong(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 196
            aload 0 /* this */
            iload 1 /* index */
            bipush 8
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 197
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.getLong:(I)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected long _getLong(int);
    descriptor: (I)J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 202
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.getLong:(I)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public long getLongLE(int);
    descriptor: (I)J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 207
            aload 0 /* this */
            iload 1 /* index */
            bipush 8
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 208
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.getLongLE:(I)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1  index  I
    MethodParameters:
       Name  Flags
      index  

  protected long _getLongLE(int);
    descriptor: (I)J
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 213
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.getLongLE:(I)J
            lreturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public io.netty.buffer.ByteBuf duplicate();
    descriptor: ()Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
         0: .line 218
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.duplicate:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.readerIndex:()I
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.writerIndex:()I
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            invokevirtual io.netty.buffer.ByteBuf.setIndex:(II)Lio/netty/buffer/ByteBuf;
            areturn
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;

  public io.netty.buffer.ByteBuf copy(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 223
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 224
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.copy:(II)Lio/netty/buffer/ByteBuf;
            areturn
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1   index  I
            0    2     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public io.netty.buffer.ByteBuf slice(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 229
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 230
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.slice:(II)Lio/netty/buffer/ByteBuf;
            areturn
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1   index  I
            0    2     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public io.netty.buffer.ByteBuf getBytes(int, io.netty.buffer.ByteBuf, int, int);
    descriptor: (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // io.netty.buffer.ByteBuf dst
        start local 3 // int dstIndex
        start local 4 // int length
         0: .line 235
            aload 0 /* this */
            iload 1 /* index */
            iload 4 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 236
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            aload 2 /* dst */
            iload 3 /* dstIndex */
            iload 4 /* length */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 237
            aload 0 /* this */
            areturn
        end local 4 // int length
        end local 3 // int dstIndex
        end local 2 // io.netty.buffer.ByteBuf dst
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    3     1     index  I
            0    3     2       dst  Lio/netty/buffer/ByteBuf;
            0    3     3  dstIndex  I
            0    3     4    length  I
    MethodParameters:
          Name  Flags
      index     
      dst       
      dstIndex  
      length    

  public io.netty.buffer.ByteBuf getBytes(int, byte[], int, int);
    descriptor: (I[BII)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // byte[] dst
        start local 3 // int dstIndex
        start local 4 // int length
         0: .line 242
            aload 0 /* this */
            iload 1 /* index */
            iload 4 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 243
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            aload 2 /* dst */
            iload 3 /* dstIndex */
            iload 4 /* length */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(I[BII)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 244
            aload 0 /* this */
            areturn
        end local 4 // int length
        end local 3 // int dstIndex
        end local 2 // byte[] dst
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    3     1     index  I
            0    3     2       dst  [B
            0    3     3  dstIndex  I
            0    3     4    length  I
    MethodParameters:
          Name  Flags
      index     
      dst       
      dstIndex  
      length    

  public io.netty.buffer.ByteBuf getBytes(int, java.nio.ByteBuffer);
    descriptor: (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // java.nio.ByteBuffer dst
         0: .line 249
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* dst */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 250
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            aload 2 /* dst */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 251
            aload 0 /* this */
            areturn
        end local 2 // java.nio.ByteBuffer dst
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    3     1  index  I
            0    3     2    dst  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      index  
      dst    

  public io.netty.buffer.ByteBuf setByte(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 256
            aload 0 /* this */
            iload 1 /* index */
            iconst_1
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 257
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setByte:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 258
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    3     1  index  I
            0    3     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public java.lang.CharSequence getCharSequence(int, int, java.nio.charset.Charset);
    descriptor: (IILjava/nio/charset/Charset;)Ljava/lang/CharSequence;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int length
        start local 3 // java.nio.charset.Charset charset
         0: .line 263
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 264
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* length */
            aload 3 /* charset */
            invokevirtual io.netty.buffer.ByteBuf.getCharSequence:(IILjava/nio/charset/Charset;)Ljava/lang/CharSequence;
            areturn
        end local 3 // java.nio.charset.Charset charset
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1    index  I
            0    2     2   length  I
            0    2     3  charset  Ljava/nio/charset/Charset;
    MethodParameters:
         Name  Flags
      index    
      length   
      charset  

  protected void _setByte(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 269
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setByte:(II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 270
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setShort(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 274
            aload 0 /* this */
            iload 1 /* index */
            iconst_2
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 275
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setShort:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 276
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    3     1  index  I
            0    3     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setShort(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 281
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setShort:(II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 282
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setShortLE(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 286
            aload 0 /* this */
            iload 1 /* index */
            iconst_2
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 287
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setShortLE:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 288
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    3     1  index  I
            0    3     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setShortLE(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 293
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setShortLE:(II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 294
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setMedium(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 298
            aload 0 /* this */
            iload 1 /* index */
            iconst_3
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 299
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setMedium:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 300
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    3     1  index  I
            0    3     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setMedium(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 305
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setMedium:(II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 306
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setMediumLE(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 310
            aload 0 /* this */
            iload 1 /* index */
            iconst_3
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 311
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setMediumLE:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 312
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    3     1  index  I
            0    3     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setMediumLE(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 317
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setMediumLE:(II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 318
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setInt(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 322
            aload 0 /* this */
            iload 1 /* index */
            iconst_4
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 323
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setInt:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 324
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    3     1  index  I
            0    3     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setInt(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 329
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setInt:(II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 330
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setIntLE(int, int);
    descriptor: (II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 334
            aload 0 /* this */
            iload 1 /* index */
            iconst_4
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 335
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setIntLE:(II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 336
            aload 0 /* this */
            areturn
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    3     1  index  I
            0    3     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setIntLE(int, int);
    descriptor: (II)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int value
         0: .line 341
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setIntLE:(II)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 342
            return
        end local 2 // int value
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1  index  I
            0    2     2  value  I
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setLong(int, long);
    descriptor: (IJ)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 346
            aload 0 /* this */
            iload 1 /* index */
            bipush 8
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 347
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            lload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setLong:(IJ)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 348
            aload 0 /* this */
            areturn
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    3     1  index  I
            0    3     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setLong(int, long);
    descriptor: (IJ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 353
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            lload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setLong:(IJ)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 354
            return
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1  index  I
            0    2     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setLongLE(int, long);
    descriptor: (IJ)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 358
            aload 0 /* this */
            iload 1 /* index */
            bipush 8
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 359
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            lload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setLongLE:(IJ)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 360
            aload 0 /* this */
            areturn
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    3     1  index  I
            0    3     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  protected void _setLongLE(int, long);
    descriptor: (IJ)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // long value
         0: .line 365
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            lload 2 /* value */
            invokevirtual io.netty.buffer.ByteBuf.setLongLE:(IJ)Lio/netty/buffer/ByteBuf;
            pop
         1: .line 366
            return
        end local 2 // long value
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1  index  I
            0    2     2  value  J
    MethodParameters:
       Name  Flags
      index  
      value  

  public io.netty.buffer.ByteBuf setBytes(int, byte[], int, int);
    descriptor: (I[BII)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // byte[] src
        start local 3 // int srcIndex
        start local 4 // int length
         0: .line 370
            aload 0 /* this */
            iload 1 /* index */
            iload 4 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 371
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            aload 2 /* src */
            iload 3 /* srcIndex */
            iload 4 /* length */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(I[BII)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 372
            aload 0 /* this */
            areturn
        end local 4 // int length
        end local 3 // int srcIndex
        end local 2 // byte[] src
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    3     1     index  I
            0    3     2       src  [B
            0    3     3  srcIndex  I
            0    3     4    length  I
    MethodParameters:
          Name  Flags
      index     
      src       
      srcIndex  
      length    

  public io.netty.buffer.ByteBuf setBytes(int, io.netty.buffer.ByteBuf, int, int);
    descriptor: (ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // io.netty.buffer.ByteBuf src
        start local 3 // int srcIndex
        start local 4 // int length
         0: .line 377
            aload 0 /* this */
            iload 1 /* index */
            iload 4 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 378
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            aload 2 /* src */
            iload 3 /* srcIndex */
            iload 4 /* length */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(ILio/netty/buffer/ByteBuf;II)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 379
            aload 0 /* this */
            areturn
        end local 4 // int length
        end local 3 // int srcIndex
        end local 2 // io.netty.buffer.ByteBuf src
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    3     0      this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    3     1     index  I
            0    3     2       src  Lio/netty/buffer/ByteBuf;
            0    3     3  srcIndex  I
            0    3     4    length  I
    MethodParameters:
          Name  Flags
      index     
      src       
      srcIndex  
      length    

  public io.netty.buffer.ByteBuf setBytes(int, java.nio.ByteBuffer);
    descriptor: (ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // java.nio.ByteBuffer src
         0: .line 384
            aload 0 /* this */
            iload 1 /* index */
            aload 2 /* src */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 385
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            aload 2 /* src */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(ILjava/nio/ByteBuffer;)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 386
            aload 0 /* this */
            areturn
        end local 2 // java.nio.ByteBuffer src
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    3     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    3     1  index  I
            0    3     2    src  Ljava/nio/ByteBuffer;
    MethodParameters:
       Name  Flags
      index  
      src    

  public io.netty.buffer.ByteBuf getBytes(int, java.io.OutputStream, int);
    descriptor: (ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // java.io.OutputStream out
        start local 3 // int length
         0: .line 391
            aload 0 /* this */
            iload 1 /* index */
            iload 3 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 392
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            aload 2 /* out */
            iload 3 /* length */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILjava/io/OutputStream;I)Lio/netty/buffer/ByteBuf;
            pop
         2: .line 393
            aload 0 /* this */
            areturn
        end local 3 // int length
        end local 2 // java.io.OutputStream out
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    3     1   index  I
            0    3     2     out  Ljava/io/OutputStream;
            0    3     3  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      index   
      out     
      length  

  public int getBytes(int, java.nio.channels.GatheringByteChannel, int);
    descriptor: (ILjava/nio/channels/GatheringByteChannel;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.GatheringByteChannel out
        start local 3 // int length
         0: .line 398
            aload 0 /* this */
            iload 1 /* index */
            iload 3 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 399
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            aload 2 /* out */
            iload 3 /* length */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILjava/nio/channels/GatheringByteChannel;I)I
            ireturn
        end local 3 // int length
        end local 2 // java.nio.channels.GatheringByteChannel out
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1   index  I
            0    2     2     out  Ljava/nio/channels/GatheringByteChannel;
            0    2     3  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      index   
      out     
      length  

  public int getBytes(int, java.nio.channels.FileChannel, long, int);
    descriptor: (ILjava/nio/channels/FileChannel;JI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=5
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.FileChannel out
        start local 3 // long position
        start local 5 // int length
         0: .line 404
            aload 0 /* this */
            iload 1 /* index */
            iload 5 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 405
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            aload 2 /* out */
            lload 3 /* position */
            iload 5 /* length */
            invokevirtual io.netty.buffer.ByteBuf.getBytes:(ILjava/nio/channels/FileChannel;JI)I
            ireturn
        end local 5 // int length
        end local 3 // long position
        end local 2 // java.nio.channels.FileChannel out
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1     index  I
            0    2     2       out  Ljava/nio/channels/FileChannel;
            0    2     3  position  J
            0    2     5    length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      index     
      out       
      position  
      length    

  public int setBytes(int, java.io.InputStream, int);
    descriptor: (ILjava/io/InputStream;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // java.io.InputStream in
        start local 3 // int length
         0: .line 410
            aload 0 /* this */
            iload 1 /* index */
            iload 3 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 411
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            aload 2 /* in */
            iload 3 /* length */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(ILjava/io/InputStream;I)I
            ireturn
        end local 3 // int length
        end local 2 // java.io.InputStream in
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1   index  I
            0    2     2      in  Ljava/io/InputStream;
            0    2     3  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      index   
      in      
      length  

  public int setBytes(int, java.nio.channels.ScatteringByteChannel, int);
    descriptor: (ILjava/nio/channels/ScatteringByteChannel;I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.ScatteringByteChannel in
        start local 3 // int length
         0: .line 416
            aload 0 /* this */
            iload 1 /* index */
            iload 3 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 417
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            aload 2 /* in */
            iload 3 /* length */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(ILjava/nio/channels/ScatteringByteChannel;I)I
            ireturn
        end local 3 // int length
        end local 2 // java.nio.channels.ScatteringByteChannel in
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1   index  I
            0    2     2      in  Ljava/nio/channels/ScatteringByteChannel;
            0    2     3  length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      index   
      in      
      length  

  public int setBytes(int, java.nio.channels.FileChannel, long, int);
    descriptor: (ILjava/nio/channels/FileChannel;JI)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=5
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // java.nio.channels.FileChannel in
        start local 3 // long position
        start local 5 // int length
         0: .line 422
            aload 0 /* this */
            iload 1 /* index */
            iload 5 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 423
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            aload 2 /* in */
            lload 3 /* position */
            iload 5 /* length */
            invokevirtual io.netty.buffer.ByteBuf.setBytes:(ILjava/nio/channels/FileChannel;JI)I
            ireturn
        end local 5 // int length
        end local 3 // long position
        end local 2 // java.nio.channels.FileChannel in
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    2     0      this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1     index  I
            0    2     2        in  Ljava/nio/channels/FileChannel;
            0    2     3  position  J
            0    2     5    length  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
          Name  Flags
      index     
      in        
      position  
      length    

  public int nioBufferCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
         0: .line 428
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            invokevirtual io.netty.buffer.ByteBuf.nioBufferCount:()I
            ireturn
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;

  public java.nio.ByteBuffer nioBuffer(int, int);
    descriptor: (II)Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 433
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 434
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.nioBuffer:(II)Ljava/nio/ByteBuffer;
            areturn
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1   index  I
            0    2     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public java.nio.ByteBuffer[] nioBuffers(int, int);
    descriptor: (II)[Ljava/nio/ByteBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int length
         0: .line 439
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 440
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* length */
            invokevirtual io.netty.buffer.ByteBuf.nioBuffers:(II)[Ljava/nio/ByteBuffer;
            areturn
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    2     1   index  I
            0    2     2  length  I
    MethodParameters:
        Name  Flags
      index   
      length  

  public int forEachByte(int, int, io.netty.util.ByteProcessor);
    descriptor: (IILio/netty/util/ByteProcessor;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int length
        start local 3 // io.netty.util.ByteProcessor processor
         0: .line 445
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 446
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* length */
            aload 3 /* processor */
            invokevirtual io.netty.buffer.ByteBuf.forEachByte:(IILio/netty/util/ByteProcessor;)I
            istore 4 /* ret */
        start local 4 // int ret
         2: .line 447
            iload 4 /* ret */
            aload 0 /* this */
            getfield io.netty.buffer.AbstractUnpooledSlicedByteBuf.adjustment:I
            if_icmplt 4
         3: .line 448
            iload 4 /* ret */
            aload 0 /* this */
            getfield io.netty.buffer.AbstractUnpooledSlicedByteBuf.adjustment:I
            isub
            ireturn
         4: .line 450
      StackMap locals: int
      StackMap stack:
            iconst_m1
            ireturn
        end local 4 // int ret
        end local 3 // io.netty.util.ByteProcessor processor
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    5     1      index  I
            0    5     2     length  I
            0    5     3  processor  Lio/netty/util/ByteProcessor;
            2    5     4        ret  I
    MethodParameters:
           Name  Flags
      index      
      length     
      processor  

  public int forEachByteDesc(int, int, io.netty.util.ByteProcessor);
    descriptor: (IILio/netty/util/ByteProcessor;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
        start local 2 // int length
        start local 3 // io.netty.util.ByteProcessor processor
         0: .line 456
            aload 0 /* this */
            iload 1 /* index */
            iload 2 /* length */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.checkIndex0:(II)V
         1: .line 457
            aload 0 /* this */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.unwrap:()Lio/netty/buffer/ByteBuf;
            aload 0 /* this */
            iload 1 /* index */
            invokevirtual io.netty.buffer.AbstractUnpooledSlicedByteBuf.idx:(I)I
            iload 2 /* length */
            aload 3 /* processor */
            invokevirtual io.netty.buffer.ByteBuf.forEachByteDesc:(IILio/netty/util/ByteProcessor;)I
            istore 4 /* ret */
        start local 4 // int ret
         2: .line 458
            iload 4 /* ret */
            aload 0 /* this */
            getfield io.netty.buffer.AbstractUnpooledSlicedByteBuf.adjustment:I
            if_icmplt 4
         3: .line 459
            iload 4 /* ret */
            aload 0 /* this */
            getfield io.netty.buffer.AbstractUnpooledSlicedByteBuf.adjustment:I
            isub
            ireturn
         4: .line 461
      StackMap locals: int
      StackMap stack:
            iconst_m1
            ireturn
        end local 4 // int ret
        end local 3 // io.netty.util.ByteProcessor processor
        end local 2 // int length
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    5     0       this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    5     1      index  I
            0    5     2     length  I
            0    5     3  processor  Lio/netty/util/ByteProcessor;
            2    5     4        ret  I
    MethodParameters:
           Name  Flags
      index      
      length     
      processor  

  final int idx(int);
    descriptor: (I)I
    flags: (0x0010) ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
        start local 1 // int index
         0: .line 469
            iload 1 /* index */
            aload 0 /* this */
            getfield io.netty.buffer.AbstractUnpooledSlicedByteBuf.adjustment:I
            iadd
            ireturn
        end local 1 // int index
        end local 0 // io.netty.buffer.AbstractUnpooledSlicedByteBuf this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lio/netty/buffer/AbstractUnpooledSlicedByteBuf;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  static void checkSliceOutOfBounds(int, int, io.netty.buffer.ByteBuf);
    descriptor: (IILio/netty/buffer/ByteBuf;)V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // int index
        start local 1 // int length
        start local 2 // io.netty.buffer.ByteBuf buffer
         0: .line 473
            iload 0 /* index */
            iload 1 /* length */
            aload 2 /* buffer */
            invokevirtual io.netty.buffer.ByteBuf.capacity:()I
            invokestatic io.netty.util.internal.MathUtil.isOutOfBounds:(III)Z
            ifeq 2
         1: .line 474
            new java.lang.IndexOutOfBoundsException
            dup
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            aload 2 /* buffer */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc ".slice("
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 0 /* index */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 1 /* length */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            bipush 41
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IndexOutOfBoundsException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 476
      StackMap locals:
      StackMap stack:
            return
        end local 2 // io.netty.buffer.ByteBuf buffer
        end local 1 // int length
        end local 0 // int index
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0   index  I
            0    3     1  length  I
            0    3     2  buffer  Lio/netty/buffer/ByteBuf;
    MethodParameters:
        Name  Flags
      index   
      length  
      buffer  
}
SourceFile: "AbstractUnpooledSlicedByteBuf.java"