public final class org.apache.lucene.codecs.CompetitiveImpactAccumulator
  minor version: 0
  major version: 59
  flags: flags: (0x0031) ACC_PUBLIC, ACC_FINAL, ACC_SUPER
  this_class: org.apache.lucene.codecs.CompetitiveImpactAccumulator
  super_class: java.lang.Object
{
  private final int[] maxFreqs;
    descriptor: [I
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.TreeSet<org.apache.lucene.index.Impact> otherFreqNormPairs;
    descriptor: Ljava/util/TreeSet;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/TreeSet<Lorg/apache/lucene/index/Impact;>;

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 33
            ldc Lorg/apache/lucene/codecs/CompetitiveImpactAccumulator;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic org.apache.lucene.codecs.CompetitiveImpactAccumulator.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=1
        start local 0 // org.apache.lucene.codecs.CompetitiveImpactAccumulator this
         0: .line 45
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 46
            aload 0 /* this */
            sipush 256
            newarray 10
            putfield org.apache.lucene.codecs.CompetitiveImpactAccumulator.maxFreqs:[I
         2: .line 47
            new org.apache.lucene.codecs.CompetitiveImpactAccumulator$1
            dup
            aload 0 /* this */
            invokespecial org.apache.lucene.codecs.CompetitiveImpactAccumulator$1.<init>:(Lorg/apache/lucene/codecs/CompetitiveImpactAccumulator;)V
            astore 1 /* comparator */
        start local 1 // java.util.Comparator comparator
         3: .line 59
            aload 0 /* this */
            new java.util.TreeSet
            dup
            aload 1 /* comparator */
            invokespecial java.util.TreeSet.<init>:(Ljava/util/Comparator;)V
            putfield org.apache.lucene.codecs.CompetitiveImpactAccumulator.otherFreqNormPairs:Ljava/util/TreeSet;
         4: .line 60
            return
        end local 1 // java.util.Comparator comparator
        end local 0 // org.apache.lucene.codecs.CompetitiveImpactAccumulator this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    5     0        this  Lorg/apache/lucene/codecs/CompetitiveImpactAccumulator;
            3    5     1  comparator  Ljava/util/Comparator<Lorg/apache/lucene/index/Impact;>;

  public void clear();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.apache.lucene.codecs.CompetitiveImpactAccumulator this
         0: .line 64
            aload 0 /* this */
            getfield org.apache.lucene.codecs.CompetitiveImpactAccumulator.maxFreqs:[I
            iconst_0
            invokestatic java.util.Arrays.fill:([II)V
         1: .line 65
            aload 0 /* this */
            getfield org.apache.lucene.codecs.CompetitiveImpactAccumulator.otherFreqNormPairs:Ljava/util/TreeSet;
            invokevirtual java.util.TreeSet.clear:()V
         2: .line 66
            getstatic org.apache.lucene.codecs.CompetitiveImpactAccumulator.$assertionsDisabled:Z
            ifne 3
            aload 0 /* this */
            invokevirtual org.apache.lucene.codecs.CompetitiveImpactAccumulator.assertConsistent:()Z
            ifne 3
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         3: .line 67
      StackMap locals:
      StackMap stack:
            return
        end local 0 // org.apache.lucene.codecs.CompetitiveImpactAccumulator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/apache/lucene/codecs/CompetitiveImpactAccumulator;

  public void add(int, long);
    descriptor: (IJ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=3
        start local 0 // org.apache.lucene.codecs.CompetitiveImpactAccumulator this
        start local 1 // int freq
        start local 2 // long norm
         0: .line 72
            lload 2 /* norm */
            ldc -128
            lcmp
            iflt 4
            lload 2 /* norm */
            ldc 127
            lcmp
            ifgt 4
         1: .line 73
            lload 2 /* norm */
            l2i
            i2b
            invokestatic java.lang.Byte.toUnsignedInt:(B)I
            istore 4 /* index */
        start local 4 // int index
         2: .line 74
            aload 0 /* this */
            getfield org.apache.lucene.codecs.CompetitiveImpactAccumulator.maxFreqs:[I
            iload 4 /* index */
            aload 0 /* this */
            getfield org.apache.lucene.codecs.CompetitiveImpactAccumulator.maxFreqs:[I
            iload 4 /* index */
            iaload
            iload 1 /* freq */
            invokestatic java.lang.Math.max:(II)I
            iastore
        end local 4 // int index
         3: .line 75
            goto 5
         4: .line 76
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new org.apache.lucene.index.Impact
            dup
            iload 1 /* freq */
            lload 2 /* norm */
            invokespecial org.apache.lucene.index.Impact.<init>:(IJ)V
            aload 0 /* this */
            getfield org.apache.lucene.codecs.CompetitiveImpactAccumulator.otherFreqNormPairs:Ljava/util/TreeSet;
            invokevirtual org.apache.lucene.codecs.CompetitiveImpactAccumulator.add:(Lorg/apache/lucene/index/Impact;Ljava/util/TreeSet;)V
         5: .line 78
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.codecs.CompetitiveImpactAccumulator.$assertionsDisabled:Z
            ifne 6
            aload 0 /* this */
            invokevirtual org.apache.lucene.codecs.CompetitiveImpactAccumulator.assertConsistent:()Z
            ifne 6
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         6: .line 79
      StackMap locals:
      StackMap stack:
            return
        end local 2 // long norm
        end local 1 // int freq
        end local 0 // org.apache.lucene.codecs.CompetitiveImpactAccumulator this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/apache/lucene/codecs/CompetitiveImpactAccumulator;
            0    7     1   freq  I
            0    7     2   norm  J
            2    3     4  index  I
    MethodParameters:
      Name  Flags
      freq  
      norm  

  public void addAll(org.apache.lucene.codecs.CompetitiveImpactAccumulator);
    descriptor: (Lorg/apache/lucene/codecs/CompetitiveImpactAccumulator;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=2
        start local 0 // org.apache.lucene.codecs.CompetitiveImpactAccumulator this
        start local 1 // org.apache.lucene.codecs.CompetitiveImpactAccumulator acc
         0: .line 83
            aload 0 /* this */
            getfield org.apache.lucene.codecs.CompetitiveImpactAccumulator.maxFreqs:[I
            astore 2 /* maxFreqs */
        start local 2 // int[] maxFreqs
         1: .line 84
            aload 1 /* acc */
            getfield org.apache.lucene.codecs.CompetitiveImpactAccumulator.maxFreqs:[I
            astore 3 /* otherMaxFreqs */
        start local 3 // int[] otherMaxFreqs
         2: .line 85
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         3: goto 6
         4: .line 86
      StackMap locals: int[] int[] int
      StackMap stack:
            aload 2 /* maxFreqs */
            iload 4 /* i */
            aload 2 /* maxFreqs */
            iload 4 /* i */
            iaload
            aload 3 /* otherMaxFreqs */
            iload 4 /* i */
            iaload
            invokestatic java.lang.Math.max:(II)I
            iastore
         5: .line 85
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         6: iload 4 /* i */
            aload 2 /* maxFreqs */
            arraylength
            if_icmplt 4
        end local 4 // int i
         7: .line 89
            aload 1 /* acc */
            getfield org.apache.lucene.codecs.CompetitiveImpactAccumulator.otherFreqNormPairs:Ljava/util/TreeSet;
            invokevirtual java.util.TreeSet.iterator:()Ljava/util/Iterator;
            astore 5
            goto 10
      StackMap locals: org.apache.lucene.codecs.CompetitiveImpactAccumulator org.apache.lucene.codecs.CompetitiveImpactAccumulator int[] int[] top java.util.Iterator
      StackMap stack:
         8: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.index.Impact
            astore 4 /* entry */
        start local 4 // org.apache.lucene.index.Impact entry
         9: .line 90
            aload 0 /* this */
            aload 4 /* entry */
            aload 0 /* this */
            getfield org.apache.lucene.codecs.CompetitiveImpactAccumulator.otherFreqNormPairs:Ljava/util/TreeSet;
            invokevirtual org.apache.lucene.codecs.CompetitiveImpactAccumulator.add:(Lorg/apache/lucene/index/Impact;Ljava/util/TreeSet;)V
        end local 4 // org.apache.lucene.index.Impact entry
        10: .line 89
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 8
        11: .line 93
            getstatic org.apache.lucene.codecs.CompetitiveImpactAccumulator.$assertionsDisabled:Z
            ifne 12
            aload 0 /* this */
            invokevirtual org.apache.lucene.codecs.CompetitiveImpactAccumulator.assertConsistent:()Z
            ifne 12
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        12: .line 94
      StackMap locals: org.apache.lucene.codecs.CompetitiveImpactAccumulator org.apache.lucene.codecs.CompetitiveImpactAccumulator int[] int[]
      StackMap stack:
            return
        end local 3 // int[] otherMaxFreqs
        end local 2 // int[] maxFreqs
        end local 1 // org.apache.lucene.codecs.CompetitiveImpactAccumulator acc
        end local 0 // org.apache.lucene.codecs.CompetitiveImpactAccumulator this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   13     0           this  Lorg/apache/lucene/codecs/CompetitiveImpactAccumulator;
            0   13     1            acc  Lorg/apache/lucene/codecs/CompetitiveImpactAccumulator;
            1   13     2       maxFreqs  [I
            2   13     3  otherMaxFreqs  [I
            3    7     4              i  I
            9   10     4          entry  Lorg/apache/lucene/index/Impact;
    MethodParameters:
      Name  Flags
      acc   

  public java.util.Collection<org.apache.lucene.index.Impact> getCompetitiveFreqNormPairs();
    descriptor: ()Ljava/util/Collection;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=6, args_size=1
        start local 0 // org.apache.lucene.codecs.CompetitiveImpactAccumulator this
         0: .line 98
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            astore 1 /* impacts */
        start local 1 // java.util.List impacts
         1: .line 99
            iconst_0
            istore 2 /* maxFreqForLowerNorms */
        start local 2 // int maxFreqForLowerNorms
         2: .line 100
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: goto 9
         4: .line 101
      StackMap locals: java.util.List int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.codecs.CompetitiveImpactAccumulator.maxFreqs:[I
            iload 3 /* i */
            iaload
            istore 4 /* maxFreq */
        start local 4 // int maxFreq
         5: .line 102
            iload 4 /* maxFreq */
            iload 2 /* maxFreqForLowerNorms */
            if_icmple 8
         6: .line 103
            aload 1 /* impacts */
            new org.apache.lucene.index.Impact
            dup
            iload 4 /* maxFreq */
            iload 3 /* i */
            i2b
            i2l
            invokespecial org.apache.lucene.index.Impact.<init>:(IJ)V
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         7: .line 104
            iload 4 /* maxFreq */
            istore 2 /* maxFreqForLowerNorms */
        end local 4 // int maxFreq
         8: .line 100
      StackMap locals:
      StackMap stack:
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         9: iload 3 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.codecs.CompetitiveImpactAccumulator.maxFreqs:[I
            arraylength
            if_icmplt 4
        end local 3 // int i
        10: .line 108
            aload 0 /* this */
            getfield org.apache.lucene.codecs.CompetitiveImpactAccumulator.otherFreqNormPairs:Ljava/util/TreeSet;
            invokevirtual java.util.TreeSet.isEmpty:()Z
            ifeq 12
        11: .line 110
            aload 1 /* impacts */
            areturn
        12: .line 113
      StackMap locals:
      StackMap stack:
            new java.util.TreeSet
            dup
            aload 0 /* this */
            getfield org.apache.lucene.codecs.CompetitiveImpactAccumulator.otherFreqNormPairs:Ljava/util/TreeSet;
            invokespecial java.util.TreeSet.<init>:(Ljava/util/SortedSet;)V
            astore 3 /* freqNormPairs */
        start local 3 // java.util.TreeSet freqNormPairs
        13: .line 114
            aload 1 /* impacts */
            invokeinterface java.util.List.iterator:()Ljava/util/Iterator;
            astore 5
            goto 16
      StackMap locals: org.apache.lucene.codecs.CompetitiveImpactAccumulator java.util.List int java.util.TreeSet top java.util.Iterator
      StackMap stack:
        14: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.index.Impact
            astore 4 /* impact */
        start local 4 // org.apache.lucene.index.Impact impact
        15: .line 115
            aload 0 /* this */
            aload 4 /* impact */
            aload 3 /* freqNormPairs */
            invokevirtual org.apache.lucene.codecs.CompetitiveImpactAccumulator.add:(Lorg/apache/lucene/index/Impact;Ljava/util/TreeSet;)V
        end local 4 // org.apache.lucene.index.Impact impact
        16: .line 114
      StackMap locals:
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 14
        17: .line 117
            aload 3 /* freqNormPairs */
            invokestatic java.util.Collections.unmodifiableSet:(Ljava/util/Set;)Ljava/util/Set;
            areturn
        end local 3 // java.util.TreeSet freqNormPairs
        end local 2 // int maxFreqForLowerNorms
        end local 1 // java.util.List impacts
        end local 0 // org.apache.lucene.codecs.CompetitiveImpactAccumulator this
      LocalVariableTable:
        Start  End  Slot                  Name  Signature
            0   18     0                  this  Lorg/apache/lucene/codecs/CompetitiveImpactAccumulator;
            1   18     1               impacts  Ljava/util/List<Lorg/apache/lucene/index/Impact;>;
            2   18     2  maxFreqForLowerNorms  I
            3   10     3                     i  I
            5    8     4               maxFreq  I
           13   18     3         freqNormPairs  Ljava/util/TreeSet<Lorg/apache/lucene/index/Impact;>;
           15   16     4                impact  Lorg/apache/lucene/index/Impact;
    Signature: ()Ljava/util/Collection<Lorg/apache/lucene/index/Impact;>;

  private void add(org.apache.lucene.index.Impact, java.util.TreeSet<org.apache.lucene.index.Impact>);
    descriptor: (Lorg/apache/lucene/index/Impact;Ljava/util/TreeSet;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=3
        start local 0 // org.apache.lucene.codecs.CompetitiveImpactAccumulator this
        start local 1 // org.apache.lucene.index.Impact newEntry
        start local 2 // java.util.TreeSet freqNormPairs
         0: .line 121
            aload 2 /* freqNormPairs */
            aload 1 /* newEntry */
            invokevirtual java.util.TreeSet.ceiling:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast org.apache.lucene.index.Impact
            astore 3 /* next */
        start local 3 // org.apache.lucene.index.Impact next
         1: .line 122
            aload 3 /* next */
            ifnonnull 4
         2: .line 124
            aload 2 /* freqNormPairs */
            aload 1 /* newEntry */
            invokevirtual java.util.TreeSet.add:(Ljava/lang/Object;)Z
            pop
         3: .line 125
            goto 7
      StackMap locals: org.apache.lucene.index.Impact
      StackMap stack:
         4: aload 3 /* next */
            getfield org.apache.lucene.index.Impact.norm:J
            aload 1 /* newEntry */
            getfield org.apache.lucene.index.Impact.norm:J
            invokestatic java.lang.Long.compareUnsigned:(JJ)I
            ifgt 6
         5: .line 127
            return
         6: .line 131
      StackMap locals:
      StackMap stack:
            aload 2 /* freqNormPairs */
            aload 1 /* newEntry */
            invokevirtual java.util.TreeSet.add:(Ljava/lang/Object;)Z
            pop
         7: .line 134
      StackMap locals:
      StackMap stack:
            aload 2 /* freqNormPairs */
            aload 1 /* newEntry */
            iconst_0
            invokevirtual java.util.TreeSet.headSet:(Ljava/lang/Object;Z)Ljava/util/NavigableSet;
            invokeinterface java.util.NavigableSet.descendingIterator:()Ljava/util/Iterator;
            astore 4 /* it */
        start local 4 // java.util.Iterator it
         8: goto 12
         9: .line 135
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 4 /* it */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.index.Impact
            astore 5 /* entry */
        start local 5 // org.apache.lucene.index.Impact entry
        10: .line 136
            aload 5 /* entry */
            getfield org.apache.lucene.index.Impact.norm:J
            aload 1 /* newEntry */
            getfield org.apache.lucene.index.Impact.norm:J
            invokestatic java.lang.Long.compareUnsigned:(JJ)I
            iflt 13
        11: .line 138
            aload 4 /* it */
            invokeinterface java.util.Iterator.remove:()V
        end local 5 // org.apache.lucene.index.Impact entry
        12: .line 134
      StackMap locals:
      StackMap stack:
            aload 4 /* it */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 9
        end local 4 // java.util.Iterator it
        13: .line 144
      StackMap locals:
      StackMap stack:
            return
        end local 3 // org.apache.lucene.index.Impact next
        end local 2 // java.util.TreeSet freqNormPairs
        end local 1 // org.apache.lucene.index.Impact newEntry
        end local 0 // org.apache.lucene.codecs.CompetitiveImpactAccumulator this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   14     0           this  Lorg/apache/lucene/codecs/CompetitiveImpactAccumulator;
            0   14     1       newEntry  Lorg/apache/lucene/index/Impact;
            0   14     2  freqNormPairs  Ljava/util/TreeSet<Lorg/apache/lucene/index/Impact;>;
            1   14     3           next  Lorg/apache/lucene/index/Impact;
            8   13     4             it  Ljava/util/Iterator<Lorg/apache/lucene/index/Impact;>;
           10   12     5          entry  Lorg/apache/lucene/index/Impact;
    Signature: (Lorg/apache/lucene/index/Impact;Ljava/util/TreeSet<Lorg/apache/lucene/index/Impact;>;)V
    MethodParameters:
               Name  Flags
      newEntry       
      freqNormPairs  

  public java.lang.String toString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=1, args_size=1
        start local 0 // org.apache.lucene.codecs.CompetitiveImpactAccumulator this
         0: .line 148
            new java.util.ArrayList
            dup
            aload 0 /* this */
            invokevirtual org.apache.lucene.codecs.CompetitiveImpactAccumulator.getCompetitiveFreqNormPairs:()Ljava/util/Collection;
            invokespecial java.util.ArrayList.<init>:(Ljava/util/Collection;)V
            invokevirtual java.util.ArrayList.toString:()Ljava/lang/String;
            areturn
        end local 0 // org.apache.lucene.codecs.CompetitiveImpactAccumulator this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/codecs/CompetitiveImpactAccumulator;

  private boolean assertConsistent();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // org.apache.lucene.codecs.CompetitiveImpactAccumulator this
         0: .line 153
            aload 0 /* this */
            getfield org.apache.lucene.codecs.CompetitiveImpactAccumulator.maxFreqs:[I
            dup
            astore 4
            arraylength
            istore 3
            iconst_0
            istore 2
            goto 4
      StackMap locals: org.apache.lucene.codecs.CompetitiveImpactAccumulator top int int int[]
      StackMap stack:
         1: aload 4
            iload 2
            iaload
            istore 1 /* freq */
        start local 1 // int freq
         2: .line 154
            getstatic org.apache.lucene.codecs.CompetitiveImpactAccumulator.$assertionsDisabled:Z
            ifne 3
            iload 1 /* freq */
            ifge 3
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        end local 1 // int freq
         3: .line 153
      StackMap locals:
      StackMap stack:
            iinc 2 1
      StackMap locals:
      StackMap stack:
         4: iload 2
            iload 3
            if_icmplt 1
         5: .line 156
            iconst_0
            istore 1 /* previousFreq */
        start local 1 // int previousFreq
         6: .line 157
            lconst_0
            lstore 2 /* previousNorm */
        start local 2 // long previousNorm
         7: .line 158
            aload 0 /* this */
            getfield org.apache.lucene.codecs.CompetitiveImpactAccumulator.otherFreqNormPairs:Ljava/util/TreeSet;
            invokevirtual java.util.TreeSet.iterator:()Ljava/util/Iterator;
            astore 5
            goto 14
      StackMap locals: org.apache.lucene.codecs.CompetitiveImpactAccumulator int long top java.util.Iterator
      StackMap stack:
         8: aload 5
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast org.apache.lucene.index.Impact
            astore 4 /* impact */
        start local 4 // org.apache.lucene.index.Impact impact
         9: .line 159
            getstatic org.apache.lucene.codecs.CompetitiveImpactAccumulator.$assertionsDisabled:Z
            ifne 10
            aload 4 /* impact */
            getfield org.apache.lucene.index.Impact.norm:J
            ldc -128
            lcmp
            iflt 10
            aload 4 /* impact */
            getfield org.apache.lucene.index.Impact.norm:J
            ldc 127
            lcmp
            ifgt 10
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        10: .line 160
      StackMap locals: org.apache.lucene.codecs.CompetitiveImpactAccumulator int long org.apache.lucene.index.Impact java.util.Iterator
      StackMap stack:
            getstatic org.apache.lucene.codecs.CompetitiveImpactAccumulator.$assertionsDisabled:Z
            ifne 11
            iload 1 /* previousFreq */
            aload 4 /* impact */
            getfield org.apache.lucene.index.Impact.freq:I
            if_icmplt 11
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        11: .line 161
      StackMap locals:
      StackMap stack:
            getstatic org.apache.lucene.codecs.CompetitiveImpactAccumulator.$assertionsDisabled:Z
            ifne 12
            lload 2 /* previousNorm */
            aload 4 /* impact */
            getfield org.apache.lucene.index.Impact.norm:J
            invokestatic java.lang.Long.compareUnsigned:(JJ)I
            iflt 12
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        12: .line 162
      StackMap locals:
      StackMap stack:
            aload 4 /* impact */
            getfield org.apache.lucene.index.Impact.freq:I
            istore 1 /* previousFreq */
        13: .line 163
            aload 4 /* impact */
            getfield org.apache.lucene.index.Impact.norm:J
            lstore 2 /* previousNorm */
        end local 4 // org.apache.lucene.index.Impact impact
        14: .line 158
      StackMap locals: org.apache.lucene.codecs.CompetitiveImpactAccumulator int long top java.util.Iterator
      StackMap stack:
            aload 5
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 8
        15: .line 165
            iconst_1
            ireturn
        end local 2 // long previousNorm
        end local 1 // int previousFreq
        end local 0 // org.apache.lucene.codecs.CompetitiveImpactAccumulator this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0   16     0          this  Lorg/apache/lucene/codecs/CompetitiveImpactAccumulator;
            2    3     1          freq  I
            6   16     1  previousFreq  I
            7   16     2  previousNorm  J
            9   14     4        impact  Lorg/apache/lucene/index/Impact;
}
SourceFile: "CompetitiveImpactAccumulator.java"
NestMembers:
  org.apache.lucene.codecs.CompetitiveImpactAccumulator$1
InnerClasses:
  org.apache.lucene.codecs.CompetitiveImpactAccumulator$1