public class android.gesture.Gesture implements android.os.Parcelable
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: android.gesture.Gesture
  super_class: java.lang.Object
{
  private static final long GESTURE_ID_BASE;
    descriptor: J
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private static final int BITMAP_RENDERING_WIDTH;
    descriptor: I
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 2

  private static final boolean BITMAP_RENDERING_ANTIALIAS;
    descriptor: Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private static final boolean BITMAP_RENDERING_DITHER;
    descriptor: Z
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL
    ConstantValue: 1

  private static final java.util.concurrent.atomic.AtomicInteger sGestureCount;
    descriptor: Ljava/util/concurrent/atomic/AtomicInteger;
    flags: (0x001a) ACC_PRIVATE, ACC_STATIC, ACC_FINAL

  private final android.graphics.RectF mBoundingBox;
    descriptor: Landroid/graphics/RectF;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private long mGestureID;
    descriptor: J
    flags: (0x0002) ACC_PRIVATE

  private final java.util.ArrayList<android.gesture.GestureStroke> mStrokes;
    descriptor: Ljava/util/ArrayList;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/ArrayList<Landroid/gesture/GestureStroke;>;

  public static final android.os.Parcelable$Creator<android.gesture.Gesture> CREATOR;
    descriptor: Landroid/os/Parcelable$Creator;
    flags: (0x0019) ACC_PUBLIC, ACC_STATIC, ACC_FINAL
    Signature: Landroid/os/Parcelable$Creator<Landroid/gesture/Gesture;>;

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=0, args_size=0
         0: .line 43
            invokestatic java.lang.System.currentTimeMillis:()J
            putstatic android.gesture.Gesture.GESTURE_ID_BASE:J
         1: .line 50
            new java.util.concurrent.atomic.AtomicInteger
            dup
            iconst_0
            invokespecial java.util.concurrent.atomic.AtomicInteger.<init>:(I)V
            putstatic android.gesture.Gesture.sGestureCount:Ljava/util/concurrent/atomic/AtomicInteger;
         2: .line 283
            new android.gesture.Gesture$1
            dup
            invokespecial android.gesture.Gesture$1.<init>:()V
            putstatic android.gesture.Gesture.CREATOR:Landroid/os/Parcelable$Creator;
         3: .line 309
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=1, args_size=1
        start local 0 // android.gesture.Gesture this
         0: .line 59
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 52
            aload 0 /* this */
            new android.graphics.RectF
            dup
            invokespecial android.graphics.RectF.<init>:()V
            putfield android.gesture.Gesture.mBoundingBox:Landroid/graphics/RectF;
         2: .line 57
            aload 0 /* this */
            new java.util.ArrayList
            dup
            invokespecial java.util.ArrayList.<init>:()V
            putfield android.gesture.Gesture.mStrokes:Ljava/util/ArrayList;
         3: .line 60
            aload 0 /* this */
            getstatic android.gesture.Gesture.GESTURE_ID_BASE:J
            getstatic android.gesture.Gesture.sGestureCount:Ljava/util/concurrent/atomic/AtomicInteger;
            invokevirtual java.util.concurrent.atomic.AtomicInteger.incrementAndGet:()I
            i2l
            ladd
            putfield android.gesture.Gesture.mGestureID:J
         4: .line 61
            return
        end local 0 // android.gesture.Gesture this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Landroid/gesture/Gesture;

  public java.lang.Object clone();
    descriptor: ()Ljava/lang/Object;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=1
        start local 0 // android.gesture.Gesture this
         0: .line 65
            new android.gesture.Gesture
            dup
            invokespecial android.gesture.Gesture.<init>:()V
            astore 1 /* gesture */
        start local 1 // android.gesture.Gesture gesture
         1: .line 66
            aload 1 /* gesture */
            getfield android.gesture.Gesture.mBoundingBox:Landroid/graphics/RectF;
            aload 0 /* this */
            getfield android.gesture.Gesture.mBoundingBox:Landroid/graphics/RectF;
            getfield android.graphics.RectF.left:F
            aload 0 /* this */
            getfield android.gesture.Gesture.mBoundingBox:Landroid/graphics/RectF;
            getfield android.graphics.RectF.top:F
         2: .line 67
            aload 0 /* this */
            getfield android.gesture.Gesture.mBoundingBox:Landroid/graphics/RectF;
            getfield android.graphics.RectF.right:F
            aload 0 /* this */
            getfield android.gesture.Gesture.mBoundingBox:Landroid/graphics/RectF;
            getfield android.graphics.RectF.bottom:F
         3: .line 66
            invokevirtual android.graphics.RectF.set:(FFFF)V
         4: .line 68
            aload 0 /* this */
            getfield android.gesture.Gesture.mStrokes:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            istore 2 /* count */
        start local 2 // int count
         5: .line 69
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         6: goto 10
         7: .line 70
      StackMap locals: android.gesture.Gesture int int
      StackMap stack:
            aload 0 /* this */
            getfield android.gesture.Gesture.mStrokes:Ljava/util/ArrayList;
            iload 3 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast android.gesture.GestureStroke
            astore 4 /* stroke */
        start local 4 // android.gesture.GestureStroke stroke
         8: .line 71
            aload 1 /* gesture */
            getfield android.gesture.Gesture.mStrokes:Ljava/util/ArrayList;
            aload 4 /* stroke */
            invokevirtual android.gesture.GestureStroke.clone:()Ljava/lang/Object;
            checkcast android.gesture.GestureStroke
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
        end local 4 // android.gesture.GestureStroke stroke
         9: .line 69
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
        10: iload 3 /* i */
            iload 2 /* count */
            if_icmplt 7
        end local 3 // int i
        11: .line 73
            aload 1 /* gesture */
            areturn
        end local 2 // int count
        end local 1 // android.gesture.Gesture gesture
        end local 0 // android.gesture.Gesture this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   12     0     this  Landroid/gesture/Gesture;
            1   12     1  gesture  Landroid/gesture/Gesture;
            5   12     2    count  I
            6   11     3        i  I
            8    9     4   stroke  Landroid/gesture/GestureStroke;

  public java.util.ArrayList<android.gesture.GestureStroke> getStrokes();
    descriptor: ()Ljava/util/ArrayList;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.gesture.Gesture this
         0: .line 80
            aload 0 /* this */
            getfield android.gesture.Gesture.mStrokes:Ljava/util/ArrayList;
            areturn
        end local 0 // android.gesture.Gesture this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/gesture/Gesture;
    Signature: ()Ljava/util/ArrayList<Landroid/gesture/GestureStroke;>;

  public int getStrokesCount();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.gesture.Gesture this
         0: .line 87
            aload 0 /* this */
            getfield android.gesture.Gesture.mStrokes:Ljava/util/ArrayList;
            invokevirtual java.util.ArrayList.size:()I
            ireturn
        end local 0 // android.gesture.Gesture this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/gesture/Gesture;

  public void addStroke(android.gesture.GestureStroke);
    descriptor: (Landroid/gesture/GestureStroke;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // android.gesture.Gesture this
        start local 1 // android.gesture.GestureStroke stroke
         0: .line 96
            aload 0 /* this */
            getfield android.gesture.Gesture.mStrokes:Ljava/util/ArrayList;
            aload 1 /* stroke */
            invokevirtual java.util.ArrayList.add:(Ljava/lang/Object;)Z
            pop
         1: .line 97
            aload 0 /* this */
            getfield android.gesture.Gesture.mBoundingBox:Landroid/graphics/RectF;
            aload 1 /* stroke */
            getfield android.gesture.GestureStroke.boundingBox:Landroid/graphics/RectF;
            invokevirtual android.graphics.RectF.union:(Landroid/graphics/RectF;)V
         2: .line 98
            return
        end local 1 // android.gesture.GestureStroke stroke
        end local 0 // android.gesture.Gesture this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Landroid/gesture/Gesture;
            0    3     1  stroke  Landroid/gesture/GestureStroke;
    MethodParameters:
        Name  Flags
      stroke  

  public float getLength();
    descriptor: ()F
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=1
        start local 0 // android.gesture.Gesture this
         0: .line 107
            iconst_0
            istore 1 /* len */
        start local 1 // int len
         1: .line 108
            aload 0 /* this */
            getfield android.gesture.Gesture.mStrokes:Ljava/util/ArrayList;
            astore 2 /* strokes */
        start local 2 // java.util.ArrayList strokes
         2: .line 109
            aload 2 /* strokes */
            invokevirtual java.util.ArrayList.size:()I
            istore 3 /* count */
        start local 3 // int count
         3: .line 111
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: goto 7
         5: .line 112
      StackMap locals: android.gesture.Gesture int java.util.ArrayList int int
      StackMap stack:
            iload 1 /* len */
            i2f
            aload 2 /* strokes */
            iload 4 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast android.gesture.GestureStroke
            getfield android.gesture.GestureStroke.length:F
            fadd
            f2i
            istore 1 /* len */
         6: .line 111
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            iload 3 /* count */
            if_icmplt 5
        end local 4 // int i
         8: .line 115
            iload 1 /* len */
            i2f
            freturn
        end local 3 // int count
        end local 2 // java.util.ArrayList strokes
        end local 1 // int len
        end local 0 // android.gesture.Gesture this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Landroid/gesture/Gesture;
            1    9     1      len  I
            2    9     2  strokes  Ljava/util/ArrayList<Landroid/gesture/GestureStroke;>;
            3    9     3    count  I
            4    8     4        i  I

  public android.graphics.RectF getBoundingBox();
    descriptor: ()Landroid/graphics/RectF;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.gesture.Gesture this
         0: .line 122
            aload 0 /* this */
            getfield android.gesture.Gesture.mBoundingBox:Landroid/graphics/RectF;
            areturn
        end local 0 // android.gesture.Gesture this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/gesture/Gesture;

  public android.graphics.Path toPath();
    descriptor: ()Landroid/graphics/Path;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.gesture.Gesture this
         0: .line 126
            aload 0 /* this */
            aconst_null
            invokevirtual android.gesture.Gesture.toPath:(Landroid/graphics/Path;)Landroid/graphics/Path;
            areturn
        end local 0 // android.gesture.Gesture this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/gesture/Gesture;

  public android.graphics.Path toPath(android.graphics.Path);
    descriptor: (Landroid/graphics/Path;)Landroid/graphics/Path;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // android.gesture.Gesture this
        start local 1 // android.graphics.Path path
         0: .line 130
            aload 1 /* path */
            ifnonnull 1
            new android.graphics.Path
            dup
            invokespecial android.graphics.Path.<init>:()V
            astore 1 /* path */
         1: .line 132
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.gesture.Gesture.mStrokes:Ljava/util/ArrayList;
            astore 2 /* strokes */
        start local 2 // java.util.ArrayList strokes
         2: .line 133
            aload 2 /* strokes */
            invokevirtual java.util.ArrayList.size:()I
            istore 3 /* count */
        start local 3 // int count
         3: .line 135
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         4: goto 7
         5: .line 136
      StackMap locals: java.util.ArrayList int int
      StackMap stack:
            aload 1 /* path */
            aload 2 /* strokes */
            iload 4 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast android.gesture.GestureStroke
            invokevirtual android.gesture.GestureStroke.getPath:()Landroid/graphics/Path;
            invokevirtual android.graphics.Path.addPath:(Landroid/graphics/Path;)V
         6: .line 135
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 4 /* i */
            iload 3 /* count */
            if_icmplt 5
        end local 4 // int i
         8: .line 139
            aload 1 /* path */
            areturn
        end local 3 // int count
        end local 2 // java.util.ArrayList strokes
        end local 1 // android.graphics.Path path
        end local 0 // android.gesture.Gesture this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0     this  Landroid/gesture/Gesture;
            0    9     1     path  Landroid/graphics/Path;
            2    9     2  strokes  Ljava/util/ArrayList<Landroid/gesture/GestureStroke;>;
            3    9     3    count  I
            4    8     4        i  I
    MethodParameters:
      Name  Flags
      path  

  public android.graphics.Path toPath(int, int, int, int);
    descriptor: (IIII)Landroid/graphics/Path;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=5, args_size=5
        start local 0 // android.gesture.Gesture this
        start local 1 // int width
        start local 2 // int height
        start local 3 // int edge
        start local 4 // int numSample
         0: .line 143
            aload 0 /* this */
            aconst_null
            iload 1 /* width */
            iload 2 /* height */
            iload 3 /* edge */
            iload 4 /* numSample */
            invokevirtual android.gesture.Gesture.toPath:(Landroid/graphics/Path;IIII)Landroid/graphics/Path;
            areturn
        end local 4 // int numSample
        end local 3 // int edge
        end local 2 // int height
        end local 1 // int width
        end local 0 // android.gesture.Gesture this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    1     0       this  Landroid/gesture/Gesture;
            0    1     1      width  I
            0    1     2     height  I
            0    1     3       edge  I
            0    1     4  numSample  I
    MethodParameters:
           Name  Flags
      width      
      height     
      edge       
      numSample  

  public android.graphics.Path toPath(android.graphics.Path, int, int, int, int);
    descriptor: (Landroid/graphics/Path;IIII)Landroid/graphics/Path;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=9, args_size=6
        start local 0 // android.gesture.Gesture this
        start local 1 // android.graphics.Path path
        start local 2 // int width
        start local 3 // int height
        start local 4 // int edge
        start local 5 // int numSample
         0: .line 147
            aload 1 /* path */
            ifnonnull 1
            new android.graphics.Path
            dup
            invokespecial android.graphics.Path.<init>:()V
            astore 1 /* path */
         1: .line 149
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield android.gesture.Gesture.mStrokes:Ljava/util/ArrayList;
            astore 6 /* strokes */
        start local 6 // java.util.ArrayList strokes
         2: .line 150
            aload 6 /* strokes */
            invokevirtual java.util.ArrayList.size:()I
            istore 7 /* count */
        start local 7 // int count
         3: .line 152
            iconst_0
            istore 8 /* i */
        start local 8 // int i
         4: goto 7
         5: .line 153
      StackMap locals: java.util.ArrayList int int
      StackMap stack:
            aload 1 /* path */
            aload 6 /* strokes */
            iload 8 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast android.gesture.GestureStroke
            iload 2 /* width */
            iconst_2
            iload 4 /* edge */
            imul
            isub
            i2f
            iload 3 /* height */
            iconst_2
            iload 4 /* edge */
            imul
            isub
            i2f
            iload 5 /* numSample */
            invokevirtual android.gesture.GestureStroke.toPath:(FFI)Landroid/graphics/Path;
            invokevirtual android.graphics.Path.addPath:(Landroid/graphics/Path;)V
         6: .line 152
            iinc 8 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 8 /* i */
            iload 7 /* count */
            if_icmplt 5
        end local 8 // int i
         8: .line 156
            aload 1 /* path */
            areturn
        end local 7 // int count
        end local 6 // java.util.ArrayList strokes
        end local 5 // int numSample
        end local 4 // int edge
        end local 3 // int height
        end local 2 // int width
        end local 1 // android.graphics.Path path
        end local 0 // android.gesture.Gesture this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0    9     0       this  Landroid/gesture/Gesture;
            0    9     1       path  Landroid/graphics/Path;
            0    9     2      width  I
            0    9     3     height  I
            0    9     4       edge  I
            0    9     5  numSample  I
            2    9     6    strokes  Ljava/util/ArrayList<Landroid/gesture/GestureStroke;>;
            3    9     7      count  I
            4    8     8          i  I
    MethodParameters:
           Name  Flags
      path       
      width      
      height     
      edge       
      numSample  

  void setID(long);
    descriptor: (J)V
    flags: (0x0000) 
    Code:
      stack=3, locals=3, args_size=2
        start local 0 // android.gesture.Gesture this
        start local 1 // long id
         0: .line 165
            aload 0 /* this */
            lload 1 /* id */
            putfield android.gesture.Gesture.mGestureID:J
         1: .line 166
            return
        end local 1 // long id
        end local 0 // android.gesture.Gesture this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Landroid/gesture/Gesture;
            0    2     1    id  J
    MethodParameters:
      Name  Flags
      id    

  public long getID();
    descriptor: ()J
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // android.gesture.Gesture this
         0: .line 172
            aload 0 /* this */
            getfield android.gesture.Gesture.mGestureID:J
            lreturn
        end local 0 // android.gesture.Gesture this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/gesture/Gesture;

  public android.graphics.Bitmap toBitmap(int, int, int, int, int);
    descriptor: (IIIII)Landroid/graphics/Bitmap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=13, args_size=6
        start local 0 // android.gesture.Gesture this
        start local 1 // int width
        start local 2 // int height
        start local 3 // int edge
        start local 4 // int numSample
        start local 5 // int color
         0: .line 186
            iload 1 /* width */
            iload 2 /* height */
            getstatic android.graphics.Bitmap$Config.ARGB_8888:Landroid/graphics/Bitmap$Config;
            invokestatic android.graphics.Bitmap.createBitmap:(IILandroid/graphics/Bitmap$Config;)Landroid/graphics/Bitmap;
            astore 6 /* bitmap */
        start local 6 // android.graphics.Bitmap bitmap
         1: .line 187
            new android.graphics.Canvas
            dup
            aload 6 /* bitmap */
            invokespecial android.graphics.Canvas.<init>:(Landroid/graphics/Bitmap;)V
            astore 7 /* canvas */
        start local 7 // android.graphics.Canvas canvas
         2: .line 189
            aload 7 /* canvas */
            iload 3 /* edge */
            i2f
            iload 3 /* edge */
            i2f
            invokevirtual android.graphics.Canvas.translate:(FF)V
         3: .line 191
            new android.graphics.Paint
            dup
            invokespecial android.graphics.Paint.<init>:()V
            astore 8 /* paint */
        start local 8 // android.graphics.Paint paint
         4: .line 192
            aload 8 /* paint */
            iconst_1
            invokevirtual android.graphics.Paint.setAntiAlias:(Z)V
         5: .line 193
            aload 8 /* paint */
            iconst_1
            invokevirtual android.graphics.Paint.setDither:(Z)V
         6: .line 194
            aload 8 /* paint */
            iload 5 /* color */
            invokevirtual android.graphics.Paint.setColor:(I)V
         7: .line 195
            aload 8 /* paint */
            getstatic android.graphics.Paint$Style.STROKE:Landroid/graphics/Paint$Style;
            invokevirtual android.graphics.Paint.setStyle:(Landroid/graphics/Paint$Style;)V
         8: .line 196
            aload 8 /* paint */
            getstatic android.graphics.Paint$Join.ROUND:Landroid/graphics/Paint$Join;
            invokevirtual android.graphics.Paint.setStrokeJoin:(Landroid/graphics/Paint$Join;)V
         9: .line 197
            aload 8 /* paint */
            getstatic android.graphics.Paint$Cap.ROUND:Landroid/graphics/Paint$Cap;
            invokevirtual android.graphics.Paint.setStrokeCap:(Landroid/graphics/Paint$Cap;)V
        10: .line 198
            aload 8 /* paint */
            fconst_2
            invokevirtual android.graphics.Paint.setStrokeWidth:(F)V
        11: .line 200
            aload 0 /* this */
            getfield android.gesture.Gesture.mStrokes:Ljava/util/ArrayList;
            astore 9 /* strokes */
        start local 9 // java.util.ArrayList strokes
        12: .line 201
            aload 9 /* strokes */
            invokevirtual java.util.ArrayList.size:()I
            istore 10 /* count */
        start local 10 // int count
        13: .line 203
            iconst_0
            istore 11 /* i */
        start local 11 // int i
        14: goto 18
        15: .line 204
      StackMap locals: android.gesture.Gesture int int int int int android.graphics.Bitmap android.graphics.Canvas android.graphics.Paint java.util.ArrayList int int
      StackMap stack:
            aload 9 /* strokes */
            iload 11 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast android.gesture.GestureStroke
            iload 1 /* width */
            iconst_2
            iload 3 /* edge */
            imul
            isub
            i2f
            iload 2 /* height */
            iconst_2
            iload 3 /* edge */
            imul
            isub
            i2f
            iload 4 /* numSample */
            invokevirtual android.gesture.GestureStroke.toPath:(FFI)Landroid/graphics/Path;
            astore 12 /* path */
        start local 12 // android.graphics.Path path
        16: .line 205
            aload 7 /* canvas */
            aload 12 /* path */
            aload 8 /* paint */
            invokevirtual android.graphics.Canvas.drawPath:(Landroid/graphics/Path;Landroid/graphics/Paint;)V
        end local 12 // android.graphics.Path path
        17: .line 203
            iinc 11 /* i */ 1
      StackMap locals:
      StackMap stack:
        18: iload 11 /* i */
            iload 10 /* count */
            if_icmplt 15
        end local 11 // int i
        19: .line 208
            aload 6 /* bitmap */
            areturn
        end local 10 // int count
        end local 9 // java.util.ArrayList strokes
        end local 8 // android.graphics.Paint paint
        end local 7 // android.graphics.Canvas canvas
        end local 6 // android.graphics.Bitmap bitmap
        end local 5 // int color
        end local 4 // int numSample
        end local 3 // int edge
        end local 2 // int height
        end local 1 // int width
        end local 0 // android.gesture.Gesture this
      LocalVariableTable:
        Start  End  Slot       Name  Signature
            0   20     0       this  Landroid/gesture/Gesture;
            0   20     1      width  I
            0   20     2     height  I
            0   20     3       edge  I
            0   20     4  numSample  I
            0   20     5      color  I
            1   20     6     bitmap  Landroid/graphics/Bitmap;
            2   20     7     canvas  Landroid/graphics/Canvas;
            4   20     8      paint  Landroid/graphics/Paint;
           12   20     9    strokes  Ljava/util/ArrayList<Landroid/gesture/GestureStroke;>;
           13   20    10      count  I
           14   19    11          i  I
           16   17    12       path  Landroid/graphics/Path;
    MethodParameters:
           Name  Flags
      width      
      height     
      edge       
      numSample  
      color      

  public android.graphics.Bitmap toBitmap(int, int, int, int);
    descriptor: (IIII)Landroid/graphics/Bitmap;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=6, locals=13, args_size=5
        start local 0 // android.gesture.Gesture this
        start local 1 // int width
        start local 2 // int height
        start local 3 // int inset
        start local 4 // int color
         0: .line 221
            iload 1 /* width */
            iload 2 /* height */
         1: .line 222
            getstatic android.graphics.Bitmap$Config.ARGB_8888:Landroid/graphics/Bitmap$Config;
         2: .line 221
            invokestatic android.graphics.Bitmap.createBitmap:(IILandroid/graphics/Bitmap$Config;)Landroid/graphics/Bitmap;
            astore 5 /* bitmap */
        start local 5 // android.graphics.Bitmap bitmap
         3: .line 223
            new android.graphics.Canvas
            dup
            aload 5 /* bitmap */
            invokespecial android.graphics.Canvas.<init>:(Landroid/graphics/Bitmap;)V
            astore 6 /* canvas */
        start local 6 // android.graphics.Canvas canvas
         4: .line 225
            new android.graphics.Paint
            dup
            invokespecial android.graphics.Paint.<init>:()V
            astore 7 /* paint */
        start local 7 // android.graphics.Paint paint
         5: .line 226
            aload 7 /* paint */
            iconst_1
            invokevirtual android.graphics.Paint.setAntiAlias:(Z)V
         6: .line 227
            aload 7 /* paint */
            iconst_1
            invokevirtual android.graphics.Paint.setDither:(Z)V
         7: .line 228
            aload 7 /* paint */
            iload 4 /* color */
            invokevirtual android.graphics.Paint.setColor:(I)V
         8: .line 229
            aload 7 /* paint */
            getstatic android.graphics.Paint$Style.STROKE:Landroid/graphics/Paint$Style;
            invokevirtual android.graphics.Paint.setStyle:(Landroid/graphics/Paint$Style;)V
         9: .line 230
            aload 7 /* paint */
            getstatic android.graphics.Paint$Join.ROUND:Landroid/graphics/Paint$Join;
            invokevirtual android.graphics.Paint.setStrokeJoin:(Landroid/graphics/Paint$Join;)V
        10: .line 231
            aload 7 /* paint */
            getstatic android.graphics.Paint$Cap.ROUND:Landroid/graphics/Paint$Cap;
            invokevirtual android.graphics.Paint.setStrokeCap:(Landroid/graphics/Paint$Cap;)V
        11: .line 232
            aload 7 /* paint */
            fconst_2
            invokevirtual android.graphics.Paint.setStrokeWidth:(F)V
        12: .line 234
            aload 0 /* this */
            invokevirtual android.gesture.Gesture.toPath:()Landroid/graphics/Path;
            astore 8 /* path */
        start local 8 // android.graphics.Path path
        13: .line 235
            new android.graphics.RectF
            dup
            invokespecial android.graphics.RectF.<init>:()V
            astore 9 /* bounds */
        start local 9 // android.graphics.RectF bounds
        14: .line 236
            aload 8 /* path */
            aload 9 /* bounds */
            iconst_1
            invokevirtual android.graphics.Path.computeBounds:(Landroid/graphics/RectF;Z)V
        15: .line 238
            iload 1 /* width */
            iconst_2
            iload 3 /* inset */
            imul
            isub
            i2f
            aload 9 /* bounds */
            invokevirtual android.graphics.RectF.width:()F
            fdiv
            fstore 10 /* sx */
        start local 10 // float sx
        16: .line 239
            iload 2 /* height */
            iconst_2
            iload 3 /* inset */
            imul
            isub
            i2f
            aload 9 /* bounds */
            invokevirtual android.graphics.RectF.height:()F
            fdiv
            fstore 11 /* sy */
        start local 11 // float sy
        17: .line 240
            fload 10 /* sx */
            fload 11 /* sy */
            fcmpl
            ifle 18
            fload 11 /* sy */
            goto 19
      StackMap locals: android.gesture.Gesture int int int int android.graphics.Bitmap android.graphics.Canvas android.graphics.Paint android.graphics.Path android.graphics.RectF float float
      StackMap stack:
        18: fload 10 /* sx */
      StackMap locals:
      StackMap stack: float
        19: fstore 12 /* scale */
        start local 12 // float scale
        20: .line 241
            aload 7 /* paint */
            fconst_2
            fload 12 /* scale */
            fdiv
            invokevirtual android.graphics.Paint.setStrokeWidth:(F)V
        21: .line 243
            aload 8 /* path */
            aload 9 /* bounds */
            getfield android.graphics.RectF.left:F
            fneg
            iload 1 /* width */
            i2f
            aload 9 /* bounds */
            invokevirtual android.graphics.RectF.width:()F
            fload 12 /* scale */
            fmul
            fsub
            fconst_2
            fdiv
            fadd
        22: .line 244
            aload 9 /* bounds */
            getfield android.graphics.RectF.top:F
            fneg
            iload 2 /* height */
            i2f
            aload 9 /* bounds */
            invokevirtual android.graphics.RectF.height:()F
            fload 12 /* scale */
            fmul
            fsub
            fconst_2
            fdiv
            fadd
        23: .line 243
            invokevirtual android.graphics.Path.offset:(FF)V
        24: .line 246
            aload 6 /* canvas */
            iload 3 /* inset */
            i2f
            iload 3 /* inset */
            i2f
            invokevirtual android.graphics.Canvas.translate:(FF)V
        25: .line 247
            aload 6 /* canvas */
            fload 12 /* scale */
            fload 12 /* scale */
            invokevirtual android.graphics.Canvas.scale:(FF)V
        26: .line 249
            aload 6 /* canvas */
            aload 8 /* path */
            aload 7 /* paint */
            invokevirtual android.graphics.Canvas.drawPath:(Landroid/graphics/Path;Landroid/graphics/Paint;)V
        27: .line 251
            aload 5 /* bitmap */
            areturn
        end local 12 // float scale
        end local 11 // float sy
        end local 10 // float sx
        end local 9 // android.graphics.RectF bounds
        end local 8 // android.graphics.Path path
        end local 7 // android.graphics.Paint paint
        end local 6 // android.graphics.Canvas canvas
        end local 5 // android.graphics.Bitmap bitmap
        end local 4 // int color
        end local 3 // int inset
        end local 2 // int height
        end local 1 // int width
        end local 0 // android.gesture.Gesture this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0   28     0    this  Landroid/gesture/Gesture;
            0   28     1   width  I
            0   28     2  height  I
            0   28     3   inset  I
            0   28     4   color  I
            3   28     5  bitmap  Landroid/graphics/Bitmap;
            4   28     6  canvas  Landroid/graphics/Canvas;
            5   28     7   paint  Landroid/graphics/Paint;
           13   28     8    path  Landroid/graphics/Path;
           14   28     9  bounds  Landroid/graphics/RectF;
           16   28    10      sx  F
           17   28    11      sy  F
           20   28    12   scale  F
    MethodParameters:
        Name  Flags
      width   
      height  
      inset   
      color   

  void serialize(java.io.DataOutputStream);
    descriptor: (Ljava/io/DataOutputStream;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=5, args_size=2
        start local 0 // android.gesture.Gesture this
        start local 1 // java.io.DataOutputStream out
         0: .line 255
            aload 0 /* this */
            getfield android.gesture.Gesture.mStrokes:Ljava/util/ArrayList;
            astore 2 /* strokes */
        start local 2 // java.util.ArrayList strokes
         1: .line 256
            aload 2 /* strokes */
            invokevirtual java.util.ArrayList.size:()I
            istore 3 /* count */
        start local 3 // int count
         2: .line 259
            aload 1 /* out */
            aload 0 /* this */
            getfield android.gesture.Gesture.mGestureID:J
            invokevirtual java.io.DataOutputStream.writeLong:(J)V
         3: .line 261
            aload 1 /* out */
            iload 3 /* count */
            invokevirtual java.io.DataOutputStream.writeInt:(I)V
         4: .line 263
            iconst_0
            istore 4 /* i */
        start local 4 // int i
         5: goto 8
         6: .line 264
      StackMap locals: java.util.ArrayList int int
      StackMap stack:
            aload 2 /* strokes */
            iload 4 /* i */
            invokevirtual java.util.ArrayList.get:(I)Ljava/lang/Object;
            checkcast android.gesture.GestureStroke
            aload 1 /* out */
            invokevirtual android.gesture.GestureStroke.serialize:(Ljava/io/DataOutputStream;)V
         7: .line 263
            iinc 4 /* i */ 1
      StackMap locals:
      StackMap stack:
         8: iload 4 /* i */
            iload 3 /* count */
            if_icmplt 6
        end local 4 // int i
         9: .line 266
            return
        end local 3 // int count
        end local 2 // java.util.ArrayList strokes
        end local 1 // java.io.DataOutputStream out
        end local 0 // android.gesture.Gesture this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0   10     0     this  Landroid/gesture/Gesture;
            0   10     1      out  Ljava/io/DataOutputStream;
            1   10     2  strokes  Ljava/util/ArrayList<Landroid/gesture/GestureStroke;>;
            2   10     3    count  I
            5    9     4        i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      out   

  static android.gesture.Gesture deserialize(java.io.DataInputStream);
    descriptor: (Ljava/io/DataInputStream;)Landroid/gesture/Gesture;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=4, args_size=1
        start local 0 // java.io.DataInputStream in
         0: .line 269
            new android.gesture.Gesture
            dup
            invokespecial android.gesture.Gesture.<init>:()V
            astore 1 /* gesture */
        start local 1 // android.gesture.Gesture gesture
         1: .line 272
            aload 1 /* gesture */
            aload 0 /* in */
            invokevirtual java.io.DataInputStream.readLong:()J
            putfield android.gesture.Gesture.mGestureID:J
         2: .line 274
            aload 0 /* in */
            invokevirtual java.io.DataInputStream.readInt:()I
            istore 2 /* count */
        start local 2 // int count
         3: .line 276
            iconst_0
            istore 3 /* i */
        start local 3 // int i
         4: goto 7
         5: .line 277
      StackMap locals: android.gesture.Gesture int int
      StackMap stack:
            aload 1 /* gesture */
            aload 0 /* in */
            invokestatic android.gesture.GestureStroke.deserialize:(Ljava/io/DataInputStream;)Landroid/gesture/GestureStroke;
            invokevirtual android.gesture.Gesture.addStroke:(Landroid/gesture/GestureStroke;)V
         6: .line 276
            iinc 3 /* i */ 1
      StackMap locals:
      StackMap stack:
         7: iload 3 /* i */
            iload 2 /* count */
            if_icmplt 5
        end local 3 // int i
         8: .line 280
            aload 1 /* gesture */
            areturn
        end local 2 // int count
        end local 1 // android.gesture.Gesture gesture
        end local 0 // java.io.DataInputStream in
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    9     0       in  Ljava/io/DataInputStream;
            1    9     1  gesture  Landroid/gesture/Gesture;
            3    9     2    count  I
            4    8     3        i  I
    Exceptions:
      throws java.io.IOException
    MethodParameters:
      Name  Flags
      in    

  public void writeToParcel(android.os.Parcel, int);
    descriptor: (Landroid/os/Parcel;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=8, args_size=3
        start local 0 // android.gesture.Gesture this
        start local 1 // android.os.Parcel out
        start local 2 // int flags
         0: .line 312
            aload 1 /* out */
            aload 0 /* this */
            getfield android.gesture.Gesture.mGestureID:J
            invokevirtual android.os.Parcel.writeLong:(J)V
         1: .line 314
            iconst_0
            istore 3 /* result */
        start local 3 // boolean result
         2: .line 316
            new java.io.ByteArrayOutputStream
            dup
            ldc 32768
            invokespecial java.io.ByteArrayOutputStream.<init>:(I)V
         3: .line 315
            astore 4 /* byteStream */
        start local 4 // java.io.ByteArrayOutputStream byteStream
         4: .line 317
            new java.io.DataOutputStream
            dup
            aload 4 /* byteStream */
            invokespecial java.io.DataOutputStream.<init>:(Ljava/io/OutputStream;)V
            astore 5 /* outStream */
        start local 5 // java.io.DataOutputStream outStream
         5: .line 320
            aload 0 /* this */
            aload 5 /* outStream */
            invokevirtual android.gesture.Gesture.serialize:(Ljava/io/DataOutputStream;)V
         6: .line 321
            iconst_1
            istore 3 /* result */
         7: .line 322
            goto 16
      StackMap locals: android.gesture.Gesture android.os.Parcel int int java.io.ByteArrayOutputStream java.io.DataOutputStream
      StackMap stack: java.io.IOException
         8: astore 6 /* e */
        start local 6 // java.io.IOException e
         9: .line 323
            ldc "Gestures"
            ldc "Error writing Gesture to parcel:"
            aload 6 /* e */
            invokestatic android.util.Log.e:(Ljava/lang/String;Ljava/lang/String;Ljava/lang/Throwable;)I
            pop
        end local 6 // java.io.IOException e
        10: .line 325
            aload 5 /* outStream */
            invokestatic android.gesture.GestureUtils.closeStream:(Ljava/io/Closeable;)V
        11: .line 326
            aload 4 /* byteStream */
            invokestatic android.gesture.GestureUtils.closeStream:(Ljava/io/Closeable;)V
            goto 18
        12: .line 324
      StackMap locals:
      StackMap stack: java.lang.Throwable
            astore 7
        13: .line 325
            aload 5 /* outStream */
            invokestatic android.gesture.GestureUtils.closeStream:(Ljava/io/Closeable;)V
        14: .line 326
            aload 4 /* byteStream */
            invokestatic android.gesture.GestureUtils.closeStream:(Ljava/io/Closeable;)V
        15: .line 327
            aload 7
            athrow
        16: .line 325
      StackMap locals:
      StackMap stack:
            aload 5 /* outStream */
            invokestatic android.gesture.GestureUtils.closeStream:(Ljava/io/Closeable;)V
        17: .line 326
            aload 4 /* byteStream */
            invokestatic android.gesture.GestureUtils.closeStream:(Ljava/io/Closeable;)V
        18: .line 329
      StackMap locals:
      StackMap stack:
            iload 3 /* result */
            ifeq 20
        19: .line 330
            aload 1 /* out */
            aload 4 /* byteStream */
            invokevirtual java.io.ByteArrayOutputStream.toByteArray:()[B
            invokevirtual android.os.Parcel.writeByteArray:([B)V
        20: .line 332
      StackMap locals:
      StackMap stack:
            return
        end local 5 // java.io.DataOutputStream outStream
        end local 4 // java.io.ByteArrayOutputStream byteStream
        end local 3 // boolean result
        end local 2 // int flags
        end local 1 // android.os.Parcel out
        end local 0 // android.gesture.Gesture this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0   21     0        this  Landroid/gesture/Gesture;
            0   21     1         out  Landroid/os/Parcel;
            0   21     2       flags  I
            2   21     3      result  Z
            4   21     4  byteStream  Ljava/io/ByteArrayOutputStream;
            5   21     5   outStream  Ljava/io/DataOutputStream;
            9   10     6           e  Ljava/io/IOException;
      Exception table:
        from    to  target  type
           5     7       8  Class java.io.IOException
           5    10      12  any
    MethodParameters:
       Name  Flags
      out    
      flags  

  public int describeContents();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // android.gesture.Gesture this
         0: .line 335
            iconst_0
            ireturn
        end local 0 // android.gesture.Gesture this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Landroid/gesture/Gesture;
}
SourceFile: "Gesture.java"
NestMembers:
  android.gesture.Gesture$1
InnerClasses:
  android.gesture.Gesture$1
  public final Config = android.graphics.Bitmap$Config of android.graphics.Bitmap
  public final Cap = android.graphics.Paint$Cap of android.graphics.Paint
  public final Join = android.graphics.Paint$Join of android.graphics.Paint
  public final Style = android.graphics.Paint$Style of android.graphics.Paint
  public abstract Creator = android.os.Parcelable$Creator of android.os.Parcelable