class com.google.common.collect.CompactHashMap<K, V> extends java.util.AbstractMap<K, V> implements java.io.Serializable
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.google.common.collect.CompactHashMap
  super_class: java.util.AbstractMap
{
  private static final java.lang.Object NOT_FOUND;
    descriptor: Ljava/lang/Object;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  static final double HASH_FLOODING_FPP;
    descriptor: D
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 0.001
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.VisibleForTesting()

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

  private transient java.lang.Object table;
    descriptor: Ljava/lang/Object;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT
    RuntimeVisibleTypeAnnotations: 
      FIELD
        org.checkerframework.checker.nullness.qual.Nullable()

  transient int[] entries;
    descriptor: [I
    flags: (0x0080) ACC_TRANSIENT
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.VisibleForTesting()
    RuntimeVisibleTypeAnnotations: 
      FIELD
        org.checkerframework.checker.nullness.qual.Nullable()
    RuntimeInvisibleTypeAnnotations: 
      FIELD, location=[ARRAY_ELEMENT]
        com.google.common.annotations.VisibleForTesting()

  transient java.lang.Object[] keys;
    descriptor: [Ljava/lang/Object;
    flags: (0x0080) ACC_TRANSIENT
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.VisibleForTesting()
    RuntimeVisibleTypeAnnotations: 
      FIELD
        org.checkerframework.checker.nullness.qual.Nullable()
    RuntimeInvisibleTypeAnnotations: 
      FIELD, location=[ARRAY_ELEMENT]
        com.google.common.annotations.VisibleForTesting()

  transient java.lang.Object[] values;
    descriptor: [Ljava/lang/Object;
    flags: (0x0080) ACC_TRANSIENT
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.VisibleForTesting()
    RuntimeVisibleTypeAnnotations: 
      FIELD
        org.checkerframework.checker.nullness.qual.Nullable()
    RuntimeInvisibleTypeAnnotations: 
      FIELD, location=[ARRAY_ELEMENT]
        com.google.common.annotations.VisibleForTesting()

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

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

  private transient java.util.Set<K> keySetView;
    descriptor: Ljava/util/Set;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT
    Signature: Ljava/util/Set<TK;>;
    RuntimeVisibleTypeAnnotations: 
      FIELD
        org.checkerframework.checker.nullness.qual.Nullable()

  private transient java.util.Set<java.util.Map$Entry<K, V>> entrySetView;
    descriptor: Ljava/util/Set;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT
    Signature: Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;
    RuntimeVisibleTypeAnnotations: 
      FIELD
        org.checkerframework.checker.nullness.qual.Nullable()

  private transient java.util.Collection<V> valuesView;
    descriptor: Ljava/util/Collection;
    flags: (0x0082) ACC_PRIVATE, ACC_TRANSIENT
    Signature: Ljava/util/Collection<TV;>;
    RuntimeVisibleTypeAnnotations: 
      FIELD
        org.checkerframework.checker.nullness.qual.Nullable()

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 106
            new java.lang.Object
            dup
            invokespecial java.lang.Object.<init>:()V
            putstatic com.google.common.collect.CompactHashMap.NOT_FOUND:Ljava/lang/Object;
         1: .line 120
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public static <K, V> com.google.common.collect.CompactHashMap<K, V> create();
    descriptor: ()Lcom/google/common/collect/CompactHashMap;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=2, locals=0, args_size=0
         0: .line 90
            new com.google.common.collect.CompactHashMap
            dup
            invokespecial com.google.common.collect.CompactHashMap.<init>:()V
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>()Lcom/google/common/collect/CompactHashMap<TK;TV;>;

  public static <K, V> com.google.common.collect.CompactHashMap<K, V> createWithExpectedSize(int);
    descriptor: (I)Lcom/google/common/collect/CompactHashMap;
    flags: (0x0009) ACC_PUBLIC, ACC_STATIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // int expectedSize
         0: .line 103
            new com.google.common.collect.CompactHashMap
            dup
            iload 0 /* expectedSize */
            invokespecial com.google.common.collect.CompactHashMap.<init>:(I)V
            areturn
        end local 0 // int expectedSize
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    1     0  expectedSize  I
    Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>(I)Lcom/google/common/collect/CompactHashMap<TK;TV;>;
    MethodParameters:
              Name  Flags
      expectedSize  

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 184
            aload 0 /* this */
            invokespecial java.util.AbstractMap.<init>:()V
         1: .line 185
            aload 0 /* this */
            iconst_3
            invokevirtual com.google.common.collect.CompactHashMap.init:(I)V
         2: .line 186
            return
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;

  void <init>(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // int expectedSize
         0: .line 193
            aload 0 /* this */
            invokespecial java.util.AbstractMap.<init>:()V
         1: .line 194
            aload 0 /* this */
            iload 1 /* expectedSize */
            invokevirtual com.google.common.collect.CompactHashMap.init:(I)V
         2: .line 195
            return
        end local 1 // int expectedSize
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    3     0          this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0    3     1  expectedSize  I
    MethodParameters:
              Name  Flags
      expectedSize  

  void init(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // int expectedSize
         0: .line 199
            iload 1 /* expectedSize */
            iflt 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ldc "Expected size must be >= 0"
            invokestatic com.google.common.base.Preconditions.checkArgument:(ZLjava/lang/Object;)V
         3: .line 202
            aload 0 /* this */
            iload 1 /* expectedSize */
            iconst_1
            ldc 1073741823
            invokestatic com.google.common.primitives.Ints.constrainToRange:(III)I
            putfield com.google.common.collect.CompactHashMap.metadata:I
         4: .line 203
            return
        end local 1 // int expectedSize
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    5     0          this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0    5     1  expectedSize  I
    MethodParameters:
              Name  Flags
      expectedSize  

  boolean needsAllocArrays();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 208
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.table:Ljava/lang/Object;
            ifnonnull 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.VisibleForTesting()
    RuntimeInvisibleTypeAnnotations: 
      METHOD_RETURN
        com.google.common.annotations.VisibleForTesting()

  int allocArrays();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 214
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.needsAllocArrays:()Z
            ldc "Arrays already allocated"
            invokestatic com.google.common.base.Preconditions.checkState:(ZLjava/lang/Object;)V
         1: .line 216
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.metadata:I
            istore 1 /* expectedSize */
        start local 1 // int expectedSize
         2: .line 217
            iload 1 /* expectedSize */
            invokestatic com.google.common.collect.CompactHashing.tableSize:(I)I
            istore 2 /* buckets */
        start local 2 // int buckets
         3: .line 218
            aload 0 /* this */
            iload 2 /* buckets */
            invokestatic com.google.common.collect.CompactHashing.createTable:(I)Ljava/lang/Object;
            putfield com.google.common.collect.CompactHashMap.table:Ljava/lang/Object;
         4: .line 219
            aload 0 /* this */
            iload 2 /* buckets */
            iconst_1
            isub
            invokevirtual com.google.common.collect.CompactHashMap.setHashTableMask:(I)V
         5: .line 221
            aload 0 /* this */
            iload 1 /* expectedSize */
            newarray 10
            putfield com.google.common.collect.CompactHashMap.entries:[I
         6: .line 222
            aload 0 /* this */
            iload 1 /* expectedSize */
            anewarray java.lang.Object
            putfield com.google.common.collect.CompactHashMap.keys:[Ljava/lang/Object;
         7: .line 223
            aload 0 /* this */
            iload 1 /* expectedSize */
            anewarray java.lang.Object
            putfield com.google.common.collect.CompactHashMap.values:[Ljava/lang/Object;
         8: .line 225
            iload 1 /* expectedSize */
            ireturn
        end local 2 // int buckets
        end local 1 // int expectedSize
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    9     0          this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            2    9     1  expectedSize  I
            3    9     2       buckets  I
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()

  java.util.Map<K, V> delegateOrNull();
    descriptor: ()Ljava/util/Map;
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 232
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.table:Ljava/lang/Object;
            instanceof java.util.Map
            ifeq 2
         1: .line 233
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.table:Ljava/lang/Object;
            checkcast java.util.Map
            areturn
         2: .line 235
      StackMap locals:
      StackMap stack:
            aconst_null
            areturn
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
    Signature: ()Ljava/util/Map<TK;TV;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.VisibleForTesting()
    RuntimeVisibleTypeAnnotations: 
      METHOD_RETURN
        org.checkerframework.checker.nullness.qual.Nullable()
    RuntimeInvisibleTypeAnnotations: 
      METHOD_RETURN
        com.google.common.annotations.VisibleForTesting()

  java.util.Map<K, V> createHashFloodingResistantDelegate(int);
    descriptor: (I)Ljava/util/Map;
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // int tableSize
         0: .line 239
            new java.util.LinkedHashMap
            dup
            iload 1 /* tableSize */
            fconst_1
            invokespecial java.util.LinkedHashMap.<init>:(IF)V
            areturn
        end local 1 // int tableSize
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0    1     1  tableSize  I
    Signature: (I)Ljava/util/Map<TK;TV;>;
    MethodParameters:
           Name  Flags
      tableSize  

  java.util.Map<K, V> convertToHashFloodingResistantImplementation();
    descriptor: ()Ljava/util/Map;
    flags: (0x0000) 
    Code:
      stack=4, locals=3, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 246
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.hashTableMask:()I
            iconst_1
            iadd
            invokevirtual com.google.common.collect.CompactHashMap.createHashFloodingResistantDelegate:(I)Ljava/util/Map;
            astore 1 /* newDelegate */
        start local 1 // java.util.Map newDelegate
         1: .line 247
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.firstEntryIndex:()I
            istore 2 /* i */
        start local 2 // int i
         2: goto 5
         3: .line 248
      StackMap locals: java.util.Map int
      StackMap stack:
            aload 1 /* newDelegate */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.keys:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.values:[Ljava/lang/Object;
            iload 2 /* i */
            aaload
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         4: .line 247
            aload 0 /* this */
            iload 2 /* i */
            invokevirtual com.google.common.collect.CompactHashMap.getSuccessor:(I)I
            istore 2 /* i */
      StackMap locals:
      StackMap stack:
         5: iload 2 /* i */
            ifge 3
        end local 2 // int i
         6: .line 250
            aload 0 /* this */
            aload 1 /* newDelegate */
            putfield com.google.common.collect.CompactHashMap.table:Ljava/lang/Object;
         7: .line 251
            aload 0 /* this */
            aconst_null
            putfield com.google.common.collect.CompactHashMap.entries:[I
         8: .line 252
            aload 0 /* this */
            aconst_null
            putfield com.google.common.collect.CompactHashMap.keys:[Ljava/lang/Object;
         9: .line 253
            aload 0 /* this */
            aconst_null
            putfield com.google.common.collect.CompactHashMap.values:[Ljava/lang/Object;
        10: .line 254
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.incrementModCount:()V
        11: .line 255
            aload 1 /* newDelegate */
            areturn
        end local 1 // java.util.Map newDelegate
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0   12     0         this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            1   12     1  newDelegate  Ljava/util/Map<TK;TV;>;
            2    6     2            i  I
    Signature: ()Ljava/util/Map<TK;TV;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.VisibleForTesting()
      com.google.errorprone.annotations.CanIgnoreReturnValue()
    RuntimeInvisibleTypeAnnotations: 
      METHOD_RETURN
        com.google.common.annotations.VisibleForTesting()

  private void setHashTableMask(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=3, args_size=2
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // int mask
         0: .line 260
            bipush 32
            iload 1 /* mask */
            invokestatic java.lang.Integer.numberOfLeadingZeros:(I)I
            isub
            istore 2 /* hashTableBits */
        start local 2 // int hashTableBits
         1: .line 261
            aload 0 /* this */
         2: .line 262
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.metadata:I
            iload 2 /* hashTableBits */
            bipush 31
            invokestatic com.google.common.collect.CompactHashing.maskCombine:(III)I
         3: .line 261
            putfield com.google.common.collect.CompactHashMap.metadata:I
         4: .line 263
            return
        end local 2 // int hashTableBits
        end local 1 // int mask
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    5     0           this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0    5     1           mask  I
            1    5     2  hashTableBits  I
    MethodParameters:
      Name  Flags
      mask  

  private int hashTableMask();
    descriptor: ()I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 267
            iconst_1
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.metadata:I
            bipush 31
            iand
            ishl
            iconst_1
            isub
            ireturn
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;

  void incrementModCount();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 271
            aload 0 /* this */
            dup
            getfield com.google.common.collect.CompactHashMap.metadata:I
            bipush 32
            iadd
            putfield com.google.common.collect.CompactHashMap.metadata:I
         1: .line 272
            return
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;

  void accessEntry(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // int index
         0: .line 280
            return
        end local 1 // int index
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0    1     1  index  I
    MethodParameters:
       Name  Flags
      index  

  public V put(K, );
    descriptor: (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=18, args_size=3
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // java.lang.Object key
        start local 2 // java.lang.Object value
         0: .line 285
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.needsAllocArrays:()Z
            ifeq 2
         1: .line 286
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.allocArrays:()I
            pop
         2: .line 288
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.delegateOrNull:()Ljava/util/Map;
            astore 3 /* delegate */
        start local 3 // java.util.Map delegate
         3: .line 289
            aload 3 /* delegate */
            ifnull 5
         4: .line 290
            aload 3 /* delegate */
            aload 1 /* key */
            aload 2 /* value */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
         5: .line 292
      StackMap locals: java.util.Map
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.entries:[I
            astore 4 /* entries */
        start local 4 // int[] entries
         6: .line 293
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.keys:[Ljava/lang/Object;
            astore 5 /* keys */
        start local 5 // java.lang.Object[] keys
         7: .line 294
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.values:[Ljava/lang/Object;
            astore 6 /* values */
        start local 6 // java.lang.Object[] values
         8: .line 296
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.size:I
            istore 7 /* newEntryIndex */
        start local 7 // int newEntryIndex
         9: .line 297
            iload 7 /* newEntryIndex */
            iconst_1
            iadd
            istore 8 /* newSize */
        start local 8 // int newSize
        10: .line 298
            aload 1 /* key */
            invokestatic com.google.common.collect.Hashing.smearedHash:(Ljava/lang/Object;)I
            istore 9 /* hash */
        start local 9 // int hash
        11: .line 299
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.hashTableMask:()I
            istore 10 /* mask */
        start local 10 // int mask
        12: .line 300
            iload 9 /* hash */
            iload 10 /* mask */
            iand
            istore 11 /* tableIndex */
        start local 11 // int tableIndex
        13: .line 301
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.table:Ljava/lang/Object;
            iload 11 /* tableIndex */
            invokestatic com.google.common.collect.CompactHashing.tableGet:(Ljava/lang/Object;I)I
            istore 12 /* next */
        start local 12 // int next
        14: .line 302
            iload 12 /* next */
            ifne 20
        15: .line 303
            iload 8 /* newSize */
            iload 10 /* mask */
            if_icmple 18
        16: .line 305
            aload 0 /* this */
            iload 10 /* mask */
            iload 10 /* mask */
            invokestatic com.google.common.collect.CompactHashing.newCapacity:(I)I
            iload 9 /* hash */
            iload 7 /* newEntryIndex */
            invokevirtual com.google.common.collect.CompactHashMap.resizeTable:(IIII)I
            istore 10 /* mask */
        17: .line 306
            goto 39
        18: .line 307
      StackMap locals: com.google.common.collect.CompactHashMap java.lang.Object java.lang.Object java.util.Map int[] java.lang.Object[] java.lang.Object[] int int int int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.table:Ljava/lang/Object;
            iload 11 /* tableIndex */
            iload 7 /* newEntryIndex */
            iconst_1
            iadd
            invokestatic com.google.common.collect.CompactHashing.tableSet:(Ljava/lang/Object;II)V
        19: .line 309
            goto 39
        20: .line 312
      StackMap locals:
      StackMap stack:
            iload 9 /* hash */
            iload 10 /* mask */
            invokestatic com.google.common.collect.CompactHashing.getHashPrefix:(II)I
            istore 15 /* hashPrefix */
        start local 15 // int hashPrefix
        21: .line 313
            iconst_0
            istore 16 /* bucketLength */
        start local 16 // int bucketLength
        22: .line 315
      StackMap locals: com.google.common.collect.CompactHashMap java.lang.Object java.lang.Object java.util.Map int[] java.lang.Object[] java.lang.Object[] int int int int int int top top int int
      StackMap stack:
            iload 12 /* next */
            iconst_1
            isub
            istore 13 /* entryIndex */
        start local 13 // int entryIndex
        23: .line 316
            aload 4 /* entries */
            iload 13 /* entryIndex */
            iaload
            istore 14 /* entry */
        start local 14 // int entry
        24: .line 317
            iload 14 /* entry */
            iload 10 /* mask */
            invokestatic com.google.common.collect.CompactHashing.getHashPrefix:(II)I
            iload 15 /* hashPrefix */
            if_icmpne 30
        25: .line 318
            aload 1 /* key */
            aload 5 /* keys */
            iload 13 /* entryIndex */
            aaload
            invokestatic com.google.common.base.Objects.equal:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 30
        26: .line 321
            aload 6 /* values */
            iload 13 /* entryIndex */
            aaload
            astore 17 /* oldValue */
        start local 17 // java.lang.Object oldValue
        27: .line 323
            aload 6 /* values */
            iload 13 /* entryIndex */
            aload 2 /* value */
            aastore
        28: .line 324
            aload 0 /* this */
            iload 13 /* entryIndex */
            invokevirtual com.google.common.collect.CompactHashMap.accessEntry:(I)V
        29: .line 325
            aload 17 /* oldValue */
            areturn
        end local 17 // java.lang.Object oldValue
        30: .line 327
      StackMap locals: com.google.common.collect.CompactHashMap java.lang.Object java.lang.Object java.util.Map int[] java.lang.Object[] java.lang.Object[] int int int int int int int int int int
      StackMap stack:
            iload 14 /* entry */
            iload 10 /* mask */
            invokestatic com.google.common.collect.CompactHashing.getNext:(II)I
            istore 12 /* next */
        31: .line 328
            iinc 16 /* bucketLength */ 1
        32: .line 329
            iload 12 /* next */
            ifne 22
        33: .line 331
            iload 16 /* bucketLength */
            bipush 9
            if_icmplt 35
        34: .line 332
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.convertToHashFloodingResistantImplementation:()Ljava/util/Map;
            aload 1 /* key */
            aload 2 /* value */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        35: .line 335
      StackMap locals:
      StackMap stack:
            iload 8 /* newSize */
            iload 10 /* mask */
            if_icmple 38
        36: .line 337
            aload 0 /* this */
            iload 10 /* mask */
            iload 10 /* mask */
            invokestatic com.google.common.collect.CompactHashing.newCapacity:(I)I
            iload 9 /* hash */
            iload 7 /* newEntryIndex */
            invokevirtual com.google.common.collect.CompactHashMap.resizeTable:(IIII)I
            istore 10 /* mask */
        37: .line 338
            goto 39
        38: .line 339
      StackMap locals:
      StackMap stack:
            aload 4 /* entries */
            iload 13 /* entryIndex */
            iload 14 /* entry */
            iload 7 /* newEntryIndex */
            iconst_1
            iadd
            iload 10 /* mask */
            invokestatic com.google.common.collect.CompactHashing.maskCombine:(III)I
            iastore
        end local 16 // int bucketLength
        end local 15 // int hashPrefix
        end local 14 // int entry
        end local 13 // int entryIndex
        39: .line 342
      StackMap locals: com.google.common.collect.CompactHashMap java.lang.Object java.lang.Object java.util.Map int[] java.lang.Object[] java.lang.Object[] int int int int int int
      StackMap stack:
            aload 0 /* this */
            iload 8 /* newSize */
            invokevirtual com.google.common.collect.CompactHashMap.resizeMeMaybe:(I)V
        40: .line 343
            aload 0 /* this */
            iload 7 /* newEntryIndex */
            aload 1 /* key */
            aload 2 /* value */
            iload 9 /* hash */
            iload 10 /* mask */
            invokevirtual com.google.common.collect.CompactHashMap.insertEntry:(ILjava/lang/Object;Ljava/lang/Object;II)V
        41: .line 344
            aload 0 /* this */
            iload 8 /* newSize */
            putfield com.google.common.collect.CompactHashMap.size:I
        42: .line 345
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.incrementModCount:()V
        43: .line 346
            aconst_null
            areturn
        end local 12 // int next
        end local 11 // int tableIndex
        end local 10 // int mask
        end local 9 // int hash
        end local 8 // int newSize
        end local 7 // int newEntryIndex
        end local 6 // java.lang.Object[] values
        end local 5 // java.lang.Object[] keys
        end local 4 // int[] entries
        end local 3 // java.util.Map delegate
        end local 2 // java.lang.Object value
        end local 1 // java.lang.Object key
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   44     0           this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0   44     1            key  TK;
            0   44     2          value  TV;
            3   44     3       delegate  Ljava/util/Map<TK;TV;>;
            6   44     4        entries  [I
            7   44     5           keys  [Ljava/lang/Object;
            8   44     6         values  [Ljava/lang/Object;
            9   44     7  newEntryIndex  I
           10   44     8        newSize  I
           11   44     9           hash  I
           12   44    10           mask  I
           13   44    11     tableIndex  I
           14   44    12           next  I
           23   39    13     entryIndex  I
           24   39    14          entry  I
           21   39    15     hashPrefix  I
           22   39    16   bucketLength  I
           27   30    17       oldValue  TV;
    Signature: (TK;TV;)TV;
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
      METHOD_RETURN
        org.checkerframework.checker.nullness.qual.Nullable()
      LOCAL_VARIABLE, {start=3, end=44, index=3 /* delegate */}
        org.checkerframework.checker.nullness.qual.Nullable()
      LOCAL_VARIABLE, {start=27, end=30, index=17 /* oldValue */}
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
       Name  Flags
      key    
      value  

  void insertEntry(int, K, V, int, );
    descriptor: (ILjava/lang/Object;Ljava/lang/Object;II)V
    flags: (0x0000) 
    Code:
      stack=5, locals=6, args_size=6
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // int entryIndex
        start local 2 // java.lang.Object key
        start local 3 // java.lang.Object value
        start local 4 // int hash
        start local 5 // int mask
         0: .line 353
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.entries:[I
            iload 1 /* entryIndex */
            iload 4 /* hash */
            iconst_0
            iload 5 /* mask */
            invokestatic com.google.common.collect.CompactHashing.maskCombine:(III)I
            iastore
         1: .line 354
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.keys:[Ljava/lang/Object;
            iload 1 /* entryIndex */
            aload 2 /* key */
            aastore
         2: .line 355
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.values:[Ljava/lang/Object;
            iload 1 /* entryIndex */
            aload 3 /* value */
            aastore
         3: .line 356
            return
        end local 5 // int mask
        end local 4 // int hash
        end local 3 // java.lang.Object value
        end local 2 // java.lang.Object key
        end local 1 // int entryIndex
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0    4     1  entryIndex  I
            0    4     2         key  TK;
            0    4     3       value  TV;
            0    4     4        hash  I
            0    4     5        mask  I
    Signature: (ITK;TV;II)V
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
            Name  Flags
      entryIndex  
      key         
      value       
      hash        
      mask        

  private void resizeMeMaybe(int);
    descriptor: (I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // int newSize
         0: .line 360
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.entries:[I
            arraylength
            istore 2 /* entriesSize */
        start local 2 // int entriesSize
         1: .line 361
            iload 1 /* newSize */
            iload 2 /* entriesSize */
            if_icmple 6
         2: .line 364
            ldc 1073741823
            iload 2 /* entriesSize */
            iconst_1
            iload 2 /* entriesSize */
            iconst_1
            iushr
            invokestatic java.lang.Math.max:(II)I
            iadd
            iconst_1
            ior
            invokestatic java.lang.Math.min:(II)I
         3: .line 363
            istore 3 /* newCapacity */
        start local 3 // int newCapacity
         4: .line 365
            iload 3 /* newCapacity */
            iload 2 /* entriesSize */
            if_icmpeq 6
         5: .line 366
            aload 0 /* this */
            iload 3 /* newCapacity */
            invokevirtual com.google.common.collect.CompactHashMap.resizeEntries:(I)V
        end local 3 // int newCapacity
         6: .line 369
      StackMap locals: int
      StackMap stack:
            return
        end local 2 // int entriesSize
        end local 1 // int newSize
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    7     0         this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0    7     1      newSize  I
            1    7     2  entriesSize  I
            4    6     3  newCapacity  I
    MethodParameters:
         Name  Flags
      newSize  

  void resizeEntries(int);
    descriptor: (I)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // int newCapacity
         0: .line 376
            aload 0 /* this */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.entries:[I
            iload 1 /* newCapacity */
            invokestatic java.util.Arrays.copyOf:([II)[I
            putfield com.google.common.collect.CompactHashMap.entries:[I
         1: .line 377
            aload 0 /* this */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.keys:[Ljava/lang/Object;
            iload 1 /* newCapacity */
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;I)[Ljava/lang/Object;
            putfield com.google.common.collect.CompactHashMap.keys:[Ljava/lang/Object;
         2: .line 378
            aload 0 /* this */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.values:[Ljava/lang/Object;
            iload 1 /* newCapacity */
            invokestatic java.util.Arrays.copyOf:([Ljava/lang/Object;I)[Ljava/lang/Object;
            putfield com.google.common.collect.CompactHashMap.values:[Ljava/lang/Object;
         3: .line 379
            return
        end local 1 // int newCapacity
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    4     0         this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0    4     1  newCapacity  I
    MethodParameters:
             Name  Flags
      newCapacity  

  private int resizeTable(int, int, int, int);
    descriptor: (IIII)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=16, args_size=5
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // int mask
        start local 2 // int newCapacity
        start local 3 // int targetHash
        start local 4 // int targetEntryIndex
         0: .line 383
            iload 2 /* newCapacity */
            invokestatic com.google.common.collect.CompactHashing.createTable:(I)Ljava/lang/Object;
            astore 5 /* newTable */
        start local 5 // java.lang.Object newTable
         1: .line 384
            iload 2 /* newCapacity */
            iconst_1
            isub
            istore 6 /* newMask */
        start local 6 // int newMask
         2: .line 386
            iload 4 /* targetEntryIndex */
            ifeq 4
         3: .line 388
            aload 5 /* newTable */
            iload 3 /* targetHash */
            iload 6 /* newMask */
            iand
            iload 4 /* targetEntryIndex */
            iconst_1
            iadd
            invokestatic com.google.common.collect.CompactHashing.tableSet:(Ljava/lang/Object;II)V
         4: .line 391
      StackMap locals: java.lang.Object int
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.table:Ljava/lang/Object;
            astore 7 /* table */
        start local 7 // java.lang.Object table
         5: .line 392
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.entries:[I
            astore 8 /* entries */
        start local 8 // int[] entries
         6: .line 395
            iconst_0
            istore 9 /* tableIndex */
        start local 9 // int tableIndex
         7: goto 20
         8: .line 396
      StackMap locals: java.lang.Object int[] int
      StackMap stack:
            aload 7 /* table */
            iload 9 /* tableIndex */
            invokestatic com.google.common.collect.CompactHashing.tableGet:(Ljava/lang/Object;I)I
            istore 10 /* next */
        start local 10 // int next
         9: .line 397
            goto 18
        10: .line 398
      StackMap locals: int
      StackMap stack:
            iload 10 /* next */
            iconst_1
            isub
            istore 11 /* entryIndex */
        start local 11 // int entryIndex
        11: .line 399
            aload 8 /* entries */
            iload 11 /* entryIndex */
            iaload
            istore 12 /* entry */
        start local 12 // int entry
        12: .line 402
            iload 12 /* entry */
            iload 1 /* mask */
            invokestatic com.google.common.collect.CompactHashing.getHashPrefix:(II)I
            iload 9 /* tableIndex */
            ior
            istore 13 /* hash */
        start local 13 // int hash
        13: .line 404
            iload 13 /* hash */
            iload 6 /* newMask */
            iand
            istore 14 /* newTableIndex */
        start local 14 // int newTableIndex
        14: .line 405
            aload 5 /* newTable */
            iload 14 /* newTableIndex */
            invokestatic com.google.common.collect.CompactHashing.tableGet:(Ljava/lang/Object;I)I
            istore 15 /* newNext */
        start local 15 // int newNext
        15: .line 406
            aload 5 /* newTable */
            iload 14 /* newTableIndex */
            iload 10 /* next */
            invokestatic com.google.common.collect.CompactHashing.tableSet:(Ljava/lang/Object;II)V
        16: .line 407
            aload 8 /* entries */
            iload 11 /* entryIndex */
            iload 13 /* hash */
            iload 15 /* newNext */
            iload 6 /* newMask */
            invokestatic com.google.common.collect.CompactHashing.maskCombine:(III)I
            iastore
        17: .line 409
            iload 12 /* entry */
            iload 1 /* mask */
            invokestatic com.google.common.collect.CompactHashing.getNext:(II)I
            istore 10 /* next */
        end local 15 // int newNext
        end local 14 // int newTableIndex
        end local 13 // int hash
        end local 12 // int entry
        end local 11 // int entryIndex
        18: .line 397
      StackMap locals:
      StackMap stack:
            iload 10 /* next */
            ifne 10
        end local 10 // int next
        19: .line 395
            iinc 9 /* tableIndex */ 1
      StackMap locals:
      StackMap stack:
        20: iload 9 /* tableIndex */
            iload 1 /* mask */
            if_icmple 8
        end local 9 // int tableIndex
        21: .line 413
            aload 0 /* this */
            aload 5 /* newTable */
            putfield com.google.common.collect.CompactHashMap.table:Ljava/lang/Object;
        22: .line 414
            aload 0 /* this */
            iload 6 /* newMask */
            invokevirtual com.google.common.collect.CompactHashMap.setHashTableMask:(I)V
        23: .line 415
            iload 6 /* newMask */
            ireturn
        end local 8 // int[] entries
        end local 7 // java.lang.Object table
        end local 6 // int newMask
        end local 5 // java.lang.Object newTable
        end local 4 // int targetEntryIndex
        end local 3 // int targetHash
        end local 2 // int newCapacity
        end local 1 // int mask
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   24     0              this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0   24     1              mask  I
            0   24     2       newCapacity  I
            0   24     3        targetHash  I
            0   24     4  targetEntryIndex  I
            1   24     5          newTable  Ljava/lang/Object;
            2   24     6           newMask  I
            5   24     7             table  Ljava/lang/Object;
            6   24     8           entries  [I
            7   21     9        tableIndex  I
            9   19    10              next  I
           11   18    11        entryIndex  I
           12   18    12             entry  I
           13   18    13              hash  I
           14   18    14     newTableIndex  I
           15   18    15           newNext  I
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()
    MethodParameters:
                  Name  Flags
      mask              
      newCapacity       
      targetHash        
      targetEntryIndex  

  private int indexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=8, args_size=2
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // java.lang.Object key
         0: .line 419
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.needsAllocArrays:()Z
            ifeq 2
         1: .line 420
            iconst_m1
            ireturn
         2: .line 422
      StackMap locals:
      StackMap stack:
            aload 1 /* key */
            invokestatic com.google.common.collect.Hashing.smearedHash:(Ljava/lang/Object;)I
            istore 2 /* hash */
        start local 2 // int hash
         3: .line 423
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.hashTableMask:()I
            istore 3 /* mask */
        start local 3 // int mask
         4: .line 424
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.table:Ljava/lang/Object;
            iload 2 /* hash */
            iload 3 /* mask */
            iand
            invokestatic com.google.common.collect.CompactHashing.tableGet:(Ljava/lang/Object;I)I
            istore 4 /* next */
        start local 4 // int next
         5: .line 425
            iload 4 /* next */
            ifne 7
         6: .line 426
            iconst_m1
            ireturn
         7: .line 428
      StackMap locals: int int int
      StackMap stack:
            iload 2 /* hash */
            iload 3 /* mask */
            invokestatic com.google.common.collect.CompactHashing.getHashPrefix:(II)I
            istore 5 /* hashPrefix */
        start local 5 // int hashPrefix
         8: .line 430
      StackMap locals: int
      StackMap stack:
            iload 4 /* next */
            iconst_1
            isub
            istore 6 /* entryIndex */
        start local 6 // int entryIndex
         9: .line 431
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.entries:[I
            iload 6 /* entryIndex */
            iaload
            istore 7 /* entry */
        start local 7 // int entry
        10: .line 432
            iload 7 /* entry */
            iload 3 /* mask */
            invokestatic com.google.common.collect.CompactHashing.getHashPrefix:(II)I
            iload 5 /* hashPrefix */
            if_icmpne 13
        11: .line 433
            aload 1 /* key */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.keys:[Ljava/lang/Object;
            iload 6 /* entryIndex */
            aaload
            invokestatic com.google.common.base.Objects.equal:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 13
        12: .line 434
            iload 6 /* entryIndex */
            ireturn
        13: .line 436
      StackMap locals: int int
      StackMap stack:
            iload 7 /* entry */
            iload 3 /* mask */
            invokestatic com.google.common.collect.CompactHashing.getNext:(II)I
            istore 4 /* next */
        end local 7 // int entry
        end local 6 // int entryIndex
        14: .line 437
            iload 4 /* next */
            ifne 8
        15: .line 438
            iconst_m1
            ireturn
        end local 5 // int hashPrefix
        end local 4 // int next
        end local 3 // int mask
        end local 2 // int hash
        end local 1 // java.lang.Object key
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   16     0        this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0   16     1         key  Ljava/lang/Object;
            3   16     2        hash  I
            4   16     3        mask  I
            5   16     4        next  I
            8   16     5  hashPrefix  I
            9   14     6  entryIndex  I
           10   14     7       entry  I
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
      Name  Flags
      key   

  public boolean containsKey(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // java.lang.Object key
         0: .line 443
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.delegateOrNull:()Ljava/util/Map;
            astore 2 /* delegate */
        start local 2 // java.util.Map delegate
         1: .line 444
            aload 2 /* delegate */
            ifnull 2
            aload 2 /* delegate */
            aload 1 /* key */
            invokeinterface java.util.Map.containsKey:(Ljava/lang/Object;)Z
            goto 4
      StackMap locals: java.util.Map
      StackMap stack:
         2: aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.google.common.collect.CompactHashMap.indexOf:(Ljava/lang/Object;)I
            iconst_m1
            if_icmpeq 3
            iconst_1
            goto 4
      StackMap locals:
      StackMap stack:
         3: iconst_0
      StackMap locals:
      StackMap stack: int
         4: ireturn
        end local 2 // java.util.Map delegate
        end local 1 // java.lang.Object key
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    5     0      this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0    5     1       key  Ljava/lang/Object;
            1    5     2  delegate  Ljava/util/Map<TK;TV;>;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
      LOCAL_VARIABLE, {start=1, end=5, index=2 /* delegate */}
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
      Name  Flags
      key   

  public V get();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // java.lang.Object key
         0: .line 450
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.delegateOrNull:()Ljava/util/Map;
            astore 2 /* delegate */
        start local 2 // java.util.Map delegate
         1: .line 451
            aload 2 /* delegate */
            ifnull 3
         2: .line 452
            aload 2 /* delegate */
            aload 1 /* key */
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
         3: .line 454
      StackMap locals: java.util.Map
      StackMap stack:
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.google.common.collect.CompactHashMap.indexOf:(Ljava/lang/Object;)I
            istore 3 /* index */
        start local 3 // int index
         4: .line 455
            iload 3 /* index */
            iconst_m1
            if_icmpne 6
         5: .line 456
            aconst_null
            areturn
         6: .line 458
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 3 /* index */
            invokevirtual com.google.common.collect.CompactHashMap.accessEntry:(I)V
         7: .line 459
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.values:[Ljava/lang/Object;
            iload 3 /* index */
            aaload
            areturn
        end local 3 // int index
        end local 2 // java.util.Map delegate
        end local 1 // java.lang.Object key
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0    8     1       key  Ljava/lang/Object;
            1    8     2  delegate  Ljava/util/Map<TK;TV;>;
            4    8     3     index  I
    Signature: (Ljava/lang/Object;)TV;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
      LOCAL_VARIABLE, {start=1, end=8, index=2 /* delegate */}
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
      Name  Flags
      key   

  public V remove();
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // java.lang.Object key
         0: .line 466
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.delegateOrNull:()Ljava/util/Map;
            astore 2 /* delegate */
        start local 2 // java.util.Map delegate
         1: .line 467
            aload 2 /* delegate */
            ifnull 3
         2: .line 468
            aload 2 /* delegate */
            aload 1 /* key */
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            areturn
         3: .line 470
      StackMap locals: java.util.Map
      StackMap stack:
            aload 0 /* this */
            aload 1 /* key */
            invokevirtual com.google.common.collect.CompactHashMap.removeHelper:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 3 /* oldValue */
        start local 3 // java.lang.Object oldValue
         4: .line 471
            aload 3 /* oldValue */
            getstatic com.google.common.collect.CompactHashMap.NOT_FOUND:Ljava/lang/Object;
            if_acmpne 5
            aconst_null
            goto 6
      StackMap locals: java.lang.Object
      StackMap stack:
         5: aload 3 /* oldValue */
      StackMap locals:
      StackMap stack: java.lang.Object
         6: areturn
        end local 3 // java.lang.Object oldValue
        end local 2 // java.util.Map delegate
        end local 1 // java.lang.Object key
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0    7     1       key  Ljava/lang/Object;
            1    7     2  delegate  Ljava/util/Map<TK;TV;>;
            4    7     3  oldValue  Ljava/lang/Object;
    Signature: (Ljava/lang/Object;)TV;
    RuntimeInvisibleAnnotations: 
      com.google.errorprone.annotations.CanIgnoreReturnValue()
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
      METHOD_RETURN
        org.checkerframework.checker.nullness.qual.Nullable()
      LOCAL_VARIABLE, {start=1, end=7, index=2 /* delegate */}
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
      Name  Flags
      key   

  private java.lang.Object removeHelper(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=7, locals=5, args_size=2
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // java.lang.Object key
         0: .line 475
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.needsAllocArrays:()Z
            ifeq 2
         1: .line 476
            getstatic com.google.common.collect.CompactHashMap.NOT_FOUND:Ljava/lang/Object;
            areturn
         2: .line 478
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.hashTableMask:()I
            istore 2 /* mask */
        start local 2 // int mask
         3: .line 481
            aload 1 /* key */
            aconst_null
            iload 2 /* mask */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.table:Ljava/lang/Object;
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.entries:[I
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.keys:[Ljava/lang/Object;
            aconst_null
         4: .line 480
            invokestatic com.google.common.collect.CompactHashing.remove:(Ljava/lang/Object;Ljava/lang/Object;ILjava/lang/Object;[I[Ljava/lang/Object;[Ljava/lang/Object;)I
         5: .line 479
            istore 3 /* index */
        start local 3 // int index
         6: .line 482
            iload 3 /* index */
            iconst_m1
            if_icmpne 8
         7: .line 483
            getstatic com.google.common.collect.CompactHashMap.NOT_FOUND:Ljava/lang/Object;
            areturn
         8: .line 486
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.values:[Ljava/lang/Object;
            iload 3 /* index */
            aaload
            astore 4 /* oldValue */
        start local 4 // java.lang.Object oldValue
         9: .line 488
            aload 0 /* this */
            iload 3 /* index */
            iload 2 /* mask */
            invokevirtual com.google.common.collect.CompactHashMap.moveLastEntry:(II)V
        10: .line 489
            aload 0 /* this */
            dup
            getfield com.google.common.collect.CompactHashMap.size:I
            iconst_1
            isub
            putfield com.google.common.collect.CompactHashMap.size:I
        11: .line 490
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.incrementModCount:()V
        12: .line 492
            aload 4 /* oldValue */
            areturn
        end local 4 // java.lang.Object oldValue
        end local 3 // int index
        end local 2 // int mask
        end local 1 // java.lang.Object key
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   13     0      this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0   13     1       key  Ljava/lang/Object;
            3   13     2      mask  I
            6   13     3     index  I
            9   13     4  oldValue  Ljava/lang/Object;
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
      METHOD_RETURN
        org.checkerframework.checker.nullness.qual.Nullable()
      LOCAL_VARIABLE, {start=9, end=13, index=4 /* oldValue */}
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
      Name  Flags
      key   

  void moveLastEntry(int, int);
    descriptor: (II)V
    flags: (0x0000) 
    Code:
      stack=5, locals=10, args_size=3
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // int dstIndex
        start local 2 // int mask
         0: .line 499
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.size:()I
            iconst_1
            isub
            istore 3 /* srcIndex */
        start local 3 // int srcIndex
         1: .line 500
            iload 1 /* dstIndex */
            iload 3 /* srcIndex */
            if_icmpge 21
         2: .line 502
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.keys:[Ljava/lang/Object;
            iload 3 /* srcIndex */
            aaload
            astore 4 /* key */
        start local 4 // java.lang.Object key
         3: .line 503
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.keys:[Ljava/lang/Object;
            iload 1 /* dstIndex */
            aload 4 /* key */
            aastore
         4: .line 504
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.values:[Ljava/lang/Object;
            iload 1 /* dstIndex */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.values:[Ljava/lang/Object;
            iload 3 /* srcIndex */
            aaload
            aastore
         5: .line 505
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.keys:[Ljava/lang/Object;
            iload 3 /* srcIndex */
            aconst_null
            aastore
         6: .line 506
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.values:[Ljava/lang/Object;
            iload 3 /* srcIndex */
            aconst_null
            aastore
         7: .line 509
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.entries:[I
            iload 1 /* dstIndex */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.entries:[I
            iload 3 /* srcIndex */
            iaload
            iastore
         8: .line 510
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.entries:[I
            iload 3 /* srcIndex */
            iconst_0
            iastore
         9: .line 513
            aload 4 /* key */
            invokestatic com.google.common.collect.Hashing.smearedHash:(Ljava/lang/Object;)I
            iload 2 /* mask */
            iand
            istore 5 /* tableIndex */
        start local 5 // int tableIndex
        10: .line 514
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.table:Ljava/lang/Object;
            iload 5 /* tableIndex */
            invokestatic com.google.common.collect.CompactHashing.tableGet:(Ljava/lang/Object;I)I
            istore 6 /* next */
        start local 6 // int next
        11: .line 515
            iload 3 /* srcIndex */
            iconst_1
            iadd
            istore 7 /* srcNext */
        start local 7 // int srcNext
        12: .line 516
            iload 6 /* next */
            iload 7 /* srcNext */
            if_icmpne 15
        13: .line 518
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.table:Ljava/lang/Object;
            iload 5 /* tableIndex */
            iload 1 /* dstIndex */
            iconst_1
            iadd
            invokestatic com.google.common.collect.CompactHashing.tableSet:(Ljava/lang/Object;II)V
        14: .line 519
            goto 24
        15: .line 524
      StackMap locals: com.google.common.collect.CompactHashMap int int int java.lang.Object int int int
      StackMap stack:
            iload 6 /* next */
            iconst_1
            isub
            istore 8 /* entryIndex */
        start local 8 // int entryIndex
        16: .line 525
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.entries:[I
            iload 8 /* entryIndex */
            iaload
            istore 9 /* entry */
        start local 9 // int entry
        17: .line 526
            iload 9 /* entry */
            iload 2 /* mask */
            invokestatic com.google.common.collect.CompactHashing.getNext:(II)I
            istore 6 /* next */
        18: .line 527
            iload 6 /* next */
            iload 7 /* srcNext */
            if_icmpne 15
        19: .line 529
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.entries:[I
            iload 8 /* entryIndex */
            iload 9 /* entry */
            iload 1 /* dstIndex */
            iconst_1
            iadd
            iload 2 /* mask */
            invokestatic com.google.common.collect.CompactHashing.maskCombine:(III)I
            iastore
        end local 9 // int entry
        end local 8 // int entryIndex
        end local 7 // int srcNext
        end local 6 // int next
        end local 5 // int tableIndex
        end local 4 // java.lang.Object key
        20: .line 531
            goto 24
        21: .line 532
      StackMap locals: com.google.common.collect.CompactHashMap int int int
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.keys:[Ljava/lang/Object;
            iload 1 /* dstIndex */
            aconst_null
            aastore
        22: .line 533
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.values:[Ljava/lang/Object;
            iload 1 /* dstIndex */
            aconst_null
            aastore
        23: .line 534
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.entries:[I
            iload 1 /* dstIndex */
            iconst_0
            iastore
        24: .line 536
      StackMap locals:
      StackMap stack:
            return
        end local 3 // int srcIndex
        end local 2 // int mask
        end local 1 // int dstIndex
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   25     0        this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0   25     1    dstIndex  I
            0   25     2        mask  I
            1   25     3    srcIndex  I
            3   20     4         key  Ljava/lang/Object;
           10   20     5  tableIndex  I
           11   20     6        next  I
           12   20     7     srcNext  I
           16   20     8  entryIndex  I
           17   20     9       entry  I
    RuntimeVisibleTypeAnnotations: 
      LOCAL_VARIABLE, {start=3, end=20, index=4 /* key */}
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
          Name  Flags
      dstIndex  
      mask      

  int firstEntryIndex();
    descriptor: ()I
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 539
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.isEmpty:()Z
            ifeq 1
            iconst_m1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;

  int getSuccessor(int);
    descriptor: (I)I
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // int entryIndex
         0: .line 543
            iload 1 /* entryIndex */
            iconst_1
            iadd
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.size:I
            if_icmpge 1
            iload 1 /* entryIndex */
            iconst_1
            iadd
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_m1
      StackMap locals:
      StackMap stack: int
         2: ireturn
        end local 1 // int entryIndex
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    3     0        this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0    3     1  entryIndex  I
    MethodParameters:
            Name  Flags
      entryIndex  

  int adjustAfterRemove(int, int);
    descriptor: (II)I
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // int indexBeforeRemove
        start local 2 // int indexRemoved
         0: .line 552
            iload 1 /* indexBeforeRemove */
            iconst_1
            isub
            ireturn
        end local 2 // int indexRemoved
        end local 1 // int indexBeforeRemove
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot               Name  Signature
            0    1     0               this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0    1     1  indexBeforeRemove  I
            0    1     2       indexRemoved  I
    MethodParameters:
                   Name  Flags
      indexBeforeRemove  
      indexRemoved       

  public void replaceAll(java.util.function.BiFunction<? super K, ? super V, ? extends V>);
    descriptor: (Ljava/util/function/BiFunction;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // java.util.function.BiFunction function
         0: .line 603
            aload 1 /* function */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 604
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.delegateOrNull:()Ljava/util/Map;
            astore 2 /* delegate */
        start local 2 // java.util.Map delegate
         2: .line 605
            aload 2 /* delegate */
            ifnull 5
         3: .line 606
            aload 2 /* delegate */
            aload 1 /* function */
            invokeinterface java.util.Map.replaceAll:(Ljava/util/function/BiFunction;)V
         4: .line 607
            goto 10
         5: .line 608
      StackMap locals: java.util.Map
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 9
         7: .line 609
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aload 1 /* function */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.keys:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface java.util.function.BiFunction.apply:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            aastore
         8: .line 608
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 3 /* i */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.size:I
            if_icmplt 7
        end local 3 // int i
        10: .line 612
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.util.Map delegate
        end local 1 // java.util.function.BiFunction function
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0   11     1  function  Ljava/util/function/BiFunction<-TK;-TV;+TV;>;
            2   11     2  delegate  Ljava/util/Map<TK;TV;>;
            6   10     3         i  I
    Signature: (Ljava/util/function/BiFunction<-TK;-TV;+TV;>;)V
    RuntimeVisibleTypeAnnotations: 
      LOCAL_VARIABLE, {start=2, end=11, index=2 /* delegate */}
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
          Name  Flags
      function  

  public java.util.Set<K> keySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 618
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.keySetView:Ljava/util/Set;
            ifnonnull 1
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.createKeySet:()Ljava/util/Set;
            dup_x1
            putfield com.google.common.collect.CompactHashMap.keySetView:Ljava/util/Set;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.keySetView:Ljava/util/Set;
      StackMap locals:
      StackMap stack: java.util.Set
         2: areturn
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
    Signature: ()Ljava/util/Set<TK;>;

  java.util.Set<K> createKeySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 622
            new com.google.common.collect.CompactHashMap$KeySetView
            dup
            aload 0 /* this */
            invokespecial com.google.common.collect.CompactHashMap$KeySetView.<init>:(Lcom/google/common/collect/CompactHashMap;)V
            areturn
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
    Signature: ()Ljava/util/Set<TK;>;

  java.util.Iterator<K> keySetIterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 696
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.delegateOrNull:()Ljava/util/Map;
            astore 1 /* delegate */
        start local 1 // java.util.Map delegate
         1: .line 697
            aload 1 /* delegate */
            ifnull 3
         2: .line 698
            aload 1 /* delegate */
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            areturn
         3: .line 700
      StackMap locals: java.util.Map
      StackMap stack:
            new com.google.common.collect.CompactHashMap$1
            dup
            aload 0 /* this */
            aload 0 /* this */
            invokespecial com.google.common.collect.CompactHashMap$1.<init>:(Lcom/google/common/collect/CompactHashMap;Lcom/google/common/collect/CompactHashMap;)V
            areturn
        end local 1 // java.util.Map delegate
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            1    4     1  delegate  Ljava/util/Map<TK;TV;>;
    Signature: ()Ljava/util/Iterator<TK;>;
    RuntimeVisibleTypeAnnotations: 
      LOCAL_VARIABLE, {start=1, end=4, index=1 /* delegate */}
        org.checkerframework.checker.nullness.qual.Nullable()

  public void forEach(java.util.function.BiConsumer<? super K, ? super V>);
    descriptor: (Ljava/util/function/BiConsumer;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=2
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // java.util.function.BiConsumer action
         0: .line 712
            aload 1 /* action */
            invokestatic com.google.common.base.Preconditions.checkNotNull:(Ljava/lang/Object;)Ljava/lang/Object;
            pop
         1: .line 713
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.delegateOrNull:()Ljava/util/Map;
            astore 2 /* delegate */
        start local 2 // java.util.Map delegate
         2: .line 714
            aload 2 /* delegate */
            ifnull 5
         3: .line 715
            aload 2 /* delegate */
            aload 1 /* action */
            invokeinterface java.util.Map.forEach:(Ljava/util/function/BiConsumer;)V
         4: .line 716
            goto 10
         5: .line 717
      StackMap locals: java.util.Map
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.firstEntryIndex:()I
            istore 3 /* i */
        start local 3 // int i
         6: goto 9
         7: .line 718
      StackMap locals: int
      StackMap stack:
            aload 1 /* action */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.keys:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokeinterface java.util.function.BiConsumer.accept:(Ljava/lang/Object;Ljava/lang/Object;)V
         8: .line 717
            aload 0 /* this */
            iload 3 /* i */
            invokevirtual com.google.common.collect.CompactHashMap.getSuccessor:(I)I
            istore 3 /* i */
      StackMap locals:
      StackMap stack:
         9: iload 3 /* i */
            ifge 7
        end local 3 // int i
        10: .line 721
      StackMap locals:
      StackMap stack:
            return
        end local 2 // java.util.Map delegate
        end local 1 // java.util.function.BiConsumer action
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   11     0      this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0   11     1    action  Ljava/util/function/BiConsumer<-TK;-TV;>;
            2   11     2  delegate  Ljava/util/Map<TK;TV;>;
            6   10     3         i  I
    Signature: (Ljava/util/function/BiConsumer<-TK;-TV;>;)V
    RuntimeVisibleTypeAnnotations: 
      LOCAL_VARIABLE, {start=2, end=11, index=2 /* delegate */}
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
        Name  Flags
      action  

  public java.util.Set<java.util.Map$Entry<K, V>> entrySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 727
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.entrySetView:Ljava/util/Set;
            ifnonnull 1
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.createEntrySet:()Ljava/util/Set;
            dup_x1
            putfield com.google.common.collect.CompactHashMap.entrySetView:Ljava/util/Set;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.entrySetView:Ljava/util/Set;
      StackMap locals:
      StackMap stack: java.util.Set
         2: areturn
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
    Signature: ()Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;

  java.util.Set<java.util.Map$Entry<K, V>> createEntrySet();
    descriptor: ()Ljava/util/Set;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 731
            new com.google.common.collect.CompactHashMap$EntrySetView
            dup
            aload 0 /* this */
            invokespecial com.google.common.collect.CompactHashMap$EntrySetView.<init>:(Lcom/google/common/collect/CompactHashMap;)V
            areturn
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
    Signature: ()Ljava/util/Set<Ljava/util/Map$Entry<TK;TV;>;>;

  java.util.Iterator<java.util.Map$Entry<K, V>> entrySetIterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 797
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.delegateOrNull:()Ljava/util/Map;
            astore 1 /* delegate */
        start local 1 // java.util.Map delegate
         1: .line 798
            aload 1 /* delegate */
            ifnull 3
         2: .line 799
            aload 1 /* delegate */
            invokeinterface java.util.Map.entrySet:()Ljava/util/Set;
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            areturn
         3: .line 801
      StackMap locals: java.util.Map
      StackMap stack:
            new com.google.common.collect.CompactHashMap$2
            dup
            aload 0 /* this */
            aload 0 /* this */
            invokespecial com.google.common.collect.CompactHashMap$2.<init>:(Lcom/google/common/collect/CompactHashMap;Lcom/google/common/collect/CompactHashMap;)V
            areturn
        end local 1 // java.util.Map delegate
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            1    4     1  delegate  Ljava/util/Map<TK;TV;>;
    Signature: ()Ljava/util/Iterator<Ljava/util/Map$Entry<TK;TV;>;>;
    RuntimeVisibleTypeAnnotations: 
      LOCAL_VARIABLE, {start=1, end=4, index=1 /* delegate */}
        org.checkerframework.checker.nullness.qual.Nullable()

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 866
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.delegateOrNull:()Ljava/util/Map;
            astore 1 /* delegate */
        start local 1 // java.util.Map delegate
         1: .line 867
            aload 1 /* delegate */
            ifnull 2
            aload 1 /* delegate */
            invokeinterface java.util.Map.size:()I
            goto 3
      StackMap locals: java.util.Map
      StackMap stack:
         2: aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.size:I
      StackMap locals:
      StackMap stack: int
         3: ireturn
        end local 1 // java.util.Map delegate
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            1    4     1  delegate  Ljava/util/Map<TK;TV;>;
    RuntimeVisibleTypeAnnotations: 
      LOCAL_VARIABLE, {start=1, end=4, index=1 /* delegate */}
        org.checkerframework.checker.nullness.qual.Nullable()

  public boolean isEmpty();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 872
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.size:()I
            ifne 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;

  public boolean containsValue(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // java.lang.Object value
         0: .line 877
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.delegateOrNull:()Ljava/util/Map;
            astore 2 /* delegate */
        start local 2 // java.util.Map delegate
         1: .line 878
            aload 2 /* delegate */
            ifnull 3
         2: .line 879
            aload 2 /* delegate */
            aload 1 /* value */
            invokeinterface java.util.Map.containsValue:(Ljava/lang/Object;)Z
            ireturn
         3: .line 881
      StackMap locals: java.util.Map
      StackMap stack:
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 8
         5: .line 882
      StackMap locals: int
      StackMap stack:
            aload 1 /* value */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.values:[Ljava/lang/Object;
            iload 3 /* i */
            aaload
            invokestatic com.google.common.base.Objects.equal:(Ljava/lang/Object;Ljava/lang/Object;)Z
            ifeq 7
         6: .line 883
            iconst_1
            ireturn
         7: .line 881
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 3 /* i */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.size:I
            if_icmplt 5
        end local 3 // int i
         9: .line 886
            iconst_0
            ireturn
        end local 2 // java.util.Map delegate
        end local 1 // java.lang.Object value
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   10     0      this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0   10     1     value  Ljava/lang/Object;
            1   10     2  delegate  Ljava/util/Map<TK;TV;>;
            4    9     3         i  I
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
      LOCAL_VARIABLE, {start=1, end=10, index=2 /* delegate */}
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
       Name  Flags
      value  

  public java.util.Collection<V> values();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 893
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.valuesView:Ljava/util/Collection;
            ifnonnull 1
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.createValues:()Ljava/util/Collection;
            dup_x1
            putfield com.google.common.collect.CompactHashMap.valuesView:Ljava/util/Collection;
            goto 2
      StackMap locals:
      StackMap stack:
         1: aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.valuesView:Ljava/util/Collection;
      StackMap locals:
      StackMap stack: java.util.Collection
         2: areturn
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
    Signature: ()Ljava/util/Collection<TV;>;

  java.util.Collection<V> createValues();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 897
            new com.google.common.collect.CompactHashMap$ValuesView
            dup
            aload 0 /* this */
            invokespecial com.google.common.collect.CompactHashMap$ValuesView.<init>:(Lcom/google/common/collect/CompactHashMap;)V
            areturn
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
    Signature: ()Ljava/util/Collection<TV;>;

  java.util.Iterator<V> valuesIterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x0000) 
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 963
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.delegateOrNull:()Ljava/util/Map;
            astore 1 /* delegate */
        start local 1 // java.util.Map delegate
         1: .line 964
            aload 1 /* delegate */
            ifnull 3
         2: .line 965
            aload 1 /* delegate */
            invokeinterface java.util.Map.values:()Ljava/util/Collection;
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            areturn
         3: .line 967
      StackMap locals: java.util.Map
      StackMap stack:
            new com.google.common.collect.CompactHashMap$3
            dup
            aload 0 /* this */
            aload 0 /* this */
            invokespecial com.google.common.collect.CompactHashMap$3.<init>:(Lcom/google/common/collect/CompactHashMap;Lcom/google/common/collect/CompactHashMap;)V
            areturn
        end local 1 // java.util.Map delegate
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    4     0      this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            1    4     1  delegate  Ljava/util/Map<TK;TV;>;
    Signature: ()Ljava/util/Iterator<TV;>;
    RuntimeVisibleTypeAnnotations: 
      LOCAL_VARIABLE, {start=1, end=4, index=1 /* delegate */}
        org.checkerframework.checker.nullness.qual.Nullable()

  public void trimToSize();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 981
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.needsAllocArrays:()Z
            ifeq 2
         1: .line 982
            return
         2: .line 984
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.delegateOrNull:()Ljava/util/Map;
            astore 1 /* delegate */
        start local 1 // java.util.Map delegate
         3: .line 985
            aload 1 /* delegate */
            ifnull 8
         4: .line 986
            aload 0 /* this */
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.size:()I
            invokevirtual com.google.common.collect.CompactHashMap.createHashFloodingResistantDelegate:(I)Ljava/util/Map;
            astore 2 /* newDelegate */
        start local 2 // java.util.Map newDelegate
         5: .line 987
            aload 2 /* newDelegate */
            aload 1 /* delegate */
            invokeinterface java.util.Map.putAll:(Ljava/util/Map;)V
         6: .line 988
            aload 0 /* this */
            aload 2 /* newDelegate */
            putfield com.google.common.collect.CompactHashMap.table:Ljava/lang/Object;
         7: .line 989
            return
        end local 2 // java.util.Map newDelegate
         8: .line 991
      StackMap locals: java.util.Map
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.size:I
            istore 2 /* size */
        start local 2 // int size
         9: .line 992
            iload 2 /* size */
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.entries:[I
            arraylength
            if_icmpge 11
        10: .line 993
            aload 0 /* this */
            iload 2 /* size */
            invokevirtual com.google.common.collect.CompactHashMap.resizeEntries:(I)V
        11: .line 995
      StackMap locals: int
      StackMap stack:
            iload 2 /* size */
            invokestatic com.google.common.collect.CompactHashing.tableSize:(I)I
            istore 3 /* minimumTableSize */
        start local 3 // int minimumTableSize
        12: .line 996
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.hashTableMask:()I
            istore 4 /* mask */
        start local 4 // int mask
        13: .line 997
            iload 3 /* minimumTableSize */
            iload 4 /* mask */
            if_icmpge 15
        14: .line 998
            aload 0 /* this */
            iload 4 /* mask */
            iload 3 /* minimumTableSize */
            iconst_0
            iconst_0
            invokevirtual com.google.common.collect.CompactHashMap.resizeTable:(IIII)I
            pop
        15: .line 1000
      StackMap locals: int int
      StackMap stack:
            return
        end local 4 // int mask
        end local 3 // int minimumTableSize
        end local 2 // int size
        end local 1 // java.util.Map delegate
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   16     0              this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            3   16     1          delegate  Ljava/util/Map<TK;TV;>;
            5    8     2       newDelegate  Ljava/util/Map<TK;TV;>;
            9   16     2              size  I
           12   16     3  minimumTableSize  I
           13   16     4              mask  I
    RuntimeVisibleTypeAnnotations: 
      LOCAL_VARIABLE, {start=3, end=16, index=1 /* delegate */}
        org.checkerframework.checker.nullness.qual.Nullable()

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // com.google.common.collect.CompactHashMap this
         0: .line 1004
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.needsAllocArrays:()Z
            ifeq 2
         1: .line 1005
            return
         2: .line 1007
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.incrementModCount:()V
         3: .line 1008
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.delegateOrNull:()Ljava/util/Map;
            astore 1 /* delegate */
        start local 1 // java.util.Map delegate
         4: .line 1009
            aload 1 /* delegate */
            ifnull 12
         5: .line 1010
            aload 0 /* this */
         6: .line 1011
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.size:()I
            iconst_3
            ldc 1073741823
            invokestatic com.google.common.primitives.Ints.constrainToRange:(III)I
         7: .line 1010
            putfield com.google.common.collect.CompactHashMap.metadata:I
         8: .line 1012
            aload 1 /* delegate */
            invokeinterface java.util.Map.clear:()V
         9: .line 1013
            aload 0 /* this */
            aconst_null
            putfield com.google.common.collect.CompactHashMap.table:Ljava/lang/Object;
        10: .line 1014
            aload 0 /* this */
            iconst_0
            putfield com.google.common.collect.CompactHashMap.size:I
        11: .line 1015
            goto 17
        12: .line 1016
      StackMap locals: java.util.Map
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.keys:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.size:I
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;IILjava/lang/Object;)V
        13: .line 1017
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.values:[Ljava/lang/Object;
            iconst_0
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.size:I
            aconst_null
            invokestatic java.util.Arrays.fill:([Ljava/lang/Object;IILjava/lang/Object;)V
        14: .line 1018
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.table:Ljava/lang/Object;
            invokestatic com.google.common.collect.CompactHashing.tableClear:(Ljava/lang/Object;)V
        15: .line 1019
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.entries:[I
            iconst_0
            aload 0 /* this */
            getfield com.google.common.collect.CompactHashMap.size:I
            iconst_0
            invokestatic java.util.Arrays.fill:([IIII)V
        16: .line 1020
            aload 0 /* this */
            iconst_0
            putfield com.google.common.collect.CompactHashMap.size:I
        17: .line 1022
      StackMap locals:
      StackMap stack:
            return
        end local 1 // java.util.Map delegate
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0   18     0      this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            4   18     1  delegate  Ljava/util/Map<TK;TV;>;
    RuntimeVisibleTypeAnnotations: 
      LOCAL_VARIABLE, {start=4, end=18, index=1 /* delegate */}
        org.checkerframework.checker.nullness.qual.Nullable()

  private void writeObject(java.io.ObjectOutputStream);
    descriptor: (Ljava/io/ObjectOutputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // java.io.ObjectOutputStream stream
         0: .line 1025
            aload 1 /* stream */
            invokevirtual java.io.ObjectOutputStream.defaultWriteObject:()V
         1: .line 1026
            aload 1 /* stream */
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.size:()I
            invokevirtual java.io.ObjectOutputStream.writeInt:(I)V
         2: .line 1027
            aload 0 /* this */
            invokevirtual com.google.common.collect.CompactHashMap.entrySetIterator:()Ljava/util/Iterator;
            astore 2 /* entryIterator */
        start local 2 // java.util.Iterator entryIterator
         3: .line 1028
            goto 7
         4: .line 1029
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 2 /* entryIterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.util.Map$Entry
            astore 3 /* e */
        start local 3 // java.util.Map$Entry e
         5: .line 1030
            aload 1 /* stream */
            aload 3 /* e */
            invokeinterface java.util.Map$Entry.getKey:()Ljava/lang/Object;
            invokevirtual java.io.ObjectOutputStream.writeObject:(Ljava/lang/Object;)V
         6: .line 1031
            aload 1 /* stream */
            aload 3 /* e */
            invokeinterface java.util.Map$Entry.getValue:()Ljava/lang/Object;
            invokevirtual java.io.ObjectOutputStream.writeObject:(Ljava/lang/Object;)V
        end local 3 // java.util.Map$Entry e
         7: .line 1028
      StackMap locals:
      StackMap stack:
            aload 2 /* entryIterator */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         8: .line 1033
            return
        end local 2 // java.util.Iterator entryIterator
        end local 1 // java.io.ObjectOutputStream stream
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    9     0           this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0    9     1         stream  Ljava/io/ObjectOutputStream;
            3    9     2  entryIterator  Ljava/util/Iterator<Ljava/util/Map$Entry<TK;TV;>;>;
            5    7     3              e  Ljava/util/Map$Entry<TK;TV;>;
    Exceptions:
      throws java.io.IOException
    MethodParameters:
        Name  Flags
      stream  

  private void readObject(java.io.ObjectInputStream);
    descriptor: (Ljava/io/ObjectInputStream;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // com.google.common.collect.CompactHashMap this
        start local 1 // java.io.ObjectInputStream stream
         0: .line 1037
            aload 1 /* stream */
            invokevirtual java.io.ObjectInputStream.defaultReadObject:()V
         1: .line 1038
            aload 1 /* stream */
            invokevirtual java.io.ObjectInputStream.readInt:()I
            istore 2 /* elementCount */
        start local 2 // int elementCount
         2: .line 1039
            iload 2 /* elementCount */
            ifge 4
         3: .line 1040
            new java.io.InvalidObjectException
            dup
            new java.lang.StringBuilder
            dup
            ldc "Invalid size: "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 2 /* elementCount */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.io.InvalidObjectException.<init>:(Ljava/lang/String;)V
            athrow
         4: .line 1042
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            iload 2 /* elementCount */
            invokevirtual com.google.common.collect.CompactHashMap.init:(I)V
         5: .line 1043
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 11
         7: .line 1044
      StackMap locals: int
      StackMap stack:
            aload 1 /* stream */
            invokevirtual java.io.ObjectInputStream.readObject:()Ljava/lang/Object;
            astore 4 /* key */
        start local 4 // java.lang.Object key
         8: .line 1045
            aload 1 /* stream */
            invokevirtual java.io.ObjectInputStream.readObject:()Ljava/lang/Object;
            astore 5 /* value */
        start local 5 // java.lang.Object value
         9: .line 1046
            aload 0 /* this */
            aload 4 /* key */
            aload 5 /* value */
            invokevirtual com.google.common.collect.CompactHashMap.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 5 // java.lang.Object value
        end local 4 // java.lang.Object key
        10: .line 1043
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        11: iload 3 /* i */
            iload 2 /* elementCount */
            if_icmplt 7
        end local 3 // int i
        12: .line 1048
            return
        end local 2 // int elementCount
        end local 1 // java.io.ObjectInputStream stream
        end local 0 // com.google.common.collect.CompactHashMap this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   13     0          this  Lcom/google/common/collect/CompactHashMap<TK;TV;>;
            0   13     1        stream  Ljava/io/ObjectInputStream;
            2   13     2  elementCount  I
            6   12     3             i  I
            8   10     4           key  TK;
            9   10     5         value  TV;
    Exceptions:
      throws java.io.IOException, java.lang.ClassNotFoundException
    MethodParameters:
        Name  Flags
      stream  
}
Signature: <K:Ljava/lang/Object;V:Ljava/lang/Object;>Ljava/util/AbstractMap<TK;TV;>;Ljava/io/Serializable;
SourceFile: "CompactHashMap.java"
NestMembers:
  com.google.common.collect.CompactHashMap$1  com.google.common.collect.CompactHashMap$2  com.google.common.collect.CompactHashMap$3  com.google.common.collect.CompactHashMap$EntrySetView  com.google.common.collect.CompactHashMap$Itr  com.google.common.collect.CompactHashMap$KeySetView  com.google.common.collect.CompactHashMap$MapEntry  com.google.common.collect.CompactHashMap$ValuesView
InnerClasses:
  com.google.common.collect.CompactHashMap$1
  com.google.common.collect.CompactHashMap$2
  com.google.common.collect.CompactHashMap$3
  EntrySetView = com.google.common.collect.CompactHashMap$EntrySetView of com.google.common.collect.CompactHashMap
  private abstract Itr = com.google.common.collect.CompactHashMap$Itr of com.google.common.collect.CompactHashMap
  KeySetView = com.google.common.collect.CompactHashMap$KeySetView of com.google.common.collect.CompactHashMap
  final MapEntry = com.google.common.collect.CompactHashMap$MapEntry of com.google.common.collect.CompactHashMap
  ValuesView = com.google.common.collect.CompactHashMap$ValuesView of com.google.common.collect.CompactHashMap
  public abstract Entry = java.util.Map$Entry of java.util.Map
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible()