Home | History | Annotate | Download | only in image
      1 !<arch>
      2 __.PKGDEF       0           0     0     644     7015      `
      3 go object darwin amd64 go1.5.1 X:none
      4 build id "9930b24b238848c89cd07ea2fafdb1bfad1986cb"
      5 
      6 $$
      7 package draw
      8 	import runtime "runtime"
      9 	import image "image"
     10 	import color "image/color"
     11 	import imageutil "image/internal/imageutil"
     12 	type @"image/color".Color interface { RGBA() (@"image/color".r uint32, @"image/color".g uint32, @"image/color".b uint32, @"image/color".a uint32) }
     13 	type @"image".Point struct { X int; Y int }
     14 	func (@"image".p2 @"image".Point) Add (@"image".q3 @"image".Point) (? @"image".Point) { return (@"image".Point{ X:@"image".p2.X + @"image".q3.X, Y:@"image".p2.Y + @"image".q3.Y }) }
     15 	func (@"image".p2 @"image".Point) Div (@"image".k3 int) (? @"image".Point) { return (@"image".Point{ X:@"image".p2.X / @"image".k3, Y:@"image".p2.Y / @"image".k3 }) }
     16 	func (@"image".p2 @"image".Point) Eq (@"image".q3 @"image".Point) (? bool) { return @"image".p2 == @"image".q3 }
     17 	func (@"image".p2 @"image".Point) In (@"image".r3 @"image".Rectangle) (? bool) { return @"image".r3.Min.X <= @"image".p2.X && @"image".p2.X < @"image".r3.Max.X && @"image".r3.Min.Y <= @"image".p2.Y && @"image".p2.Y < @"image".r3.Max.Y }
     18 	func (@"image".p2 @"image".Point) Mod (@"image".r3 @"image".Rectangle) (? @"image".Point)
     19 	func (@"image".p2 @"image".Point) Mul (@"image".k3 int) (? @"image".Point) { return (@"image".Point{ X:@"image".p2.X * @"image".k3, Y:@"image".p2.Y * @"image".k3 }) }
     20 	func (@"image".p2 @"image".Point) String () (? string)
     21 	func (@"image".p2 @"image".Point) Sub (@"image".q3 @"image".Point) (? @"image".Point) { return (@"image".Point{ X:@"image".p2.X - @"image".q3.X, Y:@"image".p2.Y - @"image".q3.Y }) }
     22 	type @"image/color".Model interface { Convert(@"image/color".c @"image/color".Color) (? @"image/color".Color) }
     23 	type @"image".Rectangle struct { Min @"image".Point; Max @"image".Point }
     24 	func (@"image".r2 @"image".Rectangle) Add (@"image".p3 @"image".Point) (? @"image".Rectangle) { return (@"image".Rectangle{ Min:(@"image".Point{ X:@"image".r2.Min.X + @"image".p3.X, Y:@"image".r2.Min.Y + @"image".p3.Y }), Max:(@"image".Point{ X:@"image".r2.Max.X + @"image".p3.X, Y:@"image".r2.Max.Y + @"image".p3.Y }) }) }
     25 	func (@"image".r2 @"image".Rectangle) At (@"image".x3 int, @"image".y4 int) (? @"image/color".Color) { if (@"image".Point{ X:@"image".x3, Y:@"image".y4 }).In(@"image".r2) { return @"image/color".Opaque }; return @"image/color".Transparent }
     26 	func (@"image".r2 @"image".Rectangle) Bounds () (? @"image".Rectangle) { return @"image".r2 }
     27 	func (@"image".r2 @"image".Rectangle) Canon () (? @"image".Rectangle) { if @"image".r2.Max.X < @"image".r2.Min.X { @"image".r2.Min.X, @"image".r2.Max.X = @"image".r2.Max.X, @"image".r2.Min.X }; if @"image".r2.Max.Y < @"image".r2.Min.Y { @"image".r2.Min.Y, @"image".r2.Max.Y = @"image".r2.Max.Y, @"image".r2.Min.Y }; return @"image".r2 }
     28 	func (@"image".r2 @"image".Rectangle) ColorModel () (? @"image/color".Model) { return @"image/color".Alpha16Model }
     29 	func (@"image".r2 @"image".Rectangle) Dx () (? int) { return @"image".r2.Max.X - @"image".r2.Min.X }
     30 	func (@"image".r2 @"image".Rectangle) Dy () (? int) { return @"image".r2.Max.Y - @"image".r2.Min.Y }
     31 	func (@"image".r2 @"image".Rectangle) Empty () (? bool) { return @"image".r2.Min.X >= @"image".r2.Max.X || @"image".r2.Min.Y >= @"image".r2.Max.Y }
     32 	func (@"image".r2 @"image".Rectangle) Eq (@"image".s3 @"image".Rectangle) (? bool) { return @"image".r2 == @"image".s3 || @"image".r2.Empty() && @"image".s3.Empty() }
     33 	func (@"image".r2 @"image".Rectangle) In (@"image".s3 @"image".Rectangle) (? bool) { if @"image".r2.Empty() { return true }; return @"image".s3.Min.X <= @"image".r2.Min.X && @"image".r2.Max.X <= @"image".s3.Max.X && @"image".s3.Min.Y <= @"image".r2.Min.Y && @"image".r2.Max.Y <= @"image".s3.Max.Y }
     34 	func (@"image".r2 @"image".Rectangle) Inset (@"image".n3 int) (? @"image".Rectangle)
     35 	func (@"image".r2 @"image".Rectangle) Intersect (@"image".s3 @"image".Rectangle) (? @"image".Rectangle)
     36 	func (@"image".r2 @"image".Rectangle) Overlaps (@"image".s3 @"image".Rectangle) (? bool)
     37 	func (@"image".r2 @"image".Rectangle) Size () (? @"image".Point) { return (@"image".Point{ X:@"image".r2.Max.X - @"image".r2.Min.X, Y:@"image".r2.Max.Y - @"image".r2.Min.Y }) }
     38 	func (@"image".r2 @"image".Rectangle) String () (? string)
     39 	func (@"image".r2 @"image".Rectangle) Sub (@"image".p3 @"image".Point) (? @"image".Rectangle) { return (@"image".Rectangle{ Min:(@"image".Point{ X:@"image".r2.Min.X - @"image".p3.X, Y:@"image".r2.Min.Y - @"image".p3.Y }), Max:(@"image".Point{ X:@"image".r2.Max.X - @"image".p3.X, Y:@"image".r2.Max.Y - @"image".p3.Y }) }) }
     40 	func (@"image".r2 @"image".Rectangle) Union (@"image".s3 @"image".Rectangle) (? @"image".Rectangle)
     41 	type @"".Image interface { At(@"image".x int, @"image".y int) (? @"image/color".Color); Bounds() (? @"image".Rectangle); ColorModel() (? @"image/color".Model); Set(@"".x int, @"".y int, @"".c @"image/color".Color) }
     42 	type @"image/color".Palette []@"image/color".Color
     43 	func (@"image/color".p2 @"image/color".Palette "esc:0x2a") Convert (@"image/color".c3 @"image/color".Color) (? @"image/color".Color)
     44 	func (@"image/color".p2 @"image/color".Palette "esc:0x9") Index (@"image/color".c3 @"image/color".Color) (? int)
     45 	type @"image".Image interface { At(@"image".x int, @"image".y int) (? @"image/color".Color); Bounds() (? @"image".Rectangle); ColorModel() (? @"image/color".Model) }
     46 	type @"".Quantizer interface { Quantize(@"".p @"image/color".Palette, @"".m @"image".Image) (? @"image/color".Palette) }
     47 	type @"".Op int
     48 	func (@"".op1 @"".Op) Draw (@"".dst2 @"".Image, @"".r3 @"image".Rectangle, @"".src4 @"image".Image, @"".sp5 @"image".Point)
     49 	const @"".Over @"".Op = 0x0
     50 	const @"".Src @"".Op = 0x1
     51 	type @"".Drawer interface { Draw(@"".dst @"".Image, @"".r @"image".Rectangle, @"".src @"image".Image, @"".sp @"image".Point) }
     52 	var @"".FloydSteinberg @"".Drawer
     53 	func @"".Draw (@"".dst1 @"".Image, @"".r2 @"image".Rectangle, @"".src3 @"image".Image, @"".sp4 @"image".Point, @"".op5 @"".Op)
     54 	func @"".DrawMask (@"".dst1 @"".Image, @"".r2 @"image".Rectangle, @"".src3 @"image".Image, @"".sp4 @"image".Point, @"".mask5 @"image".Image, @"".mp6 @"image".Point, @"".op7 @"".Op)
     55 	func @"".init ()
     56 	type @"image/color".Alpha16 struct { A uint16 }
     57 	func (@"image/color".c5 @"image/color".Alpha16) RGBA () (@"image/color".r1 uint32, @"image/color".g2 uint32, @"image/color".b3 uint32, @"image/color".a4 uint32) { @"image/color".a4 = uint32(@"image/color".c5.A); return @"image/color".a4, @"image/color".a4, @"image/color".a4, @"image/color".a4 }
     58 	var @"image/color".Opaque @"image/color".Alpha16
     59 	var @"image/color".Transparent @"image/color".Alpha16
     60 	var @"image/color".Alpha16Model @"image/color".Model
     61 
     62 $$
     63 _go_.o          0           0     0     644     125509    `
     64 go object darwin amd64 go1.5.1 X:none
     65 
     66 !
     67 go13ldimage.aimage/color.a4image/internal/imageutil.a"".Op.DraweH%HD$H;AHH$H$1H$H$H$H\$H$H\$H$H\$H$H\$ H$H\$(H$H\$0H$H\$8H$H\$@H$H\$H1H\$PH\$XHL$xHL$`H$HL$hH$H\$pH
     69 
     70 X
     71 *runtime.racefuncenter
     72 "".DrawMask
     73 (runtime.racefuncexit
     74 0runtime.morestack_noctxt"".autotmp_0002 type.image.Point
     76 "".sp type.image.Point"".srcp type.image.Image"".r0(type.image.Rectangle"".dsttype."".Image
     79 "".optype."".Op\+Tgclocals53c7667477e950feba4c8f0f6f5b2e07Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go,"".floydSteinberg.DraweH%H;akHxH\$xH$H$H$H$H\$H$H\$H$H\$H$H\$ H$H\$(1H\$0H\$8HD$@H$H$HT$`H$H$HD$pH\$XHL$hH9H9<t
     84 HxH$H$H$H\$H$H\$H$H\$H$H\$ H$H\$(H$H\$0H$H\$8H$H\$@H$H\$HD$PHxHQx
     85 B
     86 *runtime.racefuncenter
     87 "".clip
     88 (runtime.racefuncexit
     89 "".drawPaletted
     90 (runtime.racefuncexit
     91 0runtime.morestack_noctxt
     92 image.r2?(type.image.Rectangle
     93 "".sp type.image.Point"".src` type.image.Image"".r (type.image.Rectangle"".dsttype."".Image(,~
     96 gG Tgclocals8284eba58712f7b004cdf24e5edb7852Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go"".clip!!eH%H$H;A,HH$H$H$H$HD$H$HH+H$HkH$H$H$H$H[(H\$H$H\$H$H\$H$H\$ H$H$H$HD$ H$HIHH$H\$ H$H\$(H$H\$0H$H\$8H\$@H$H\$HH$H\$PH$H\$XH$H$H$HD$ H$H$H+H$HkH$HkH$HkH$H$H$H[(Hl$HT$HL$HD$ H$xH$H$H$H$H$H$H$H$H$HD$H$HHHC11H$H$H)HH$H$H)HH$H$H$H$11H$xH$H$HHH$HHH$H$HH$H$H$H$ H$H$(H$H$0H$H$HD$ H$HHH$H\$ H$ H\$(H$(H\$0H$0H\$8H\$@H$H\$HH$H\$PH$H\$XH$H$H$HD$ H$H$H$H)H$HiH$HiH$HiH[H$H$HX(Hl$HT$HL$HD$ H$XH$`H$hH$pH$H$H$H$H$ H$HD$H$ HdHHC11H$H$H)HH$H$H)HHL$xH$H$H$11H$XH$`H$hHHH$HHH$pH$HH$H$8H$H$@H$H$HH$H$PH$H$HD$ H$HZHH$8H\$ H$@H\$(H$HH\$0H$PH\$8H\$@H$H\$HH$H\$PH$H\$XH$H$H$HD$ H$H$H)H$HiH$HiH$HiH$H$HH$H)H\$hH$H$H$HEH$H)HD$`H\$hHuHu
HH$H$H$H(Hl$pH$H$Hl$pLD$hLH(H$H$H$HhHl$pH$H$H$ H$Hl$pLD$`LHk1H9H$H$ H(Hl$pH$H$ Hl$pLD$hLH(H$H$H$ HhHl$pH$H$H$ Hl$pLD$`LHkH$B
    104 ^
    105 *runtime.racefuncenter
    106 *runtime.racereadrange
    107 *runtime.racereadrange
    108  runtime.duffcopy
    109 2image.Rectangle.Intersect
    110 ,runtime.racewriterange
    111 *runtime.racereadrange
    113 *runtime.racereadrange
    115  runtime.duffcopy
    116 2image.Rectangle.Intersect
    117 ,runtime.racewriterange
    118 *runtime.racereadrange
    119 *runtime.racereadrange
    120  runtime.duffcopy
    121 2image.Rectangle.Intersect
    122 ,runtime.racewriterange
    123  runtime.raceread
    124  runtime.raceread
    125 (runtime.racefuncexit
    126  runtime.raceread
    127 "runtime.racewrite
    128  runtime.raceread
    129 "runtime.racewrite
    130  runtime.raceread
    131 "runtime.racewrite
    132  runtime.raceread
    133 "runtime.racewrite 
    134 (runtime.racefuncexit!
    135 0runtime.morestack_noctxtJ"".autotmp_0019(type.image.Rectangle"".autotmp_0018 type.image.Point"".autotmp_0017 type.image.Point"".autotmp_0016(type.image.Rectangle"".autotmp_0015 type.image.Point"".autotmp_0014 type.image.Point"".autotmp_0013type.int"".autotmp_0012type.int"".autotmp_0011type.int"".autotmp_0010type.int"".autotmp_0009(type.image.Rectangle"".autotmp_0008(type.image.Rectangle"".autotmp_0007(type.image.Rectangle"".autotmp_0006(type.image.Rectangle"".autotmp_0005(type.image.Rectangle"".autotmp_0004?(type.image.Rectangle"".~r0(type.image.Rectangleimage.p3 type.image.Pointimage.r2(type.image.Rectangle"".~r0 type.image.Pointimage.q3 type.image.Pointimage.p2 type.image.Point"".~r0(type.image.Rectangleimage.p3 type.image.Pointimage.r2(type.image.Rectangle"".~r0 type.image.Pointimage.q3 type.image.Pointimage.p2 type.image.Point
    140 "".dytype.int
    141 "".dxtype.int"".orig type.image.Point
    142 "".mp"type.*image.Point"".mask` type.image.Image
    143 "".spP"type.*image.Point"".src0 type.image.Image"".r *type.*image.Rectangle"".dsttype."".Image("
Cf" C
    147 $*BN:K.Tgclocalsbd5ecf30bdbc677b0e14fa50cb5ef414Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go$"".processBackward
    151 
    152 eH%H$xH;A_HH$H$HH$H$H\$H$H\$H$@L$ H$(HD$Ht$ H$H$H9H$Ht$HL$H$HH\$L$ H$(\$ H<L$0L$8H$PH$X11HL$xL\$XL)H$HT$`H)HL$HHD$PH$H$11LL$HHH$HLL$HL$hHHLL$HD$pHHH$H$H$H$L$HT$H$0H\$H$8H\$H$H|$ H$Ht$(H$HL$0H$HD$8L$ H$(\$@H<tNH$XH9|7H$XH9u H$PL9$`H$`$`$`11V|
    154 ^
    155 *runtime.racefuncenterl type.image.Image
    156 runtime.convI2I
    157 runtime.ifaceeq
    158 0image.Rectangle.Overlaps	
    159 (runtime.racefuncexit	
    160 0runtime.morestack_noctxt "".autotmp_0024_(type.image.Rectangle"".autotmp_0023 type.image.Point"".autotmp_0022 type.image.Point"".autotmp_0021 type.image.Image"".autotmp_0020type.bool"".~r0(type.image.Rectangleimage.p3 type.image.Pointimage.r2(type.image.Rectangle"".~r0 type.image.Pointimage.q3 type.image.Pointimage.p2 type.image.Point"".~r4type.bool
    164 "".sp type.image.Point"".src` type.image.Image"".r (type.image.Rectangle"".dsttype."".Image"?F3T%4.Tgclocalsb85af394c8a18f2d7505864470ede412Tgclocals23e8278e2b69a3a75fa59b23c49ed6ad\prebuilts/go/darwin-x86/src/image/draw/draw.go"".DraweH%HD$H;AHH$H$1H$H$H$H\$H$H\$H$H\$H$H\$ H$H\$(H$H\$0H$H\$8H$H\$@H$H\$H1H\$PH\$XHL$xHL$`H$HL$hH$H\$pH
    170 
    171 X
    172 *runtime.racefuncenter
    173 "".DrawMask
    174 (runtime.racefuncexit
    175 0runtime.morestack_noctxt"".autotmp_0027 type.image.Point
    177 "".optype."".Op
    178 "".sp type.image.Point"".src` type.image.Image"".r (type.image.Rectangle"".dsttype."".Image+Tgclocalsb85af394c8a18f2d7505864470ede412Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go"".DrawMaskhheH%H$H;AH1H$H$H$H$H$H$H\$H$H\$H$ H\$H$(H\$ H$0H\$(H$@H\$0H$HH\$8H$PH\$@H$H$H$H$H$H$H$H$H9H9<t
HH$H$H$H$H$HD$L$$E
H$HH$H$H\$H$H\$H$H\$$\$ H$`HH$@HH$ H$(H$H$H$HD$H$H$D$=`n%$=*H$@HH$Hl$HT$H$@H\$H$H$$\$ tyH$H$H$H\$H$H\$H$H\$H$H\$ H$@H\$(H$0H\$0H$8H\$8H=Q fH$pHH$Hl$HT$H$pH\$H$H$$\$ t_H$H$H$H\$H$H\$H$H\$H$H\$ H$pH\$(H=`nH$0HH$Hl$HT$H$0H\$\$ tyH$H$H$H\$H$H\$H$H\$H$H\$ H$0H\$(H$0H\$0H$8H\$8HH$H$H$H\$H$H\$H$H\$H$H\$ H$ H\$(H$(H\$0H$0H\$8H$8H\$@H$@H\$HH$HH\$PH$PH\$XH$XH\$`H$`H\$hH$=H$HH$Hl$HT$H$H\$H$H$$\$ tyH$H$H$H\$H$H\$H$H\$H$H\$ H$H\$(H$0H\$0H$8H\$8H=2H$ HH$Hl$HT$H$ H\$H$H$$\$ H$H$H$H\$H$H\$H$H\$H$H\$ H$ H\$(H$0H\$0H$8H\$8\$@t
Ho=~dH$`HH$Hl$HT$H$`H\$\$ #H$H$H$H\$H$H\$H$H\$H$H\$ H$`H\$(H$0H\$0H$8H\$8HH$HH$H$@H\$H$HH\$H$H\$\$ HH$H$<GH$ H$(H$H$H$HD$\$Q f	H$PHH$H$H\$H$H\$H$PH\$\$ H$H$H$H\$H$H\$H$H\$H$H\$ H$PH\$(H$H\$0H$PH\$8H$XH\$@HH$@H H$ H$(H$H$H$HD$H$H$D$=`nb$=*H$8HH$Hl$HT$H$8H\$H$H$$\$ tyH$H$H$H\$H$H\$H$H\$H$H\$ H$8H\$(H$0H\$0H$8H\$8H=Q fH$(HH$Hl$HT$H$(H\$H$H$$\$ t_H$H$H$H\$H$H\$H$H\$H$H\$ H$(H\$(H=`n+H$hHH$Hl$HT$H$hH\$\$ H$H$H$H\$H$H\$H$H\$H$H\$ H$hH\$(H$0H\$0H$8H\$8H$=H$XHH$Hl$HT$H$XH\$H$H$$\$ tyH$H$H$H\$H$H\$H$H\$H$H\$ H$XH\$(H$0H\$0H$8H\$8H=2H$xHH$Hl$HT$H$xH\$H$H$$\$ H$H$H$H\$H$H\$H$H\$H$H\$ H$xH\$(H$0H\$0H$8H\$8\$@t
H=~H$HHH$Hl$HT$H$HH\$\$ [H$H$H$H\$H$H\$H$H\$H$H\$ H$HH\$(H$0H\$0H$8H\$8HNYH$HH$H$H\$H$H\$H$H\$\$ H$`HH$@HH$H$H$H\$H$H\$H$H\$H$H\$ H$H\$(H$ H\$0H$(H\$8H$0H\$@H$8H\$H\$PH$H$H1H9H$H$H$H$HL$H$H\$H$H\$H$H\$ H$H\$(H$ H\$0H$(H\$8H$0H\$@H$8H\$HD$PHHH$HH\$HH\$HD$.H$H$H$H$H$H$H$H$H$H$H$H$H$H\$H$H\$H$H\$H$H\$ H$H\$(H$ H\$0H$(H\$8H$0H\$@H$8H\$H\$PSH$HH$HH$H$H$H$HH$HH$H$H$HH$HD$H$H$HD$H$H$8H$HH)H$H$XH$HH)H$H$H$H$H9H$0H$HH$H)H$H$PH$HH$H)H$H$H$H$H$H9H$@Ht\H$H\$H$H\$H$HH$H$@H[ HL$HD$ H$H$H$HY D$H$`HH$H$H$HH$H$HH$HH$H$H$H$H$H9H$H$H$HH$H$HH$HH$H$H$H$H$H9-HHH$HH\$HH\$HH\$HD$ H\$(H|$HHHKHOH$H\$H$H\$H$H$H$H[8$=H$`HH$H\$H$H\$H$(H$H$ H[ HL$HD$ H$H\$H$H\$H$HL$H$HD$ H$H$H$H[8H$H\$H$H\$H$(H$H$ H[ HL$HD$ H$H$H$HY l$T$L$D$l$pT$tL$xD$|H$`HH$H\$H$H\$H$H$H$H[ HL$HD$ H$H$H$HY $L$l$T$D$$$$D$|)$l$p$H$H$H$$AAf)$$l$tD$A$H$H$H$$AAfi$$l$xD$A$H$H$H$$AAfi$$l$|D$A$H$H$H$$AAfiH$H1H9t[H$H\$H$H\$H$H$HD$H$HL$ H$H$H$H[8HH$HH\$HH\$HD$s$$H$H$H$$AAf)\$t$$H$H$H$$AAfi\$x$$H$H$H$$AAfi\$|$$H$H$H$$AAfiHH
    206 Z
    207  runtime.duffzero|
    208 *runtime.racefuncenter
    209 "".clip
    210 (runtime.racefuncexit
    211 $runtime.ifacethash type.*image.RGBA
    212 $runtime.assertI2T2
    213 $runtime.ifacethash	"type.*image.NRGBA	
    214 $runtime.assertI2T2
    216  "".drawNRGBAOver
    218 (runtime.racefuncexit&type.*image.Uniform
    221 $runtime.assertI2T2
    222 "".drawFillOver
    223 (runtime.racefuncexit type.*image.CMYK
    224 $runtime.assertI2T2
    225 "".drawCMYK
    226 (runtime.racefuncexit
    227 "".drawRGBA
    228 (runtime.racefuncexit type.*image.RGBA
    229 $runtime.assertI2T2
    230 "".drawCopyOver
    231 (runtime.racefuncexit"type.*image.YCbCr
    232 $runtime.assertI2T2
    233 Dimage/internal/imageutil.DrawYCbCr
    234 (runtime.racefuncexit type.*image.Gray
    235 $runtime.assertI2T2
    236 "".drawGray
    237 (runtime.racefuncexit"type.*image.Alpha 
    238 $runtime.assertI2T2!
    239 $runtime.ifacethash"&type.*image.Uniform"
    240 $runtime.assertI2T2%
    241  "".drawGlyphOver%
    242 (runtime.racefuncexit&
    243 $runtime.ifacethash'"type.*image.NRGBA'
    244 $runtime.assertI2T2*
    245 "".drawNRGBASrc*
    246 (runtime.racefuncexit*&type.*image.Uniform+
    247 $runtime.assertI2T2-
    248 "".drawFillSrc-
    249 (runtime.racefuncexit- type.*image.CMYK.
    250 $runtime.assertI2T20
    251 "".drawCMYK0
    252 (runtime.racefuncexit0 type.*image.RGBA1
    253 $runtime.assertI2T23
    254 "".drawCopySrc3
    255 (runtime.racefuncexit4"type.*image.YCbCr4
    256 $runtime.assertI2T27
    257 Dimage/internal/imageutil.DrawYCbCr7
    258 (runtime.racefuncexit7 type.*image.Gray8
    259 $runtime.assertI2T2:
    260 "".drawGray:
    261 (runtime.racefuncexit;(type.*image.Paletted;
    262 $runtime.assertI2T2>
    263 $"".processBackward?@go.itab.*image.Paletted."".ImageA
    264 "".drawPalettedA
    265 (runtime.racefuncexitA(type.*image.PalettedBtype."".ImageB@go.itab.*image.Paletted."".ImageB
    266  runtime.typ2ItabF
    267 $"".processBackwardH.type.image/color.RGBA64H
    268 "runtime.newobjectH
    269 ,runtime.racewriterangeMMQ
    270 (runtime.racefuncexitQ0type.image/color.Alpha16R,type.image/color.ColorRZgo.itab.image/color.Alpha16.image/color.ColorR.image/color.TransparentR
    271 runtime.convT2ISUVWXYZ\
    272 "runtime.racewrite]
    273 "runtime.racewrite^
    274 "runtime.racewrite`
    275 "runtime.racewriteaZgo.itab.*image/color.RGBA64.image/color.Colorbb0type.*image/color.RGBA64b,type.image/color.ColorcZgo.itab.*image/color.RGBA64.image/color.Colorc
    276  runtime.typ2Itabc
    277 "runtime.racewrited
    278 "runtime.racewritee
    279 "runtime.racewriteg
    280 "runtime.racewriteg
    281 0runtime.morestack_noctxt"".autotmp_0083type.*uint8"".autotmp_0082type.uint32"".autotmp_0081type.uint32"".autotmp_0080type.uint32"".autotmp_0079type.uint32"".autotmp_0078type.uint32"".autotmp_0077type.uint32"".autotmp_0076type.uint32"".autotmp_0075type.uint32"".autotmp_0074type.uint32"".autotmp_0073type.int"".autotmp_0072type.int"".autotmp_0071type.int"".autotmp_0069type.int"".autotmp_0068type.int"".autotmp_0067type.int"".autotmp_0066type.int"".autotmp_0064type.int"".autotmp_0063type.int"".autotmp_0060type.uint32"".autotmp_0059type.bool"".autotmp_0058 type.image.Image"".autotmp_0057type.uint32"".autotmp_0056type.bool"".autotmp_0055 type.image.Image"".autotmp_0054type.uint32"".autotmp_0053type.bool"".autotmp_0052_ type.image.Image"".autotmp_0051type.uint32"".autotmp_0050type.bool"".autotmp_0049?type."".Image"".autotmp_00470type.*image/color.RGBA64"".autotmp_0046type.uint32"".autotmp_0045type.uint32"".autotmp_0044type.uint32"".autotmp_0043type.uint32"".autotmp_0042,type.image/color.Color"".autotmp_0038type.uint32"".autotmp_0037,type.image/color.Color"".autotmp_0036,type.image/color.Color"".autotmp_0035type.uint32"".autotmp_0034,type.image/color.Color"".autotmp_0033type.bool"".autotmp_0032(type.*image.Paletted"".autotmp_0031type.bool"".autotmp_0030type.bool"".autotmp_0029"type.*image.Alpha"".autotmp_0028type.bool"".&outo0type.*image/color.RGBA64image.r2(type.image.Rectangle"".atype.uint32
    282 "".datype.uint32
    283 "".dbtype.uint32
    284 "".dgtype.uint32
    285 "".satype.uint32
    286 "".sbtype.uint32
    287 "".sgtype.uint32
    288 "".srtype.uint32
    289 "".matype.uint32"".xtype.int
    290 "".mxtype.int
    291 "".sxtype.int"".ytype.int
    292 "".mytype.int
    293 "".sytype.int
    294 "".dytype.int
    295 "".y1type.int
    296 "".y0type.int
    297 "".dxtype.int
    298 "".x1type.int
    299 "".x0type.int"".dst0(type.*image.Paletted"".src0 type.*image.CMYK"".src0 type.*image.Gray"".src0"type.*image.YCbCr"".src0"type.*image.NRGBA"".src0 type.*image.RGBA"".src0&type.*image.Uniform"".src0&type.*image.Uniform"".mask0"type.*image.Alpha"".src0 type.*image.CMYK"".src0 type.*image.Gray"".src0"type.*image.YCbCr"".src0"type.*image.NRGBA"".src0 type.*image.RGBA"".src0&type.*image.Uniform"".dst0 type.*image.RGBA
    300 "".optype."".Op
    301 "".mp type.image.Point"".mask type.image.Image
    302 "".sp type.image.Point"".src` type.image.Image"".r (type.image.Rectangle"".dsttype."".Image"41ySl_RH,l|yD63sf
    306 lcvRqL&l
    308 cypmlTQ_R`]L$l@=%f
    309 lZWcvNK-LlFCk].+2
    311 ,,227!&&)\	
jj@5$xMYYYlAB2DDDDM=KsKNS	MKsK
E.Tgclocalsddb284fdbda7264b36079ec68248ad08Tgclocals8612be9867699b1b13259cc361386f71\prebuilts/go/darwin-x86/src/image/draw/draw.go"".drawFillOver##eH%HD$H;AHH$H$H$H$l$T$L$D$l$T$L$ D$$)i\$<H$H$H$H\$PHD$@H$H$H$ H$HX Hl$PH)Hl$pH$H$ H$H$H$H$H$H$H$HX(Hl$@H)HHhHHl$pHHH\$`H$H$H$H$H$HH$HT$xHl$`H)HHH\$XHH$HD$HH9HD$`HD$hHl$XH9H$HD$hH$HHHKHkH$H$H$H9HH$H$HD$hHHHHNHnH$H$H$H9H+l$(H4$HD$hHH$HHKHkH$H$H$H9)HH$H$HD$hHHHHNHnH$H$H$H9H+l$,H4$HD$hH$HHHKHkH$H$H$H9pHH$H$HD$hHHAHHNHnH$H$H$H9H+l$0H4$HD$hH$HHHKHkH$H$H$H9HH$H$Ht$hHHHHHOHoH$H$H$H9QH+l$4HHH\$p\$(l$<\$8H<$H$HHCHkH$H$Hl$pH$H9H)H$H$HHHFHnH$H$Hl$pH$H9H)D$8AADD$D@+H\$hHH\$p\$,l$<\$8H4$H$HHCHkH$H$Hl$pH$H9H)H$H$HHHFHnH$H$Hl$pH$H9H)D$8AADD$D@+H\$hHH\$p\$0l$<\$8H4$H$HHCHkH$H$Hl$pH$H9H)H$H$HHHFHnH$H$Hl$pH$H9H)D$8AADD$ D@+H\$hHH\$p\$4l$<\$8H4$H$HHCHkH$H$Hl$pH$H9+H)H$H$HHHAHiH$H$Hl$pH$H9H*D$8AADD$$D@+HD$hHHD$hHl$XH9H\$`H\$pH$H$H$HXHl$pHH\$`H\$XH\$pH$H$H$HYHl$pHH\$XHD$HHH$HD$HH9nH$=uFT
    344 X
    345 *runtime.racefuncenterz
    346 *image.(*Uniform).RGBA
    347  runtime.raceread
    348  runtime.raceread
    349  runtime.raceread
    350  runtime.raceread
    351  runtime.raceread	
    352  runtime.raceread
    353 
    354  runtime.raceread
    356  runtime.raceread
    358  runtime.raceread
    359  runtime.raceread
    360  runtime.raceread
    361  runtime.raceread
    362 "runtime.racewrite
    363  runtime.raceread
    364 "runtime.racewrite
    365  runtime.raceread
    366 "runtime.racewrite
    367  runtime.raceread
    368 "runtime.racewrite
    369  runtime.raceread
    370  runtime.raceread 
    371 (runtime.racefuncexit 
    372 $runtime.panicindex 
    373 $runtime.panicindex!
    374 $runtime.panicindex!
    375 $runtime.panicindex!
    376 $runtime.panicindex!
    377 $runtime.panicindex!
    378 $runtime.panicindex!
    379 $runtime.panicindex"
    380 $runtime.panicindex"
    381 $runtime.panicindex"
    382 $runtime.panicindex"
    383 $runtime.panicindex"
    384 $runtime.panicindex"
    385 $runtime.panicindex#
    386 $runtime.panicindex#
    387 $runtime.panicindex#
    388 0runtime.morestack_noctxt`L"".autotmp_0108type.uint32"".autotmp_0107type.int"".autotmp_0106type.uint32"".autotmp_0105type.int"".autotmp_0104type.uint32"".autotmp_0103type.int"".autotmp_0102type.uint32"".autotmp_0101type.int"".autotmp_0100type.int"".autotmp_0099type.int"".autotmp_0098type.int"".autotmp_0097type.int"".autotmp_0096type.int"".autotmp_0095type.int"".autotmp_0094type.int"".autotmp_0093type.int"".autotmp_0092type.int"".autotmp_0088type.uint32image.r2(type.image.Rectangleimage.y4type.intimage.x3type.intimage.p2? type.*image.RGBA
    389 "".datype.uint32
    390 "".dbtype.uint32
    391 "".dgtype.uint32
    392 "".drtype.uint32"".itype.int"".ytype.int
    393 "".i1type.int
    394 "".i0type.int"".atype.uint32
    395 "".satype.uint32
    396 "".sbtype.uint32
    397 "".sgtype.uint32
    398 "".srtype.uint32"".srcP&type.*image.Uniform"".r(type.image.Rectangle"".dst type.*image.RGBA&#-L11	+zTgclocals0a593fb1764c93835ed65ead7777b19cTgclocals83ead081cd909acab0dcd88a450c1878\prebuilts/go/darwin-x86/src/image/draw/draw.go"".drawFillSrceH%HD$H;AIHH$H$H$H$\$T$L$D$\$D\$E\$F\$GH$H$H$H\$XHD$HH$H$H$ H$HX Hl$XH)Hl$xH$H$ H$H$H$H$H$H$HX(HL$HH)HhHHl$xHHH$H$H$H$H$H$HH$H$H)HHH\$`HL$hHHl$`H9HHD$pHH\$xH$H$HHCHkH$H$Hl$xH$H9H)H$H$H\H
    405 HBHjH$H$Hl$xH$H9$H)l$D@+H\$pHH\$xH$H$HHCHkH$H$Hl$xH$H9H)H$H$HH
    407 HBHjH$H$Hl$xH$H9dH)l$E@+H\$pHH\$xH$H$HHCHkH$H$Hl$xH$H9H)H$H$HH
    409 HBHjH$H$Hl$xH$H9H)l$F@+H\$pHH\$xH$H$HHCHkH$H$Hl$xH$H9@H)H$H$HH
    411 HBHjH$H$Hl$xH$H9H)l$G@+HD$pHHl$`H97H$H$Hl$hLD$`LKM9L9LI)I)ItM*L$L$L$H$HH$HD$PH9'H\$hH\$xH$H$H$H$HXHl$xHH\$hH\$`H\$xH$H$H$HXHl$xHH\$`H$H$Hl$hLD$`LKM9L9LI)I)ItM*L$L$L$LD$L$LL$H$H\$H$H\$ H$H\$(HD$0HD$PHH$HD$PH9H]>
    422 X
    423 *runtime.racefuncenterz
    424 *image.(*Uniform).RGBA
    425  runtime.raceread
    426  runtime.raceread
    427  runtime.raceread
    428  runtime.raceread
    429 "runtime.racewrite	
    430  runtime.raceread
    431 
    432 "runtime.racewrite
    434  runtime.raceread
    436 "runtime.racewrite
    437  runtime.raceread
    438 "runtime.racewrite
    439  runtime.raceread
    440  runtime.raceread
    441  runtime.raceread
    442  runtime.raceread
    443 "runtime.slicecopy
    444 (runtime.racefuncexit
    445 $runtime.panicslice
    446 $runtime.panicslice
    447 $runtime.panicindex
    448 $runtime.panicindex
    449 $runtime.panicindex
    450 $runtime.panicindex
    451 $runtime.panicindex
    452 $runtime.panicindex
    453 $runtime.panicindex
    454 $runtime.panicindex
    455 0runtime.morestack_noctxt`<"".autotmp_0150type.int"".autotmp_0149type.int"".autotmp_0148type.int"".autotmp_0147type.int"".autotmp_0146type.int"".autotmp_0145type.int"".autotmp_0144type.int"".autotmp_0143type.int"".autotmp_0142type.int"".autotmp_0141type.int"".autotmp_0140type.[]uint8"".autotmp_0139type.int"".autotmp_0138type.int"".autotmp_0137type.intimage.r2(type.image.Rectangleimage.y4type.intimage.x3type.intimage.p2o type.*image.RGBA"".ytype.int"".firstRow_type.[]uint8"".itype.int
    456 "".i1type.int
    457 "".i0type.int"".sa8type.uint8"".sb8type.uint8"".sg8type.uint8"".sr8type.uint8"".srcP&type.*image.Uniform"".r(type.image.Rectangle"".dst type.*image.RGBAq*'!			R\!91 +{~Tgclocalsf06f1fbaad773dc5128fb9efcb2920cfTgclocals98ed4fede4305b76799eb89c68818740\prebuilts/go/darwin-x86/src/image/draw/draw.go"".drawCopyOver**eH%H$XH;A]
    468 H(H$(H$H$HH$PH$8H$@H$H$IH$H$H)H$L$H$H$H)H$H$H$0Ht$HHT$0H$H$H$ H$HX Hl$HH)H$H$H$ H$H$H$H$H$HX(Hl$0H)HHhHH$HHH$H$XH$hH$`H\$@HD$8H$H$H$ H$HX Hl$@H)H$H$H$ H$H$H$H$H$@H$0H$H$hHX(Hl$8H)HHhHH$HHH\$XH9|"H9/H$8H$`H9H$H$H$0HkH$H$XH$H$H$H$XHkHl$PH$HHD$pH\$hHD$`H$HH$0H$H$0H$LCLKL9WLI)I)ItM*L$L$ L$H$XH$H$XHl$XLCLKL9LI)I)ItM*L$L$L$HD$pHl$hH9HHD$xH$L$HL9HlH,$H$H$Hl$xHHH9RH)i\$HHH9+H,H,$H$H$Hl$xHHH9H)i\$HHH9H,H,$H$H$Hl$xHHH9H)i\$HHH9jH,H,$Hl$xH$L$HHL91H+i\$H$L$HHL9HlH,$H$H$H\$xHHH9H,]\$HHH9H,H,$H$H$H\$xHHH9eH,]\$HHH9BH,H,$H$H$H\$xHHH9	H,]\$ HHH9H,H,$H$H$H\$xHHH9H,]\$$l$\$)iHD$,\$(H$H9eH
    472 H$H$H$H$H90H)D$(AADD$D@+HD$xH\$l$,\$(H$H9HH$H$H$H$H9H)D$(AADD$D@+HD$x\$ l$,H\$(H$H9THH$H$H$H$H9H)D$(AADD$D@+HD$x\$$l$,H\$(H$H9HH$H$H$L$L9H+D$(AADD$D@+HD$xHl$`HHl$hH9GH$H$HH$H\$XHl$PHH\$XH$HH$H3H(H$H$H$H$H$HL$0IhHH$HH$H\$XH$H$XH$H$H$HL$XIhHH$HH\$XH$0H$H$H$0H]HH$H$XH$H$H$H$XH]HH\$PH$HHH\$pHD$hHD$`:~p
    500 ^
    501 *runtime.racefuncenter
    502  runtime.raceread
    503  runtime.raceread
    504  runtime.raceread
    505  runtime.raceread
    506  runtime.raceread
    507  runtime.raceread	
    508  runtime.raceread	
    509  runtime.raceread
    511  runtime.raceread
    513  runtime.raceread
    514  runtime.raceread
    515  runtime.raceread
    516  runtime.raceread
    517  runtime.raceread
    518  runtime.raceread
    519  runtime.raceread
    520  runtime.raceread
    521  runtime.raceread
    522 "runtime.racewrite
    523 "runtime.racewrite
    524 "runtime.racewrite
    525 "runtime.racewrite"
    526 (runtime.racefuncexit"
    527 $runtime.panicindex"
    528 $runtime.panicindex"
    529 $runtime.panicindex"
    530 $runtime.panicindex"
    531 $runtime.panicindex#
    532 $runtime.panicindex#
    533 $runtime.panicindex#
    534 $runtime.panicindex#
    535 $runtime.panicindex#
    536 $runtime.panicindex#
    537 $runtime.panicindex#
    538 $runtime.panicindex#
    539 $runtime.panicindex#
    540 $runtime.panicindex$
    541 $runtime.panicindex$
    542 $runtime.panicindex$
    543 $runtime.panicindex$
    544 $runtime.panicindex$
    545 $runtime.panicindex$
    546 $runtime.panicindex$
    547 $runtime.panicindex$
    548 $runtime.panicindex$
    549 $runtime.panicindex%
    550 $runtime.panicindex%
    551 $runtime.panicslice%
    552 $runtime.panicslice%
    553  runtime.raceread&
    554  runtime.raceread(
    555  runtime.raceread(
    556  runtime.raceread)
    557 0runtime.morestack_noctxtv"".autotmp_0185type.uint32"".autotmp_0184type.int"".autotmp_0183type.uint32"".autotmp_0182type.int"".autotmp_0181type.uint32"".autotmp_0180type.int"".autotmp_0179type.uint32"".autotmp_0178type.int"".autotmp_0177type.int"".autotmp_0176type.int"".autotmp_0175type.int"".autotmp_0174type.int"".autotmp_0173type.int"".autotmp_0172type.int"".autotmp_0171type.int"".autotmp_0170type.int"".autotmp_0169type.int"".autotmp_0168type.int"".autotmp_0167type.int"".autotmp_0166type.int"".autotmp_0164type.int"".autotmp_0163type.int"".autotmp_0162type.int"".autotmp_0161type.int"".autotmp_0160type.int"".autotmp_0159type.intimage.y4type.intimage.x3type.intimage.p2o type.*image.RGBAimage.y4type.intimage.x3type.intimage.p2 type.*image.RGBAimage.r2(type.image.Rectangleimage.r2(type.image.Rectangle"".atype.uint32
    558 "".datype.uint32
    559 "".dbtype.uint32
    560 "".dgtype.uint32
    561 "".drtype.uint32
    562 "".satype.uint32
    563 "".sbtype.uint32
    564 "".sgtype.uint32
    565 "".srtype.uint32"".itype.int"".spix_type.[]uint8"".dpix/type.[]uint8"".ideltatype.int
    566 "".i1type.int
    567 "".i0type.int"".sdeltatype.int"".ddeltatype.int
    568 "".s0type.int
    569 "".d0type.int
    570 "".dytype.int
    571 "".dxtype.int
    572 "".sp` type.image.Point"".srcP type.*image.RGBA"".r(type.image.Rectangle"".dst type.*image.RGBA""X1UY
    575 '"/#]ZiQSS_LNN
rz{{!&-.		
LN-2&)0.	Tgclocals6d79c77c47a9fca5990ca5c084736164Tgclocalsfdce80aea1d77ebc90f85b699d6c9ea0\prebuilts/go/darwin-x86/src/image/draw/draw.go"".drawCopySrceH%H$`H;AH H$ H$L$@H$HH$0H$8H$H$LL$H$H)H$L$H$H$H)HHL$pHD$xH$(Ht$PHT$@H$H$H$ H$HX Hl$PH)H$H$H$ H$H$H$H$H$HX(Hl$@H)HHhHH$HHH$H$PH$`H$XH\$XHD$HH$H$H$ H$HX Hl$XH)H$H$H$ H$H$H$H$H$(H$HX(Hl$HH)HHhHH$HHH\$hH$8H$`H9H$H$H$(HkH$H$PH$H$HD$xH$H$PHkHl$`HD$xHHH$Hl$pHH$H$(H$H$(H$L$LKM9CL9:LI)I)ItM*L$L$L$H\$hHl$pHH$H$PH$H$PHl$hL$LKM9L9LI)I)ItM*H$H$H$H\$H$H\$L$LT$L$LD$ L$LL$(HD$0H$H$HH\$hHl$`HH\$hHD$xHHD$xHH H$H$H$H$H\$xHL$(IhHH$HH$H\$hH$H$PH$H$H\$xHL$PIhHH$HH\$hH$(H$H$H$(H]HH$H$PH$H$HD$xH$H$PH]HH\$`Y*
    585 ^
    586 *runtime.racefuncenter
    587  runtime.raceread
    588  runtime.raceread
    589  runtime.raceread
    590  runtime.raceread
    591  runtime.raceread
    592  runtime.raceread
    593  runtime.raceread	
    594  runtime.raceread
    595 
    596  runtime.raceread
    598  runtime.raceread
    599 "runtime.slicecopy
    600 (runtime.racefuncexit
    601 $runtime.panicslice
    602 $runtime.panicslice
    603  runtime.raceread
    604  runtime.raceread
    605  runtime.raceread
    606  runtime.raceread
    607 0runtime.morestack_noctxtL"".autotmp_0205type.int"".autotmp_0204type.int"".autotmp_0203type.int"".autotmp_0202type.int"".autotmp_0201type.int"".autotmp_0200type.int"".autotmp_0199type.int"".autotmp_0198type.int"".autotmp_0197type.int"".autotmp_0196type.int"".autotmp_0195type.int"".autotmp_0194type.int"".autotmp_0193type.int"".autotmp_0192type.int"".autotmp_0191_type.[]uint8"".autotmp_0190type.int"".autotmp_0189/type.[]uint8"".autotmp_0188type.int"".autotmp_0187type.int"".autotmp_0186type.intimage.y4type.intimage.x3type.intimage.p2o type.*image.RGBAimage.y4type.intimage.x3type.intimage.p2 type.*image.RGBAimage.r2(type.image.Rectangleimage.r2(type.image.Rectangle"".sdeltatype.int"".ddeltatype.int
    608 "".s0type.int
    609 "".d0type.int
    610 "".dytype.int"".ntype.int
    611 "".sp` type.image.Point"".srcP type.*image.RGBA"".r(type.image.Rectangle"".dst type.*image.RGBA"
    614 b",1)W"4IK-7%*.Tgclocalsc658a76579fbc2b33fea079410ce1388Tgclocals4e6d2474ed96ed3a5afad159e279cdf4\prebuilts/go/darwin-x86/src/image/draw/draw.go "".drawNRGBAOver!!eH%HD$H;AFHH$H$H$H$H$ H$H$Hi H)HH\$`H$H$ H$L$Ih H)HH\$XH$H$H$ H$L$Ih H)HH\$HH$H$H$ H$H$H$Hh(H)H\$0H$H$ H$H$L$Ih(H)H\$8H$H$H$ H$HL$8H$L$Ih(H)H\$@HL$8Hl$0H9H$H$H$H$HXHl$8HH\$pH$H$Hl$pLCLKL9LI)I)ItM*L$L$L$H$H$H$H$HXHl$@HH\$pH$H$Hl$pLCLKL9LI)I)ItM*L$L$L$HT$`HD$HHT$hHl$XH9HHD$PH$L$HL9HlH,$H$H$Hl$PHHH9JH)i\$HHH9"H,H,$H$H$Hl$PHHH9H.l$\$HHH9H,H,$H$H$Hl$PHHH9{H.l$\$HHH9DH,H,$Hl$PH$L$HL9H+l$\$H\$hH$L$HL9HlH,$H$H$H\$hHHH9H,]\$HHH9iH,H,$H$H$H\$hHHH91H,]\$HHH9H,H,$H$H$H\$hHHH9H,]\$ HHH9H,H,$H$H$H\$hHHH9yH,]\$$l$\$)iHD$,\$(HL$xH94H
    619 H$H$H$Hl$xH9H)D$(AADD$D@+HD$hH\$l$,\$(HD$xH9HH$H$H$Hl$xH9H)D$(AADD$D@+HD$h\$ l$,H\$(HD$xH9/HH$H$H$Hl$xH9H)D$(AADD$D@+HD$h\$$l$,H\$(HD$xH9HH$H$Hl$xL$L9s~H+D$(AADD$D@+HT$hHD$PHHHT$hHl$XH9-HL$8HHD$@HHD$@HL$8Hl$0H9Hh
    647 X
    648 *runtime.racefuncenter
    649  runtime.raceread
    650  runtime.raceread
    651  runtime.raceread
    652  runtime.raceread
    653  runtime.raceread
    654  runtime.raceread
    655  runtime.raceread
    656  runtime.raceread
    657  runtime.raceread
    658  runtime.raceread
    660  runtime.raceread
    662  runtime.raceread
    663  runtime.raceread
    664  runtime.raceread
    665  runtime.raceread
    666  runtime.raceread
    667  runtime.raceread
    668  runtime.raceread
    669 "runtime.racewrite
    670 "runtime.racewrite
    671 "runtime.racewrite
    672 "runtime.racewrite
    673 (runtime.racefuncexit
    674 $runtime.panicindex
    675 $runtime.panicindex
    676 $runtime.panicindex
    677 $runtime.panicindex
    678 $runtime.panicindex
    679 $runtime.panicindex
    680 $runtime.panicindex
    681 $runtime.panicindex
    682 $runtime.panicindex
    683 $runtime.panicindex
    684 $runtime.panicindex
    685 $runtime.panicindex
    686 $runtime.panicindex 
    687 $runtime.panicindex 
    688 $runtime.panicindex 
    689 $runtime.panicindex 
    690 $runtime.panicindex 
    691 $runtime.panicindex 
    692 $runtime.panicindex 
    693 $runtime.panicindex 
    694 $runtime.panicindex 
    695 $runtime.panicindex!
    696 $runtime.panicindex!
    697 $runtime.panicindex!
    698 $runtime.panicslice!
    699 $runtime.panicslice!
    700 0runtime.morestack_noctxtV"".autotmp_0225type.uint32"".autotmp_0224type.int"".autotmp_0223type.uint32"".autotmp_0222type.int"".autotmp_0221type.uint32"".autotmp_0220type.int"".autotmp_0219type.uint32"".autotmp_0218type.int"".autotmp_0217type.uint32"".autotmp_0216type.uint32"".autotmp_0215type.uint32"".autotmp_0214type.int"".autotmp_0213type.int"".autotmp_0212type.int"".autotmp_0211type.int"".autotmp_0210type.int"".autotmp_0209type.int"".autotmp_0208otype.int"".autotmp_0207type.int"".autotmp_0206type.int"".atype.uint32
    701 "".datype.uint32
    702 "".dbtype.uint32
    703 "".dgtype.uint32
    704 "".drtype.uint32
    705 "".sbtype.uint32
    706 "".sgtype.uint32
    707 "".srtype.uint32
    708 "".satype.uint32
    709 "".sitype.int"".itype.int"".spix_type.[]uint8"".dpix/type.[]uint8
    710 "".sytype.int"".ytype.int"".yMaxtype.int"".si0type.int
    712 "".i1type.int
    713 "".i0type.int
    714 "".sp` type.image.Point"".srcP"type.*image.NRGBA"".r(type.image.Rectangle"".dst type.*image.RGBA<96.67/<ib`_aLNN
ltuq#%(,	+	Tgclocalsc5df3df9e39cf91df1f2d23d2939479aTgclocals65a7f804c91007acd0ed381632739b2f\prebuilts/go/darwin-x86/src/image/draw/draw.go"".drawNRGBASrceH%HD$H;AHH$H$H$H$H$ H$H$Hi H)HH\$HH$H$ H$L$Ih H)HH\$@H$H$H$ H$L$Ih H)HH\$0H$H$H$ H$H$H$Hh(H)H\$H$H$ H$H$L$Ih(H)H\$ H$H$H$ H$HL$ H$L$Ih(H)H\$(HL$ Hl$H9H$H$H$H$HXHl$ HH\$XH$H$Hl$XLCLKL9ILI)I)ItM*L$L$L$H$H$H$H$HXHl$(HH\$XH$H$Hl$XLCLKL9LI)I)ItM*LD$pLL$xLT$hHT$HHD$0HT$PHl$@H9HHD$8Hl$hLD$pHL9[HlH,$HT$pHL$hHD$8HHH9'H)i\$HHH9H,H,$H|$pHt$hHL$8HHH9H.l$\$HHH9H,H,$H|$pHt$hHL$8HHH9dH.l$\$HHH9-H,H,$Hl$8H\$hLD$pHL9H+l$\$HD$PH$HHD$`L$L9HH$H$H$Hl$`H9}H(l$@+HT$PHHT$`H9RHH$H$H$Hl$`H9 H(l$@+HT$PHHT$`H9HH$H$H$Hl$`H9H(l$@+HT$PHHT$`H9HH$H$Hl$`L$L9shH+l$@+HT$PHD$8HHHT$PHl$@H9$HL$ HHD$(HHD$(HL$ Hl$H9HP
    740 X
    741 *runtime.racefuncenter
    742  runtime.raceread
    743  runtime.raceread
    744  runtime.raceread
    745  runtime.raceread
    746  runtime.raceread
    747  runtime.raceread
    748  runtime.raceread
    749  runtime.raceread
    750  runtime.raceread
    751  runtime.raceread
    753  runtime.raceread
    755  runtime.raceread
    757  runtime.raceread
    758  runtime.raceread
    759 "runtime.racewrite
    760 "runtime.racewrite
    761 "runtime.racewrite
    762 "runtime.racewrite
    763 (runtime.racefuncexit
    764 $runtime.panicindex
    765 $runtime.panicindex
    766 $runtime.panicindex
    767 $runtime.panicindex
    768 $runtime.panicindex
    769 $runtime.panicindex
    770 $runtime.panicindex
    771 $runtime.panicindex
    772 $runtime.panicindex
    773 $runtime.panicindex
    774 $runtime.panicindex
    775 $runtime.panicindex
    776 $runtime.panicindex
    777 $runtime.panicindex
    778 $runtime.panicindex
    779 $runtime.panicindex
    780 $runtime.panicslice
    781 $runtime.panicslice
    782 0runtime.morestack_noctxtB"".autotmp_0241type.int"".autotmp_0240type.int"".autotmp_0239type.int"".autotmp_0238type.int"".autotmp_0237type.uint32"".autotmp_0236type.uint32"".autotmp_0234type.int"".autotmp_0233type.int"".autotmp_0232type.int"".autotmp_0231type.int"".autotmp_0230type.int"".autotmp_0229type.int"".autotmp_0228otype.int"".autotmp_0227type.int"".autotmp_0226type.int
    783 "".sbtype.uint32
    784 "".sgtype.uint32
    785 "".srtype.uint32
    786 "".satype.uint32
    787 "".sitype.int"".itype.int"".spix_type.[]uint8"".dpix/type.[]uint8
    788 "".sytype.int"".ytype.int"".yMaxtype.int"".si0type.int
    790 "".i1type.int
    791 "".i0type.int
    792 "".sp` type.image.Point"".srcP"type.*image.NRGBA"".r(type.image.Rectangle"".dst type.*image.RGBA,)6.67/<y]\ZY`OPL%(
    797 +Tgclocalsc5df3df9e39cf91df1f2d23d2939479aTgclocals65a7f804c91007acd0ed381632739b2f\prebuilts/go/darwin-x86/src/image/draw/draw.go"".drawGrayeH%HD$H;AHH$H$H$H$H$ H$H$Hi H)HH\$@H$H$ H$L$Ih H)HH\$8H$H$H$ H$L$Ih H)H\$(H$H$H$ H$H$H$Hh(H)H\$H$H$ H$H$L$Ih(H)H\$H$H$H$ H$HL$H$L$Ih(H)H\$ HL$Hl$H9H$H$H$H$HXHl$HH\$PH$H$Hl$PLCLKL9LI)I)ItM*L$L$LT$xH$H$H$H$HXHl$ HH\$PH$H$Hl$PLCLKL9VLI)I)ItM*LD$hLL$pLT$`HT$@HD$(HT$HHl$8H9H\$`HD$0LD$hL9HH$H\$`Hl$0LD$hL9H++@l$HD$HH\$xHHD$XL$L9HH$H$HD$xHl$XH9fH(l$@+HT$HHHT$XH9=HH$H$HD$xHl$XH9H(l$@+HT$HHHT$XH9HH$H$HD$xHl$XH9H(l$@+HT$HHHT$XH9HH$H\$xHl$XL$L9s`H+HT$HHD$0HHHT$HHl$8H9dHL$HHD$ HHD$ HL$Hl$H9'HA>
    812 X
    813 *runtime.racefuncenter
    814  runtime.raceread
    815  runtime.raceread
    816  runtime.raceread
    817  runtime.raceread
    818  runtime.raceread
    819  runtime.raceread
    820  runtime.raceread
    821  runtime.raceread
    822  runtime.raceread
    823  runtime.raceread
    824 
    825  runtime.raceread
    827 "runtime.racewrite
    829 "runtime.racewrite
    830 "runtime.racewrite
    831 "runtime.racewrite
    832 (runtime.racefuncexit
    833 $runtime.panicindex
    834 $runtime.panicindex
    835 $runtime.panicindex
    836 $runtime.panicindex
    837 $runtime.panicindex
    838 $runtime.panicindex
    839 $runtime.panicindex
    840 $runtime.panicindex
    841 $runtime.panicindex
    842 $runtime.panicindex
    843 $runtime.panicslice
    844 $runtime.panicslice
    845 0runtime.morestack_noctxt8"".autotmp_0254type.int"".autotmp_0253type.int"".autotmp_0252type.int"".autotmp_0251type.int"".autotmp_0250type.int"".autotmp_0249type.int"".autotmp_0248type.int"".autotmp_0247type.int"".autotmp_0246type.int"".autotmp_0245type.int"".autotmp_0244otype.int"".autotmp_0243type.int"".autotmp_0242type.int"".ptype.uint8
    846 "".sitype.int"".itype.int"".spix_type.[]uint8"".dpix/type.[]uint8
    847 "".sytype.int"".ytype.int"".yMaxtype.int"".si0type.int
    849 "".i1type.int
    850 "".i0type.int
    851 "".sp` type.image.Point"".srcP type.*image.Gray"".r(type.image.Rectangle"".dst type.*image.RGBA_	x"6.27/<yIXJKB	$(+lTgclocalsc5df3df9e39cf91df1f2d23d2939479aTgclocals65a7f804c91007acd0ed381632739b2f\prebuilts/go/darwin-x86/src/image/draw/draw.go"".drawCMYKeH%HD$H;AsHH$H$H$H$H$ H$H$Hi H)HH\$@H$H$ H$L$Ih H)HH\$8H$H$H$ H$L$Ih H)HH\$(H$H$H$ H$H$H$Hh(H)H\$H$H$ H$H$L$Ih(H)H\$H$H$H$ H$HL$H$L$Ih(H)H\$ HL$Hl$H9H$H$H$H$HXHl$HH\$`H$H$Hl$`LCLKL9LI)I)ItM*L$L$L$H$H$H$H$HXHl$ HH\$`H$H$Hl$`LCLKL9%LI)I)ItM*LD$xL$LT$pHT$@HD$(HT$HHl$8H9>HHH\$hHHHHH\$XHHD$0HH\$PH\$pHL$`LD$xL9HH$HL$xHD$pHl$`H9iH(+@l$Hl$XH9HH(H$HL$xHD$pHl$XH9H(+@l$Hl$PH9H(H$HL$xHD$pHl$PH9H(+@l$
Hl$hH9H(H$LL$HH\$pHl$hLD$xL9}H++H\$H\$I\$
i)@i)@i)Ai)T$@l$LHLHH\$PLHH\$XD$H$HL$hL$L9HH$H$H$Hl$hH9_H(l$@+Hl$PH9>H(H$H$H$Hl$PH9H(l$@+Hl$XH9H(H$H$H$Hl$XH9H)l$@+HD$HHHD$XH9HH$H$Hl$XL$L9saH+HT$HHD$0HHHT$HHl$8H9HL$HHD$ HHD$ HL$Hl$H9HkP
    884 X
    885 *runtime.racefuncenter
    886  runtime.raceread
    887  runtime.raceread
    888  runtime.raceread
    889  runtime.raceread
    890  runtime.raceread
    891  runtime.raceread
    892  runtime.raceread
    893  runtime.raceread
    894  runtime.raceread
    895  runtime.raceread
    897  runtime.raceread
    899  runtime.raceread
    901  runtime.raceread
    902  runtime.raceread
    903 "runtime.racewrite
    904 "runtime.racewrite
    905 "runtime.racewrite
    906 "runtime.racewrite
    907 (runtime.racefuncexit
    908 $runtime.panicindex
    909 $runtime.panicindex
    910 $runtime.panicindex
    911 $runtime.panicindex
    912 $runtime.panicindex
    913 $runtime.panicindex
    914 $runtime.panicindex
    915 $runtime.panicindex
    916 $runtime.panicindex
    917 $runtime.panicindex
    918 $runtime.panicindex
    919 $runtime.panicindex
    920 $runtime.panicindex
    921 $runtime.panicindex
    922 $runtime.panicindex
    923 $runtime.panicindex
    924 $runtime.panicslice
    925 $runtime.panicslice
    926 0runtime.morestack_noctxtT"".autotmp_0281type.int"".autotmp_0280type.uint8"".autotmp_0279type.int"".autotmp_0278type.int"".autotmp_0277type.int"".autotmp_0276type.uint8"".autotmp_0275type.uint8"".autotmp_0274type.uint8"".autotmp_0273type.uint32"".autotmp_0272type.uint32"".autotmp_0270type.uint8"".autotmp_0269type.uint8"".autotmp_0268type.uint8"".autotmp_0267type.int"".autotmp_0266type.int"".autotmp_0265type.int"".autotmp_0264type.int"".autotmp_0263type.int"".autotmp_0262type.int"".autotmp_0261type.int"".autotmp_0260type.int"".autotmp_0259type.int"".autotmp_0258type.int"".autotmp_0257otype.int"".autotmp_0256type.int"".autotmp_0255type.int"".~r2type.uint8"".~r1type.uint8
    929 "".sitype.int"".itype.int"".spix_type.[]uint8"".dpix/type.[]uint8
    930 "".sytype.int"".ytype.int"".yMaxtype.int"".si0type.int
    932 "".i1type.int
    933 "".i0type.int
    934 "".sp` type.image.Point"".srcP type.*image.CMYK"".r(type.image.Rectangle"".dst type.*image.RGBA
6.67/<|;++E%(8+Tgclocalsc5df3df9e39cf91df1f2d23d2939479aTgclocals65a7f804c91007acd0ed381632739b2f\prebuilts/go/darwin-x86/src/image/draw/draw.go "".drawGlyphOver.-eH%HD$H;AXHH$H$H$H$H$H\$hHD$HH$H$H$ H$HX Hl$hH)H$H$H$ H$H$H$H$H$HX(HT$HH)HhHH$HHH$H$H$H$H$H$HH$H$H)HH$HH$H$(H$8H$0H\$`HD$PH$H$H$ H$HX Hl$`H)H$H$H$ H$H$H$H$H$HX(Hl$PH)HHhHH$HH\$xH$ H$HT$xt$l$L$D$t$l$ L$$D$(H$8H$HD$pH$HL$XH9H$HT$xH$H$H$H9H$(H$H$(HHCHkH$H$H$H$H9H)H$H$(HHHCHkH$H$H$H$H9KH)+,H$H$HHH$H$H$H9H$H$H$H$H$H$HXH$HH$H$H$H$H$H$H]H$HH$H\$xH$H$(H$H$H$(HUH$HHL$XHHD$pHHD$pH$HL$XH9H	\$,H$H$H$H$HHHKHkH$H$H$H9HH$H$H$HHzHHNHnH$H$H$H9GH+l$0H4$H$HH$HHKHkH$H$H$H9HH$H$H$HHHHNHnH$H$H$H9H+l$4H4$H$H$HHHKHkH$H$H$H9.HH$H$H$HHHHNHnH$H$H$H9H+l$8H4$H$H$HHHKHkH$H$H$H9nHH$L$H$L$,HHI4I1IQIiH$H$H$H9H+l$<D$()iHHH$\$0D$Dl$\$@L$H$HHCHkH$H$H$H$H9cH)H$H$H=HHFHnH$H$H$H$H9H)D$@AA@+H$HH$\$4l$Dl$ DD$,A\$@H4$H$HHCHkH$H$H$H$H9iH)H$H$HCHHFHnH$H$H$H$H9H)D$@AA@+H$HH$\$8l$Dl$$DD$,A\$@H4$H$HHCHkH$H$H$H$H9nH)H$H$HHHHFHnH$H$H$H$H9
H)D$@AA@+H$HH$\$<l$Dl$(DD$,A\$@H4$H$HHCHkH$H$H$H$H9swH)H$H$HtXHHCHkH$H$H$H$H9s!H)D$@AA@+kA=sd
    971 X
    972 *runtime.racefuncenter
    973  runtime.raceread
    974  runtime.raceread
    975  runtime.raceread
    976  runtime.raceread
    977  runtime.raceread
    978  runtime.raceread
    979 *image.(*Uniform).RGBA	
    980  runtime.raceread
    982  runtime.raceread
    984  runtime.raceread
    985  runtime.raceread
    986  runtime.raceread
    987 (runtime.racefuncexit
    988  runtime.raceread
    989  runtime.raceread
    990  runtime.raceread
    991  runtime.raceread
    992  runtime.raceread
    993  runtime.raceread
    994  runtime.raceread
    995  runtime.raceread
    996  runtime.raceread
    997 "runtime.racewrite!
    998  runtime.raceread"
    999 "runtime.racewrite$
   1000  runtime.raceread%
   1001 "runtime.racewrite(
   1002  runtime.raceread)
   1003 "runtime.racewrite*
   1004 $runtime.panicindex+
   1005 $runtime.panicindex+
   1006 $runtime.panicindex+
   1007 $runtime.panicindex+
   1008 $runtime.panicindex+
   1009 $runtime.panicindex+
   1010 $runtime.panicindex,
   1011 $runtime.panicindex,
   1012 $runtime.panicindex,
   1013 $runtime.panicindex,
   1014 $runtime.panicindex,
   1015 $runtime.panicindex,
   1016 $runtime.panicindex-
   1017 $runtime.panicindex-
   1018 $runtime.panicindex-
   1019 $runtime.panicindex-
   1020 $runtime.panicindex-
   1021 $runtime.panicindex-
   1022 0runtime.morestack_noctxtn"".autotmp_0311type.uint32"".autotmp_0310type.int"".autotmp_0309type.uint32"".autotmp_0308type.int"".autotmp_0307type.uint32"".autotmp_0306type.int"".autotmp_0305type.uint32"".autotmp_0304type.int"".autotmp_0303type.uint32"".autotmp_0302type.int"".autotmp_0301type.int"".autotmp_0299type.int"".autotmp_0298type.int"".autotmp_0297type.int"".autotmp_0296type.int"".autotmp_0295type.int"".autotmp_0294type.int"".autotmp_0293type.int"".autotmp_0292type.int"".autotmp_0291type.int"".autotmp_0290type.int"".autotmp_0289type.int"".autotmp_0288type.int"".autotmp_0287type.int"".autotmp_0286type.uint32"".autotmp_0283type.uint32image.y4type.intimage.x3type.intimage.p2?"type.*image.Alphaimage.r2(type.image.Rectangleimage.y4type.intimage.x3type.intimage.p2O type.*image.RGBA"".atype.uint32
   1023 "".datype.uint32
   1024 "".dbtype.uint32
   1025 "".dgtype.uint32
   1026 "".drtype.uint32
   1027 "".matype.uint32
   1028 "".mitype.int"".itype.int
   1029 "".mytype.int"".ytype.int
   1030 "".satype.uint32
   1031 "".sbtype.uint32
   1032 "".sgtype.uint32
   1033 "".srtype.uint32"".mi0type.int
   1035 "".i1type.int
   1036 "".i0type.int
   1037 "".mpp type.image.Point"".mask`"type.*image.Alpha"".srcP&type.*image.Uniform"".r(type.image.Rectangle"".dst type.*image.RGBA85]6+.	8(E=:-+.% #$	
+8Tgclocals2814a39acfc02b0deaa5c28b86ac2f0bTgclocals72c12d78a5f4e591884ed809f5bc8fc1\prebuilts/go/darwin-x86/src/image/draw/draw.go"".drawRGBAFFeH%H$pH;AHH$H$H$ L$(H$0HH$H$H$H$8LL$H$H$H$H$H1H9H$H$H$H$@H9kH$H|$H$@Hl$H$HHl$L$0L$8L$H$ H$H$(\$ H$PH$X11H$HH$(H)H$PH$0H)H$H$ H$XH$`11IH$IHH$HLL$H$8HHLL$H$@HL$H$H$H$H4$HL$Ll$Ld$L$hLD$ H$pH|$(H$xHT$0H$H\$8L$H$ H$H$(\$@H$XH9|H$XH9u]H$PH9}PH$HHHHH$H$H$HLHIH$H$H$XLH)H$H$xLH)H$H$PH$pHH)HH)H$H$H)H$HH$H$H$L$LD$xH$H$H$ H$HX H$H)H$H$H$ H$H$H$H$H$H$HX(Hl$xH)HHhHH$HHH$H$HH$H$H$H$H9H$H$H$H$H$H$H$H9D$\H$`Ht`HD$H$H\$H$hH$H$`H[ HL$HD$ H$H$H$HY H$\$\$\HL$H$H\$H$HH$H$@H[ HL$HD$ H$H$H$HY H$l$T$L$D$l$LT$PL$TD$XH$HH4$H$H$HHHKHkH$H$H$H9HH$H$H$HHHHNHnH$H$H$H9VH+l$`H4$H$HH$HHKHkH$H$H$H9HH$H$H$HHHHNHnH$H$H$H9H+l$dH4$H$H$HHHKHkH$H$H$H9=HH$H$H$HHHHNHnH$H$H$H9H+l$hH4$H$H$HHHKHkH$H$H$H9}HH$L$H$t$\HHICIIIIiH$H$H$H9H+l$lD$X)iHHH$\$`D$tl$L\$pL$H$HHCHkH$H$H$H$H9rH)H$H$HLHHFHnH$H$H$H$H9H)D$pAA@+H$HH$\$dl$tl$PDD$\A\$pH4$H$HHCHkH$H$H$H$H9xH)H$H$HRHHFHnH$H$H$H$H9H)D$pAA@+H$HH$\$hl$tl$TDD$\A\$pH4$H$HHCHkH$H$H$H$H9}H)H$H$HWHHFHnH$H$H$H$H9H)D$pAA@+H$HH$\$ll$tl$XDD$\A\$pH4$H$HHCHkH$H$H$H$H9H)H$H$H\HHFHnH$H$H$H$H9!H)D$pAA@+H$H$H$HH$H$HH$HH$HH$H$H$H9>H$H$H4$H$H$H$H^H$HHH$H$H$H$HHHH$H$H$H$H9jHA.pH$HH$l$\\$pH4$H$HHCHkH$H$H$H$H96H)H$H$HHHFHnH$H$H$H$H9H)D$pAA@+H$HH$\$Pl$\\$pH4$H$HHCHkH$H$H$H$H9KH)H$H$H%HHFHnH$H$H$H$H9H)D$pAA@+H$HH$\$Tl$\\$pH4$H$HHCHkH$H$H$H$H9_H)H$H$H9HHFHnH$H$H$H$H9H)D$pAA@+H$HH$\$Xl$\\$pH4$H$HHCHkH$H$H$H$H9swH)H$H$HtXHHFHnH$H$H$H$H9s!H)D$pAA@+HH$HH\$HH\$L$H$ H$H$(HD$X
   1080 ^
   1081 *runtime.racefuncenter>go.itab.*image.RGBA.image.Image
   1082 runtime.ifaceeq	
   1083 0image.Rectangle.Overlaps
   1084  runtime.raceread
   1085  runtime.raceread
   1086  runtime.raceread
   1087  runtime.raceread
   1088  runtime.raceread
   1089  runtime.raceread
   1090  runtime.raceread
   1091  runtime.raceread
   1092  runtime.raceread
   1093  runtime.raceread
   1094  runtime.raceread"
   1095  runtime.raceread#
   1096 "runtime.racewrite%
   1097  runtime.raceread'
   1098 "runtime.racewrite)
   1099  runtime.raceread*
   1100 "runtime.racewrite-
   1101  runtime.raceread.
   1102 "runtime.racewrite1
   1103  runtime.raceread3
   1104 (runtime.racefuncexit3
   1105 $runtime.panicindex4
   1106 $runtime.panicindex4
   1107 $runtime.panicindex4
   1108 $runtime.panicindex4
   1109 $runtime.panicindex4
   1110 $runtime.panicindex4
   1111 $runtime.panicindex5
   1112 $runtime.panicindex5
   1113 $runtime.panicindex5
   1114 $runtime.panicindex5
   1115 $runtime.panicindex5
   1116 $runtime.panicindex5
   1117 $runtime.panicindex6
   1118 $runtime.panicindex6
   1119 $runtime.panicindex6
   1120 $runtime.panicindex7
   1121  runtime.raceread8
   1122 "runtime.racewrite:
   1123  runtime.raceread;
   1124 "runtime.racewrite=
   1125  runtime.raceread?
   1126 "runtime.racewriteA
   1127  runtime.racereadB
   1128 "runtime.racewriteC
   1129 $runtime.panicindexD
   1130 $runtime.panicindexD
   1131 $runtime.panicindexD
   1132 $runtime.panicindexD
   1133 $runtime.panicindexD
   1134 $runtime.panicindexD
   1135 $runtime.panicindexE
   1136 $runtime.panicindexE type.*image.RGBAE type.image.ImageE>go.itab.*image.RGBA.image.ImageE
   1137  runtime.typ2ItabF
   1138 0runtime.morestack_noctxt"".autotmp_0383type.uint32"".autotmp_0382type.int"".autotmp_0381type.uint32"".autotmp_0380type.int"".autotmp_0379type.uint32"".autotmp_0378type.int"".autotmp_0377type.uint32"".autotmp_0376type.int"".autotmp_0375type.uint32"".autotmp_0374type.int"".autotmp_0373type.uint32"".autotmp_0372type.int"".autotmp_0371type.uint32"".autotmp_0370type.int"".autotmp_0369type.uint32"".autotmp_0368type.int"".autotmp_0367type.uint32"".autotmp_0366type.int"".autotmp_0365type.int"".autotmp_0364type.int"".autotmp_0362type.int"".autotmp_0361type.int"".autotmp_0360type.int"".autotmp_0359type.int"".autotmp_0358type.int"".autotmp_0357type.int"".autotmp_0355type.int"".autotmp_0354(type.image.Rectangle"".autotmp_0353 type.image.Point"".autotmp_0352 type.image.Point"".autotmp_0350o type.image.Image"".autotmp_0349type.int"".autotmp_0348type.int"".autotmp_0347type.int"".autotmp_0343type.uint32"".autotmp_0342,type.image/color.Color"".autotmp_0341type.uint32"".autotmp_0340O,type.image/color.Color"".autotmp_0338 type.*image.RGBAimage.y4type.intimage.x3type.intimage.p2 type.*image.RGBA"".~r0(type.image.Rectangleimage.p3 type.image.Pointimage.r2(type.image.Rectangle"".~r0 type.image.Pointimage.q3 type.image.Pointimage.p2 type.image.Point"".atype.uint32
   1141 "".datype.uint32
   1142 "".dbtype.uint32
   1143 "".dgtype.uint32
   1144 "".drtype.uint32
   1145 "".satype.uint32
   1146 "".sbtype.uint32
   1147 "".sgtype.uint32
   1148 "".srtype.uint32
   1149 "".matype.uint32
   1150 "".mxtype.int
   1151 "".sxtype.int"".itype.int"".ytype.int
   1152 "".ditype.int
   1153 "".i0type.int"".sx1type.int"".mx0type.int"".sx0type.int
   1157 "".mytype.int
   1158 "".sytype.int
   1159 "".dytype.int
   1160 "".y1type.int
   1161 "".y0type.int
   1162 "".dxtype.int
   1163 "".x1type.int
   1164 "".x0type.int
   1165 "".optype."".Op
   1166 "".mp type.image.Point"".mask type.image.Image
   1167 "".spp type.image.Point"".srcP type.image.Image"".r(type.image.Rectangle"".dst type.*image.RGBA"	#"d!a'''((!A`x -e@IAJB&9:C
R.ATgclocalsad69b40e9fcea4c07aa7b4776f9d96b6Tgclocals84017456a330c2c1630d6e2529f0f88e\prebuilts/go/darwin-x86/src/image/draw/draw.go"".clampeH%H;avTHH\$H$D$}D$H=~D$HD$H
   1173 :
   1174 *runtime.racefuncenterf
   1175 (runtime.racefuncexit
   1176 (runtime.racefuncexit
   1177 (runtime.racefuncexit
   1178 0runtime.morestack_noctxt "".~r1type.int32"".itype.int32"(

p4
   1183 	

   1186 TTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go"".sqDiffeH%H;av>HH\$H$L$D$9~)\$H)
   1188 :
   1189 *runtime.racefuncenter
   1190 (runtime.racefuncexit
   1191 0runtime.morestack_noctxt "".~r2type.uint32"".ytype.int32"".xtype.int325`,|wnm
   1195 DTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go"".drawPalettedeH%H$0H;A HPH$PH$1H$H$H$1H$H$H$HD$xH$xHH$H$XH\$H$`H\$H$xH\$\$ H$xcH$XH$H$@H$XHkHHH$Hl$Hl$HT$HL$ HD$(H$8H$H$@H$H$HH$H$XH$H$@H$XHsHS@HCHHkPH$01H$(H$H$ HH$H$H9H$hH$H$hHHHkH$H$H$H$H$H,$H$HY l$T$L$D$l$0T$4L$LD$TH$H$L$L9vHHH$H$H$H$HHH98HHl$0+HHH9HHHH$H$H$H$HHH9HHl$4kHHH9HHHH$H$H$H$HHH9mHHl$LkHHH9IHHHH$H$H$L$L9
HHl$TkH$hH$HHH$H$H9H$XH$pH$hH\$hHD$XH$PH$H$ H$PHX Hl$hH)H$H$H$ H$H$PH$H$H$PHX(Hl$XH)HHhHH$HH$H$XH$H$XH$L@LHL9LI)I)ItM*L$L$L$H$H$H$XHkH$H$H$H$H$H$Hl$x1H$H$H$1H$H$H$$4H$hH$pH$H$xH$H$HH$H$H)HHHH$HD$HD$HT$HL$ HD$(H$H$H$H$hH$pH$H$xH$H$(HH$ H$H)HHHH$HD$HD$HT$HL$ HD$(H$8H$H$@H$H$HH$HH$HD$1f$f$f$f$H$H$HD$H$H$f+H$fkH$fkH$fkHD$`H$hH$H$pH$xH$H$H$H$Hl$`H)H91H$hH$pH$8H$xH$H$HHH$@H$0H)H9H$HD$pHH\$H$Hl$`HH\$H$H$H$H[ HL$HD$ H$H$H$HY l$T$L$D$l$8T$<L$@D$D$H\$pHH$L$L9`HHH,$H$H$H\$pHHHH9"HH]l$81D$8HHHH9HHHH,$H$H$H\$pHHHH9HH]l$<E1D$<HHHH9&HHHH,$H$H$H\$pHHHH9HH]l$@1D$@HHHH9HHHH,$H\$pHH$L$L9KHH]l$D
1D$DH$HH$\$HH$H$H$H$H1H$@H$H$8HH$H$H9H$`H$HD$L$L$`IoAArAREJM$$$D$$L$89&)$L$<9)$L$@9)D$L$DD9D)l$H9tL$\$H_HD$`Hl$xHHl$pH$HH$L$L9!HH$H$H$H$L$L9H+$u
HD$pH\$8\$PH$L$HL9HHH$H$H$H$HHH9^HHl$P)l$8\$<\$PHHH9-HHHH$H$H$H$HHH9HH[l$P)l$<\$@\$PHHH9HHHH$H$H$H$HHH9wHH[l$P)l$@\$D\$PHHH9EHHHH$H$H$L$L9	HH[l$P)l$DHl$pH$HH$L$L9
HHH$H$H$H$HHH9
HH+l$PHHH9c
HHH$H$H$H$HH9(
HHl$8DD$PkD+Hl$pHHH$H9HHHH$H$H$H$HHH9HHkl$PHHH9HHHH$H$H$H$HH9GHHl$<DD$PkDkHl$pHHH$H9
   1220 HHHH$H$H$H$HHH9HHkl$PHHH9HHHH$H$H$H$HH9eHHl$@DD$PkDkHl$pHHH$H9(HHHH$H$H$H$HHH9
   1227 HHkl$PHHH9
   1229 HHHH$H$H$H$HH9
   1231 HHl$DDD$PkDkHl$pHHH$H9G
   1233 HHH$H$H$H$HHH9	
   1234 HH+l$PHHH9	HHH$H$H$H$HH9	HHl$8DD$PkD+Hl$pHHH$H9p	HHHH$H$H$H$HHH9.	HHkl$PHHH9
   1235 	HHHH$H$H$H$HH9HHl$<DD$PkDkHl$pHHH$H9HHHH$H$H$H$HHH9MHHkl$PHHH9)HHHH$H$H$H$HH9HHl$@DD$PkDkHl$pHHH$H9HHHH$H$H$H$HHH9lHHkl$PHHH9HHHHH$H$H$H$HH9	HHl$DDD$PkDkHl$pHHH$H9HHH$H$H$H$HHH9HH+l$PHHH9kHHH$H$H$H$HH90HHl$PDD$8D+Hl$pHHH$H9HHHH$H$H$H$HHH9HHkl$PHHH9HHHH$H$H$H$HH9RHHl$PDD$<DkHl$pHHH$H9HHHH$H$H$H$HHH9HHkl$PHHH9HHHH$H$H$H$HH9sHHl$PDD$@DkHl$pHHH$H99HHHH$H$H$H$HHH9HHkl$PHHH9HHHH$H$H$L$L9HHl$PDD$DDkHl$pH$HH$L$L9PHHH$H$H$H$HHH9HH+l$PHHH9HHH$H$H$H$HH9HHl$8DD$PkD+Hl$pHHH$H9xHHHH$H$H$H$HHH96HHkl$PHHH9HHHH$H$H$H$HH9HHl$<DD$PkDkHl$pHHH$H9HHHH$H$H$H$HHH9THHkl$PHHH90HHHH$H$H$H$HH9HHl$@DD$PkDkHl$pHHH$H9HHHH$H$H$H$HHH9svHHkl$PHHH9sVHHHH$H$H$L$L9sHHl$DDD$PkDk$LHLHgD)R)'))AH$H$H$l$8f(H$H$H$l$<fhH$H$H$l$@fhH$H$H$l$DfhH$pH1H9H$hHl$pHH\$H$pHl$`HH\$H$pH$HD$H$HL$ H$`H$H$XH[8$H$hHl$pHH\$H$pHl$`HH\$H$`H$H$XH[ HL$HD$ H$H$H$HY \$t$T$L$l$8)l$8l$<)l$<l$@)l$@l$D)l$DHH$HH\$HH\$HD$PF$eH$H$H$H$H$H$H$H$H$H$8H$H$@H$H$HH$H$1H$H$H9H$1$$$$H$HH$L$L9HHH$HD$H$H$L$L9s\HH$+$k$k$kH$HH$H96H\$`HH\$`HP
   1343 ^
   1344 *runtime.racefuncenter(type.*image.Paletted
   1345 $runtime.assertI2T2
   1346  runtime.racereadtype.[][4]int32
   1347 "runtime.makeslice
   1348  runtime.raceread
   1349  runtime.raceread	
   1350 "runtime.racewrite
   1351 
   1352 "runtime.racewrite
   1354 "runtime.racewrite
   1356 "runtime.racewrite
   1357  runtime.raceread
   1358  runtime.raceread
   1359  runtime.raceread
   1360  runtime.raceread
   1361  runtime.racereadtype.[][4]int32
   1362 "runtime.makeslicetype.[][4]int32
   1363 "runtime.makeslice.type.image/color.RGBA64
   1364 "runtime.newobject
   1365 ,runtime.racewriterange !"
   1366  runtime.raceread$
   1367  runtime.raceread&
   1368  runtime.raceread(
   1369  runtime.raceread+
   1370 *runtime.racereadrange0
   1371 "runtime.racewrite2
   1372  runtime.raceread4
   1373  runtime.raceread5
   1374  runtime.raceread7
   1375  runtime.raceread9
   1376  runtime.raceread:
   1377 "runtime.racewrite<
   1378  runtime.raceread=
   1379 "runtime.racewrite?
   1380  runtime.raceread@
   1381 "runtime.racewriteB
   1382  runtime.racereadC
   1383 "runtime.racewriteE
   1384  runtime.racereadF
   1385 "runtime.racewriteH
   1386  runtime.racereadI
   1387 "runtime.racewriteK
   1388  runtime.racereadL
   1389 "runtime.racewriteN
   1390  runtime.racereadO
   1391 "runtime.racewriteQ
   1392  runtime.racereadR
   1393 "runtime.racewriteT
   1394  runtime.racereadU
   1395 "runtime.racewriteW
   1396  runtime.racereadX
   1397 "runtime.racewriteZ
   1398  runtime.raceread[
   1399 "runtime.racewrite]
   1400  runtime.raceread^
   1401 "runtime.racewrite`
   1402  runtime.racereadb
   1403 "runtime.racewritec
   1404  runtime.racereade
   1405 "runtime.racewritef
   1406  runtime.racereadh
   1407 "runtime.racewritei
   1408 $runtime.panicindexi
   1409 $runtime.panicindexi
   1410 $runtime.panicindexi
   1411 $runtime.panicindexi
   1412 $runtime.panicindexi
   1413 $runtime.panicindexi
   1414 $runtime.panicindexi
   1415 $runtime.panicindexj
   1416 $runtime.panicindexj
   1417 $runtime.panicindexj
   1418 $runtime.panicindexj
   1419 $runtime.panicindexj
   1420 $runtime.panicindexj
   1421 $runtime.panicindexj
   1422 $runtime.panicindexj
   1423 $runtime.panicindexj
   1424 $runtime.panicindexj
   1425 $runtime.panicindexk
   1426 $runtime.panicindexk
   1427 $runtime.panicindexk
   1428 $runtime.panicindexk
   1429 $runtime.panicindexk
   1430 $runtime.panicindexk
   1431 $runtime.panicindexk
   1432 $runtime.panicindexk
   1433 $runtime.panicindexk
   1434 $runtime.panicindexl
   1435 $runtime.panicindexl
   1436 $runtime.panicindexl
   1437 $runtime.panicindexl
   1438 $runtime.panicindexl
   1439 $runtime.panicindexl
   1440 $runtime.panicindexl
   1441 $runtime.panicindexl
   1442 $runtime.panicindexl
   1443 $runtime.panicindexm
   1444 $runtime.panicindexm
   1445 $runtime.panicindexm
   1446 $runtime.panicindexm
   1447 $runtime.panicindexm
   1448 $runtime.panicindexm
   1449 $runtime.panicindexm
   1450 $runtime.panicindexm
   1451 $runtime.panicindexm
   1452 $runtime.panicindexn
   1453 $runtime.panicindexn
   1454 $runtime.panicindexn
   1455 $runtime.panicindexn
   1456 $runtime.panicindexn
   1457 $runtime.panicindexn
   1458 $runtime.panicindexn
   1459 $runtime.panicindexn
   1460 $runtime.panicindexn
   1461 $runtime.panicindexo
   1462 $runtime.panicindexo
   1463 $runtime.panicindexo
   1464 $runtime.panicindexo
   1465 $runtime.panicindexo
   1466 $runtime.panicindexo
   1467 $runtime.panicindexo
   1468 $runtime.panicindexo
   1469 $runtime.panicindexo
   1470 $runtime.panicindexp
   1471 $runtime.panicindexp
   1472 $runtime.panicindexp
   1473 $runtime.panicindexp
   1474 $runtime.panicindexp
   1475 $runtime.panicindexp
   1476 $runtime.panicindexp
   1477 $runtime.panicindexp
   1478 $runtime.panicindexp
   1479 $runtime.panicindexq
   1480 $runtime.panicindexq
   1481 $runtime.panicindexr
   1482 "runtime.racewriter
   1483 "runtime.racewrites
   1484 "runtime.racewrites
   1485 "runtime.racewritetZgo.itab.*image/color.RGBA64.image/color.Colorvwwx0type.*image/color.RGBA64y,type.image/color.ColoryZgo.itab.*image/color.RGBA64.image/color.Colory
   1486  runtime.typ2Itabz
   1487 $runtime.panicindexz
   1488 $runtime.panicindexz
   1489 $runtime.panicindexz
   1490 $runtime.panicindex{
   1491 $runtime.panicindex{
   1492 $runtime.panicindex{
   1493 $runtime.panicindex{
   1494 $runtime.panicindex
   1495 ,runtime.racewriterange
   1496 $runtime.panicindex
   1497 $runtime.panicindex
   1498 (runtime.racefuncexit
   1499 $runtime.panicslice
   1500 $runtime.panicindex
   1501 $runtime.panicindex
   1502 $runtime.panicindex
   1503 $runtime.panicindex
   1504 $runtime.panicindex
   1505 $runtime.panicindex
   1506 $runtime.panicindex
   1507 $runtime.panicindex
   1508 0runtime.morestack_noctxt	"".autotmp_0527type.[4]int32"".autotmp_0526type.int"".autotmp_0525type.int"".autotmp_0524type.[][4]int32"".autotmp_0522type.int"".autotmp_0521type.uint32"".autotmp_0520type.int32"".autotmp_0519type.uint32"".autotmp_0518type.int32"".autotmp_0517type.uint32"".autotmp_0516type.int32"".autotmp_0515type.uint32"".autotmp_0514type.int32"".autotmp_0513type.[4]int32"".autotmp_0512type.*[4]int32"".autotmp_0511type.int"".autotmp_0510type.int"".autotmp_0509type.int32"".autotmp_0508type.int32"".autotmp_0507type.int32"".autotmp_0506type.int32"".autotmp_0505type.int32"".autotmp_0504type.int32"".autotmp_0503type.int32"".autotmp_0502type.int32"".autotmp_0498type.int32"".autotmp_0497type.int"".autotmp_0496type.int"".autotmp_0495.type.image/color.RGBA64"".autotmp_0494type.int"".autotmp_0493type.int"".autotmp_0492type.int"".autotmp_0491type.int"".autotmp_0490type.int"".autotmp_0489type.int"".autotmp_0488type.int"".autotmp_0487type.int"".autotmp_0486,type.image/color.Color"".autotmp_0485.type.*image/color.Color"".autotmp_0484type.int"".autotmp_0483type.int"".autotmp_0482type.int"".autotmp_0481type.int"".autotmp_0480type.int32"".autotmp_0479type.int"".autotmp_0478type.int32"".autotmp_0477type.int"".autotmp_0476type.int32"".autotmp_0475type.int"".autotmp_0474type.int32"".autotmp_0473type.int"".autotmp_0472type.int32"".autotmp_0471type.int"".autotmp_0470type.int32"".autotmp_0469type.int"".autotmp_0468type.int32"".autotmp_0467type.int"".autotmp_0466type.int32"".autotmp_0465type.int"".autotmp_0464type.int32"".autotmp_0463type.int"".autotmp_0462type.int32"".autotmp_0461type.int"".autotmp_0460type.int32"".autotmp_0459type.int"".autotmp_0458type.int32"".autotmp_0457type.int"".autotmp_0456type.int32"".autotmp_0455type.int"".autotmp_0454type.int32"".autotmp_0453type.int"".autotmp_0452type.int32"".autotmp_0451type.int"".autotmp_0450type.int32"".autotmp_0449type.int"".autotmp_0448type.int32"".autotmp_0447type.int32"".autotmp_0446type.int32"".autotmp_0445type.int32"".autotmp_0444type.uint32"".autotmp_0443type.uint32"".autotmp_0442type.uint32"".autotmp_0441type.uint32"".autotmp_0440,type.image/color.Color"".autotmp_04390type.*image/color.RGBA64"".autotmp_0438type.int32"".autotmp_0437type.int32"".autotmp_0436type.int32"".autotmp_0435type.int32"".autotmp_0434type.[][4]int32"".autotmp_0433type.uint32"".autotmp_0432type.uint32"".autotmp_0431type.uint32"".autotmp_0430type.uint32"".autotmp_0429,type.image/color.Color"".autotmp_0428type.[][4]int32"".autotmp_0427type.[][4]int32"".autotmp_0426type.[]uint8"".autotmp_0425type.int"".autotmp_0420_0type.image/color.Palette"".autotmp_0419/type.[][4]int32"".autotmp_0418type.int"".autotmp_0417(type.*image.Paletted"".&out0type.*image/color.RGBA64image.r2(type.image.Rectangleimage.r2(type.image.Rectangleimage.r2(type.image.Rectangleimage.r2(type.image.Rectangleimage.y4type.intimage.x3type.intimage.p2(type.*image.Paletted"".itype.int"".ptype.[4]int32"".bestSumtype.uint32"".bestIndextype.int
   1509 "".eatype.int32
   1510 "".ebtype.int32
   1511 "".egtype.int32
   1512 "".ertype.int32"".xtype.int"".ytype.int""".quantErrorNexttype.[][4]int32""".quantErrorCurrtype.[][4]int32"".atype.uint32"".btype.uint32"".gtype.uint32"".rtype.uint32"".col,type.image/color.Color"".itype.int"".p(type.*image.Paletted"".stridetype.int"".pixtype.[]uint8"".palettetype.[][4]int32""".floydSteinbergtype.bool
   1515 "".sp type.image.Point"".src` type.image.Image"".r (type.image.Rectangle"".dsttype."".Image"	@		WA"=Y{:eXXR	04ZQx{{uy	
   1520 s
   1521 7
>nff`0/	( 
   1523 x
   1524 
   1525 
   1526 
   1527 2G$$$$x+
   1528 l.,{mZOC%~rTgclocalsb62f76e7e94416242bfc86c5c8fc7801Tgclocals9b0a030c03dc67093e7482a813223ade\prebuilts/go/darwin-x86/src/image/draw/draw.go"".initeH%H;a'H8H\$8H$HH$t-HH$u
   1530 H8HH$1HH$HH$HH\$HH\$H\$8H\$HD$ H\$(HH\$0=u(HHH$H8H-H,$H\$@
   1532 B
   1533 *runtime.racefuncenterP"".initdoneb
   1534  runtime.racereadp"".initdone"".initdone
   1535  runtime.raceread"".initdone
   1536 (runtime.racefuncexit
   1537 "runtime.throwinit"".initdone
   1538 "runtime.racewrite"".initdone
   1539 image.init
   1540  image/color.init
   1541 :image/internal/imageutil.init""".FloydSteinberg
   1542 "runtime.racewrite,type."".floydSteinbergtype."".DrawerFgo.itab."".floydSteinberg."".Drawer
   1543 runtime.convT2I""".FloydSteinberg6runtime.writeBarrierEnabled""".FloydSteinberg"".initdone
   1544 "runtime.racewrite"".initdone
   1545 (runtime.racefuncexit""".FloydSteinberg
   1546 .runtime.writebarrierptr
   1547 0runtime.morestack_noctxtp"".autotmp_0530,type."".floydSteinbergpOopop-"
   1548 	n	!		 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go"".(*Op).DraweH%H;aHXHY Ht
H|$`H9;uH#H\$XH$H\$`1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$`H$H\$`H+H,$H\$hH\$H\$pH\$H\$xH\$H$H\$ H$H\$(H$H\$0H$H\$8H$H\$@H$H\$HH$H\$PHX
   1553 n
   1554 *runtime.racefuncenter go.string."draw"go.string."Op" go.string."Draw"
   1555 "runtime.panicwrap
   1556  runtime.raceread
   1557 "".Op.Draw
   1558 (runtime.racefuncexit
   1559 0runtime.morestack_noctxt
   1560 
   1561 "".sp type.image.Point"".srcp type.image.Image"".r0(type.image.Rectangle"".dsttype."".Image""..thistype.*"".Op6Tgclocals8a57dc7d5c290327fe731054fc6a7f75Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".Image.AteH%H;aH8HY Ht
H|$@H9;uH#H\$8H$1H\$`H\$hH\$PH\$H\$XH\$H\$HH$H\$@H[ HL$HD$ HL$(HL$`HD$0HD$hH8_
   1567 
   1568 n
   1569 *runtime.racefuncenter
   1570 (runtime.racefuncexit
   1571 0runtime.morestack_noctxt`p
   1572 "".autotmp_0531,type.image/color.Color"".~r3@,type.image/color.Colorimage.y0type.intimage.x type.int""..thistype."".Imagepop6W#Tgclocalsb6338434a483b71ecf7a1963213f75e2Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>"".Image.BoundseH%H;aHHHY Ht
H|$PH9;uH#H\$HH$1H\$`H\$hH\$pH\$xH\$XH$H\$PH[(Hl$HT$HL$HD$ Hl$(Hl$`HT$0HT$hHL$8HL$pHD$@HD$xHHK
   1576 
   1577 n
   1578 *runtime.racefuncenter
   1579 (runtime.racefuncexit
   1580 0runtime.morestack_noctxt`"".autotmp_0532?(type.image.Rectangle"".~r1 (type.image.Rectangle""..thistype."".Image6Tgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>&"".Image.ColorModeleH%H;avpH(HY Ht
H|$0H9;uH#H\$(H$1H\$@H\$HH\$8H$H\$0H[0HL$HD$HL$HL$@HD$ HD$HH(w
   1585 
   1586 f
   1587 *runtime.racefuncenter
   1588 (runtime.racefuncexit
   1589 0runtime.morestack_noctxt@P"".autotmp_0533,type.image/color.Model"".~r1 ,type.image/color.Model""..thistype."".ImagePkOP
   1591 2CTgclocals19b49d53e9c11805652fa4c0885cbb29Tgclocalsc55cf99de9cdd8c8202a466952fa1a45<autogenerated>"".Image.SeteH%H;avnH(HY Ht
H|$0H9;uH#H\$(H$H\$@H\$H\$HH\$H\$PH\$H\$XH\$ H\$8H$H\$0H[8H(y
   1594 
   1595 f
   1596 *runtime.racefuncenter
   1597 (runtime.racefuncexit
   1598 0runtime.morestack_noctxt`P"".c@,type.image/color.Color"".y0type.int"".x type.int""..thistype."".ImagePiOP
   1600 2^Tgclocals57cb53c6e1baf060ff3024e169f48a16Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>2"".(*floydSteinberg).DraweH%H;a*HPHY Ht
H|$XH9;uH#H\$PH$H\$X1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$XH$HD$H\$XHH\$`H$H\$hH\$H\$pH\$H\$xH\$H$H\$ H$H\$(H$H\$0H$H\$8H$H\$@H$H\$HHPu
   1604 n
   1605 *runtime.racefuncenter go.string."draw"4go.string."floydSteinberg" go.string."Draw"
   1606 "runtime.panicwrap
   1607 *runtime.racereadrange
   1608 ,"".floydSteinberg.Draw
   1609 (runtime.racefuncexit
   1610 0runtime.morestack_noctxt
   1611 
   1612 "".sp type.image.Point"".srcp type.image.Image"".r0(type.image.Rectangle"".dsttype."".Image""..this.type.*"".floydSteinberg6Tgclocals8a57dc7d5c290327fe731054fc6a7f75Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".Drawer.DraweH%H;aHXHY Ht
H|$`H9;uH#H\$XH$H\$pH\$H\$xH\$H$H\$H$H\$ H$H\$(H$H\$0H$H\$8H$H\$@H$H\$HH$H\$PH\$hH$H\$`H[ HX!
   1618 
   1619 n
   1620 *runtime.racefuncenter
   1621 (runtime.racefuncexit
   1622 0runtime.morestack_noctxt
   1623 
   1624 "".sp type.image.Point"".src type.image.Image"".r@(type.image.Rectangle"".dst type."".Image""..thistype."".Drawer6Tgclocals9fce04353485125ccd01916520b7f5a9Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*"".Quantizer.QuantizeeH%H;aH`HY Ht
H|$hH9;uH#H\$`H$1H$H$H$H\$xH\$H$H\$H$H\$H$H\$ H$H\$(H\$pH$H\$hH[ HT$0HL$8HD$@HT$HH$HL$PH$HD$XH$H`
   1631 
   1632 n
   1633 *runtime.racefuncenter
   1634 (runtime.racefuncexit
   1635 0runtime.morestack_noctxt
   1636 "".autotmp_0534/0type.image/color.Palette"".~r2p0type.image/color.Palette"".mP type.image.Image"".p 0type.image/color.Palette""..this"type."".Quantizer6#Tgclocals68ad10045770b469a7bcb66bb90152f9Tgclocalsf56b2291fa344104975cb6587be42b9b<autogenerated>Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals53c7667477e950feba4c8f0f6f5b2e07Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals8284eba58712f7b004cdf24e5edb7852
   1639 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsbd5ecf30bdbc677b0e14fa50cb5ef414	Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocalsb85af394c8a18f2d7505864470ede412Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsb85af394c8a18f2d7505864470ede4120 (a] go.itab.*image.Paletted."".Image0Zgo.itab.image/color.Alpha16.image/color.Color0Zgo.itab.*image/color.RGBA64.image/color.ColorTgclocals8612be9867699b1b13259cc361386f71``
   1642 00	Tgclocalsddb284fdbda7264b36079ec68248ad08``
   1643 Tgclocals83ead081cd909acab0dcd88a450c1878  Tgclocals0a593fb1764c93835ed65ead7777b19c  !!Tgclocals98ed4fede4305b76799eb89c68818740((Tgclocalsf06f1fbaad773dc5128fb9efcb2920cf((!!!Tgclocalsfdce80aea1d77ebc90f85b699d6c9ea088 $Tgclocals6d79c77c47a9fca5990ca5c08473616488!!!!!Tgclocals4e6d2474ed96ed3a5afad159e279cdf400 Tgclocalsc658a76579fbc2b33fea079410ce138800!!!!Tgclocals65a7f804c91007acd0ed381632739b2f((	Tgclocalsc5df3df9e39cf91df1f2d23d2939479a((!!!Tgclocals65a7f804c91007acd0ed381632739b2f((	Tgclocalsc5df3df9e39cf91df1f2d23d2939479a((!!!Tgclocals65a7f804c91007acd0ed381632739b2f((	Tgclocalsc5df3df9e39cf91df1f2d23d2939479a((!!!Tgclocals65a7f804c91007acd0ed381632739b2f((	Tgclocalsc5df3df9e39cf91df1f2d23d2939479a((!!!Tgclocals72c12d78a5f4e591884ed809f5bc8fc1((Tgclocals2814a39acfc02b0deaa5c28b86ac2f0b((	aaa0>go.itab.*image.RGBA.image.ImageTgclocals84017456a330c2c1630d6e2529f0f88e((	Tgclocalsad69b40e9fcea4c07aa7b4776f9d96b6((aaaTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals9b0a030c03dc67093e7482a813223adexx
  
   1655 @H@HDHPHTgclocalsb62f76e7e94416242bfc86c5c8fc7801xx
0Fgo.itab."".floydSteinberg."".DrawerTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb.""".FloydSteinberg type."".Drawer0"".initdonetype.uint8"".Op.Drawf"".Op.Draw2"".floydSteinberg.Drawf,"".floydSteinberg.Draw"".clipf"".clip*"".processBackwardf$"".processBackward"".Drawf"".Draw"".DrawMaskf"".DrawMask$"".drawFillOverf"".drawFillOver""".drawFillSrcf"".drawFillSrc$"".drawCopyOverf"".drawCopyOver""".drawCopySrcf"".drawCopySrc&"".drawNRGBAOverf "".drawNRGBAOver$"".drawNRGBASrcf"".drawNRGBASrc"".drawGrayf"".drawGray"".drawCMYKf"".drawCMYK&"".drawGlyphOverf "".drawGlyphOver"".drawRGBAf"".drawRGBA"".clampf"".clamp"".sqDifff"".sqDiff$"".drawPalettedf"".drawPaletted"".initf"".init"runtime.gcbits.010go.string.hdr."*draw.Op"  (go.string."*draw.Op"(go.string."*draw.Op" *draw.Op(go.string.hdr."draw"   go.string."draw" go.string."draw"
   1658 draw$go.string.hdr."Op"  go.string."Op"go.string."Op"Op(go.string.hdr."Draw"   go.string."Draw" go.string."Draw"
   1659 DrawTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals8a57dc7d5c290327fe731054fc6a7f75Tgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocalsb6338434a483b71ecf7a1963213f75e2  3Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocalsc55cf99de9cdd8c8202a466952fa1a45  Tgclocals19b49d53e9c11805652fa4c0885cbb29  Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals57cb53c6e1baf060ff3024e169f48a163Tgo.string.hdr."func(int, int) color.Color"  Lgo.string."func(int, int) color.Color"Lgo.string."func(int, int) color.Color"@6func(int, int) color.ColorJtype.func(int, int) image/color.ColorT30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int, int) color.Color"p\go.weak.type.*func(int, int) image/color.Color"runtime.zerovalueJtype.func(int, int) image/color.ColorJtype.func(int, int) image/color.Colortype.inttype.int,type.image/color.Colorgo.typelink.func(int, int) color.Color	func(int, int) image/color.ColorJtype.func(int, int) image/color.ColorLgo.string.hdr."func() image.Rectangle"  Dgo.string."func() image.Rectangle"Dgo.string."func() image.Rectangle"0.func() image.Rectangle6type.func() image.Rectanglee30 runtime.algarray@"runtime.gcbits.01PLgo.string.hdr."func() image.Rectangle"pHgo.weak.type.*func() image.Rectangle"runtime.zerovalue6type.func() image.Rectangle6type.func() image.Rectangle(type.image.Rectanglergo.typelink.func() image.Rectangle	func() image.Rectangle6type.func() image.RectangleDgo.string.hdr."func() color.Model"  <go.string."func() color.Model"<go.string."func() color.Model"0&func() color.Model:type.func() image/color.Model{#30 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."func() color.Model"pLgo.weak.type.*func() image/color.Model"runtime.zerovalue:type.func() image/color.Model:type.func() image/color.Model,type.image/color.Modelngo.typelink.func() color.Model	func() image/color.Model:type.func() image/color.ModelVgo.string.hdr."func(int, int, color.Color)"  Ngo.string."func(int, int, color.Color)"Ngo.string."func(int, int, color.Color)"@8func(int, int, color.Color)Ltype.func(int, int, image/color.Color)md~30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(int, int, color.Color)"p^go.weak.type.*func(int, int, image/color.Color)"runtime.zerovalueLtype.func(int, int, image/color.Color)Ltype.func(int, int, image/color.Color)type.inttype.int,type.image/color.Colorgo.typelink.func(int, int, color.Color)	func(int, int, image/color.Color)Ltype.func(int, int, image/color.Color)6go.string.hdr."*draw.Image"  .go.string."*draw.Image".go.string."*draw.Image" *draw.Imagetype.*"".Image60 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."*draw.Image"p.go.weak.type.**"".Image"runtime.zerovaluetype."".Image"runtime.gcbits.034go.string.hdr."draw.Image"  
   1663 ,go.string."draw.Image",go.string."draw.Image" draw.Image$go.string.hdr."At"  go.string."At"go.string."At"At,go.string.hdr."Bounds"  $go.string."Bounds"$go.string."Bounds"Bounds4go.string.hdr."ColorModel"  
   1664 ,go.string."ColorModel",go.string."ColorModel" ColorModel&go.string.hdr."Set"  go.string."Set"go.string."Set"Set*go.string.hdr."Image"  "go.string."Image""go.string."Image"Image4go.string.hdr."image/draw"  
   1666 ,go.string."image/draw",go.string."image/draw" image/draw"go.importpath."".  
   1667 ,go.string."image/draw"type."".Image}$0 runtime.algarray@"runtime.gcbits.03P4go.string.hdr."draw.Image"ptype.*"".Image"runtime.zerovaluetype."".Image$go.string.hdr."At"Jtype.func(int, int) image/color.Color,go.string.hdr."Bounds"6type.func() image.Rectangle4go.string.hdr."ColorModel":type.func() image/color.Model&go.string.hdr."Set"Ltype.func(int, int, image/color.Color)`type."".Image*go.string.hdr."Image""go.importpath."".type."".Imagego.string.hdr."func(*draw.Op, draw.Image, image.Rectangle, image.Image, image.Point)"  Ego.string."func(*draw.Op, draw.Image, image.Rectangle, image.Image, image.Point)"go.string."func(*draw.Op, draw.Image, image.Rectangle, image.Image, image.Point)"func(*draw.Op, draw.Image, image.Rectangle, image.Image, image.Point)type.func(*"".Op, "".Image, image.Rectangle, image.Image, image.Point) 30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*draw.Op, draw.Image, image.Rectangle, image.Image, image.Point)"pgo.weak.type.*func(*"".Op, "".Image, image.Rectangle, image.Image, image.Point)"runtime.zerovaluetype.func(*"".Op, "".Image, image.Rectangle, image.Image, image.Point)type.func(*"".Op, "".Image, image.Rectangle, image.Image, image.Point)type.*"".Optype."".Image(type.image.Rectangle type.image.Image type.image.Pointgo.typelink.func(*draw.Op, draw.Image, image.Rectangle, image.Image, image.Point)	func(*"".Op, "".Image, image.Rectangle, image.Image, image.Point)type.func(*"".Op, "".Image, image.Rectangle, image.Image, image.Point)go.string.hdr."func(draw.Image, image.Rectangle, image.Image, image.Point)"  ;go.string."func(draw.Image, image.Rectangle, image.Image, image.Point)"go.string."func(draw.Image, image.Rectangle, image.Image, image.Point)"xfunc(draw.Image, image.Rectangle, image.Image, image.Point)|type.func("".Image, image.Rectangle, image.Image, image.Point)L30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(draw.Image, image.Rectangle, image.Image, image.Point)"pgo.weak.type.*func("".Image, image.Rectangle, image.Image, image.Point)"runtime.zerovalue|type.func("".Image, image.Rectangle, image.Image, image.Point)|type.func("".Image, image.Rectangle, image.Image, image.Point)type."".Image(type.image.Rectangle type.image.Image type.image.Pointgo.typelink.func(draw.Image, image.Rectangle, image.Image, image.Point)	func("".Image, image.Rectangle, image.Image, image.Point)|type.func("".Image, image.Rectangle, image.Image, image.Point)type.*"".Opc60 runtime.algarray@"runtime.gcbits.01P0go.string.hdr."*draw.Op"p(go.weak.type.**"".Op"runtime.zerovaluetype."".Op`type.*"".Optype.*"".Op(go.string.hdr."Draw"|type.func("".Image, image.Rectangle, image.Image, image.Point)type.func(*"".Op, "".Image, image.Rectangle, image.Image, image.Point)"".(*Op).Draw"".(*Op).Drawruntime.gcbits..go.string.hdr."draw.Op"  &go.string."draw.Op"&go.string."draw.Op"draw.Opgo.string.hdr."func(draw.Op, draw.Image, image.Rectangle, image.Image, image.Point)"  Dgo.string."func(draw.Op, draw.Image, image.Rectangle, image.Image, image.Point)"go.string."func(draw.Op, draw.Image, image.Rectangle, image.Image, image.Point)"func(draw.Op, draw.Image, image.Rectangle, image.Image, image.Point)type.func("".Op, "".Image, image.Rectangle, image.Image, image.Point)U_30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(draw.Op, draw.Image, image.Rectangle, image.Image, image.Point)"pgo.weak.type.*func("".Op, "".Image, image.Rectangle, image.Image, image.Point)"runtime.zerovaluetype.func("".Op, "".Image, image.Rectangle, image.Image, image.Point)type.func("".Op, "".Image, image.Rectangle, image.Image, image.Point)type."".Optype."".Image(type.image.Rectangle type.image.Image type.image.Pointgo.typelink.func(draw.Op, draw.Image, image.Rectangle, image.Image, image.Point)	func("".Op, "".Image, image.Rectangle, image.Image, image.Point)type.func("".Op, "".Image, image.Rectangle, image.Image, image.Point)type."".Op_1`0 runtime.algarray@runtime.gcbits.P.go.string.hdr."draw.Op"ptype.*"".Op"runtime.zerovalue`type."".Op$go.string.hdr."Op""go.importpath."".type."".Op(go.string.hdr."Draw"|type.func("".Image, image.Rectangle, image.Image, image.Point)type.func("".Op, "".Image, image.Rectangle, image.Image, image.Point)"".(*Op).Draw"".Op.Draw.go.string.hdr."[]uint8"  &go.string."[]uint8"&go.string."[]uint8"[]uint8type.[]uint8~.80 runtime.algarray@"runtime.gcbits.01P.go.string.hdr."[]uint8"p*go.weak.type.*[]uint8"runtime.zerovaluetype.uint86go.typelink.[]uint8	[]uint8type.[]uint8.go.string.hdr."[]int32"  &go.string."[]int32"&go.string."[]int32"[]int32type.[]int32*Ms0 runtime.algarray@"runtime.gcbits.01P.go.string.hdr."[]int32"p*go.weak.type.*[]int32"runtime.zerovaluetype.int326go.typelink.[]int32	[]int32type.[]int320go.string.hdr."[4]int32"  (go.string."[4]int32"(go.string."[4]int32" [4]int32type.[4]int32{0 runtime.algarray@runtime.gcbits.P0go.string.hdr."[4]int32"p,go.weak.type.*[4]int32"runtime.zerovaluetype.int32type.[]int32:go.typelink.[4]int32	[4]int32type.[4]int324go.string.hdr."[][4]int32"  
   1671 ,go.string."[][4]int32",go.string."[][4]int32" [][4]int32type.[][4]int32r$mi0 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."[][4]int32"p0go.weak.type.*[][4]int32"runtime.zerovaluetype.[4]int32Bgo.typelink.[][4]int32	[][4]int32type.[][4]int322go.string.hdr."*[4]int32"  	*go.string."*[4]int32"*go.string."*[4]int32" *[4]int32type.*[4]int32+E60 runtime.algarray@"runtime.gcbits.01P2go.string.hdr."*[4]int32"p.go.weak.type.**[4]int32"runtime.zerovaluetype.[4]int32Hgo.string.hdr."*draw.floydSteinberg"  @go.string."*draw.floydSteinberg"@go.string."*draw.floydSteinberg"0**draw.floydSteinberg<go.string.hdr."floydSteinberg"  4go.string."floydSteinberg"4go.string."floydSteinberg" floydSteinbergTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals8a57dc7d5c290327fe731054fc6a7f75go.string.hdr."func(*draw.floydSteinberg, draw.Image, image.Rectangle, image.Image, image.Point)"  Qgo.string."func(*draw.floydSteinberg, draw.Image, image.Rectangle, image.Image, image.Point)"go.string."func(*draw.floydSteinberg, draw.Image, image.Rectangle, image.Image, image.Point)"func(*draw.floydSteinberg, draw.Image, image.Rectangle, image.Image, image.Point)type.func(*"".floydSteinberg, "".Image, image.Rectangle, image.Image, image.Point)+30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*draw.floydSteinberg, draw.Image, image.Rectangle, image.Image, image.Point)"pgo.weak.type.*func(*"".floydSteinberg, "".Image, image.Rectangle, image.Image, image.Point)"runtime.zerovaluetype.func(*"".floydSteinberg, "".Image, image.Rectangle, image.Image, image.Point)type.func(*"".floydSteinberg, "".Image, image.Rectangle, image.Image, image.Point).type.*"".floydSteinbergtype."".Image(type.image.Rectangle type.image.Image type.image.Pointgo.typelink.func(*draw.floydSteinberg, draw.Image, image.Rectangle, image.Image, image.Point)	func(*"".floydSteinberg, "".Image, image.Rectangle, image.Image, image.Point)type.func(*"".floydSteinberg, "".Image, image.Rectangle, image.Image, image.Point).type.*"".floydSteinbergQQ#60 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."*draw.floydSteinberg"p@go.weak.type.**"".floydSteinberg"runtime.zerovalue,type."".floydSteinberg`.type.*"".floydSteinberg.type.*"".floydSteinberg(go.string.hdr."Draw"|type.func("".Image, image.Rectangle, image.Image, image.Point)type.func(*"".floydSteinberg, "".Image, image.Rectangle, image.Image, image.Point)2"".(*floydSteinberg).Draw2"".(*floydSteinberg).DrawFgo.string.hdr."draw.floydSteinberg"  >go.string."draw.floydSteinberg">go.string."draw.floydSteinberg"0(draw.floydSteinberggo.string.hdr."func(draw.floydSteinberg, draw.Image, image.Rectangle, image.Image, image.Point)"  Pgo.string."func(draw.floydSteinberg, draw.Image, image.Rectangle, image.Image, image.Point)"go.string."func(draw.floydSteinberg, draw.Image, image.Rectangle, image.Image, image.Point)"func(draw.floydSteinberg, draw.Image, image.Rectangle, image.Image, image.Point)type.func("".floydSteinberg, "".Image, image.Rectangle, image.Image, image.Point)f30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(draw.floydSteinberg, draw.Image, image.Rectangle, image.Image, image.Point)"pgo.weak.type.*func("".floydSteinberg, "".Image, image.Rectangle, image.Image, image.Point)"runtime.zerovaluetype.func("".floydSteinberg, "".Image, image.Rectangle, image.Image, image.Point)type.func("".floydSteinberg, "".Image, image.Rectangle, image.Image, image.Point),type."".floydSteinbergtype."".Image(type.image.Rectangle type.image.Image type.image.Pointgo.typelink.func(draw.floydSteinberg, draw.Image, image.Rectangle, image.Image, image.Point)	func("".floydSteinberg, "".Image, image.Rectangle, image.Image, image.Point)type.func("".floydSteinberg, "".Image, image.Rectangle, image.Image, image.Point),type."".floydSteinbergTt0  runtime.algarray@runtime.gcbits.PFgo.string.hdr."draw.floydSteinberg"p.type.*"".floydSteinberg"runtime.zerovalue,type."".floydSteinberg`,type."".floydSteinberg<go.string.hdr."floydSteinberg""go.importpath."".,type."".floydSteinberg(go.string.hdr."Draw"|type.func("".Image, image.Rectangle, image.Image, image.Point)type.func("".floydSteinberg, "".Image, image.Rectangle, image.Image, image.Point)2"".(*floydSteinberg).Draw,"".floydSteinberg.DrawTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals9fce04353485125ccd01916520b7f5a98go.string.hdr."*draw.Drawer"  0go.string."*draw.Drawer"0go.string."*draw.Drawer" *draw.Drawertype.*"".Drawer `60 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*draw.Drawer"p0go.weak.type.**"".Drawer"runtime.zerovaluetype."".Drawer6go.string.hdr."draw.Drawer"  .go.string."draw.Drawer".go.string."draw.Drawer" draw.Drawer,go.string.hdr."Drawer"  $go.string."Drawer"$go.string."Drawer"Drawertype."".Drawer,J0 runtime.algarray@"runtime.gcbits.03P6go.string.hdr."draw.Drawer"ptype.*"".Drawer"runtime.zerovaluetype."".Drawer(go.string.hdr."Draw"|type.func("".Image, image.Rectangle, image.Image, image.Point)`type."".Drawer,go.string.hdr."Drawer""go.importpath."".type."".DrawerTgclocalsf56b2291fa344104975cb6587be42b9b  Tgclocals68ad10045770b469a7bcb66bb90152f9  
   1679 g|go.string.hdr."func(color.Palette, image.Image) color.Palette"  .tgo.string."func(color.Palette, image.Image) color.Palette"tgo.string."func(color.Palette, image.Image) color.Palette"`^func(color.Palette, image.Image) color.Palette~type.func(image/color.Palette, image.Image) image/color.PaletteI30 runtime.algarray@"runtime.gcbits.01P|go.string.hdr."func(color.Palette, image.Image) color.Palette"pgo.weak.type.*func(image/color.Palette, image.Image) image/color.Palette"runtime.zerovalue~type.func(image/color.Palette, image.Image) image/color.Palette~type.func(image/color.Palette, image.Image) image/color.Palette0type.image/color.Palette type.image.Image0type.image/color.Palettego.typelink.func(color.Palette, image.Image) color.Palette	func(image/color.Palette, image.Image) image/color.Palette~type.func(image/color.Palette, image.Image) image/color.Palette>go.string.hdr."*draw.Quantizer"  6go.string."*draw.Quantizer"6go.string."*draw.Quantizer"  *draw.Quantizer$type.*"".Quantizer60 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."*draw.Quantizer"p6go.weak.type.**"".Quantizer"runtime.zerovalue"type."".Quantizer<go.string.hdr."draw.Quantizer"  4go.string."draw.Quantizer"4go.string."draw.Quantizer" draw.Quantizer0go.string.hdr."Quantize"  (go.string."Quantize"(go.string."Quantize" Quantize2go.string.hdr."Quantizer"  	*go.string."Quantizer"*go.string."Quantizer" Quantizer"type."".Quantizer0 runtime.algarray@"runtime.gcbits.03P<go.string.hdr."draw.Quantizer"p$type.*"".Quantizer"runtime.zerovalue"type."".Quantizer0go.string.hdr."Quantize"~type.func(image/color.Palette, image.Image) image/color.Palette`"type."".Quantizer2go.string.hdr."Quantizer""go.importpath.""."type."".Quantizer.go.string.hdr."runtime"  &go.string."runtime"&go.string."runtime"runtime,go.importpath.runtime.  &go.string."runtime"*go.string.hdr."image"  "go.string."image""go.string."image"image(go.importpath.image.  "go.string."image"6go.string.hdr."image/color"  .go.string."image/color".go.string."image/color" image/color4go.importpath.image/color.  .go.string."image/color"Pgo.string.hdr."image/internal/imageutil"  Hgo.string."image/internal/imageutil"Hgo.string."image/internal/imageutil"@2image/internal/imageutilNgo.importpath.image/internal/imageutil.  Hgo.string."image/internal/imageutil" "".(*Op).Drawf"".(*Op).Draw"".Image.Atf"".Image.At$"".Image.Boundsf"".Image.Bounds,"".Image.ColorModelf&"".Image.ColorModel"".Image.Setf"".Image.Set8"".(*floydSteinberg).Drawf2"".(*floydSteinberg).Draw""".Drawer.Drawf"".Drawer.Draw0"".Quantizer.Quantizef*"".Quantizer.Quantize"runtime.zerovaluego13ld