public final class javax.smartcardio.CommandAPDU implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: javax.smartcardio.CommandAPDU
  super_class: java.lang.Object
{
  private static final long serialVersionUID;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 398698301286670877

  private static final int MAX_APDU_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 65544

  private byte[] apdu;
    descriptor: [B
    flags: (0x0002) ACC_PRIVATE

  private transient int nc;
    descriptor: I
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient int ne;
    descriptor: I
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  private transient int dataOffset;
    descriptor: I
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT

  public void <init>(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.smartcardio.CommandAPDU this
        start local 1 // byte[] apdu
         0: .line 96
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 97
            aload 0 /* this */
            aload 1 /* apdu */
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            putfield javax.smartcardio.CommandAPDU.apdu:[B
         2: .line 98
            aload 0 /* this */
            invokevirtual javax.smartcardio.CommandAPDU.parse:()V
         3: .line 99
            return
        end local 1 // byte[] apdu
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljavax/smartcardio/CommandAPDU;
            0    4     1  apdu  [B
    MethodParameters:
      Name  Flags
      apdu  

  public void <init>(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=4, args_size=4
        start local 0 // javax.smartcardio.CommandAPDU this
        start local 1 // byte[] apdu
        start local 2 // int apduOffset
        start local 3 // int apduLength
         0: .line 120
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 121
            aload 0 /* this */
            aload 1 /* apdu */
            iload 2 /* apduOffset */
            iload 3 /* apduLength */
            invokevirtual javax.smartcardio.CommandAPDU.checkArrayBounds:([BII)V
         2: .line 122
            aload 0 /* this */
            iload 3 /* apduLength */
            newarray 8
            putfield javax.smartcardio.CommandAPDU.apdu:[B
         3: .line 123
            aload 1 /* apdu */
            iload 2 /* apduOffset */
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_0
            iload 3 /* apduLength */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         4: .line 124
            aload 0 /* this */
            invokevirtual javax.smartcardio.CommandAPDU.parse:()V
         5: .line 125
            return
        end local 3 // int apduLength
        end local 2 // int apduOffset
        end local 1 // byte[] apdu
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Ljavax/smartcardio/CommandAPDU;
            0    6     1        apdu  [B
            0    6     2  apduOffset  I
            0    6     3  apduLength  I
    MethodParameters:
            Name  Flags
      apdu        
      apduOffset  
      apduLength  

  private void checkArrayBounds(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=4
        start local 0 // javax.smartcardio.CommandAPDU this
        start local 1 // byte[] b
        start local 2 // int ofs
        start local 3 // int len
         0: .line 128
            iload 2 /* ofs */
            iflt 1
            iload 3 /* len */
            ifge 4
         1: .line 129
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
         2: .line 130
            ldc "Offset and length must not be negative"
         3: .line 129
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 132
      StackMap locals:
      StackMap stack:
            aload 1 /* b */
            ifnonnull 9
         5: .line 133
            iload 2 /* ofs */
            ifeq 13
            iload 3 /* len */
            ifeq 13
         6: .line 134
            new java.lang.IllegalArgumentException
            dup
         7: .line 135
            ldc "offset and length must be 0 if array is null"
         8: .line 134
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         9: .line 138
      StackMap locals:
      StackMap stack:
            iload 2 /* ofs */
            aload 1 /* b */
            arraylength
            iload 3 /* len */
            isub
            if_icmple 13
        10: .line 139
            new java.lang.IllegalArgumentException
            dup
        11: .line 140
            ldc "Offset plus length exceed array size"
        12: .line 139
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        13: .line 143
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int len
        end local 2 // int ofs
        end local 1 // byte[] b
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Ljavax/smartcardio/CommandAPDU;
            0   14     1     b  [B
            0   14     2   ofs  I
            0   14     3   len  I
    MethodParameters:
      Name  Flags
      b     
      ofs   
      len   

  public void <init>(java.nio.ByteBuffer);
    descriptor: (Ljava/nio/ByteBuffer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.smartcardio.CommandAPDU this
        start local 1 // java.nio.ByteBuffer apdu
         0: .line 161
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 162
            aload 0 /* this */
            aload 1 /* apdu */
            invokevirtual java.nio.ByteBuffer.remaining:()I
            newarray 8
            putfield javax.smartcardio.CommandAPDU.apdu:[B
         2: .line 163
            aload 1 /* apdu */
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            invokevirtual java.nio.ByteBuffer.get:([B)Ljava/nio/ByteBuffer;
            pop
         3: .line 164
            aload 0 /* this */
            invokevirtual javax.smartcardio.CommandAPDU.parse:()V
         4: .line 165
            return
        end local 1 // java.nio.ByteBuffer apdu
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/smartcardio/CommandAPDU;
            0    5     1  apdu  Ljava/nio/ByteBuffer;
    MethodParameters:
      Name  Flags
      apdu  

  public void <init>(int, int, int, int);
    descriptor: (IIII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=5, args_size=5
        start local 0 // javax.smartcardio.CommandAPDU this
        start local 1 // int cla
        start local 2 // int ins
        start local 3 // int p1
        start local 4 // int p2
         0: .line 177
            aload 0 /* this */
            iload 1 /* cla */
            iload 2 /* ins */
            iload 3 /* p1 */
            iload 4 /* p2 */
            aconst_null
            iconst_0
            iconst_0
            iconst_0
            invokespecial javax.smartcardio.CommandAPDU.<init>:(IIII[BIII)V
         1: .line 178
            return
        end local 4 // int p2
        end local 3 // int p1
        end local 2 // int ins
        end local 1 // int cla
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/smartcardio/CommandAPDU;
            0    2     1   cla  I
            0    2     2   ins  I
            0    2     3    p1  I
            0    2     4    p2  I
    MethodParameters:
      Name  Flags
      cla   
      ins   
      p1    
      p2    

  public void <init>(int, int, int, int, int);
    descriptor: (IIIII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=6, args_size=6
        start local 0 // javax.smartcardio.CommandAPDU this
        start local 1 // int cla
        start local 2 // int ins
        start local 3 // int p1
        start local 4 // int p2
        start local 5 // int ne
         0: .line 196
            aload 0 /* this */
            iload 1 /* cla */
            iload 2 /* ins */
            iload 3 /* p1 */
            iload 4 /* p2 */
            aconst_null
            iconst_0
            iconst_0
            iload 5 /* ne */
            invokespecial javax.smartcardio.CommandAPDU.<init>:(IIII[BIII)V
         1: .line 197
            return
        end local 5 // int ne
        end local 4 // int p2
        end local 3 // int p1
        end local 2 // int ins
        end local 1 // int cla
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/smartcardio/CommandAPDU;
            0    2     1   cla  I
            0    2     2   ins  I
            0    2     3    p1  I
            0    2     4    p2  I
            0    2     5    ne  I
    MethodParameters:
      Name  Flags
      cla   
      ins   
      p1    
      p2    
      ne    

  public void <init>(int, int, int, int, byte[]);
    descriptor: (IIII[B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=6, args_size=6
        start local 0 // javax.smartcardio.CommandAPDU this
        start local 1 // int cla
        start local 2 // int ins
        start local 3 // int p1
        start local 4 // int p2
        start local 5 // byte[] data
         0: .line 217
            aload 0 /* this */
            iload 1 /* cla */
            iload 2 /* ins */
            iload 3 /* p1 */
            iload 4 /* p2 */
            aload 5 /* data */
            iconst_0
            aload 5 /* data */
            invokestatic javax.smartcardio.CommandAPDU.arrayLength:([B)I
            iconst_0
            invokespecial javax.smartcardio.CommandAPDU.<init>:(IIII[BIII)V
         1: .line 218
            return
        end local 5 // byte[] data
        end local 4 // int p2
        end local 3 // int p1
        end local 2 // int ins
        end local 1 // int cla
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/smartcardio/CommandAPDU;
            0    2     1   cla  I
            0    2     2   ins  I
            0    2     3    p1  I
            0    2     4    p2  I
            0    2     5  data  [B
    MethodParameters:
      Name  Flags
      cla   
      ins   
      p1    
      p2    
      data  

  public void <init>(int, int, int, int, byte[], int, int);
    descriptor: (IIII[BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=8, args_size=8
        start local 0 // javax.smartcardio.CommandAPDU this
        start local 1 // int cla
        start local 2 // int ins
        start local 3 // int p1
        start local 4 // int p2
        start local 5 // byte[] data
        start local 6 // int dataOffset
        start local 7 // int dataLength
         0: .line 245
            aload 0 /* this */
            iload 1 /* cla */
            iload 2 /* ins */
            iload 3 /* p1 */
            iload 4 /* p2 */
            aload 5 /* data */
            iload 6 /* dataOffset */
            iload 7 /* dataLength */
            iconst_0
            invokespecial javax.smartcardio.CommandAPDU.<init>:(IIII[BIII)V
         1: .line 246
            return
        end local 7 // int dataLength
        end local 6 // int dataOffset
        end local 5 // byte[] data
        end local 4 // int p2
        end local 3 // int p1
        end local 2 // int ins
        end local 1 // int cla
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Ljavax/smartcardio/CommandAPDU;
            0    2     1         cla  I
            0    2     2         ins  I
            0    2     3          p1  I
            0    2     4          p2  I
            0    2     5        data  [B
            0    2     6  dataOffset  I
            0    2     7  dataLength  I
    MethodParameters:
            Name  Flags
      cla         
      ins         
      p1          
      p2          
      data        
      dataOffset  
      dataLength  

  public void <init>(int, int, int, int, byte[], int);
    descriptor: (IIII[BI)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=7, args_size=7
        start local 0 // javax.smartcardio.CommandAPDU this
        start local 1 // int cla
        start local 2 // int ins
        start local 3 // int p1
        start local 4 // int p2
        start local 5 // byte[] data
        start local 6 // int ne
         0: .line 269
            aload 0 /* this */
            iload 1 /* cla */
            iload 2 /* ins */
            iload 3 /* p1 */
            iload 4 /* p2 */
            aload 5 /* data */
            iconst_0
            aload 5 /* data */
            invokestatic javax.smartcardio.CommandAPDU.arrayLength:([B)I
            iload 6 /* ne */
            invokespecial javax.smartcardio.CommandAPDU.<init>:(IIII[BIII)V
         1: .line 270
            return
        end local 6 // int ne
        end local 5 // byte[] data
        end local 4 // int p2
        end local 3 // int p1
        end local 2 // int ins
        end local 1 // int cla
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljavax/smartcardio/CommandAPDU;
            0    2     1   cla  I
            0    2     2   ins  I
            0    2     3    p1  I
            0    2     4    p2  I
            0    2     5  data  [B
            0    2     6    ne  I
    MethodParameters:
      Name  Flags
      cla   
      ins   
      p1    
      p2    
      data  
      ne    

  private static int arrayLength(byte[]);
    descriptor: ([B)I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // byte[] b
         0: .line 273
            aload 0 /* b */
            ifnull 1
            aload 0 /* b */
            arraylength
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // byte[] b
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0     b  [B
    MethodParameters:
      Name  Flags
      b     

  private void parse();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // javax.smartcardio.CommandAPDU this
         0: .line 291
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            arraylength
            iconst_4
            if_icmpge 2
         1: .line 292
            new java.lang.IllegalArgumentException
            dup
            ldc "apdu must be at least 4 bytes long"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 294
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            arraylength
            iconst_4
            if_icmpne 4
         3: .line 296
            return
         4: .line 298
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_4
            baload
            sipush 255
            iand
            istore 1 /* l1 */
        start local 1 // int l1
         5: .line 299
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            arraylength
            iconst_5
            if_icmpne 10
         6: .line 301
            aload 0 /* this */
            iload 1 /* l1 */
            ifne 7
            sipush 256
            goto 8
      StackMap locals: javax.smartcardio.CommandAPDU int
      StackMap stack: javax.smartcardio.CommandAPDU
         7: iload 1 /* l1 */
      StackMap locals: javax.smartcardio.CommandAPDU int
      StackMap stack: javax.smartcardio.CommandAPDU int
         8: putfield javax.smartcardio.CommandAPDU.ne:I
         9: .line 302
            return
        10: .line 304
      StackMap locals:
      StackMap stack:
            iload 1 /* l1 */
            ifeq 26
        11: .line 305
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            arraylength
            iconst_5
            iload 1 /* l1 */
            iadd
            if_icmpne 15
        12: .line 307
            aload 0 /* this */
            iload 1 /* l1 */
            putfield javax.smartcardio.CommandAPDU.nc:I
        13: .line 308
            aload 0 /* this */
            iconst_5
            putfield javax.smartcardio.CommandAPDU.dataOffset:I
        14: .line 309
            return
        15: .line 310
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            arraylength
            bipush 6
            iload 1 /* l1 */
            iadd
            if_icmpne 23
        16: .line 312
            aload 0 /* this */
            iload 1 /* l1 */
            putfield javax.smartcardio.CommandAPDU.nc:I
        17: .line 313
            aload 0 /* this */
            iconst_5
            putfield javax.smartcardio.CommandAPDU.dataOffset:I
        18: .line 314
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            arraylength
            iconst_1
            isub
            baload
            sipush 255
            iand
            istore 2 /* l2 */
        start local 2 // int l2
        19: .line 315
            aload 0 /* this */
            iload 2 /* l2 */
            ifne 20
            sipush 256
            goto 21
      StackMap locals: javax.smartcardio.CommandAPDU int int
      StackMap stack: javax.smartcardio.CommandAPDU
        20: iload 2 /* l2 */
      StackMap locals: javax.smartcardio.CommandAPDU int int
      StackMap stack: javax.smartcardio.CommandAPDU int
        21: putfield javax.smartcardio.CommandAPDU.ne:I
        22: .line 316
            return
        end local 2 // int l2
        23: .line 318
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
        24: .line 319
            new java.lang.StringBuilder
            dup
            ldc "Invalid APDU: length="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", b1="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 1 /* l1 */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        25: .line 318
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        26: .line 322
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            arraylength
            bipush 7
            if_icmpge 30
        27: .line 323
            new java.lang.IllegalArgumentException
            dup
        28: .line 324
            new java.lang.StringBuilder
            dup
            ldc "Invalid APDU: length="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", b1="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 1 /* l1 */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        29: .line 323
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        30: .line 326
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_5
            baload
            sipush 255
            iand
            bipush 8
            ishl
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            bipush 6
            baload
            sipush 255
            iand
            ior
            istore 2 /* l2 */
        start local 2 // int l2
        31: .line 327
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            arraylength
            bipush 7
            if_icmpne 36
        32: .line 329
            aload 0 /* this */
            iload 2 /* l2 */
            ifne 33
            ldc 65536
            goto 34
      StackMap locals: javax.smartcardio.CommandAPDU int int
      StackMap stack: javax.smartcardio.CommandAPDU
        33: iload 2 /* l2 */
      StackMap locals: javax.smartcardio.CommandAPDU int int
      StackMap stack: javax.smartcardio.CommandAPDU int
        34: putfield javax.smartcardio.CommandAPDU.ne:I
        35: .line 330
            return
        36: .line 332
      StackMap locals:
      StackMap stack:
            iload 2 /* l2 */
            ifne 40
        37: .line 333
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid APDU: length="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        38: .line 334
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", b1="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 1 /* l1 */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", b2||b3="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* l2 */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        39: .line 333
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        40: .line 336
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            arraylength
            bipush 7
            iload 2 /* l2 */
            iadd
            if_icmpne 44
        41: .line 338
            aload 0 /* this */
            iload 2 /* l2 */
            putfield javax.smartcardio.CommandAPDU.nc:I
        42: .line 339
            aload 0 /* this */
            bipush 7
            putfield javax.smartcardio.CommandAPDU.dataOffset:I
        43: .line 340
            return
        44: .line 341
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            arraylength
            bipush 9
            iload 2 /* l2 */
            iadd
            if_icmpne 53
        45: .line 343
            aload 0 /* this */
            iload 2 /* l2 */
            putfield javax.smartcardio.CommandAPDU.nc:I
        46: .line 344
            aload 0 /* this */
            bipush 7
            putfield javax.smartcardio.CommandAPDU.dataOffset:I
        47: .line 345
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            arraylength
            iconst_2
            isub
            istore 3 /* leOfs */
        start local 3 // int leOfs
        48: .line 346
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iload 3 /* leOfs */
            baload
            sipush 255
            iand
            bipush 8
            ishl
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iload 3 /* leOfs */
            iconst_1
            iadd
            baload
            sipush 255
            iand
            ior
            istore 4 /* l3 */
        start local 4 // int l3
        49: .line 347
            aload 0 /* this */
            iload 4 /* l3 */
            ifne 50
            ldc 65536
            goto 51
      StackMap locals: javax.smartcardio.CommandAPDU int int int int
      StackMap stack: javax.smartcardio.CommandAPDU
        50: iload 4 /* l3 */
      StackMap locals: javax.smartcardio.CommandAPDU int int int int
      StackMap stack: javax.smartcardio.CommandAPDU int
        51: putfield javax.smartcardio.CommandAPDU.ne:I
        end local 4 // int l3
        end local 3 // int leOfs
        52: .line 348
            goto 56
        53: .line 349
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid APDU: length="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
        54: .line 350
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", b1="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 1 /* l1 */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", b2||b3="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 2 /* l2 */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        55: .line 349
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        56: .line 352
      StackMap locals:
      StackMap stack:
            return
        end local 2 // int l2
        end local 1 // int l1
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   57     0   this  Ljavax/smartcardio/CommandAPDU;
            5   57     1     l1  I
           19   23     2     l2  I
           31   57     2     l2  I
           48   52     3  leOfs  I
           49   52     4     l3  I

  public void <init>(int, int, int, int, byte[], int, int, int);
    descriptor: (IIII[BIII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=11, args_size=9
        start local 0 // javax.smartcardio.CommandAPDU this
        start local 1 // int cla
        start local 2 // int ins
        start local 3 // int p1
        start local 4 // int p2
        start local 5 // byte[] data
        start local 6 // int dataOffset
        start local 7 // int dataLength
        start local 8 // int ne
         0: .line 381
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 383
            aload 0 /* this */
            aload 5 /* data */
            iload 6 /* dataOffset */
            iload 7 /* dataLength */
            invokevirtual javax.smartcardio.CommandAPDU.checkArrayBounds:([BII)V
         2: .line 384
            iload 7 /* dataLength */
            ldc 65535
            if_icmple 4
         3: .line 385
            new java.lang.IllegalArgumentException
            dup
            ldc "dataLength is too large"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 387
      StackMap locals: javax.smartcardio.CommandAPDU int int int int byte[] int int int
      StackMap stack:
            iload 8 /* ne */
            ifge 6
         5: .line 388
            new java.lang.IllegalArgumentException
            dup
            ldc "ne must not be negative"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         6: .line 390
      StackMap locals:
      StackMap stack:
            iload 8 /* ne */
            ldc 65536
            if_icmple 8
         7: .line 391
            new java.lang.IllegalArgumentException
            dup
            ldc "ne is too large"
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
         8: .line 393
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 8 /* ne */
            putfield javax.smartcardio.CommandAPDU.ne:I
         9: .line 394
            aload 0 /* this */
            iload 7 /* dataLength */
            putfield javax.smartcardio.CommandAPDU.nc:I
        10: .line 395
            iload 7 /* dataLength */
            ifne 34
        11: .line 396
            iload 8 /* ne */
            ifne 15
        12: .line 398
            aload 0 /* this */
            iconst_4
            newarray 8
            putfield javax.smartcardio.CommandAPDU.apdu:[B
        13: .line 399
            aload 0 /* this */
            iload 1 /* cla */
            iload 2 /* ins */
            iload 3 /* p1 */
            iload 4 /* p2 */
            invokevirtual javax.smartcardio.CommandAPDU.setHeader:(IIII)V
        14: .line 400
            goto 71
        15: .line 402
      StackMap locals:
      StackMap stack:
            iload 8 /* ne */
            sipush 256
            if_icmpgt 23
        16: .line 405
            iload 8 /* ne */
            sipush 256
            if_icmpeq 17
            iload 8 /* ne */
            i2b
            goto 18
      StackMap locals:
      StackMap stack:
        17: iconst_0
      StackMap locals:
      StackMap stack: int
        18: istore 9 /* len */
        start local 9 // byte len
        19: .line 406
            aload 0 /* this */
            iconst_5
            newarray 8
            putfield javax.smartcardio.CommandAPDU.apdu:[B
        20: .line 407
            aload 0 /* this */
            iload 1 /* cla */
            iload 2 /* ins */
            iload 3 /* p1 */
            iload 4 /* p2 */
            invokevirtual javax.smartcardio.CommandAPDU.setHeader:(IIII)V
        21: .line 408
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_4
            iload 9 /* len */
            bastore
        end local 9 // byte len
        22: .line 409
            goto 71
        23: .line 413
      StackMap locals:
      StackMap stack:
            iload 8 /* ne */
            ldc 65536
            if_icmpne 27
        24: .line 414
            iconst_0
            istore 9 /* l1 */
        start local 9 // byte l1
        25: .line 415
            iconst_0
            istore 10 /* l2 */
        start local 10 // byte l2
        26: .line 416
            goto 29
        end local 10 // byte l2
        end local 9 // byte l1
        27: .line 417
      StackMap locals:
      StackMap stack:
            iload 8 /* ne */
            bipush 8
            ishr
            i2b
            istore 9 /* l1 */
        start local 9 // byte l1
        28: .line 418
            iload 8 /* ne */
            i2b
            istore 10 /* l2 */
        start local 10 // byte l2
        29: .line 420
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            bipush 7
            newarray 8
            putfield javax.smartcardio.CommandAPDU.apdu:[B
        30: .line 421
            aload 0 /* this */
            iload 1 /* cla */
            iload 2 /* ins */
            iload 3 /* p1 */
            iload 4 /* p2 */
            invokevirtual javax.smartcardio.CommandAPDU.setHeader:(IIII)V
        31: .line 422
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_5
            iload 9 /* l1 */
            bastore
        32: .line 423
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            bipush 6
            iload 10 /* l2 */
            bastore
        end local 10 // byte l2
        end local 9 // byte l1
        33: .line 426
            goto 71
        34: .line 427
      StackMap locals:
      StackMap stack:
            iload 8 /* ne */
            ifne 50
        35: .line 429
            iload 7 /* dataLength */
            sipush 255
            if_icmpgt 42
        36: .line 431
            aload 0 /* this */
            iconst_5
            iload 7 /* dataLength */
            iadd
            newarray 8
            putfield javax.smartcardio.CommandAPDU.apdu:[B
        37: .line 432
            aload 0 /* this */
            iload 1 /* cla */
            iload 2 /* ins */
            iload 3 /* p1 */
            iload 4 /* p2 */
            invokevirtual javax.smartcardio.CommandAPDU.setHeader:(IIII)V
        38: .line 433
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_4
            iload 7 /* dataLength */
            i2b
            bastore
        39: .line 434
            aload 0 /* this */
            iconst_5
            putfield javax.smartcardio.CommandAPDU.dataOffset:I
        40: .line 435
            aload 5 /* data */
            iload 6 /* dataOffset */
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_5
            iload 7 /* dataLength */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        41: .line 436
            goto 71
        42: .line 438
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 7
            iload 7 /* dataLength */
            iadd
            newarray 8
            putfield javax.smartcardio.CommandAPDU.apdu:[B
        43: .line 439
            aload 0 /* this */
            iload 1 /* cla */
            iload 2 /* ins */
            iload 3 /* p1 */
            iload 4 /* p2 */
            invokevirtual javax.smartcardio.CommandAPDU.setHeader:(IIII)V
        44: .line 440
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_4
            iconst_0
            bastore
        45: .line 441
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_5
            iload 7 /* dataLength */
            bipush 8
            ishr
            i2b
            bastore
        46: .line 442
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            bipush 6
            iload 7 /* dataLength */
            i2b
            bastore
        47: .line 443
            aload 0 /* this */
            bipush 7
            putfield javax.smartcardio.CommandAPDU.dataOffset:I
        48: .line 444
            aload 5 /* data */
            iload 6 /* dataOffset */
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            bipush 7
            iload 7 /* dataLength */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        49: .line 446
            goto 71
        50: .line 448
      StackMap locals:
      StackMap stack:
            iload 7 /* dataLength */
            sipush 255
            if_icmpgt 60
            iload 8 /* ne */
            sipush 256
            if_icmpgt 60
        51: .line 450
            aload 0 /* this */
            bipush 6
            iload 7 /* dataLength */
            iadd
            newarray 8
            putfield javax.smartcardio.CommandAPDU.apdu:[B
        52: .line 451
            aload 0 /* this */
            iload 1 /* cla */
            iload 2 /* ins */
            iload 3 /* p1 */
            iload 4 /* p2 */
            invokevirtual javax.smartcardio.CommandAPDU.setHeader:(IIII)V
        53: .line 452
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_4
            iload 7 /* dataLength */
            i2b
            bastore
        54: .line 453
            aload 0 /* this */
            iconst_5
            putfield javax.smartcardio.CommandAPDU.dataOffset:I
        55: .line 454
            aload 5 /* data */
            iload 6 /* dataOffset */
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_5
            iload 7 /* dataLength */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        56: .line 455
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            arraylength
            iconst_1
            isub
            iload 8 /* ne */
            sipush 256
            if_icmpeq 57
            iload 8 /* ne */
            i2b
            goto 58
      StackMap locals: javax.smartcardio.CommandAPDU int int int int byte[] int int int
      StackMap stack: byte[] int
        57: iconst_0
      StackMap locals: javax.smartcardio.CommandAPDU int int int int byte[] int int int
      StackMap stack: byte[] int int
        58: bastore
        59: .line 456
            goto 71
        60: .line 458
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            bipush 9
            iload 7 /* dataLength */
            iadd
            newarray 8
            putfield javax.smartcardio.CommandAPDU.apdu:[B
        61: .line 459
            aload 0 /* this */
            iload 1 /* cla */
            iload 2 /* ins */
            iload 3 /* p1 */
            iload 4 /* p2 */
            invokevirtual javax.smartcardio.CommandAPDU.setHeader:(IIII)V
        62: .line 460
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_4
            iconst_0
            bastore
        63: .line 461
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_5
            iload 7 /* dataLength */
            bipush 8
            ishr
            i2b
            bastore
        64: .line 462
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            bipush 6
            iload 7 /* dataLength */
            i2b
            bastore
        65: .line 463
            aload 0 /* this */
            bipush 7
            putfield javax.smartcardio.CommandAPDU.dataOffset:I
        66: .line 464
            aload 5 /* data */
            iload 6 /* dataOffset */
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            bipush 7
            iload 7 /* dataLength */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        67: .line 465
            iload 8 /* ne */
            ldc 65536
            if_icmpeq 71
        68: .line 466
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            arraylength
            iconst_2
            isub
            istore 9 /* leOfs */
        start local 9 // int leOfs
        69: .line 467
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iload 9 /* leOfs */
            iload 8 /* ne */
            bipush 8
            ishr
            i2b
            bastore
        70: .line 468
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iload 9 /* leOfs */
            iconst_1
            iadd
            iload 8 /* ne */
            i2b
            bastore
        end local 9 // int leOfs
        71: .line 473
      StackMap locals:
      StackMap stack:
            return
        end local 8 // int ne
        end local 7 // int dataLength
        end local 6 // int dataOffset
        end local 5 // byte[] data
        end local 4 // int p2
        end local 3 // int p1
        end local 2 // int ins
        end local 1 // int cla
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   72     0        this  Ljavax/smartcardio/CommandAPDU;
            0   72     1         cla  I
            0   72     2         ins  I
            0   72     3          p1  I
            0   72     4          p2  I
            0   72     5        data  [B
            0   72     6  dataOffset  I
            0   72     7  dataLength  I
            0   72     8          ne  I
           19   22     9         len  B
           25   27     9          l1  B
           28   33     9          l1  B
           26   27    10          l2  B
           29   33    10          l2  B
           69   71     9       leOfs  I
    MethodParameters:
            Name  Flags
      cla         
      ins         
      p1          
      p2          
      data        
      dataOffset  
      dataLength  
      ne          

  private void setHeader(int, int, int, int);
    descriptor: (IIII)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=5
        start local 0 // javax.smartcardio.CommandAPDU this
        start local 1 // int cla
        start local 2 // int ins
        start local 3 // int p1
        start local 4 // int p2
         0: .line 476
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_0
            iload 1 /* cla */
            i2b
            bastore
         1: .line 477
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_1
            iload 2 /* ins */
            i2b
            bastore
         2: .line 478
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_2
            iload 3 /* p1 */
            i2b
            bastore
         3: .line 479
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_3
            iload 4 /* p2 */
            i2b
            bastore
         4: .line 480
            return
        end local 4 // int p2
        end local 3 // int p1
        end local 2 // int ins
        end local 1 // int cla
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljavax/smartcardio/CommandAPDU;
            0    5     1   cla  I
            0    5     2   ins  I
            0    5     3    p1  I
            0    5     4    p2  I
    MethodParameters:
      Name  Flags
      cla   
      ins   
      p1    
      p2    

  public int getCLA();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javax.smartcardio.CommandAPDU this
         0: .line 488
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_0
            baload
            sipush 255
            iand
            ireturn
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/smartcardio/CommandAPDU;

  public int getINS();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javax.smartcardio.CommandAPDU this
         0: .line 497
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_1
            baload
            sipush 255
            iand
            ireturn
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/smartcardio/CommandAPDU;

  public int getP1();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javax.smartcardio.CommandAPDU this
         0: .line 506
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_2
            baload
            sipush 255
            iand
            ireturn
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/smartcardio/CommandAPDU;

  public int getP2();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // javax.smartcardio.CommandAPDU this
         0: .line 515
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            iconst_3
            baload
            sipush 255
            iand
            ireturn
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/smartcardio/CommandAPDU;

  public int getNc();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.smartcardio.CommandAPDU this
         0: .line 527
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.nc:I
            ireturn
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/smartcardio/CommandAPDU;

  public byte[] getData();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=2, args_size=1
        start local 0 // javax.smartcardio.CommandAPDU this
         0: .line 538
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.nc:I
            newarray 8
            astore 1 /* data */
        start local 1 // byte[] data
         1: .line 539
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.dataOffset:I
            aload 1 /* data */
            iconst_0
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.nc:I
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         2: .line 540
            aload 1 /* data */
            areturn
        end local 1 // byte[] data
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavax/smartcardio/CommandAPDU;
            1    3     1  data  [B

  public int getNe();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.smartcardio.CommandAPDU this
         0: .line 550
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.ne:I
            ireturn
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/smartcardio/CommandAPDU;

  public byte[] getBytes();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.smartcardio.CommandAPDU this
         0: .line 559
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            invokevirtual byte[].clone:()Ljava/lang/Object;
            checkcast byte[]
            areturn
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/smartcardio/CommandAPDU;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // javax.smartcardio.CommandAPDU this
         0: .line 568
            new java.lang.StringBuilder
            dup
            ldc "CommmandAPDU: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            arraylength
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " bytes, nc="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.nc:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", ne="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.ne:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/smartcardio/CommandAPDU;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // javax.smartcardio.CommandAPDU this
        start local 1 // java.lang.Object obj
         0: .line 580
            aload 0 /* this */
            aload 1 /* obj */
            if_acmpne 2
         1: .line 581
            iconst_1
            ireturn
         2: .line 583
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            instanceof javax.smartcardio.CommandAPDU
            ifne 4
         3: .line 584
            iconst_0
            ireturn
         4: .line 586
      StackMap locals:
      StackMap stack:
            aload 1 /* obj */
            checkcast javax.smartcardio.CommandAPDU
            astore 2 /* other */
        start local 2 // javax.smartcardio.CommandAPDU other
         5: .line 587
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            aload 2 /* other */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            invokestatic java.util.Arrays.equals:([B[B)Z
            ireturn
        end local 2 // javax.smartcardio.CommandAPDU other
        end local 1 // java.lang.Object obj
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    6     0   this  Ljavax/smartcardio/CommandAPDU;
            0    6     1    obj  Ljava/lang/Object;
            5    6     2  other  Ljavax/smartcardio/CommandAPDU;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // javax.smartcardio.CommandAPDU this
         0: .line 596
            aload 0 /* this */
            getfield javax.smartcardio.CommandAPDU.apdu:[B
            invokestatic java.util.Arrays.hashCode:([B)I
            ireturn
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljavax/smartcardio/CommandAPDU;

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // javax.smartcardio.CommandAPDU this
        start local 1 // java.io.ObjectInputStream in
         0: .line 601
            aload 0 /* this */
            aload 1 /* in */
            invokevirtual java.io.ObjectInputStream.readUnshared:()Ljava/lang/Object;
            checkcast byte[]
            putfield javax.smartcardio.CommandAPDU.apdu:[B
         1: .line 603
            aload 0 /* this */
            invokevirtual javax.smartcardio.CommandAPDU.parse:()V
         2: .line 604
            return
        end local 1 // java.io.ObjectInputStream in
        end local 0 // javax.smartcardio.CommandAPDU this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljavax/smartcardio/CommandAPDU;
            0    3     1    in  Ljava/io/ObjectInputStream;
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
      Name  Flags
      in    
}
SourceFile: "CommandAPDU.java"