public class org.h2.value.ValueUuid extends org.h2.value.Value
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.h2.value.ValueUuid
  super_class: org.h2.value.Value
{
  static final int PRECISION;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 16

  static final int DISPLAY_SIZE;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 36

  private final long high;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final long low;
    descriptor: J
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private void <init>(long, long);
    descriptor: (JJ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=3
        start local 0 // org.h2.value.ValueUuid this
        start local 1 // long high
        start local 3 // long low
         0: .line 36
            aload 0 /* this */
            invokespecial org.h2.value.Value.<init>:()V
         1: .line 37
            aload 0 /* this */
            lload 1 /* high */
            putfield org.h2.value.ValueUuid.high:J
         2: .line 38
            aload 0 /* this */
            lload 3 /* low */
            putfield org.h2.value.ValueUuid.low:J
         3: .line 39
            return
        end local 3 // long low
        end local 1 // long high
        end local 0 // org.h2.value.ValueUuid this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/h2/value/ValueUuid;
            0    4     1  high  J
            0    4     3   low  J
    MethodParameters:
      Name  Flags
      high  
      low   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // org.h2.value.ValueUuid this
         0: .line 43
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.high:J
            bipush 32
            lushr
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.high:J
            lxor
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.low:J
            bipush 32
            lushr
            lxor
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.low:J
            lxor
            l2i
            ireturn
        end local 0 // org.h2.value.ValueUuid this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueUuid;

  public static org.h2.value.ValueUuid getNewRandom();
    descriptor: ()Lorg/h2/value/ValueUuid;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=4, args_size=0
         0: .line 52
            invokestatic org.h2.util.MathUtils.secureRandomLong:()J
            lstore 0 /* high */
        start local 0 // long high
         1: .line 53
            invokestatic org.h2.util.MathUtils.secureRandomLong:()J
            lstore 2 /* low */
        start local 2 // long low
         2: .line 55
            lload 0 /* high */
            ldc -61441
            land
            ldc 16384
            lor
            lstore 0 /* high */
         3: .line 57
            lload 2 /* low */
            ldc 4611686018427387903
            land
            ldc -9223372036854775808
            lor
            lstore 2 /* low */
         4: .line 58
            new org.h2.value.ValueUuid
            dup
            lload 0 /* high */
            lload 2 /* low */
            invokespecial org.h2.value.ValueUuid.<init>:(JJ)V
            areturn
        end local 2 // long low
        end local 0 // long high
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            1    5     0  high  J
            2    5     2   low  J

  public static org.h2.value.ValueUuid get(byte[]);
    descriptor: ([B)Lorg/h2/value/ValueUuid;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=5, args_size=1
        start local 0 // byte[] binary
         0: .line 68
            aload 0 /* binary */
            arraylength
            bipush 16
            if_icmpge 2
         1: .line 69
            aload 0 /* binary */
            invokestatic org.h2.util.StringUtils.convertBytesToHex:([B)Ljava/lang/String;
            invokestatic org.h2.value.ValueUuid.get:(Ljava/lang/String;)Lorg/h2/value/ValueUuid;
            areturn
         2: .line 71
      StackMap locals:
      StackMap stack:
            aload 0 /* binary */
            iconst_0
            invokestatic org.h2.util.Bits.readLong:([BI)J
            lstore 1 /* high */
        start local 1 // long high
         3: .line 72
            aload 0 /* binary */
            bipush 8
            invokestatic org.h2.util.Bits.readLong:([BI)J
            lstore 3 /* low */
        start local 3 // long low
         4: .line 73
            new org.h2.value.ValueUuid
            dup
            lload 1 /* high */
            lload 3 /* low */
            invokespecial org.h2.value.ValueUuid.<init>:(JJ)V
            invokestatic org.h2.value.Value.cache:(Lorg/h2/value/Value;)Lorg/h2/value/Value;
            checkcast org.h2.value.ValueUuid
            areturn
        end local 3 // long low
        end local 1 // long high
        end local 0 // byte[] binary
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    5     0  binary  [B
            3    5     1    high  J
            4    5     3     low  J
    MethodParameters:
        Name  Flags
      binary  

  public static org.h2.value.ValueUuid get(long, long);
    descriptor: (JJ)Lorg/h2/value/ValueUuid;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // long high
        start local 2 // long low
         0: .line 84
            new org.h2.value.ValueUuid
            dup
            lload 0 /* high */
            lload 2 /* low */
            invokespecial org.h2.value.ValueUuid.<init>:(JJ)V
            invokestatic org.h2.value.Value.cache:(Lorg/h2/value/Value;)Lorg/h2/value/Value;
            checkcast org.h2.value.ValueUuid
            areturn
        end local 2 // long low
        end local 0 // long high
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  high  J
            0    1     2   low  J
    MethodParameters:
      Name  Flags
      high  
      low   

  public static org.h2.value.ValueUuid get(java.util.UUID);
    descriptor: (Ljava/util/UUID;)Lorg/h2/value/ValueUuid;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // java.util.UUID uuid
         0: .line 94
            aload 0 /* uuid */
            invokevirtual java.util.UUID.getMostSignificantBits:()J
            aload 0 /* uuid */
            invokevirtual java.util.UUID.getLeastSignificantBits:()J
            invokestatic org.h2.value.ValueUuid.get:(JJ)Lorg/h2/value/ValueUuid;
            areturn
        end local 0 // java.util.UUID uuid
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  uuid  Ljava/util/UUID;
    MethodParameters:
      Name  Flags
      uuid  

  public static org.h2.value.ValueUuid get(java.lang.String);
    descriptor: (Ljava/lang/String;)Lorg/h2/value/ValueUuid;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=6, locals=9, args_size=1
        start local 0 // java.lang.String s
         0: .line 104
            lconst_0
            lstore 1 /* low */
        start local 1 // long low
         1: lconst_0
            lstore 3 /* high */
        start local 3 // long high
         2: .line 105
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         3: iconst_0
            istore 6 /* j */
        start local 6 // int j
         4: aload 0 /* s */
            invokevirtual java.lang.String.length:()I
            istore 7 /* length */
        start local 7 // int length
         5: goto 25
         6: .line 106
      StackMap locals: java.lang.String long long int int int
      StackMap stack:
            aload 0 /* s */
            iload 5 /* i */
            invokevirtual java.lang.String.charAt:(I)C
            istore 8 /* c */
        start local 8 // char c
         7: .line 107
            iload 8 /* c */
            bipush 48
            if_icmplt 10
            iload 8 /* c */
            bipush 57
            if_icmpgt 10
         8: .line 108
            lload 1 /* low */
            iconst_4
            lshl
            iload 8 /* c */
            bipush 48
            isub
            i2l
            lor
            lstore 1 /* low */
         9: .line 109
            goto 21
      StackMap locals: int
      StackMap stack:
        10: iload 8 /* c */
            bipush 97
            if_icmplt 13
            iload 8 /* c */
            bipush 102
            if_icmpgt 13
        11: .line 110
            lload 1 /* low */
            iconst_4
            lshl
            iload 8 /* c */
            bipush 97
            isub
            bipush 10
            iadd
            i2l
            lor
            lstore 1 /* low */
        12: .line 111
            goto 21
      StackMap locals:
      StackMap stack:
        13: iload 8 /* c */
            bipush 45
            if_icmpne 15
        14: .line 112
            goto 24
        15: .line 113
      StackMap locals:
      StackMap stack:
            iload 8 /* c */
            bipush 65
            if_icmplt 18
            iload 8 /* c */
            bipush 70
            if_icmpgt 18
        16: .line 114
            lload 1 /* low */
            iconst_4
            lshl
            iload 8 /* c */
            bipush 65
            isub
            bipush 10
            iadd
            i2l
            lor
            lstore 1 /* low */
        17: .line 115
            goto 21
      StackMap locals:
      StackMap stack:
        18: iload 8 /* c */
            bipush 32
            if_icmpgt 20
        19: .line 116
            goto 24
        20: .line 118
      StackMap locals:
      StackMap stack:
            sipush 22018
            aload 0 /* s */
            invokestatic org.h2.message.DbException.get:(ILjava/lang/String;)Lorg/h2/message/DbException;
            athrow
        21: .line 120
      StackMap locals:
      StackMap stack:
            iload 6 /* j */
            iinc 6 /* j */ 1
            bipush 15
            if_icmpne 24
        22: .line 121
            lload 1 /* low */
            lstore 3 /* high */
        23: .line 122
            lconst_0
            lstore 1 /* low */
        end local 8 // char c
        24: .line 105
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        25: iload 5 /* i */
            iload 7 /* length */
            if_icmplt 6
        end local 7 // int length
        end local 6 // int j
        end local 5 // int i
        26: .line 125
            new org.h2.value.ValueUuid
            dup
            lload 3 /* high */
            lload 1 /* low */
            invokespecial org.h2.value.ValueUuid.<init>:(JJ)V
            invokestatic org.h2.value.Value.cache:(Lorg/h2/value/Value;)Lorg/h2/value/Value;
            checkcast org.h2.value.ValueUuid
            areturn
        end local 3 // long high
        end local 1 // long low
        end local 0 // java.lang.String s
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   27     0       s  Ljava/lang/String;
            1   27     1     low  J
            2   27     3    high  J
            3   26     5       i  I
            4   26     6       j  I
            5   26     7  length  I
            7   24     8       c  C
    MethodParameters:
      Name  Flags
      s     

  public java.lang.StringBuilder getSQL(java.lang.StringBuilder);
    descriptor: (Ljava/lang/StringBuilder;)Ljava/lang/StringBuilder;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.h2.value.ValueUuid this
        start local 1 // java.lang.StringBuilder builder
         0: .line 130
            aload 1 /* builder */
            bipush 39
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         1: .line 131
            aload 0 /* this */
            aload 1 /* builder */
            invokevirtual org.h2.value.ValueUuid.addString:(Ljava/lang/StringBuilder;)Ljava/lang/StringBuilder;
            bipush 39
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            areturn
        end local 1 // java.lang.StringBuilder builder
        end local 0 // org.h2.value.ValueUuid this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/h2/value/ValueUuid;
            0    2     1  builder  Ljava/lang/StringBuilder;
    MethodParameters:
         Name  Flags
      builder  

  public org.h2.value.TypeInfo getType();
    descriptor: ()Lorg/h2/value/TypeInfo;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.value.ValueUuid this
         0: .line 136
            getstatic org.h2.value.TypeInfo.TYPE_UUID:Lorg/h2/value/TypeInfo;
            areturn
        end local 0 // org.h2.value.ValueUuid this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueUuid;

  public int getMemory();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.value.ValueUuid this
         0: .line 141
            bipush 32
            ireturn
        end local 0 // org.h2.value.ValueUuid this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueUuid;

  public int getValueType();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.h2.value.ValueUuid this
         0: .line 146
            bipush 20
            ireturn
        end local 0 // org.h2.value.ValueUuid this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueUuid;

  public java.lang.String getString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.h2.value.ValueUuid this
         0: .line 151
            aload 0 /* this */
            new java.lang.StringBuilder
            dup
            bipush 36
            invokespecial java.lang.StringBuilder.<init>:(I)V
            invokevirtual org.h2.value.ValueUuid.addString:(Ljava/lang/StringBuilder;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.h2.value.ValueUuid this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueUuid;

  private java.lang.StringBuilder addString(java.lang.StringBuilder);
    descriptor: (Ljava/lang/StringBuilder;)Ljava/lang/StringBuilder;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.h2.value.ValueUuid this
        start local 1 // java.lang.StringBuilder builder
         0: .line 155
            aload 1 /* builder */
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.high:J
            bipush 32
            lshr
            iconst_4
            invokestatic org.h2.util.StringUtils.appendHex:(Ljava/lang/StringBuilder;JI)Ljava/lang/StringBuilder;
            bipush 45
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         1: .line 156
            aload 1 /* builder */
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.high:J
            bipush 16
            lshr
            iconst_2
            invokestatic org.h2.util.StringUtils.appendHex:(Ljava/lang/StringBuilder;JI)Ljava/lang/StringBuilder;
            bipush 45
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         2: .line 157
            aload 1 /* builder */
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.high:J
            iconst_2
            invokestatic org.h2.util.StringUtils.appendHex:(Ljava/lang/StringBuilder;JI)Ljava/lang/StringBuilder;
            bipush 45
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         3: .line 158
            aload 1 /* builder */
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.low:J
            bipush 48
            lshr
            iconst_2
            invokestatic org.h2.util.StringUtils.appendHex:(Ljava/lang/StringBuilder;JI)Ljava/lang/StringBuilder;
            bipush 45
            invokevirtual java.lang.StringBuilder.append:(C)Ljava/lang/StringBuilder;
            pop
         4: .line 159
            aload 1 /* builder */
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.low:J
            bipush 6
            invokestatic org.h2.util.StringUtils.appendHex:(Ljava/lang/StringBuilder;JI)Ljava/lang/StringBuilder;
            areturn
        end local 1 // java.lang.StringBuilder builder
        end local 0 // org.h2.value.ValueUuid this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    5     0     this  Lorg/h2/value/ValueUuid;
            0    5     1  builder  Ljava/lang/StringBuilder;
    MethodParameters:
         Name  Flags
      builder  

  public int compareTypeSafe(org.h2.value.Value, org.h2.value.CompareMode);
    descriptor: (Lorg/h2/value/Value;Lorg/h2/value/CompareMode;)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // org.h2.value.ValueUuid this
        start local 1 // org.h2.value.Value o
        start local 2 // org.h2.value.CompareMode mode
         0: .line 164
            aload 1 /* o */
            aload 0 /* this */
            if_acmpne 2
         1: .line 165
            iconst_0
            ireturn
         2: .line 167
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast org.h2.value.ValueUuid
            astore 3 /* v */
        start local 3 // org.h2.value.ValueUuid v
         3: .line 168
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.high:J
            lstore 4 /* v1 */
        start local 4 // long v1
         4: aload 3 /* v */
            getfield org.h2.value.ValueUuid.high:J
            lstore 6 /* v2 */
        start local 6 // long v2
         5: .line 169
            lload 4 /* v1 */
            lload 6 /* v2 */
            lcmp
            ifne 12
         6: .line 170
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.low:J
            lstore 4 /* v1 */
         7: .line 171
            aload 3 /* v */
            getfield org.h2.value.ValueUuid.low:J
            lstore 6 /* v2 */
         8: .line 172
            aload 2 /* mode */
            invokevirtual org.h2.value.CompareMode.isUuidUnsigned:()Z
            ifeq 11
         9: .line 173
            lload 4 /* v1 */
            ldc -9223372036854775808
            ladd
            lstore 4 /* v1 */
        10: .line 174
            lload 6 /* v2 */
            ldc -9223372036854775808
            ladd
            lstore 6 /* v2 */
        11: .line 176
      StackMap locals: org.h2.value.ValueUuid long long
      StackMap stack:
            lload 4 /* v1 */
            lload 6 /* v2 */
            invokestatic java.lang.Long.compare:(JJ)I
            ireturn
        12: .line 178
      StackMap locals:
      StackMap stack:
            aload 2 /* mode */
            invokevirtual org.h2.value.CompareMode.isUuidUnsigned:()Z
            ifeq 15
        13: .line 179
            lload 4 /* v1 */
            ldc -9223372036854775808
            ladd
            lstore 4 /* v1 */
        14: .line 180
            lload 6 /* v2 */
            ldc -9223372036854775808
            ladd
            lstore 6 /* v2 */
        15: .line 182
      StackMap locals:
      StackMap stack:
            lload 4 /* v1 */
            lload 6 /* v2 */
            lcmp
            ifle 16
            iconst_1
            goto 17
      StackMap locals:
      StackMap stack:
        16: iconst_m1
      StackMap locals:
      StackMap stack: int
        17: ireturn
        end local 6 // long v2
        end local 4 // long v1
        end local 3 // org.h2.value.ValueUuid v
        end local 2 // org.h2.value.CompareMode mode
        end local 1 // org.h2.value.Value o
        end local 0 // org.h2.value.ValueUuid this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lorg/h2/value/ValueUuid;
            0   18     1     o  Lorg/h2/value/Value;
            0   18     2  mode  Lorg/h2/value/CompareMode;
            3   18     3     v  Lorg/h2/value/ValueUuid;
            4   18     4    v1  J
            5   18     6    v2  J
    MethodParameters:
      Name  Flags
      o     
      mode  

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // org.h2.value.ValueUuid this
        start local 1 // java.lang.Object other
         0: .line 187
            aload 1 /* other */
            instanceof org.h2.value.ValueUuid
            ifne 2
         1: .line 188
            iconst_0
            ireturn
         2: .line 190
      StackMap locals:
      StackMap stack:
            aload 1 /* other */
            checkcast org.h2.value.ValueUuid
            astore 2 /* v */
        start local 2 // org.h2.value.ValueUuid v
         3: .line 191
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.high:J
            aload 2 /* v */
            getfield org.h2.value.ValueUuid.high:J
            lcmp
            ifne 4
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.low:J
            aload 2 /* v */
            getfield org.h2.value.ValueUuid.low:J
            lcmp
            ifne 4
            iconst_1
            ireturn
      StackMap locals: org.h2.value.ValueUuid
      StackMap stack:
         4: iconst_0
            ireturn
        end local 2 // org.h2.value.ValueUuid v
        end local 1 // java.lang.Object other
        end local 0 // org.h2.value.ValueUuid this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lorg/h2/value/ValueUuid;
            0    5     1  other  Ljava/lang/Object;
            3    5     2      v  Lorg/h2/value/ValueUuid;
    MethodParameters:
       Name  Flags
      other  

  public java.lang.Object getObject();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.h2.value.ValueUuid this
         0: .line 196
            new java.util.UUID
            dup
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.high:J
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.low:J
            invokespecial java.util.UUID.<init>:(JJ)V
            areturn
        end local 0 // org.h2.value.ValueUuid this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueUuid;

  public byte[] getBytes();
    descriptor: ()[B
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.h2.value.ValueUuid this
         0: .line 201
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.high:J
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.low:J
            invokestatic org.h2.util.Bits.uuidToBytes:(JJ)[B
            areturn
        end local 0 // org.h2.value.ValueUuid this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueUuid;

  public void set(java.sql.PreparedStatement, int);
    descriptor: (Ljava/sql/PreparedStatement;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.h2.value.ValueUuid this
        start local 1 // java.sql.PreparedStatement prep
        start local 2 // int parameterIndex
         0: .line 207
            aload 1 /* prep */
            iload 2 /* parameterIndex */
            aload 0 /* this */
            invokevirtual org.h2.value.ValueUuid.getBytes:()[B
            invokeinterface java.sql.PreparedStatement.setBytes:(I[B)V
         1: .line 208
            return
        end local 2 // int parameterIndex
        end local 1 // java.sql.PreparedStatement prep
        end local 0 // org.h2.value.ValueUuid this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0    2     0            this  Lorg/h2/value/ValueUuid;
            0    2     1            prep  Ljava/sql/PreparedStatement;
            0    2     2  parameterIndex  I
    Exceptions:
      throws java.sql.SQLException
    MethodParameters:
                Name  Flags
      prep            
      parameterIndex  

  public long getHigh();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.value.ValueUuid this
         0: .line 216
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.high:J
            lreturn
        end local 0 // org.h2.value.ValueUuid this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueUuid;

  public long getLow();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.h2.value.ValueUuid this
         0: .line 225
            aload 0 /* this */
            getfield org.h2.value.ValueUuid.low:J
            lreturn
        end local 0 // org.h2.value.ValueUuid this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/h2/value/ValueUuid;
}
SourceFile: "ValueUuid.java"