public final class com.fasterxml.jackson.core.io.UTF8Writer extends java.io.Writer
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.fasterxml.jackson.core.io.UTF8Writer
  super_class: java.io.Writer
{
  static final int SURR1_FIRST;
    descriptor: I
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 55296

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

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

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

  private final com.fasterxml.jackson.core.io.IOContext _context;
    descriptor: Lcom/fasterxml/jackson/core/io/IOContext;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private java.io.OutputStream _out;
    descriptor: Ljava/io/OutputStream;
    flags: (0x0002) ACC_PRIVATE

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

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

  private int _outPtr;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  private int _surrogate;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  public void <init>(com.fasterxml.jackson.core.io.IOContext, java.io.OutputStream);
    descriptor: (Lcom/fasterxml/jackson/core/io/IOContext;Ljava/io/OutputStream;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
        start local 1 // com.fasterxml.jackson.core.io.IOContext ctxt
        start local 2 // java.io.OutputStream out
         0: .line 29
            aload 0 /* this */
            invokespecial java.io.Writer.<init>:()V
         1: .line 31
            aload 0 /* this */
            aload 1 /* ctxt */
            putfield com.fasterxml.jackson.core.io.UTF8Writer._context:Lcom/fasterxml/jackson/core/io/IOContext;
         2: .line 32
            aload 0 /* this */
            aload 2 /* out */
            putfield com.fasterxml.jackson.core.io.UTF8Writer._out:Ljava/io/OutputStream;
         3: .line 34
            aload 0 /* this */
            aload 1 /* ctxt */
            invokevirtual com.fasterxml.jackson.core.io.IOContext.allocWriteEncodingBuffer:()[B
            putfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
         4: .line 39
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
            arraylength
            iconst_4
            isub
            putfield com.fasterxml.jackson.core.io.UTF8Writer._outBufferEnd:I
         5: .line 40
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
         6: .line 41
            return
        end local 2 // java.io.OutputStream out
        end local 1 // com.fasterxml.jackson.core.io.IOContext ctxt
        end local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/fasterxml/jackson/core/io/UTF8Writer;
            0    7     1  ctxt  Lcom/fasterxml/jackson/core/io/IOContext;
            0    7     2   out  Ljava/io/OutputStream;
    MethodParameters:
      Name  Flags
      ctxt  
      out   

  public java.io.Writer append(char);
    descriptor: (C)Ljava/io/Writer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
        start local 1 // char c
         0: .line 47
            aload 0 /* this */
            iload 1 /* c */
            invokevirtual com.fasterxml.jackson.core.io.UTF8Writer.write:(I)V
         1: .line 48
            aload 0 /* this */
            areturn
        end local 1 // char c
        end local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/core/io/UTF8Writer;
            0    2     1     c  C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      c     

  public void close();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=1
        start local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
         0: .line 55
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._out:Ljava/io/OutputStream;
            ifnull 15
         1: .line 56
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
            ifle 4
         2: .line 57
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._out:Ljava/io/OutputStream;
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
            invokevirtual java.io.OutputStream.write:([BII)V
         3: .line 58
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
         4: .line 60
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._out:Ljava/io/OutputStream;
            astore 1 /* out */
        start local 1 // java.io.OutputStream out
         5: .line 61
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.io.UTF8Writer._out:Ljava/io/OutputStream;
         6: .line 63
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
            astore 2 /* buf */
        start local 2 // byte[] buf
         7: .line 64
            aload 2 /* buf */
            ifnull 10
         8: .line 65
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
         9: .line 66
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._context:Lcom/fasterxml/jackson/core/io/IOContext;
            aload 2 /* buf */
            invokevirtual com.fasterxml.jackson.core.io.IOContext.releaseWriteEncodingBuffer:([B)V
        10: .line 69
      StackMap locals: java.io.OutputStream byte[]
      StackMap stack:
            aload 1 /* out */
            invokevirtual java.io.OutputStream.close:()V
        11: .line 74
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._surrogate:I
            istore 3 /* code */
        start local 3 // int code
        12: .line 75
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.io.UTF8Writer._surrogate:I
        13: .line 76
            iload 3 /* code */
            ifle 15
        14: .line 77
            iload 3 /* code */
            invokestatic com.fasterxml.jackson.core.io.UTF8Writer.illegalSurrogate:(I)V
        end local 3 // int code
        end local 2 // byte[] buf
        end local 1 // java.io.OutputStream out
        15: .line 80
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   16     0  this  Lcom/fasterxml/jackson/core/io/UTF8Writer;
            5   15     1   out  Ljava/io/OutputStream;
            7   15     2   buf  [B
           12   15     3  code  I
    Exceptions:
      throws java.io.IOException

  public void flush();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
         0: .line 86
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._out:Ljava/io/OutputStream;
            ifnull 5
         1: .line 87
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
            ifle 4
         2: .line 88
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._out:Ljava/io/OutputStream;
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
            invokevirtual java.io.OutputStream.write:([BII)V
         3: .line 89
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
         4: .line 91
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._out:Ljava/io/OutputStream;
            invokevirtual java.io.OutputStream.flush:()V
         5: .line 93
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    6     0  this  Lcom/fasterxml/jackson/core/io/UTF8Writer;
    Exceptions:
      throws java.io.IOException

  public void write(char[]);
    descriptor: ([C)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
        start local 1 // char[] cbuf
         0: .line 99
            aload 0 /* this */
            aload 1 /* cbuf */
            iconst_0
            aload 1 /* cbuf */
            arraylength
            invokevirtual com.fasterxml.jackson.core.io.UTF8Writer.write:([CII)V
         1: .line 100
            return
        end local 1 // char[] cbuf
        end local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/core/io/UTF8Writer;
            0    2     1  cbuf  [C
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  

  public void write(char[], int, int);
    descriptor: ([CII)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=10, args_size=4
        start local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
        start local 1 // char[] cbuf
        start local 2 // int off
        start local 3 // int len
         0: .line 106
            iload 3 /* len */
            iconst_2
            if_icmpge 4
         1: .line 107
            iload 3 /* len */
            iconst_1
            if_icmpne 3
         2: .line 108
            aload 0 /* this */
            aload 1 /* cbuf */
            iload 2 /* off */
            caload
            invokevirtual com.fasterxml.jackson.core.io.UTF8Writer.write:(I)V
         3: .line 110
      StackMap locals:
      StackMap stack:
            return
         4: .line 114
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._surrogate:I
            ifle 8
         5: .line 115
            aload 1 /* cbuf */
            iload 2 /* off */
            iinc 2 /* off */ 1
            caload
            istore 4 /* second */
        start local 4 // char second
         6: .line 116
            iinc 3 /* len */ -1
         7: .line 117
            aload 0 /* this */
            aload 0 /* this */
            iload 4 /* second */
            invokevirtual com.fasterxml.jackson.core.io.UTF8Writer.convertSurrogate:(I)I
            invokevirtual com.fasterxml.jackson.core.io.UTF8Writer.write:(I)V
        end local 4 // char second
         8: .line 121
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
            istore 4 /* outPtr */
        start local 4 // int outPtr
         9: .line 122
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
            astore 5 /* outBuf */
        start local 5 // byte[] outBuf
        10: .line 123
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBufferEnd:I
            istore 6 /* outBufLast */
        start local 6 // int outBufLast
        11: .line 126
            iload 3 /* len */
            iload 2 /* off */
            iadd
            istore 3 /* len */
        12: .line 129
            goto 54
        13: .line 133
      StackMap locals: int byte[] int
      StackMap stack:
            iload 4 /* outPtr */
            iload 6 /* outBufLast */
            if_icmplt 16
        14: .line 134
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._out:Ljava/io/OutputStream;
            aload 5 /* outBuf */
            iconst_0
            iload 4 /* outPtr */
            invokevirtual java.io.OutputStream.write:([BII)V
        15: .line 135
            iconst_0
            istore 4 /* outPtr */
        16: .line 138
      StackMap locals:
      StackMap stack:
            aload 1 /* cbuf */
            iload 2 /* off */
            iinc 2 /* off */ 1
            caload
            istore 7 /* c */
        start local 7 // int c
        17: .line 140
            iload 7 /* c */
            sipush 128
            if_icmpge 31
        18: .line 141
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            iload 7 /* c */
            i2b
            bastore
        19: .line 143
            iload 3 /* len */
            iload 2 /* off */
            isub
            istore 8 /* maxInCount */
        start local 8 // int maxInCount
        20: .line 144
            iload 6 /* outBufLast */
            iload 4 /* outPtr */
            isub
            istore 9 /* maxOutCount */
        start local 9 // int maxOutCount
        21: .line 146
            iload 8 /* maxInCount */
            iload 9 /* maxOutCount */
            if_icmple 23
        22: .line 147
            iload 9 /* maxOutCount */
            istore 8 /* maxInCount */
        23: .line 149
      StackMap locals: int int int
      StackMap stack:
            iload 8 /* maxInCount */
            iload 2 /* off */
            iadd
            istore 8 /* maxInCount */
        24: .line 152
      StackMap locals:
      StackMap stack:
            iload 2 /* off */
            iload 8 /* maxInCount */
            if_icmplt 26
        25: .line 153
            goto 54
        26: .line 155
      StackMap locals:
      StackMap stack:
            aload 1 /* cbuf */
            iload 2 /* off */
            iinc 2 /* off */ 1
            caload
            istore 7 /* c */
        27: .line 156
            iload 7 /* c */
            sipush 128
            if_icmplt 29
        28: .line 157
            goto 31
        29: .line 159
      StackMap locals:
      StackMap stack:
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            iload 7 /* c */
            i2b
            bastore
        30: .line 151
            goto 24
        end local 9 // int maxOutCount
        end local 8 // int maxInCount
        31: .line 164
      StackMap locals:
      StackMap stack:
            iload 7 /* c */
            sipush 2048
            if_icmpge 35
        32: .line 165
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            sipush 192
            iload 7 /* c */
            bipush 6
            ishr
            ior
            i2b
            bastore
        33: .line 166
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            sipush 128
            iload 7 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        34: .line 167
            goto 54
        35: .line 169
      StackMap locals:
      StackMap stack:
            iload 7 /* c */
            ldc 55296
            if_icmplt 36
            iload 7 /* c */
            ldc 57343
            if_icmple 40
        36: .line 170
      StackMap locals:
      StackMap stack:
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            sipush 224
            iload 7 /* c */
            bipush 12
            ishr
            ior
            i2b
            bastore
        37: .line 171
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            sipush 128
            iload 7 /* c */
            bipush 6
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        38: .line 172
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            sipush 128
            iload 7 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        39: .line 173
            goto 54
        40: .line 176
      StackMap locals:
      StackMap stack:
            iload 7 /* c */
            ldc 56319
            if_icmple 43
        41: .line 177
            aload 0 /* this */
            iload 4 /* outPtr */
            putfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
        42: .line 178
            iload 7 /* c */
            invokestatic com.fasterxml.jackson.core.io.UTF8Writer.illegalSurrogate:(I)V
        43: .line 180
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 7 /* c */
            putfield com.fasterxml.jackson.core.io.UTF8Writer._surrogate:I
        44: .line 182
            iload 2 /* off */
            iload 3 /* len */
            if_icmplt 46
        45: .line 183
            goto 55
        46: .line 185
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* cbuf */
            iload 2 /* off */
            iinc 2 /* off */ 1
            caload
            invokevirtual com.fasterxml.jackson.core.io.UTF8Writer.convertSurrogate:(I)I
            istore 7 /* c */
        47: .line 186
            iload 7 /* c */
            ldc 1114111
            if_icmple 50
        48: .line 187
            aload 0 /* this */
            iload 4 /* outPtr */
            putfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
        49: .line 188
            iload 7 /* c */
            invokestatic com.fasterxml.jackson.core.io.UTF8Writer.illegalSurrogate:(I)V
        50: .line 190
      StackMap locals:
      StackMap stack:
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            sipush 240
            iload 7 /* c */
            bipush 18
            ishr
            ior
            i2b
            bastore
        51: .line 191
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            sipush 128
            iload 7 /* c */
            bipush 12
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        52: .line 192
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            sipush 128
            iload 7 /* c */
            bipush 6
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        53: .line 193
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            sipush 128
            iload 7 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        end local 7 // int c
        54: .line 129
      StackMap locals:
      StackMap stack:
            iload 2 /* off */
            iload 3 /* len */
            if_icmplt 13
        55: .line 196
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* outPtr */
            putfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
        56: .line 197
            return
        end local 6 // int outBufLast
        end local 5 // byte[] outBuf
        end local 4 // int outPtr
        end local 3 // int len
        end local 2 // int off
        end local 1 // char[] cbuf
        end local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   57     0         this  Lcom/fasterxml/jackson/core/io/UTF8Writer;
            0   57     1         cbuf  [C
            0   57     2          off  I
            0   57     3          len  I
            6    8     4       second  C
            9   57     4       outPtr  I
           10   57     5       outBuf  [B
           11   57     6   outBufLast  I
           17   54     7            c  I
           20   31     8   maxInCount  I
           21   31     9  maxOutCount  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      cbuf  
      off   
      len   

  public void write(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
        start local 1 // int c
         0: .line 203
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._surrogate:I
            ifle 3
         1: .line 204
            aload 0 /* this */
            iload 1 /* c */
            invokevirtual com.fasterxml.jackson.core.io.UTF8Writer.convertSurrogate:(I)I
            istore 1 /* c */
         2: .line 206
            goto 8
      StackMap locals:
      StackMap stack:
         3: iload 1 /* c */
            ldc 55296
            if_icmplt 8
            iload 1 /* c */
            ldc 57343
            if_icmpgt 8
         4: .line 208
            iload 1 /* c */
            ldc 56319
            if_icmple 6
         5: .line 209
            iload 1 /* c */
            invokestatic com.fasterxml.jackson.core.io.UTF8Writer.illegalSurrogate:(I)V
         6: .line 212
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* c */
            putfield com.fasterxml.jackson.core.io.UTF8Writer._surrogate:I
         7: .line 213
            return
         8: .line 216
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBufferEnd:I
            if_icmplt 11
         9: .line 217
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._out:Ljava/io/OutputStream;
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
            invokevirtual java.io.OutputStream.write:([BII)V
        10: .line 218
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
        11: .line 221
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            sipush 128
            if_icmpge 14
        12: .line 222
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
            dup_x1
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
            iload 1 /* c */
            i2b
            bastore
        13: .line 223
            goto 31
        14: .line 224
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
            istore 2 /* ptr */
        start local 2 // int ptr
        15: .line 225
            iload 1 /* c */
            sipush 2048
            if_icmpge 19
        16: .line 226
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
            iload 2 /* ptr */
            iinc 2 /* ptr */ 1
            sipush 192
            iload 1 /* c */
            bipush 6
            ishr
            ior
            i2b
            bastore
        17: .line 227
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
            iload 2 /* ptr */
            iinc 2 /* ptr */ 1
            sipush 128
            iload 1 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        18: .line 228
            goto 30
      StackMap locals: int
      StackMap stack:
        19: iload 1 /* c */
            ldc 65535
            if_icmpgt 24
        20: .line 229
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
            iload 2 /* ptr */
            iinc 2 /* ptr */ 1
            sipush 224
            iload 1 /* c */
            bipush 12
            ishr
            ior
            i2b
            bastore
        21: .line 230
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
            iload 2 /* ptr */
            iinc 2 /* ptr */ 1
            sipush 128
            iload 1 /* c */
            bipush 6
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        22: .line 231
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
            iload 2 /* ptr */
            iinc 2 /* ptr */ 1
            sipush 128
            iload 1 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        23: .line 232
            goto 30
        24: .line 233
      StackMap locals:
      StackMap stack:
            iload 1 /* c */
            ldc 1114111
            if_icmple 26
        25: .line 234
            iload 1 /* c */
            invokestatic com.fasterxml.jackson.core.io.UTF8Writer.illegalSurrogate:(I)V
        26: .line 236
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
            iload 2 /* ptr */
            iinc 2 /* ptr */ 1
            sipush 240
            iload 1 /* c */
            bipush 18
            ishr
            ior
            i2b
            bastore
        27: .line 237
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
            iload 2 /* ptr */
            iinc 2 /* ptr */ 1
            sipush 128
            iload 1 /* c */
            bipush 12
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        28: .line 238
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
            iload 2 /* ptr */
            iinc 2 /* ptr */ 1
            sipush 128
            iload 1 /* c */
            bipush 6
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        29: .line 239
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
            iload 2 /* ptr */
            iinc 2 /* ptr */ 1
            sipush 128
            iload 1 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        30: .line 241
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* ptr */
            putfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
        end local 2 // int ptr
        31: .line 243
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int c
        end local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   32     0  this  Lcom/fasterxml/jackson/core/io/UTF8Writer;
            0   32     1     c  I
           15   31     2   ptr  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      c     

  public void write(java.lang.String);
    descriptor: (Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
        start local 1 // java.lang.String str
         0: .line 248
            aload 0 /* this */
            aload 1 /* str */
            iconst_0
            aload 1 /* str */
            invokevirtual java.lang.String.length:()I
            invokevirtual com.fasterxml.jackson.core.io.UTF8Writer.write:(Ljava/lang/String;II)V
         1: .line 249
            return
        end local 1 // java.lang.String str
        end local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/core/io/UTF8Writer;
            0    2     1   str  Ljava/lang/String;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      str   

  public void write(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=10, args_size=4
        start local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
        start local 1 // java.lang.String str
        start local 2 // int off
        start local 3 // int len
         0: .line 254
            iload 3 /* len */
            iconst_2
            if_icmpge 4
         1: .line 255
            iload 3 /* len */
            iconst_1
            if_icmpne 3
         2: .line 256
            aload 0 /* this */
            aload 1 /* str */
            iload 2 /* off */
            invokevirtual java.lang.String.charAt:(I)C
            invokevirtual com.fasterxml.jackson.core.io.UTF8Writer.write:(I)V
         3: .line 258
      StackMap locals:
      StackMap stack:
            return
         4: .line 262
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._surrogate:I
            ifle 8
         5: .line 263
            aload 1 /* str */
            iload 2 /* off */
            iinc 2 /* off */ 1
            invokevirtual java.lang.String.charAt:(I)C
            istore 4 /* second */
        start local 4 // char second
         6: .line 264
            iinc 3 /* len */ -1
         7: .line 265
            aload 0 /* this */
            aload 0 /* this */
            iload 4 /* second */
            invokevirtual com.fasterxml.jackson.core.io.UTF8Writer.convertSurrogate:(I)I
            invokevirtual com.fasterxml.jackson.core.io.UTF8Writer.write:(I)V
        end local 4 // char second
         8: .line 269
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
            istore 4 /* outPtr */
        start local 4 // int outPtr
         9: .line 270
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBuffer:[B
            astore 5 /* outBuf */
        start local 5 // byte[] outBuf
        10: .line 271
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._outBufferEnd:I
            istore 6 /* outBufLast */
        start local 6 // int outBufLast
        11: .line 274
            iload 3 /* len */
            iload 2 /* off */
            iadd
            istore 3 /* len */
        12: .line 277
            goto 54
        13: .line 281
      StackMap locals: int byte[] int
      StackMap stack:
            iload 4 /* outPtr */
            iload 6 /* outBufLast */
            if_icmplt 16
        14: .line 282
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._out:Ljava/io/OutputStream;
            aload 5 /* outBuf */
            iconst_0
            iload 4 /* outPtr */
            invokevirtual java.io.OutputStream.write:([BII)V
        15: .line 283
            iconst_0
            istore 4 /* outPtr */
        16: .line 286
      StackMap locals:
      StackMap stack:
            aload 1 /* str */
            iload 2 /* off */
            iinc 2 /* off */ 1
            invokevirtual java.lang.String.charAt:(I)C
            istore 7 /* c */
        start local 7 // int c
        17: .line 288
            iload 7 /* c */
            sipush 128
            if_icmpge 31
        18: .line 289
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            iload 7 /* c */
            i2b
            bastore
        19: .line 291
            iload 3 /* len */
            iload 2 /* off */
            isub
            istore 8 /* maxInCount */
        start local 8 // int maxInCount
        20: .line 292
            iload 6 /* outBufLast */
            iload 4 /* outPtr */
            isub
            istore 9 /* maxOutCount */
        start local 9 // int maxOutCount
        21: .line 294
            iload 8 /* maxInCount */
            iload 9 /* maxOutCount */
            if_icmple 23
        22: .line 295
            iload 9 /* maxOutCount */
            istore 8 /* maxInCount */
        23: .line 297
      StackMap locals: int int int
      StackMap stack:
            iload 8 /* maxInCount */
            iload 2 /* off */
            iadd
            istore 8 /* maxInCount */
        24: .line 300
      StackMap locals:
      StackMap stack:
            iload 2 /* off */
            iload 8 /* maxInCount */
            if_icmplt 26
        25: .line 301
            goto 54
        26: .line 303
      StackMap locals:
      StackMap stack:
            aload 1 /* str */
            iload 2 /* off */
            iinc 2 /* off */ 1
            invokevirtual java.lang.String.charAt:(I)C
            istore 7 /* c */
        27: .line 304
            iload 7 /* c */
            sipush 128
            if_icmplt 29
        28: .line 305
            goto 31
        29: .line 307
      StackMap locals:
      StackMap stack:
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            iload 7 /* c */
            i2b
            bastore
        30: .line 299
            goto 24
        end local 9 // int maxOutCount
        end local 8 // int maxInCount
        31: .line 312
      StackMap locals:
      StackMap stack:
            iload 7 /* c */
            sipush 2048
            if_icmpge 35
        32: .line 313
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            sipush 192
            iload 7 /* c */
            bipush 6
            ishr
            ior
            i2b
            bastore
        33: .line 314
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            sipush 128
            iload 7 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        34: .line 315
            goto 54
        35: .line 317
      StackMap locals:
      StackMap stack:
            iload 7 /* c */
            ldc 55296
            if_icmplt 36
            iload 7 /* c */
            ldc 57343
            if_icmple 40
        36: .line 318
      StackMap locals:
      StackMap stack:
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            sipush 224
            iload 7 /* c */
            bipush 12
            ishr
            ior
            i2b
            bastore
        37: .line 319
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            sipush 128
            iload 7 /* c */
            bipush 6
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        38: .line 320
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            sipush 128
            iload 7 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        39: .line 321
            goto 54
        40: .line 324
      StackMap locals:
      StackMap stack:
            iload 7 /* c */
            ldc 56319
            if_icmple 43
        41: .line 325
            aload 0 /* this */
            iload 4 /* outPtr */
            putfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
        42: .line 326
            iload 7 /* c */
            invokestatic com.fasterxml.jackson.core.io.UTF8Writer.illegalSurrogate:(I)V
        43: .line 328
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 7 /* c */
            putfield com.fasterxml.jackson.core.io.UTF8Writer._surrogate:I
        44: .line 330
            iload 2 /* off */
            iload 3 /* len */
            if_icmplt 46
        45: .line 331
            goto 55
        46: .line 333
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* str */
            iload 2 /* off */
            iinc 2 /* off */ 1
            invokevirtual java.lang.String.charAt:(I)C
            invokevirtual com.fasterxml.jackson.core.io.UTF8Writer.convertSurrogate:(I)I
            istore 7 /* c */
        47: .line 334
            iload 7 /* c */
            ldc 1114111
            if_icmple 50
        48: .line 335
            aload 0 /* this */
            iload 4 /* outPtr */
            putfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
        49: .line 336
            iload 7 /* c */
            invokestatic com.fasterxml.jackson.core.io.UTF8Writer.illegalSurrogate:(I)V
        50: .line 338
      StackMap locals:
      StackMap stack:
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            sipush 240
            iload 7 /* c */
            bipush 18
            ishr
            ior
            i2b
            bastore
        51: .line 339
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            sipush 128
            iload 7 /* c */
            bipush 12
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        52: .line 340
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            sipush 128
            iload 7 /* c */
            bipush 6
            ishr
            bipush 63
            iand
            ior
            i2b
            bastore
        53: .line 341
            aload 5 /* outBuf */
            iload 4 /* outPtr */
            iinc 4 /* outPtr */ 1
            sipush 128
            iload 7 /* c */
            bipush 63
            iand
            ior
            i2b
            bastore
        end local 7 // int c
        54: .line 277
      StackMap locals:
      StackMap stack:
            iload 2 /* off */
            iload 3 /* len */
            if_icmplt 13
        55: .line 344
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* outPtr */
            putfield com.fasterxml.jackson.core.io.UTF8Writer._outPtr:I
        56: .line 345
            return
        end local 6 // int outBufLast
        end local 5 // byte[] outBuf
        end local 4 // int outPtr
        end local 3 // int len
        end local 2 // int off
        end local 1 // java.lang.String str
        end local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   57     0         this  Lcom/fasterxml/jackson/core/io/UTF8Writer;
            0   57     1          str  Ljava/lang/String;
            0   57     2          off  I
            0   57     3          len  I
            6    8     4       second  C
            9   57     4       outPtr  I
           10   57     5       outBuf  [B
           11   57     6   outBufLast  I
           17   54     7            c  I
           20   31     8   maxInCount  I
           21   31     9  maxOutCount  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      str   
      off   
      len   

  protected int convertSurrogate(int);
    descriptor: (I)I
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
        start local 1 // int secondPart
         0: .line 359
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.io.UTF8Writer._surrogate:I
            istore 2 /* firstPart */
        start local 2 // int firstPart
         1: .line 360
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.io.UTF8Writer._surrogate:I
         2: .line 363
            iload 1 /* secondPart */
            ldc 56320
            if_icmplt 3
            iload 1 /* secondPart */
            ldc 57343
            if_icmple 4
         3: .line 364
      StackMap locals: int
      StackMap stack:
            new java.io.IOException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Broken surrogate pair: first char 0x"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 2 /* firstPart */
            invokestatic java.lang.Integer.toHexString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ", second 0x"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 1 /* secondPart */
            invokestatic java.lang.Integer.toHexString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc "; illegal combination"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 366
      StackMap locals:
      StackMap stack:
            ldc 65536
            iload 2 /* firstPart */
            ldc 55296
            isub
            bipush 10
            ishl
            iadd
            iload 1 /* secondPart */
            ldc 56320
            isub
            iadd
            ireturn
        end local 2 // int firstPart
        end local 1 // int secondPart
        end local 0 // com.fasterxml.jackson.core.io.UTF8Writer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lcom/fasterxml/jackson/core/io/UTF8Writer;
            0    5     1  secondPart  I
            1    5     2   firstPart  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
            Name  Flags
      secondPart  

  protected static void illegalSurrogate(int);
    descriptor: (I)V
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int code
         0: .line 370
            new java.io.IOException
            dup
            iload 0 /* code */
            invokestatic com.fasterxml.jackson.core.io.UTF8Writer.illegalSurrogateDesc:(I)Ljava/lang/String;
            invokespecial java.io.IOException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // int code
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  code  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      code  

  protected static java.lang.String illegalSurrogateDesc(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int code
         0: .line 375
            iload 0 /* code */
            ldc 1114111
            if_icmple 2
         1: .line 376
            new java.lang.StringBuilder
            dup
            ldc "Illegal character point (0x"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 0 /* code */
            invokestatic java.lang.Integer.toHexString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ") to output; max is 0x10FFFF as per RFC 4627"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
         2: .line 378
      StackMap locals:
      StackMap stack:
            iload 0 /* code */
            ldc 55296
            if_icmplt 6
         3: .line 379
            iload 0 /* code */
            ldc 56319
            if_icmpgt 5
         4: .line 380
            new java.lang.StringBuilder
            dup
            ldc "Unmatched first part of surrogate pair (0x"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 0 /* code */
            invokestatic java.lang.Integer.toHexString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
         5: .line 382
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "Unmatched second part of surrogate pair (0x"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 0 /* code */
            invokestatic java.lang.Integer.toHexString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ")"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
         6: .line 385
      StackMap locals:
      StackMap stack:
            new java.lang.StringBuilder
            dup
            ldc "Illegal character point (0x"
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 0 /* code */
            invokestatic java.lang.Integer.toHexString:(I)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            ldc ") to output"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            areturn
        end local 0 // int code
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  code  I
    MethodParameters:
      Name  Flags
      code  

  public java.lang.Appendable append(char);
    descriptor: (C)Ljava/lang/Appendable;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=2, locals=2, args_size=2
         0: .line 1
            aload 0
            iload 1
            invokevirtual com.fasterxml.jackson.core.io.UTF8Writer.append:(C)Ljava/io/Writer;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Exceptions:
      throws java.io.IOException
}
SourceFile: "UTF8Writer.java"