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 "e7726156abb74118b6b7d17c8d74f8da1802f1e7"
      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     86897     `
     64 go object darwin amd64 go1.5.1 X:none
     65 
     66 !
     67 go13ldimage.aimage/color.a4image/internal/imageutil.a"".Op.DraweH%HD$H;AH1H$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 "".DrawMask
     71 0runtime.morestack_noctxt"".autotmp_0002 type.image.Point
     73 "".sp type.image.Point"".srcp type.image.Image"".r0(type.image.Rectangle"".dsttype."".Image
     76 "".optype."".Op\Tgclocals53c7667477e950feba4c8f0f6f5b2e07Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go,"".floydSteinberg.DraweH%H;aSHxH$H$H$H\$H$H\$H$H\$H$H\$ H$H\$(1H\$0H\$8HD$@H$H$HT$`H$H$HD$pH\$XHL$hH9H9<tHxH$H$H$H\$H$H\$H$H\$H$H\$ H$H\$(H$H\$0H$H\$8H$H\$@H$H\$HD$PHxH[
     79 
     80 "".clip
     81 "".drawPaletted
     82 0runtime.morestack_noctxt
     83 image.r2?(type.image.Rectangle
     84 "".sp type.image.Point"".src` type.image.Image"".r (type.image.Rectangle"".dsttype."".Image($~gG
     88 yTgclocals8284eba58712f7b004cdf24e5edb7852Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go"".clipeH%H$H;AHH$HH+H$HkH$H$H$H$H[(LD$Hl$HT$HD$ H$HBHL$LD$ H$Hl$(H$HT$0H$HD$8Ht$@HT$HHL$PHD$XH$H3HSHKHCH$H$H$H[(LT$Hl$LD$H|$ H$H$H$HHHC11HH$H$H)HHH$H$H)HHL$pH\$xH$H$11LL$`HH$hHLL$pH$HHH$xH$HH$IH$H$HH$H$HHL$LD$ H$Hl$(H$HT$0H$H\$8L$L$H$H$LD$@Ht$HHL$PHD$XMIqIIIAIH$H$IZ(LT$Hl$LD$H|$ H$H$H$HHHC11HH$H$H)HHH$H$H)HHL$`H\$hH$H$11LL$@HH$HHLL$PH$HHH$XH$HH$IH$H$HH$H$HHL$ LD$ H$(Hl$(H$0HT$0H$8H\$8L$H$H$LD$@Ht$HHL$PHD$XMIqIIIAI	H$H)IAH$H)HuHuHH/HH/HoHHo1H9tH*HH*HjHHjH6YzY
     93 
     94  runtime.duffcopy
     95 2image.Rectangle.Intersect
     96  runtime.duffcopy	
     97 2image.Rectangle.Intersect
     98 
     99  runtime.duffcopy
    100 2image.Rectangle.Intersect
    101 0runtime.morestack_noctxt>"".autotmp_0017(type.image.Rectangle"".autotmp_0016 type.image.Point"".autotmp_0015 type.image.Point"".autotmp_0014(type.image.Rectangle"".autotmp_0013 type.image.Point"".autotmp_0012 type.image.Point"".autotmp_0011type.int"".autotmp_0010type.int"".autotmp_0009type.int"".autotmp_0007(type.image.Rectangle"".autotmp_0006(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"".orig type.image.Point
    106 "".mp"type.*image.Point"".mask` type.image.Image
    107 "".spP"type.*image.Point"".src0 type.image.Image"".r *type.*image.Rectangle"".dsttype."".Image&"6?	^")
    110 		c	Tgclocalsbd5ecf30bdbc677b0e14fa50cb5ef414Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go$"".processBackward		eH%H$xH;AIHHH$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<tIH$XH9|2H$XH9uH$PL9$`H$`$`$`11[
    117 J type.image.Image
    118 runtime.convI2I
    119 runtime.ifaceeq
    120 0image.Rectangle.Overlaps	
    121 0runtime.morestack_noctxt "".autotmp_0022_(type.image.Rectangle"".autotmp_0021 type.image.Point"".autotmp_0020 type.image.Point"".autotmp_0019 type.image.Image"".autotmp_0018type.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
    125 "".sp type.image.Point"".src` type.image.Image"".r (type.image.Rectangle"".dsttype."".Image"5&"T%eGTgclocalsb85af394c8a18f2d7505864470ede412Tgclocals23e8278e2b69a3a75fa59b23c49ed6ad\prebuilts/go/darwin-x86/src/image/draw/draw.go"".DraweH%HD$H;AH1H$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
    131 
    132 "".DrawMask
    133 0runtime.morestack_noctxt"".autotmp_0025 type.image.Point
    135 "".optype."".Op
    136 "".sp type.image.Point"".src` type.image.Image"".r (type.image.Rectangle"".dsttype."".ImageTgclocalsb85af394c8a18f2d7505864470ede412Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go"".DrawMaskWWeH%H$H;AHhH$pH$H$xH\$H$H\$H$H\$H$H\$ H$H\$(H$H\$0H$H\$8H$H\$@H$H$H$H$H$H$H$H$H9H9<tHhH$pH$xH$HH$H$PHD$H$HH$PL$
    142 H1H9tH[H-H9\HH$H
    143 H$H@H$HH$H$H$8H$H$@HD$H$8H$@H$L$`n*H1H9tH[H-H9[HHtdH$H$H\$H$H\$H$H\$H$H\$ Hl$(H$H\$0H$H\$8HhQ fuwH1H9tH[H-H9HHtJH$H$H\$H$H\$H$H\$H$H\$ Hl$(Hh`nH1H9tH[H-H9-HHtdH$H$H\$H$H\$H$H\$H$H\$ HL$(H$H\$0H$H\$8HhH$H$H\$H$H\$H$H\$H$H\$ H$H\$(H$H\$0H$H\$8H$H\$@H$H\$HH$H\$PH$H\$XH$H\$`H$H\$hHh1111H11H1H9tH[H-H9HHtdH$H$H\$H$H\$H$H\$H$H\$ Hl$(H$H\$0H$H\$8Hh2H1H9tH[H-H9-HHt{H$H$H\$H$H\$H$H\$H$H\$ Hl$(H$H\$0H$H\$8H$\$@tHh~H1H9tH[H-H9uwHHH$H$H\$H$H\$H$H\$H$H\$ HL$(H$H\$0H$H\$8Hh111111.H$1H9tH[H-H9H$HH$H$H$H$8H$H$@HD$H$\$Q fH$81H9tH[H-H9H$@HaH$H$H\$H$H\$H$H\$H$H\$ HL$(H$H\$0H$H\$8H$H\$@Hh1111H$HH$H$H$8H$H$@HD$H$8H$@H$L$`n*H1H9tH[H-H9HHtdH$H$H\$H$H\$H$H\$H$H\$ Hl$(H$H\$0H$H\$8HhQ fuwH1H9tH[H-H9HHtJH$H$H\$H$H\$H$H\$H$H\$ Hl$(Hh`nQH1H9tH[H-H9uwHH$H$H$H\$H$H\$H$H\$H$H\$ HL$(H$H\$0H$H\$8Hh111111cH1H9tH[H-H9HHtdH$H$H\$H$H\$H$H\$H$H\$ Hl$(H$H\$0H$H\$8Hh2H1H9tH[H-H9-HHt{H$H$H\$H$H\$H$H\$H$H\$ Hl$(H$H\$0H$H\$8H$\$@tHhW~KH1H9tH[H-H9uwHHH$H$H\$H$H\$H$H\$H$H\$ HL$(H$H\$0H$H\$8Hh111111.NYH1H9tH[H-H9s	H$H<H$HH$HH$pH$H$xH\$H$H\$H$H\$H$H\$ H$H\$(H$H\$0H$H\$8H$H\$@H$H\$H\$PH$H$(H1H9H$(H$HH$H$PHL$H$H\$H$H\$H$H\$ H$H\$(H$H\$0H$H\$8H$H\$@H$H\$HD$PHhHH$HH\$HH\$HD$3H$H$H$H$H$H$H$H$H$H$H$pH$H$xH\$H$H\$H$H\$H$H\$ H$H\$(H$H\$0H$H\$8H$H\$@H$H\$H\$PH$HH$HH$H$H$H$HH$HH$H$H$HH$H$H\$H$0H$H$HH)H$H$H$HH)H$H$H$H$H9H$H$HH$H)H$H$H$HH$H)H$H$H$H$H$H9H$Ht\H$H\$H$H\$H$H$H$H[ HL$HD$ H$`H$H$XHY 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-HhHH$HH\$HH\$HH\$HD$ H\$(H|$HHHKHOH$H\$H$H\$H$xH$H$pH[8$=H$HH$H\$H$H\$H$H$H$H[ HL$HD$ H$H\$H$H\$H$XHL$H$`HD$ H$xH$H$pH[8H$H\$H$H\$H$H$H$H[ HL$HD$ H$`H$H$XHY $H$0D$D$tDT$DT$xDL$DL$||$$H$HH$H\$H$H\$H$xH$H$pH[ HL$HD$ H$`H$H$XHY $$H$0DD$D\$DT$DL$Al$t)DAAf)l$xDAAfil$|DAAfiDDAAfiH$ H1H9t[H$H\$H$H\$H$ H$XHD$H$`HL$ H$xH$H$pH[8HH$HH\$HH\$HD$sAAf)DAAfiDAAfiAAfiH$11H$1H
    151 
    152 "".clip
    153 $runtime.ifacethash type.*image.RGBA
    154 $runtime.ifacethash"type.*image.NRGBA
    155 
    156  "".drawNRGBAOver
    157 &type.*image.Uniform
    159 "".drawFillOver type.*image.CMYK
    161 "".drawCMYK
    162 "".drawRGBA type.*image.RGBA
    163 "".drawCopyOver"type.*image.YCbCr
    164 Dimage/internal/imageutil.DrawYCbCr type.*image.Gray
    165 "".drawGray"type.*image.Alpha
    166 $runtime.ifacethash&type.*image.Uniform
    167  "".drawGlyphOver 
    168 $runtime.ifacethash!"type.*image.NRGBA#
    169 "".drawNRGBASrc#&type.*image.Uniform%
    170 "".drawFillSrc% type.*image.CMYK'
    171 "".drawCMYK( type.*image.RGBA*
    172 "".drawCopySrc+"type.*image.YCbCr,
    173 Dimage/internal/imageutil.DrawYCbCr- type.*image.Gray/
    174 "".drawGray0(type.*image.Paletted3
    175 $"".processBackward4@go.itab.*image.Paletted."".Image6
    176 "".drawPaletted7(type.*image.Paletted7type."".Image7@go.itab.*image.Paletted."".Image7
    177  runtime.typ2Itab;
    178 $"".processBackward=.type.image/color.RGBA64=
    179 "runtime.newobjectBBF0type.image/color.Alpha16F,type.image/color.ColorFZgo.itab.image/color.Alpha16.image/color.ColorG.image/color.TransparentG
    180 runtime.convT2IHJKLLNORZgo.itab.*image/color.RGBA64.image/color.ColorTT0type.*image/color.RGBA64T,type.image/color.ColorTZgo.itab.*image/color.RGBA64.image/color.ColorT
    181  runtime.typ2ItabW
    182 0runtime.morestack_noctxt"".autotmp_0072type.*uint8"".autotmp_0071type.uint32"".autotmp_0070type.uint32"".autotmp_0069type.uint32"".autotmp_0068type.uint32"".autotmp_0067type.uint32"".autotmp_0066type.uint32"".autotmp_0065type.uint32"".autotmp_0064type.uint32"".autotmp_0063type.uint32"".autotmp_0062type.int"".autotmp_0061type.int"".autotmp_0060type.int"".autotmp_0058type.int"".autotmp_0057type.int"".autotmp_0056type.int"".autotmp_0055type.int"".autotmp_0053type.int"".autotmp_0052type.int"".autotmp_0049type.uint32"".autotmp_0048type.bool"".autotmp_0047 type.image.Image"".autotmp_0046type.uint32"".autotmp_0045type.bool"".autotmp_0044 type.image.Image"".autotmp_0043type.uint32"".autotmp_0042type.bool"".autotmp_0041_ type.image.Image"".autotmp_0039type.bool"".autotmp_0038?type."".Image"".autotmp_00360type.*image/color.RGBA64"".autotmp_0035,type.image/color.Color"".autotmp_0034,type.image/color.Color"".autotmp_0033,type.image/color.Color"".autotmp_0032,type.image/color.Color"".autotmp_0031type.bool"".autotmp_0030(type.*image.Paletted"".autotmp_0029type.bool"".autotmp_0028type.bool"".autotmp_0026type.bool"".&outo0type.*image/color.RGBA64image.r2(type.image.Rectangle
    183 "".satype.uint32
    184 "".sbtype.uint32
    185 "".sgtype.uint32
    186 "".srtype.uint32
    187 "".matype.uint32"".xtype.int
    188 "".mxtype.int
    189 "".sxtype.int"".ytype.int
    190 "".mytype.int
    191 "".sytype.int
    192 "".dytype.int
    193 "".y1type.int
    194 "".y0type.int
    195 "".dxtype.int
    196 "".x1type.int
    197 "".x0type.int"".dst0(type.*image.Paletted"".mask0"type.*image.Alpha"".dst0 type.*image.RGBA
    198 "".optype."".Op
    199 "".mp type.image.Point"".mask type.image.Image
    200 "".sp type.image.Point"".src` type.image.Image"".r (type.image.Rectangle"".dsttype."".Image"~~+"yS\5B9,\DsT
    203 \9nRq9&\'2Ci	\5B9$\%Q
    205 \9n-9\KA2
    207 ,,22%!&&)\	
jjP5$
!! lAB2M$	pW
    213 	0	Tgclocalsb6ff6e408574fb1653efe879811802f9Tgclocals36b7218c75ba96691b40c9f321c5145e\prebuilts/go/darwin-x86/src/image/draw/draw.go"".drawFillOvereH%H;aH(H\$XH$LL$8Ll$@Ht$0\$\$\$\$\$\$ \$\$$l$$)iH^ LH)H^(MI)HnLHHIHD$HH\$PHL)HLIH\$PL9LL9IIHHHFHnI9J+IIHHVHnI9J+AIIHHVHnI9J+AIIHHVHnI9YJ+AIIHHVHnI9*J3AADD$D@+IIDHHVHnI9J3AADD$D@+IIDHHVHnI9J#AADD$ D@+IIDHHVHnI9sWJAADD$$D@+HL9[H^LIH^LIIH\$PL9*H()
    228 B
    229 *image.(*Uniform).RGBA
    230 
    231 $runtime.panicindex
    232 
    233 $runtime.panicindex
    234 
    235 $runtime.panicindex
    236 
    237 $runtime.panicindex
    238 
    239 $runtime.panicindex
    240 
    241 $runtime.panicindex
    242 
    243 $runtime.panicindex
    245 $runtime.panicindex
    247 0runtime.morestack_noctxt`P,"".autotmp_0093type.uint32"".autotmp_0092type.int"".autotmp_0091type.uint32"".autotmp_0090type.int"".autotmp_0089type.uint32"".autotmp_0088type.int"".autotmp_0086type.int"".autotmp_0085type.int"".autotmp_0084type.int"".autotmp_0083type.int"".autotmp_0082type.int"".autotmp_0080type.int"".autotmp_0079type.int"".autotmp_0078type.int"".autotmp_0077type.int
    248 "".satype.uint32
    249 "".sbtype.uint32
    250 "".sgtype.uint32
    251 "".srtype.uint32"".srcP&type.*image.Uniform"".r(type.image.Rectangle"".dst type.*image.RGBAPOPRx=&.$%%>@A=
    256 
    257 	 Tgclocals87cec55554a82a6b90f0a3422a49276cTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go"".drawFillSrceH%HD$H;AHH$H$H$L$H$Dl$Dd$DT$DL$AAAAHY HH)HY(MI)HiLHHIL|$8L$H$H\$HL\$@H|$0I)IMLL9HHHH1HQHiH9H>D+HHH1HQHiH9H>D#HHH1HQHiH9H>DHHH1HQHiH9aH>DHL9bLIMM96M9-LM)M)ItO2LD$XLL$`LT$PLHH$HD$H9HQLLAMHT$(LD$ LIM9L9LI)I)ItMLT$hLLD$pLL$xL$HT$PHL$XH\$`H$L$LH$L9}HH$H4$H$HT$HD$Lt$(L\$ H$HD$HH$HD$H9 H
    270 X
    271 *image.(*Uniform).RGBA	
    272 runtime.memmove
    273 
    274 $runtime.panicslice
    275 
    276 $runtime.panicslice
    277 
    278 $runtime.panicindex
    279 
    280 $runtime.panicindex
    282 $runtime.panicindex
    284 $runtime.panicindex
    286 0runtime.morestack_noctxt`0"".autotmp_0122type.int"".autotmp_0121_type.[]uint8"".autotmp_0120/type.[]uint8"".autotmp_0119type.int"".autotmp_0118type.int"".autotmp_0117type.int"".autotmp_0116type.int"".autotmp_0115type.int"".autotmp_0114type.int"".autotmp_0113type.int"".autotmp_0112type.int"".autotmp_0110type.int"".autotmp_0109type.[]uint8"".autotmp_0108type.int"".autotmp_0107type.int"".autotmp_0106type.intimage.r2(type.image.Rectangle"".ytype.int"".firstRowtype.[]uint8
    287 "".i1type.int
    288 "".i0type.int"".srcP&type.*image.Uniform"".r(type.image.Rectangle"".dst type.*image.RGBAGv=&.,!""
;
    294 +=GTgclocals0a593fb1764c93835ed65ead7777b19cTgclocals268f53bd44a502609f9f09d0e1d132c2\prebuilts/go/darwin-x86/src/image/draw/draw.go"".drawCopyOvereH%H;a0H@HT$`L|$hL\$xL$LT$PHL$XL)HD$HI)HX LI)HX(II)HhHD$pLLHIHX MI)HX(MI)HhLLHIL9|L9'L9H\$HHkHl$8H\$pHkHl$HHHD$0H\$(HD$ IsH\$HLCLKM9LM)M)ItO2H\$pLLLCLKM9LM)M)ItO*HL$0MMHl$(H9HHL9DI+i$HHL9I+i\$HHL9I+i\$HHL9I+iAHHH9H,]HHH9H,]\$HHH9dH,]\$HHH9AH,]\$AE)EiHHAH9
    297 HAAD$D@+HHD$AH9HAADD$D@+D$HHAH9HAADD$D@+D$HHAH9sSHAAD@+Hl$ HHl$(H9Hl$8IHl$IIIH@LHLD$HIhHLILHLD$pIhHLIHl$HH]HH\$8Hl$pH]HH\$HHHH\$0HD$(HD$  
    313 
    315 $runtime.panicindex
    317 $runtime.panicindex
    319 $runtime.panicindex
    321 $runtime.panicindex
    322 $runtime.panicindex
    323 $runtime.panicindex
    324 $runtime.panicindex
    325 $runtime.panicindex
    326 $runtime.panicindex
    327 $runtime.panicindex
    328 $runtime.panicindex
    329 $runtime.panicindex
    330 $runtime.panicslice
    331 $runtime.panicslice
    332 0runtime.morestack_noctxtN"".autotmp_0154type.uint32"".autotmp_0153type.int"".autotmp_0152type.uint32"".autotmp_0151type.int"".autotmp_0150type.uint32"".autotmp_0149type.int"".autotmp_0147type.int"".autotmp_0146type.int"".autotmp_0145type.int"".autotmp_0144type.int"".autotmp_0143type.int"".autotmp_0142type.int"".autotmp_0141type.int"".autotmp_0140type.int"".autotmp_0139type.int"".autotmp_0138type.int"".autotmp_0136type.int"".autotmp_0135type.int"".autotmp_0133type.int"".autotmp_0132type.int"".autotmp_0131type.int"".autotmp_0130type.int"".autotmp_0129type.int"".autotmp_0128type.int
    333 "".daWtype.uint32
    334 "".db_type.uint32
    335 "".dggtype.uint32
    336 "".sbotype.uint32
    337 "".sgwtype.uint32
    338 "".srtype.uint32"".idelta?type.int
    339 "".i1/type.int
    340 "".i0type.int"".sdeltaOtype.int"".ddeltatype.int
    341 "".sp` type.image.Point"".srcP type.*image.RGBA"".r(type.image.Rectangle"".dst type.*image.RGBA8&
    344 
    345 )$  ! 378/!&-
2		
!)
Tgclocals1456a4d95d5155713df2023483faeae8Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go"".drawCopySrceH%HD$H;AHL$H$H$(L$H$H$H$HL$PHT$`MLl$XLT$HM)LT$hLd$xH$HL$pH)IH_ I)H_(IH)HoHLL$ HHH^ I)H^(IH)HnHLHHM9HoHl$8HnHl$HT$0HTIMHaHL$@LOM9HL9?LI)I)ItM
    352 MMLILl$(MHHD$ LNM9L9LI)I)ItMH$HL$L$L$L$LL$L$L$L$LL$M9}LH$H4$H$HT$HD$Ll$(H$H$HL$@Hl$8HHD$ Hl$HHT$0HHT$0HHHHHoHHHHHHnHHHH_HH\$8H^HH\$42
    355 
    356 
    357 runtime.memmove	
    358 $runtime.panicslice	
    359 $runtime.panicslice
    361 0runtime.morestack_noctxt@"".autotmp_0176type.[]uint8"".autotmp_0175type.[]uint8"".autotmp_0174type.int"".autotmp_0173type.int"".autotmp_0172type.int"".autotmp_0171type.int"".autotmp_0170type.int"".autotmp_0169type.int"".autotmp_0167type.int"".autotmp_0166type.int"".autotmp_0165type.int"".autotmp_0163type.int"".autotmp_0162type.int"".autotmp_0161type.int"".autotmp_0160_type.[]uint8"".autotmp_0159type.int"".autotmp_0158/type.[]uint8"".autotmp_0157type.int"".autotmp_0156type.int"".autotmp_0155type.intimage.r2(type.image.Rectangleimage.r2(type.image.Rectangle"".sdeltatype.int"".ddeltatype.int
    362 "".s0type.int
    363 "".d0type.int
    364 "".dytype.int"".ntype.int
    365 "".sp` type.image.Point"".srcP type.*image.RGBA"".r(type.image.Rectangle"".dst type.*image.RGBAm^W8#			

    370 %Tgclocals1456a4d95d5155713df2023483faeae8Tgclocals5f32766c99d383f833fae93d4e4d71d1\prebuilts/go/darwin-x86/src/image/draw/draw.go "".drawNRGBAOvereH%H;aH@H\$PLD$HIh H)HH\$8H\$`LD$HIh H)HH\$0H\$xLD$pIh H)HH\$(H\$hLD$HIh(H)H\$Lt$XLD$HIh(H$LD$pI)Ih(H)H\$ Hl$I9Hl$HHEH\$HILCLKL9LI)I)ItMLLHl$pHEHl$ H\$pHLCLKL9LI)I)ItMMMHL$8LL$(Hl$0H9LHL9lI,iALHL9EI,A\$LHL9I,A\$LHL9I,A\$HHH9H,]HHH9H,]\$HHH9gH,]\$HHH9DH,]AAE)EiHHAH9HAADD$D@+HHD$AH9HAADD$D@+D$HHAH9HAADD$D@+HHDAH9sWHAAD@+HILHl$0H9IHD$ HHD$ Hl$I9AH@ 
    393 
    395 $runtime.panicindex
    397 $runtime.panicindex
    398 $runtime.panicindex
    399 $runtime.panicindex
    400 $runtime.panicindex
    401 $runtime.panicindex
    402 $runtime.panicindex
    403 $runtime.panicindex
    404 $runtime.panicindex
    405 $runtime.panicindex
    406 $runtime.panicindex
    407 $runtime.panicindex
    408 $runtime.panicslice
    409 $runtime.panicslice
    410 0runtime.morestack_noctxt>"".autotmp_0198type.uint32"".autotmp_0197type.int"".autotmp_0196type.uint32"".autotmp_0195type.int"".autotmp_0194type.uint32"".autotmp_0193type.int"".autotmp_0192type.uint32"".autotmp_0191type.int"".autotmp_0190type.uint32"".autotmp_0189type.uint32"".autotmp_0187type.int"".autotmp_0186type.int"".autotmp_0184type.int"".autotmp_0183type.int"".autotmp_0182type.int"".autotmp_0180type.int"".autotmp_0179type.int
    411 "".dbWtype.uint32
    412 "".dg_type.uint32
    413 "".sbgtype.uint32
    414 "".sgotype.uint32
    415 "".srwtype.uint32
    416 "".sy?type.int"".yMaxOtype.int"".si0/type.int
    418 "".i1type.int
    419 "".i0type.int
    420 "".sp` type.image.Point"".srcP"type.*image.NRGBA"".r(type.image.Rectangle"".dst type.*image.RGBAy
<A -,-478.#2	yTgclocals1456a4d95d5155713df2023483faeae8Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go"".drawNRGBASrceH%H;aH(H\$8LD$0Ih H)HH\$ H\$HLD$0Ih H)HH\$H\$`LD$XIh H)HH\$H\$PLD$0Ih(H)H$Lt$@LD$0Ih(H\$hLD$XI)Ih(H)H\$H,$I9Hl$0HEH\$0ILCLKL9LI)I)ItMMMHl$XHEHl$H\$XHLCLKL9LI)I)ItMMMHL$ Ht$Hl$H9HHL9_I)iHHL99I)AAHHL9	I)AAHHL9I)HHL9ID@+HHL9ID@+HHL9sfI@+HHL9sGI@+HHHHl$H9IHD$HHD$H,$I92H(/
    439 
    440 
    441 $runtime.panicindex
    442 
    443 $runtime.panicindex
    444 
    445 $runtime.panicindex
    446 
    447 $runtime.panicindex
    448 
    449 $runtime.panicindex
    450 
    451 $runtime.panicindex
    452 
    453 $runtime.panicindex
    454 
    455 $runtime.panicindex
    456 
    457 $runtime.panicslice
    459 $runtime.panicslice
    461 0runtime.morestack_noctxtP,"".autotmp_0214type.int"".autotmp_0213type.int"".autotmp_0212type.int"".autotmp_0211type.int"".autotmp_0210type.uint32"".autotmp_0209type.uint32"".autotmp_0207type.int"".autotmp_0206type.int"".autotmp_0204type.int"".autotmp_0203type.int"".autotmp_0202type.int"".autotmp_0200type.int"".autotmp_0199type.int
    462 "".sy?type.int"".yMaxOtype.int"".si0/type.int
    464 "".i1type.int
    465 "".i0type.int
    466 "".sp` type.image.Point"".srcP"type.*image.NRGBA"".r(type.image.Rectangle"".dst type.*image.RGBAPOP_
    469 
<A*)("_Tgclocals1456a4d95d5155713df2023483faeae8Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go"".drawGrayeH%H;aH L|$PLt$(H\$0In H)HH\$H\$@In H)HH\$H\$XIo H)H\$H\$HIn(H)H$L\$8In(Ld$`I)Io(I)H,$I9IFIMFMNL9MI)I)ItMLLIGIMGMOL9MI)I)ItMMMHD$H|$Hl$H9}oL9I9+HHHH9s}H)@3HHH9sdH)@3HHH9sJH)@3HHH9s0H1HHHl$H9|IIH,$I9H 5
    481 
    482 $runtime.panicindex
    483 $runtime.panicindex
    484 $runtime.panicindex
    485 $runtime.panicindex
    486 $runtime.panicindex
    487 $runtime.panicslice
    488 $runtime.panicslice
    489 0runtime.morestack_noctxt@&"".autotmp_0227type.int"".autotmp_0226type.int"".autotmp_0225type.int"".autotmp_0224type.int"".autotmp_0223type.int"".autotmp_0222type.int"".autotmp_0220type.int"".autotmp_0219type.int"".autotmp_0218type.int"".autotmp_0216type.int"".autotmp_0215type.int"".yMax?type.int"".si0/type.int
    491 "".i1type.int
    492 "".i0type.int
    493 "".sp` type.image.Point"".srcP type.*image.Gray"".r(type.image.Rectangle"".dst type.*image.RGBA@?@@x!	
22	@Tgclocals1456a4d95d5155713df2023483faeae8Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go"".drawCMYKeH%H;aH(H\$8LD$0Ih H)HH\$ H\$HLD$0Ih H)HH\$H\$`LD$XIh H)HH\$H\$PLD$0Ih(H)H$Lt$@LD$0Ih(H\$hLD$XI)Ih(H)H\$H,$I9Hl$0HEH\$0ILCLKL9$LI)I)ItMMMHl$XHEHl$H\$XHLCLKL9LI)I)ItMMLHL$ Ht$Hl$H9QIIHHHHHHL9H/+IL9fH+IL9LH+HM92J?+HMiAA)@i)AAAAi)AAAAi)ADDIIIIIIM9s}K@+M9sjKM9sXK<HHL9s?IHHHl$H9IHD$HHD$H,$I9H(
    511 
    512 
    513 $runtime.panicindex
    514 
    515 $runtime.panicindex
    517 $runtime.panicindex
    519 $runtime.panicindex
    521 $runtime.panicindex
    523 $runtime.panicindex
    525 $runtime.panicindex
    527 $runtime.panicindex
    529 $runtime.panicslice
    531 $runtime.panicslice
    533 0runtime.morestack_noctxtP8"".autotmp_0254type.int"".autotmp_0253type.uint8"".autotmp_0252type.int"".autotmp_0251type.int"".autotmp_0250type.int"".autotmp_0249type.uint8"".autotmp_0248type.uint8"".autotmp_0247type.uint8"".autotmp_0246type.uint32"".autotmp_0245type.uint32"".autotmp_0238type.int"".autotmp_0237type.int"".autotmp_0236type.int"".autotmp_0235type.int"".autotmp_0233type.int"".autotmp_0232type.int"".autotmp_0231type.int"".autotmp_0229type.int"".autotmp_0228type.int
    534 "".sy?type.int"".yMaxOtype.int"".si0/type.int
    536 "".i1type.int
    537 "".i0type.int
    538 "".sp` type.image.Point"".srcP type.*image.CMYK"".r(type.image.Rectangle"".dst type.*image.RGBAPOPZb
    541 
<A1ZTgclocals1456a4d95d5155713df2023483faeae8Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go "".drawGlyphOvereH%H;aHxH$H$H$HX HH)HX(HH)HHhHHHHHH|$`H$H$H\$pHHD$hHt$XH)HHT$HHH\$@H$H$H$HX H)HX(H)HHhHHH\$8H$H$H$\$\$\$\$ \$\$$D\$H$H$H\$(HD$0H$Hl$(H9HL$HLT$8Hl$@H9}GH$HHHCHkI9J+HIHl$@H9|HD$HH^HH\$HHD$@H^HH\$@HD$8H$H]HH\$8HL$(HHD$0HHL$(HD$0H$Hl$(H9:Hx	IIHHHFHnI9J+AIIHHFHnI9J+AIIHHFHnI9J+AIIHHFHnI9YJ+ADAA)EiHHH\$Pl$DAHHVHnHl$PH9H+AA@+IIl$ DAHHVHnI9J;AA@+l$$IIDAHHVHnI9sbJ3AA@+IIDADH>HVHnI9sJ/AA@+7
    556 
    557 *image.(*Uniform).RGBA
    558 $runtime.panicindex
    559 $runtime.panicindex
    560 $runtime.panicindex
    561 $runtime.panicindex
    562 $runtime.panicindex
    563 $runtime.panicindex
    564 $runtime.panicindex
    565 $runtime.panicindex
    566 $runtime.panicindex
    567 0runtime.morestack_noctxtL"".autotmp_0280type.uint32"".autotmp_0279type.int"".autotmp_0278type.uint32"".autotmp_0277type.int"".autotmp_0276type.uint32"".autotmp_0275type.int"".autotmp_0274type.uint32"".autotmp_0273type.int"".autotmp_0272type.uint32"".autotmp_0271type.int"".autotmp_0270type.int"".autotmp_0268type.int"".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_0259Otype.int"".autotmp_0258type.int"".autotmp_0257type.int"".autotmp_0256type.intimage.r2?(type.image.Rectangle
    568 "".mytype.int"".ytype.int
    569 "".sbtype.uint32
    570 "".sgtype.uint32
    571 "".srtype.uint32"".mi0type.int
    573 "".i1otype.int
    574 "".i0_type.int
    575 "".mpp type.image.Point"".mask`"type.*image.Alpha"".srcP&type.*image.Uniform"".r(type.image.Rectangle"".dst type.*image.RGBA'4;960-	(-02%/$%%"MB?>#$	
Tgclocalsebbd3ea82c8151c03f12f1bcc5fcb64aTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go"".drawRGBA&&eH%H$H;Ae	HH$H$H$H$IH|$xHD$pH$H$HHT$`HD$XH$H$H1H9L$L$H$H$H9hH$LL$H$Hl$H$Hl$L$L$L$H|$xHT$`H$H$\$ H$H$ 11H$L$L)H$ H$H)H$H$H$(H$011LL$XHHH$`HLL$hH$HHLL$pH$HH$xH$H$H$L$HL$Ll$Ld$H$8H|$ H$@Ht$(H$HHT$0H$PH\$8L$H|$xHT$`H$H$\$@H$ H9|H$ H9uQH$L9}DHl$pHHHHHD$pH$HD$XHHHHHl$XH$H$ HH)H$H$@HH)H$H$HL)H$H$8HL)H$H\$pH$H)HH$H^ H)H^(HH)HHnHHHHH$H$HH$HT$hH\$hHl$XH9H$H$H$H$H$H$H$H9UD$LH$(Ht`HL$H$H\$H$0H$H$(H[ HL$HD$ H$H$H$HY H$\$\$LHD$H$H\$H$H$H$H[ HL$HD$ H$H$H$HY |$LH$H$Dl$Dd$D\$DT$H$HHIIHHHFHnI9J+l$PIIHHFHnI9J+l$TIIHHFHnI9J+AIIHHFHnI9eJ+ADAA)EiHHH$D$PADHHVHnH$H9H+AA@+IID$TADHHVHnI9J+AA@+IIDADHHVHnI9eJ#AA@+HHDADHH~HnH$H$H$H9HAA@+H$HH$HH$H$HH$HH$HHH$H$H$H9H$H^H$HHH$HT$hH$H$HH$H$HH$HHT$hH$H$H\$hHl$XH9HIIDHHHVHnI9JAA@+IIDHHVHnI9JAA@+IIDHHVHnI9sqJAA@+HHDHH~HnH$H$H$H9sHAA@+HH$HH\$HH\$L$H|$xHT$`H$H$HD$v2
    598 >go.itab.*image.RGBA.image.Image
    599 runtime.ifaceeq
    600 0image.Rectangle.Overlaps
    601 $runtime.panicindex
    602 $runtime.panicindex
    603 $runtime.panicindex
    604 $runtime.panicindex
    605 $runtime.panicindex
    606 $runtime.panicindex
    607 $runtime.panicindex
    608 $runtime.panicindex$
    609 $runtime.panicindex$
    610 $runtime.panicindex$
    611 $runtime.panicindex$
    612 $runtime.panicindex$ type.*image.RGBA$ type.image.Image%>go.itab.*image.RGBA.image.Image%
    613  runtime.typ2Itab&
    614 0runtime.morestack_noctxt"".autotmp_0334type.uint32"".autotmp_0333type.int"".autotmp_0332type.uint32"".autotmp_0331type.int"".autotmp_0330type.uint32"".autotmp_0329type.int"".autotmp_0328type.uint32"".autotmp_0327type.int"".autotmp_0326type.uint32"".autotmp_0325type.int"".autotmp_0324type.uint32"".autotmp_0323type.int"".autotmp_0322type.uint32"".autotmp_0321type.int"".autotmp_0320type.uint32"".autotmp_0319type.int"".autotmp_0317type.int"".autotmp_0316type.int"".autotmp_0315type.int"".autotmp_0313type.int"".autotmp_0312type.int"".autotmp_0311type.int"".autotmp_0310type.int"".autotmp_0309type.int"".autotmp_0308type.int"".autotmp_0306type.int"".autotmp_0305(type.image.Rectangle"".autotmp_0304 type.image.Point"".autotmp_0303 type.image.Point"".autotmp_0301o type.image.Image"".autotmp_0300type.int"".autotmp_0299type.int"".autotmp_0298type.int"".autotmp_0297,type.image/color.Color"".autotmp_0296O,type.image/color.Color"".autotmp_0294 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
    617 "".dgtype.uint32
    618 "".drtype.uint32
    619 "".matype.uint32
    620 "".mxtype.int
    621 "".sxtype.int"".itype.int"".ytype.int
    622 "".ditype.int
    623 "".i0type.int"".sx1type.int"".mx0type.int"".sx0type.int
    627 "".mytype.int
    628 "".sytype.int
    629 "".dytype.int
    630 "".y1type.int
    631 "".y0type.int
    632 "".dxtype.int
    633 "".x1type.int
    634 "".x0type.int
    635 "".optype."".Op
    636 "".mp type.image.Point"".mask type.image.Image
    637 "".spp type.image.Point"".srcP type.image.Image"".r(type.image.Rectangle"".dst type.*image.RGBA":!!'"".A`x0%%%"SBBZ-c@#A^F&C85M9:C
TATgclocals1cbd1dda6584c1572d9008465d7a0fc5Tgclocals5e29cf4e275ff1db65cfee262b3b8d1f\prebuilts/go/darwin-x86/src/image/draw/draw.go"".clamp`ND$}	D$=~	D$D$ "".~r1type.int32"".itype.int3200		Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go"".sqDiff`FL$D$9~)\$) "".~r2type.uint32"".ytype.int32"".xtype.int3200
Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go"".drawPalettedIHeH%H$xH;AH1H$H$H$1H$H$H$HD$`H$1H9tH[H-H9H$H<4H$0HiHHH$Hl$Hl$H\$H$H\$ H$H\$(H$H$0H"HS@HKHHkPH$1H$H$H$HH$H9HH$@HH	HkH$HD$pH$hH$pH$`H,$H$XHY H$H$Hl$pDT$DL$|$t$HHH9IHHDHHH9)HHDKHHH9HH{HHH9HHsH$@H$HHH$H9H$0H$(H$ HX H)HX(H)HHhHHHH$0LCLKL9_LI)I)ItMH$0HkL$L$L$Hl$`1H$H$H$1H$xH$H$$`H$ H$(H$H$0H$8H$HH$H$H)HHHH$HD$HD$H\$H$H\$ H$H\$(H$H$ H$(H$H$0H$8H$HH$H$H)HHHH$HD$HD$H\$H$xH\$ H$H\$(H$HH$H$H$H$xH$H\$E1HH$PfDT$xfDfDT$zfDSfDT$|fDSfT$~fSHD$PH$ H$L$(H$0H$H$8H$L$Hl$PL)H91L$ H$(H$H$0H$8H$(HH$ L$L)H9H$PHT$XHH\$H$XHl$PHH\$H$HH$H$@H[ HL$HD$ H$pH$H$hHY L$PH$H$HT$XH$xH$Dd$D|$Dt$Dl$$`HHHH9
    651 HHmADD
    653 1AHHHH9
    654 HHmADDv
    655 1AHHHH9X
    656 HHmADD
    657 1AHHHH9	HHmADD	1AH$HE1\$LL$H$H$H$E1H$H$L$L$8H$I93H$8Hb+$k$D[DSLD$h$$$D$D$D$D$$A9EA)DA\$0D$E9DD)ADA\$4D$E9DD)ADA\$8D$E9eDD)ADAA\$0l$4l$8l$LD9LL$h\$LLD$PHl$`H$LILL$L9H+D$`uHH$L$LM9HHA)H$L$LM9cHH[EA)H$L$LM90HH[EA)H$L$LM9HH[EA)HHHIH9HHD3HLI9HHDkD+HHHIH9HHDsHLI9`HHDkDkHHHIH90HHDsHLI9HHDkDkHHHIH9HHDsHLI9HHDkDkHHHIH9HHD3HLI9oHHDkD+HHHIH9AHHDsHLI9 HHDkDkHHHIH9HHDsHLI9HHDkDkHHHIH9HHDsHLI9HHDkDkHHHIH9PHHD3HLI90HHDD+HHHIH9HHDsHLI9HHDDkHHHIH9HHDsHLI9HHDDkHHHIH9hHHDsHLI9GHHDDkHHHIH9HHD3HLI9HHDkD+HHHIH9HHDkHLI9HHDkDkHHHIH9s~HHDcHLI9saHHDkDkHHHIH9s5HHD[HLI9sHHDkDk?H$8HH$8IE)E)lE)<AE)	Dd$<fE!D|$@fEyDt$DfEqDl$HfEiL$HH1H9ZH$ HH\$H$(Hl$PHH\$H$HH$hHD$H$pHL$ H$H$H$H[8H$H$HT$XH$xH$$`!H$ HH\$H$(Hl$PHH\$H$H$H$H[ HL$HD$ H$pH$H$hHY H$H$HT$XH$xH$\$D\$DT$DL$Dd$<A)l$@D)Al$DD)Al$HD)AHH$HH\$HH\$HT$XHD$o2(v'$`H$IHHH$HH$H$H$L$LL$xH$HH$H$H$Ht8HH$HD$H$H$H$xH$HHH\$PHH\$PH511g
    718 (type.*image.Palettedtype.[][4]int32
    719 "runtime.makeslice
type.[][4]int32
    722 "runtime.makeslicetype.[][4]int32
    723 "runtime.makeslice.type.image/color.RGBA64
    724 "runtime.newobject6
    725 $runtime.panicindex6
    726 $runtime.panicindex6
    727 $runtime.panicindex6
    728 $runtime.panicindex6
    729 $runtime.panicindex6
    730 $runtime.panicindex6
    731 $runtime.panicindex7
    732 $runtime.panicindex7
    733 $runtime.panicindex7
    734 $runtime.panicindex7
    735 $runtime.panicindex7
    736 $runtime.panicindex7
    737 $runtime.panicindex7
    738 $runtime.panicindex7
    739 $runtime.panicindex7
    740 $runtime.panicindex8
    741 $runtime.panicindex8
    742 $runtime.panicindex8
    743 $runtime.panicindex8
    744 $runtime.panicindex8
    745 $runtime.panicindex8
    746 $runtime.panicindex8
    747 $runtime.panicindex8
    748 $runtime.panicindex8
    749 $runtime.panicindex9
    750 $runtime.panicindex9
    751 $runtime.panicindex9
    752 $runtime.panicindex9
    753 $runtime.panicindex9
    754 $runtime.panicindex9
    755 $runtime.panicindex9
    756 $runtime.panicindex9
    757 $runtime.panicindex9
    758 $runtime.panicindex:
    759 $runtime.panicindex:
    760 $runtime.panicindex:
    761 $runtime.panicindex<Zgo.itab.*image/color.RGBA64.image/color.Color=?@A0type.*image/color.RGBA64B,type.image/color.ColorBZgo.itab.*image/color.RGBA64.image/color.ColorB
    762  runtime.typ2ItabC
    763 $runtime.panicindexC
    764 $runtime.panicindexC
    765 $runtime.panicindexD
    766 $runtime.panicindexF
    767 runtime.memclrG
    768 $runtime.panicsliceG
    769 $runtime.panicindexG
    770 $runtime.panicindexH
    771 $runtime.panicindexH
    772 $runtime.panicindexH
    773 0runtime.morestack_noctxt"".autotmp_0447type.int"".autotmp_0445type.*uint8"".autotmp_0444type.[][4]int32"".autotmp_0442type.int"".autotmp_0441type.uint32"".autotmp_0440type.int32"".autotmp_0439type.uint32"".autotmp_0438type.int32"".autotmp_0437type.uint32"".autotmp_0436type.int32"".autotmp_0434type.int32"".autotmp_0433type.[4]int32"".autotmp_0432type.*[4]int32"".autotmp_0431type.int"".autotmp_0430type.int"".autotmp_0429type.int32"".autotmp_0428type.int32"".autotmp_0427type.int32"".autotmp_0426type.int32"".autotmp_0425type.int32"".autotmp_0424type.int32"".autotmp_0423type.int32"".autotmp_0422type.int32"".autotmp_0417type.int"".autotmp_0416type.int"".autotmp_0415.type.image/color.RGBA64"".autotmp_0414type.int"".autotmp_0413type.int"".autotmp_0412type.int"".autotmp_0411type.int"".autotmp_0410type.int"".autotmp_0409type.int"".autotmp_0408type.int"".autotmp_0407type.int"".autotmp_0406,type.image/color.Color"".autotmp_0405.type.*image/color.Color"".autotmp_0404type.int"".autotmp_0403type.int"".autotmp_0402type.int"".autotmp_0401type.int"".autotmp_0400type.int32"".autotmp_0399type.int"".autotmp_0398type.int32"".autotmp_0397type.int"".autotmp_0396type.int32"".autotmp_0395type.int"".autotmp_0394type.int32"".autotmp_0393type.int"".autotmp_0392type.int32"".autotmp_0391type.int"".autotmp_0390type.int32"".autotmp_0389type.int"".autotmp_0388type.int32"".autotmp_0387type.int"".autotmp_0386type.int32"".autotmp_0385type.int"".autotmp_0384type.int32"".autotmp_0383type.int"".autotmp_0382type.int32"".autotmp_0381type.int"".autotmp_0380type.int32"".autotmp_0379type.int"".autotmp_0378type.int32"".autotmp_0377type.int"".autotmp_0376type.int32"".autotmp_0375type.int"".autotmp_0374type.int32"".autotmp_0373type.int"".autotmp_0372type.int32"".autotmp_0371type.int"".autotmp_0370type.int32"".autotmp_0369type.int"".autotmp_0368type.int32"".autotmp_0367type.int32"".autotmp_0366type.int32"".autotmp_0365type.int32"".autotmp_0364,type.image/color.Color"".autotmp_03630type.*image/color.RGBA64"".autotmp_0362type.int32"".autotmp_0361type.int32"".autotmp_0360type.int32"".autotmp_0359type.int32"".autotmp_0358_type.[][4]int32"".autotmp_0357,type.image/color.Color"".autotmp_0355type.int"".autotmp_0354/0type.image/color.Palette"".autotmp_0353type.int"".&out0type.*image/color.RGBA64"".~r2type.uint32"".~r2type.uint32"".~r2type.uint32image.r2(type.image.Rectangleimage.r2(type.image.Rectangleimage.r2(type.image.Rectangleimage.r2(type.image.Rectangle"".ptype.[4]int32"".indextype.int"".bestSumtype.uint32
    777 "".eatype.int32
    778 "".ebtype.int32
    779 "".egtype.int32
    780 "".ertype.int32"".xtype.int"".ytype.int""".quantErrorNexttype.[][4]int32""".quantErrorCurrtype.[][4]int32"".col,type.image/color.Color"".itype.int"".p(type.*image.Paletted"".stridetype.int"".pixtype.[]uint8"".palettetype.[][4]int32""".floydSteinbergtype.bool
    783 "".sp type.image.Point"".src` type.image.Image"".r (type.image.Rectangle"".dsttype."".Image"#P$"=:MA	(4pZQ<<<<		
    788 4
    789 7>(,,,0ACCC@BBB>@@@AC;;/	#(	
    790 
    791 
    792 
    793 
    794 
    795 
    796 7GbF	H7*
EPTgclocals3e0a951acc3448d0b94a55a9154ce055Tgclocalsc55a80a9404ab910a1625cb1d89774f2\prebuilts/go/darwin-x86/src/image/draw/draw.go"".initeH%H;aH8tuH81HH$HH\$HH\$H\$8H\$HD$ H\$(HH\$0=uHH8H-H,$H\$$&
    804 4"".initdoneL"".initdonej
    805 "runtime.throwinitz"".initdone
    806 image.init
    807  image/color.init
    808 :image/internal/imageutil.init,type."".floydSteinbergtype."".DrawerFgo.itab."".floydSteinberg."".Drawer
    809 runtime.convT2I""".FloydSteinberg6runtime.writeBarrierEnabled""".FloydSteinberg"".initdone""".FloydSteinberg
    810 .runtime.writebarrierptr
    811 0runtime.morestack_noctxtp"".autotmp_0450,type."".floydSteinbergpopop% 
    812 Q	^			4Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/darwin-x86/src/image/draw/draw.go"".(*Op).DraweH%H;aHXHY Ht
H|$`H9;uH#H\$`1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$`H+H,$H\$hH\$H\$pH\$H\$xH\$H$H\$ H$H\$(H$H\$0H$H\$8H$H\$@H$H\$HH$H\$PHX
    818 x go.string."draw"go.string."Op" go.string."Draw"
    819 "runtime.panicwrap
    820 "".Op.Draw
    821 0runtime.morestack_noctxt
    822 
    823 "".sp type.image.Point"".srcp type.image.Image"".r0(type.image.Rectangle"".dsttype."".Image""..thistype.*"".OpwTgclocals8a57dc7d5c290327fe731054fc6a7f75Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".Image.AteH%H;avgH(HY Ht
H|$0H9;uH#1H\$PH\$XH\$@H\$H\$HH\$H\$8H$H\$0H[ HL$HD$ HL$PHD$XH(
    829 
    830 0runtime.morestack_noctxt`P"".~r3@,type.image/color.Colorimage.y0type.intimage.x type.int""..thistype."".ImagePbOP
    832 
    833 [%Tgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".Image.BoundseH%H;avqH(HY Ht
H|$0H9;uH#1H\$@H\$HH\$PH\$XH\$8H$H\$0H[(Hl$HT$HL$HD$ Hl$@HT$HHL$PHD$XH(v
    836 
    837 0runtime.morestack_noctxt`P"".~r1 (type.image.Rectangle""..thistype."".ImagePlOP
    839 Q?Tgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>&"".Image.ColorModeleH%H;avSHHY Ht
H|$ H9;uH#1H\$0H\$8H\$(H$H\$ H[0HL$HD$HL$0HD$8H
    842 
    843 0runtime.morestack_noctxt@0"".~r1 ,type.image/color.Model""..thistype."".Image0N/0p
    845 p
    846 G)Tgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".Image.SeteH%H;av[H(HY Ht
H|$0H9;uH#H\$@H\$H\$HH\$H\$PH\$H\$XH\$ H\$8H$H\$0H[8H(
    849 
    850 0runtime.morestack_noctxt`P"".c@,type.image/color.Color"".y0type.int"".x type.int""..thistype."".ImagePVOP
    852 cTgclocals57cb53c6e1baf060ff3024e169f48a16Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>2"".(*floydSteinberg).DraweH%H;aHPHY Ht
H|$XH9;uH#H\$X1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$XHtH\$`H$H\$hH\$H\$pH\$H\$xH\$H$H\$ H$H\$(H$H\$0H$H\$8H$H\$@H$H\$HHPz
    856 x go.string."draw"4go.string."floydSteinberg" go.string."Draw"
    857 "runtime.panicwrap
    858 ,"".floydSteinberg.Draw
    859 0runtime.morestack_noctxt
    860 
    861 "".sp type.image.Point"".srcp type.image.Image"".r0(type.image.Rectangle"".dsttype."".Image""..this.type.*"".floydSteinbergwTgclocals8a57dc7d5c290327fe731054fc6a7f75Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>"".Drawer.DraweH%H;aHXHY Ht
H|$`H9;uH#H\$pH\$H\$xH\$H$H\$H$H\$ H$H\$(H$H\$0H$H\$8H$H\$@H$H\$HH$H\$PH\$hH$H\$`H[ HX4
    867 
    868 0runtime.morestack_noctxt
    869 
    870 "".sp type.image.Point"".src type.image.Image"".r@(type.image.Rectangle"".dst type."".Image""..thistype."".DrawerTgclocals9fce04353485125ccd01916520b7f5a9Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*"".Quantizer.QuantizeeH%H;aHHHY Ht
H|$PH9;uH#1H$H$H$H\$`H\$H\$hH\$H\$pH\$H\$xH\$ H$H\$(H\$XH$H\$PH[ HT$0HL$8HD$@H$H$H$HH:
    876 
    877 0runtime.morestack_noctxt"".~r2p0type.image/color.Palette"".mP type.image.Image"".p 0type.image/color.Palette""..this"type."".QuantizerBTgclocalsfae89e34b5af94d8a7e54fbfc4bde7f7Tgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals53c7667477e950feba4c8f0f6f5b2e07Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals8284eba58712f7b004cdf24e5edb7852
    881 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsbd5ecf30bdbc677b0e14fa50cb5ef414	Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocalsb85af394c8a18f2d7505864470ede412Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsb85af394c8a18f2d7505864470ede4120 (a] go.itab.*image.Paletted."".Image0Zgo.itab.image/color.Alpha16.image/color.Color0Zgo.itab.*image/color.RGBA64.image/color.ColorTgclocals36b7218c75ba96691b40c9f321c5145eXX	 (Tgclocalsb6ff6e408574fb1653efe879811802f9XX	Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals87cec55554a82a6b90f0a3422a49276c!Tgclocals268f53bd44a502609f9f09d0e1d132c2  Tgclocals0a593fb1764c93835ed65ead7777b19c  !!Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals1456a4d95d5155713df2023483faeae8!Tgclocals5f32766c99d383f833fae93d4e4d71d1Tgclocals1456a4d95d5155713df2023483faeae8!Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals1456a4d95d5155713df2023483faeae8!Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals1456a4d95d5155713df2023483faeae8!Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals1456a4d95d5155713df2023483faeae8!Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals1456a4d95d5155713df2023483faeae8!Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsebbd3ea82c8151c03f12f1bcc5fcb64a	a0>go.itab.*image.RGBA.image.ImageTgclocals5e29cf4e275ff1db65cfee262b3b8d1f  Tgclocals1cbd1dda6584c1572d9008465d7a0fc5  aaTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocalsc55a80a9404ab910a1625cb1d89774f2PPTgclocals3e0a951acc3448d0b94a55a9154ce055PP0Fgo.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"
    897 draw$go.string.hdr."Op"  go.string."Op"go.string."Op"Op(go.string.hdr."Draw"   go.string."Draw" go.string."Draw"
    898 DrawTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals8a57dc7d5c290327fe731054fc6a7f75Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsd98f60bd8519d0c68364b2a1d83af357Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals57cb53c6e1baf060ff3024e169f48a163Tgo.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"  
    902 ,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"  
    903 ,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"  
    905 ,go.string."image/draw",go.string."image/draw" image/draw"go.importpath."".  
    906 ,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"  
    910 ,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."".DrawerTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsfae89e34b5af94d8a7e54fbfc4bde7f7
    918 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