public class java.io.RandomAccessFile implements java.io.DataOutput, java.io.DataInput, java.io.Closeable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: java.io.RandomAccessFile
  super_class: java.lang.Object
{
  private java.io.FileDescriptor fd;
    descriptor: Ljava/io/FileDescriptor;
    flags: (0x0002) ACC_PRIVATE

  private volatile java.nio.channels.FileChannel channel;
    descriptor: Ljava/nio/channels/FileChannel;
    flags: (0x0042) ACC_PRIVATE, ACC_VOLATILE

  private boolean rw;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  private final java.lang.String path;
    descriptor: Ljava/lang/String;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.concurrent.atomic.AtomicBoolean closed;
    descriptor: Ljava/util/concurrent/atomic/AtomicBoolean;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

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

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

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

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

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

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 1183
            invokestatic java.io.RandomAccessFile.initIDs:()V
         1: .line 1184
            new java.io.RandomAccessFile$1
            dup
            invokespecial java.io.RandomAccessFile$1.<init>:()V
            invokestatic jdk.internal.misc.SharedSecrets.setJavaIORandomAccessFileAccess:(Ljdk/internal/misc/JavaIORandomAccessFileAccess;)V
         2: .line 1194
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.lang.String, java.lang.String);
    descriptor: (Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // java.io.RandomAccessFile this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String mode
         0: .line 127
            aload 0 /* this */
            aload 1 /* name */
            ifnull 1
            new java.io.File
            dup
            aload 1 /* name */
            invokespecial java.io.File.<init>:(Ljava/lang/String;)V
            goto 2
      StackMap locals:
      StackMap stack: uninitialized-this
         1: aconst_null
      StackMap locals: uninitialized-this java.lang.String java.lang.String
      StackMap stack: uninitialized-this java.io.File
         2: aload 2 /* mode */
            invokespecial java.io.RandomAccessFile.<init>:(Ljava/io/File;Ljava/lang/String;)V
         3: .line 128
            return
        end local 2 // java.lang.String mode
        end local 1 // java.lang.String name
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/io/RandomAccessFile;
            0    4     1  name  Ljava/lang/String;
            0    4     2  mode  Ljava/lang/String;
    Exceptions:
      throws java.io.FileNotFoundException
    MethodParameters:
      Name  Flags
      name  
      mode  

  public void <init>(java.io.File, java.lang.String);
    descriptor: (Ljava/io/File;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // java.io.RandomAccessFile this
        start local 1 // java.io.File file
        start local 2 // java.lang.String mode
         0: .line 214
            aload 0 /* this */
            aload 1 /* file */
            aload 2 /* mode */
            iconst_0
            invokespecial java.io.RandomAccessFile.<init>:(Ljava/io/File;Ljava/lang/String;Z)V
         1: .line 215
            return
        end local 2 // java.lang.String mode
        end local 1 // java.io.File file
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/RandomAccessFile;
            0    2     1  file  Ljava/io/File;
            0    2     2  mode  Ljava/lang/String;
    Exceptions:
      throws java.io.FileNotFoundException
    MethodParameters:
      Name  Flags
      file  
      mode  

  private void <init>(java.io.File, java.lang.String, boolean);
    descriptor: (Ljava/io/File;Ljava/lang/String;Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=7, args_size=4
        start local 0 // java.io.RandomAccessFile this
        start local 1 // java.io.File file
        start local 2 // java.lang.String mode
        start local 3 // boolean openAndDelete
         0: .line 217
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 74
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicBoolean
            dup
            iconst_0
            invokespecial java.util.concurrent.atomic.AtomicBoolean.<init>:(Z)V
            putfield java.io.RandomAccessFile.closed:Ljava/util/concurrent/atomic/AtomicBoolean;
         2: .line 220
            aload 1 /* file */
            ifnull 3
            aload 1 /* file */
            invokevirtual java.io.File.getPath:()Ljava/lang/String;
            goto 4
      StackMap locals: java.io.RandomAccessFile java.io.File java.lang.String int
      StackMap stack:
         3: aconst_null
      StackMap locals:
      StackMap stack: java.lang.String
         4: astore 4 /* name */
        start local 4 // java.lang.String name
         5: .line 221
            iconst_m1
            istore 5 /* imode */
        start local 5 // int imode
         6: .line 222
            aload 2 /* mode */
            ldc "r"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 8
         7: .line 223
            iconst_1
            istore 5 /* imode */
            goto 17
         8: .line 224
      StackMap locals: java.lang.String int
      StackMap stack:
            aload 2 /* mode */
            ldc "rw"
            invokevirtual java.lang.String.startsWith:(Ljava/lang/String;)Z
            ifeq 17
         9: .line 225
            iconst_2
            istore 5 /* imode */
        10: .line 226
            aload 0 /* this */
            iconst_1
            putfield java.io.RandomAccessFile.rw:Z
        11: .line 227
            aload 2 /* mode */
            invokevirtual java.lang.String.length:()I
            iconst_2
            if_icmple 17
        12: .line 228
            aload 2 /* mode */
            ldc "rws"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 14
        13: .line 229
            iload 5 /* imode */
            iconst_4
            ior
            istore 5 /* imode */
            goto 17
        14: .line 230
      StackMap locals:
      StackMap stack:
            aload 2 /* mode */
            ldc "rwd"
            invokevirtual java.lang.String.equals:(Ljava/lang/Object;)Z
            ifeq 16
        15: .line 231
            iload 5 /* imode */
            bipush 8
            ior
            istore 5 /* imode */
            goto 17
        16: .line 233
      StackMap locals:
      StackMap stack:
            iconst_m1
            istore 5 /* imode */
        17: .line 236
      StackMap locals:
      StackMap stack:
            iload 3 /* openAndDelete */
            ifeq 19
        18: .line 237
            iload 5 /* imode */
            bipush 16
            ior
            istore 5 /* imode */
        19: .line 238
      StackMap locals:
      StackMap stack:
            iload 5 /* imode */
            ifge 25
        20: .line 239
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Illegal mode \""
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 2 /* mode */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        21: .line 240
            ldc "\" must be one of "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        22: .line 241
            ldc "\"r\", \"rw\", \"rws\","
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
        23: .line 242
            ldc " or \"rwd\""
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
        24: .line 239
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        25: .line 243
      StackMap locals:
      StackMap stack:
            invokestatic java.lang.System.getSecurityManager:()Ljava/lang/SecurityManager;
            astore 6 /* security */
        start local 6 // java.lang.SecurityManager security
        26: .line 244
            aload 6 /* security */
            ifnull 30
        27: .line 245
            aload 6 /* security */
            aload 4 /* name */
            invokevirtual java.lang.SecurityManager.checkRead:(Ljava/lang/String;)V
        28: .line 246
            aload 0 /* this */
            getfield java.io.RandomAccessFile.rw:Z
            ifeq 30
        29: .line 247
            aload 6 /* security */
            aload 4 /* name */
            invokevirtual java.lang.SecurityManager.checkWrite:(Ljava/lang/String;)V
        30: .line 250
      StackMap locals: java.lang.SecurityManager
      StackMap stack:
            aload 4 /* name */
            ifnonnull 32
        31: .line 251
            new java.lang.NullPointerException
            dup
            invokespecial java.lang.NullPointerException.<init>:()V
            athrow
        32: .line 253
      StackMap locals:
      StackMap stack:
            aload 1 /* file */
            invokevirtual java.io.File.isInvalid:()Z
            ifeq 34
        33: .line 254
            new java.io.FileNotFoundException
            dup
            ldc "Invalid file path"
            invokespecial java.io.FileNotFoundException.<init>:(Ljava/lang/String;)V
            athrow
        34: .line 256
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new java.io.FileDescriptor
            dup
            invokespecial java.io.FileDescriptor.<init>:()V
            putfield java.io.RandomAccessFile.fd:Ljava/io/FileDescriptor;
        35: .line 257
            aload 0 /* this */
            getfield java.io.RandomAccessFile.fd:Ljava/io/FileDescriptor;
            aload 0 /* this */
            invokevirtual java.io.FileDescriptor.attach:(Ljava/io/Closeable;)V
        36: .line 258
            aload 0 /* this */
            aload 4 /* name */
            putfield java.io.RandomAccessFile.path:Ljava/lang/String;
        37: .line 259
            aload 0 /* this */
            aload 4 /* name */
            iload 5 /* imode */
            invokevirtual java.io.RandomAccessFile.open:(Ljava/lang/String;I)V
        38: .line 260
            aload 0 /* this */
            getfield java.io.RandomAccessFile.fd:Ljava/io/FileDescriptor;
            invokestatic java.io.FileCleanable.register:(Ljava/io/FileDescriptor;)V
        39: .line 261
            return
        end local 6 // java.lang.SecurityManager security
        end local 5 // int imode
        end local 4 // java.lang.String name
        end local 3 // boolean openAndDelete
        end local 2 // java.lang.String mode
        end local 1 // java.io.File file
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   40     0           this  Ljava/io/RandomAccessFile;
            0   40     1           file  Ljava/io/File;
            0   40     2           mode  Ljava/lang/String;
            0   40     3  openAndDelete  Z
            5   40     4           name  Ljava/lang/String;
            6   40     5          imode  I
           26   40     6       security  Ljava/lang/SecurityManager;
    Exceptions:
      throws java.io.FileNotFoundException
    MethodParameters:
               Name  Flags
      file           
      mode           
      openAndDelete  

  public final java.io.FileDescriptor getFD();
    descriptor: ()Ljava/io/FileDescriptor;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.io.RandomAccessFile this
         0: .line 272
            aload 0 /* this */
            getfield java.io.RandomAccessFile.fd:Ljava/io/FileDescriptor;
            ifnull 2
         1: .line 273
            aload 0 /* this */
            getfield java.io.RandomAccessFile.fd:Ljava/io/FileDescriptor;
            areturn
         2: .line 275
      StackMap locals:
      StackMap stack:
            new java.io.IOException
            dup
            invokespecial java.io.IOException.<init>:()V
            athrow
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/io/RandomAccessFile;
    Exceptions:
      throws java.io.IOException

  public final java.nio.channels.FileChannel getChannel();
    descriptor: ()Ljava/nio/channels/FileChannel;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=7, locals=4, args_size=1
        start local 0 // java.io.RandomAccessFile this
         0: .line 297
            aload 0 /* this */
            getfield java.io.RandomAccessFile.channel:Ljava/nio/channels/FileChannel;
            astore 1 /* fc */
        start local 1 // java.nio.channels.FileChannel fc
         1: .line 298
            aload 1 /* fc */
            ifnonnull 17
         2: .line 299
            aload 0 /* this */
            dup
            astore 2
            monitorenter
         3: .line 300
            aload 0 /* this */
            getfield java.io.RandomAccessFile.channel:Ljava/nio/channels/FileChannel;
            astore 1 /* fc */
         4: .line 301
            aload 1 /* fc */
            ifnonnull 13
         5: .line 302
            aload 0 /* this */
            aload 0 /* this */
            getfield java.io.RandomAccessFile.fd:Ljava/io/FileDescriptor;
            aload 0 /* this */
            getfield java.io.RandomAccessFile.path:Ljava/lang/String;
            iconst_1
         6: .line 303
            aload 0 /* this */
            getfield java.io.RandomAccessFile.rw:Z
            iconst_0
            aload 0 /* this */
         7: .line 302
            invokestatic sun.nio.ch.FileChannelImpl.open:(Ljava/io/FileDescriptor;Ljava/lang/String;ZZZLjava/lang/Object;)Ljava/nio/channels/FileChannel;
            dup
            astore 1 /* fc */
            putfield java.io.RandomAccessFile.channel:Ljava/nio/channels/FileChannel;
         8: .line 304
            aload 0 /* this */
            getfield java.io.RandomAccessFile.closed:Ljava/util/concurrent/atomic/AtomicBoolean;
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.get:()Z
            ifeq 13
         9: .line 306
            aload 1 /* fc */
            invokevirtual java.nio.channels.FileChannel.close:()V
        10: .line 307
            goto 13
      StackMap locals: java.io.RandomAccessFile java.nio.channels.FileChannel java.io.RandomAccessFile
      StackMap stack: java.io.IOException
        11: astore 3 /* ioe */
        start local 3 // java.io.IOException ioe
        12: .line 308
            new java.lang.InternalError
            dup
            aload 3 /* ioe */
            invokespecial java.lang.InternalError.<init>:(Ljava/lang/Throwable;)V
            athrow
        end local 3 // java.io.IOException ioe
        13: .line 299
      StackMap locals:
      StackMap stack:
            aload 2
            monitorexit
        14: goto 17
      StackMap locals:
      StackMap stack: java.lang.Throwable
        15: aload 2
            monitorexit
        16: athrow
        17: .line 314
      StackMap locals:
      StackMap stack:
            aload 1 /* fc */
            areturn
        end local 1 // java.nio.channels.FileChannel fc
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Ljava/io/RandomAccessFile;
            1   18     1    fc  Ljava/nio/channels/FileChannel;
           12   13     3   ioe  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           9    10      11  Class java.io.IOException
           3    14      15  any
          15    16      15  any

  private native void open0(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)V
    flags: (0x0102) ACC_PRIVATE, ACC_NATIVE
    Exceptions:
      throws java.io.FileNotFoundException
    MethodParameters:
      Name  Flags
      name  
      mode  

  private void open(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // java.io.RandomAccessFile this
        start local 1 // java.lang.String name
        start local 2 // int mode
         0: .line 345
            aload 0 /* this */
            aload 1 /* name */
            iload 2 /* mode */
            invokevirtual java.io.RandomAccessFile.open0:(Ljava/lang/String;I)V
         1: .line 346
            return
        end local 2 // int mode
        end local 1 // java.lang.String name
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/RandomAccessFile;
            0    2     1  name  Ljava/lang/String;
            0    2     2  mode  I
    Exceptions:
      throws java.io.FileNotFoundException
    MethodParameters:
      Name  Flags
      name  
      mode  

  public int read();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.RandomAccessFile this
         0: .line 366
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.read0:()I
            ireturn
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/RandomAccessFile;
    Exceptions:
      throws java.io.IOException

  private native int read0();
    descriptor: ()I
    flags: (0x0102) ACC_PRIVATE, ACC_NATIVE
    Exceptions:
      throws java.io.IOException

  private native int readBytes(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0102) ACC_PRIVATE, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public int read(byte[], int, int);
    descriptor: ([BII)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // java.io.RandomAccessFile this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 406
            aload 0 /* this */
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.RandomAccessFile.readBytes:([BII)I
            ireturn
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/RandomAccessFile;
            0    1     1     b  [B
            0    1     2   off  I
            0    1     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public int read(byte[]);
    descriptor: ([B)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.io.RandomAccessFile this
        start local 1 // byte[] b
         0: .line 429
            aload 0 /* this */
            aload 1 /* b */
            iconst_0
            aload 1 /* b */
            arraylength
            invokevirtual java.io.RandomAccessFile.readBytes:([BII)I
            ireturn
        end local 1 // byte[] b
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/RandomAccessFile;
            0    1     1     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public final void readFully(byte[]);
    descriptor: ([B)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.io.RandomAccessFile this
        start local 1 // byte[] b
         0: .line 446
            aload 0 /* this */
            aload 1 /* b */
            iconst_0
            aload 1 /* b */
            arraylength
            invokevirtual java.io.RandomAccessFile.readFully:([BII)V
         1: .line 447
            return
        end local 1 // byte[] b
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/RandomAccessFile;
            0    2     1     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public final void readFully(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // java.io.RandomAccessFile this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 468
            iconst_0
            istore 4 /* n */
        start local 4 // int n
         1: .line 470
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* b */
            iload 2 /* off */
            iload 4 /* n */
            iadd
            iload 3 /* len */
            iload 4 /* n */
            isub
            invokevirtual java.io.RandomAccessFile.read:([BII)I
            istore 5 /* count */
        start local 5 // int count
         2: .line 471
            iload 5 /* count */
            ifge 4
         3: .line 472
            new java.io.EOFException
            dup
            invokespecial java.io.EOFException.<init>:()V
            athrow
         4: .line 473
      StackMap locals: int
      StackMap stack:
            iload 4 /* n */
            iload 5 /* count */
            iadd
            istore 4 /* n */
        end local 5 // int count
         5: .line 474
            iload 4 /* n */
            iload 3 /* len */
         6: .line 469
            if_icmplt 1
         7: .line 475
            return
        end local 4 // int n
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    8     0   this  Ljava/io/RandomAccessFile;
            0    8     1      b  [B
            0    8     2    off  I
            0    8     3    len  I
            1    8     4      n  I
            2    5     5  count  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public int skipBytes(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=2
        start local 0 // java.io.RandomAccessFile this
        start local 1 // int n
         0: .line 498
            iload 1 /* n */
            ifgt 2
         1: .line 499
            iconst_0
            ireturn
         2: .line 501
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.getFilePointer:()J
            lstore 2 /* pos */
        start local 2 // long pos
         3: .line 502
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.length:()J
            lstore 4 /* len */
        start local 4 // long len
         4: .line 503
            lload 2 /* pos */
            iload 1 /* n */
            i2l
            ladd
            lstore 6 /* newpos */
        start local 6 // long newpos
         5: .line 504
            lload 6 /* newpos */
            lload 4 /* len */
            lcmp
            ifle 7
         6: .line 505
            lload 4 /* len */
            lstore 6 /* newpos */
         7: .line 507
      StackMap locals: long long long
      StackMap stack:
            aload 0 /* this */
            lload 6 /* newpos */
            invokevirtual java.io.RandomAccessFile.seek:(J)V
         8: .line 510
            lload 6 /* newpos */
            lload 2 /* pos */
            lsub
            l2i
            ireturn
        end local 6 // long newpos
        end local 4 // long len
        end local 2 // long pos
        end local 1 // int n
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Ljava/io/RandomAccessFile;
            0    9     1       n  I
            3    9     2     pos  J
            4    9     4     len  J
            5    9     6  newpos  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      n     

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.RandomAccessFile this
        start local 1 // int b
         0: .line 523
            aload 0 /* this */
            iload 1 /* b */
            invokevirtual java.io.RandomAccessFile.write0:(I)V
         1: .line 524
            return
        end local 1 // int b
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/RandomAccessFile;
            0    2     1     b  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  private native void write0(int);
    descriptor: (I)V
    flags: (0x0102) ACC_PRIVATE, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  private native void writeBytes(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0102) ACC_PRIVATE, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public void write(byte[]);
    descriptor: ([B)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // java.io.RandomAccessFile this
        start local 1 // byte[] b
         0: .line 546
            aload 0 /* this */
            aload 1 /* b */
            iconst_0
            aload 1 /* b */
            arraylength
            invokevirtual java.io.RandomAccessFile.writeBytes:([BII)V
         1: .line 547
            return
        end local 1 // byte[] b
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/RandomAccessFile;
            0    2     1     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     

  public void write(byte[], int, int);
    descriptor: ([BII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=4
        start local 0 // java.io.RandomAccessFile this
        start local 1 // byte[] b
        start local 2 // int off
        start local 3 // int len
         0: .line 559
            aload 0 /* this */
            aload 1 /* b */
            iload 2 /* off */
            iload 3 /* len */
            invokevirtual java.io.RandomAccessFile.writeBytes:([BII)V
         1: .line 560
            return
        end local 3 // int len
        end local 2 // int off
        end local 1 // byte[] b
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/RandomAccessFile;
            0    2     1     b  [B
            0    2     2   off  I
            0    2     3   len  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      b     
      off   
      len   

  public native long getFilePointer();
    descriptor: ()J
    flags: (0x0101) ACC_PUBLIC, ACC_NATIVE
    Exceptions:
      throws java.io.IOException

  public void seek(long);
    descriptor: (J)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.io.RandomAccessFile this
        start local 1 // long pos
         0: .line 588
            lload 1 /* pos */
            lconst_0
            lcmp
            ifge 2
         1: .line 589
            new java.io.IOException
            dup
            ldc "Negative seek offset"
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 591
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            lload 1 /* pos */
            invokevirtual java.io.RandomAccessFile.seek0:(J)V
         3: .line 593
            return
        end local 1 // long pos
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/io/RandomAccessFile;
            0    4     1   pos  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      pos   

  private native void seek0(long);
    descriptor: (J)V
    flags: (0x0102) ACC_PRIVATE, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      pos   

  public native long length();
    descriptor: ()J
    flags: (0x0101) ACC_PUBLIC, ACC_NATIVE
    Exceptions:
      throws java.io.IOException

  public native void setLength(long);
    descriptor: (J)V
    flags: (0x0101) ACC_PUBLIC, ACC_NATIVE
    Exceptions:
      throws java.io.IOException
    MethodParameters:
           Name  Flags
      newLength  

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // java.io.RandomAccessFile this
         0: .line 641
            aload 0 /* this */
            getfield java.io.RandomAccessFile.closed:Ljava/util/concurrent/atomic/AtomicBoolean;
            iconst_0
            iconst_1
            invokevirtual java.util.concurrent.atomic.AtomicBoolean.compareAndSet:(ZZ)Z
            ifne 2
         1: .line 643
            return
         2: .line 646
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield java.io.RandomAccessFile.channel:Ljava/nio/channels/FileChannel;
            astore 1 /* fc */
        start local 1 // java.nio.channels.FileChannel fc
         3: .line 647
            aload 1 /* fc */
            ifnull 5
         4: .line 648
            aload 1 /* fc */
            invokevirtual java.nio.channels.FileChannel.close:()V
         5: .line 651
      StackMap locals: java.nio.channels.FileChannel
      StackMap stack:
            aload 0 /* this */
            getfield java.io.RandomAccessFile.fd:Ljava/io/FileDescriptor;
            new java.io.RandomAccessFile$2
            dup
            aload 0 /* this */
            invokespecial java.io.RandomAccessFile$2.<init>:(Ljava/io/RandomAccessFile;)V
            invokevirtual java.io.FileDescriptor.closeAll:(Ljava/io/Closeable;)V
         6: .line 656
            return
        end local 1 // java.nio.channels.FileChannel fc
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljava/io/RandomAccessFile;
            3    7     1    fc  Ljava/nio/channels/FileChannel;
    Exceptions:
      throws java.io.IOException

  public final boolean readBoolean();
    descriptor: ()Z
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.io.RandomAccessFile this
         0: .line 676
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.read:()I
            istore 1 /* ch */
        start local 1 // int ch
         1: .line 677
            iload 1 /* ch */
            ifge 3
         2: .line 678
            new java.io.EOFException
            dup
            invokespecial java.io.EOFException.<init>:()V
            athrow
         3: .line 679
      StackMap locals: int
      StackMap stack:
            iload 1 /* ch */
            ifeq 4
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         4: iconst_0
            ireturn
        end local 1 // int ch
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/io/RandomAccessFile;
            1    5     1    ch  I
    Exceptions:
      throws java.io.IOException

  public final byte readByte();
    descriptor: ()B
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.io.RandomAccessFile this
         0: .line 701
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.read:()I
            istore 1 /* ch */
        start local 1 // int ch
         1: .line 702
            iload 1 /* ch */
            ifge 3
         2: .line 703
            new java.io.EOFException
            dup
            invokespecial java.io.EOFException.<init>:()V
            athrow
         3: .line 704
      StackMap locals: int
      StackMap stack:
            iload 1 /* ch */
            i2b
            ireturn
        end local 1 // int ch
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/io/RandomAccessFile;
            1    4     1    ch  I
    Exceptions:
      throws java.io.IOException

  public final int readUnsignedByte();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // java.io.RandomAccessFile this
         0: .line 721
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.read:()I
            istore 1 /* ch */
        start local 1 // int ch
         1: .line 722
            iload 1 /* ch */
            ifge 3
         2: .line 723
            new java.io.EOFException
            dup
            invokespecial java.io.EOFException.<init>:()V
            athrow
         3: .line 724
      StackMap locals: int
      StackMap stack:
            iload 1 /* ch */
            ireturn
        end local 1 // int ch
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/io/RandomAccessFile;
            1    4     1    ch  I
    Exceptions:
      throws java.io.IOException

  public final short readShort();
    descriptor: ()S
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.io.RandomAccessFile this
         0: .line 748
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.read:()I
            istore 1 /* ch1 */
        start local 1 // int ch1
         1: .line 749
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.read:()I
            istore 2 /* ch2 */
        start local 2 // int ch2
         2: .line 750
            iload 1 /* ch1 */
            iload 2 /* ch2 */
            ior
            ifge 4
         3: .line 751
            new java.io.EOFException
            dup
            invokespecial java.io.EOFException.<init>:()V
            athrow
         4: .line 752
      StackMap locals: int int
      StackMap stack:
            iload 1 /* ch1 */
            bipush 8
            ishl
            iload 2 /* ch2 */
            iconst_0
            ishl
            iadd
            i2s
            ireturn
        end local 2 // int ch2
        end local 1 // int ch1
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/io/RandomAccessFile;
            1    5     1   ch1  I
            2    5     2   ch2  I
    Exceptions:
      throws java.io.IOException

  public final int readUnsignedShort();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.io.RandomAccessFile this
         0: .line 776
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.read:()I
            istore 1 /* ch1 */
        start local 1 // int ch1
         1: .line 777
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.read:()I
            istore 2 /* ch2 */
        start local 2 // int ch2
         2: .line 778
            iload 1 /* ch1 */
            iload 2 /* ch2 */
            ior
            ifge 4
         3: .line 779
            new java.io.EOFException
            dup
            invokespecial java.io.EOFException.<init>:()V
            athrow
         4: .line 780
      StackMap locals: int int
      StackMap stack:
            iload 1 /* ch1 */
            bipush 8
            ishl
            iload 2 /* ch2 */
            iconst_0
            ishl
            iadd
            ireturn
        end local 2 // int ch2
        end local 1 // int ch1
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/io/RandomAccessFile;
            1    5     1   ch1  I
            2    5     2   ch2  I
    Exceptions:
      throws java.io.IOException

  public final char readChar();
    descriptor: ()C
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // java.io.RandomAccessFile this
         0: .line 804
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.read:()I
            istore 1 /* ch1 */
        start local 1 // int ch1
         1: .line 805
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.read:()I
            istore 2 /* ch2 */
        start local 2 // int ch2
         2: .line 806
            iload 1 /* ch1 */
            iload 2 /* ch2 */
            ior
            ifge 4
         3: .line 807
            new java.io.EOFException
            dup
            invokespecial java.io.EOFException.<init>:()V
            athrow
         4: .line 808
      StackMap locals: int int
      StackMap stack:
            iload 1 /* ch1 */
            bipush 8
            ishl
            iload 2 /* ch2 */
            iconst_0
            ishl
            iadd
            i2c
            ireturn
        end local 2 // int ch2
        end local 1 // int ch1
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/io/RandomAccessFile;
            1    5     1   ch1  I
            2    5     2   ch2  I
    Exceptions:
      throws java.io.IOException

  public final int readInt();
    descriptor: ()I
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // java.io.RandomAccessFile this
         0: .line 832
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.read:()I
            istore 1 /* ch1 */
        start local 1 // int ch1
         1: .line 833
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.read:()I
            istore 2 /* ch2 */
        start local 2 // int ch2
         2: .line 834
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.read:()I
            istore 3 /* ch3 */
        start local 3 // int ch3
         3: .line 835
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.read:()I
            istore 4 /* ch4 */
        start local 4 // int ch4
         4: .line 836
            iload 1 /* ch1 */
            iload 2 /* ch2 */
            ior
            iload 3 /* ch3 */
            ior
            iload 4 /* ch4 */
            ior
            ifge 6
         5: .line 837
            new java.io.EOFException
            dup
            invokespecial java.io.EOFException.<init>:()V
            athrow
         6: .line 838
      StackMap locals: java.io.RandomAccessFile int int int int
      StackMap stack:
            iload 1 /* ch1 */
            bipush 24
            ishl
            iload 2 /* ch2 */
            bipush 16
            ishl
            iadd
            iload 3 /* ch3 */
            bipush 8
            ishl
            iadd
            iload 4 /* ch4 */
            iconst_0
            ishl
            iadd
            ireturn
        end local 4 // int ch4
        end local 3 // int ch3
        end local 2 // int ch2
        end local 1 // int ch1
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Ljava/io/RandomAccessFile;
            1    7     1   ch1  I
            2    7     2   ch2  I
            3    7     3   ch3  I
            4    7     4   ch4  I
    Exceptions:
      throws java.io.IOException

  public final long readLong();
    descriptor: ()J
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // java.io.RandomAccessFile this
         0: .line 870
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.readInt:()I
            i2l
            bipush 32
            lshl
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.readInt:()I
            i2l
            ldc 4294967295
            land
            ladd
            lreturn
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/RandomAccessFile;
    Exceptions:
      throws java.io.IOException

  public final float readFloat();
    descriptor: ()F
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.RandomAccessFile this
         0: .line 893
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.readInt:()I
            invokestatic java.lang.Float.intBitsToFloat:(I)F
            freturn
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/RandomAccessFile;
    Exceptions:
      throws java.io.IOException

  public final double readDouble();
    descriptor: ()D
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // java.io.RandomAccessFile this
         0: .line 916
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.readLong:()J
            invokestatic java.lang.Double.longBitsToDouble:(J)D
            dreturn
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/RandomAccessFile;
    Exceptions:
      throws java.io.IOException

  public final java.lang.String readLine();
    descriptor: ()Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=6, args_size=1
        start local 0 // java.io.RandomAccessFile this
         0: .line 944
            new java.lang.StringBuilder
            dup
            invokespecial java.lang.StringBuilder.<init>:()V
            astore 1 /* input */
        start local 1 // java.lang.StringBuilder input
         1: .line 945
            iconst_m1
            istore 2 /* c */
        start local 2 // int c
         2: .line 946
            iconst_0
            istore 3 /* eol */
        start local 3 // boolean eol
         3: .line 948
            goto 13
         4: .line 949
      StackMap locals: java.lang.StringBuilder int int
      StackMap stack:
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.read:()I
            dup
            istore 2 /* c */
            lookupswitch { // 3
                   -1: 5
                   10: 5
                   13: 7
              default: 12
          }
         5: .line 952
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 3 /* eol */
         6: .line 953
            goto 13
         7: .line 955
      StackMap locals:
      StackMap stack:
            iconst_1
            istore 3 /* eol */
         8: .line 956
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.getFilePointer:()J
            lstore 4 /* cur */
        start local 4 // long cur
         9: .line 957
            aload 0 /* this */
            invokevirtual java.io.RandomAccessFile.read:()I
            bipush 10
            if_icmpeq 13
        10: .line 958
            aload 0 /* this */
            lload 4 /* cur */
            invokevirtual java.io.RandomAccessFile.seek:(J)V
        11: .line 960
            goto 13
        end local 4 // long cur
        12: .line 962
      StackMap locals:
      StackMap stack:
            aload 1 /* input */
            iload 2 /* c */
            i2c
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
        13: .line 948
      StackMap locals:
      StackMap stack:
            iload 3 /* eol */
            ifeq 4
        14: .line 967
            iload 2 /* c */
            iconst_m1
            if_icmpne 16
            aload 1 /* input */
            invokevirtual java.lang.StringBuilder.length:()I
            ifne 16
        15: .line 968
            aconst_null
            areturn
        16: .line 970
      StackMap locals:
      StackMap stack:
            aload 1 /* input */
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 3 // boolean eol
        end local 2 // int c
        end local 1 // java.lang.StringBuilder input
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   17     0   this  Ljava/io/RandomAccessFile;
            1   17     1  input  Ljava/lang/StringBuilder;
            2   17     2      c  I
            3   17     3    eol  Z
            9   12     4    cur  J
    Exceptions:
      throws java.io.IOException

  public final java.lang.String readUTF();
    descriptor: ()Ljava/lang/String;
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // java.io.RandomAccessFile this
         0: .line 999
            aload 0 /* this */
            invokestatic java.io.DataInputStream.readUTF:(Ljava/io/DataInput;)Ljava/lang/String;
            areturn
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljava/io/RandomAccessFile;
    Exceptions:
      throws java.io.IOException

  public final void writeBoolean(boolean);
    descriptor: (Z)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.RandomAccessFile this
        start local 1 // boolean v
         0: .line 1013
            aload 0 /* this */
            iload 1 /* v */
            ifeq 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack: java.io.RandomAccessFile
         1: iconst_0
      StackMap locals: java.io.RandomAccessFile int
      StackMap stack: java.io.RandomAccessFile int
         2: invokevirtual java.io.RandomAccessFile.write:(I)V
         3: .line 1015
            return
        end local 1 // boolean v
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Ljava/io/RandomAccessFile;
            0    4     1     v  Z
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public final void writeByte(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.RandomAccessFile this
        start local 1 // int v
         0: .line 1025
            aload 0 /* this */
            iload 1 /* v */
            invokevirtual java.io.RandomAccessFile.write:(I)V
         1: .line 1027
            return
        end local 1 // int v
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/RandomAccessFile;
            0    2     1     v  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public final void writeShort(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.io.RandomAccessFile this
        start local 1 // int v
         0: .line 1037
            aload 0 /* this */
            iload 1 /* v */
            bipush 8
            iushr
            sipush 255
            iand
            invokevirtual java.io.RandomAccessFile.write:(I)V
         1: .line 1038
            aload 0 /* this */
            iload 1 /* v */
            iconst_0
            iushr
            sipush 255
            iand
            invokevirtual java.io.RandomAccessFile.write:(I)V
         2: .line 1040
            return
        end local 1 // int v
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/io/RandomAccessFile;
            0    3     1     v  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public final void writeChar(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.io.RandomAccessFile this
        start local 1 // int v
         0: .line 1051
            aload 0 /* this */
            iload 1 /* v */
            bipush 8
            iushr
            sipush 255
            iand
            invokevirtual java.io.RandomAccessFile.write:(I)V
         1: .line 1052
            aload 0 /* this */
            iload 1 /* v */
            iconst_0
            iushr
            sipush 255
            iand
            invokevirtual java.io.RandomAccessFile.write:(I)V
         2: .line 1054
            return
        end local 1 // int v
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Ljava/io/RandomAccessFile;
            0    3     1     v  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public final void writeInt(int);
    descriptor: (I)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // java.io.RandomAccessFile this
        start local 1 // int v
         0: .line 1064
            aload 0 /* this */
            iload 1 /* v */
            bipush 24
            iushr
            sipush 255
            iand
            invokevirtual java.io.RandomAccessFile.write:(I)V
         1: .line 1065
            aload 0 /* this */
            iload 1 /* v */
            bipush 16
            iushr
            sipush 255
            iand
            invokevirtual java.io.RandomAccessFile.write:(I)V
         2: .line 1066
            aload 0 /* this */
            iload 1 /* v */
            bipush 8
            iushr
            sipush 255
            iand
            invokevirtual java.io.RandomAccessFile.write:(I)V
         3: .line 1067
            aload 0 /* this */
            iload 1 /* v */
            iconst_0
            iushr
            sipush 255
            iand
            invokevirtual java.io.RandomAccessFile.write:(I)V
         4: .line 1069
            return
        end local 1 // int v
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/io/RandomAccessFile;
            0    5     1     v  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public final void writeLong(long);
    descriptor: (J)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // java.io.RandomAccessFile this
        start local 1 // long v
         0: .line 1079
            aload 0 /* this */
            lload 1 /* v */
            bipush 56
            lushr
            l2i
            sipush 255
            iand
            invokevirtual java.io.RandomAccessFile.write:(I)V
         1: .line 1080
            aload 0 /* this */
            lload 1 /* v */
            bipush 48
            lushr
            l2i
            sipush 255
            iand
            invokevirtual java.io.RandomAccessFile.write:(I)V
         2: .line 1081
            aload 0 /* this */
            lload 1 /* v */
            bipush 40
            lushr
            l2i
            sipush 255
            iand
            invokevirtual java.io.RandomAccessFile.write:(I)V
         3: .line 1082
            aload 0 /* this */
            lload 1 /* v */
            bipush 32
            lushr
            l2i
            sipush 255
            iand
            invokevirtual java.io.RandomAccessFile.write:(I)V
         4: .line 1083
            aload 0 /* this */
            lload 1 /* v */
            bipush 24
            lushr
            l2i
            sipush 255
            iand
            invokevirtual java.io.RandomAccessFile.write:(I)V
         5: .line 1084
            aload 0 /* this */
            lload 1 /* v */
            bipush 16
            lushr
            l2i
            sipush 255
            iand
            invokevirtual java.io.RandomAccessFile.write:(I)V
         6: .line 1085
            aload 0 /* this */
            lload 1 /* v */
            bipush 8
            lushr
            l2i
            sipush 255
            iand
            invokevirtual java.io.RandomAccessFile.write:(I)V
         7: .line 1086
            aload 0 /* this */
            lload 1 /* v */
            iconst_0
            lushr
            l2i
            sipush 255
            iand
            invokevirtual java.io.RandomAccessFile.write:(I)V
         8: .line 1088
            return
        end local 1 // long v
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Ljava/io/RandomAccessFile;
            0    9     1     v  J
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public final void writeFloat(float);
    descriptor: (F)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.RandomAccessFile this
        start local 1 // float v
         0: .line 1102
            aload 0 /* this */
            fload 1 /* v */
            invokestatic java.lang.Float.floatToIntBits:(F)I
            invokevirtual java.io.RandomAccessFile.writeInt:(I)V
         1: .line 1103
            return
        end local 1 // float v
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/RandomAccessFile;
            0    2     1     v  F
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public final void writeDouble(double);
    descriptor: (D)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // java.io.RandomAccessFile this
        start local 1 // double v
         0: .line 1117
            aload 0 /* this */
            dload 1 /* v */
            invokestatic java.lang.Double.doubleToLongBits:(D)J
            invokevirtual java.io.RandomAccessFile.writeLong:(J)V
         1: .line 1118
            return
        end local 1 // double v
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/RandomAccessFile;
            0    2     1     v  D
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      v     

  public final void writeBytes(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // java.io.RandomAccessFile this
        start local 1 // java.lang.String s
         0: .line 1131
            aload 1 /* s */
            invokevirtual java.lang.String.length:()I
            istore 2 /* len */
        start local 2 // int len
         1: .line 1132
            iload 2 /* len */
            newarray 8
            astore 3 /* b */
        start local 3 // byte[] b
         2: .line 1133
            aload 1 /* s */
            iconst_0
            iload 2 /* len */
            aload 3 /* b */
            iconst_0
            invokevirtual java.lang.String.getBytes:(II[BI)V
         3: .line 1134
            aload 0 /* this */
            aload 3 /* b */
            iconst_0
            iload 2 /* len */
            invokevirtual java.io.RandomAccessFile.writeBytes:([BII)V
         4: .line 1135
            return
        end local 3 // byte[] b
        end local 2 // int len
        end local 1 // java.lang.String s
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljava/io/RandomAccessFile;
            0    5     1     s  Ljava/lang/String;
            1    5     2   len  I
            2    5     3     b  [B
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      s     

  public final void writeChars(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=5, locals=8, args_size=2
        start local 0 // java.io.RandomAccessFile this
        start local 1 // java.lang.String s
         0: .line 1148
            aload 1 /* s */
            invokevirtual java.lang.String.length:()I
            istore 2 /* clen */
        start local 2 // int clen
         1: .line 1149
            iconst_2
            iload 2 /* clen */
            imul
            istore 3 /* blen */
        start local 3 // int blen
         2: .line 1150
            iload 3 /* blen */
            newarray 8
            astore 4 /* b */
        start local 4 // byte[] b
         3: .line 1151
            iload 2 /* clen */
            newarray 5
            astore 5 /* c */
        start local 5 // char[] c
         4: .line 1152
            aload 1 /* s */
            iconst_0
            iload 2 /* clen */
            aload 5 /* c */
            iconst_0
            invokevirtual java.lang.String.getChars:(II[CI)V
         5: .line 1153
            iconst_0
            istore 6 /* i */
        start local 6 // int i
         6: iconst_0
            istore 7 /* j */
        start local 7 // int j
         7: goto 11
         8: .line 1154
      StackMap locals: java.io.RandomAccessFile java.lang.String int int byte[] char[] int int
      StackMap stack:
            aload 4 /* b */
            iload 7 /* j */
            iinc 7 /* j */ 1
            aload 5 /* c */
            iload 6 /* i */
            caload
            bipush 8
            iushr
            i2b
            bastore
         9: .line 1155
            aload 4 /* b */
            iload 7 /* j */
            iinc 7 /* j */ 1
            aload 5 /* c */
            iload 6 /* i */
            caload
            iconst_0
            iushr
            i2b
            bastore
        10: .line 1153
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 6 /* i */
            iload 2 /* clen */
            if_icmplt 8
        end local 7 // int j
        end local 6 // int i
        12: .line 1157
            aload 0 /* this */
            aload 4 /* b */
            iconst_0
            iload 3 /* blen */
            invokevirtual java.io.RandomAccessFile.writeBytes:([BII)V
        13: .line 1158
            return
        end local 5 // char[] c
        end local 4 // byte[] b
        end local 3 // int blen
        end local 2 // int clen
        end local 1 // java.lang.String s
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   14     0  this  Ljava/io/RandomAccessFile;
            0   14     1     s  Ljava/lang/String;
            1   14     2  clen  I
            2   14     3  blen  I
            3   14     4     b  [B
            4   14     5     c  [C
            6   12     6     i  I
            7   12     7     j  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      s     

  public final void writeUTF(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0011) ACC_PUBLIC, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // java.io.RandomAccessFile this
        start local 1 // java.lang.String str
         0: .line 1177
            aload 1 /* str */
            aload 0 /* this */
            invokestatic java.io.DataOutputStream.writeUTF:(Ljava/lang/String;Ljava/io/DataOutput;)I
            pop
         1: .line 1178
            return
        end local 1 // java.lang.String str
        end local 0 // java.io.RandomAccessFile this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljava/io/RandomAccessFile;
            0    2     1   str  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      str   

  private static native void initIDs();
    descriptor: ()V
    flags: (0x010a) ACC_PRIVATE, ACC_STATIC, ACC_NATIVE
}
SourceFile: "RandomAccessFile.java"
NestMembers:
  java.io.RandomAccessFile$1  java.io.RandomAccessFile$2
InnerClasses:
  java.io.RandomAccessFile$1
  java.io.RandomAccessFile$2