class com.google.common.util.concurrent.Striped$LargeLazyStriped<L> extends com.google.common.util.concurrent.Striped$PowerOfTwoStriped<L>
  minor version: 0
  major version: 59
  flags: flags: (0x0020) ACC_SUPER
  this_class: com.google.common.util.concurrent.Striped$LargeLazyStriped
  super_class: com.google.common.util.concurrent.Striped$PowerOfTwoStriped
{
  final java.util.concurrent.ConcurrentMap<java.lang.Integer, L> locks;
    descriptor: Ljava/util/concurrent/ConcurrentMap;
    flags: (0x0010) ACC_FINAL
    Signature: Ljava/util/concurrent/ConcurrentMap<Ljava/lang/Integer;TL;>;

  final com.google.common.base.Supplier<L> supplier;
    descriptor: Lcom/google/common/base/Supplier;
    flags: (0x0010) ACC_FINAL
    Signature: Lcom/google/common/base/Supplier<TL;>;

  final int size;
    descriptor: I
    flags: (0x0010) ACC_FINAL

  void <init>(int, com.google.common.base.Supplier<L>);
    descriptor: (ILcom/google/common/base/Supplier;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.util.concurrent.Striped$LargeLazyStriped this
        start local 1 // int stripes
        start local 2 // com.google.common.base.Supplier supplier
         0: .line 513
            aload 0 /* this */
            iload 1 /* stripes */
            invokespecial com.google.common.util.concurrent.Striped$PowerOfTwoStriped.<init>:(I)V
         1: .line 514
            aload 0 /* this */
            aload 0 /* this */
            getfield com.google.common.util.concurrent.Striped$LargeLazyStriped.mask:I
            iconst_m1
            if_icmpne 2
            ldc 2147483647
            goto 3
      StackMap locals: com.google.common.util.concurrent.Striped$LargeLazyStriped int com.google.common.base.Supplier
      StackMap stack: com.google.common.util.concurrent.Striped$LargeLazyStriped
         2: aload 0 /* this */
            getfield com.google.common.util.concurrent.Striped$LargeLazyStriped.mask:I
            iconst_1
            iadd
      StackMap locals: com.google.common.util.concurrent.Striped$LargeLazyStriped int com.google.common.base.Supplier
      StackMap stack: com.google.common.util.concurrent.Striped$LargeLazyStriped int
         3: putfield com.google.common.util.concurrent.Striped$LargeLazyStriped.size:I
         4: .line 515
            aload 0 /* this */
            aload 2 /* supplier */
            putfield com.google.common.util.concurrent.Striped$LargeLazyStriped.supplier:Lcom/google/common/base/Supplier;
         5: .line 516
            aload 0 /* this */
            new com.google.common.collect.MapMaker
            dup
            invokespecial com.google.common.collect.MapMaker.<init>:()V
            invokevirtual com.google.common.collect.MapMaker.weakValues:()Lcom/google/common/collect/MapMaker;
            invokevirtual com.google.common.collect.MapMaker.makeMap:()Ljava/util/concurrent/ConcurrentMap;
            putfield com.google.common.util.concurrent.Striped$LargeLazyStriped.locks:Ljava/util/concurrent/ConcurrentMap;
         6: .line 517
            return
        end local 2 // com.google.common.base.Supplier supplier
        end local 1 // int stripes
        end local 0 // com.google.common.util.concurrent.Striped$LargeLazyStriped this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    7     0      this  Lcom/google/common/util/concurrent/Striped$LargeLazyStriped<TL;>;
            0    7     1   stripes  I
            0    7     2  supplier  Lcom/google/common/base/Supplier<TL;>;
    Signature: (ILcom/google/common/base/Supplier<TL;>;)V
    MethodParameters:
          Name  Flags
      stripes   
      supplier  

  public L getAt();
    descriptor: (I)Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.google.common.util.concurrent.Striped$LargeLazyStriped this
        start local 1 // int index
         0: .line 521
            aload 0 /* this */
            getfield com.google.common.util.concurrent.Striped$LargeLazyStriped.size:I
            ldc 2147483647
            if_icmpeq 2
         1: .line 522
            iload 1 /* index */
            aload 0 /* this */
            invokevirtual com.google.common.util.concurrent.Striped$LargeLazyStriped.size:()I
            invokestatic com.google.common.base.Preconditions.checkElementIndex:(II)I
            pop
         2: .line 524
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.util.concurrent.Striped$LargeLazyStriped.locks:Ljava/util/concurrent/ConcurrentMap;
            iload 1 /* index */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.concurrent.ConcurrentMap.get:(Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* existing */
        start local 2 // java.lang.Object existing
         3: .line 525
            aload 2 /* existing */
            ifnull 5
         4: .line 526
            aload 2 /* existing */
            areturn
         5: .line 528
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 0 /* this */
            getfield com.google.common.util.concurrent.Striped$LargeLazyStriped.supplier:Lcom/google/common/base/Supplier;
            invokeinterface com.google.common.base.Supplier.get:()Ljava/lang/Object;
            astore 3 /* created */
        start local 3 // java.lang.Object created
         6: .line 529
            aload 0 /* this */
            getfield com.google.common.util.concurrent.Striped$LargeLazyStriped.locks:Ljava/util/concurrent/ConcurrentMap;
            iload 1 /* index */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 3 /* created */
            invokeinterface java.util.concurrent.ConcurrentMap.putIfAbsent:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            astore 2 /* existing */
         7: .line 530
            aload 2 /* existing */
            aload 3 /* created */
            invokestatic com.google.common.base.MoreObjects.firstNonNull:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            areturn
        end local 3 // java.lang.Object created
        end local 2 // java.lang.Object existing
        end local 1 // int index
        end local 0 // com.google.common.util.concurrent.Striped$LargeLazyStriped this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Lcom/google/common/util/concurrent/Striped$LargeLazyStriped<TL;>;
            0    8     1     index  I
            3    8     2  existing  TL;
            6    8     3   created  TL;
    Signature: (I)TL;
    MethodParameters:
       Name  Flags
      index  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.util.concurrent.Striped$LargeLazyStriped this
         0: .line 535
            aload 0 /* this */
            getfield com.google.common.util.concurrent.Striped$LargeLazyStriped.size:I
            ireturn
        end local 0 // com.google.common.util.concurrent.Striped$LargeLazyStriped this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/util/concurrent/Striped$LargeLazyStriped<TL;>;
}
Signature: <L:Ljava/lang/Object;>Lcom/google/common/util/concurrent/Striped$PowerOfTwoStriped<TL;>;
SourceFile: "Striped.java"
NestHost: com.google.common.util.concurrent.Striped
InnerClasses:
  LargeLazyStriped = com.google.common.util.concurrent.Striped$LargeLazyStriped of com.google.common.util.concurrent.Striped
  private abstract PowerOfTwoStriped = com.google.common.util.concurrent.Striped$PowerOfTwoStriped of com.google.common.util.concurrent.Striped
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.VisibleForTesting()