public class org.apache.lucene.util.automaton.LevenshteinAutomata
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.apache.lucene.util.automaton.LevenshteinAutomata
  super_class: java.lang.Object
{
  public static final int MAXIMUM_SUPPORTED_DISTANCE;
    descriptor: I
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  final int[] word;
    descriptor: [I
    flags: (0x0010) ACC_FINAL

  final int[] alphabet;
    descriptor: [I
    flags: (0x0010) ACC_FINAL

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

  final int[] rangeLower;
    descriptor: [I
    flags: (0x0010) ACC_FINAL

  final int[] rangeUpper;
    descriptor: [I
    flags: (0x0010) ACC_FINAL

  int numRanges;
    descriptor: I
    flags: (0x0000) 

  org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription[] descriptions;
    descriptor: [Lorg/apache/lucene/util/automaton/LevenshteinAutomata$ParametricDescription;
    flags: (0x0000) 

  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/util/automaton/LevenshteinAutomata;
            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.util.automaton.LevenshteinAutomata.$assertionsDisabled:Z
         3: .line 36
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=3, args_size=3
        start local 0 // org.apache.lucene.util.automaton.LevenshteinAutomata this
        start local 1 // java.lang.String input
        start local 2 // boolean withTranspositions
         0: .line 56
            aload 0 /* this */
            aload 1 /* input */
            invokestatic org.apache.lucene.util.automaton.LevenshteinAutomata.codePoints:(Ljava/lang/String;)[I
            ldc 1114111
            iload 2 /* withTranspositions */
            invokespecial org.apache.lucene.util.automaton.LevenshteinAutomata.<init>:([IIZ)V
         1: .line 57
            return
        end local 2 // boolean withTranspositions
        end local 1 // java.lang.String input
        end local 0 // org.apache.lucene.util.automaton.LevenshteinAutomata this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0    2     0                this  Lorg/apache/lucene/util/automaton/LevenshteinAutomata;
            0    2     1               input  Ljava/lang/String;
            0    2     2  withTranspositions  Z
    MethodParameters:
                    Name  Flags
      input               
      withTranspositions  

  public void <init>(int[], int, boolean);
    descriptor: ([IIZ)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=9, args_size=4
        start local 0 // org.apache.lucene.util.automaton.LevenshteinAutomata this
        start local 1 // int[] word
        start local 2 // int alphaMax
        start local 3 // boolean withTranspositions
         0: .line 63
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 47
            aload 0 /* this */
            iconst_0
            putfield org.apache.lucene.util.automaton.LevenshteinAutomata.numRanges:I
         2: .line 64
            aload 0 /* this */
            aload 1 /* word */
            putfield org.apache.lucene.util.automaton.LevenshteinAutomata.word:[I
         3: .line 65
            aload 0 /* this */
            iload 2 /* alphaMax */
            putfield org.apache.lucene.util.automaton.LevenshteinAutomata.alphaMax:I
         4: .line 68
            new java.util.TreeSet
            dup
            invokespecial java.util.TreeSet.<init>:()V
            astore 4 /* set */
        start local 4 // java.util.SortedSet set
         5: .line 69
            iconst_0
            istore 5 /* i */
        start local 5 // int i
         6: goto 12
         7: .line 70
      StackMap locals: org.apache.lucene.util.automaton.LevenshteinAutomata int[] int int java.util.SortedSet int
      StackMap stack:
            aload 1 /* word */
            iload 5 /* i */
            iaload
            istore 6 /* v */
        start local 6 // int v
         8: .line 71
            iload 6 /* v */
            iload 2 /* alphaMax */
            if_icmple 10
         9: .line 72
            new java.lang.IllegalArgumentException
            dup
            new java.lang.StringBuilder
            dup
            ldc "alphaMax exceeded by symbol "
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            iload 6 /* v */
            invokevirtual java.lang.StringBuilder.append:(I)Ljava/lang/StringBuilder;
            ldc " in word"
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokespecial java.lang.IllegalArgumentException.<init>:(Ljava/lang/String;)V
            athrow
        10: .line 74
      StackMap locals: int
      StackMap stack:
            aload 4 /* set */
            iload 6 /* v */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.SortedSet.add:(Ljava/lang/Object;)Z
            pop
        end local 6 // int v
        11: .line 69
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
        12: iload 5 /* i */
            aload 1 /* word */
            arraylength
            if_icmplt 7
        end local 5 // int i
        13: .line 76
            aload 0 /* this */
            aload 4 /* set */
            invokeinterface java.util.SortedSet.size:()I
            newarray 10
            putfield org.apache.lucene.util.automaton.LevenshteinAutomata.alphabet:[I
        14: .line 77
            aload 4 /* set */
            invokeinterface java.util.SortedSet.iterator:()Ljava/util/Iterator;
            astore 5 /* iterator */
        start local 5 // java.util.Iterator iterator
        15: .line 78
            iconst_0
            istore 6 /* i */
        start local 6 // int i
        16: goto 19
        17: .line 79
      StackMap locals: org.apache.lucene.util.automaton.LevenshteinAutomata int[] int int java.util.SortedSet java.util.Iterator int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.alphabet:[I
            iload 6 /* i */
            aload 5 /* iterator */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast java.lang.Integer
            invokevirtual java.lang.Integer.intValue:()I
            iastore
        18: .line 78
            iinc 6 /* i */ 1
      StackMap locals:
      StackMap stack:
        19: iload 6 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.alphabet:[I
            arraylength
            if_icmplt 17
        end local 6 // int i
        20: .line 81
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.alphabet:[I
            arraylength
            iconst_2
            iadd
            newarray 10
            putfield org.apache.lucene.util.automaton.LevenshteinAutomata.rangeLower:[I
        21: .line 82
            aload 0 /* this */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.alphabet:[I
            arraylength
            iconst_2
            iadd
            newarray 10
            putfield org.apache.lucene.util.automaton.LevenshteinAutomata.rangeUpper:[I
        22: .line 85
            iconst_0
            istore 6 /* lower */
        start local 6 // int lower
        23: .line 86
            iconst_0
            istore 7 /* i */
        start local 7 // int i
        24: goto 32
        25: .line 87
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.alphabet:[I
            iload 7 /* i */
            iaload
            istore 8 /* higher */
        start local 8 // int higher
        26: .line 88
            iload 8 /* higher */
            iload 6 /* lower */
            if_icmple 30
        27: .line 89
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.rangeLower:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.numRanges:I
            iload 6 /* lower */
            iastore
        28: .line 90
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.rangeUpper:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.numRanges:I
            iload 8 /* higher */
            iconst_1
            isub
            iastore
        29: .line 91
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.numRanges:I
            iconst_1
            iadd
            putfield org.apache.lucene.util.automaton.LevenshteinAutomata.numRanges:I
        30: .line 93
      StackMap locals: int
      StackMap stack:
            iload 8 /* higher */
            iconst_1
            iadd
            istore 6 /* lower */
        end local 8 // int higher
        31: .line 86
            iinc 7 /* i */ 1
      StackMap locals:
      StackMap stack:
        32: iload 7 /* i */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.alphabet:[I
            arraylength
            if_icmplt 25
        end local 7 // int i
        33: .line 96
            iload 6 /* lower */
            iload 2 /* alphaMax */
            if_icmpgt 37
        34: .line 97
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.rangeLower:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.numRanges:I
            iload 6 /* lower */
            iastore
        35: .line 98
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.rangeUpper:[I
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.numRanges:I
            iload 2 /* alphaMax */
            iastore
        36: .line 99
            aload 0 /* this */
            dup
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.numRanges:I
            iconst_1
            iadd
            putfield org.apache.lucene.util.automaton.LevenshteinAutomata.numRanges:I
        37: .line 102
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            iconst_3
            anewarray org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription
            dup
            iconst_1
        38: .line 104
            iload 3 /* withTranspositions */
            ifeq 39
            new org.apache.lucene.util.automaton.Lev1TParametricDescription
            dup
            aload 1 /* word */
            arraylength
            invokespecial org.apache.lucene.util.automaton.Lev1TParametricDescription.<init>:(I)V
            goto 40
      StackMap locals: org.apache.lucene.util.automaton.LevenshteinAutomata int[] int int java.util.SortedSet java.util.Iterator int
      StackMap stack: org.apache.lucene.util.automaton.LevenshteinAutomata org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription[] org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription[] int
        39: new org.apache.lucene.util.automaton.Lev1ParametricDescription
            dup
            aload 1 /* word */
            arraylength
            invokespecial org.apache.lucene.util.automaton.Lev1ParametricDescription.<init>:(I)V
      StackMap locals: org.apache.lucene.util.automaton.LevenshteinAutomata int[] int int java.util.SortedSet java.util.Iterator int
      StackMap stack: org.apache.lucene.util.automaton.LevenshteinAutomata org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription[] org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription[] int org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription
        40: aastore
            dup
            iconst_2
        41: .line 105
            iload 3 /* withTranspositions */
            ifeq 42
            new org.apache.lucene.util.automaton.Lev2TParametricDescription
            dup
            aload 1 /* word */
            arraylength
            invokespecial org.apache.lucene.util.automaton.Lev2TParametricDescription.<init>:(I)V
            goto 43
      StackMap locals: org.apache.lucene.util.automaton.LevenshteinAutomata int[] int int java.util.SortedSet java.util.Iterator int
      StackMap stack: org.apache.lucene.util.automaton.LevenshteinAutomata org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription[] org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription[] int
        42: new org.apache.lucene.util.automaton.Lev2ParametricDescription
            dup
            aload 1 /* word */
            arraylength
            invokespecial org.apache.lucene.util.automaton.Lev2ParametricDescription.<init>:(I)V
      StackMap locals: org.apache.lucene.util.automaton.LevenshteinAutomata int[] int int java.util.SortedSet java.util.Iterator int
      StackMap stack: org.apache.lucene.util.automaton.LevenshteinAutomata org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription[] org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription[] int org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription
        43: aastore
        44: .line 102
            putfield org.apache.lucene.util.automaton.LevenshteinAutomata.descriptions:[Lorg/apache/lucene/util/automaton/LevenshteinAutomata$ParametricDescription;
        45: .line 107
            return
        end local 6 // int lower
        end local 5 // java.util.Iterator iterator
        end local 4 // java.util.SortedSet set
        end local 3 // boolean withTranspositions
        end local 2 // int alphaMax
        end local 1 // int[] word
        end local 0 // org.apache.lucene.util.automaton.LevenshteinAutomata this
      LocalVariableTable:
        Start  End  Slot                Name  Signature
            0   46     0                this  Lorg/apache/lucene/util/automaton/LevenshteinAutomata;
            0   46     1                word  [I
            0   46     2            alphaMax  I
            0   46     3  withTranspositions  Z
            5   46     4                 set  Ljava/util/SortedSet<Ljava/lang/Integer;>;
            6   13     5                   i  I
            8   11     6                   v  I
           15   46     5            iterator  Ljava/util/Iterator<Ljava/lang/Integer;>;
           16   20     6                   i  I
           23   46     6               lower  I
           24   33     7                   i  I
           26   31     8              higher  I
    MethodParameters:
                    Name  Flags
      word                
      alphaMax            
      withTranspositions  

  private static int[] codePoints(java.lang.String);
    descriptor: (Ljava/lang/String;)[I
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=4, locals=6, args_size=1
        start local 0 // java.lang.String input
         0: .line 110
            aload 0 /* input */
            iconst_0
            aload 0 /* input */
            invokevirtual java.lang.String.length:()I
            invokestatic java.lang.Character.codePointCount:(Ljava/lang/CharSequence;II)I
            istore 1 /* length */
        start local 1 // int length
         1: .line 111
            iload 1 /* length */
            newarray 10
            astore 2 /* word */
        start local 2 // int[] word
         2: .line 112
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         3: iconst_0
            istore 4 /* j */
        start local 4 // int j
         4: iconst_0
            istore 5 /* cp */
        start local 5 // int cp
         5: goto 8
         6: .line 113
      StackMap locals: java.lang.String int int[] int int int
      StackMap stack:
            aload 2 /* word */
            iload 4 /* j */
            iinc 4 /* j */ 1
            aload 0 /* input */
            iload 3 /* i */
            invokevirtual java.lang.String.codePointAt:(I)I
            dup
            istore 5 /* cp */
            iastore
         7: .line 112
            iload 3 /* i */
            iload 5 /* cp */
            invokestatic java.lang.Character.charCount:(I)I
            iadd
            istore 3 /* i */
      StackMap locals:
      StackMap stack:
         8: iload 3 /* i */
            aload 0 /* input */
            invokevirtual java.lang.String.length:()I
            if_icmplt 6
        end local 5 // int cp
        end local 4 // int j
        end local 3 // int i
         9: .line 115
            aload 2 /* word */
            areturn
        end local 2 // int[] word
        end local 1 // int length
        end local 0 // java.lang.String input
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   10     0   input  Ljava/lang/String;
            1   10     1  length  I
            2   10     2    word  [I
            3    9     3       i  I
            4    9     4       j  I
            5    9     5      cp  I
    MethodParameters:
       Name  Flags
      input  

  public org.apache.lucene.util.automaton.Automaton toAutomaton(int);
    descriptor: (I)Lorg/apache/lucene/util/automaton/Automaton;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.apache.lucene.util.automaton.LevenshteinAutomata this
        start local 1 // int n
         0: .line 129
            aload 0 /* this */
            iload 1 /* n */
            ldc ""
            invokevirtual org.apache.lucene.util.automaton.LevenshteinAutomata.toAutomaton:(ILjava/lang/String;)Lorg/apache/lucene/util/automaton/Automaton;
            areturn
        end local 1 // int n
        end local 0 // org.apache.lucene.util.automaton.LevenshteinAutomata this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/lucene/util/automaton/LevenshteinAutomata;
            0    1     1     n  I
    MethodParameters:
      Name  Flags
      n     

  public org.apache.lucene.util.automaton.Automaton toAutomaton(int, java.lang.String);
    descriptor: (ILjava/lang/String;)Lorg/apache/lucene/util/automaton/Automaton;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=18, args_size=3
        start local 0 // org.apache.lucene.util.automaton.LevenshteinAutomata this
        start local 1 // int n
        start local 2 // java.lang.String prefix
         0: .line 144
            getstatic org.apache.lucene.util.automaton.LevenshteinAutomata.$assertionsDisabled:Z
            ifne 1
            aload 2 /* prefix */
            ifnonnull 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 145
      StackMap locals:
      StackMap stack:
            iload 1 /* n */
            ifne 3
         2: .line 146
            new java.lang.StringBuilder
            dup
            aload 2 /* prefix */
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.word:[I
            iconst_0
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.word:[I
            arraylength
            invokestatic org.apache.lucene.util.UnicodeUtil.newString:([III)Ljava/lang/String;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokestatic org.apache.lucene.util.automaton.Automata.makeString:(Ljava/lang/String;)Lorg/apache/lucene/util/automaton/Automaton;
            areturn
         3: .line 149
      StackMap locals:
      StackMap stack:
            iload 1 /* n */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.descriptions:[Lorg/apache/lucene/util/automaton/LevenshteinAutomata$ParametricDescription;
            arraylength
            if_icmplt 5
         4: .line 150
            aconst_null
            areturn
         5: .line 152
      StackMap locals:
      StackMap stack:
            iconst_2
            iload 1 /* n */
            imul
            iconst_1
            iadd
            istore 3 /* range */
        start local 3 // int range
         6: .line 153
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.descriptions:[Lorg/apache/lucene/util/automaton/LevenshteinAutomata$ParametricDescription;
            iload 1 /* n */
            aaload
            astore 4 /* description */
        start local 4 // org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription description
         7: .line 155
            aload 4 /* description */
            invokevirtual org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription.size:()I
            istore 5 /* numStates */
        start local 5 // int numStates
         8: .line 156
            iload 5 /* numStates */
            iconst_1
            iconst_2
            iload 1 /* n */
            imul
            iadd
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.alphabet:[I
            arraylength
            invokestatic java.lang.Math.min:(II)I
            imul
            istore 6 /* numTransitions */
        start local 6 // int numTransitions
         9: .line 157
            aload 2 /* prefix */
            ifnull 10
            aload 2 /* prefix */
            iconst_0
            aload 2 /* prefix */
            invokevirtual java.lang.String.length:()I
            invokevirtual java.lang.String.codePointCount:(II)I
            goto 11
      StackMap locals: org.apache.lucene.util.automaton.LevenshteinAutomata int java.lang.String int org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription int int
      StackMap stack:
        10: iconst_0
      StackMap locals:
      StackMap stack: int
        11: istore 7 /* prefixStates */
        start local 7 // int prefixStates
        12: .line 159
            new org.apache.lucene.util.automaton.Automaton
            dup
            iload 5 /* numStates */
            iload 7 /* prefixStates */
            iadd
            iload 6 /* numTransitions */
            invokespecial org.apache.lucene.util.automaton.Automaton.<init>:(II)V
            astore 8 /* a */
        start local 8 // org.apache.lucene.util.automaton.Automaton a
        13: .line 161
            aload 2 /* prefix */
            ifnull 25
        14: .line 163
            aload 8 /* a */
            invokevirtual org.apache.lucene.util.automaton.Automaton.createState:()I
            istore 9 /* lastState */
        start local 9 // int lastState
        15: .line 164
            iconst_0
            istore 10 /* i */
        start local 10 // int i
        16: iconst_0
            istore 11 /* cp */
        start local 11 // int cp
        17: goto 23
        18: .line 165
      StackMap locals: org.apache.lucene.util.automaton.LevenshteinAutomata int java.lang.String int org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription int int int org.apache.lucene.util.automaton.Automaton int int int
      StackMap stack:
            aload 8 /* a */
            invokevirtual org.apache.lucene.util.automaton.Automaton.createState:()I
            istore 12 /* state */
        start local 12 // int state
        19: .line 166
            aload 2 /* prefix */
            iload 10 /* i */
            invokevirtual java.lang.String.codePointAt:(I)I
            istore 11 /* cp */
        20: .line 167
            aload 8 /* a */
            iload 9 /* lastState */
            iload 12 /* state */
            iload 11 /* cp */
            iload 11 /* cp */
            invokevirtual org.apache.lucene.util.automaton.Automaton.addTransition:(IIII)V
        21: .line 168
            iload 12 /* state */
            istore 9 /* lastState */
        end local 12 // int state
        22: .line 164
            iload 10 /* i */
            iload 11 /* cp */
            invokestatic java.lang.Character.charCount:(I)I
            iadd
            istore 10 /* i */
      StackMap locals:
      StackMap stack:
        23: iload 10 /* i */
            aload 2 /* prefix */
            invokevirtual java.lang.String.length:()I
            if_icmplt 18
        end local 11 // int cp
        end local 10 // int i
        24: .line 170
            goto 26
        end local 9 // int lastState
        25: .line 171
      StackMap locals:
      StackMap stack:
            aload 8 /* a */
            invokevirtual org.apache.lucene.util.automaton.Automaton.createState:()I
            istore 9 /* lastState */
        start local 9 // int lastState
        26: .line 174
      StackMap locals: int
      StackMap stack:
            iload 9 /* lastState */
            istore 10 /* stateOffset */
        start local 10 // int stateOffset
        27: .line 175
            aload 8 /* a */
            iload 9 /* lastState */
            aload 4 /* description */
            iconst_0
            invokevirtual org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription.isAccept:(I)Z
            invokevirtual org.apache.lucene.util.automaton.Automaton.setAccept:(IZ)V
        28: .line 178
            iconst_1
            istore 11 /* i */
        start local 11 // int i
        29: goto 33
        30: .line 179
      StackMap locals: int int
      StackMap stack:
            aload 8 /* a */
            invokevirtual org.apache.lucene.util.automaton.Automaton.createState:()I
            istore 12 /* state */
        start local 12 // int state
        31: .line 180
            aload 8 /* a */
            iload 12 /* state */
            aload 4 /* description */
            iload 11 /* i */
            invokevirtual org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription.isAccept:(I)Z
            invokevirtual org.apache.lucene.util.automaton.Automaton.setAccept:(IZ)V
        end local 12 // int state
        32: .line 178
            iinc 11 /* i */ 1
      StackMap locals:
      StackMap stack:
        33: iload 11 /* i */
            iload 5 /* numStates */
            if_icmplt 30
        end local 11 // int i
        34: .line 186
            iconst_0
            istore 11 /* k */
        start local 11 // int k
        35: goto 57
        36: .line 187
      StackMap locals:
      StackMap stack:
            aload 4 /* description */
            iload 11 /* k */
            invokevirtual org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription.getPosition:(I)I
            istore 12 /* xpos */
        start local 12 // int xpos
        37: .line 188
            iload 12 /* xpos */
            ifge 39
        38: .line 189
            goto 56
        39: .line 190
      StackMap locals: int
      StackMap stack:
            iload 12 /* xpos */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.word:[I
            arraylength
            iload 12 /* xpos */
            isub
            iload 3 /* range */
            invokestatic java.lang.Math.min:(II)I
            iadd
            istore 13 /* end */
        start local 13 // int end
        40: .line 192
            iconst_0
            istore 14 /* x */
        start local 14 // int x
        41: goto 48
        42: .line 193
      StackMap locals: int int
      StackMap stack:
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.alphabet:[I
            iload 14 /* x */
            iaload
            istore 15 /* ch */
        start local 15 // int ch
        43: .line 195
            aload 0 /* this */
            iload 15 /* ch */
            iload 12 /* xpos */
            iload 13 /* end */
            invokevirtual org.apache.lucene.util.automaton.LevenshteinAutomata.getVector:(III)I
            istore 16 /* cvec */
        start local 16 // int cvec
        44: .line 196
            aload 4 /* description */
            iload 11 /* k */
            iload 12 /* xpos */
            iload 16 /* cvec */
            invokevirtual org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription.transition:(III)I
            istore 17 /* dest */
        start local 17 // int dest
        45: .line 197
            iload 17 /* dest */
            iflt 47
        46: .line 198
            aload 8 /* a */
            iload 10 /* stateOffset */
            iload 11 /* k */
            iadd
            iload 10 /* stateOffset */
            iload 17 /* dest */
            iadd
            iload 15 /* ch */
            invokevirtual org.apache.lucene.util.automaton.Automaton.addTransition:(III)V
        end local 17 // int dest
        end local 16 // int cvec
        end local 15 // int ch
        47: .line 192
      StackMap locals:
      StackMap stack:
            iinc 14 /* x */ 1
      StackMap locals:
      StackMap stack:
        48: iload 14 /* x */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.alphabet:[I
            arraylength
            if_icmplt 42
        end local 14 // int x
        49: .line 204
            aload 4 /* description */
            iload 11 /* k */
            iload 12 /* xpos */
            iconst_0
            invokevirtual org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription.transition:(III)I
            istore 14 /* dest */
        start local 14 // int dest
        50: .line 205
            iload 14 /* dest */
            iflt 56
        51: .line 206
            iconst_0
            istore 15 /* r */
        start local 15 // int r
        52: goto 55
        53: .line 207
      StackMap locals: int
      StackMap stack:
            aload 8 /* a */
            iload 10 /* stateOffset */
            iload 11 /* k */
            iadd
            iload 10 /* stateOffset */
            iload 14 /* dest */
            iadd
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.rangeLower:[I
            iload 15 /* r */
            iaload
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.rangeUpper:[I
            iload 15 /* r */
            iaload
            invokevirtual org.apache.lucene.util.automaton.Automaton.addTransition:(IIII)V
        54: .line 206
            iinc 15 /* r */ 1
      StackMap locals:
      StackMap stack:
        55: iload 15 /* r */
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.numRanges:I
            if_icmplt 53
        end local 15 // int r
        end local 14 // int dest
        end local 13 // int end
        end local 12 // int xpos
        56: .line 186
      StackMap locals: org.apache.lucene.util.automaton.LevenshteinAutomata int java.lang.String int org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription int int int org.apache.lucene.util.automaton.Automaton int int int
      StackMap stack:
            iinc 11 /* k */ 1
      StackMap locals:
      StackMap stack:
        57: iload 11 /* k */
            iload 5 /* numStates */
            if_icmplt 36
        end local 11 // int k
        58: .line 212
            aload 8 /* a */
            invokevirtual org.apache.lucene.util.automaton.Automaton.finishState:()V
        59: .line 213
            getstatic org.apache.lucene.util.automaton.LevenshteinAutomata.$assertionsDisabled:Z
            ifne 60
            aload 8 /* a */
            invokevirtual org.apache.lucene.util.automaton.Automaton.isDeterministic:()Z
            ifne 60
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        60: .line 214
      StackMap locals:
      StackMap stack:
            aload 8 /* a */
            areturn
        end local 10 // int stateOffset
        end local 9 // int lastState
        end local 8 // org.apache.lucene.util.automaton.Automaton a
        end local 7 // int prefixStates
        end local 6 // int numTransitions
        end local 5 // int numStates
        end local 4 // org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription description
        end local 3 // int range
        end local 2 // java.lang.String prefix
        end local 1 // int n
        end local 0 // org.apache.lucene.util.automaton.LevenshteinAutomata this
      LocalVariableTable:
        Start  End  Slot            Name  Signature
            0   61     0            this  Lorg/apache/lucene/util/automaton/LevenshteinAutomata;
            0   61     1               n  I
            0   61     2          prefix  Ljava/lang/String;
            6   61     3           range  I
            7   61     4     description  Lorg/apache/lucene/util/automaton/LevenshteinAutomata$ParametricDescription;
            8   61     5       numStates  I
            9   61     6  numTransitions  I
           12   61     7    prefixStates  I
           13   61     8               a  Lorg/apache/lucene/util/automaton/Automaton;
           15   25     9       lastState  I
           26   61     9       lastState  I
           16   24    10               i  I
           17   24    11              cp  I
           19   22    12           state  I
           27   61    10     stateOffset  I
           29   34    11               i  I
           31   32    12           state  I
           35   58    11               k  I
           37   56    12            xpos  I
           40   56    13             end  I
           41   49    14               x  I
           43   47    15              ch  I
           44   47    16            cvec  I
           45   47    17            dest  I
           50   56    14            dest  I
           52   56    15               r  I
    MethodParameters:
        Name  Flags
      n       
      prefix  

  int getVector(int, int, int);
    descriptor: (III)I
    flags: (0x0000) 
    Code:
      stack=2, locals=6, args_size=4
        start local 0 // org.apache.lucene.util.automaton.LevenshteinAutomata this
        start local 1 // int x
        start local 2 // int pos
        start local 3 // int end
         0: .line 222
            iconst_0
            istore 4 /* vector */
        start local 4 // int vector
         1: .line 223
            iload 2 /* pos */
            istore 5 /* i */
        start local 5 // int i
         2: goto 7
         3: .line 224
      StackMap locals: int int
      StackMap stack:
            iload 4 /* vector */
            iconst_1
            ishl
            istore 4 /* vector */
         4: .line 225
            aload 0 /* this */
            getfield org.apache.lucene.util.automaton.LevenshteinAutomata.word:[I
            iload 5 /* i */
            iaload
            iload 1 /* x */
            if_icmpne 6
         5: .line 226
            iload 4 /* vector */
            iconst_1
            ior
            istore 4 /* vector */
         6: .line 223
      StackMap locals:
      StackMap stack:
            iinc 5 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 5 /* i */
            iload 3 /* end */
            if_icmplt 3
        end local 5 // int i
         8: .line 228
            iload 4 /* vector */
            ireturn
        end local 4 // int vector
        end local 3 // int end
        end local 2 // int pos
        end local 1 // int x
        end local 0 // org.apache.lucene.util.automaton.LevenshteinAutomata this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    9     0    this  Lorg/apache/lucene/util/automaton/LevenshteinAutomata;
            0    9     1       x  I
            0    9     2     pos  I
            0    9     3     end  I
            1    9     4  vector  I
            2    8     5       i  I
    MethodParameters:
      Name  Flags
      x     
      pos   
      end   
}
SourceFile: "LevenshteinAutomata.java"
NestMembers:
  org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription
InnerClasses:
  abstract ParametricDescription = org.apache.lucene.util.automaton.LevenshteinAutomata$ParametricDescription of org.apache.lucene.util.automaton.LevenshteinAutomata