public class org.objectweb.asm.tree.MethodNode extends org.objectweb.asm.MethodVisitor
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.objectweb.asm.tree.MethodNode
  super_class: org.objectweb.asm.MethodVisitor
{
  public int access;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  public java.lang.String name;
    descriptor: Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC

  public java.lang.String desc;
    descriptor: Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC

  public java.lang.String signature;
    descriptor: Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC

  public java.util.List<java.lang.String> exceptions;
    descriptor: Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Signature: Ljava/util/List<Ljava/lang/String;>;

  public java.util.List<org.objectweb.asm.tree.AnnotationNode> visibleAnnotations;
    descriptor: Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Signature: Ljava/util/List<Lorg/objectweb/asm/tree/AnnotationNode;>;

  public java.util.List<org.objectweb.asm.tree.AnnotationNode> invisibleAnnotations;
    descriptor: Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Signature: Ljava/util/List<Lorg/objectweb/asm/tree/AnnotationNode;>;

  public java.util.List<org.objectweb.asm.Attribute> attrs;
    descriptor: Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Signature: Ljava/util/List<Lorg/objectweb/asm/Attribute;>;

  public java.lang.Object annotationDefault;
    descriptor: Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC

  public java.util.List<org.objectweb.asm.tree.AnnotationNode>[] visibleParameterAnnotations;
    descriptor: [Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Signature: [Ljava/util/List<Lorg/objectweb/asm/tree/AnnotationNode;>;

  public java.util.List<org.objectweb.asm.tree.AnnotationNode>[] invisibleParameterAnnotations;
    descriptor: [Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Signature: [Ljava/util/List<Lorg/objectweb/asm/tree/AnnotationNode;>;

  public org.objectweb.asm.tree.InsnList instructions;
    descriptor: Lorg/objectweb/asm/tree/InsnList;
    flags: (0x0001) ACC_PUBLIC

  public java.util.List<org.objectweb.asm.tree.TryCatchBlockNode> tryCatchBlocks;
    descriptor: Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Signature: Ljava/util/List<Lorg/objectweb/asm/tree/TryCatchBlockNode;>;

  public int maxStack;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  public int maxLocals;
    descriptor: I
    flags: (0x0001) ACC_PUBLIC

  public java.util.List<org.objectweb.asm.tree.LocalVariableNode> localVariables;
    descriptor: Ljava/util/List;
    flags: (0x0001) ACC_PUBLIC
    Signature: Ljava/util/List<Lorg/objectweb/asm/tree/LocalVariableNode;>;

  private boolean visited;
    descriptor: Z
    flags: (0x0002) ACC_PRIVATE

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // org.objectweb.asm.tree.MethodNode this
         0: .line 180
            aload 0 /* this */
            ldc 262144
            invokespecial org.objectweb.asm.tree.MethodNode.<init>:(I)V
         1: .line 181
            return
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/objectweb/asm/tree/MethodNode;

  public void <init>(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // int api
         0: .line 191
            aload 0 /* this */
            iload 1 /* api */
            invokespecial org.objectweb.asm.MethodVisitor.<init>:(I)V
         1: .line 192
            aload 0 /* this */
            new org.objectweb.asm.tree.InsnList
            dup
            invokespecial org.objectweb.asm.tree.InsnList.<init>:()V
            putfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
         2: .line 193
            return
        end local 1 // int api
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/objectweb/asm/tree/MethodNode;
            0    3     1   api  I
    MethodParameters:
      Name  Flags
      api   final

  public void <init>(int, java.lang.String, java.lang.String, java.lang.String, java.lang.String[]);
    descriptor: (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=6, args_size=6
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // int access
        start local 2 // java.lang.String name
        start local 3 // java.lang.String desc
        start local 4 // java.lang.String signature
        start local 5 // java.lang.String[] exceptions
         0: .line 217
            aload 0 /* this */
            ldc 262144
            iload 1 /* access */
            aload 2 /* name */
            aload 3 /* desc */
            aload 4 /* signature */
            aload 5 /* exceptions */
            invokespecial org.objectweb.asm.tree.MethodNode.<init>:(IILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)V
         1: .line 218
            return
        end local 5 // java.lang.String[] exceptions
        end local 4 // java.lang.String signature
        end local 3 // java.lang.String desc
        end local 2 // java.lang.String name
        end local 1 // int access
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    2     0        this  Lorg/objectweb/asm/tree/MethodNode;
            0    2     1      access  I
            0    2     2        name  Ljava/lang/String;
            0    2     3        desc  Ljava/lang/String;
            0    2     4   signature  Ljava/lang/String;
            0    2     5  exceptions  [Ljava/lang/String;
    MethodParameters:
            Name  Flags
      access      final
      name        final
      desc        final
      signature   final
      exceptions  final

  public void <init>(int, int, java.lang.String, java.lang.String, java.lang.String, java.lang.String[]);
    descriptor: (IILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=8, args_size=7
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // int api
        start local 2 // int access
        start local 3 // java.lang.String name
        start local 4 // java.lang.String desc
        start local 5 // java.lang.String signature
        start local 6 // java.lang.String[] exceptions
         0: .line 243
            aload 0 /* this */
            iload 1 /* api */
            invokespecial org.objectweb.asm.MethodVisitor.<init>:(I)V
         1: .line 244
            aload 0 /* this */
            iload 2 /* access */
            putfield org.objectweb.asm.tree.MethodNode.access:I
         2: .line 245
            aload 0 /* this */
            aload 3 /* name */
            putfield org.objectweb.asm.tree.MethodNode.name:Ljava/lang/String;
         3: .line 246
            aload 0 /* this */
            aload 4 /* desc */
            putfield org.objectweb.asm.tree.MethodNode.desc:Ljava/lang/String;
         4: .line 247
            aload 0 /* this */
            aload 5 /* signature */
            putfield org.objectweb.asm.tree.MethodNode.signature:Ljava/lang/String;
         5: .line 248
            aload 0 /* this */
         6: new java.util.ArrayList
            dup
            aload 6 /* exceptions */
            ifnonnull 7
            iconst_0
            goto 8
         7: .line 249
      StackMap locals: org.objectweb.asm.tree.MethodNode int int java.lang.String java.lang.String java.lang.String java.lang.String[]
      StackMap stack: org.objectweb.asm.tree.MethodNode new 6 new 6
            aload 6 /* exceptions */
            arraylength
      StackMap locals: org.objectweb.asm.tree.MethodNode int int java.lang.String java.lang.String java.lang.String java.lang.String[]
      StackMap stack: org.objectweb.asm.tree.MethodNode new 6 new 6 int
         8: invokespecial java.util.ArrayList.<init>:(I)V
         9: .line 248
            putfield org.objectweb.asm.tree.MethodNode.exceptions:Ljava/util/List;
        10: .line 250
            iload 2 /* access */
            sipush 1024
            iand
            ifeq 11
            iconst_1
            goto 12
      StackMap locals:
      StackMap stack:
        11: iconst_0
      StackMap locals:
      StackMap stack: int
        12: istore 7 /* isAbstract */
        start local 7 // boolean isAbstract
        13: .line 251
            iload 7 /* isAbstract */
            ifne 15
        14: .line 252
            aload 0 /* this */
            new java.util.ArrayList
            dup
            iconst_5
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.objectweb.asm.tree.MethodNode.localVariables:Ljava/util/List;
        15: .line 254
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield org.objectweb.asm.tree.MethodNode.tryCatchBlocks:Ljava/util/List;
        16: .line 255
            aload 6 /* exceptions */
            ifnull 18
        17: .line 256
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.exceptions:Ljava/util/List;
            aload 6 /* exceptions */
            invokestatic java.util.Arrays.asList:([Ljava/lang/Object;)Ljava/util/List;
            invokeinterface java.util.List.addAll:(Ljava/util/Collection;)Z
            pop
        18: .line 258
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            new org.objectweb.asm.tree.InsnList
            dup
            invokespecial org.objectweb.asm.tree.InsnList.<init>:()V
            putfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
        19: .line 259
            return
        end local 7 // boolean isAbstract
        end local 6 // java.lang.String[] exceptions
        end local 5 // java.lang.String signature
        end local 4 // java.lang.String desc
        end local 3 // java.lang.String name
        end local 2 // int access
        end local 1 // int api
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   20     0        this  Lorg/objectweb/asm/tree/MethodNode;
            0   20     1         api  I
            0   20     2      access  I
            0   20     3        name  Ljava/lang/String;
            0   20     4        desc  Ljava/lang/String;
            0   20     5   signature  Ljava/lang/String;
            0   20     6  exceptions  [Ljava/lang/String;
           13   20     7  isAbstract  Z
    MethodParameters:
            Name  Flags
      api         final
      access      final
      name        final
      desc        final
      signature   final
      exceptions  final

  public org.objectweb.asm.AnnotationVisitor visitAnnotationDefault();
    descriptor: ()Lorg/objectweb/asm/AnnotationVisitor;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=1, args_size=1
        start local 0 // org.objectweb.asm.tree.MethodNode this
         0: .line 267
            new org.objectweb.asm.tree.AnnotationNode
            dup
            new org.objectweb.asm.tree.MethodNode$1
            dup
            aload 0 /* this */
            iconst_0
            invokespecial org.objectweb.asm.tree.MethodNode$1.<init>:(Lorg/objectweb/asm/tree/MethodNode;I)V
            invokespecial org.objectweb.asm.tree.AnnotationNode.<init>:(Ljava/util/List;)V
            areturn
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/tree/MethodNode;

  public org.objectweb.asm.AnnotationVisitor visitAnnotation(java.lang.String, boolean);
    descriptor: (Ljava/lang/String;Z)Lorg/objectweb/asm/AnnotationVisitor;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=4, args_size=3
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // java.lang.String desc
        start local 2 // boolean visible
         0: .line 279
            new org.objectweb.asm.tree.AnnotationNode
            dup
            aload 1 /* desc */
            invokespecial org.objectweb.asm.tree.AnnotationNode.<init>:(Ljava/lang/String;)V
            astore 3 /* an */
        start local 3 // org.objectweb.asm.tree.AnnotationNode an
         1: .line 280
            iload 2 /* visible */
            ifeq 6
         2: .line 281
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.visibleAnnotations:Ljava/util/List;
            ifnonnull 4
         3: .line 282
            aload 0 /* this */
            new java.util.ArrayList
            dup
            iconst_1
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.objectweb.asm.tree.MethodNode.visibleAnnotations:Ljava/util/List;
         4: .line 284
      StackMap locals: org.objectweb.asm.tree.AnnotationNode
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.visibleAnnotations:Ljava/util/List;
            aload 3 /* an */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         5: .line 285
            goto 9
         6: .line 286
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.invisibleAnnotations:Ljava/util/List;
            ifnonnull 8
         7: .line 287
            aload 0 /* this */
            new java.util.ArrayList
            dup
            iconst_1
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.objectweb.asm.tree.MethodNode.invisibleAnnotations:Ljava/util/List;
         8: .line 289
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.invisibleAnnotations:Ljava/util/List;
            aload 3 /* an */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         9: .line 291
      StackMap locals:
      StackMap stack:
            aload 3 /* an */
            areturn
        end local 3 // org.objectweb.asm.tree.AnnotationNode an
        end local 2 // boolean visible
        end local 1 // java.lang.String desc
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Lorg/objectweb/asm/tree/MethodNode;
            0   10     1     desc  Ljava/lang/String;
            0   10     2  visible  Z
            1   10     3       an  Lorg/objectweb/asm/tree/AnnotationNode;
    MethodParameters:
         Name  Flags
      desc     final
      visible  final

  public org.objectweb.asm.AnnotationVisitor visitParameterAnnotation(int, java.lang.String, boolean);
    descriptor: (ILjava/lang/String;Z)Lorg/objectweb/asm/AnnotationVisitor;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=6, args_size=4
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // int parameter
        start local 2 // java.lang.String desc
        start local 3 // boolean visible
         0: .line 297
            new org.objectweb.asm.tree.AnnotationNode
            dup
            aload 2 /* desc */
            invokespecial org.objectweb.asm.tree.AnnotationNode.<init>:(Ljava/lang/String;)V
            astore 4 /* an */
        start local 4 // org.objectweb.asm.tree.AnnotationNode an
         1: .line 298
            iload 3 /* visible */
            ifeq 11
         2: .line 299
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.visibleParameterAnnotations:[Ljava/util/List;
            ifnonnull 5
         3: .line 300
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.desc:Ljava/lang/String;
            invokestatic org.objectweb.asm.Type.getArgumentTypes:(Ljava/lang/String;)[Lorg/objectweb/asm/Type;
            arraylength
            istore 5 /* params */
        start local 5 // int params
         4: .line 301
            aload 0 /* this */
            iload 5 /* params */
            anewarray java.util.List
            putfield org.objectweb.asm.tree.MethodNode.visibleParameterAnnotations:[Ljava/util/List;
        end local 5 // int params
         5: .line 303
      StackMap locals: org.objectweb.asm.tree.AnnotationNode
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.visibleParameterAnnotations:[Ljava/util/List;
            iload 1 /* parameter */
            aaload
            ifnonnull 9
         6: .line 304
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.visibleParameterAnnotations:[Ljava/util/List;
            iload 1 /* parameter */
            new java.util.ArrayList
            dup
         7: .line 305
            iconst_1
            invokespecial java.util.ArrayList.<init>:(I)V
         8: .line 304
            aastore
         9: .line 307
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.visibleParameterAnnotations:[Ljava/util/List;
            iload 1 /* parameter */
            aaload
            aload 4 /* an */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        10: .line 308
            goto 19
        11: .line 309
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.invisibleParameterAnnotations:[Ljava/util/List;
            ifnonnull 14
        12: .line 310
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.desc:Ljava/lang/String;
            invokestatic org.objectweb.asm.Type.getArgumentTypes:(Ljava/lang/String;)[Lorg/objectweb/asm/Type;
            arraylength
            istore 5 /* params */
        start local 5 // int params
        13: .line 311
            aload 0 /* this */
            iload 5 /* params */
            anewarray java.util.List
            putfield org.objectweb.asm.tree.MethodNode.invisibleParameterAnnotations:[Ljava/util/List;
        end local 5 // int params
        14: .line 313
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.invisibleParameterAnnotations:[Ljava/util/List;
            iload 1 /* parameter */
            aaload
            ifnonnull 18
        15: .line 314
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.invisibleParameterAnnotations:[Ljava/util/List;
            iload 1 /* parameter */
            new java.util.ArrayList
            dup
        16: .line 315
            iconst_1
            invokespecial java.util.ArrayList.<init>:(I)V
        17: .line 314
            aastore
        18: .line 317
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.invisibleParameterAnnotations:[Ljava/util/List;
            iload 1 /* parameter */
            aaload
            aload 4 /* an */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
        19: .line 319
      StackMap locals:
      StackMap stack:
            aload 4 /* an */
            areturn
        end local 4 // org.objectweb.asm.tree.AnnotationNode an
        end local 3 // boolean visible
        end local 2 // java.lang.String desc
        end local 1 // int parameter
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   20     0       this  Lorg/objectweb/asm/tree/MethodNode;
            0   20     1  parameter  I
            0   20     2       desc  Ljava/lang/String;
            0   20     3    visible  Z
            1   20     4         an  Lorg/objectweb/asm/tree/AnnotationNode;
            4    5     5     params  I
           13   14     5     params  I
    MethodParameters:
           Name  Flags
      parameter  final
      desc       final
      visible    final

  public void visitAttribute(org.objectweb.asm.Attribute);
    descriptor: (Lorg/objectweb/asm/Attribute;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // org.objectweb.asm.Attribute attr
         0: .line 324
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.attrs:Ljava/util/List;
            ifnonnull 2
         1: .line 325
            aload 0 /* this */
            new java.util.ArrayList
            dup
            iconst_1
            invokespecial java.util.ArrayList.<init>:(I)V
            putfield org.objectweb.asm.tree.MethodNode.attrs:Ljava/util/List;
         2: .line 327
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.attrs:Ljava/util/List;
            aload 1 /* attr */
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         3: .line 328
            return
        end local 1 // org.objectweb.asm.Attribute attr
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/objectweb/asm/tree/MethodNode;
            0    4     1  attr  Lorg/objectweb/asm/Attribute;
    MethodParameters:
      Name  Flags
      attr  final

  public void visitCode();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // org.objectweb.asm.tree.MethodNode this
         0: .line 332
            return
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/tree/MethodNode;

  public void visitFrame(int, int, java.lang.Object[], int, java.lang.Object[]);
    descriptor: (II[Ljava/lang/Object;I[Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=6, args_size=6
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // int type
        start local 2 // int nLocal
        start local 3 // java.lang.Object[] local
        start local 4 // int nStack
        start local 5 // java.lang.Object[] stack
         0: .line 337
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
         1: new org.objectweb.asm.tree.FrameNode
            dup
            iload 1 /* type */
            iload 2 /* nLocal */
            aload 3 /* local */
            ifnonnull 2
            aconst_null
            goto 3
         2: .line 338
      StackMap locals: org.objectweb.asm.tree.MethodNode int int java.lang.Object[] int java.lang.Object[]
      StackMap stack: org.objectweb.asm.tree.InsnList new 1 new 1 int int
            aload 0 /* this */
            aload 3 /* local */
            invokevirtual org.objectweb.asm.tree.MethodNode.getLabelNodes:([Ljava/lang/Object;)[Ljava/lang/Object;
      StackMap locals: org.objectweb.asm.tree.MethodNode int int java.lang.Object[] int java.lang.Object[]
      StackMap stack: org.objectweb.asm.tree.InsnList new 1 new 1 int int java.lang.Object[]
         3: iload 4 /* nStack */
            aload 5 /* stack */
            ifnonnull 4
            aconst_null
            goto 5
         4: .line 339
      StackMap locals: org.objectweb.asm.tree.MethodNode int int java.lang.Object[] int java.lang.Object[]
      StackMap stack: org.objectweb.asm.tree.InsnList new 1 new 1 int int java.lang.Object[] int
            aload 0 /* this */
            aload 5 /* stack */
            invokevirtual org.objectweb.asm.tree.MethodNode.getLabelNodes:([Ljava/lang/Object;)[Ljava/lang/Object;
      StackMap locals: org.objectweb.asm.tree.MethodNode int int java.lang.Object[] int java.lang.Object[]
      StackMap stack: org.objectweb.asm.tree.InsnList new 1 new 1 int int java.lang.Object[] int java.lang.Object[]
         5: invokespecial org.objectweb.asm.tree.FrameNode.<init>:(II[Ljava/lang/Object;I[Ljava/lang/Object;)V
         6: .line 337
            invokevirtual org.objectweb.asm.tree.InsnList.add:(Lorg/objectweb/asm/tree/AbstractInsnNode;)V
         7: .line 340
            return
        end local 5 // java.lang.Object[] stack
        end local 4 // int nStack
        end local 3 // java.lang.Object[] local
        end local 2 // int nLocal
        end local 1 // int type
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    8     0    this  Lorg/objectweb/asm/tree/MethodNode;
            0    8     1    type  I
            0    8     2  nLocal  I
            0    8     3   local  [Ljava/lang/Object;
            0    8     4  nStack  I
            0    8     5   stack  [Ljava/lang/Object;
    MethodParameters:
        Name  Flags
      type    final
      nLocal  final
      local   final
      nStack  final
      stack   final

  public void visitInsn(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // int opcode
         0: .line 344
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
            new org.objectweb.asm.tree.InsnNode
            dup
            iload 1 /* opcode */
            invokespecial org.objectweb.asm.tree.InsnNode.<init>:(I)V
            invokevirtual org.objectweb.asm.tree.InsnList.add:(Lorg/objectweb/asm/tree/AbstractInsnNode;)V
         1: .line 345
            return
        end local 1 // int opcode
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/objectweb/asm/tree/MethodNode;
            0    2     1  opcode  I
    MethodParameters:
        Name  Flags
      opcode  final

  public void visitIntInsn(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // int opcode
        start local 2 // int operand
         0: .line 349
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
            new org.objectweb.asm.tree.IntInsnNode
            dup
            iload 1 /* opcode */
            iload 2 /* operand */
            invokespecial org.objectweb.asm.tree.IntInsnNode.<init>:(II)V
            invokevirtual org.objectweb.asm.tree.InsnList.add:(Lorg/objectweb/asm/tree/AbstractInsnNode;)V
         1: .line 350
            return
        end local 2 // int operand
        end local 1 // int opcode
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/objectweb/asm/tree/MethodNode;
            0    2     1   opcode  I
            0    2     2  operand  I
    MethodParameters:
         Name  Flags
      opcode   final
      operand  final

  public void visitVarInsn(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // int opcode
        start local 2 // int var
         0: .line 354
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
            new org.objectweb.asm.tree.VarInsnNode
            dup
            iload 1 /* opcode */
            iload 2 /* var */
            invokespecial org.objectweb.asm.tree.VarInsnNode.<init>:(II)V
            invokevirtual org.objectweb.asm.tree.InsnList.add:(Lorg/objectweb/asm/tree/AbstractInsnNode;)V
         1: .line 355
            return
        end local 2 // int var
        end local 1 // int opcode
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/objectweb/asm/tree/MethodNode;
            0    2     1  opcode  I
            0    2     2     var  I
    MethodParameters:
        Name  Flags
      opcode  final
      var     final

  public void visitTypeInsn(int, java.lang.String);
    descriptor: (ILjava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // int opcode
        start local 2 // java.lang.String type
         0: .line 359
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
            new org.objectweb.asm.tree.TypeInsnNode
            dup
            iload 1 /* opcode */
            aload 2 /* type */
            invokespecial org.objectweb.asm.tree.TypeInsnNode.<init>:(ILjava/lang/String;)V
            invokevirtual org.objectweb.asm.tree.InsnList.add:(Lorg/objectweb/asm/tree/AbstractInsnNode;)V
         1: .line 360
            return
        end local 2 // java.lang.String type
        end local 1 // int opcode
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/objectweb/asm/tree/MethodNode;
            0    2     1  opcode  I
            0    2     2    type  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      opcode  final
      type    final

  public void visitFieldInsn(int, java.lang.String, java.lang.String, java.lang.String);
    descriptor: (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=5
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // int opcode
        start local 2 // java.lang.String owner
        start local 3 // java.lang.String name
        start local 4 // java.lang.String desc
         0: .line 365
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
            new org.objectweb.asm.tree.FieldInsnNode
            dup
            iload 1 /* opcode */
            aload 2 /* owner */
            aload 3 /* name */
            aload 4 /* desc */
            invokespecial org.objectweb.asm.tree.FieldInsnNode.<init>:(ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
            invokevirtual org.objectweb.asm.tree.InsnList.add:(Lorg/objectweb/asm/tree/AbstractInsnNode;)V
         1: .line 366
            return
        end local 4 // java.lang.String desc
        end local 3 // java.lang.String name
        end local 2 // java.lang.String owner
        end local 1 // int opcode
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/objectweb/asm/tree/MethodNode;
            0    2     1  opcode  I
            0    2     2   owner  Ljava/lang/String;
            0    2     3    name  Ljava/lang/String;
            0    2     4    desc  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      opcode  final
      owner   final
      name    final
      desc    final

  public void visitMethodInsn(int, java.lang.String, java.lang.String, java.lang.String);
    descriptor: (ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=5
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // int opcode
        start local 2 // java.lang.String owner
        start local 3 // java.lang.String name
        start local 4 // java.lang.String desc
         0: .line 371
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
            new org.objectweb.asm.tree.MethodInsnNode
            dup
            iload 1 /* opcode */
            aload 2 /* owner */
            aload 3 /* name */
            aload 4 /* desc */
            invokespecial org.objectweb.asm.tree.MethodInsnNode.<init>:(ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;)V
            invokevirtual org.objectweb.asm.tree.InsnList.add:(Lorg/objectweb/asm/tree/AbstractInsnNode;)V
         1: .line 372
            return
        end local 4 // java.lang.String desc
        end local 3 // java.lang.String name
        end local 2 // java.lang.String owner
        end local 1 // int opcode
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/objectweb/asm/tree/MethodNode;
            0    2     1  opcode  I
            0    2     2   owner  Ljava/lang/String;
            0    2     3    name  Ljava/lang/String;
            0    2     4    desc  Ljava/lang/String;
    MethodParameters:
        Name  Flags
      opcode  final
      owner   final
      name    final
      desc    final

  public void visitInvokeDynamicInsn(java.lang.String, java.lang.String, org.objectweb.asm.Handle, java.lang.Object[]);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Lorg/objectweb/asm/Handle;[Ljava/lang/Object;)V
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=7, locals=5, args_size=5
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String desc
        start local 3 // org.objectweb.asm.Handle bsm
        start local 4 // java.lang.Object[] bsmArgs
         0: .line 377
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
            new org.objectweb.asm.tree.InvokeDynamicInsnNode
            dup
            aload 1 /* name */
            aload 2 /* desc */
            aload 3 /* bsm */
            aload 4 /* bsmArgs */
            invokespecial org.objectweb.asm.tree.InvokeDynamicInsnNode.<init>:(Ljava/lang/String;Ljava/lang/String;Lorg/objectweb/asm/Handle;[Ljava/lang/Object;)V
            invokevirtual org.objectweb.asm.tree.InsnList.add:(Lorg/objectweb/asm/tree/AbstractInsnNode;)V
         1: .line 378
            return
        end local 4 // java.lang.Object[] bsmArgs
        end local 3 // org.objectweb.asm.Handle bsm
        end local 2 // java.lang.String desc
        end local 1 // java.lang.String name
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    2     0     this  Lorg/objectweb/asm/tree/MethodNode;
            0    2     1     name  Ljava/lang/String;
            0    2     2     desc  Ljava/lang/String;
            0    2     3      bsm  Lorg/objectweb/asm/Handle;
            0    2     4  bsmArgs  [Ljava/lang/Object;
    MethodParameters:
         Name  Flags
      name     
      desc     
      bsm      
      bsmArgs  

  public void visitJumpInsn(int, org.objectweb.asm.Label);
    descriptor: (ILorg/objectweb/asm/Label;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // int opcode
        start local 2 // org.objectweb.asm.Label label
         0: .line 382
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
            new org.objectweb.asm.tree.JumpInsnNode
            dup
            iload 1 /* opcode */
            aload 0 /* this */
            aload 2 /* label */
            invokevirtual org.objectweb.asm.tree.MethodNode.getLabelNode:(Lorg/objectweb/asm/Label;)Lorg/objectweb/asm/tree/LabelNode;
            invokespecial org.objectweb.asm.tree.JumpInsnNode.<init>:(ILorg/objectweb/asm/tree/LabelNode;)V
            invokevirtual org.objectweb.asm.tree.InsnList.add:(Lorg/objectweb/asm/tree/AbstractInsnNode;)V
         1: .line 383
            return
        end local 2 // org.objectweb.asm.Label label
        end local 1 // int opcode
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/objectweb/asm/tree/MethodNode;
            0    2     1  opcode  I
            0    2     2   label  Lorg/objectweb/asm/Label;
    MethodParameters:
        Name  Flags
      opcode  final
      label   final

  public void visitLabel(org.objectweb.asm.Label);
    descriptor: (Lorg/objectweb/asm/Label;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // org.objectweb.asm.Label label
         0: .line 387
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
            aload 0 /* this */
            aload 1 /* label */
            invokevirtual org.objectweb.asm.tree.MethodNode.getLabelNode:(Lorg/objectweb/asm/Label;)Lorg/objectweb/asm/tree/LabelNode;
            invokevirtual org.objectweb.asm.tree.InsnList.add:(Lorg/objectweb/asm/tree/AbstractInsnNode;)V
         1: .line 388
            return
        end local 1 // org.objectweb.asm.Label label
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/objectweb/asm/tree/MethodNode;
            0    2     1  label  Lorg/objectweb/asm/Label;
    MethodParameters:
       Name  Flags
      label  final

  public void visitLdcInsn(java.lang.Object);
    descriptor: (Ljava/lang/Object;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=4, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // java.lang.Object cst
         0: .line 392
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
            new org.objectweb.asm.tree.LdcInsnNode
            dup
            aload 1 /* cst */
            invokespecial org.objectweb.asm.tree.LdcInsnNode.<init>:(Ljava/lang/Object;)V
            invokevirtual org.objectweb.asm.tree.InsnList.add:(Lorg/objectweb/asm/tree/AbstractInsnNode;)V
         1: .line 393
            return
        end local 1 // java.lang.Object cst
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/objectweb/asm/tree/MethodNode;
            0    2     1   cst  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      cst   final

  public void visitIincInsn(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // int var
        start local 2 // int increment
         0: .line 397
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
            new org.objectweb.asm.tree.IincInsnNode
            dup
            iload 1 /* var */
            iload 2 /* increment */
            invokespecial org.objectweb.asm.tree.IincInsnNode.<init>:(II)V
            invokevirtual org.objectweb.asm.tree.InsnList.add:(Lorg/objectweb/asm/tree/AbstractInsnNode;)V
         1: .line 398
            return
        end local 2 // int increment
        end local 1 // int var
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    2     0       this  Lorg/objectweb/asm/tree/MethodNode;
            0    2     1        var  I
            0    2     2  increment  I
    MethodParameters:
           Name  Flags
      var        final
      increment  final

  public void visitTableSwitchInsn(int, int, org.objectweb.asm.Label, org.objectweb.asm.Label[]);
    descriptor: (IILorg/objectweb/asm/Label;[Lorg/objectweb/asm/Label;)V
    flags: (0x0081) ACC_PUBLIC, ACC_VARARGS
    Code:
      stack=8, locals=5, args_size=5
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // int min
        start local 2 // int max
        start local 3 // org.objectweb.asm.Label dflt
        start local 4 // org.objectweb.asm.Label[] labels
         0: .line 403
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
            new org.objectweb.asm.tree.TableSwitchInsnNode
            dup
            iload 1 /* min */
            iload 2 /* max */
            aload 0 /* this */
            aload 3 /* dflt */
            invokevirtual org.objectweb.asm.tree.MethodNode.getLabelNode:(Lorg/objectweb/asm/Label;)Lorg/objectweb/asm/tree/LabelNode;
         1: .line 404
            aload 0 /* this */
            aload 4 /* labels */
            invokevirtual org.objectweb.asm.tree.MethodNode.getLabelNodes:([Lorg/objectweb/asm/Label;)[Lorg/objectweb/asm/tree/LabelNode;
            invokespecial org.objectweb.asm.tree.TableSwitchInsnNode.<init>:(IILorg/objectweb/asm/tree/LabelNode;[Lorg/objectweb/asm/tree/LabelNode;)V
         2: .line 403
            invokevirtual org.objectweb.asm.tree.InsnList.add:(Lorg/objectweb/asm/tree/AbstractInsnNode;)V
         3: .line 405
            return
        end local 4 // org.objectweb.asm.Label[] labels
        end local 3 // org.objectweb.asm.Label dflt
        end local 2 // int max
        end local 1 // int min
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/objectweb/asm/tree/MethodNode;
            0    4     1     min  I
            0    4     2     max  I
            0    4     3    dflt  Lorg/objectweb/asm/Label;
            0    4     4  labels  [Lorg/objectweb/asm/Label;
    MethodParameters:
        Name  Flags
      min     final
      max     final
      dflt    final
      labels  final

  public void visitLookupSwitchInsn(org.objectweb.asm.Label, int[], org.objectweb.asm.Label[]);
    descriptor: (Lorg/objectweb/asm/Label;[I[Lorg/objectweb/asm/Label;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=4, args_size=4
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // org.objectweb.asm.Label dflt
        start local 2 // int[] keys
        start local 3 // org.objectweb.asm.Label[] labels
         0: .line 410
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
            new org.objectweb.asm.tree.LookupSwitchInsnNode
            dup
            aload 0 /* this */
            aload 1 /* dflt */
            invokevirtual org.objectweb.asm.tree.MethodNode.getLabelNode:(Lorg/objectweb/asm/Label;)Lorg/objectweb/asm/tree/LabelNode;
            aload 2 /* keys */
         1: .line 411
            aload 0 /* this */
            aload 3 /* labels */
            invokevirtual org.objectweb.asm.tree.MethodNode.getLabelNodes:([Lorg/objectweb/asm/Label;)[Lorg/objectweb/asm/tree/LabelNode;
            invokespecial org.objectweb.asm.tree.LookupSwitchInsnNode.<init>:(Lorg/objectweb/asm/tree/LabelNode;[I[Lorg/objectweb/asm/tree/LabelNode;)V
         2: .line 410
            invokevirtual org.objectweb.asm.tree.InsnList.add:(Lorg/objectweb/asm/tree/AbstractInsnNode;)V
         3: .line 412
            return
        end local 3 // org.objectweb.asm.Label[] labels
        end local 2 // int[] keys
        end local 1 // org.objectweb.asm.Label dflt
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0    this  Lorg/objectweb/asm/tree/MethodNode;
            0    4     1    dflt  Lorg/objectweb/asm/Label;
            0    4     2    keys  [I
            0    4     3  labels  [Lorg/objectweb/asm/Label;
    MethodParameters:
        Name  Flags
      dflt    final
      keys    final
      labels  final

  public void visitMultiANewArrayInsn(java.lang.String, int);
    descriptor: (Ljava/lang/String;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=3, args_size=3
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // java.lang.String desc
        start local 2 // int dims
         0: .line 416
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
            new org.objectweb.asm.tree.MultiANewArrayInsnNode
            dup
            aload 1 /* desc */
            iload 2 /* dims */
            invokespecial org.objectweb.asm.tree.MultiANewArrayInsnNode.<init>:(Ljava/lang/String;I)V
            invokevirtual org.objectweb.asm.tree.InsnList.add:(Lorg/objectweb/asm/tree/AbstractInsnNode;)V
         1: .line 417
            return
        end local 2 // int dims
        end local 1 // java.lang.String desc
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lorg/objectweb/asm/tree/MethodNode;
            0    2     1  desc  Ljava/lang/String;
            0    2     2  dims  I
    MethodParameters:
      Name  Flags
      desc  final
      dims  final

  public void visitTryCatchBlock(org.objectweb.asm.Label, org.objectweb.asm.Label, org.objectweb.asm.Label, java.lang.String);
    descriptor: (Lorg/objectweb/asm/Label;Lorg/objectweb/asm/Label;Lorg/objectweb/asm/Label;Ljava/lang/String;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=7, locals=5, args_size=5
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // org.objectweb.asm.Label start
        start local 2 // org.objectweb.asm.Label end
        start local 3 // org.objectweb.asm.Label handler
        start local 4 // java.lang.String type
         0: .line 422
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.tryCatchBlocks:Ljava/util/List;
            new org.objectweb.asm.tree.TryCatchBlockNode
            dup
            aload 0 /* this */
            aload 1 /* start */
            invokevirtual org.objectweb.asm.tree.MethodNode.getLabelNode:(Lorg/objectweb/asm/Label;)Lorg/objectweb/asm/tree/LabelNode;
         1: .line 423
            aload 0 /* this */
            aload 2 /* end */
            invokevirtual org.objectweb.asm.tree.MethodNode.getLabelNode:(Lorg/objectweb/asm/Label;)Lorg/objectweb/asm/tree/LabelNode;
            aload 0 /* this */
            aload 3 /* handler */
            invokevirtual org.objectweb.asm.tree.MethodNode.getLabelNode:(Lorg/objectweb/asm/Label;)Lorg/objectweb/asm/tree/LabelNode;
            aload 4 /* type */
            invokespecial org.objectweb.asm.tree.TryCatchBlockNode.<init>:(Lorg/objectweb/asm/tree/LabelNode;Lorg/objectweb/asm/tree/LabelNode;Lorg/objectweb/asm/tree/LabelNode;Ljava/lang/String;)V
         2: .line 422
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         3: .line 424
            return
        end local 4 // java.lang.String type
        end local 3 // org.objectweb.asm.Label handler
        end local 2 // org.objectweb.asm.Label end
        end local 1 // org.objectweb.asm.Label start
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/objectweb/asm/tree/MethodNode;
            0    4     1    start  Lorg/objectweb/asm/Label;
            0    4     2      end  Lorg/objectweb/asm/Label;
            0    4     3  handler  Lorg/objectweb/asm/Label;
            0    4     4     type  Ljava/lang/String;
    MethodParameters:
         Name  Flags
      start    final
      end      final
      handler  final
      type     final

  public void visitLocalVariable(java.lang.String, java.lang.String, java.lang.String, org.objectweb.asm.Label, org.objectweb.asm.Label, int);
    descriptor: (Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lorg/objectweb/asm/Label;Lorg/objectweb/asm/Label;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=7, args_size=7
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // java.lang.String name
        start local 2 // java.lang.String desc
        start local 3 // java.lang.String signature
        start local 4 // org.objectweb.asm.Label start
        start local 5 // org.objectweb.asm.Label end
        start local 6 // int index
         0: .line 430
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.localVariables:Ljava/util/List;
            new org.objectweb.asm.tree.LocalVariableNode
            dup
            aload 1 /* name */
            aload 2 /* desc */
            aload 3 /* signature */
         1: .line 431
            aload 0 /* this */
            aload 4 /* start */
            invokevirtual org.objectweb.asm.tree.MethodNode.getLabelNode:(Lorg/objectweb/asm/Label;)Lorg/objectweb/asm/tree/LabelNode;
            aload 0 /* this */
            aload 5 /* end */
            invokevirtual org.objectweb.asm.tree.MethodNode.getLabelNode:(Lorg/objectweb/asm/Label;)Lorg/objectweb/asm/tree/LabelNode;
            iload 6 /* index */
            invokespecial org.objectweb.asm.tree.LocalVariableNode.<init>:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/String;Lorg/objectweb/asm/tree/LabelNode;Lorg/objectweb/asm/tree/LabelNode;I)V
         2: .line 430
            invokeinterface java.util.List.add:(Ljava/lang/Object;)Z
            pop
         3: .line 432
            return
        end local 6 // int index
        end local 5 // org.objectweb.asm.Label end
        end local 4 // org.objectweb.asm.Label start
        end local 3 // java.lang.String signature
        end local 2 // java.lang.String desc
        end local 1 // java.lang.String name
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    4     0       this  Lorg/objectweb/asm/tree/MethodNode;
            0    4     1       name  Ljava/lang/String;
            0    4     2       desc  Ljava/lang/String;
            0    4     3  signature  Ljava/lang/String;
            0    4     4      start  Lorg/objectweb/asm/Label;
            0    4     5        end  Lorg/objectweb/asm/Label;
            0    4     6      index  I
    MethodParameters:
           Name  Flags
      name       final
      desc       final
      signature  final
      start      final
      end        final
      index      final

  public void visitLineNumber(int, org.objectweb.asm.Label);
    descriptor: (ILorg/objectweb/asm/Label;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=3, args_size=3
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // int line
        start local 2 // org.objectweb.asm.Label start
         0: .line 436
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
            new org.objectweb.asm.tree.LineNumberNode
            dup
            iload 1 /* line */
            aload 0 /* this */
            aload 2 /* start */
            invokevirtual org.objectweb.asm.tree.MethodNode.getLabelNode:(Lorg/objectweb/asm/Label;)Lorg/objectweb/asm/tree/LabelNode;
            invokespecial org.objectweb.asm.tree.LineNumberNode.<init>:(ILorg/objectweb/asm/tree/LabelNode;)V
            invokevirtual org.objectweb.asm.tree.InsnList.add:(Lorg/objectweb/asm/tree/AbstractInsnNode;)V
         1: .line 437
            return
        end local 2 // org.objectweb.asm.Label start
        end local 1 // int line
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/objectweb/asm/tree/MethodNode;
            0    2     1   line  I
            0    2     2  start  Lorg/objectweb/asm/Label;
    MethodParameters:
       Name  Flags
      line   final
      start  final

  public void visitMaxs(int, int);
    descriptor: (II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=3
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // int maxStack
        start local 2 // int maxLocals
         0: .line 441
            aload 0 /* this */
            iload 1 /* maxStack */
            putfield org.objectweb.asm.tree.MethodNode.maxStack:I
         1: .line 442
            aload 0 /* this */
            iload 2 /* maxLocals */
            putfield org.objectweb.asm.tree.MethodNode.maxLocals:I
         2: .line 443
            return
        end local 2 // int maxLocals
        end local 1 // int maxStack
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    3     0       this  Lorg/objectweb/asm/tree/MethodNode;
            0    3     1   maxStack  I
            0    3     2  maxLocals  I
    MethodParameters:
           Name  Flags
      maxStack   final
      maxLocals  final

  public void visitEnd();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=1, args_size=1
        start local 0 // org.objectweb.asm.tree.MethodNode this
         0: .line 447
            return
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/tree/MethodNode;

  protected org.objectweb.asm.tree.LabelNode getLabelNode(org.objectweb.asm.Label);
    descriptor: (Lorg/objectweb/asm/Label;)Lorg/objectweb/asm/tree/LabelNode;
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // org.objectweb.asm.Label l
         0: .line 460
            aload 1 /* l */
            getfield org.objectweb.asm.Label.info:Ljava/lang/Object;
            instanceof org.objectweb.asm.tree.LabelNode
            ifne 2
         1: .line 461
            aload 1 /* l */
            new org.objectweb.asm.tree.LabelNode
            dup
            invokespecial org.objectweb.asm.tree.LabelNode.<init>:()V
            putfield org.objectweb.asm.Label.info:Ljava/lang/Object;
         2: .line 463
      StackMap locals:
      StackMap stack:
            aload 1 /* l */
            getfield org.objectweb.asm.Label.info:Ljava/lang/Object;
            checkcast org.objectweb.asm.tree.LabelNode
            areturn
        end local 1 // org.objectweb.asm.Label l
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/objectweb/asm/tree/MethodNode;
            0    3     1     l  Lorg/objectweb/asm/Label;
    MethodParameters:
      Name  Flags
      l     final

  private org.objectweb.asm.tree.LabelNode[] getLabelNodes(org.objectweb.asm.Label[]);
    descriptor: ([Lorg/objectweb/asm/Label;)[Lorg/objectweb/asm/tree/LabelNode;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=4, args_size=2
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // org.objectweb.asm.Label[] l
         0: .line 467
            aload 1 /* l */
            arraylength
            anewarray org.objectweb.asm.tree.LabelNode
            astore 2 /* nodes */
        start local 2 // org.objectweb.asm.tree.LabelNode[] nodes
         1: .line 468
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 5
         3: .line 469
      StackMap locals: org.objectweb.asm.tree.LabelNode[] int
      StackMap stack:
            aload 2 /* nodes */
            iload 3 /* i */
            aload 0 /* this */
            aload 1 /* l */
            iload 3 /* i */
            aaload
            invokevirtual org.objectweb.asm.tree.MethodNode.getLabelNode:(Lorg/objectweb/asm/Label;)Lorg/objectweb/asm/tree/LabelNode;
            aastore
         4: .line 468
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         5: iload 3 /* i */
            aload 1 /* l */
            arraylength
            if_icmplt 3
        end local 3 // int i
         6: .line 471
            aload 2 /* nodes */
            areturn
        end local 2 // org.objectweb.asm.tree.LabelNode[] nodes
        end local 1 // org.objectweb.asm.Label[] l
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0   this  Lorg/objectweb/asm/tree/MethodNode;
            0    7     1      l  [Lorg/objectweb/asm/Label;
            1    7     2  nodes  [Lorg/objectweb/asm/tree/LabelNode;
            2    6     3      i  I
    MethodParameters:
      Name  Flags
      l     final

  private java.lang.Object[] getLabelNodes(java.lang.Object[]);
    descriptor: ([Ljava/lang/Object;)[Ljava/lang/Object;
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // java.lang.Object[] objs
         0: .line 475
            aload 1 /* objs */
            arraylength
            anewarray java.lang.Object
            astore 2 /* nodes */
        start local 2 // java.lang.Object[] nodes
         1: .line 476
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         2: goto 8
         3: .line 477
      StackMap locals: java.lang.Object[] int
      StackMap stack:
            aload 1 /* objs */
            iload 3 /* i */
            aaload
            astore 4 /* o */
        start local 4 // java.lang.Object o
         4: .line 478
            aload 4 /* o */
            instanceof org.objectweb.asm.Label
            ifeq 6
         5: .line 479
            aload 0 /* this */
            aload 4 /* o */
            checkcast org.objectweb.asm.Label
            invokevirtual org.objectweb.asm.tree.MethodNode.getLabelNode:(Lorg/objectweb/asm/Label;)Lorg/objectweb/asm/tree/LabelNode;
            astore 4 /* o */
         6: .line 481
      StackMap locals: java.lang.Object
      StackMap stack:
            aload 2 /* nodes */
            iload 3 /* i */
            aload 4 /* o */
            aastore
        end local 4 // java.lang.Object o
         7: .line 476
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 3 /* i */
            aload 1 /* objs */
            arraylength
            if_icmplt 3
        end local 3 // int i
         9: .line 483
            aload 2 /* nodes */
            areturn
        end local 2 // java.lang.Object[] nodes
        end local 1 // java.lang.Object[] objs
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0   10     0   this  Lorg/objectweb/asm/tree/MethodNode;
            0   10     1   objs  [Ljava/lang/Object;
            1   10     2  nodes  [Ljava/lang/Object;
            2    9     3      i  I
            4    7     4      o  Ljava/lang/Object;
    MethodParameters:
      Name  Flags
      objs  final

  public void check(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // int api
         0: .line 501
            return
        end local 1 // int api
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/objectweb/asm/tree/MethodNode;
            0    1     1   api  I
    MethodParameters:
      Name  Flags
      api   final

  public void accept(org.objectweb.asm.ClassVisitor);
    descriptor: (Lorg/objectweb/asm/ClassVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=4, args_size=2
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // org.objectweb.asm.ClassVisitor cv
         0: .line 510
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.exceptions:Ljava/util/List;
            invokeinterface java.util.List.size:()I
            anewarray java.lang.String
            astore 2 /* exceptions */
        start local 2 // java.lang.String[] exceptions
         1: .line 511
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.exceptions:Ljava/util/List;
            aload 2 /* exceptions */
            invokeinterface java.util.List.toArray:([Ljava/lang/Object;)[Ljava/lang/Object;
            pop
         2: .line 512
            aload 1 /* cv */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.access:I
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.name:Ljava/lang/String;
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.desc:Ljava/lang/String;
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.signature:Ljava/lang/String;
         3: .line 513
            aload 2 /* exceptions */
         4: .line 512
            invokevirtual org.objectweb.asm.ClassVisitor.visitMethod:(ILjava/lang/String;Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)Lorg/objectweb/asm/MethodVisitor;
            astore 3 /* mv */
        start local 3 // org.objectweb.asm.MethodVisitor mv
         5: .line 514
            aload 3 /* mv */
            ifnull 7
         6: .line 515
            aload 0 /* this */
            aload 3 /* mv */
            invokevirtual org.objectweb.asm.tree.MethodNode.accept:(Lorg/objectweb/asm/MethodVisitor;)V
         7: .line 517
      StackMap locals: java.lang.String[] org.objectweb.asm.MethodVisitor
      StackMap stack:
            return
        end local 3 // org.objectweb.asm.MethodVisitor mv
        end local 2 // java.lang.String[] exceptions
        end local 1 // org.objectweb.asm.ClassVisitor cv
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    8     0        this  Lorg/objectweb/asm/tree/MethodNode;
            0    8     1          cv  Lorg/objectweb/asm/ClassVisitor;
            1    8     2  exceptions  [Ljava/lang/String;
            5    8     3          mv  Lorg/objectweb/asm/MethodVisitor;
    MethodParameters:
      Name  Flags
      cv    final

  public void accept(org.objectweb.asm.MethodVisitor);
    descriptor: (Lorg/objectweb/asm/MethodVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=7, args_size=2
        start local 0 // org.objectweb.asm.tree.MethodNode this
        start local 1 // org.objectweb.asm.MethodVisitor mv
         0: .line 528
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.annotationDefault:Ljava/lang/Object;
            ifnull 5
         1: .line 529
            aload 1 /* mv */
            invokevirtual org.objectweb.asm.MethodVisitor.visitAnnotationDefault:()Lorg/objectweb/asm/AnnotationVisitor;
            astore 5 /* av */
        start local 5 // org.objectweb.asm.AnnotationVisitor av
         2: .line 530
            aload 5 /* av */
            aconst_null
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.annotationDefault:Ljava/lang/Object;
            invokestatic org.objectweb.asm.tree.AnnotationNode.accept:(Lorg/objectweb/asm/AnnotationVisitor;Ljava/lang/String;Ljava/lang/Object;)V
         3: .line 531
            aload 5 /* av */
            ifnull 5
         4: .line 532
            aload 5 /* av */
            invokevirtual org.objectweb.asm.AnnotationVisitor.visitEnd:()V
        end local 5 // org.objectweb.asm.AnnotationVisitor av
         5: .line 535
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.visibleAnnotations:Ljava/util/List;
            ifnonnull 6
            iconst_0
            goto 7
      StackMap locals:
      StackMap stack:
         6: aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.visibleAnnotations:Ljava/util/List;
            invokeinterface java.util.List.size:()I
      StackMap locals:
      StackMap stack: int
         7: istore 4 /* n */
        start local 4 // int n
         8: .line 536
            iconst_0
            istore 2 /* i */
        start local 2 // int i
         9: goto 13
        10: .line 537
      StackMap locals: org.objectweb.asm.tree.MethodNode org.objectweb.asm.MethodVisitor int top int
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.visibleAnnotations:Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.objectweb.asm.tree.AnnotationNode
            astore 5 /* an */
        start local 5 // org.objectweb.asm.tree.AnnotationNode an
        11: .line 538
            aload 5 /* an */
            aload 1 /* mv */
            aload 5 /* an */
            getfield org.objectweb.asm.tree.AnnotationNode.desc:Ljava/lang/String;
            iconst_1
            invokevirtual org.objectweb.asm.MethodVisitor.visitAnnotation:(Ljava/lang/String;Z)Lorg/objectweb/asm/AnnotationVisitor;
            invokevirtual org.objectweb.asm.tree.AnnotationNode.accept:(Lorg/objectweb/asm/AnnotationVisitor;)V
        end local 5 // org.objectweb.asm.tree.AnnotationNode an
        12: .line 536
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        13: iload 2 /* i */
            iload 4 /* n */
            if_icmplt 10
        14: .line 540
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.invisibleAnnotations:Ljava/util/List;
            ifnonnull 15
            iconst_0
            goto 16
      StackMap locals:
      StackMap stack:
        15: aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.invisibleAnnotations:Ljava/util/List;
            invokeinterface java.util.List.size:()I
      StackMap locals:
      StackMap stack: int
        16: istore 4 /* n */
        17: .line 541
            iconst_0
            istore 2 /* i */
            goto 21
        18: .line 542
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.invisibleAnnotations:Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.objectweb.asm.tree.AnnotationNode
            astore 5 /* an */
        start local 5 // org.objectweb.asm.tree.AnnotationNode an
        19: .line 543
            aload 5 /* an */
            aload 1 /* mv */
            aload 5 /* an */
            getfield org.objectweb.asm.tree.AnnotationNode.desc:Ljava/lang/String;
            iconst_0
            invokevirtual org.objectweb.asm.MethodVisitor.visitAnnotation:(Ljava/lang/String;Z)Lorg/objectweb/asm/AnnotationVisitor;
            invokevirtual org.objectweb.asm.tree.AnnotationNode.accept:(Lorg/objectweb/asm/AnnotationVisitor;)V
        end local 5 // org.objectweb.asm.tree.AnnotationNode an
        20: .line 541
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        21: iload 2 /* i */
            iload 4 /* n */
            if_icmplt 18
        22: .line 545
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.visibleParameterAnnotations:[Ljava/util/List;
            ifnonnull 23
            iconst_0
            goto 24
        23: .line 546
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.visibleParameterAnnotations:[Ljava/util/List;
            arraylength
        24: .line 545
      StackMap locals:
      StackMap stack: int
            istore 4 /* n */
        25: .line 547
            iconst_0
            istore 2 /* i */
            goto 36
        26: .line 548
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.visibleParameterAnnotations:[Ljava/util/List;
            iload 2 /* i */
            aaload
            astore 5 /* l */
        start local 5 // java.util.List l
        27: .line 549
            aload 5 /* l */
            ifnonnull 29
        28: .line 550
            goto 35
        29: .line 552
      StackMap locals: java.util.List
      StackMap stack:
            iconst_0
            istore 3 /* j */
        start local 3 // int j
        30: goto 34
        31: .line 553
      StackMap locals: org.objectweb.asm.tree.MethodNode org.objectweb.asm.MethodVisitor int int int java.util.List
      StackMap stack:
            aload 5 /* l */
            iload 3 /* j */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.objectweb.asm.tree.AnnotationNode
            astore 6 /* an */
        start local 6 // org.objectweb.asm.tree.AnnotationNode an
        32: .line 554
            aload 6 /* an */
            aload 1 /* mv */
            iload 2 /* i */
            aload 6 /* an */
            getfield org.objectweb.asm.tree.AnnotationNode.desc:Ljava/lang/String;
            iconst_1
            invokevirtual org.objectweb.asm.MethodVisitor.visitParameterAnnotation:(ILjava/lang/String;Z)Lorg/objectweb/asm/AnnotationVisitor;
            invokevirtual org.objectweb.asm.tree.AnnotationNode.accept:(Lorg/objectweb/asm/AnnotationVisitor;)V
        end local 6 // org.objectweb.asm.tree.AnnotationNode an
        33: .line 552
            iinc 3 /* j */ 1
      StackMap locals:
      StackMap stack:
        34: iload 3 /* j */
            aload 5 /* l */
            invokeinterface java.util.List.size:()I
            if_icmplt 31
        end local 5 // java.util.List l
        end local 3 // int j
        35: .line 547
      StackMap locals: org.objectweb.asm.tree.MethodNode org.objectweb.asm.MethodVisitor int top int
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        36: iload 2 /* i */
            iload 4 /* n */
            if_icmplt 26
        37: .line 557
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.invisibleParameterAnnotations:[Ljava/util/List;
            ifnonnull 38
            iconst_0
            goto 39
        38: .line 558
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.invisibleParameterAnnotations:[Ljava/util/List;
            arraylength
        39: .line 557
      StackMap locals:
      StackMap stack: int
            istore 4 /* n */
        40: .line 559
            iconst_0
            istore 2 /* i */
            goto 51
        41: .line 560
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.invisibleParameterAnnotations:[Ljava/util/List;
            iload 2 /* i */
            aaload
            astore 5 /* l */
        start local 5 // java.util.List l
        42: .line 561
            aload 5 /* l */
            ifnonnull 44
        43: .line 562
            goto 50
        44: .line 564
      StackMap locals: java.util.List
      StackMap stack:
            iconst_0
            istore 3 /* j */
        start local 3 // int j
        45: goto 49
        46: .line 565
      StackMap locals: org.objectweb.asm.tree.MethodNode org.objectweb.asm.MethodVisitor int int int java.util.List
      StackMap stack:
            aload 5 /* l */
            iload 3 /* j */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.objectweb.asm.tree.AnnotationNode
            astore 6 /* an */
        start local 6 // org.objectweb.asm.tree.AnnotationNode an
        47: .line 566
            aload 6 /* an */
            aload 1 /* mv */
            iload 2 /* i */
            aload 6 /* an */
            getfield org.objectweb.asm.tree.AnnotationNode.desc:Ljava/lang/String;
            iconst_0
            invokevirtual org.objectweb.asm.MethodVisitor.visitParameterAnnotation:(ILjava/lang/String;Z)Lorg/objectweb/asm/AnnotationVisitor;
            invokevirtual org.objectweb.asm.tree.AnnotationNode.accept:(Lorg/objectweb/asm/AnnotationVisitor;)V
        end local 6 // org.objectweb.asm.tree.AnnotationNode an
        48: .line 564
            iinc 3 /* j */ 1
      StackMap locals:
      StackMap stack:
        49: iload 3 /* j */
            aload 5 /* l */
            invokeinterface java.util.List.size:()I
            if_icmplt 46
        end local 5 // java.util.List l
        end local 3 // int j
        50: .line 559
      StackMap locals: org.objectweb.asm.tree.MethodNode org.objectweb.asm.MethodVisitor int top int
      StackMap stack:
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        51: iload 2 /* i */
            iload 4 /* n */
            if_icmplt 41
        52: .line 569
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.visited:Z
            ifeq 54
        53: .line 570
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
            invokevirtual org.objectweb.asm.tree.InsnList.resetLabels:()V
        54: .line 572
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.attrs:Ljava/util/List;
            ifnonnull 55
            iconst_0
            goto 56
      StackMap locals:
      StackMap stack:
        55: aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.attrs:Ljava/util/List;
            invokeinterface java.util.List.size:()I
      StackMap locals:
      StackMap stack: int
        56: istore 4 /* n */
        57: .line 573
            iconst_0
            istore 2 /* i */
            goto 60
        58: .line 574
      StackMap locals:
      StackMap stack:
            aload 1 /* mv */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.attrs:Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.objectweb.asm.Attribute
            invokevirtual org.objectweb.asm.MethodVisitor.visitAttribute:(Lorg/objectweb/asm/Attribute;)V
        59: .line 573
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        60: iload 2 /* i */
            iload 4 /* n */
            if_icmplt 58
        61: .line 577
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
            invokevirtual org.objectweb.asm.tree.InsnList.size:()I
            ifle 80
        62: .line 578
            aload 1 /* mv */
            invokevirtual org.objectweb.asm.MethodVisitor.visitCode:()V
        63: .line 580
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.tryCatchBlocks:Ljava/util/List;
            ifnonnull 64
            iconst_0
            goto 65
      StackMap locals:
      StackMap stack:
        64: aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.tryCatchBlocks:Ljava/util/List;
            invokeinterface java.util.List.size:()I
      StackMap locals:
      StackMap stack: int
        65: istore 4 /* n */
        66: .line 581
            iconst_0
            istore 2 /* i */
            goto 69
        67: .line 582
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.tryCatchBlocks:Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.objectweb.asm.tree.TryCatchBlockNode
            aload 1 /* mv */
            invokevirtual org.objectweb.asm.tree.TryCatchBlockNode.accept:(Lorg/objectweb/asm/MethodVisitor;)V
        68: .line 581
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        69: iload 2 /* i */
            iload 4 /* n */
            if_icmplt 67
        70: .line 585
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.instructions:Lorg/objectweb/asm/tree/InsnList;
            aload 1 /* mv */
            invokevirtual org.objectweb.asm.tree.InsnList.accept:(Lorg/objectweb/asm/MethodVisitor;)V
        71: .line 587
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.localVariables:Ljava/util/List;
            ifnonnull 72
            iconst_0
            goto 73
      StackMap locals:
      StackMap stack:
        72: aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.localVariables:Ljava/util/List;
            invokeinterface java.util.List.size:()I
      StackMap locals:
      StackMap stack: int
        73: istore 4 /* n */
        74: .line 588
            iconst_0
            istore 2 /* i */
            goto 77
        75: .line 589
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.localVariables:Ljava/util/List;
            iload 2 /* i */
            invokeinterface java.util.List.get:(I)Ljava/lang/Object;
            checkcast org.objectweb.asm.tree.LocalVariableNode
            aload 1 /* mv */
            invokevirtual org.objectweb.asm.tree.LocalVariableNode.accept:(Lorg/objectweb/asm/MethodVisitor;)V
        76: .line 588
            iinc 2 /* i */ 1
      StackMap locals:
      StackMap stack:
        77: iload 2 /* i */
            iload 4 /* n */
            if_icmplt 75
        78: .line 592
            aload 1 /* mv */
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.maxStack:I
            aload 0 /* this */
            getfield org.objectweb.asm.tree.MethodNode.maxLocals:I
            invokevirtual org.objectweb.asm.MethodVisitor.visitMaxs:(II)V
        79: .line 593
            aload 0 /* this */
            iconst_1
            putfield org.objectweb.asm.tree.MethodNode.visited:Z
        80: .line 595
      StackMap locals:
      StackMap stack:
            aload 1 /* mv */
            invokevirtual org.objectweb.asm.MethodVisitor.visitEnd:()V
        81: .line 596
            return
        end local 4 // int n
        end local 2 // int i
        end local 1 // org.objectweb.asm.MethodVisitor mv
        end local 0 // org.objectweb.asm.tree.MethodNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0   82     0  this  Lorg/objectweb/asm/tree/MethodNode;
            0   82     1    mv  Lorg/objectweb/asm/MethodVisitor;
            9   82     2     i  I
           30   35     3     j  I
           45   50     3     j  I
            8   82     4     n  I
            2    5     5    av  Lorg/objectweb/asm/AnnotationVisitor;
           11   12     5    an  Lorg/objectweb/asm/tree/AnnotationNode;
           19   20     5    an  Lorg/objectweb/asm/tree/AnnotationNode;
           27   35     5     l  Ljava/util/List<*>;
           32   33     6    an  Lorg/objectweb/asm/tree/AnnotationNode;
           42   50     5     l  Ljava/util/List<*>;
           47   48     6    an  Lorg/objectweb/asm/tree/AnnotationNode;
    MethodParameters:
      Name  Flags
      mv    final
}
SourceFile: "MethodNode.java"
NestMembers:
  org.objectweb.asm.tree.MethodNode$1
InnerClasses:
  org.objectweb.asm.tree.MethodNode$1