public class io.netty.handler.codec.socks.SocksAuthResponseDecoder extends io.netty.handler.codec.ReplayingDecoder<io.netty.handler.codec.socks.SocksAuthResponseDecoder$State>
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: io.netty.handler.codec.socks.SocksAuthResponseDecoder
  super_class: io.netty.handler.codec.ReplayingDecoder
{
  private static volatile int[] $SWITCH_TABLE$io$netty$handler$codec$socks$SocksAuthResponseDecoder$State;
    descriptor: [I
    flags: (0x104a) ACC_PRIVATE, ACC_STATIC, ACC_VOLATILE, ACC_SYNTHETIC

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // io.netty.handler.codec.socks.SocksAuthResponseDecoder this
         0: .line 32
            aload 0 /* this */
            getstatic io.netty.handler.codec.socks.SocksAuthResponseDecoder$State.CHECK_PROTOCOL_VERSION:Lio/netty/handler/codec/socks/SocksAuthResponseDecoder$State;
            invokespecial io.netty.handler.codec.ReplayingDecoder.<init>:(Ljava/lang/Object;)V
         1: .line 33
            return
        end local 0 // io.netty.handler.codec.socks.SocksAuthResponseDecoder this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lio/netty/handler/codec/socks/SocksAuthResponseDecoder;

  protected void decode(io.netty.channel.ChannelHandlerContext, io.netty.buffer.ByteBuf, java.util.List<java.lang.Object>);
    descriptor: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List;)V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=5, args_size=4
        start local 0 // io.netty.handler.codec.socks.SocksAuthResponseDecoder this
        start local 1 // io.netty.channel.ChannelHandlerContext channelHandlerContext
        start local 2 // io.netty.buffer.ByteBuf byteBuf
        start local 3 // java.util.List out
         0: .line 38
            invokestatic io.netty.handler.codec.socks.SocksAuthResponseDecoder.$SWITCH_TABLE$io$netty$handler$codec$socks$SocksAuthResponseDecoder$State:()[I
            aload 0 /* this */
            invokevirtual io.netty.handler.codec.socks.SocksAuthResponseDecoder.state:()Ljava/lang/Object;
            checkcast io.netty.handler.codec.socks.SocksAuthResponseDecoder$State
            invokevirtual io.netty.handler.codec.socks.SocksAuthResponseDecoder$State.ordinal:()I
            iaload
            tableswitch { // 1 - 2
                    1: 1
                    2: 5
              default: 8
          }
         1: .line 40
      StackMap locals:
      StackMap stack:
            aload 2 /* byteBuf */
            invokevirtual io.netty.buffer.ByteBuf.readByte:()B
            getstatic io.netty.handler.codec.socks.SocksSubnegotiationVersion.AUTH_PASSWORD:Lio/netty/handler/codec/socks/SocksSubnegotiationVersion;
            invokevirtual io.netty.handler.codec.socks.SocksSubnegotiationVersion.byteValue:()B
            if_icmpeq 4
         2: .line 41
            aload 3 /* out */
            getstatic io.netty.handler.codec.socks.SocksCommonUtils.UNKNOWN_SOCKS_RESPONSE:Lio/netty/handler/codec/socks/SocksResponse;
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         3: .line 42
            goto 9
         4: .line 44
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getstatic io.netty.handler.codec.socks.SocksAuthResponseDecoder$State.READ_AUTH_RESPONSE:Lio/netty/handler/codec/socks/SocksAuthResponseDecoder$State;
            invokevirtual io.netty.handler.codec.socks.SocksAuthResponseDecoder.checkpoint:(Ljava/lang/Object;)V
         5: .line 47
      StackMap locals:
      StackMap stack:
            aload 2 /* byteBuf */
            invokevirtual io.netty.buffer.ByteBuf.readByte:()B
            invokestatic io.netty.handler.codec.socks.SocksAuthStatus.valueOf:(B)Lio/netty/handler/codec/socks/SocksAuthStatus;
            astore 4 /* authStatus */
        start local 4 // io.netty.handler.codec.socks.SocksAuthStatus authStatus
         6: .line 48
            aload 3 /* out */
            new io.netty.handler.codec.socks.SocksAuthResponse
            dup
            aload 4 /* authStatus */
            invokespecial io.netty.handler.codec.socks.SocksAuthResponse.<init>:(Lio/netty/handler/codec/socks/SocksAuthStatus;)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         7: .line 49
            goto 9
        end local 4 // io.netty.handler.codec.socks.SocksAuthStatus authStatus
         8: .line 52
      StackMap locals:
      StackMap stack:
            new java.lang.Error
            dup
            invokespecial java.lang.Error.<init>:()V
            athrow
         9: .line 55
      StackMap locals:
      StackMap stack:
            aload 1 /* channelHandlerContext */
            invokeinterface io.netty.channel.ChannelHandlerContext.pipeline:()Lio/netty/channel/ChannelPipeline;
            aload 0 /* this */
            invokeinterface io.netty.channel.ChannelPipeline.remove:(Lio/netty/channel/ChannelHandler;)Lio/netty/channel/ChannelPipeline;
            pop
        10: .line 56
            return
        end local 3 // java.util.List out
        end local 2 // io.netty.buffer.ByteBuf byteBuf
        end local 1 // io.netty.channel.ChannelHandlerContext channelHandlerContext
        end local 0 // io.netty.handler.codec.socks.SocksAuthResponseDecoder this
      LocalVariableTable:
        Start  End  Slot                   Name  Signature
            0   11     0                   this  Lio/netty/handler/codec/socks/SocksAuthResponseDecoder;
            0   11     1  channelHandlerContext  Lio/netty/channel/ChannelHandlerContext;
            0   11     2                byteBuf  Lio/netty/buffer/ByteBuf;
            0   11     3                    out  Ljava/util/List<Ljava/lang/Object;>;
            6    8     4             authStatus  Lio/netty/handler/codec/socks/SocksAuthStatus;
    Exceptions:
      throws java.lang.Exception
    Signature: (Lio/netty/channel/ChannelHandlerContext;Lio/netty/buffer/ByteBuf;Ljava/util/List<Ljava/lang/Object;>;)V
    MethodParameters:
                       Name  Flags
      channelHandlerContext  
      byteBuf                
      out                    

  static int[] $SWITCH_TABLE$io$netty$handler$codec$socks$SocksAuthResponseDecoder$State();
    descriptor: ()[I
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=3, locals=1, args_size=0
         0: .line 29
            getstatic io.netty.handler.codec.socks.SocksAuthResponseDecoder.$SWITCH_TABLE$io$netty$handler$codec$socks$SocksAuthResponseDecoder$State:[I
            dup
            ifnull 1
            areturn
      StackMap locals:
      StackMap stack: int[]
         1: pop
            invokestatic io.netty.handler.codec.socks.SocksAuthResponseDecoder$State.values:()[Lio/netty/handler/codec/socks/SocksAuthResponseDecoder$State;
            arraylength
            newarray 10
            astore 0
         2: aload 0
            getstatic io.netty.handler.codec.socks.SocksAuthResponseDecoder$State.CHECK_PROTOCOL_VERSION:Lio/netty/handler/codec/socks/SocksAuthResponseDecoder$State;
            invokevirtual io.netty.handler.codec.socks.SocksAuthResponseDecoder$State.ordinal:()I
            iconst_1
            iastore
         3: goto 5
      StackMap locals: int[]
      StackMap stack: java.lang.NoSuchFieldError
         4: pop
      StackMap locals:
      StackMap stack:
         5: aload 0
            getstatic io.netty.handler.codec.socks.SocksAuthResponseDecoder$State.READ_AUTH_RESPONSE:Lio/netty/handler/codec/socks/SocksAuthResponseDecoder$State;
            invokevirtual io.netty.handler.codec.socks.SocksAuthResponseDecoder$State.ordinal:()I
            iconst_2
            iastore
         6: goto 8
      StackMap locals:
      StackMap stack: java.lang.NoSuchFieldError
         7: pop
      StackMap locals:
      StackMap stack:
         8: aload 0
            dup
            putstatic io.netty.handler.codec.socks.SocksAuthResponseDecoder.$SWITCH_TABLE$io$netty$handler$codec$socks$SocksAuthResponseDecoder$State:[I
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
      Exception table:
        from    to  target  type
           2     3       4  Class java.lang.NoSuchFieldError
           5     6       7  Class java.lang.NoSuchFieldError
}
Signature: Lio/netty/handler/codec/ReplayingDecoder<Lio/netty/handler/codec/socks/SocksAuthResponseDecoder$State;>;
SourceFile: "SocksAuthResponseDecoder.java"
NestMembers:
  io.netty.handler.codec.socks.SocksAuthResponseDecoder$State
InnerClasses:
  final State = io.netty.handler.codec.socks.SocksAuthResponseDecoder$State of io.netty.handler.codec.socks.SocksAuthResponseDecoder