final class com.google.common.collect.ImmutableRangeSet$AsSet extends com.google.common.collect.ImmutableSortedSet<C>
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.google.common.collect.ImmutableRangeSet$AsSet
  super_class: com.google.common.collect.ImmutableSortedSet
{
  private final com.google.common.collect.DiscreteDomain<C> domain;
    descriptor: Lcom/google/common/collect/DiscreteDomain;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lcom/google/common/collect/DiscreteDomain<TC;>;

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

  final com.google.common.collect.ImmutableRangeSet this$0;
    descriptor: Lcom/google/common/collect/ImmutableRangeSet;
    flags: (0x1010) ACC_FINAL, ACC_SYNTHETIC

  void <init>(com.google.common.collect.DiscreteDomain<C>);
    descriptor: (Lcom/google/common/collect/ImmutableRangeSet;Lcom/google/common/collect/DiscreteDomain;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
        start local 2 // com.google.common.collect.DiscreteDomain domain
         0: .line 540
            aload 0 /* this */
            aload 1
            putfield com.google.common.collect.ImmutableRangeSet$AsSet.this$0:Lcom/google/common/collect/ImmutableRangeSet;
         1: .line 541
            aload 0 /* this */
            invokestatic com.google.common.collect.Ordering.natural:()Lcom/google/common/collect/Ordering;
            invokespecial com.google.common.collect.ImmutableSortedSet.<init>:(Ljava/util/Comparator;)V
         2: .line 542
            aload 0 /* this */
            aload 2 /* domain */
            putfield com.google.common.collect.ImmutableRangeSet$AsSet.domain:Lcom/google/common/collect/DiscreteDomain;
         3: .line 543
            return
        end local 2 // com.google.common.collect.DiscreteDomain domain
        end local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lcom/google/common/collect/ImmutableRangeSet$AsSet;
            0    4     2  domain  Lcom/google/common/collect/DiscreteDomain<TC;>;
    Signature: (Lcom/google/common/collect/DiscreteDomain<TC;>;)V
    MethodParameters:
        Name  Flags
      this$0  final
      domain  

  public int size();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
         0: .line 550
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableRangeSet$AsSet.size:Ljava/lang/Integer;
            astore 1 /* result */
        start local 1 // java.lang.Integer result
         1: .line 551
            aload 1 /* result */
            ifnonnull 10
         2: .line 552
            lconst_0
            lstore 2 /* total */
        start local 2 // long total
         3: .line 553
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableRangeSet$AsSet.this$0:Lcom/google/common/collect/ImmutableRangeSet;
            getfield com.google.common.collect.ImmutableRangeSet.ranges:Lcom/google/common/collect/ImmutableList;
            invokevirtual com.google.common.collect.ImmutableList.iterator:()Ljava/util/Iterator;
            astore 5
            goto 8
      StackMap locals: com.google.common.collect.ImmutableRangeSet$AsSet java.lang.Integer long top java.util.Iterator
      StackMap stack:
         4: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.google.common.collect.Range
            astore 4 /* range */
        start local 4 // com.google.common.collect.Range range
         5: .line 554
            lload 2 /* total */
            aload 4 /* range */
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableRangeSet$AsSet.domain:Lcom/google/common/collect/DiscreteDomain;
            invokestatic com.google.common.collect.ContiguousSet.create:(Lcom/google/common/collect/Range;Lcom/google/common/collect/DiscreteDomain;)Lcom/google/common/collect/ContiguousSet;
            invokevirtual com.google.common.collect.ContiguousSet.size:()I
            i2l
            ladd
            lstore 2 /* total */
         6: .line 555
            lload 2 /* total */
            ldc 2147483647
            lcmp
            iflt 8
         7: .line 556
            goto 9
        end local 4 // com.google.common.collect.Range range
         8: .line 553
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         9: .line 559
      StackMap locals: com.google.common.collect.ImmutableRangeSet$AsSet java.lang.Integer long
      StackMap stack:
            aload 0 /* this */
            lload 2 /* total */
            invokestatic com.google.common.primitives.Ints.saturatedCast:(J)I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            dup_x1
            putfield com.google.common.collect.ImmutableRangeSet$AsSet.size:Ljava/lang/Integer;
            astore 1 /* result */
        end local 2 // long total
        10: .line 561
      StackMap locals:
      StackMap stack:
            aload 1 /* result */
            invokevirtual java.lang.Integer.intValue:()I
            ireturn
        end local 1 // java.lang.Integer result
        end local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lcom/google/common/collect/ImmutableRangeSet$AsSet;
            1   11     1  result  Ljava/lang/Integer;
            3   10     2   total  J
            5    8     4   range  Lcom/google/common/collect/Range<TC;>;

  public com.google.common.collect.UnmodifiableIterator<C> iterator();
    descriptor: ()Lcom/google/common/collect/UnmodifiableIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
         0: .line 566
            new com.google.common.collect.ImmutableRangeSet$AsSet$1
            dup
            aload 0 /* this */
            invokespecial com.google.common.collect.ImmutableRangeSet$AsSet$1.<init>:(Lcom/google/common/collect/ImmutableRangeSet$AsSet;)V
            areturn
        end local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/ImmutableRangeSet$AsSet;
    Signature: ()Lcom/google/common/collect/UnmodifiableIterator<TC;>;

  public com.google.common.collect.UnmodifiableIterator<C> descendingIterator();
    descriptor: ()Lcom/google/common/collect/UnmodifiableIterator;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
         0: .line 587
            new com.google.common.collect.ImmutableRangeSet$AsSet$2
            dup
            aload 0 /* this */
            invokespecial com.google.common.collect.ImmutableRangeSet$AsSet$2.<init>:(Lcom/google/common/collect/ImmutableRangeSet$AsSet;)V
            areturn
        end local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/ImmutableRangeSet$AsSet;
    Signature: ()Lcom/google/common/collect/UnmodifiableIterator<TC;>;
    RuntimeInvisibleAnnotations: 
      com.google.common.annotations.GwtIncompatible(value = "NavigableSet")

  com.google.common.collect.ImmutableSortedSet<C> subSet(com.google.common.collect.Range<C>);
    descriptor: (Lcom/google/common/collect/Range;)Lcom/google/common/collect/ImmutableSortedSet;
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
        start local 1 // com.google.common.collect.Range range
         0: .line 606
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableRangeSet$AsSet.this$0:Lcom/google/common/collect/ImmutableRangeSet;
            aload 1 /* range */
            invokevirtual com.google.common.collect.ImmutableRangeSet.subRangeSet:(Lcom/google/common/collect/Range;)Lcom/google/common/collect/ImmutableRangeSet;
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableRangeSet$AsSet.domain:Lcom/google/common/collect/DiscreteDomain;
            invokevirtual com.google.common.collect.ImmutableRangeSet.asSet:(Lcom/google/common/collect/DiscreteDomain;)Lcom/google/common/collect/ImmutableSortedSet;
            areturn
        end local 1 // com.google.common.collect.Range range
        end local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Lcom/google/common/collect/ImmutableRangeSet$AsSet;
            0    1     1  range  Lcom/google/common/collect/Range<TC;>;
    Signature: (Lcom/google/common/collect/Range<TC;>;)Lcom/google/common/collect/ImmutableSortedSet<TC;>;
    MethodParameters:
       Name  Flags
      range  

  com.google.common.collect.ImmutableSortedSet<C> headSetImpl(C, boolean);
    descriptor: (Ljava/lang/Comparable;Z)Lcom/google/common/collect/ImmutableSortedSet;
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
        start local 1 // java.lang.Comparable toElement
        start local 2 // boolean inclusive
         0: .line 611
            aload 0 /* this */
            aload 1 /* toElement */
            iload 2 /* inclusive */
            invokestatic com.google.common.collect.BoundType.forBoolean:(Z)Lcom/google/common/collect/BoundType;
            invokestatic com.google.common.collect.Range.upTo:(Ljava/lang/Comparable;Lcom/google/common/collect/BoundType;)Lcom/google/common/collect/Range;
            invokevirtual com.google.common.collect.ImmutableRangeSet$AsSet.subSet:(Lcom/google/common/collect/Range;)Lcom/google/common/collect/ImmutableSortedSet;
            areturn
        end local 2 // boolean inclusive
        end local 1 // java.lang.Comparable toElement
        end local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Lcom/google/common/collect/ImmutableRangeSet$AsSet;
            0    1     1  toElement  TC;
            0    1     2  inclusive  Z
    Signature: (TC;Z)Lcom/google/common/collect/ImmutableSortedSet<TC;>;
    MethodParameters:
           Name  Flags
      toElement  
      inclusive  

  com.google.common.collect.ImmutableSortedSet<C> subSetImpl(C, boolean, C, boolean);
    descriptor: (Ljava/lang/Comparable;ZLjava/lang/Comparable;Z)Lcom/google/common/collect/ImmutableSortedSet;
    flags: (0x0000) 
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
        start local 1 // java.lang.Comparable fromElement
        start local 2 // boolean fromInclusive
        start local 3 // java.lang.Comparable toElement
        start local 4 // boolean toInclusive
         0: .line 617
            iload 2 /* fromInclusive */
            ifne 2
            iload 4 /* toInclusive */
            ifne 2
            aload 1 /* fromElement */
            aload 3 /* toElement */
            invokestatic com.google.common.collect.Range.compareOrThrow:(Ljava/lang/Comparable;Ljava/lang/Comparable;)I
            ifne 2
         1: .line 618
            invokestatic com.google.common.collect.ImmutableSortedSet.of:()Lcom/google/common/collect/ImmutableSortedSet;
            areturn
         2: .line 620
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
         3: .line 622
            aload 1 /* fromElement */
            iload 2 /* fromInclusive */
            invokestatic com.google.common.collect.BoundType.forBoolean:(Z)Lcom/google/common/collect/BoundType;
         4: .line 623
            aload 3 /* toElement */
            iload 4 /* toInclusive */
            invokestatic com.google.common.collect.BoundType.forBoolean:(Z)Lcom/google/common/collect/BoundType;
         5: .line 621
            invokestatic com.google.common.collect.Range.range:(Ljava/lang/Comparable;Lcom/google/common/collect/BoundType;Ljava/lang/Comparable;Lcom/google/common/collect/BoundType;)Lcom/google/common/collect/Range;
         6: .line 620
            invokevirtual com.google.common.collect.ImmutableRangeSet$AsSet.subSet:(Lcom/google/common/collect/Range;)Lcom/google/common/collect/ImmutableSortedSet;
            areturn
        end local 4 // boolean toInclusive
        end local 3 // java.lang.Comparable toElement
        end local 2 // boolean fromInclusive
        end local 1 // java.lang.Comparable fromElement
        end local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    7     0           this  Lcom/google/common/collect/ImmutableRangeSet$AsSet;
            0    7     1    fromElement  TC;
            0    7     2  fromInclusive  Z
            0    7     3      toElement  TC;
            0    7     4    toInclusive  Z
    Signature: (TC;ZTC;Z)Lcom/google/common/collect/ImmutableSortedSet<TC;>;
    MethodParameters:
               Name  Flags
      fromElement    
      fromInclusive  
      toElement      
      toInclusive    

  com.google.common.collect.ImmutableSortedSet<C> tailSetImpl(C, boolean);
    descriptor: (Ljava/lang/Comparable;Z)Lcom/google/common/collect/ImmutableSortedSet;
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
        start local 1 // java.lang.Comparable fromElement
        start local 2 // boolean inclusive
         0: .line 628
            aload 0 /* this */
            aload 1 /* fromElement */
            iload 2 /* inclusive */
            invokestatic com.google.common.collect.BoundType.forBoolean:(Z)Lcom/google/common/collect/BoundType;
            invokestatic com.google.common.collect.Range.downTo:(Ljava/lang/Comparable;Lcom/google/common/collect/BoundType;)Lcom/google/common/collect/Range;
            invokevirtual com.google.common.collect.ImmutableRangeSet$AsSet.subSet:(Lcom/google/common/collect/Range;)Lcom/google/common/collect/ImmutableSortedSet;
            areturn
        end local 2 // boolean inclusive
        end local 1 // java.lang.Comparable fromElement
        end local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    1     0         this  Lcom/google/common/collect/ImmutableRangeSet$AsSet;
            0    1     1  fromElement  TC;
            0    1     2    inclusive  Z
    Signature: (TC;Z)Lcom/google/common/collect/ImmutableSortedSet<TC;>;
    MethodParameters:
             Name  Flags
      fromElement  
      inclusive    

  public boolean contains(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.ImmutableRangeSet$AsSet this
        start local 1 // java.lang.Object o
         0: .line 633
            aload 1 /* o */
            ifnonnull 2
         1: .line 634
            iconst_0
            ireturn
         2: .line 638
      StackMap locals:
      StackMap stack:
            aload 1 /* o */
            checkcast java.lang.Comparable
            astore 2 /* c */
        start local 2 // java.lang.Comparable c
         3: .line 639
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableRangeSet$AsSet.this$0:Lcom/google/common/collect/ImmutableRangeSet;
            aload 2 /* c */
            invokevirtual com.google.common.collect.ImmutableRangeSet.contains:(Ljava/lang/Comparable;)Z
         4: ireturn
        end local 2 // java.lang.Comparable c
         5: .line 640
      StackMap locals:
      StackMap stack: java.lang.ClassCastException
            pop
         6: .line 641
            iconst_0
            ireturn
        end local 1 // java.lang.Object o
        end local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    7     0  this  Lcom/google/common/collect/ImmutableRangeSet$AsSet;
            0    7     1     o  Ljava/lang/Object;
            3    5     2     c  TC;
      Exception table:
        from    to  target  type
           2     4       5  Class java.lang.ClassCastException
    RuntimeVisibleTypeAnnotations: 
      METHOD_FORMAL_PARAMETER
        org.checkerframework.checker.nullness.qual.Nullable()
    MethodParameters:
      Name  Flags
      o     

  int indexOf(java.lang.Object);
    descriptor: (Ljava/lang/Object;)I
    flags: (0x0000) 
    Code:
      stack=4, locals=7, args_size=2
        start local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
        start local 1 // java.lang.Object target
         0: .line 647
            aload 0 /* this */
            aload 1 /* target */
            invokevirtual com.google.common.collect.ImmutableRangeSet$AsSet.contains:(Ljava/lang/Object;)Z
            ifeq 10
         1: .line 649
            aload 1 /* target */
            checkcast java.lang.Comparable
            astore 2 /* c */
        start local 2 // java.lang.Comparable c
         2: .line 650
            lconst_0
            lstore 3 /* total */
        start local 3 // long total
         3: .line 651
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableRangeSet$AsSet.this$0:Lcom/google/common/collect/ImmutableRangeSet;
            getfield com.google.common.collect.ImmutableRangeSet.ranges:Lcom/google/common/collect/ImmutableList;
            invokevirtual com.google.common.collect.ImmutableList.iterator:()Ljava/util/Iterator;
            astore 6
            goto 8
      StackMap locals: com.google.common.collect.ImmutableRangeSet$AsSet java.lang.Object java.lang.Comparable long top java.util.Iterator
      StackMap stack:
         4: aload 6
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.google.common.collect.Range
            astore 5 /* range */
        start local 5 // com.google.common.collect.Range range
         5: .line 652
            aload 5 /* range */
            aload 2 /* c */
            invokevirtual com.google.common.collect.Range.contains:(Ljava/lang/Comparable;)Z
            ifeq 7
         6: .line 653
            lload 3 /* total */
            aload 5 /* range */
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableRangeSet$AsSet.domain:Lcom/google/common/collect/DiscreteDomain;
            invokestatic com.google.common.collect.ContiguousSet.create:(Lcom/google/common/collect/Range;Lcom/google/common/collect/DiscreteDomain;)Lcom/google/common/collect/ContiguousSet;
            aload 2 /* c */
            invokevirtual com.google.common.collect.ContiguousSet.indexOf:(Ljava/lang/Object;)I
            i2l
            ladd
            invokestatic com.google.common.primitives.Ints.saturatedCast:(J)I
            ireturn
         7: .line 655
      StackMap locals: com.google.common.collect.ImmutableRangeSet$AsSet java.lang.Object java.lang.Comparable long com.google.common.collect.Range java.util.Iterator
      StackMap stack:
            lload 3 /* total */
            aload 5 /* range */
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableRangeSet$AsSet.domain:Lcom/google/common/collect/DiscreteDomain;
            invokestatic com.google.common.collect.ContiguousSet.create:(Lcom/google/common/collect/Range;Lcom/google/common/collect/DiscreteDomain;)Lcom/google/common/collect/ContiguousSet;
            invokevirtual com.google.common.collect.ContiguousSet.size:()I
            i2l
            ladd
            lstore 3 /* total */
        end local 5 // com.google.common.collect.Range range
         8: .line 651
      StackMap locals: com.google.common.collect.ImmutableRangeSet$AsSet java.lang.Object java.lang.Comparable long top java.util.Iterator
      StackMap stack:
            aload 6
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 4
         9: .line 658
            new java.lang.AssertionError
            dup
            ldc "impossible"
            invokespecial java.lang.AssertionError.<init>:(Ljava/lang/Object;)V
            athrow
        end local 3 // long total
        end local 2 // java.lang.Comparable c
        10: .line 660
      StackMap locals: com.google.common.collect.ImmutableRangeSet$AsSet java.lang.Object
      StackMap stack:
            iconst_m1
            ireturn
        end local 1 // java.lang.Object target
        end local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   11     0    this  Lcom/google/common/collect/ImmutableRangeSet$AsSet;
            0   11     1  target  Ljava/lang/Object;
            2   10     2       c  TC;
            3   10     3   total  J
            5    8     5   range  Lcom/google/common/collect/Range<TC;>;
    MethodParameters:
        Name  Flags
      target  

  com.google.common.collect.ImmutableSortedSet<C> createDescendingSet();
    descriptor: ()Lcom/google/common/collect/ImmutableSortedSet;
    flags: (0x0000) 
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
         0: .line 665
            new com.google.common.collect.DescendingImmutableSortedSet
            dup
            aload 0 /* this */
            invokespecial com.google.common.collect.DescendingImmutableSortedSet.<init>:(Lcom/google/common/collect/ImmutableSortedSet;)V
            areturn
        end local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/ImmutableRangeSet$AsSet;
    Signature: ()Lcom/google/common/collect/ImmutableSortedSet<TC;>;

  boolean isPartialView();
    descriptor: ()Z
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
         0: .line 670
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableRangeSet$AsSet.this$0:Lcom/google/common/collect/ImmutableRangeSet;
            getfield com.google.common.collect.ImmutableRangeSet.ranges:Lcom/google/common/collect/ImmutableList;
            invokevirtual com.google.common.collect.ImmutableList.isPartialView:()Z
            ireturn
        end local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/ImmutableRangeSet$AsSet;

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
         0: .line 675
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableRangeSet$AsSet.this$0:Lcom/google/common/collect/ImmutableRangeSet;
            getfield com.google.common.collect.ImmutableRangeSet.ranges:Lcom/google/common/collect/ImmutableList;
            invokevirtual com.google.common.collect.ImmutableList.toString:()Ljava/lang/String;
            areturn
        end local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/ImmutableRangeSet$AsSet;

  java.lang.Object writeReplace();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0000) 
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
         0: .line 680
            new com.google.common.collect.ImmutableRangeSet$AsSetSerializedForm
            dup
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableRangeSet$AsSet.this$0:Lcom/google/common/collect/ImmutableRangeSet;
            getfield com.google.common.collect.ImmutableRangeSet.ranges:Lcom/google/common/collect/ImmutableList;
            aload 0 /* this */
            getfield com.google.common.collect.ImmutableRangeSet$AsSet.domain:Lcom/google/common/collect/DiscreteDomain;
            invokespecial com.google.common.collect.ImmutableRangeSet$AsSetSerializedForm.<init>:(Lcom/google/common/collect/ImmutableList;Lcom/google/common/collect/DiscreteDomain;)V
            areturn
        end local 0 // com.google.common.collect.ImmutableRangeSet$AsSet this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/google/common/collect/ImmutableRangeSet$AsSet;

  com.google.common.collect.ImmutableSortedSet subSetImpl(java.lang.Object, boolean, java.lang.Object, boolean);
    descriptor: (Ljava/lang/Object;ZLjava/lang/Object;Z)Lcom/google/common/collect/ImmutableSortedSet;
    flags: (0x1040) ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=5, locals=5, args_size=5
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Comparable
            iload 2
            aload 3
            checkcast java.lang.Comparable
            iload 4
            invokevirtual com.google.common.collect.ImmutableRangeSet$AsSet.subSetImpl:(Ljava/lang/Comparable;ZLjava/lang/Comparable;Z)Lcom/google/common/collect/ImmutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  com.google.common.collect.ImmutableSortedSet tailSetImpl(java.lang.Object, boolean);
    descriptor: (Ljava/lang/Object;Z)Lcom/google/common/collect/ImmutableSortedSet;
    flags: (0x1040) ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Comparable
            iload 2
            invokevirtual com.google.common.collect.ImmutableRangeSet$AsSet.tailSetImpl:(Ljava/lang/Comparable;Z)Lcom/google/common/collect/ImmutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.util.Iterator iterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.google.common.collect.ImmutableRangeSet$AsSet.iterator:()Lcom/google/common/collect/UnmodifiableIterator;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  com.google.common.collect.ImmutableSortedSet headSetImpl(java.lang.Object, boolean);
    descriptor: (Ljava/lang/Object;Z)Lcom/google/common/collect/ImmutableSortedSet;
    flags: (0x1040) ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=3, locals=3, args_size=3
         0: .line 1
            aload 0
            aload 1
            checkcast java.lang.Comparable
            iload 2
            invokevirtual com.google.common.collect.ImmutableRangeSet$AsSet.headSetImpl:(Ljava/lang/Comparable;Z)Lcom/google/common/collect/ImmutableSortedSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public java.util.Iterator descendingIterator();
    descriptor: ()Ljava/util/Iterator;
    flags: (0x1041) ACC_PUBLIC, ACC_BRIDGE, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 1
            aload 0
            invokevirtual com.google.common.collect.ImmutableRangeSet$AsSet.descendingIterator:()Lcom/google/common/collect/UnmodifiableIterator;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  static com.google.common.collect.ImmutableRangeSet access$5(com.google.common.collect.ImmutableRangeSet$AsSet);
    descriptor: (Lcom/google/common/collect/ImmutableRangeSet$AsSet;)Lcom/google/common/collect/ImmutableRangeSet;
    flags: (0x1008) ACC_STATIC, ACC_SYNTHETIC
    Code:
      stack=1, locals=1, args_size=1
         0: .line 537
            aload 0
            getfield com.google.common.collect.ImmutableRangeSet$AsSet.this$0:Lcom/google/common/collect/ImmutableRangeSet;
            areturn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
}
Signature: Lcom/google/common/collect/ImmutableSortedSet<TC;>;
SourceFile: "ImmutableRangeSet.java"
NestHost: com.google.common.collect.ImmutableRangeSet
InnerClasses:
  private final AsSet = com.google.common.collect.ImmutableRangeSet$AsSet of com.google.common.collect.ImmutableRangeSet
  com.google.common.collect.ImmutableRangeSet$AsSet$1
  com.google.common.collect.ImmutableRangeSet$AsSet$2
  private AsSetSerializedForm = com.google.common.collect.ImmutableRangeSet$AsSetSerializedForm of com.google.common.collect.ImmutableRangeSet