public final class com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
  super_class: java.lang.Object
{
  private static final int DEFAULT_T_SIZE;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 64

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

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

  protected static final int MAX_ENTRIES_FOR_REUSE;
    descriptor: I
    flags: (0x001c) ACC_PROTECTED, ACC_STATIC, ACC_FINAL
    ConstantValue: 6000

  protected final com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer _parent;
    descriptor: Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final java.util.concurrent.atomic.AtomicReference<com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo> _tableInfo;
    descriptor: Ljava/util/concurrent/atomic/AtomicReference;
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL
    Signature: Ljava/util/concurrent/atomic/AtomicReference<Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer$TableInfo;>;

  protected final int _seed;
    descriptor: I
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final boolean _intern;
    descriptor: Z
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected final boolean _failOnDoS;
    descriptor: Z
    flags: (0x0014) ACC_PROTECTED, ACC_FINAL

  protected int[] _hashArea;
    descriptor: [I
    flags: (0x0004) ACC_PROTECTED

  protected int _hashSize;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int _secondaryStart;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int _tertiaryStart;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int _tertiaryShift;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int _count;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected java.lang.String[] _names;
    descriptor: [Ljava/lang/String;
    flags: (0x0004) ACC_PROTECTED

  protected int _spilloverEnd;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected int _longNameOffset;
    descriptor: I
    flags: (0x0004) ACC_PROTECTED

  protected boolean _hashShared;
    descriptor: Z
    flags: (0x0004) ACC_PROTECTED

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

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

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

  private void <init>(int, int);
    descriptor: (II)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int sz
        start local 2 // int seed
         0: .line 226
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 229
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._parent:Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
         2: .line 230
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
         3: .line 233
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashShared:Z
         4: .line 234
            aload 0 /* this */
            iload 2 /* seed */
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._seed:I
         5: .line 235
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._intern:Z
         6: .line 236
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._failOnDoS:Z
         7: .line 238
            iload 1 /* sz */
            bipush 16
            if_icmpge 10
         8: .line 239
            bipush 16
            istore 1 /* sz */
         9: .line 240
            goto 16
        10: .line 243
      StackMap locals: com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer int int
      StackMap stack:
            iload 1 /* sz */
            iload 1 /* sz */
            iconst_1
            isub
            iand
            ifeq 16
        11: .line 244
            bipush 16
            istore 3 /* curr */
        start local 3 // int curr
        12: .line 245
            goto 14
        13: .line 246
      StackMap locals: int
      StackMap stack:
            iload 3 /* curr */
            iload 3 /* curr */
            iadd
            istore 3 /* curr */
        14: .line 245
      StackMap locals:
      StackMap stack:
            iload 3 /* curr */
            iload 1 /* sz */
            if_icmplt 13
        15: .line 248
            iload 3 /* curr */
            istore 1 /* sz */
        end local 3 // int curr
        16: .line 251
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new java.util.concurrent.atomic.AtomicReference
            dup
            iload 1 /* sz */
            invokestatic com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo.createInitial:(I)Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer$TableInfo;
            invokespecial java.util.concurrent.atomic.AtomicReference.<init>:(Ljava/lang/Object;)V
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tableInfo:Ljava/util/concurrent/atomic/AtomicReference;
        17: .line 252
            return
        end local 2 // int seed
        end local 1 // int sz
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   18     0  this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   18     1    sz  I
            0   18     2  seed  I
           12   16     3  curr  I
    MethodParameters:
      Name  Flags
      sz    
      seed  

  private void <init>(com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer, int, com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo, boolean, boolean);
    descriptor: (Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;ILcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer$TableInfo;ZZ)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=6
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer parent
        start local 2 // int seed
        start local 3 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo state
        start local 4 // boolean intern
        start local 5 // boolean failOnDoS
         0: .line 257
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 261
            aload 0 /* this */
            aload 1 /* parent */
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._parent:Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
         2: .line 262
            aload 0 /* this */
            iload 2 /* seed */
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._seed:I
         3: .line 263
            aload 0 /* this */
            iload 4 /* intern */
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._intern:Z
         4: .line 264
            aload 0 /* this */
            iload 5 /* failOnDoS */
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._failOnDoS:Z
         5: .line 265
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tableInfo:Ljava/util/concurrent/atomic/AtomicReference;
         6: .line 268
            aload 0 /* this */
            aload 3 /* state */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo.count:I
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
         7: .line 269
            aload 0 /* this */
            aload 3 /* state */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo.size:I
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
         8: .line 270
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
            iconst_2
            ishl
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._secondaryStart:I
         9: .line 271
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._secondaryStart:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._secondaryStart:I
            iconst_1
            ishr
            iadd
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryStart:I
        10: .line 272
            aload 0 /* this */
            aload 3 /* state */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo.tertiaryShift:I
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
        11: .line 274
            aload 0 /* this */
            aload 3 /* state */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo.mainHash:[I
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
        12: .line 275
            aload 0 /* this */
            aload 3 /* state */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo.names:[Ljava/lang/String;
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
        13: .line 277
            aload 0 /* this */
            aload 3 /* state */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo.spilloverEnd:I
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverEnd:I
        14: .line 278
            aload 0 /* this */
            aload 3 /* state */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo.longNameOffset:I
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._longNameOffset:I
        15: .line 281
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashShared:Z
        16: .line 282
            return
        end local 5 // boolean failOnDoS
        end local 4 // boolean intern
        end local 3 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo state
        end local 2 // int seed
        end local 1 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer parent
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   17     0       this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   17     1     parent  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   17     2       seed  I
            0   17     3      state  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer$TableInfo;
            0   17     4     intern  Z
            0   17     5  failOnDoS  Z
    MethodParameters:
           Name  Flags
      parent     
      seed       
      state      
      intern     
      failOnDoS  

  private void <init>(com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo);
    descriptor: (Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer$TableInfo;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo state
         0: .line 293
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 295
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._parent:Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
         2: .line 296
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._seed:I
         3: .line 297
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._intern:Z
         4: .line 298
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._failOnDoS:Z
         5: .line 299
            aload 0 /* this */
            aconst_null
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tableInfo:Ljava/util/concurrent/atomic/AtomicReference;
         6: .line 305
            aload 0 /* this */
            iconst_m1
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
         7: .line 307
            aload 0 /* this */
            aload 1 /* state */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo.mainHash:[I
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
         8: .line 308
            aload 0 /* this */
            aload 1 /* state */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo.names:[Ljava/lang/String;
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
         9: .line 310
            aload 0 /* this */
            aload 1 /* state */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo.size:I
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
        10: .line 314
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            arraylength
            istore 2 /* end */
        start local 2 // int end
        11: .line 315
            aload 0 /* this */
            iload 2 /* end */
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._secondaryStart:I
        12: .line 316
            aload 0 /* this */
            iload 2 /* end */
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryStart:I
        13: .line 317
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
        14: .line 319
            aload 0 /* this */
            iload 2 /* end */
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverEnd:I
        15: .line 320
            aload 0 /* this */
            iload 2 /* end */
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._longNameOffset:I
        16: .line 323
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashShared:Z
        17: .line 324
            return
        end local 2 // int end
        end local 1 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo state
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   18     0   this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   18     1  state  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer$TableInfo;
           11   18     2    end  I
    MethodParameters:
       Name  Flags
      state  

  public static com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer createRoot();
    descriptor: ()Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=4, locals=3, args_size=0
         0: .line 341
            invokestatic java.lang.System.currentTimeMillis:()J
            lstore 0 /* now */
        start local 0 // long now
         1: .line 343
            lload 0 /* now */
            l2i
            lload 0 /* now */
            bipush 32
            lushr
            l2i
            iadd
            iconst_1
            ior
            istore 2 /* seed */
        start local 2 // int seed
         2: .line 344
            iload 2 /* seed */
            invokestatic com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.createRoot:(I)Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            areturn
        end local 2 // int seed
        end local 0 // long now
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            1    3     0   now  J
            2    3     2  seed  I

  protected static com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer createRoot(int);
    descriptor: (I)Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
    flags: (0x000c) ACC_PROTECTED, ACC_STATIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // int seed
         0: .line 350
            new com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
            dup
            bipush 64
            iload 0 /* seed */
            invokespecial com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.<init>:(II)V
            areturn
        end local 0 // int seed
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  seed  I
    MethodParameters:
      Name  Flags
      seed  

  public com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer makeChild(int);
    descriptor: (I)Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int flags
         0: .line 362
            new com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._seed:I
         1: .line 363
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tableInfo:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo
         2: .line 364
            getstatic com.fasterxml.jackson.core.JsonFactory$Feature.INTERN_FIELD_NAMES:Lcom/fasterxml/jackson/core/JsonFactory$Feature;
            iload 1 /* flags */
            invokevirtual com.fasterxml.jackson.core.JsonFactory$Feature.enabledIn:(I)Z
         3: .line 365
            getstatic com.fasterxml.jackson.core.JsonFactory$Feature.FAIL_ON_SYMBOL_HASH_OVERFLOW:Lcom/fasterxml/jackson/core/JsonFactory$Feature;
            iload 1 /* flags */
            invokevirtual com.fasterxml.jackson.core.JsonFactory$Feature.enabledIn:(I)Z
         4: .line 362
            invokespecial com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.<init>:(Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;ILcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer$TableInfo;ZZ)V
            areturn
        end local 1 // int flags
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0    5     1  flags  I
    MethodParameters:
       Name  Flags
      flags  

  public com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer makeChildOrPlaceholder(int);
    descriptor: (I)Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=8, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int flags
         0: .line 381
            getstatic com.fasterxml.jackson.core.JsonFactory$Feature.CANONICALIZE_FIELD_NAMES:Lcom/fasterxml/jackson/core/JsonFactory$Feature;
            iload 1 /* flags */
            invokevirtual com.fasterxml.jackson.core.JsonFactory$Feature.enabledIn:(I)Z
            ifeq 6
         1: .line 383
            new com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
            dup
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._seed:I
         2: .line 384
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tableInfo:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo
         3: .line 385
            getstatic com.fasterxml.jackson.core.JsonFactory$Feature.INTERN_FIELD_NAMES:Lcom/fasterxml/jackson/core/JsonFactory$Feature;
            iload 1 /* flags */
            invokevirtual com.fasterxml.jackson.core.JsonFactory$Feature.enabledIn:(I)Z
         4: .line 386
            getstatic com.fasterxml.jackson.core.JsonFactory$Feature.FAIL_ON_SYMBOL_HASH_OVERFLOW:Lcom/fasterxml/jackson/core/JsonFactory$Feature;
            iload 1 /* flags */
            invokevirtual com.fasterxml.jackson.core.JsonFactory$Feature.enabledIn:(I)Z
         5: .line 383
            invokespecial com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.<init>:(Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;ILcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer$TableInfo;ZZ)V
            areturn
         6: .line 388
      StackMap locals:
      StackMap stack:
            new com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer
            dup
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tableInfo:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo
            invokespecial com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.<init>:(Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer$TableInfo;)V
            areturn
        end local 1 // int flags
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0    7     1  flags  I
    MethodParameters:
       Name  Flags
      flags  

  public void release();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
         0: .line 401
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._parent:Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            ifnull 3
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.maybeDirty:()Z
            ifeq 3
         1: .line 402
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._parent:Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            new com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo
            dup
            aload 0 /* this */
            invokespecial com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo.<init>:(Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;)V
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.mergeChild:(Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer$TableInfo;)V
         2: .line 405
            aload 0 /* this */
            iconst_1
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashShared:Z
         3: .line 407
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;

  private void mergeChild(com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo);
    descriptor: (Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer$TableInfo;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo childState
         0: .line 411
            aload 1 /* childState */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo.count:I
            istore 2 /* childCount */
        start local 2 // int childCount
         1: .line 412
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tableInfo:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo
            astore 3 /* currState */
        start local 3 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo currState
         2: .line 416
            iload 2 /* childCount */
            aload 3 /* currState */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo.count:I
            if_icmpne 4
         3: .line 417
            return
         4: .line 424
      StackMap locals: int com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo
      StackMap stack:
            iload 2 /* childCount */
            sipush 6000
            if_icmple 6
         5: .line 426
            bipush 64
            invokestatic com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo.createInitial:(I)Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer$TableInfo;
            astore 1 /* childState */
         6: .line 428
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tableInfo:Ljava/util/concurrent/atomic/AtomicReference;
            aload 3 /* currState */
            aload 1 /* childState */
            invokevirtual java.util.concurrent.atomic.AtomicReference.compareAndSet:(Ljava/lang/Object;Ljava/lang/Object;)Z
            pop
         7: .line 429
            return
        end local 3 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo currState
        end local 2 // int childCount
        end local 1 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo childState
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0    8     1  childState  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer$TableInfo;
            1    8     2  childCount  I
            2    8     3   currState  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer$TableInfo;
    MethodParameters:
            Name  Flags
      childState  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
         0: .line 442
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tableInfo:Ljava/util/concurrent/atomic/AtomicReference;
            ifnull 2
         1: .line 443
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tableInfo:Ljava/util/concurrent/atomic/AtomicReference;
            invokevirtual java.util.concurrent.atomic.AtomicReference.get:()Ljava/lang/Object;
            checkcast com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo.count:I
            ireturn
         2: .line 446
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
            ireturn
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;

  public int bucketCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
         0: .line 452
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
            ireturn
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;

  public boolean maybeDirty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
         0: .line 461
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashShared:Z
            ifeq 1
            iconst_0
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;

  public int hashSeed();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
         0: .line 463
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._seed:I
            ireturn
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;

  public boolean isCanonicalizing();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
         0: .line 473
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._parent:Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            ifnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;

  public int primaryCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
         0: .line 485
            iconst_0
            istore 1 /* count */
        start local 1 // int count
         1: .line 486
            iconst_3
            istore 2 /* offset */
        start local 2 // int offset
         2: aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._secondaryStart:I
            istore 3 /* end */
        start local 3 // int end
         3: goto 7
         4: .line 487
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 2 /* offset */
            iaload
            ifeq 6
         5: .line 488
            iinc 1 /* count */ 1
         6: .line 486
      StackMap locals:
      StackMap stack:
            iinc 2 /* offset */ 4
      StackMap locals:
      StackMap stack:
         7: iload 2 /* offset */
            iload 3 /* end */
            if_icmplt 4
        end local 3 // int end
        end local 2 // int offset
         8: .line 491
            iload 1 /* count */
            ireturn
        end local 1 // int count
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            1    9     1   count  I
            2    8     2  offset  I
            3    8     3     end  I

  public int secondaryCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
         0: .line 501
            iconst_0
            istore 1 /* count */
        start local 1 // int count
         1: .line 502
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._secondaryStart:I
            iconst_3
            iadd
            istore 2 /* offset */
        start local 2 // int offset
         2: .line 503
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryStart:I
            istore 3 /* end */
        start local 3 // int end
         3: goto 7
         4: .line 504
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 2 /* offset */
            iaload
            ifeq 6
         5: .line 505
            iinc 1 /* count */ 1
         6: .line 503
      StackMap locals:
      StackMap stack:
            iinc 2 /* offset */ 4
      StackMap locals:
      StackMap stack:
         7: iload 2 /* offset */
            iload 3 /* end */
            if_icmplt 4
        end local 3 // int end
         8: .line 508
            iload 1 /* count */
            ireturn
        end local 2 // int offset
        end local 1 // int count
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            1    9     1   count  I
            2    9     2  offset  I
            3    8     3     end  I

  public int tertiaryCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
         0: .line 518
            iconst_0
            istore 1 /* count */
        start local 1 // int count
         1: .line 519
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryStart:I
            iconst_3
            iadd
            istore 2 /* offset */
        start local 2 // int offset
         2: .line 520
            iload 2 /* offset */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
            iadd
            istore 3 /* end */
        start local 3 // int end
         3: goto 7
         4: .line 521
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 2 /* offset */
            iaload
            ifeq 6
         5: .line 522
            iinc 1 /* count */ 1
         6: .line 520
      StackMap locals:
      StackMap stack:
            iinc 2 /* offset */ 4
      StackMap locals:
      StackMap stack:
         7: iload 2 /* offset */
            iload 3 /* end */
            if_icmplt 4
        end local 3 // int end
         8: .line 525
            iload 1 /* count */
            ireturn
        end local 2 // int offset
        end local 1 // int count
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            1    9     1   count  I
            2    9     2  offset  I
            3    8     3     end  I

  public int spilloverCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
         0: .line 536
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverEnd:I
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverStart:()I
            isub
            iconst_2
            ishr
            ireturn
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;

  public int totalCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=1
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
         0: .line 541
            iconst_0
            istore 1 /* count */
        start local 1 // int count
         1: .line 542
            iconst_3
            istore 2 /* offset */
        start local 2 // int offset
         2: aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
            iconst_3
            ishl
            istore 3 /* end */
        start local 3 // int end
         3: goto 7
         4: .line 543
      StackMap locals: int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 2 /* offset */
            iaload
            ifeq 6
         5: .line 544
            iinc 1 /* count */ 1
         6: .line 542
      StackMap locals:
      StackMap stack:
            iinc 2 /* offset */ 4
      StackMap locals:
      StackMap stack:
         7: iload 2 /* offset */
            iload 3 /* end */
            if_icmplt 4
        end local 3 // int end
        end local 2 // int offset
         8: .line 547
            iload 1 /* count */
            ireturn
        end local 1 // int count
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            1    9     1   count  I
            2    8     2  offset  I
            3    8     3     end  I

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=1
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
         0: .line 552
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.primaryCount:()I
            istore 1 /* pri */
        start local 1 // int pri
         1: .line 553
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.secondaryCount:()I
            istore 2 /* sec */
        start local 2 // int sec
         2: .line 554
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.tertiaryCount:()I
            istore 3 /* tert */
        start local 3 // int tert
         3: .line 555
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.spilloverCount:()I
            istore 4 /* spill */
        start local 4 // int spill
         4: .line 556
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.totalCount:()I
            istore 5 /* total */
        start local 5 // int total
         5: .line 557
            ldc "[%s: size=%d, hashSize=%d, %d/%d/%d/%d pri/sec/ter/spill (=%s), total:%d]"
            bipush 9
            anewarray java.lang.Object
            dup
            iconst_0
         6: .line 558
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual java.lang.Class.getName:()Ljava/lang/String;
            aastore
            dup
            iconst_1
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_2
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_3
         7: .line 559
            iload 1 /* pri */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_4
            iload 2 /* sec */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_5
            iload 3 /* tert */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            bipush 6
            iload 4 /* spill */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            bipush 7
            iload 1 /* pri */
            iload 2 /* sec */
            iadd
            iload 3 /* tert */
            iadd
            iload 4 /* spill */
            iadd
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            bipush 8
            iload 5 /* total */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
         8: .line 557
            invokestatic java.lang.String.format:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            areturn
        end local 5 // int total
        end local 4 // int spill
        end local 3 // int tert
        end local 2 // int sec
        end local 1 // int pri
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    9     0   this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            1    9     1    pri  I
            2    9     2    sec  I
            3    9     3   tert  I
            4    9     4  spill  I
            5    9     5  total  I

  public java.lang.String findName(int);
    descriptor: (I)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=2
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int q1
         0: .line 570
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* q1 */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.calcHash:(I)I
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._calcOffset:(I)I
            istore 2 /* offset */
        start local 2 // int offset
         1: .line 572
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            astore 3 /* hashArea */
        start local 3 // int[] hashArea
         2: .line 574
            aload 3 /* hashArea */
            iload 2 /* offset */
            iconst_3
            iadd
            iaload
            istore 4 /* len */
        start local 4 // int len
         3: .line 576
            iload 4 /* len */
            iconst_1
            if_icmpne 6
         4: .line 577
            aload 3 /* hashArea */
            iload 2 /* offset */
            iaload
            iload 1 /* q1 */
            if_icmpne 8
         5: .line 578
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 2 /* offset */
            iconst_2
            ishr
            aaload
            areturn
         6: .line 580
      StackMap locals: int int[] int
      StackMap stack:
            iload 4 /* len */
            ifne 8
         7: .line 581
            aconst_null
            areturn
         8: .line 584
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._secondaryStart:I
            iload 2 /* offset */
            iconst_3
            ishr
            iconst_2
            ishl
            iadd
            istore 5 /* offset2 */
        start local 5 // int offset2
         9: .line 586
            aload 3 /* hashArea */
            iload 5 /* offset2 */
            iconst_3
            iadd
            iaload
            istore 4 /* len */
        10: .line 588
            iload 4 /* len */
            iconst_1
            if_icmpne 13
        11: .line 589
            aload 3 /* hashArea */
            iload 5 /* offset2 */
            iaload
            iload 1 /* q1 */
            if_icmpne 15
        12: .line 590
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 5 /* offset2 */
            iconst_2
            ishr
            aaload
            areturn
        13: .line 592
      StackMap locals: int
      StackMap stack:
            iload 4 /* len */
            ifne 15
        14: .line 593
            aconst_null
            areturn
        15: .line 597
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* offset */
            iload 1 /* q1 */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._findSecondary:(II)Ljava/lang/String;
            areturn
        end local 5 // int offset2
        end local 4 // int len
        end local 3 // int[] hashArea
        end local 2 // int offset
        end local 1 // int q1
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   16     0      this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   16     1        q1  I
            1   16     2    offset  I
            2   16     3  hashArea  [I
            3   16     4       len  I
            9   16     5   offset2  I
    MethodParameters:
      Name  Flags
      q1    

  public java.lang.String findName(int, int);
    descriptor: (II)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=7, args_size=3
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int q1
        start local 2 // int q2
         0: .line 602
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* q1 */
            iload 2 /* q2 */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.calcHash:(II)I
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._calcOffset:(I)I
            istore 3 /* offset */
        start local 3 // int offset
         1: .line 604
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            astore 4 /* hashArea */
        start local 4 // int[] hashArea
         2: .line 606
            aload 4 /* hashArea */
            iload 3 /* offset */
            iconst_3
            iadd
            iaload
            istore 5 /* len */
        start local 5 // int len
         3: .line 608
            iload 5 /* len */
            iconst_2
            if_icmpne 6
         4: .line 609
            iload 1 /* q1 */
            aload 4 /* hashArea */
            iload 3 /* offset */
            iaload
            if_icmpne 8
            iload 2 /* q2 */
            aload 4 /* hashArea */
            iload 3 /* offset */
            iconst_1
            iadd
            iaload
            if_icmpne 8
         5: .line 610
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 3 /* offset */
            iconst_2
            ishr
            aaload
            areturn
         6: .line 612
      StackMap locals: int int[] int
      StackMap stack:
            iload 5 /* len */
            ifne 8
         7: .line 613
            aconst_null
            areturn
         8: .line 616
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._secondaryStart:I
            iload 3 /* offset */
            iconst_3
            ishr
            iconst_2
            ishl
            iadd
            istore 6 /* offset2 */
        start local 6 // int offset2
         9: .line 618
            aload 4 /* hashArea */
            iload 6 /* offset2 */
            iconst_3
            iadd
            iaload
            istore 5 /* len */
        10: .line 620
            iload 5 /* len */
            iconst_2
            if_icmpne 13
        11: .line 621
            iload 1 /* q1 */
            aload 4 /* hashArea */
            iload 6 /* offset2 */
            iaload
            if_icmpne 15
            iload 2 /* q2 */
            aload 4 /* hashArea */
            iload 6 /* offset2 */
            iconst_1
            iadd
            iaload
            if_icmpne 15
        12: .line 622
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 6 /* offset2 */
            iconst_2
            ishr
            aaload
            areturn
        13: .line 624
      StackMap locals: int
      StackMap stack:
            iload 5 /* len */
            ifne 15
        14: .line 625
            aconst_null
            areturn
        15: .line 627
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 3 /* offset */
            iload 1 /* q1 */
            iload 2 /* q2 */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._findSecondary:(III)Ljava/lang/String;
            areturn
        end local 6 // int offset2
        end local 5 // int len
        end local 4 // int[] hashArea
        end local 3 // int offset
        end local 2 // int q2
        end local 1 // int q1
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   16     0      this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   16     1        q1  I
            0   16     2        q2  I
            1   16     3    offset  I
            2   16     4  hashArea  [I
            3   16     5       len  I
            9   16     6   offset2  I
    MethodParameters:
      Name  Flags
      q1    
      q2    

  public java.lang.String findName(int, int, int);
    descriptor: (III)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=8, args_size=4
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int q1
        start local 2 // int q2
        start local 3 // int q3
         0: .line 632
            aload 0 /* this */
            aload 0 /* this */
            iload 1 /* q1 */
            iload 2 /* q2 */
            iload 3 /* q3 */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.calcHash:(III)I
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._calcOffset:(I)I
            istore 4 /* offset */
        start local 4 // int offset
         1: .line 633
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            astore 5 /* hashArea */
        start local 5 // int[] hashArea
         2: .line 634
            aload 5 /* hashArea */
            iload 4 /* offset */
            iconst_3
            iadd
            iaload
            istore 6 /* len */
        start local 6 // int len
         3: .line 636
            iload 6 /* len */
            iconst_3
            if_icmpne 6
         4: .line 637
            iload 1 /* q1 */
            aload 5 /* hashArea */
            iload 4 /* offset */
            iaload
            if_icmpne 8
            aload 5 /* hashArea */
            iload 4 /* offset */
            iconst_1
            iadd
            iaload
            iload 2 /* q2 */
            if_icmpne 8
            aload 5 /* hashArea */
            iload 4 /* offset */
            iconst_2
            iadd
            iaload
            iload 3 /* q3 */
            if_icmpne 8
         5: .line 638
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 4 /* offset */
            iconst_2
            ishr
            aaload
            areturn
         6: .line 640
      StackMap locals: int int[] int
      StackMap stack:
            iload 6 /* len */
            ifne 8
         7: .line 641
            aconst_null
            areturn
         8: .line 644
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._secondaryStart:I
            iload 4 /* offset */
            iconst_3
            ishr
            iconst_2
            ishl
            iadd
            istore 7 /* offset2 */
        start local 7 // int offset2
         9: .line 646
            aload 5 /* hashArea */
            iload 7 /* offset2 */
            iconst_3
            iadd
            iaload
            istore 6 /* len */
        10: .line 648
            iload 6 /* len */
            iconst_3
            if_icmpne 13
        11: .line 649
            iload 1 /* q1 */
            aload 5 /* hashArea */
            iload 7 /* offset2 */
            iaload
            if_icmpne 15
            aload 5 /* hashArea */
            iload 7 /* offset2 */
            iconst_1
            iadd
            iaload
            iload 2 /* q2 */
            if_icmpne 15
            aload 5 /* hashArea */
            iload 7 /* offset2 */
            iconst_2
            iadd
            iaload
            iload 3 /* q3 */
            if_icmpne 15
        12: .line 650
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 7 /* offset2 */
            iconst_2
            ishr
            aaload
            areturn
        13: .line 652
      StackMap locals: int
      StackMap stack:
            iload 6 /* len */
            ifne 15
        14: .line 653
            aconst_null
            areturn
        15: .line 655
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 4 /* offset */
            iload 1 /* q1 */
            iload 2 /* q2 */
            iload 3 /* q3 */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._findSecondary:(IIII)Ljava/lang/String;
            areturn
        end local 7 // int offset2
        end local 6 // int len
        end local 5 // int[] hashArea
        end local 4 // int offset
        end local 3 // int q3
        end local 2 // int q2
        end local 1 // int q1
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   16     0      this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   16     1        q1  I
            0   16     2        q2  I
            0   16     3        q3  I
            1   16     4    offset  I
            2   16     5  hashArea  [I
            3   16     6       len  I
            9   16     7   offset2  I
    MethodParameters:
      Name  Flags
      q1    
      q2    
      q3    

  public java.lang.String findName(int[], int);
    descriptor: ([II)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=9, args_size=3
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int[] q
        start local 2 // int qlen
         0: .line 664
            iload 2 /* qlen */
            iconst_4
            if_icmpge 6
         1: .line 665
            iload 2 /* qlen */
            tableswitch { // 1 - 3
                    1: 4
                    2: 3
                    3: 2
              default: 5
          }
         2: .line 667
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* q */
            iconst_0
            iaload
            aload 1 /* q */
            iconst_1
            iaload
            aload 1 /* q */
            iconst_2
            iaload
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.findName:(III)Ljava/lang/String;
            areturn
         3: .line 669
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* q */
            iconst_0
            iaload
            aload 1 /* q */
            iconst_1
            iaload
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.findName:(II)Ljava/lang/String;
            areturn
         4: .line 671
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* q */
            iconst_0
            iaload
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.findName:(I)Ljava/lang/String;
            areturn
         5: .line 673
      StackMap locals:
      StackMap stack:
            ldc ""
            areturn
         6: .line 676
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* q */
            iload 2 /* qlen */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.calcHash:([II)I
            istore 3 /* hash */
        start local 3 // int hash
         7: .line 677
            aload 0 /* this */
            iload 3 /* hash */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._calcOffset:(I)I
            istore 4 /* offset */
        start local 4 // int offset
         8: .line 679
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            astore 5 /* hashArea */
        start local 5 // int[] hashArea
         9: .line 681
            aload 5 /* hashArea */
            iload 4 /* offset */
            iconst_3
            iadd
            iaload
            istore 6 /* len */
        start local 6 // int len
        10: .line 683
            iload 3 /* hash */
            aload 5 /* hashArea */
            iload 4 /* offset */
            iaload
            if_icmpne 13
            iload 6 /* len */
            iload 2 /* qlen */
            if_icmpne 13
        11: .line 685
            aload 0 /* this */
            aload 1 /* q */
            iload 2 /* qlen */
            aload 5 /* hashArea */
            iload 4 /* offset */
            iconst_1
            iadd
            iaload
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._verifyLongName:([III)Z
            ifeq 13
        12: .line 686
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 4 /* offset */
            iconst_2
            ishr
            aaload
            areturn
        13: .line 689
      StackMap locals: com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer int[] int int int int[] int
      StackMap stack:
            iload 6 /* len */
            ifne 15
        14: .line 690
            aconst_null
            areturn
        15: .line 693
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._secondaryStart:I
            iload 4 /* offset */
            iconst_3
            ishr
            iconst_2
            ishl
            iadd
            istore 7 /* offset2 */
        start local 7 // int offset2
        16: .line 695
            aload 5 /* hashArea */
            iload 7 /* offset2 */
            iconst_3
            iadd
            iaload
            istore 8 /* len2 */
        start local 8 // int len2
        17: .line 696
            iload 3 /* hash */
            aload 5 /* hashArea */
            iload 7 /* offset2 */
            iaload
            if_icmpne 20
            iload 8 /* len2 */
            iload 2 /* qlen */
            if_icmpne 20
        18: .line 697
            aload 0 /* this */
            aload 1 /* q */
            iload 2 /* qlen */
            aload 5 /* hashArea */
            iload 7 /* offset2 */
            iconst_1
            iadd
            iaload
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._verifyLongName:([III)Z
            ifeq 20
        19: .line 698
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 7 /* offset2 */
            iconst_2
            ishr
            aaload
            areturn
        20: .line 701
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            iload 4 /* offset */
            iload 3 /* hash */
            aload 1 /* q */
            iload 2 /* qlen */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._findSecondary:(II[II)Ljava/lang/String;
            areturn
        end local 8 // int len2
        end local 7 // int offset2
        end local 6 // int len
        end local 5 // int[] hashArea
        end local 4 // int offset
        end local 3 // int hash
        end local 2 // int qlen
        end local 1 // int[] q
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   21     0      this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   21     1         q  [I
            0   21     2      qlen  I
            7   21     3      hash  I
            8   21     4    offset  I
            9   21     5  hashArea  [I
           10   21     6       len  I
           16   21     7   offset2  I
           17   21     8      len2  I
    MethodParameters:
      Name  Flags
      q     
      qlen  

  private final int _calcOffset(int);
    descriptor: (I)I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int hash
         0: .line 709
            iload 1 /* hash */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
            iconst_1
            isub
            iand
            istore 2 /* ix */
        start local 2 // int ix
         1: .line 711
            iload 2 /* ix */
            iconst_2
            ishl
            ireturn
        end local 2 // int ix
        end local 1 // int hash
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0    2     1  hash  I
            1    2     2    ix  I
    MethodParameters:
      Name  Flags
      hash  

  private java.lang.String _findSecondary(int, int);
    descriptor: (II)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=8, args_size=3
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int origOffset
        start local 2 // int q1
         0: .line 726
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryStart:I
            iload 1 /* origOffset */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
            iconst_2
            iadd
            ishr
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
            ishl
            iadd
            istore 3 /* offset */
        start local 3 // int offset
         1: .line 727
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            astore 4 /* hashArea */
        start local 4 // int[] hashArea
         2: .line 728
            iconst_1
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
            ishl
            istore 5 /* bucketSize */
        start local 5 // int bucketSize
         3: .line 729
            iload 3 /* offset */
            iload 5 /* bucketSize */
            iadd
            istore 6 /* end */
        start local 6 // int end
         4: goto 11
         5: .line 730
      StackMap locals: com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer int int int int[] int int
      StackMap stack:
            aload 4 /* hashArea */
            iload 3 /* offset */
            iconst_3
            iadd
            iaload
            istore 7 /* len */
        start local 7 // int len
         6: .line 731
            iload 2 /* q1 */
            aload 4 /* hashArea */
            iload 3 /* offset */
            iaload
            if_icmpne 8
            iconst_1
            iload 7 /* len */
            if_icmpne 8
         7: .line 732
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 3 /* offset */
            iconst_2
            ishr
            aaload
            areturn
         8: .line 734
      StackMap locals: int
      StackMap stack:
            iload 7 /* len */
            ifne 10
         9: .line 735
            aconst_null
            areturn
        end local 7 // int len
        10: .line 729
      StackMap locals:
      StackMap stack:
            iinc 3 /* offset */ 4
      StackMap locals:
      StackMap stack:
        11: iload 3 /* offset */
            iload 6 /* end */
            if_icmplt 5
        end local 6 // int end
        12: .line 741
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverStart:()I
            istore 3 /* offset */
            goto 16
        13: .line 742
      StackMap locals:
      StackMap stack:
            iload 2 /* q1 */
            aload 4 /* hashArea */
            iload 3 /* offset */
            iaload
            if_icmpne 15
            iconst_1
            aload 4 /* hashArea */
            iload 3 /* offset */
            iconst_3
            iadd
            iaload
            if_icmpne 15
        14: .line 743
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 3 /* offset */
            iconst_2
            ishr
            aaload
            areturn
        15: .line 741
      StackMap locals:
      StackMap stack:
            iinc 3 /* offset */ 4
      StackMap locals:
      StackMap stack:
        16: iload 3 /* offset */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverEnd:I
            if_icmplt 13
        17: .line 746
            aconst_null
            areturn
        end local 5 // int bucketSize
        end local 4 // int[] hashArea
        end local 3 // int offset
        end local 2 // int q1
        end local 1 // int origOffset
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   18     0        this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   18     1  origOffset  I
            0   18     2          q1  I
            1   18     3      offset  I
            2   18     4    hashArea  [I
            3   18     5  bucketSize  I
            4   12     6         end  I
            6   10     7         len  I
    MethodParameters:
            Name  Flags
      origOffset  
      q1          

  private java.lang.String _findSecondary(int, int, int);
    descriptor: (III)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=9, args_size=4
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int origOffset
        start local 2 // int q1
        start local 3 // int q2
         0: .line 751
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryStart:I
            iload 1 /* origOffset */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
            iconst_2
            iadd
            ishr
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
            ishl
            iadd
            istore 4 /* offset */
        start local 4 // int offset
         1: .line 752
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            astore 5 /* hashArea */
        start local 5 // int[] hashArea
         2: .line 754
            iconst_1
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
            ishl
            istore 6 /* bucketSize */
        start local 6 // int bucketSize
         3: .line 755
            iload 4 /* offset */
            iload 6 /* bucketSize */
            iadd
            istore 7 /* end */
        start local 7 // int end
         4: goto 11
         5: .line 756
      StackMap locals: com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer int int int int int[] int int
      StackMap stack:
            aload 5 /* hashArea */
            iload 4 /* offset */
            iconst_3
            iadd
            iaload
            istore 8 /* len */
        start local 8 // int len
         6: .line 757
            iload 2 /* q1 */
            aload 5 /* hashArea */
            iload 4 /* offset */
            iaload
            if_icmpne 8
            iload 3 /* q2 */
            aload 5 /* hashArea */
            iload 4 /* offset */
            iconst_1
            iadd
            iaload
            if_icmpne 8
            iconst_2
            iload 8 /* len */
            if_icmpne 8
         7: .line 758
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 4 /* offset */
            iconst_2
            ishr
            aaload
            areturn
         8: .line 760
      StackMap locals: int
      StackMap stack:
            iload 8 /* len */
            ifne 10
         9: .line 761
            aconst_null
            areturn
        end local 8 // int len
        10: .line 755
      StackMap locals:
      StackMap stack:
            iinc 4 /* offset */ 4
      StackMap locals:
      StackMap stack:
        11: iload 4 /* offset */
            iload 7 /* end */
            if_icmplt 5
        end local 7 // int end
        12: .line 764
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverStart:()I
            istore 4 /* offset */
            goto 16
        13: .line 765
      StackMap locals:
      StackMap stack:
            iload 2 /* q1 */
            aload 5 /* hashArea */
            iload 4 /* offset */
            iaload
            if_icmpne 15
            iload 3 /* q2 */
            aload 5 /* hashArea */
            iload 4 /* offset */
            iconst_1
            iadd
            iaload
            if_icmpne 15
            iconst_2
            aload 5 /* hashArea */
            iload 4 /* offset */
            iconst_3
            iadd
            iaload
            if_icmpne 15
        14: .line 766
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 4 /* offset */
            iconst_2
            ishr
            aaload
            areturn
        15: .line 764
      StackMap locals:
      StackMap stack:
            iinc 4 /* offset */ 4
      StackMap locals:
      StackMap stack:
        16: iload 4 /* offset */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverEnd:I
            if_icmplt 13
        17: .line 769
            aconst_null
            areturn
        end local 6 // int bucketSize
        end local 5 // int[] hashArea
        end local 4 // int offset
        end local 3 // int q2
        end local 2 // int q1
        end local 1 // int origOffset
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   18     0        this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   18     1  origOffset  I
            0   18     2          q1  I
            0   18     3          q2  I
            1   18     4      offset  I
            2   18     5    hashArea  [I
            3   18     6  bucketSize  I
            4   12     7         end  I
            6   10     8         len  I
    MethodParameters:
            Name  Flags
      origOffset  
      q1          
      q2          

  private java.lang.String _findSecondary(int, int, int, int);
    descriptor: (IIII)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=10, args_size=5
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int origOffset
        start local 2 // int q1
        start local 3 // int q2
        start local 4 // int q3
         0: .line 774
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryStart:I
            iload 1 /* origOffset */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
            iconst_2
            iadd
            ishr
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
            ishl
            iadd
            istore 5 /* offset */
        start local 5 // int offset
         1: .line 775
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            astore 6 /* hashArea */
        start local 6 // int[] hashArea
         2: .line 777
            iconst_1
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
            ishl
            istore 7 /* bucketSize */
        start local 7 // int bucketSize
         3: .line 778
            iload 5 /* offset */
            iload 7 /* bucketSize */
            iadd
            istore 8 /* end */
        start local 8 // int end
         4: goto 11
         5: .line 779
      StackMap locals: com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer int int int int int int[] int int
      StackMap stack:
            aload 6 /* hashArea */
            iload 5 /* offset */
            iconst_3
            iadd
            iaload
            istore 9 /* len */
        start local 9 // int len
         6: .line 780
            iload 2 /* q1 */
            aload 6 /* hashArea */
            iload 5 /* offset */
            iaload
            if_icmpne 8
            iload 3 /* q2 */
            aload 6 /* hashArea */
            iload 5 /* offset */
            iconst_1
            iadd
            iaload
            if_icmpne 8
            iload 4 /* q3 */
            aload 6 /* hashArea */
            iload 5 /* offset */
            iconst_2
            iadd
            iaload
            if_icmpne 8
            iconst_3
            iload 9 /* len */
            if_icmpne 8
         7: .line 781
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 5 /* offset */
            iconst_2
            ishr
            aaload
            areturn
         8: .line 783
      StackMap locals: int
      StackMap stack:
            iload 9 /* len */
            ifne 10
         9: .line 784
            aconst_null
            areturn
        end local 9 // int len
        10: .line 778
      StackMap locals:
      StackMap stack:
            iinc 5 /* offset */ 4
      StackMap locals:
      StackMap stack:
        11: iload 5 /* offset */
            iload 8 /* end */
            if_icmplt 5
        end local 8 // int end
        12: .line 787
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverStart:()I
            istore 5 /* offset */
            goto 17
        13: .line 788
      StackMap locals:
      StackMap stack:
            iload 2 /* q1 */
            aload 6 /* hashArea */
            iload 5 /* offset */
            iaload
            if_icmpne 16
            iload 3 /* q2 */
            aload 6 /* hashArea */
            iload 5 /* offset */
            iconst_1
            iadd
            iaload
            if_icmpne 16
            iload 4 /* q3 */
            aload 6 /* hashArea */
            iload 5 /* offset */
            iconst_2
            iadd
            iaload
            if_icmpne 16
        14: .line 789
            iconst_3
            aload 6 /* hashArea */
            iload 5 /* offset */
            iconst_3
            iadd
            iaload
            if_icmpne 16
        15: .line 790
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 5 /* offset */
            iconst_2
            ishr
            aaload
            areturn
        16: .line 787
      StackMap locals:
      StackMap stack:
            iinc 5 /* offset */ 4
      StackMap locals:
      StackMap stack:
        17: iload 5 /* offset */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverEnd:I
            if_icmplt 13
        18: .line 793
            aconst_null
            areturn
        end local 7 // int bucketSize
        end local 6 // int[] hashArea
        end local 5 // int offset
        end local 4 // int q3
        end local 3 // int q2
        end local 2 // int q1
        end local 1 // int origOffset
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   19     0        this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   19     1  origOffset  I
            0   19     2          q1  I
            0   19     3          q2  I
            0   19     4          q3  I
            1   19     5      offset  I
            2   19     6    hashArea  [I
            3   19     7  bucketSize  I
            4   12     8         end  I
            6   10     9         len  I
    MethodParameters:
            Name  Flags
      origOffset  
      q1          
      q2          
      q3          

  private java.lang.String _findSecondary(int, int, int[], int);
    descriptor: (II[II)Ljava/lang/String;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=10, args_size=5
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int origOffset
        start local 2 // int hash
        start local 3 // int[] q
        start local 4 // int qlen
         0: .line 798
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryStart:I
            iload 1 /* origOffset */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
            iconst_2
            iadd
            ishr
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
            ishl
            iadd
            istore 5 /* offset */
        start local 5 // int offset
         1: .line 799
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            astore 6 /* hashArea */
        start local 6 // int[] hashArea
         2: .line 801
            iconst_1
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
            ishl
            istore 7 /* bucketSize */
        start local 7 // int bucketSize
         3: .line 802
            iload 5 /* offset */
            iload 7 /* bucketSize */
            iadd
            istore 8 /* end */
        start local 8 // int end
         4: goto 12
         5: .line 803
      StackMap locals: com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer int int int[] int int int[] int int
      StackMap stack:
            aload 6 /* hashArea */
            iload 5 /* offset */
            iconst_3
            iadd
            iaload
            istore 9 /* len */
        start local 9 // int len
         6: .line 804
            iload 2 /* hash */
            aload 6 /* hashArea */
            iload 5 /* offset */
            iaload
            if_icmpne 9
            iload 4 /* qlen */
            iload 9 /* len */
            if_icmpne 9
         7: .line 805
            aload 0 /* this */
            aload 3 /* q */
            iload 4 /* qlen */
            aload 6 /* hashArea */
            iload 5 /* offset */
            iconst_1
            iadd
            iaload
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._verifyLongName:([III)Z
            ifeq 9
         8: .line 806
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 5 /* offset */
            iconst_2
            ishr
            aaload
            areturn
         9: .line 809
      StackMap locals: int
      StackMap stack:
            iload 9 /* len */
            ifne 11
        10: .line 810
            aconst_null
            areturn
        end local 9 // int len
        11: .line 802
      StackMap locals:
      StackMap stack:
            iinc 5 /* offset */ 4
      StackMap locals:
      StackMap stack:
        12: iload 5 /* offset */
            iload 8 /* end */
            if_icmplt 5
        end local 8 // int end
        13: .line 813
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverStart:()I
            istore 5 /* offset */
            goto 18
        14: .line 814
      StackMap locals:
      StackMap stack:
            iload 2 /* hash */
            aload 6 /* hashArea */
            iload 5 /* offset */
            iaload
            if_icmpne 17
            iload 4 /* qlen */
            aload 6 /* hashArea */
            iload 5 /* offset */
            iconst_3
            iadd
            iaload
            if_icmpne 17
        15: .line 815
            aload 0 /* this */
            aload 3 /* q */
            iload 4 /* qlen */
            aload 6 /* hashArea */
            iload 5 /* offset */
            iconst_1
            iadd
            iaload
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._verifyLongName:([III)Z
            ifeq 17
        16: .line 816
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 5 /* offset */
            iconst_2
            ishr
            aaload
            areturn
        17: .line 813
      StackMap locals:
      StackMap stack:
            iinc 5 /* offset */ 4
      StackMap locals:
      StackMap stack:
        18: iload 5 /* offset */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverEnd:I
            if_icmplt 14
        19: .line 820
            aconst_null
            areturn
        end local 7 // int bucketSize
        end local 6 // int[] hashArea
        end local 5 // int offset
        end local 4 // int qlen
        end local 3 // int[] q
        end local 2 // int hash
        end local 1 // int origOffset
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   20     0        this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   20     1  origOffset  I
            0   20     2        hash  I
            0   20     3           q  [I
            0   20     4        qlen  I
            1   20     5      offset  I
            2   20     6    hashArea  [I
            3   20     7  bucketSize  I
            4   13     8         end  I
            6   11     9         len  I
    MethodParameters:
            Name  Flags
      origOffset  
      hash        
      q           
      qlen        

  private boolean _verifyLongName(int[], int, int);
    descriptor: ([III)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=4
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int[] q
        start local 2 // int qlen
        start local 3 // int spillOffset
         0: .line 825
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            astore 4 /* hashArea */
        start local 4 // int[] hashArea
         1: .line 827
            iconst_0
            istore 5 /* ix */
        start local 5 // int ix
         2: .line 829
            iload 2 /* qlen */
            tableswitch { // 4 - 8
                    4: 8
                    5: 7
                    6: 6
                    7: 5
                    8: 4
              default: 3
          }
         3: .line 831
      StackMap locals: int[] int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* q */
            iload 2 /* qlen */
            iload 3 /* spillOffset */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._verifyLongName2:([III)Z
            ireturn
         4: .line 833
      StackMap locals:
      StackMap stack:
            aload 1 /* q */
            iload 5 /* ix */
            iinc 5 /* ix */ 1
            iaload
            aload 4 /* hashArea */
            iload 3 /* spillOffset */
            iinc 3 /* spillOffset */ 1
            iaload
            if_icmpeq 5
            iconst_0
            ireturn
         5: .line 835
      StackMap locals:
      StackMap stack:
            aload 1 /* q */
            iload 5 /* ix */
            iinc 5 /* ix */ 1
            iaload
            aload 4 /* hashArea */
            iload 3 /* spillOffset */
            iinc 3 /* spillOffset */ 1
            iaload
            if_icmpeq 6
            iconst_0
            ireturn
         6: .line 837
      StackMap locals:
      StackMap stack:
            aload 1 /* q */
            iload 5 /* ix */
            iinc 5 /* ix */ 1
            iaload
            aload 4 /* hashArea */
            iload 3 /* spillOffset */
            iinc 3 /* spillOffset */ 1
            iaload
            if_icmpeq 7
            iconst_0
            ireturn
         7: .line 839
      StackMap locals:
      StackMap stack:
            aload 1 /* q */
            iload 5 /* ix */
            iinc 5 /* ix */ 1
            iaload
            aload 4 /* hashArea */
            iload 3 /* spillOffset */
            iinc 3 /* spillOffset */ 1
            iaload
            if_icmpeq 8
            iconst_0
            ireturn
         8: .line 841
      StackMap locals:
      StackMap stack:
            aload 1 /* q */
            iload 5 /* ix */
            iinc 5 /* ix */ 1
            iaload
            aload 4 /* hashArea */
            iload 3 /* spillOffset */
            iinc 3 /* spillOffset */ 1
            iaload
            if_icmpeq 9
            iconst_0
            ireturn
         9: .line 842
      StackMap locals:
      StackMap stack:
            aload 1 /* q */
            iload 5 /* ix */
            iinc 5 /* ix */ 1
            iaload
            aload 4 /* hashArea */
            iload 3 /* spillOffset */
            iinc 3 /* spillOffset */ 1
            iaload
            if_icmpeq 10
            iconst_0
            ireturn
        10: .line 843
      StackMap locals:
      StackMap stack:
            aload 1 /* q */
            iload 5 /* ix */
            iinc 5 /* ix */ 1
            iaload
            aload 4 /* hashArea */
            iload 3 /* spillOffset */
            iinc 3 /* spillOffset */ 1
            iaload
            if_icmpeq 11
            iconst_0
            ireturn
        11: .line 844
      StackMap locals:
      StackMap stack:
            aload 1 /* q */
            iload 5 /* ix */
            iinc 5 /* ix */ 1
            iaload
            aload 4 /* hashArea */
            iload 3 /* spillOffset */
            iinc 3 /* spillOffset */ 1
            iaload
            if_icmpeq 12
            iconst_0
            ireturn
        12: .line 846
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 5 // int ix
        end local 4 // int[] hashArea
        end local 3 // int spillOffset
        end local 2 // int qlen
        end local 1 // int[] q
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   13     0         this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   13     1            q  [I
            0   13     2         qlen  I
            0   13     3  spillOffset  I
            1   13     4     hashArea  [I
            2   13     5           ix  I
    MethodParameters:
             Name  Flags
      q            
      qlen         
      spillOffset  

  private boolean _verifyLongName2(int[], int, int);
    descriptor: ([III)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int[] q
        start local 2 // int qlen
        start local 3 // int spillOffset
         0: .line 851
            iconst_0
            istore 4 /* ix */
        start local 4 // int ix
         1: .line 853
      StackMap locals: int
      StackMap stack:
            aload 1 /* q */
            iload 4 /* ix */
            iinc 4 /* ix */ 1
            iaload
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 3 /* spillOffset */
            iinc 3 /* spillOffset */ 1
            iaload
            if_icmpeq 3
         2: .line 854
            iconst_0
            ireturn
         3: .line 856
      StackMap locals:
      StackMap stack:
            iload 4 /* ix */
            iload 2 /* qlen */
         4: .line 852
            if_icmplt 1
         5: .line 857
            iconst_1
            ireturn
        end local 4 // int ix
        end local 3 // int spillOffset
        end local 2 // int qlen
        end local 1 // int[] q
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0         this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0    6     1            q  [I
            0    6     2         qlen  I
            0    6     3  spillOffset  I
            1    6     4           ix  I
    MethodParameters:
             Name  Flags
      q            
      qlen         
      spillOffset  

  public java.lang.String addName(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // java.lang.String name
        start local 2 // int q1
         0: .line 867
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._verifySharing:()V
         1: .line 868
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._intern:Z
            ifeq 3
         2: .line 869
            getstatic com.fasterxml.jackson.core.util.InternCache.instance:Lcom/fasterxml/jackson/core/util/InternCache;
            aload 1 /* name */
            invokevirtual com.fasterxml.jackson.core.util.InternCache.intern:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* name */
         3: .line 871
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* q1 */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.calcHash:(I)I
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._findOffsetForAdd:(I)I
            istore 3 /* offset */
        start local 3 // int offset
         4: .line 872
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 3 /* offset */
            iload 2 /* q1 */
            iastore
         5: .line 873
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 3 /* offset */
            iconst_3
            iadd
            iconst_1
            iastore
         6: .line 874
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 3 /* offset */
            iconst_2
            ishr
            aload 1 /* name */
            aastore
         7: .line 875
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
         8: .line 876
            aload 1 /* name */
            areturn
        end local 3 // int offset
        end local 2 // int q1
        end local 1 // java.lang.String name
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0    9     1    name  Ljava/lang/String;
            0    9     2      q1  I
            4    9     3  offset  I
    MethodParameters:
      Name  Flags
      name  
      q1    

  public java.lang.String addName(java.lang.String, int, int);
    descriptor: (Ljava/lang/String;II)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // java.lang.String name
        start local 2 // int q1
        start local 3 // int q2
         0: .line 880
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._verifySharing:()V
         1: .line 881
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._intern:Z
            ifeq 3
         2: .line 882
            getstatic com.fasterxml.jackson.core.util.InternCache.instance:Lcom/fasterxml/jackson/core/util/InternCache;
            aload 1 /* name */
            invokevirtual com.fasterxml.jackson.core.util.InternCache.intern:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* name */
         3: .line 889
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 2 /* q1 */
            iload 3 /* q2 */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.calcHash:(II)I
            istore 4 /* hash */
        start local 4 // int hash
         4: .line 890
            aload 0 /* this */
            iload 4 /* hash */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._findOffsetForAdd:(I)I
            istore 5 /* offset */
        start local 5 // int offset
         5: .line 891
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 5 /* offset */
            iload 2 /* q1 */
            iastore
         6: .line 892
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 5 /* offset */
            iconst_1
            iadd
            iload 3 /* q2 */
            iastore
         7: .line 893
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 5 /* offset */
            iconst_3
            iadd
            iconst_2
            iastore
         8: .line 894
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 5 /* offset */
            iconst_2
            ishr
            aload 1 /* name */
            aastore
         9: .line 895
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
        10: .line 896
            aload 1 /* name */
            areturn
        end local 5 // int offset
        end local 4 // int hash
        end local 3 // int q2
        end local 2 // int q1
        end local 1 // java.lang.String name
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   11     1    name  Ljava/lang/String;
            0   11     2      q1  I
            0   11     3      q2  I
            4   11     4    hash  I
            5   11     5  offset  I
    MethodParameters:
      Name  Flags
      name  
      q1    
      q2    

  public java.lang.String addName(java.lang.String, int, int, int);
    descriptor: (Ljava/lang/String;III)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=5
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // java.lang.String name
        start local 2 // int q1
        start local 3 // int q2
        start local 4 // int q3
         0: .line 900
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._verifySharing:()V
         1: .line 901
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._intern:Z
            ifeq 3
         2: .line 902
            getstatic com.fasterxml.jackson.core.util.InternCache.instance:Lcom/fasterxml/jackson/core/util/InternCache;
            aload 1 /* name */
            invokevirtual com.fasterxml.jackson.core.util.InternCache.intern:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* name */
         3: .line 904
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            iload 2 /* q1 */
            iload 3 /* q2 */
            iload 4 /* q3 */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.calcHash:(III)I
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._findOffsetForAdd:(I)I
            istore 5 /* offset */
        start local 5 // int offset
         4: .line 905
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 5 /* offset */
            iload 2 /* q1 */
            iastore
         5: .line 906
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 5 /* offset */
            iconst_1
            iadd
            iload 3 /* q2 */
            iastore
         6: .line 907
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 5 /* offset */
            iconst_2
            iadd
            iload 4 /* q3 */
            iastore
         7: .line 908
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 5 /* offset */
            iconst_3
            iadd
            iconst_3
            iastore
         8: .line 909
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 5 /* offset */
            iconst_2
            ishr
            aload 1 /* name */
            aastore
         9: .line 910
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
        10: .line 911
            aload 1 /* name */
            areturn
        end local 5 // int offset
        end local 4 // int q3
        end local 3 // int q2
        end local 2 // int q1
        end local 1 // java.lang.String name
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   11     1    name  Ljava/lang/String;
            0   11     2      q1  I
            0   11     3      q2  I
            0   11     4      q3  I
            4   11     5  offset  I
    MethodParameters:
      Name  Flags
      name  
      q1    
      q2    
      q3    

  public java.lang.String addName(java.lang.String, int[], int);
    descriptor: (Ljava/lang/String;[II)Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=7, args_size=4
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // java.lang.String name
        start local 2 // int[] q
        start local 3 // int qlen
         0: .line 916
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._verifySharing:()V
         1: .line 917
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._intern:Z
            ifeq 3
         2: .line 918
            getstatic com.fasterxml.jackson.core.util.InternCache.instance:Lcom/fasterxml/jackson/core/util/InternCache;
            aload 1 /* name */
            invokevirtual com.fasterxml.jackson.core.util.InternCache.intern:(Ljava/lang/String;)Ljava/lang/String;
            astore 1 /* name */
         3: .line 922
      StackMap locals:
      StackMap stack:
            iload 3 /* qlen */
            tableswitch { // 1 - 3
                    1: 4
                    2: 8
                    3: 13
              default: 19
          }
         4: .line 925
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            aload 2 /* q */
            iconst_0
            iaload
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.calcHash:(I)I
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._findOffsetForAdd:(I)I
            istore 4 /* offset */
        start local 4 // int offset
         5: .line 926
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 4 /* offset */
            aload 2 /* q */
            iconst_0
            iaload
            iastore
         6: .line 927
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 4 /* offset */
            iconst_3
            iadd
            iconst_1
            iastore
         7: .line 929
            goto 25
        end local 4 // int offset
         8: .line 932
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            aload 2 /* q */
            iconst_0
            iaload
            aload 2 /* q */
            iconst_1
            iaload
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.calcHash:(II)I
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._findOffsetForAdd:(I)I
            istore 4 /* offset */
        start local 4 // int offset
         9: .line 933
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 4 /* offset */
            aload 2 /* q */
            iconst_0
            iaload
            iastore
        10: .line 934
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 4 /* offset */
            iconst_1
            iadd
            aload 2 /* q */
            iconst_1
            iaload
            iastore
        11: .line 935
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 4 /* offset */
            iconst_3
            iadd
            iconst_2
            iastore
        12: .line 937
            goto 25
        end local 4 // int offset
        13: .line 940
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            aload 2 /* q */
            iconst_0
            iaload
            aload 2 /* q */
            iconst_1
            iaload
            aload 2 /* q */
            iconst_2
            iaload
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.calcHash:(III)I
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._findOffsetForAdd:(I)I
            istore 4 /* offset */
        start local 4 // int offset
        14: .line 941
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 4 /* offset */
            aload 2 /* q */
            iconst_0
            iaload
            iastore
        15: .line 942
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 4 /* offset */
            iconst_1
            iadd
            aload 2 /* q */
            iconst_1
            iaload
            iastore
        16: .line 943
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 4 /* offset */
            iconst_2
            iadd
            aload 2 /* q */
            iconst_2
            iaload
            iastore
        17: .line 944
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 4 /* offset */
            iconst_3
            iadd
            iconst_3
            iastore
        18: .line 946
            goto 25
        end local 4 // int offset
        19: .line 948
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 2 /* q */
            iload 3 /* qlen */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.calcHash:([II)I
            istore 5 /* hash */
        start local 5 // int hash
        20: .line 949
            aload 0 /* this */
            iload 5 /* hash */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._findOffsetForAdd:(I)I
            istore 4 /* offset */
        start local 4 // int offset
        21: .line 951
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 4 /* offset */
            iload 5 /* hash */
            iastore
        22: .line 952
            aload 0 /* this */
            aload 2 /* q */
            iload 3 /* qlen */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._appendLongName:([II)I
            istore 6 /* longStart */
        start local 6 // int longStart
        23: .line 953
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 4 /* offset */
            iconst_1
            iadd
            iload 6 /* longStart */
            iastore
        24: .line 954
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 4 /* offset */
            iconst_3
            iadd
            iload 3 /* qlen */
            iastore
        end local 6 // int longStart
        end local 5 // int hash
        25: .line 957
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            iload 4 /* offset */
            iconst_2
            ishr
            aload 1 /* name */
            aastore
        26: .line 960
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
            iconst_1
            iadd
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
        27: .line 961
            aload 1 /* name */
            areturn
        end local 4 // int offset
        end local 3 // int qlen
        end local 2 // int[] q
        end local 1 // java.lang.String name
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   28     0       this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   28     1       name  Ljava/lang/String;
            0   28     2          q  [I
            0   28     3       qlen  I
            5    8     4     offset  I
            9   13     4     offset  I
           14   19     4     offset  I
           21   28     4     offset  I
           20   25     5       hash  I
           23   25     6  longStart  I
    MethodParameters:
      Name  Flags
      name  
      q     
      qlen  

  private void _verifySharing();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
         0: .line 966
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashShared:Z
            ifeq 8
         1: .line 969
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._parent:Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            ifnonnull 5
         2: .line 970
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
            ifne 4
         3: .line 971
            new java.lang.IllegalStateException
            dup
            ldc "Cannot add names to Root symbol table"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 973
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            ldc "Cannot add names to Placeholder symbol table"
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
         5: .line 976
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            arraylength
            invokestatic java.util.Arrays.copyOf:([II)[I
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
         6: .line 977
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            arraylength
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;I)[Ljava/lang/Object;
            checkcast java.lang.String[]
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
         7: .line 978
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashShared:Z
         8: .line 980
      StackMap locals:
      StackMap stack:
            return
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;

  private int _findOffsetForAdd(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int hash
         0: .line 988
            aload 0 /* this */
            iload 1 /* hash */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._calcOffset:(I)I
            istore 2 /* offset */
        start local 2 // int offset
         1: .line 989
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            astore 3 /* hashArea */
        start local 3 // int[] hashArea
         2: .line 990
            aload 3 /* hashArea */
            iload 2 /* offset */
            iconst_3
            iadd
            iaload
            ifne 4
         3: .line 992
            iload 2 /* offset */
            ireturn
         4: .line 996
      StackMap locals: int int[]
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._checkNeedForRehash:()Z
            ifeq 6
         5: .line 997
            aload 0 /* this */
            iload 1 /* hash */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._resizeAndFindOffsetForAdd:(I)I
            ireturn
         6: .line 1001
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._secondaryStart:I
            iload 2 /* offset */
            iconst_3
            ishr
            iconst_2
            ishl
            iadd
            istore 4 /* offset2 */
        start local 4 // int offset2
         7: .line 1002
            aload 3 /* hashArea */
            iload 4 /* offset2 */
            iconst_3
            iadd
            iaload
            ifne 9
         8: .line 1004
            iload 4 /* offset2 */
            ireturn
         9: .line 1008
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryStart:I
            iload 2 /* offset */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
            iconst_2
            iadd
            ishr
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
            ishl
            iadd
            istore 4 /* offset2 */
        10: .line 1009
            iconst_1
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
            ishl
            istore 5 /* bucketSize */
        start local 5 // int bucketSize
        11: .line 1010
            iload 4 /* offset2 */
            iload 5 /* bucketSize */
            iadd
            istore 6 /* end */
        start local 6 // int end
        12: goto 16
        13: .line 1011
      StackMap locals: int int
      StackMap stack:
            aload 3 /* hashArea */
            iload 4 /* offset2 */
            iconst_3
            iadd
            iaload
            ifne 15
        14: .line 1013
            iload 4 /* offset2 */
            ireturn
        15: .line 1010
      StackMap locals:
      StackMap stack:
            iinc 4 /* offset2 */ 4
      StackMap locals:
      StackMap stack:
        16: iload 4 /* offset2 */
            iload 6 /* end */
            if_icmplt 13
        end local 6 // int end
        17: .line 1018
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverEnd:I
            istore 2 /* offset */
        18: .line 1019
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverEnd:I
            iconst_4
            iadd
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverEnd:I
        19: .line 1029
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
            iconst_3
            ishl
            istore 6 /* end */
        start local 6 // int end
        20: .line 1030
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverEnd:I
            iload 6 /* end */
            if_icmplt 24
        21: .line 1031
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._failOnDoS:Z
            ifeq 23
        22: .line 1032
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._reportTooManyCollisions:()V
        23: .line 1034
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iload 1 /* hash */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._resizeAndFindOffsetForAdd:(I)I
            ireturn
        24: .line 1036
      StackMap locals:
      StackMap stack:
            iload 2 /* offset */
            ireturn
        end local 6 // int end
        end local 5 // int bucketSize
        end local 4 // int offset2
        end local 3 // int[] hashArea
        end local 2 // int offset
        end local 1 // int hash
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   25     0        this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   25     1        hash  I
            1   25     2      offset  I
            2   25     3    hashArea  [I
            7   25     4     offset2  I
           11   25     5  bucketSize  I
           12   17     6         end  I
           20   25     6         end  I
    MethodParameters:
      Name  Flags
      hash  

  private int _resizeAndFindOffsetForAdd(int);
    descriptor: (I)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int hash
         0: .line 1043
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.rehash:()V
         1: .line 1046
            aload 0 /* this */
            iload 1 /* hash */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._calcOffset:(I)I
            istore 2 /* offset */
        start local 2 // int offset
         2: .line 1047
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            astore 3 /* hashArea */
        start local 3 // int[] hashArea
         3: .line 1048
            aload 3 /* hashArea */
            iload 2 /* offset */
            iconst_3
            iadd
            iaload
            ifne 5
         4: .line 1049
            iload 2 /* offset */
            ireturn
         5: .line 1051
      StackMap locals: int int[]
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._secondaryStart:I
            iload 2 /* offset */
            iconst_3
            ishr
            iconst_2
            ishl
            iadd
            istore 4 /* offset2 */
        start local 4 // int offset2
         6: .line 1052
            aload 3 /* hashArea */
            iload 4 /* offset2 */
            iconst_3
            iadd
            iaload
            ifne 8
         7: .line 1053
            iload 4 /* offset2 */
            ireturn
         8: .line 1055
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryStart:I
            iload 2 /* offset */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
            iconst_2
            iadd
            ishr
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
            ishl
            iadd
            istore 4 /* offset2 */
         9: .line 1056
            iconst_1
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
            ishl
            istore 5 /* bucketSize */
        start local 5 // int bucketSize
        10: .line 1057
            iload 4 /* offset2 */
            iload 5 /* bucketSize */
            iadd
            istore 6 /* end */
        start local 6 // int end
        11: goto 15
        12: .line 1058
      StackMap locals: int int
      StackMap stack:
            aload 3 /* hashArea */
            iload 4 /* offset2 */
            iconst_3
            iadd
            iaload
            ifne 14
        13: .line 1059
            iload 4 /* offset2 */
            ireturn
        14: .line 1057
      StackMap locals:
      StackMap stack:
            iinc 4 /* offset2 */ 4
      StackMap locals:
      StackMap stack:
        15: iload 4 /* offset2 */
            iload 6 /* end */
            if_icmplt 12
        end local 6 // int end
        16: .line 1062
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverEnd:I
            istore 2 /* offset */
        17: .line 1063
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverEnd:I
            iconst_4
            iadd
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverEnd:I
        18: .line 1064
            iload 2 /* offset */
            ireturn
        end local 5 // int bucketSize
        end local 4 // int offset2
        end local 3 // int[] hashArea
        end local 2 // int offset
        end local 1 // int hash
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   19     0        this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   19     1        hash  I
            2   19     2      offset  I
            3   19     3    hashArea  [I
            6   19     4     offset2  I
           10   19     5  bucketSize  I
           11   16     6         end  I
    MethodParameters:
      Name  Flags
      hash  

  private boolean _checkNeedForRehash();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=6, locals=2, args_size=1
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
         0: .line 1070
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
            iconst_1
            ishr
            if_icmple 5
         1: .line 1071
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverEnd:I
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverStart:()I
            isub
            iconst_2
            ishr
            istore 1 /* spillCount */
        start local 1 // int spillCount
         2: .line 1072
            iload 1 /* spillCount */
            iconst_1
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
            iadd
            bipush 7
            ishr
            if_icmpgt 4
         3: .line 1073
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
            i2d
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
            i2d
            ldc 0.8
            dmul
            dcmpl
            ifle 5
         4: .line 1074
      StackMap locals: int
      StackMap stack:
            iconst_1
            ireturn
        end local 1 // int spillCount
         5: .line 1077
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    6     0        this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            2    5     1  spillCount  I

  private int _appendLongName(int[], int);
    descriptor: ([II)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=7, args_size=3
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int[] quads
        start local 2 // int qlen
         0: .line 1082
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._longNameOffset:I
            istore 3 /* start */
        start local 3 // int start
         1: .line 1085
            iload 3 /* start */
            iload 2 /* qlen */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            arraylength
            if_icmple 6
         2: .line 1087
            iload 3 /* start */
            iload 2 /* qlen */
            iadd
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            arraylength
            isub
            istore 4 /* toAdd */
        start local 4 // int toAdd
         3: .line 1089
            sipush 4096
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
            invokestatic java.lang.Math.min:(II)I
            istore 5 /* minAdd */
        start local 5 // int minAdd
         4: .line 1091
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            arraylength
            iload 4 /* toAdd */
            iload 5 /* minAdd */
            invokestatic java.lang.Math.max:(II)I
            iadd
            istore 6 /* newSize */
        start local 6 // int newSize
         5: .line 1092
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 6 /* newSize */
            invokestatic java.util.Arrays.copyOf:([II)[I
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
        end local 6 // int newSize
        end local 5 // int minAdd
        end local 4 // int toAdd
         6: .line 1094
      StackMap locals: int
      StackMap stack:
            aload 1 /* quads */
            iconst_0
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iload 3 /* start */
            iload 2 /* qlen */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
         7: .line 1095
            aload 0 /* this */
            dup
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._longNameOffset:I
            iload 2 /* qlen */
            iadd
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._longNameOffset:I
         8: .line 1096
            iload 3 /* start */
            ireturn
        end local 3 // int start
        end local 2 // int qlen
        end local 1 // int[] quads
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0    9     1    quads  [I
            0    9     2     qlen  I
            1    9     3    start  I
            3    6     4    toAdd  I
            4    6     5   minAdd  I
            5    6     6  newSize  I
    MethodParameters:
       Name  Flags
      quads  
      qlen   

  public int calcHash(int);
    descriptor: (I)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int q1
         0: .line 1121
            iload 1 /* q1 */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._seed:I
            ixor
            istore 2 /* hash */
        start local 2 // int hash
         1: .line 1127
            iload 2 /* hash */
            iload 2 /* hash */
            bipush 16
            iushr
            iadd
            istore 2 /* hash */
         2: .line 1128
            iload 2 /* hash */
            iload 2 /* hash */
            iconst_3
            ishl
            ixor
            istore 2 /* hash */
         3: .line 1129
            iload 2 /* hash */
            iload 2 /* hash */
            bipush 12
            iushr
            iadd
            istore 2 /* hash */
         4: .line 1130
            iload 2 /* hash */
            ireturn
        end local 2 // int hash
        end local 1 // int q1
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0    5     1    q1  I
            1    5     2  hash  I
    MethodParameters:
      Name  Flags
      q1    

  public int calcHash(int, int);
    descriptor: (II)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int q1
        start local 2 // int q2
         0: .line 1137
            iload 1 /* q1 */
            istore 3 /* hash */
        start local 3 // int hash
         1: .line 1139
            iload 3 /* hash */
            iload 3 /* hash */
            bipush 15
            iushr
            iadd
            istore 3 /* hash */
         2: .line 1140
            iload 3 /* hash */
            iload 3 /* hash */
            bipush 9
            iushr
            ixor
            istore 3 /* hash */
         3: .line 1141
            iload 3 /* hash */
            iload 2 /* q2 */
            bipush 33
            imul
            iadd
            istore 3 /* hash */
         4: .line 1142
            iload 3 /* hash */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._seed:I
            ixor
            istore 3 /* hash */
         5: .line 1143
            iload 3 /* hash */
            iload 3 /* hash */
            bipush 16
            iushr
            iadd
            istore 3 /* hash */
         6: .line 1144
            iload 3 /* hash */
            iload 3 /* hash */
            iconst_4
            iushr
            ixor
            istore 3 /* hash */
         7: .line 1145
            iload 3 /* hash */
            iload 3 /* hash */
            iconst_3
            ishl
            iadd
            istore 3 /* hash */
         8: .line 1147
            iload 3 /* hash */
            ireturn
        end local 3 // int hash
        end local 2 // int q2
        end local 1 // int q1
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    9     0  this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0    9     1    q1  I
            0    9     2    q2  I
            1    9     3  hash  I
    MethodParameters:
      Name  Flags
      q1    
      q2    

  public int calcHash(int, int, int);
    descriptor: (III)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=4
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int q1
        start local 2 // int q2
        start local 3 // int q3
         0: .line 1152
            iload 1 /* q1 */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._seed:I
            ixor
            istore 4 /* hash */
        start local 4 // int hash
         1: .line 1153
            iload 4 /* hash */
            iload 4 /* hash */
            bipush 9
            iushr
            iadd
            istore 4 /* hash */
         2: .line 1154
            iload 4 /* hash */
            bipush 31
            imul
            istore 4 /* hash */
         3: .line 1155
            iload 4 /* hash */
            iload 2 /* q2 */
            iadd
            istore 4 /* hash */
         4: .line 1156
            iload 4 /* hash */
            bipush 33
            imul
            istore 4 /* hash */
         5: .line 1157
            iload 4 /* hash */
            iload 4 /* hash */
            bipush 15
            iushr
            iadd
            istore 4 /* hash */
         6: .line 1158
            iload 4 /* hash */
            iload 3 /* q3 */
            ixor
            istore 4 /* hash */
         7: .line 1160
            iload 4 /* hash */
            iload 4 /* hash */
            iconst_4
            iushr
            iadd
            istore 4 /* hash */
         8: .line 1162
            iload 4 /* hash */
            iload 4 /* hash */
            bipush 15
            iushr
            iadd
            istore 4 /* hash */
         9: .line 1163
            iload 4 /* hash */
            iload 4 /* hash */
            bipush 9
            ishl
            ixor
            istore 4 /* hash */
        10: .line 1165
            iload 4 /* hash */
            ireturn
        end local 4 // int hash
        end local 3 // int q3
        end local 2 // int q2
        end local 1 // int q1
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   11     0  this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   11     1    q1  I
            0   11     2    q2  I
            0   11     3    q3  I
            1   11     4  hash  I
    MethodParameters:
      Name  Flags
      q1    
      q2    
      q3    

  public int calcHash(int[], int);
    descriptor: ([II)I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=6, args_size=3
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // int[] q
        start local 2 // int qlen
         0: .line 1170
            iload 2 /* qlen */
            iconst_4
            if_icmpge 2
         1: .line 1171
            new java.lang.IllegalArgumentException
            dup
            invokespecial java.lang.IllegalArgumentException.<init>:()V
            athrow
         2: .line 1178
      StackMap locals:
      StackMap stack:
            aload 1 /* q */
            iconst_0
            iaload
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._seed:I
            ixor
            istore 3 /* hash */
        start local 3 // int hash
         3: .line 1179
            iload 3 /* hash */
            iload 3 /* hash */
            bipush 9
            iushr
            iadd
            istore 3 /* hash */
         4: .line 1180
            iload 3 /* hash */
            aload 1 /* q */
            iconst_1
            iaload
            iadd
            istore 3 /* hash */
         5: .line 1181
            iload 3 /* hash */
            iload 3 /* hash */
            bipush 15
            iushr
            iadd
            istore 3 /* hash */
         6: .line 1182
            iload 3 /* hash */
            bipush 33
            imul
            istore 3 /* hash */
         7: .line 1183
            iload 3 /* hash */
            aload 1 /* q */
            iconst_2
            iaload
            ixor
            istore 3 /* hash */
         8: .line 1184
            iload 3 /* hash */
            iload 3 /* hash */
            iconst_4
            iushr
            iadd
            istore 3 /* hash */
         9: .line 1186
            iconst_3
            istore 4 /* i */
        start local 4 // int i
        10: goto 15
        11: .line 1187
      StackMap locals: int int
      StackMap stack:
            aload 1 /* q */
            iload 4 /* i */
            iaload
            istore 5 /* next */
        start local 5 // int next
        12: .line 1188
            iload 5 /* next */
            iload 5 /* next */
            bipush 21
            ishr
            ixor
            istore 5 /* next */
        13: .line 1189
            iload 3 /* hash */
            iload 5 /* next */
            iadd
            istore 3 /* hash */
        end local 5 // int next
        14: .line 1186
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
        15: iload 4 /* i */
            iload 2 /* qlen */
            if_icmplt 11
        end local 4 // int i
        16: .line 1191
            iload 3 /* hash */
            ldc 65599
            imul
            istore 3 /* hash */
        17: .line 1194
            iload 3 /* hash */
            iload 3 /* hash */
            bipush 19
            iushr
            iadd
            istore 3 /* hash */
        18: .line 1195
            iload 3 /* hash */
            iload 3 /* hash */
            iconst_5
            ishl
            ixor
            istore 3 /* hash */
        19: .line 1196
            iload 3 /* hash */
            ireturn
        end local 3 // int hash
        end local 2 // int qlen
        end local 1 // int[] q
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   20     0  this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0   20     1     q  [I
            0   20     2  qlen  I
            3   20     3  hash  I
           10   16     4     i  I
           12   14     5  next  I
    MethodParameters:
      Name  Flags
      q     
      qlen  

  private void rehash();
    descriptor: ()V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=14, args_size=1
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
         0: .line 1208
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashShared:Z
         1: .line 1212
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            astore 1 /* oldHashArea */
        start local 1 // int[] oldHashArea
         2: .line 1213
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            astore 2 /* oldNames */
        start local 2 // java.lang.String[] oldNames
         3: .line 1214
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
            istore 3 /* oldSize */
        start local 3 // int oldSize
         4: .line 1215
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
            istore 4 /* oldCount */
        start local 4 // int oldCount
         5: .line 1216
            iload 3 /* oldSize */
            iload 3 /* oldSize */
            iadd
            istore 5 /* newSize */
        start local 5 // int newSize
         6: .line 1217
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverEnd:I
            istore 6 /* oldEnd */
        start local 6 // int oldEnd
         7: .line 1222
            iload 5 /* newSize */
            ldc 65536
            if_icmple 10
         8: .line 1223
            aload 0 /* this */
            iconst_1
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.nukeSymbols:(Z)V
         9: .line 1224
            return
        10: .line 1227
      StackMap locals: com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer int[] java.lang.String[] int int int int
      StackMap stack:
            aload 0 /* this */
            aload 1 /* oldHashArea */
            arraylength
            iload 3 /* oldSize */
            iconst_3
            ishl
            iadd
            newarray 10
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
        11: .line 1228
            aload 0 /* this */
            iload 5 /* newSize */
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
        12: .line 1229
            aload 0 /* this */
            iload 5 /* newSize */
            iconst_2
            ishl
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._secondaryStart:I
        13: .line 1230
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._secondaryStart:I
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._secondaryStart:I
            iconst_1
            ishr
            iadd
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryStart:I
        14: .line 1231
            aload 0 /* this */
            iload 5 /* newSize */
            invokestatic com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._calcTertiaryShift:(I)I
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._tertiaryShift:I
        15: .line 1234
            aload 0 /* this */
            aload 2 /* oldNames */
            arraylength
            iconst_1
            ishl
            anewarray java.lang.String
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
        16: .line 1235
            aload 0 /* this */
            iconst_0
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.nukeSymbols:(Z)V
        17: .line 1242
            iconst_0
            istore 7 /* copyCount */
        start local 7 // int copyCount
        18: .line 1243
            bipush 16
            newarray 10
            astore 8 /* q */
        start local 8 // int[] q
        19: .line 1244
            iconst_0
            istore 9 /* offset */
        start local 9 // int offset
        20: iload 6 /* oldEnd */
            istore 10 /* end */
        start local 10 // int end
        21: goto 46
        22: .line 1245
      StackMap locals: com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer int[] java.lang.String[] int int int int int int[] int int
      StackMap stack:
            aload 1 /* oldHashArea */
            iload 9 /* offset */
            iconst_3
            iadd
            iaload
            istore 11 /* len */
        start local 11 // int len
        23: .line 1246
            iload 11 /* len */
            ifne 25
        24: .line 1247
            goto 45
        25: .line 1249
      StackMap locals: int
      StackMap stack:
            iinc 7 /* copyCount */ 1
        26: .line 1250
            aload 2 /* oldNames */
            iload 9 /* offset */
            iconst_2
            ishr
            aaload
            astore 12 /* name */
        start local 12 // java.lang.String name
        27: .line 1251
            iload 11 /* len */
            tableswitch { // 1 - 3
                    1: 28
                    2: 31
                    3: 35
              default: 40
          }
        28: .line 1253
      StackMap locals: java.lang.String
      StackMap stack:
            aload 8 /* q */
            iconst_0
            aload 1 /* oldHashArea */
            iload 9 /* offset */
            iaload
            iastore
        29: .line 1254
            aload 0 /* this */
            aload 12 /* name */
            aload 8 /* q */
            iconst_1
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.addName:(Ljava/lang/String;[II)Ljava/lang/String;
            pop
        30: .line 1255
            goto 45
        31: .line 1257
      StackMap locals:
      StackMap stack:
            aload 8 /* q */
            iconst_0
            aload 1 /* oldHashArea */
            iload 9 /* offset */
            iaload
            iastore
        32: .line 1258
            aload 8 /* q */
            iconst_1
            aload 1 /* oldHashArea */
            iload 9 /* offset */
            iconst_1
            iadd
            iaload
            iastore
        33: .line 1259
            aload 0 /* this */
            aload 12 /* name */
            aload 8 /* q */
            iconst_2
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.addName:(Ljava/lang/String;[II)Ljava/lang/String;
            pop
        34: .line 1260
            goto 45
        35: .line 1262
      StackMap locals:
      StackMap stack:
            aload 8 /* q */
            iconst_0
            aload 1 /* oldHashArea */
            iload 9 /* offset */
            iaload
            iastore
        36: .line 1263
            aload 8 /* q */
            iconst_1
            aload 1 /* oldHashArea */
            iload 9 /* offset */
            iconst_1
            iadd
            iaload
            iastore
        37: .line 1264
            aload 8 /* q */
            iconst_2
            aload 1 /* oldHashArea */
            iload 9 /* offset */
            iconst_2
            iadd
            iaload
            iastore
        38: .line 1265
            aload 0 /* this */
            aload 12 /* name */
            aload 8 /* q */
            iconst_3
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.addName:(Ljava/lang/String;[II)Ljava/lang/String;
            pop
        39: .line 1266
            goto 45
        40: .line 1268
      StackMap locals:
      StackMap stack:
            iload 11 /* len */
            aload 8 /* q */
            arraylength
            if_icmple 42
        41: .line 1269
            iload 11 /* len */
            newarray 10
            astore 8 /* q */
        42: .line 1272
      StackMap locals:
      StackMap stack:
            aload 1 /* oldHashArea */
            iload 9 /* offset */
            iconst_1
            iadd
            iaload
            istore 13 /* qoff */
        start local 13 // int qoff
        43: .line 1273
            aload 1 /* oldHashArea */
            iload 13 /* qoff */
            aload 8 /* q */
            iconst_0
            iload 11 /* len */
            invokestatic java.lang.System.arraycopy:(Ljava/lang/Object;ILjava/lang/Object;II)V
        44: .line 1274
            aload 0 /* this */
            aload 12 /* name */
            aload 8 /* q */
            iload 11 /* len */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer.addName:(Ljava/lang/String;[II)Ljava/lang/String;
            pop
        end local 13 // int qoff
        end local 12 // java.lang.String name
        end local 11 // int len
        45: .line 1244
      StackMap locals:
      StackMap stack:
            iinc 9 /* offset */ 4
      StackMap locals:
      StackMap stack:
        46: iload 9 /* offset */
            iload 10 /* end */
            if_icmplt 22
        end local 10 // int end
        end local 9 // int offset
        47: .line 1281
            iload 7 /* copyCount */
            iload 4 /* oldCount */
            if_icmpeq 49
        48: .line 1282
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Failed rehash(): old count="
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 4 /* oldCount */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc ", copyCount="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            iload 7 /* copyCount */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        49: .line 1284
      StackMap locals:
      StackMap stack:
            return
        end local 8 // int[] q
        end local 7 // int copyCount
        end local 6 // int oldEnd
        end local 5 // int newSize
        end local 4 // int oldCount
        end local 3 // int oldSize
        end local 2 // java.lang.String[] oldNames
        end local 1 // int[] oldHashArea
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   50     0         this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            2   50     1  oldHashArea  [I
            3   50     2     oldNames  [Ljava/lang/String;
            4   50     3      oldSize  I
            5   50     4     oldCount  I
            6   50     5      newSize  I
            7   50     6       oldEnd  I
           18   50     7    copyCount  I
           19   50     8            q  [I
           20   47     9       offset  I
           21   47    10          end  I
           23   45    11          len  I
           27   45    12         name  Ljava/lang/String;
           43   45    13         qoff  I

  private void nukeSymbols(boolean);
    descriptor: (Z)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
        start local 1 // boolean fill
         0: .line 1291
            aload 0 /* this */
            iconst_0
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
         1: .line 1293
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverStart:()I
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._spilloverEnd:I
         2: .line 1295
            aload 0 /* this */
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
            iconst_3
            ishl
            putfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._longNameOffset:I
         3: .line 1296
            iload 1 /* fill */
            ifeq 6
         4: .line 1297
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashArea:[I
            iconst_0
            invokestatic java.util.Arrays.fill:([II)V
         5: .line 1298
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._names:[Ljava/lang/String;
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;Ljava/lang/Object;)V
         6: .line 1300
      StackMap locals:
      StackMap stack:
            return
        end local 1 // boolean fill
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            0    7     1  fill  Z
    MethodParameters:
      Name  Flags
      fill  

  private final int _spilloverStart();
    descriptor: ()I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
         0: .line 1314
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
            istore 1 /* offset */
        start local 1 // int offset
         1: .line 1315
            iload 1 /* offset */
            iconst_3
            ishl
            iload 1 /* offset */
            isub
            ireturn
        end local 1 // int offset
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;
            1    2     1  offset  I

  protected void _reportTooManyCollisions();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
         0: .line 1321
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
            sipush 1024
            if_icmpgt 2
         1: .line 1322
            return
         2: .line 1324
      StackMap locals:
      StackMap stack:
            new java.lang.IllegalStateException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Spill-over slots in symbol table with "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._count:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
         3: .line 1325
            ldc " entries, hash area of "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " slots is now full (all "
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         4: .line 1326
            aload 0 /* this */
            getfield com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer._hashSize:I
            iconst_3
            ishr
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " slots -- suspect a DoS attack based on hash collisions."
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
         5: .line 1327
            ldc " You can disable the check via `JsonFactory.Feature.FAIL_ON_SYMBOL_HASH_OVERFLOW`"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
         6: .line 1324
            invokespecial java.lang.IllegalStateException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/fasterxml/jackson/core/sym/ByteQuadsCanonicalizer;

  static int _calcTertiaryShift(int);
    descriptor: (I)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=2, args_size=1
        start local 0 // int primarySlots
         0: .line 1333
            iload 0 /* primarySlots */
            iconst_2
            ishr
            istore 1 /* tertSlots */
        start local 1 // int tertSlots
         1: .line 1336
            iload 1 /* tertSlots */
            bipush 64
            if_icmpge 3
         2: .line 1337
            iconst_4
            ireturn
         3: .line 1339
      StackMap locals: int
      StackMap stack:
            iload 1 /* tertSlots */
            sipush 256
            if_icmpgt 5
         4: .line 1340
            iconst_5
            ireturn
         5: .line 1342
      StackMap locals:
      StackMap stack:
            iload 1 /* tertSlots */
            sipush 1024
            if_icmpgt 7
         6: .line 1343
            bipush 6
            ireturn
         7: .line 1346
      StackMap locals:
      StackMap stack:
            bipush 7
            ireturn
        end local 1 // int tertSlots
        end local 0 // int primarySlots
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    8     0  primarySlots  I
            1    8     1     tertSlots  I
    MethodParameters:
              Name  Flags
      primarySlots  
}
SourceFile: "ByteQuadsCanonicalizer.java"
NestMembers:
  com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo
InnerClasses:
  public final Feature = com.fasterxml.jackson.core.JsonFactory$Feature of com.fasterxml.jackson.core.JsonFactory
  private final TableInfo = com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer$TableInfo of com.fasterxml.jackson.core.sym.ByteQuadsCanonicalizer