! __.PKGDEF 0 0 0 644 27954 ` go object darwin amd64 go1.5.1 X:none build id "89edfc12b77aa11bbdcf88186d2ec85661858f4c" $$ package image import runtime "runtime" import bufio "bufio" import errors "errors" import io "io" import color "image/color" import strconv "strconv" var @"".ErrFormat error type @"image/color".Color interface { RGBA() (@"image/color".r uint32, @"image/color".g uint32, @"image/color".b uint32, @"image/color".a uint32) } type @"".Point struct { X int; Y int } func (@"".p·2 @"".Point) Add (@"".q·3 @"".Point) (? @"".Point) { return (@"".Point{ X:@"".p·2.X + @"".q·3.X, Y:@"".p·2.Y + @"".q·3.Y }) } func (@"".p·2 @"".Point) Div (@"".k·3 int) (? @"".Point) { return (@"".Point{ X:@"".p·2.X / @"".k·3, Y:@"".p·2.Y / @"".k·3 }) } func (@"".p·2 @"".Point) Eq (@"".q·3 @"".Point) (? bool) { return @"".p·2 == @"".q·3 } func (@"".p·2 @"".Point) In (@"".r·3 @"".Rectangle) (? bool) { return @"".r·3.Min.X <= @"".p·2.X && @"".p·2.X < @"".r·3.Max.X && @"".r·3.Min.Y <= @"".p·2.Y && @"".p·2.Y < @"".r·3.Max.Y } func (@"".p·2 @"".Point) Mod (@"".r·3 @"".Rectangle) (? @"".Point) func (@"".p·2 @"".Point) Mul (@"".k·3 int) (? @"".Point) { return (@"".Point{ X:@"".p·2.X * @"".k·3, Y:@"".p·2.Y * @"".k·3 }) } func (@"".p·2 @"".Point) String () (? string) func (@"".p·2 @"".Point) Sub (@"".q·3 @"".Point) (? @"".Point) { return (@"".Point{ X:@"".p·2.X - @"".q·3.X, Y:@"".p·2.Y - @"".q·3.Y }) } type @"image/color".Model interface { Convert(@"image/color".c @"image/color".Color) (? @"image/color".Color) } type @"".Rectangle struct { Min @"".Point; Max @"".Point } func (@"".r·2 @"".Rectangle) Add (@"".p·3 @"".Point) (? @"".Rectangle) { return (@"".Rectangle{ Min:(@"".Point{ X:@"".r·2.Min.X + @"".p·3.X, Y:@"".r·2.Min.Y + @"".p·3.Y }), Max:(@"".Point{ X:@"".r·2.Max.X + @"".p·3.X, Y:@"".r·2.Max.Y + @"".p·3.Y }) }) } func (@"".r·2 @"".Rectangle) At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) { if (@"".Point{ X:@"".x·3, Y:@"".y·4 }).In(@"".r·2) { return @"image/color".Opaque }; return @"image/color".Transparent } func (@"".r·2 @"".Rectangle) Bounds () (? @"".Rectangle) { return @"".r·2 } func (@"".r·2 @"".Rectangle) Canon () (? @"".Rectangle) { if @"".r·2.Max.X < @"".r·2.Min.X { @"".r·2.Min.X, @"".r·2.Max.X = @"".r·2.Max.X, @"".r·2.Min.X }; if @"".r·2.Max.Y < @"".r·2.Min.Y { @"".r·2.Min.Y, @"".r·2.Max.Y = @"".r·2.Max.Y, @"".r·2.Min.Y }; return @"".r·2 } func (@"".r·2 @"".Rectangle) ColorModel () (? @"image/color".Model) { return @"image/color".Alpha16Model } func (@"".r·2 @"".Rectangle) Dx () (? int) { return @"".r·2.Max.X - @"".r·2.Min.X } func (@"".r·2 @"".Rectangle) Dy () (? int) { return @"".r·2.Max.Y - @"".r·2.Min.Y } func (@"".r·2 @"".Rectangle) Empty () (? bool) { return @"".r·2.Min.X >= @"".r·2.Max.X || @"".r·2.Min.Y >= @"".r·2.Max.Y } func (@"".r·2 @"".Rectangle) Eq (@"".s·3 @"".Rectangle) (? bool) { return @"".r·2 == @"".s·3 || @"".r·2.Empty() && @"".s·3.Empty() } func (@"".r·2 @"".Rectangle) In (@"".s·3 @"".Rectangle) (? bool) { if @"".r·2.Empty() { return true }; return @"".s·3.Min.X <= @"".r·2.Min.X && @"".r·2.Max.X <= @"".s·3.Max.X && @"".s·3.Min.Y <= @"".r·2.Min.Y && @"".r·2.Max.Y <= @"".s·3.Max.Y } func (@"".r·2 @"".Rectangle) Inset (@"".n·3 int) (? @"".Rectangle) func (@"".r·2 @"".Rectangle) Intersect (@"".s·3 @"".Rectangle) (? @"".Rectangle) func (@"".r·2 @"".Rectangle) Overlaps (@"".s·3 @"".Rectangle) (? bool) func (@"".r·2 @"".Rectangle) Size () (? @"".Point) { return (@"".Point{ X:@"".r·2.Max.X - @"".r·2.Min.X, Y:@"".r·2.Max.Y - @"".r·2.Min.Y }) } func (@"".r·2 @"".Rectangle) String () (? string) func (@"".r·2 @"".Rectangle) Sub (@"".p·3 @"".Point) (? @"".Rectangle) { return (@"".Rectangle{ Min:(@"".Point{ X:@"".r·2.Min.X - @"".p·3.X, Y:@"".r·2.Min.Y - @"".p·3.Y }), Max:(@"".Point{ X:@"".r·2.Max.X - @"".p·3.X, Y:@"".r·2.Max.Y - @"".p·3.Y }) }) } func (@"".r·2 @"".Rectangle) Union (@"".s·3 @"".Rectangle) (? @"".Rectangle) type @"".Image interface { At(@"".x int, @"".y int) (? @"image/color".Color); Bounds() (? @"".Rectangle); ColorModel() (? @"image/color".Model) } type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) } type @"".Config struct { ColorModel @"image/color".Model; Width int; Height int } func @"".RegisterFormat (@"".name·1 string, @"".magic·2 string, @"".decode·3 func(? @"io".Reader) (? @"".Image, ? error), @"".decodeConfig·4 func(? @"io".Reader) (? @"".Config, ? error)) { @"".formats = append(@"".formats, (@"".format{ @"".name:@"".name·1, @"".magic:@"".magic·2, @"".decode:@"".decode·3, @"".decodeConfig:@"".decodeConfig·4 })) } func @"".Decode (@"".r·4 @"io".Reader) (? @"".Image, ? string, ? error) func @"".DecodeConfig (@"".r·4 @"io".Reader) (? @"".Config, ? string, ? error) var @"".ZP @"".Point func @"".Pt (@"".X·2 int, @"".Y·3 int) (? @"".Point) { return (@"".Point{ X:@"".X·2, Y:@"".Y·3 }) } var @"".ZR @"".Rectangle func @"".Rect (@"".x0·2 int, @"".y0·3 int, @"".x1·4 int, @"".y1·5 int) (? @"".Rectangle) { if @"".x0·2 > @"".x1·4 { @"".x0·2, @"".x1·4 = @"".x1·4, @"".x0·2 }; if @"".y0·3 > @"".y1·5 { @"".y0·3, @"".y1·5 = @"".y1·5, @"".y0·3 }; return (@"".Rectangle{ Min:(@"".Point{ X:@"".x0·2, Y:@"".y0·3 }), Max:(@"".Point{ X:@"".x1·4, Y:@"".y1·5 }) }) } type @"".PalettedImage interface { At(@"".x int, @"".y int) (? @"image/color".Color); Bounds() (? @"".Rectangle); ColorIndexAt(@"".x int, @"".y int) (? uint8); ColorModel() (? @"image/color".Model) } type @"image/color".RGBA struct { R uint8; G uint8; B uint8; A uint8 } func (@"image/color".c·5 @"image/color".RGBA) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { @"image/color".r·1 = uint32(@"image/color".c·5.R); @"image/color".r·1 |= @"image/color".r·1 << 0x8; @"image/color".g·2 = uint32(@"image/color".c·5.G); @"image/color".g·2 |= @"image/color".g·2 << 0x8; @"image/color".b·3 = uint32(@"image/color".c·5.B); @"image/color".b·3 |= @"image/color".b·3 << 0x8; @"image/color".a·4 = uint32(@"image/color".c·5.A); @"image/color".a·4 |= @"image/color".a·4 << 0x8; return } type @"".RGBA struct { Pix []uint8; Stride int; Rect @"".Rectangle } func (@"".p·2 *@"".RGBA "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) func (@"".p·2 *@"".RGBA "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect } func (@"".p·2 *@"".RGBA "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".RGBAModel } func (@"".p·2 *@"".RGBA "esc:0x1") Opaque () (? bool) func (@"".p·2 *@"".RGBA "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x4 } func (@"".p·2 *@"".RGBA "esc:0x1") RGBAAt (@"".x·3 int, @"".y·4 int) (? @"image/color".RGBA) func (@"".p·1 *@"".RGBA "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color) func (@"".p·1 *@"".RGBA "esc:0x1") SetRGBA (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".RGBA) func (@"".p·2 *@"".RGBA "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image) func @"".NewRGBA (@"".r·2 @"".Rectangle) (? *@"".RGBA) { var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".buf·5 []uint8; @"".buf·5 = make([]uint8, 0x4 * @"".w·3 * @"".h·4); return (&@"".RGBA{ Pix:@"".buf·5, Stride:0x4 * @"".w·3, Rect:@"".r·2 }) } type @"image/color".RGBA64 struct { R uint16; G uint16; B uint16; A uint16 } func (@"image/color".c·5 @"image/color".RGBA64) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { return uint32(@"image/color".c·5.R), uint32(@"image/color".c·5.G), uint32(@"image/color".c·5.B), uint32(@"image/color".c·5.A) } type @"".RGBA64 struct { Pix []uint8; Stride int; Rect @"".Rectangle } func (@"".p·2 *@"".RGBA64 "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) func (@"".p·2 *@"".RGBA64 "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect } func (@"".p·2 *@"".RGBA64 "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".RGBA64Model } func (@"".p·2 *@"".RGBA64 "esc:0x1") Opaque () (? bool) func (@"".p·2 *@"".RGBA64 "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x8 } func (@"".p·2 *@"".RGBA64 "esc:0x1") RGBA64At (@"".x·3 int, @"".y·4 int) (? @"image/color".RGBA64) func (@"".p·1 *@"".RGBA64 "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color) func (@"".p·1 *@"".RGBA64 "esc:0x1") SetRGBA64 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".RGBA64) func (@"".p·2 *@"".RGBA64 "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image) func @"".NewRGBA64 (@"".r·2 @"".Rectangle) (? *@"".RGBA64) { var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, 0x8 * @"".w·3 * @"".h·4); return (&@"".RGBA64{ Pix:@"".pix·5, Stride:0x8 * @"".w·3, Rect:@"".r·2 }) } type @"image/color".NRGBA struct { R uint8; G uint8; B uint8; A uint8 } func (@"image/color".c·5 @"image/color".NRGBA) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { @"image/color".r·1 = uint32(@"image/color".c·5.R); @"image/color".r·1 |= @"image/color".r·1 << 0x8; @"image/color".r·1 *= uint32(@"image/color".c·5.A); @"image/color".r·1 /= 0xff; @"image/color".g·2 = uint32(@"image/color".c·5.G); @"image/color".g·2 |= @"image/color".g·2 << 0x8; @"image/color".g·2 *= uint32(@"image/color".c·5.A); @"image/color".g·2 /= 0xff; @"image/color".b·3 = uint32(@"image/color".c·5.B); @"image/color".b·3 |= @"image/color".b·3 << 0x8; @"image/color".b·3 *= uint32(@"image/color".c·5.A); @"image/color".b·3 /= 0xff; @"image/color".a·4 = uint32(@"image/color".c·5.A); @"image/color".a·4 |= @"image/color".a·4 << 0x8; return } type @"".NRGBA struct { Pix []uint8; Stride int; Rect @"".Rectangle } func (@"".p·2 *@"".NRGBA "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) func (@"".p·2 *@"".NRGBA "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect } func (@"".p·2 *@"".NRGBA "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".NRGBAModel } func (@"".p·2 *@"".NRGBA "esc:0x1") NRGBAAt (@"".x·3 int, @"".y·4 int) (? @"image/color".NRGBA) func (@"".p·2 *@"".NRGBA "esc:0x1") Opaque () (? bool) func (@"".p·2 *@"".NRGBA "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x4 } func (@"".p·1 *@"".NRGBA "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color) func (@"".p·1 *@"".NRGBA "esc:0x1") SetNRGBA (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".NRGBA) func (@"".p·2 *@"".NRGBA "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image) func @"".NewNRGBA (@"".r·2 @"".Rectangle) (? *@"".NRGBA) { var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, 0x4 * @"".w·3 * @"".h·4); return (&@"".NRGBA{ Pix:@"".pix·5, Stride:0x4 * @"".w·3, Rect:@"".r·2 }) } type @"image/color".NRGBA64 struct { R uint16; G uint16; B uint16; A uint16 } func (@"image/color".c·5 @"image/color".NRGBA64) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { @"image/color".r·1 = uint32(@"image/color".c·5.R); @"image/color".r·1 *= uint32(@"image/color".c·5.A); @"image/color".r·1 /= 0xffff; @"image/color".g·2 = uint32(@"image/color".c·5.G); @"image/color".g·2 *= uint32(@"image/color".c·5.A); @"image/color".g·2 /= 0xffff; @"image/color".b·3 = uint32(@"image/color".c·5.B); @"image/color".b·3 *= uint32(@"image/color".c·5.A); @"image/color".b·3 /= 0xffff; @"image/color".a·4 = uint32(@"image/color".c·5.A); return } type @"".NRGBA64 struct { Pix []uint8; Stride int; Rect @"".Rectangle } func (@"".p·2 *@"".NRGBA64 "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) func (@"".p·2 *@"".NRGBA64 "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect } func (@"".p·2 *@"".NRGBA64 "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".NRGBA64Model } func (@"".p·2 *@"".NRGBA64 "esc:0x1") NRGBA64At (@"".x·3 int, @"".y·4 int) (? @"image/color".NRGBA64) func (@"".p·2 *@"".NRGBA64 "esc:0x1") Opaque () (? bool) func (@"".p·2 *@"".NRGBA64 "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x8 } func (@"".p·1 *@"".NRGBA64 "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color) func (@"".p·1 *@"".NRGBA64 "esc:0x1") SetNRGBA64 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".NRGBA64) func (@"".p·2 *@"".NRGBA64 "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image) func @"".NewNRGBA64 (@"".r·2 @"".Rectangle) (? *@"".NRGBA64) { var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, 0x8 * @"".w·3 * @"".h·4); return (&@"".NRGBA64{ Pix:@"".pix·5, Stride:0x8 * @"".w·3, Rect:@"".r·2 }) } type @"image/color".Alpha struct { A uint8 } func (@"image/color".c·5 @"image/color".Alpha) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { @"image/color".a·4 = uint32(@"image/color".c·5.A); @"image/color".a·4 |= @"image/color".a·4 << 0x8; return @"image/color".a·4, @"image/color".a·4, @"image/color".a·4, @"image/color".a·4 } type @"".Alpha struct { Pix []uint8; Stride int; Rect @"".Rectangle } func (@"".p·2 *@"".Alpha "esc:0x1") AlphaAt (@"".x·3 int, @"".y·4 int) (? @"image/color".Alpha) func (@"".p·2 *@"".Alpha "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) func (@"".p·2 *@"".Alpha "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect } func (@"".p·2 *@"".Alpha "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".AlphaModel } func (@"".p·2 *@"".Alpha "esc:0x1") Opaque () (? bool) func (@"".p·2 *@"".Alpha "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x1 } func (@"".p·1 *@"".Alpha "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color) func (@"".p·1 *@"".Alpha "esc:0x1") SetAlpha (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Alpha) func (@"".p·2 *@"".Alpha "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image) func @"".NewAlpha (@"".r·2 @"".Rectangle) (? *@"".Alpha) { var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, 0x1 * @"".w·3 * @"".h·4); return (&@"".Alpha{ Pix:@"".pix·5, Stride:0x1 * @"".w·3, Rect:@"".r·2 }) } type @"image/color".Alpha16 struct { A uint16 } func (@"image/color".c·5 @"image/color".Alpha16) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { @"image/color".a·4 = uint32(@"image/color".c·5.A); return @"image/color".a·4, @"image/color".a·4, @"image/color".a·4, @"image/color".a·4 } type @"".Alpha16 struct { Pix []uint8; Stride int; Rect @"".Rectangle } func (@"".p·2 *@"".Alpha16 "esc:0x1") Alpha16At (@"".x·3 int, @"".y·4 int) (? @"image/color".Alpha16) func (@"".p·2 *@"".Alpha16 "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) func (@"".p·2 *@"".Alpha16 "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect } func (@"".p·2 *@"".Alpha16 "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".Alpha16Model } func (@"".p·2 *@"".Alpha16 "esc:0x1") Opaque () (? bool) func (@"".p·2 *@"".Alpha16 "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x2 } func (@"".p·1 *@"".Alpha16 "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color) func (@"".p·1 *@"".Alpha16 "esc:0x1") SetAlpha16 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Alpha16) func (@"".p·2 *@"".Alpha16 "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image) func @"".NewAlpha16 (@"".r·2 @"".Rectangle) (? *@"".Alpha16) { var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, 0x2 * @"".w·3 * @"".h·4); return (&@"".Alpha16{ Pix:@"".pix·5, Stride:0x2 * @"".w·3, Rect:@"".r·2 }) } type @"image/color".Gray struct { Y uint8 } func (@"image/color".c·5 @"image/color".Gray) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { var @"image/color".y·6 uint32; ; @"image/color".y·6 = uint32(@"image/color".c·5.Y); @"image/color".y·6 |= @"image/color".y·6 << 0x8; return @"image/color".y·6, @"image/color".y·6, @"image/color".y·6, 0xffff } type @"".Gray struct { Pix []uint8; Stride int; Rect @"".Rectangle } func (@"".p·2 *@"".Gray "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) func (@"".p·2 *@"".Gray "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect } func (@"".p·2 *@"".Gray "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".GrayModel } func (@"".p·2 *@"".Gray "esc:0x1") GrayAt (@"".x·3 int, @"".y·4 int) (? @"image/color".Gray) func (@"".p·2 *@"".Gray "esc:0x1") Opaque () (? bool) { return true } func (@"".p·2 *@"".Gray "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x1 } func (@"".p·1 *@"".Gray "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color) func (@"".p·1 *@"".Gray "esc:0x1") SetGray (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Gray) func (@"".p·2 *@"".Gray "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image) func @"".NewGray (@"".r·2 @"".Rectangle) (? *@"".Gray) { var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, 0x1 * @"".w·3 * @"".h·4); return (&@"".Gray{ Pix:@"".pix·5, Stride:0x1 * @"".w·3, Rect:@"".r·2 }) } type @"image/color".Gray16 struct { Y uint16 } func (@"image/color".c·5 @"image/color".Gray16) RGBA () (@"image/color".r·1 uint32, @"image/color".g·2 uint32, @"image/color".b·3 uint32, @"image/color".a·4 uint32) { var @"image/color".y·6 uint32; ; @"image/color".y·6 = uint32(@"image/color".c·5.Y); return @"image/color".y·6, @"image/color".y·6, @"image/color".y·6, 0xffff } type @"".Gray16 struct { Pix []uint8; Stride int; Rect @"".Rectangle } func (@"".p·2 *@"".Gray16 "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) func (@"".p·2 *@"".Gray16 "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect } func (@"".p·2 *@"".Gray16 "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".Gray16Model } func (@"".p·2 *@"".Gray16 "esc:0x1") Gray16At (@"".x·3 int, @"".y·4 int) (? @"image/color".Gray16) func (@"".p·2 *@"".Gray16 "esc:0x1") Opaque () (? bool) { return true } func (@"".p·2 *@"".Gray16 "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x2 } func (@"".p·1 *@"".Gray16 "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color) func (@"".p·1 *@"".Gray16 "esc:0x1") SetGray16 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Gray16) func (@"".p·2 *@"".Gray16 "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image) func @"".NewGray16 (@"".r·2 @"".Rectangle) (? *@"".Gray16) { var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".pix·5 []uint8; @"".pix·5 = make([]uint8, 0x2 * @"".w·3 * @"".h·4); return (&@"".Gray16{ Pix:@"".pix·5, Stride:0x2 * @"".w·3, Rect:@"".r·2 }) } type @"image/color".CMYK struct { C uint8; M uint8; Y uint8; K uint8 } func (@"image/color".c·5 @"image/color".CMYK) RGBA () (? uint32, ? uint32, ? uint32, ? uint32) { var @"image/color".w·6 uint32; ; @"image/color".w·6 = uint32(0xffff - uint32(@"image/color".c·5.K) * 0x101); var @"image/color".r·7 uint32; ; @"image/color".r·7 = uint32(0xffff - uint32(@"image/color".c·5.C) * 0x101) * @"image/color".w·6 / 0xffff; var @"image/color".g·8 uint32; ; @"image/color".g·8 = uint32(0xffff - uint32(@"image/color".c·5.M) * 0x101) * @"image/color".w·6 / 0xffff; var @"image/color".b·9 uint32; ; @"image/color".b·9 = uint32(0xffff - uint32(@"image/color".c·5.Y) * 0x101) * @"image/color".w·6 / 0xffff; return uint32(@"image/color".r·7), uint32(@"image/color".g·8), uint32(@"image/color".b·9), 0xffff } type @"".CMYK struct { Pix []uint8; Stride int; Rect @"".Rectangle } func (@"".p·2 *@"".CMYK "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) func (@"".p·2 *@"".CMYK "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect } func (@"".p·2 *@"".CMYK "esc:0x1") CMYKAt (@"".x·3 int, @"".y·4 int) (? @"image/color".CMYK) func (@"".p·2 *@"".CMYK "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".CMYKModel } func (@"".p·2 *@"".CMYK "esc:0x1") Opaque () (? bool) { return true } func (@"".p·2 *@"".CMYK "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x4 } func (@"".p·1 *@"".CMYK "esc:0x1") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color) func (@"".p·1 *@"".CMYK "esc:0x1") SetCMYK (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".CMYK) func (@"".p·2 *@"".CMYK "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image) func @"".NewCMYK (@"".r·2 @"".Rectangle) (? *@"".CMYK) { var @"".w·3 int; var @"".h·4 int; @"".w·3, @"".h·4 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".buf·5 []uint8; @"".buf·5 = make([]uint8, 0x4 * @"".w·3 * @"".h·4); return (&@"".CMYK{ Pix:@"".buf·5, Stride:0x4 * @"".w·3, Rect:@"".r·2 }) } type @"image/color".Palette []@"image/color".Color func (@"image/color".p·2 @"image/color".Palette "esc:0x2a") Convert (@"image/color".c·3 @"image/color".Color) (? @"image/color".Color) func (@"image/color".p·2 @"image/color".Palette "esc:0x9") Index (@"image/color".c·3 @"image/color".Color) (? int) type @"".Paletted struct { Pix []uint8; Stride int; Rect @"".Rectangle; Palette @"image/color".Palette } func (@"".p·2 *@"".Paletted "esc:0x32") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) func (@"".p·2 *@"".Paletted "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect } func (@"".p·2 *@"".Paletted "esc:0x1") ColorIndexAt (@"".x·3 int, @"".y·4 int) (? uint8) func (@"".p·2 *@"".Paletted "esc:0x22") ColorModel () (? @"image/color".Model) { return @"".p·2.Palette } func (@"".p·2 *@"".Paletted "esc:0x9") Opaque () (? bool) func (@"".p·2 *@"".Paletted "esc:0x1") PixOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.Stride + (@"".x·3 - @"".p·2.Rect.Min.X) * 0x1 } func (@"".p·1 *@"".Paletted "esc:0x9") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color) func (@"".p·1 *@"".Paletted "esc:0x1") SetColorIndex (@"".x·2 int, @"".y·3 int, @"".index·4 uint8) func (@"".p·2 *@"".Paletted "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image) func @"".NewPaletted (@"".r·2 @"".Rectangle, @"".p·3 @"image/color".Palette) (? *@"".Paletted) { var @"".w·4 int; var @"".h·5 int; @"".w·4, @"".h·5 = @"".r·2.Dx(), @"".r·2.Dy(); var @"".pix·6 []uint8; @"".pix·6 = make([]uint8, 0x1 * @"".w·4 * @"".h·5); return (&@"".Paletted{ Pix:@"".pix·6, Stride:0x1 * @"".w·4, Rect:@"".r·2, Palette:@"".p·3 }) } type @"".Uniform struct { C @"image/color".Color } func (@"".c·2 *@"".Uniform "esc:0x22") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) { return @"".c·2.C } func (@"".c·2 *@"".Uniform "esc:0x1") Bounds () (? @"".Rectangle) { return (@"".Rectangle{ Min:(@"".Point{ X:-0x3b9aca00, Y:-0x3b9aca00 }), Max:(@"".Point{ X:0x3b9aca00, Y:0x3b9aca00 }) }) } func (@"".c·2 *@"".Uniform "esc:0x12") ColorModel () (? @"image/color".Model) { return @"".c·2 } func (@"".c·2 *@"".Uniform "esc:0x22") Convert (? @"image/color".Color) (? @"image/color".Color) { return @"".c·2.C } func (@"".c·2 *@"".Uniform "esc:0x9") Opaque () (? bool) func (@"".c·5 *@"".Uniform "esc:0x9") RGBA () (@"".r·1 uint32, @"".g·2 uint32, @"".b·3 uint32, @"".a·4 uint32) var @"".Black *@"".Uniform var @"".White *@"".Uniform var @"".Transparent *@"".Uniform var @"".Opaque *@"".Uniform func @"".NewUniform (@"".c·2 @"image/color".Color) (? *@"".Uniform) { return (&@"".Uniform{ C:@"".c·2 }) } type @"".YCbCrSubsampleRatio int func (@"".s·2 @"".YCbCrSubsampleRatio) String () (? string) const @"".YCbCrSubsampleRatio444 @"".YCbCrSubsampleRatio = 0x0 const @"".YCbCrSubsampleRatio422 @"".YCbCrSubsampleRatio = 0x1 const @"".YCbCrSubsampleRatio420 @"".YCbCrSubsampleRatio = 0x2 const @"".YCbCrSubsampleRatio440 @"".YCbCrSubsampleRatio = 0x3 const @"".YCbCrSubsampleRatio411 @"".YCbCrSubsampleRatio = 0x4 const @"".YCbCrSubsampleRatio410 @"".YCbCrSubsampleRatio = 0x5 type @"image/color".YCbCr struct { Y uint8; Cb uint8; Cr uint8 } func (@"image/color".c·5 @"image/color".YCbCr) RGBA () (? uint32, ? uint32, ? uint32, ? uint32) type @"".YCbCr struct { Y []uint8; Cb []uint8; Cr []uint8; YStride int; CStride int; SubsampleRatio @"".YCbCrSubsampleRatio; Rect @"".Rectangle } func (@"".p·2 *@"".YCbCr "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) func (@"".p·2 *@"".YCbCr "esc:0x1") Bounds () (? @"".Rectangle) { return @"".p·2.Rect } func (@"".p·2 *@"".YCbCr "esc:0x1") COffset (@"".x·3 int, @"".y·4 int) (? int) func (@"".p·2 *@"".YCbCr "esc:0x1") ColorModel () (? @"image/color".Model) { return @"image/color".YCbCrModel } func (@"".p·2 *@"".YCbCr "esc:0x1") Opaque () (? bool) { return true } func (@"".p·2 *@"".YCbCr "esc:0xa") SubImage (@"".r·3 @"".Rectangle) (? @"".Image) func (@"".p·2 *@"".YCbCr "esc:0x1") YCbCrAt (@"".x·3 int, @"".y·4 int) (? @"image/color".YCbCr) func (@"".p·2 *@"".YCbCr "esc:0x1") YOffset (@"".x·3 int, @"".y·4 int) (? int) { return (@"".y·4 - @"".p·2.Rect.Min.Y) * @"".p·2.YStride + (@"".x·3 - @"".p·2.Rect.Min.X) } func @"".NewYCbCr (@"".r·2 @"".Rectangle, @"".subsampleRatio·3 @"".YCbCrSubsampleRatio) (? *@"".YCbCr) func @"".init () var @"image/color".Opaque @"image/color".Alpha16 var @"image/color".Transparent @"image/color".Alpha16 var @"image/color".Alpha16Model @"image/color".Model type @"".format struct { @"".name string; @"".magic string; @"".decode func(? @"io".Reader) (? @"".Image, ? error); @"".decodeConfig func(? @"io".Reader) (? @"".Config, ? error) } var @"".formats []@"".format var @"image/color".RGBAModel @"image/color".Model var @"image/color".RGBA64Model @"image/color".Model var @"image/color".NRGBAModel @"image/color".Model var @"image/color".NRGBA64Model @"image/color".Model var @"image/color".AlphaModel @"image/color".Model var @"image/color".GrayModel @"image/color".Model var @"image/color".Gray16Model @"image/color".Model var @"image/color".CMYKModel @"image/color".Model var @"image/color".YCbCrModel @"image/color".Model $$ _go_.o 0 0 0 644 434054 ` go object darwin amd64 go1.5.1 X:none ! go13ldbufio.aerrors.aio.aimage/color.astrconv.a""".RegisterFormateH %H;aZH1H\$PH\$XH\$`H\$hH\$pH\$xH$H\$PH$H\$XH$H\$`H$H\$hH$H\$pH$H\$xHHH HHH9w;HHHHk0HHl$PH\$Hl$H-H,$HĀH-H,$HT$HD$HL$H\$ HT$(HD$0HL$8HHD$@HHH HT$H=u HfH-H,$HT$HT$HHD$@B "".formats"".formats "".formats"".formatstype."".format (runtime.typedmemmove type.[]"".format "runtime.growslice"".formats "".formats6runtime.writeBarrierEnabled"".formats"".formats .runtime.writebarrierptr 0runtime.morestack_noctxt` "".autotmp_0000_type."".format"".decodeConfigPNtype.func(io.Reader) ("".Config, error)"".decode@Ltype.func(io.Reader) ("".Image, error)"".magic type.string"".nametype.stringB,W'Tgclocals·ac96ed3958d5792ac369a1dc2bfe9382Tgclocals·5bcb5afcb5617f15eb2d0b279323d878Vprebuilts/go/darwin-x86/src/image/format.go"".asReader eH %H$pH;AH1H$(H$01H$H$HH$H$H\$H$ H\$H$H\$\$ H$HT$`H$HL$htH$(H$0HH$H$ H\$pHD$xH$HH$1H9tH[H-H9HthHXH9|_HD$HH1H9tH\$HH$0H$(HHH$HH\$HH\$HD$HT$0H} HD$0HH$HL$0HD$HD$8HD$@HH$HL$HL$LD$Ht$ Hl$(H$H$H$1HL$L$H$H$H$H$HT$PH$HL$XH$HDŽ$HDŽ$H\$@Ht,H$H\$Hl$H-H,$HD$811iS" type."".reader $runtime.assertI2I2$type.*bufio.Reader>go.itab.*bufio.Reader."".reader$type.*bufio.Readertype."".reader>go.itab.*bufio.Reader."".reader runtime.typ2Itab"type.bufio.Reader "runtime.newobjecttype.[]uint8 "runtime.makeslice  runtime.duffzero "type.bufio.Reader  (runtime.typedmemmove  0runtime.morestack_noctxt@"".autotmp_0010$type.*bufio.Reader"".autotmp_0009$type.*bufio.Reader"".autotmp_0008"type.bufio.Reader"".autotmp_0005$type.*bufio.Reader"".autotmp_0004type."".readerbufio.r·3type.io.Readerbufio.buf·2type.[]uint8bufio.b·1$type.*bufio.Readerbufio.r·6$type.*bufio.Readerbufio.size·3type.intbufio.rd·2type.io.Readerbufio.rd·2type.io.Reader "".rrtype."".reader "".~r1 type."".reader"".rtype.io.Reader*" X4m\[D x+.)Tgclocals·a68b09a48716afad7ca7a02fe6add474Tgclocals·dd9a4d2009c4ac75e28d1a37bbe5075eVprebuilts/go/darwin-x86/src/image/format.go"".matcheH %H;avxHt$ LL$H|$H9tD$0HL$H\$(1IL9}6)H9s;I@8tH9s#I?tD$0HHL9|D$0  o  $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt` "".autotmp_0017type.int"".autotmp_0016type.int "".~r2Ptype.bool"".b type.[]uint8"".magictype.string*h"   y'Tgclocals·b4c25e9b09fd0cf9bb429dcefe91c353Tgclocals·33cdeccccebe80329f1fdbee7f5874cbVprebuilts/go/darwin-x86/src/image/format.go"".sniff eH %HD$H;AgH1H$H$H$H$ H$(H$0HHHH$1H$HD$8HT$xHHl$8H9HD$HHLL@HxHpHP Hh(HL$@L$L$L$L$H$H$H$H$H$H$H$H$H$H\$H$H$H$H[ LD$LD$`Hl$Hl$hHT$ HT$pHD$(H\$0H\$XHD$PHH$H H $HKHL$LD$Hl$HT$ \$(thH$H$H$H$H$H$H$H$ H$H$(H$H$0HHD$HHL$@H0HHl$8H9U1H$H$H$H$ H$(H$0HÉ#w "".formats"".formats "".formats "".match  0runtime.morestack_noctxt"".autotmp_0027type."".format"".autotmp_0026_type."".format"".autotmp_0025type.*"".format"".autotmp_0024type.int"".autotmp_0023type.int"".autotmp_0020 type.[]"".format "".errtype.error"".btype.[]uint8"".ftype."".format "".~r1 type."".format"".rtype."".reader&X*QTEh : Tgclocals·99ef9ff0bd07d0e619cc0988c2dabb63Tgclocals·d82314ad8b4d0d463ee994662aedec13Vprebuilts/go/darwin-x86/src/image/format.go"".DecodeeH %H$H;A5H1H$H$1H$H$1H$H$H$H$1H\$`H\$h1H$H$HH$H$HL$H$HD$H$H\$\$ H$H$H$H$rHHL$`HD$hH$H $H$HD$H\$H$H\$H$H\$ H$H\$(H$ HD$0H\$8H$0H$(1H9uJ1H$H$1H$H$HH$HH$HĐHH$H$H\$H$H\$H\$H H $HKHL$H$(HHl$HT$HL$ HD$(H$H$H$H$H$H$H$H$HĐH$H$H$H$H$HH$1H9tH[H-H9HtkHXH9|bHD$XH1H9t HT$XH$HH$HHH$HH\$HH\$HD$HT$@H} HD$@HH$HL$@HD$HD$HHD$PHH$HL$HL$LD$Ht$ Hl$(H$H$H$81HL$L$8H$H$@H$H$HHT$pH$PHL$xH$XHDŽ$HDŽ$H\$PHt,H$8H\$Hl$H-H,$HD$H11f. type."".reader $runtime.assertI2I2 "".sniff"".ErrFormat"".ErrFormattype.io.Reader runtime.convI2I $type.*bufio.Reader >go.itab.*bufio.Reader."".reader $type.*bufio.Reader type."".reader >go.itab.*bufio.Reader."".reader  runtime.typ2Itab "type.bufio.Reader  "runtime.newobject type.[]uint8  "runtime.makeslice  runtime.duffzero"type.bufio.Reader (runtime.typedmemmove 0runtime.morestack_noctxt,"".autotmp_0035type."".reader"".autotmp_0034$type.*bufio.Reader"".autotmp_0033$type.*bufio.Reader"".autotmp_0032"type.bufio.Reader"".autotmp_0029$type.*bufio.Reader"".autotmp_0028type."".readerbufio.r·3type.io.Readerbufio.buf·2type.[]uint8bufio.b·1$type.*bufio.Readerbufio.r·6$type.*bufio.Readerbufio.size·3type.intbufio.rd·2type.io.Readerbufio.rd·2type.io.Reader "".~r1type."".reader "".rrtype."".reader"".rtype.io.Reader"".ftype."".format "".rrtype."".reader "".~r3`type.error "".~r2@type.string "".~r1 type."".Image"".rtype.io.Reader*"4XdJ`H D*Y +.,Tgclocals·693e8a411a45da74e76c619c62a5bb87Tgclocals·a09af47d95804d1a0febde7c2c7293b6Vprebuilts/go/darwin-x86/src/image/format.go"".DecodeConfigeH %H$H;AoH1H$H$H$H$1H$H$1H$H$H$H$1H\$`H\$h1H$H$HH$H$HL$H$HD$H$H\$\$ H$H$H$H$HHL$`HD$hH$H $H$HD$H\$H$H\$H$H\$ H$H\$(H$ H\$0H$(HD$8H$01H9uZ1H$H$H$H$1H$H$HH$HH$HĐHH$H$H\$H$H\$H\$H H $HKHL$H$0HH|$Ht$Hl$ HT$(HL$0HD$8H$H$H$H$H$H$H$H$H$H$HĐH$H$H$H$H$HH$1H9tH[H-H9HtkHXH9|bHD$XH1H9t HT$XH$HH$HHH$HH\$HH\$HD$HT$@H} HD$@HH$HL$@HD$HD$HHD$PHH$HL$HL$LD$Ht$ Hl$(H$H$H$81HL$L$8H$H$@H$H$HHT$pH$PHL$xH$XHDŽ$HDŽ$H\$PHt,H$8H\$Hl$H-H,$HD$H11fl. type."".reader $runtime.assertI2I2 "".sniff"".ErrFormat"".ErrFormattype.io.Reader runtime.convI2I $type.*bufio.Reader >go.itab.*bufio.Reader."".reader $type.*bufio.Reader type."".reader >go.itab.*bufio.Reader."".reader  runtime.typ2Itab "type.bufio.Reader "runtime.newobjecttype.[]uint8 "runtime.makeslice  runtime.duffzero"type.bufio.Reader (runtime.typedmemmove 0runtime.morestack_noctxt,"".autotmp_0045type."".reader"".autotmp_0044$type.*bufio.Reader"".autotmp_0043$type.*bufio.Reader"".autotmp_0042"type.bufio.Reader"".autotmp_0039$type.*bufio.Reader"".autotmp_0038type."".readerbufio.r·3type.io.Readerbufio.buf·2type.[]uint8bufio.b·1$type.*bufio.Readerbufio.r·6$type.*bufio.Readerbufio.size·3type.intbufio.rd·2type.io.Readerbufio.rd·2type.io.Reader "".~r1type."".reader "".rrtype."".reader"".rtype.io.Reader"".ftype."".format "".rrtype."".reader "".~r3type.error "".~r2`type.string "".~r1 type."".Config"".rtype.io.Reader*" ,hdZjX *Y +.2Tgclocals·473289be119113ddb746c224f05da7b4Tgclocals·a09af47d95804d1a0febde7c2c7293b6Vprebuilts/go/darwin-x86/src/image/format.go"".Point.StringeH %HD$H;AH1H$H$H$H$H\$H\$xH\$H$H$H$HL$HD$H$HH\$HD$H\$xH\$H$H\$ HH\$(HD$0HL$hHL$8HD$pHD$@HH\$HHD$PH\$XH$H\$`H$HĈ | strconv.Itoa strconv.Itoago.string."("go.string.","go.string.")" *runtime.concatstring5 0runtime.morestack_noctxt@"".autotmp_0050?type.string"".autotmp_0049type.string "".~r0 type.string"".ptype."".Point&1=(:Tgclocals·64ca935d1a2110a30e2d604686188539Tgclocals·44750c784da4dd430afdd97fea5c405aRprebuilts/go/darwin-x86/src/image/geom.go"".Point.Add`R11HL$Hl$HD$HHl$ HHL$(HD$0` "".~r1@type."".Point"".q type."".Point"".ptype."".Point00 0.Tgclocals·709a14768fab2805a378215c02f0d27fTgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Point.Sub`R11HL$Hl$HD$H)Hl$ H)HL$(HD$0` "".~r1@type."".Point"".q type."".Point"".ptype."".Point00 :.Tgclocals·709a14768fab2805a378215c02f0d27fTgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Point.Mul`LHD$11HL$H\$HHHL$ H\$(P "".~r10type."".Point"".k type.int"".ptype."".Point00 D)Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Point.DivHt$11HD$Ht1HHHHD$HHtHHHHL$ H\$(HHHHP "".~r10type."".Point"".k type.int"".ptype."".PointPP NITgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Point.InzHL$HD$H\$H9"Hl$(H9}H\$ H9Hl$0H9D$8D$8p "".~r1`type.bool"".r "type."".Rectangle"".ptype."".Point@@ X 6Tgclocals·627bbca91efe935c3ac76737d2026ca6Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Point.ModH|$(Ht$0LL$LD$ 1L)L)HD$HT$11L)IM)HtJHHHHH}HLHt)HHHHH}H11LLHL$8HD$@11"".autotmp_0062type."".Point"".autotmp_0059type.int"".autotmp_0058type.int"".autotmp_0056type.int"".autotmp_0055type.int "".~r1`type."".Point"".r "type."".Rectangle"".ptype."".Point2f Tgclocals·895d0569a38a56443b84805daa09d838Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Point.EqH H\$(H\$H\$0H\$HD$8H$HL$@HL$HL$H$HH(H9uHYHhH9D$HH D$HP@ "".autotmp_0064?type."".Point"".autotmp_0063type."".Point "".~r1@type.bool"".q type."".Point"".ptype."".Point@O?@ ` \Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go "".Pt@211HL$HD$HL$HD$ @ "".~r2 type."".Point"".Ytype.int"".Xtype.int  Tgclocals·a8eabfc4a4514ed6b3b0c61e9680e440Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go&"".Rectangle.StringeH %H;aHh1H$H$H\$pH H $HKHL$H\$H\$XH\$H\$`H$H H $HKHL$HL$HD$H$H\$XH\$H\$`H\$HH\$HD$ HL$HHL$(HD$PHD$0H\$8H$H\$@H$Hh ~ "".Point.String "".Point.Stringgo.string."-" *runtime.concatstring3 0runtime.morestack_noctxt`"".autotmp_0069?type.string"".autotmp_0068type.string "".~r0@type.string"".r"type."".Rectangle)>1T=Tgclocals·ae0a20890c9ac6bfbea3383f34532babTgclocals·44750c784da4dd430afdd97fea5c405aRprebuilts/go/darwin-x86/src/image/geom.go"".Rectangle.Dx@&H\$Hl$H)H\$(P "".~r0@type.int"".r"type."".Rectangle   Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Rectangle.Dy@&H\$ Hl$H)H\$(P "".~r0@type.int"".r"type."".Rectangle   Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go""".Rectangle.Size`R11HL$Hl$HD$ H)Hl$H)HL$(HD$0` "".~r0@type."".Point"".r"type."".Rectangle00  Tgclocals·709a14768fab2805a378215c02f0d27fTgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go "".Rectangle.AddHL$(HD$011Ht$HT$H\$HHHHH\$ HHt$8HT$@HL$HH\$P "".~r1`"type."".Rectangle"".p@type."".Point"".r"type."".RectanglePP   Tgclocals·63ba92e6c81d2d7bf2207e4076c8b23cTgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go "".Rectangle.SubHL$(HD$011Ht$HT$H\$H)H)H)HH\$ H)Ht$8HT$@HL$HH\$P "".~r1`"type."".Rectangle"".p@type."".Point"".r"type."".RectanglePP   Tgclocals·63ba92e6c81d2d7bf2207e4076c8b23cTgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go$"".Rectangle.InsetLL$HT$Ht$H|$ HD$(1HL)HHH9}]LHHH?H)HHHH)HHH9}(HHH?H)HHHL$0Ht$8HT$@HD$HHHH)HLHH)"".autotmp_0080type.int"".autotmp_0079type.int"".autotmp_0078type.int"".autotmp_0076type.int"".autotmp_0075type.int"".autotmp_0074type.int"".autotmp_0073type.int "".~r1P"type."".Rectangle"".n@type.int"".r"type."".Rectangle<   Tgclocals·6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go,"".Rectangle.IntersectLT$(LL$0LD$8H|$@Ht$HT$HL$HD$ 1L9}LL9}LL9~LH9~HH9H9Ht$HHT$PHL$XHD$`HH\$HHH\$PHH\$XHH\$` "".ZR "".ZR "".ZR0 "".ZR "".~r1"type."".Rectangle"".s@"type."".Rectangle"".r"type."".Rectangle4* 7Tgclocals·5f32766c99d383f833fae93d4e4d71d1Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go$"".Rectangle.UnionLT$(LL$0LD$8H|$@Ht$HT$HL$HD$ 1H9H9@@tLT$HLL$PLD$XH|$`M9}WI9@@tHt$HHT$PHL$XHD$`L9~LL9~LL9}LH9}HHt$HHT$PHL$XHD$`HHt"".autotmp_0082type.bool "".~r1"type."".Rectangle"".s@"type."".Rectangle"".r"type."".RectangleD* Tgclocals·5f32766c99d383f833fae93d4e4d71d1Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go$"".Rectangle.Empty`RH\$Hl$H9}H\$Hl$ H9D$(D$(P "".~r0@type.bool"".r"type."".Rectangle000Tgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Rectangle.EqH@L|$HLt$PLl$XLd$`L\$hLT$pLL$xH$L|$ Lt$(Ll$0Ld$8L$LT$LL$H|$H\$ HH$HHHHH*H9H^HjH9u{HHHHHH)H9u^HXHiH9<uBM9}4M9<t M9}I9$H@HƄ$HƄ$11먉^M"".autotmp_0092type.bool"".autotmp_0091type.bool"".autotmp_0090type.*"".Point"".autotmp_0089type.*"".Point"".autotmp_0084"type."".Rectangle"".autotmp_0083?"type."".Rectangle "".~r1type.bool"".s@"type."".Rectangle"".r"type."".RectangleJ/Tgclocals·6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go*"".Rectangle.OverlapsLl$Ld$L\$LT$ LL$(LD$0H|$8Ht$@M9}AM9<u'I9})I9<uI9}M9}I9} M9D$HD$HHH"".autotmp_0095type.bool "".~r1type.bool"".s@"type."".Rectangle"".r"type."".Rectangle((  # Tgclocals·6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Rectangle.InLL$LD$H|$Ht$ I9}CI9<tD$HH\$(L9"Hl$8H9H\$0L9Hl$@H9D$HD$HH "".~r1type.bool"".s@"type."".Rectangle"".r"type."".Rectanglepp 3 Tgclocals·6d07ab0a37c299682f1d85b92cb6cfd1Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go$"".Rectangle.CanonHt$HT$HL$ HD$1H9} HHHH9} HHHHT$(HD$0Ht$8HL$@"".autotmp_0098type.int "".~r0@"type."".Rectangle"".r"type."".RectanglePP  Tgclocals·895d0569a38a56443b84805daa09d838Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".Rectangle.AteH %H;aDHh1H$H$1H$H$HD$@H\$pH|$xH|$PH$Ht$XH$HT$`H\$HHL$8H9H9H9H9<t\HH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$HhHH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$Hh1= 0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color$image/color.Opaque runtime.convT2I0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color.image/color.Transparent runtime.convT2I 0runtime.morestack_noctxt "".r?"type."".Rectangle"".p_type."".Point "".~r2`,type.image/color.Color"".yPtype.int"".x@type.int"".r"type."".Rectangle&[ )o\\Tgclocals·895d0569a38a56443b84805daa09d838Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go&"".Rectangle.Bounds`V1H\$H\$(H\$H\$0H\$H\$8H\$ H\$@ "".~r0@"type."".Rectangle"".r"type."".Rectangle00 .Tgclocals·895d0569a38a56443b84805daa09d838Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go."".Rectangle.ColorModel@61HH\$(HH\$0 0image/color.Alpha16Model"0image/color.Alpha16Model` "".~r0@,type.image/color.Model"".r"type."".Rectangle  Tgclocals·709a14768fab2805a378215c02f0d27fTgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go"".RectHt$HT$HL$HD$ 1H9~ HHHH9~ HHH1Ht$(HL$0HT$8HD$@ "".autotmp_0101type.int "".~r4@"type."".Rectangle "".y10type.int "".x1 type.int "".y0type.int "".x0type.intPP  Tgclocals·895d0569a38a56443b84805daa09d838Tgclocals·33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/darwin-x86/src/image/geom.go*"".(*RGBA).ColorModel@61HH\$HH\$ *image/color.RGBAModel"*image/color.RGBAModel0 "".~r0,type.image/color.Model"".ptype.*"".RGBA   Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go""".(*RGBA).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(ÉP "".~r0"type."".Rectangle"".ptype.*"".RGBA@@@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*RGBA).AteH %H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$\$\$<\$\$=\$\$>\$\$?HH$HH\$HH\$H\$IHHH1HQHiH9snH>IHHH1HQHiH9sFH>HHHHH HCHkH9sHDT$ DL$!@t$"\$#    1  $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt@ "".autotmp_0108*type.image/color.RGBA"".autotmp_0106type.int "".~r20*type.image/color.RGBA"".y type.int"".xtype.int"".ptype.*"".RGBA"$A&  5Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go("".(*RGBA).PixOffsetpHL$HY HD$H)HY(Hl$H)HHiHHHHH\$ @ "".~r20type.int"".y type.int"".xtype.int"".ptype.*"".RGBA@@ ;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*RGBA).SeteH %H;aHxL$L$L$1LT$@IMA Iy(H|$PIq0Ht$XIQ8HT$`LD$HL\$8M9I9L9I9<uHxIY LH)IY(LH)HIiHHHHH\$0H$H\$H$H\$HH$HH[ HL$HD$ 1ۈ\$,\$-\$.\$/HH$HL$hHL$HD$pHD$H\$,H\$H$HD$0\$,I\$-I\$.I\$/HIIHH1HQHiI9s}JDIIH1HQHiI9sYJDIIH1HQHiI9s4JD HHHH HCHkH9s H@;Hx    e1mA *image/color.RGBAModel*image/color.RGBAModel*type.image/color.RGBA "runtime.assertI2T $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxtP"".autotmp_0126type.int"".autotmp_0125type.int"".autotmp_0124type.int"".autotmp_0123type.int"".autotmp_0121type.int"".autotmp_0119*type.image/color.RGBA"".autotmp_0118,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA&{=F/_.(!  Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·23e8278e2b69a3a75fa59b23c49ed6adTprebuilts/go/darwin-x86/src/image/image.go$"".(*RGBA).SetRGBAeH %H;a4L\$LT$HL$1HLI LA(Hy0Hq8M9I9M9I9<uHY LH)HY(LH)HiHHHHHHH1HQHiH9H>l$ @+HHH1HQHiH9sdH>l$!@+HHH1HQHiH9s:H>l$"@+HHHH HCHkH9s Hl$#@+    1  $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt@"".autotmp_0137type.int"".autotmp_0136type.int"".autotmp_0135type.int"".autotmp_0134type.int"".autotmp_0132type.int"".c0*type.image/color.RGBA"".y type.int"".xtype.int"".ptype.*"".RGBA@"A&'"#& CTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go&"".(*RGBA).SubImage eH %HD$H;AH1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$hH$H$HD$xHT$`Ht$pH90H9<HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t H$H$H$HĠHH$HH\$HH\$HD$IY H)IY(HH)IiHHHHLMAMIL9ILI)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$H1H9t H$H$H$HĠHH$HH\$HH\$HD$뱉TH$Hl$H$/ HN*   runtime.duffcopy ,"".Rectangle.Intersecttype."".RGBA "runtime.newobject2go.itab.*"".RGBA."".Imagetype.*"".RGBAtype."".Image2go.itab.*"".RGBA."".Image runtime.typ2Itabtype."".RGBA "runtime.newobject6runtime.writeBarrierEnabled 2go.itab.*"".RGBA."".Image type.*"".RGBA type."".Image 2go.itab.*"".RGBA."".Image  runtime.typ2Itab  .runtime.writebarrierptr  $runtime.panicslice  0runtime.morestack_noctxtp"".autotmp_0152type.*uint8"".autotmp_0151type.*"".RGBA"".autotmp_0150type.int"".autotmp_0149type.int"".autotmp_0146?type.*"".RGBA"".autotmp_0144type.*"".RGBA"".autotmp_0143/type.[]uint8"".autotmp_0142type.*"".RGBA"".r"type."".Rectangle "".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".RGBA*R1wK#?MJ -  y.2Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1eTprebuilts/go/darwin-x86/src/image/image.go""".(*RGBA).OpaqueeH %H;aHL$HHy Hq(HQ0HA8H9H9<tD$HHQ Hi(HY0Hi8H)HIHLI(HY8L9~YLH9}1HtXH9HqHiH9sAHtD$HH9|HYLIHYHHIHY8L9D$ 뤉aHA  $runtime.panicindex 0runtime.morestack_noctxt "".autotmp_0162type.int"".autotmp_0161type.int"".autotmp_0158type.int"".autotmp_0157type.int"".autotmp_0156type.int"".autotmp_0155type.int "".~r0type.bool"".ptype.*"".RGBAH-+ "    >Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".NewRGBAeH %HD$H;AQHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=uPH(Hl$0HHhH$Hh H$Hh(H$Hh0H$Hh8H$HĘH$Hl$HD$x type.[]uint8 "runtime.makeslicetype."".RGBA "runtime.newobject6runtime.writeBarrierEnabled .runtime.writebarrierptr 0runtime.morestack_noctxtP"".autotmp_0169?type.*"".RGBA"".autotmp_0168type.int"".autotmp_0166type.int"".autotmp_0165type.int"".r"type."".Rectangle"".r"type."".Rectangle "".buf/type.[]uint8"".wtype.int "".~r1@type.*"".RGBA"".r"type."".Rectangle,?1Q7#Tgclocals·c7e46dd432d705036367d637fd33d432Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0fTprebuilts/go/darwin-x86/src/image/image.go."".(*RGBA64).ColorModel@61HH\$HH\$ .image/color.RGBA64Model".image/color.RGBA64Model0 "".~r0,type.image/color.Model"".ptype.*"".RGBA64   Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go&"".(*RGBA64).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(ÉP "".~r0"type."".Rectangle"".ptype.*"".RGBA64@@@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*RGBA64).AteH %H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$H\$f\$8H\$f\$:H\$f\$HH$HH\$HH\$H\$8H\$HD$ H\$(H\$`H\$0H\$hH@1  *"".(*RGBA64).RGBA64At.type.image/color.RGBA64,type.image/color.ColorXgo.itab.image/color.RGBA64.image/color.Color runtime.convT2I 0runtime.morestack_noctxtP "".autotmp_0170.type.image/color.RGBA64 "".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA64 #  @Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go*"".(*RGBA64).RGBA64At eH %H;a&L\$LT$HL$11HLI LA(Hy0Hq8M9I9M9I9<u1fT$ fT$"fT$$fT$&HY LH)HY(LH)HiHHHH1HHH1HQLAH9eH>fHHHH1HQLAH98H,>fmH IHHH1HQLAH9H>fHHHH1HQLAH9H,>fmH IHHH1HQLAH9H>fHHHH1HQLAH9s~H,>fmH IHHH1HQLAH9sQH>fHHHHH HELEH9s$H,fmH fDd$ fD\$"fDT$$f\$&        1/  $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt@ "".autotmp_0175.type.image/color.RGBA64"".autotmp_0173type.int "".~r20.type.image/color.RGBA64"".y type.int"".xtype.int"".ptype.*"".RGBA64D$A&PQMI  ]Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go,"".(*RGBA64).PixOffsetpHL$HY HD$H)HY(Hl$H)HHiHHHHH\$ @ "".~r20type.int"".y type.int"".xtype.int"".ptype.*"".RGBA64@@ ;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go "".(*RGBA64).Set eH %H;aHxL$L$L$1LT$@IMA Iy(H|$PIq0Ht$XIQ8HT$`LD$HL\$8M9oI9fL9]I9<uHxIY LH)IY(LH)HIiHHHHH\$(H$H\$H$H\$HH$HH[ HL$HD$ 1f\$0f\$2f\$4f\$6HH$HL$hHL$HD$pHD$H\$0H\$H$HD$(H\$0IH\$2HH\$4HH\$6HIIHWHLQHiM9<JLf@+IIHLQHiM9 JD IIHLIHiM9JHf@+IIHLIHiM9J@;IIHHyHiI9J Hf@+IIHHyHiI9s_J @3IIH9HqHiI9s:JHf@+HHHH HCHkH9s H1Hx        1AP .image/color.RGBA64Model.image/color.RGBA64Model.type.image/color.RGBA64 "runtime.assertI2T  $runtime.panicindex  $runtime.panicindex  $runtime.panicindex  $runtime.panicindex  $runtime.panicindex  $runtime.panicindex  $runtime.panicindex  $runtime.panicindex  0runtime.morestack_noctxtP$"".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_0196type.int"".autotmp_0194.type.image/color.RGBA64"".autotmp_0193,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".RGBA64&{^f/_.3!)")%  Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·23e8278e2b69a3a75fa59b23c49ed6adTprebuilts/go/darwin-x86/src/image/image.go,"".(*RGBA64).SetRGBA64eH %H;aL|$Lt$Ll$ Ld$"L\$$LT$&HL$1HLI LA(Hy0Hq8M9I9M9I9<uHY LH)HY(LH)HiHHHHHHH1HQHiH99H>Lf@+HHH1HQHiH9 H>D+HHH1HQHiH9H>Lf@+HHH1HQHiH9H>D#HHH1HQHiH9H>Lf@+HHH1HQHiH9s\H>DHHH1HQHiH9s7H>Lf@+HHHH HCHkH9sHD        1s;  $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt@"".autotmp_0224type.int"".autotmp_0223type.int"".autotmp_0222type.int"".autotmp_0221type.int"".autotmp_0220type.int"".autotmp_0219type.int"".autotmp_0218type.int"".autotmp_0217type.int"".autotmp_0215type.int"".c0.type.image/color.RGBA64"".y type.int"".xtype.int"".ptype.*"".RGBA64`:A&)!)")%! [Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go*"".(*RGBA64).SubImage eH %HD$H;AH1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$hH$H$HD$xHT$`Ht$pH90H9<HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t H$H$H$HĠHH$HH\$HH\$HD$IY H)IY(HH)IiHHHHLMAMIL9ILI)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$H1H9t H$H$H$HĠHH$HH\$HH\$HD$뱉TH$Hl$H$/ HN*   runtime.duffcopy ,"".Rectangle.Intersecttype."".RGBA64 "runtime.newobject6go.itab.*"".RGBA64."".Imagetype.*"".RGBA64type."".Image6go.itab.*"".RGBA64."".Image runtime.typ2Itabtype."".RGBA64 "runtime.newobject6runtime.writeBarrierEnabled 6go.itab.*"".RGBA64."".Image type.*"".RGBA64 type."".Image 6go.itab.*"".RGBA64."".Image  runtime.typ2Itab  .runtime.writebarrierptr  $runtime.panicslice  0runtime.morestack_noctxtp"".autotmp_0243type.*uint8"".autotmp_0242type.*"".RGBA64"".autotmp_0241type.int"".autotmp_0240type.int"".autotmp_0237?type.*"".RGBA64"".autotmp_0235type.*"".RGBA64"".autotmp_0234/type.[]uint8"".autotmp_0233type.*"".RGBA64"".r"type."".Rectangle "".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".RGBA64*R1wK#?MJ -  y.2Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1eTprebuilts/go/darwin-x86/src/image/image.go&"".(*RGBA64).OpaqueeH %H;a/HL$HHy Hq(HQ0HA8H9H9<tD$HHQ Hi(HY0Hi8H)HIHLI(HY8L9LH9}XIIHH9HqHiI9sjJuQIIH9HqHiI9sAJu/HH9|HYLIHYHHIHY8L9D$D$  x&H  $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt "".autotmp_0253type.int"".autotmp_0252type.int"".autotmp_0249type.int"".autotmp_0248type.int"".autotmp_0247type.int"".autotmp_0246type.int "".~r0type.bool"".ptype.*"".RGBA64H-+O    =Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".NewRGBA64eH %HD$H;AQHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=uPH(Hl$0HHhH$Hh H$Hh(H$Hh0H$Hh8H$HĘH$Hl$HD$x type.[]uint8 "runtime.makeslicetype."".RGBA64 "runtime.newobject6runtime.writeBarrierEnabled .runtime.writebarrierptr 0runtime.morestack_noctxtP"".autotmp_0263?type.*"".RGBA64"".autotmp_0262type.int"".autotmp_0260type.int"".autotmp_0259type.int"".r"type."".Rectangle"".r"type."".Rectangle "".pix/type.[]uint8"".wtype.int "".~r1@type.*"".RGBA64"".r"type."".Rectangle,?1Q7#Tgclocals·c7e46dd432d705036367d637fd33d432Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0fTprebuilts/go/darwin-x86/src/image/image.go,"".(*NRGBA).ColorModel@61HH\$HH\$ ,image/color.NRGBAModel",image/color.NRGBAModel0 "".~r0,type.image/color.Model"".ptype.*"".NRGBA   Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go$"".(*NRGBA).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(ÉP "".~r0"type."".Rectangle"".ptype.*"".NRGBA@@@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*NRGBA).AteH %H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$\$\$<\$\$=\$\$>\$\$?HH$HH\$HH\$H\$IHHH1HQHiH9snH>IHHH1HQHiH9sFH>HHHHH HCHkH9sHDT$ DL$!@t$"\$#    1  $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt@ "".autotmp_0269,type.image/color.NRGBA"".autotmp_0267type.int "".~r20,type.image/color.NRGBA"".y type.int"".xtype.int"".ptype.*"".NRGBA"$A&  5Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go*"".(*NRGBA).PixOffsetpHL$HY HD$H)HY(Hl$H)HHiHHHHH\$ @ "".~r20type.int"".y type.int"".xtype.int"".ptype.*"".NRGBA@@ ;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*NRGBA).SeteH %H;aHxL$L$L$1LT$@IMA Iy(H|$PIq0Ht$XIQ8HT$`LD$HL\$8M9I9L9I9<uHxIY LH)IY(LH)HIiHHHHH\$0H$H\$H$H\$HH$HH[ HL$HD$ 1ۈ\$,\$-\$.\$/HH$HL$hHL$HD$pHD$H\$,H\$H$HD$0\$,I\$-I\$.I\$/HIIHH1HQHiI9s}JDIIH1HQHiI9sYJDIIH1HQHiI9s4JD HHHH HCHkH9s H@;Hx    e1mA ,image/color.NRGBAModel,image/color.NRGBAModel,type.image/color.NRGBA "runtime.assertI2T $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxtP"".autotmp_0287type.int"".autotmp_0286type.int"".autotmp_0285type.int"".autotmp_0284type.int"".autotmp_0282type.int"".autotmp_0280,type.image/color.NRGBA"".autotmp_0279,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".NRGBA&{=F/_.(!  Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·23e8278e2b69a3a75fa59b23c49ed6adTprebuilts/go/darwin-x86/src/image/image.go("".(*NRGBA).SetNRGBAeH %H;a4L\$LT$HL$1HLI LA(Hy0Hq8M9I9M9I9<uHY LH)HY(LH)HiHHHHHHH1HQHiH9H>l$ @+HHH1HQHiH9sdH>l$!@+HHH1HQHiH9s:H>l$"@+HHHH HCHkH9s Hl$#@+    1  $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt@"".autotmp_0298type.int"".autotmp_0297type.int"".autotmp_0296type.int"".autotmp_0295type.int"".autotmp_0293type.int"".c0,type.image/color.NRGBA"".y type.int"".xtype.int"".ptype.*"".NRGBA@"A&'"#& CTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go("".(*NRGBA).SubImage eH %HD$H;AH1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$hH$H$HD$xHT$`Ht$pH90H9<HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t H$H$H$HĠHH$HH\$HH\$HD$IY H)IY(HH)IiHHHHLMAMIL9ILI)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$H1H9t H$H$H$HĠHH$HH\$HH\$HD$뱉TH$Hl$H$/ HN*   runtime.duffcopy ,"".Rectangle.Intersecttype."".NRGBA "runtime.newobject4go.itab.*"".NRGBA."".Imagetype.*"".NRGBAtype."".Image4go.itab.*"".NRGBA."".Image runtime.typ2Itabtype."".NRGBA "runtime.newobject6runtime.writeBarrierEnabled 4go.itab.*"".NRGBA."".Image type.*"".NRGBA type."".Image 4go.itab.*"".NRGBA."".Image  runtime.typ2Itab  .runtime.writebarrierptr  $runtime.panicslice  0runtime.morestack_noctxtp"".autotmp_0313type.*uint8"".autotmp_0312type.*"".NRGBA"".autotmp_0311type.int"".autotmp_0310type.int"".autotmp_0307?type.*"".NRGBA"".autotmp_0305type.*"".NRGBA"".autotmp_0304/type.[]uint8"".autotmp_0303type.*"".NRGBA"".r"type."".Rectangle "".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".NRGBA*R1wK#?MJ -  y.2Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1eTprebuilts/go/darwin-x86/src/image/image.go$"".(*NRGBA).OpaqueeH %H;aHL$HHy Hq(HQ0HA8H9H9<tD$HHQ Hi(HY0Hi8H)HIHLI(HY8L9~YLH9}1HtXH9HqHiH9sAHtD$HH9|HYLIHYHHIHY8L9D$ 뤉aHA  $runtime.panicindex 0runtime.morestack_noctxt "".autotmp_0323type.int"".autotmp_0322type.int"".autotmp_0319type.int"".autotmp_0318type.int"".autotmp_0317type.int"".autotmp_0316type.int "".~r0type.bool"".ptype.*"".NRGBAH-+ "    >Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".NewNRGBAeH %HD$H;AQHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=uPH(Hl$0HHhH$Hh H$Hh(H$Hh0H$Hh8H$HĘH$Hl$HD$x type.[]uint8 "runtime.makeslicetype."".NRGBA "runtime.newobject6runtime.writeBarrierEnabled .runtime.writebarrierptr 0runtime.morestack_noctxtP"".autotmp_0330?type.*"".NRGBA"".autotmp_0329type.int"".autotmp_0327type.int"".autotmp_0326type.int"".r"type."".Rectangle"".r"type."".Rectangle "".pix/type.[]uint8"".wtype.int "".~r1@type.*"".NRGBA"".r"type."".Rectangle,?1Q7#Tgclocals·c7e46dd432d705036367d637fd33d432Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0fTprebuilts/go/darwin-x86/src/image/image.go0"".(*NRGBA64).ColorModel@61HH\$HH\$ 0image/color.NRGBA64Model"0image/color.NRGBA64Model0 "".~r0,type.image/color.Model"".p type.*"".NRGBA64   Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go("".(*NRGBA64).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(ÉP "".~r0"type."".Rectangle"".p type.*"".NRGBA64@@@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go "".(*NRGBA64).AteH %H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$H\$f\$8H\$f\$:H\$f\$HH$HH\$HH\$H\$8H\$HD$ H\$(H\$`H\$0H\$hH@1  ."".(*NRGBA64).NRGBA64At0type.image/color.NRGBA64,type.image/color.ColorZgo.itab.image/color.NRGBA64.image/color.Color runtime.convT2I 0runtime.morestack_noctxtP "".autotmp_03310type.image/color.NRGBA64 "".~r20,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".NRGBA64 #  @Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go."".(*NRGBA64).NRGBA64At eH %H;a&L\$LT$HL$11HLI LA(Hy0Hq8M9I9M9I9<u1fT$ fT$"fT$$fT$&HY LH)HY(LH)HiHHHH1HHH1HQLAH9eH>fHHHH1HQLAH98H,>fmH IHHH1HQLAH9H>fHHHH1HQLAH9H,>fmH IHHH1HQLAH9H>fHHHH1HQLAH9s~H,>fmH IHHH1HQLAH9sQH>fHHHHH HELEH9s$H,fmH fDd$ fD\$"fDT$$f\$&        1/  $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt@ "".autotmp_03360type.image/color.NRGBA64"".autotmp_0334type.int "".~r200type.image/color.NRGBA64"".y type.int"".xtype.int"".p type.*"".NRGBA64D$A&PQMI  ]Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go."".(*NRGBA64).PixOffsetpHL$HY HD$H)HY(Hl$H)HHiHHHHH\$ @ "".~r20type.int"".y type.int"".xtype.int"".p type.*"".NRGBA64@@ ;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go""".(*NRGBA64).Set eH %H;aHxL$L$L$1LT$@IMA Iy(H|$PIq0Ht$XIQ8HT$`LD$HL\$8M9oI9fL9]I9<uHxIY LH)IY(LH)HIiHHHHH\$(H$H\$H$H\$HH$HH[ HL$HD$ 1f\$0f\$2f\$4f\$6HH$HL$hHL$HD$pHD$H\$0H\$H$HD$(H\$0IH\$2HH\$4HH\$6HIIHWHLQHiM9<JLf@+IIHLQHiM9 JD IIHLIHiM9JHf@+IIHLIHiM9J@;IIHHyHiI9J Hf@+IIHHyHiI9s_J @3IIH9HqHiI9s:JHf@+HHHH HCHkH9s H1Hx        1AP 0image/color.NRGBA64Model0image/color.NRGBA64Model0type.image/color.NRGBA64 "runtime.assertI2T  $runtime.panicindex  $runtime.panicindex  $runtime.panicindex  $runtime.panicindex  $runtime.panicindex  $runtime.panicindex  $runtime.panicindex  $runtime.panicindex  0runtime.morestack_noctxtP$"".autotmp_0366type.int"".autotmp_0365type.int"".autotmp_0364type.int"".autotmp_0363type.int"".autotmp_0362type.int"".autotmp_0361type.int"".autotmp_0360type.int"".autotmp_0359type.int"".autotmp_0357type.int"".autotmp_03550type.image/color.NRGBA64"".autotmp_0354,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".NRGBA64&{^f/_.3!)")%  Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·23e8278e2b69a3a75fa59b23c49ed6adTprebuilts/go/darwin-x86/src/image/image.go0"".(*NRGBA64).SetNRGBA64eH %H;aL|$Lt$Ll$ Ld$"L\$$LT$&HL$1HLI LA(Hy0Hq8M9I9M9I9<uHY LH)HY(LH)HiHHHHHHH1HQHiH99H>Lf@+HHH1HQHiH9 H>D+HHH1HQHiH9H>Lf@+HHH1HQHiH9H>D#HHH1HQHiH9H>Lf@+HHH1HQHiH9s\H>DHHH1HQHiH9s7H>Lf@+HHHH HCHkH9sHD        1s;  $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt@"".autotmp_0385type.int"".autotmp_0384type.int"".autotmp_0383type.int"".autotmp_0382type.int"".autotmp_0381type.int"".autotmp_0380type.int"".autotmp_0379type.int"".autotmp_0378type.int"".autotmp_0376type.int"".c00type.image/color.NRGBA64"".y type.int"".xtype.int"".p type.*"".NRGBA64`:A&)!)")%! [Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go,"".(*NRGBA64).SubImage eH %HD$H;AH1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$hH$H$HD$xHT$`Ht$pH90H9<HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t H$H$H$HĠHH$HH\$HH\$HD$IY H)IY(HH)IiHHHHLMAMIL9ILI)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$H1H9t H$H$H$HĠHH$HH\$HH\$HD$뱉TH$Hl$H$/ HN*   runtime.duffcopy ,"".Rectangle.Intersecttype."".NRGBA64 "runtime.newobject8go.itab.*"".NRGBA64."".Image type.*"".NRGBA64type."".Image8go.itab.*"".NRGBA64."".Image runtime.typ2Itabtype."".NRGBA64 "runtime.newobject6runtime.writeBarrierEnabled 8go.itab.*"".NRGBA64."".Image  type.*"".NRGBA64 type."".Image 8go.itab.*"".NRGBA64."".Image  runtime.typ2Itab  .runtime.writebarrierptr  $runtime.panicslice  0runtime.morestack_noctxtp"".autotmp_0404type.*uint8"".autotmp_0403 type.*"".NRGBA64"".autotmp_0402type.int"".autotmp_0401type.int"".autotmp_0398? type.*"".NRGBA64"".autotmp_0396 type.*"".NRGBA64"".autotmp_0395/type.[]uint8"".autotmp_0394 type.*"".NRGBA64"".r"type."".Rectangle "".~r1Ptype."".Image"".r"type."".Rectangle"".p type.*"".NRGBA64*R1wK#?MJ -  y.2Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1eTprebuilts/go/darwin-x86/src/image/image.go("".(*NRGBA64).OpaqueeH %H;a/HL$HHy Hq(HQ0HA8H9H9<tD$HHQ Hi(HY0Hi8H)HIHLI(HY8L9LH9}XIIHH9HqHiI9sjJuQIIH9HqHiI9sAJu/HH9|HYLIHYHHIHY8L9D$D$  x&H  $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt "".autotmp_0414type.int"".autotmp_0413type.int"".autotmp_0410type.int"".autotmp_0409type.int"".autotmp_0408type.int"".autotmp_0407type.int "".~r0type.bool"".p type.*"".NRGBA64H-+O    =Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".NewNRGBA64eH %HD$H;AQHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=uPH(Hl$0HHhH$Hh H$Hh(H$Hh0H$Hh8H$HĘH$Hl$HD$x type.[]uint8 "runtime.makeslicetype."".NRGBA64 "runtime.newobject6runtime.writeBarrierEnabled .runtime.writebarrierptr 0runtime.morestack_noctxtP"".autotmp_0424? type.*"".NRGBA64"".autotmp_0423type.int"".autotmp_0421type.int"".autotmp_0420type.int"".r"type."".Rectangle"".r"type."".Rectangle "".pix/type.[]uint8"".wtype.int "".~r1@ type.*"".NRGBA64"".r"type."".Rectangle,?1Q7#Tgclocals·c7e46dd432d705036367d637fd33d432Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0fTprebuilts/go/darwin-x86/src/image/image.go,"".(*Alpha).ColorModel@61HH\$HH\$ ,image/color.AlphaModel",image/color.AlphaModel0 "".~r0,type.image/color.Model"".ptype.*"".Alpha   Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go$"".(*Alpha).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(ÉP "".~r0"type."".Rectangle"".ptype.*"".Alpha@@@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*Alpha).AteH %H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$\$\$?HH$HH\$HH\$H\$?H\$HD$ H\$(H\$`H\$0H\$hH@T  &"".(*Alpha).AlphaAt,type.image/color.Alpha,type.image/color.ColorVgo.itab.image/color.Alpha.image/color.Color runtime.convT2I 0runtime.morestack_noctxtP "".autotmp_0425,type.image/color.Alpha "".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Alpha# @pTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go&"".(*Alpha).AlphaAteH %H;aL\$LT$LL$11ItxMA Iy(Iq0IQ8M9_I9}ZL9UI9<u1ۈ\$ IY LH)IY(LH)IiHH1I IAIiH9s H\$  1AM  $runtime.panicindex 0runtime.morestack_noctxt@ "".autotmp_0430,type.image/color.Alpha"".autotmp_0428type.int "".~r20,type.image/color.Alpha"".y type.int"".xtype.int"".ptype.*"".Alpha $1%  'Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go*"".(*Alpha).PixOffsetbHL$HY HD$H)HY(Hl$H)HHiHHH\$ @ "".~r20type.int"".y type.int"".xtype.int"".ptype.*"".Alpha@@ ;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*Alpha).SeteH %H;aeHxL$L$L$1LT$@I0MA Iy(H|$PIq0Ht$XIQ8HT$`LD$HL\$8M9I9L9I9<uHxIY LH)IY(LH)HIiHHH\$0H$H\$H$H\$HH$HH[ HL$HD$ 1ۈ\$/HH$HL$hHL$HD$pHD$H\$/H\$H$Ht-H HCHkHl$0H9sH)l$/@+Hx 1A~ ,image/color.AlphaModel,image/color.AlphaModel,type.image/color.Alpha "runtime.assertI2T $runtime.panicindex 0runtime.morestack_noctxtP"".autotmp_0436type.int"".autotmp_0434,type.image/color.Alpha"".autotmp_0433,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Alpha&{2*/_' Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·23e8278e2b69a3a75fa59b23c49ed6adTprebuilts/go/darwin-x86/src/image/image.go("".(*Alpha).SetAlphaeH %H;aL\$LT$LL$1ItqMA Iy(Iq0IQ8M9XI9}SL9NI9<uIY LH)IY(LH)IiHHI IAIiH9s Hl$ @+ 1AV  $runtime.panicindex 0runtime.morestack_noctxt@ "".autotmp_0440type.int"".c0,type.image/color.Alpha"".y type.int"".xtype.int"".ptype.*"".Alpha("1   Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go("".(*Alpha).SubImage eH %HD$H;A H1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$hH$H$HD$xHT$`Ht$pH9)H9<HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t H$H$H$HĠHH$HH\$HH\$HD$IY H)IY(HH)IiHHLMAMIL9ILI)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$H1H9t H$H$H$HĠHH$HH\$HH\$HD$뱉TH$Hl$H$/ HU*   runtime.duffcopy ,"".Rectangle.Intersecttype."".Alpha "runtime.newobject4go.itab.*"".Alpha."".Imagetype.*"".Alphatype."".Image4go.itab.*"".Alpha."".Image runtime.typ2Itabtype."".Alpha "runtime.newobject6runtime.writeBarrierEnabled 4go.itab.*"".Alpha."".Image type.*"".Alpha type."".Image 4go.itab.*"".Alpha."".Image  runtime.typ2Itab  .runtime.writebarrierptr  $runtime.panicslice  0runtime.morestack_noctxtp"".autotmp_0453type.*uint8"".autotmp_0452type.*"".Alpha"".autotmp_0451type.int"".autotmp_0450type.int"".autotmp_0447?type.*"".Alpha"".autotmp_0445type.*"".Alpha"".autotmp_0444/type.[]uint8"".autotmp_0443type.*"".Alpha"".r"type."".Rectangle "".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".Alpha(zR1wK?MJ -  r.)Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1eTprebuilts/go/darwin-x86/src/image/image.go$"".(*Alpha).OpaqueeH %H;aHL$HHy Hq(HQ0HA8H9H9<tD$HHQ Hi(HY0Hi8H)E1HLI(HY8L9~XLH9}0HtWH9HqHiH9s@HtD$HH9|HYLIHYHHIHY8L9D$ 륉jHJ$  $runtime.panicindex 0runtime.morestack_noctxt "".autotmp_0462type.int"".autotmp_0459type.int"".autotmp_0458type.int"".autotmp_0457type.int"".autotmp_0456type.int "".~r0type.bool"".ptype.*"".AlphaH-# "    7Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".NewAlphaeH %HD$H;AIHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=uLH(Hl$0HhH$Hh H$Hh(H$Hh0H$Hh8H$HĘH$Hl$HD$x type.[]uint8 "runtime.makeslicetype."".Alpha "runtime.newobject6runtime.writeBarrierEnabled .runtime.writebarrierptr 0runtime.morestack_noctxtP"".autotmp_0469?type.*"".Alpha"".autotmp_0468type.int"".autotmp_0466type.int"".autotmp_0465type.int"".r"type."".Rectangle"".r"type."".Rectangle "".pix/type.[]uint8"".wtype.int "".~r1@type.*"".Alpha"".r"type."".Rectangle$?1M7Tgclocals·c7e46dd432d705036367d637fd33d432Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0fTprebuilts/go/darwin-x86/src/image/image.go0"".(*Alpha16).ColorModel@61HH\$HH\$ 0image/color.Alpha16Model"0image/color.Alpha16Model0 "".~r0,type.image/color.Model"".p type.*"".Alpha16   Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go("".(*Alpha16).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(ÉP "".~r0"type."".Rectangle"".p type.*"".Alpha16@@ @Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go "".(*Alpha16).AteH %H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$H\$f\$>HH$HH\$HH\$H\$>H\$HD$ H\$(H\$`H\$0H\$hH@R  ."".(*Alpha16).Alpha16At0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color runtime.convT2I 0runtime.morestack_noctxtP "".autotmp_04700type.image/color.Alpha16 "".~r20,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".Alpha16  #  @pTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go."".(*Alpha16).Alpha16AteH %H;aL\$LT$HL$11HLI LA(Hy0Hq8M9I9M9I9<u1f\$ HY LH)HY(LH)HiHHHH1HHH1HQLAH9s>H>fHHHHH HELEH9sH,fmH f\$   1j2  $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt@ "".autotmp_04750type.image/color.Alpha16"".autotmp_0473type.int "".~r200type.image/color.Alpha16"".y type.int"".xtype.int"".p type.*"".Alpha16 $A%^ .Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go."".(*Alpha16).PixOffsetnHL$HY HD$H)HY(Hl$H)HHiHHHHH\$ @ "".~r20type.int"".y type.int"".xtype.int"".p type.*"".Alpha16@@ ;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go""".(*Alpha16).SeteH %H;aHxL$L$L$1LT$@ImMA Iy(H|$PIq0Ht$XIQ8HT$`LD$HL\$8M94I9+L9"I9<uHxIY LH)IY(LH)HIiHHHHH\$0H$H\$H$H\$HH$HH[ HL$HD$ 1f\$.HH$HL$hHL$HD$pHD$H\$.H\$L$Ht$0H\$.HHHItMIIIIiH9s6H2Hf@+HHIIIIiH9s H2Hx  A1AA 0image/color.Alpha16Model0image/color.Alpha16Model0type.image/color.Alpha16 "runtime.assertI2T $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxtP"".autotmp_0487type.int"".autotmp_0486type.int"".autotmp_0484type.int"".autotmp_04820type.image/color.Alpha16"".autotmp_0481,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".p type.*"".Alpha16&{-6 /_-+  Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·23e8278e2b69a3a75fa59b23c49ed6adTprebuilts/go/darwin-x86/src/image/image.go0"".(*Alpha16).SetAlpha16eH %H;aLd$L\$LT$ HL$1HLI LA(Hy0Hq8M9I9M9I9<uHY LH)HY(LH)HiHHHHHHH1HQHiH9s6H>Lf@+HHHH HCHkH9sHD  1{C  $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt@"".autotmp_0494type.int"".autotmp_0493type.int"".autotmp_0491type.int"".c00type.image/color.Alpha16"".y type.int"".xtype.int"".p type.*"".Alpha160 (A%%  +Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go,"".(*Alpha16).SubImage eH %HD$H;AH1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$hH$H$HD$xHT$`Ht$pH9/H9<HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t H$H$H$HĠHH$HH\$HH\$HD$IY H)IY(HH)IiHHHHLMAMIL9ILI)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$H1H9t H$H$H$HĠHH$HH\$HH\$HD$뱉TH$Hl$H$/ HO*   runtime.duffcopy ,"".Rectangle.Intersecttype."".Alpha16 "runtime.newobject8go.itab.*"".Alpha16."".Image type.*"".Alpha16type."".Image8go.itab.*"".Alpha16."".Image runtime.typ2Itabtype."".Alpha16 "runtime.newobject6runtime.writeBarrierEnabled 8go.itab.*"".Alpha16."".Image  type.*"".Alpha16 type."".Image 8go.itab.*"".Alpha16."".Image  runtime.typ2Itab  .runtime.writebarrierptr  $runtime.panicslice  0runtime.morestack_noctxtp"".autotmp_0507type.*uint8"".autotmp_0506 type.*"".Alpha16"".autotmp_0505type.int"".autotmp_0504type.int"".autotmp_0501? type.*"".Alpha16"".autotmp_0499 type.*"".Alpha16"".autotmp_0498/type.[]uint8"".autotmp_0497 type.*"".Alpha16"".r"type."".Rectangle "".~r1Ptype."".Image"".r"type."".Rectangle"".p type.*"".Alpha16*R 1wK"?MJ -  x.3Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1eTprebuilts/go/darwin-x86/src/image/image.go("".(*Alpha16).OpaqueeH %H;a*HL$HHy Hq(HQ0HA8H9H9<tD$HHQ Hi(HY0Hi8H)HE1HLI(HY8L9LH9}XIIHH9HqHiI9sjJuQIIH9HqHiI9sAJu/HH9|HYLIHYHHIHY8L9D$D$  x+H   $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt "".autotmp_0517type.int"".autotmp_0516type.int"".autotmp_0513type.int"".autotmp_0512type.int"".autotmp_0511type.int"".autotmp_0510type.int "".~r0type.bool"".p type.*"".Alpha16H -&O    BTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".NewAlpha16eH %HD$H;AOHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=uOH(Hl$0HHhH$Hh H$Hh(H$Hh0H$Hh8H$HĘH$Hl$HD$x type.[]uint8 "runtime.makeslicetype."".Alpha16 "runtime.newobject6runtime.writeBarrierEnabled .runtime.writebarrierptr 0runtime.morestack_noctxtP"".autotmp_0527? type.*"".Alpha16"".autotmp_0526type.int"".autotmp_0524type.int"".autotmp_0523type.int"".r"type."".Rectangle"".r"type."".Rectangle "".pix/type.[]uint8"".wtype.int "".~r1@ type.*"".Alpha16"".r"type."".Rectangle. ?1P7%Tgclocals·c7e46dd432d705036367d637fd33d432Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0fTprebuilts/go/darwin-x86/src/image/image.go*"".(*Gray).ColorModel@61HH\$HH\$ *image/color.GrayModel"*image/color.GrayModel0 "".~r0,type.image/color.Model"".ptype.*"".Gray   Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go""".(*Gray).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(ÉP "".~r0"type."".Rectangle"".ptype.*"".Gray@@ @Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*Gray).AteH %H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$\$\$?HH$HH\$HH\$H\$?H\$HD$ H\$(H\$`H\$0H\$hH@T  """.(*Gray).GrayAt*type.image/color.Gray,type.image/color.ColorTgo.itab.image/color.Gray.image/color.Color runtime.convT2I 0runtime.morestack_noctxtP "".autotmp_0528*type.image/color.Gray "".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray # @pTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go""".(*Gray).GrayAteH %H;aL\$LT$LL$11ItxMA Iy(Iq0IQ8M9_I9}ZL9UI9<u1ۈ\$ IY LH)IY(LH)IiHH1I IAIiH9s H\$  1AM  $runtime.panicindex 0runtime.morestack_noctxt@ "".autotmp_0533*type.image/color.Gray"".autotmp_0531type.int "".~r20*type.image/color.Gray"".y type.int"".xtype.int"".ptype.*"".Gray $1%  'Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go("".(*Gray).PixOffsetbHL$HY HD$H)HY(Hl$H)HHiHHH\$ @ "".~r20type.int"".y type.int"".xtype.int"".ptype.*"".Gray@@ ;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*Gray).SeteH %H;aeHxL$L$L$1LT$@I0MA Iy(H|$PIq0Ht$XIQ8HT$`LD$HL\$8M9I9L9I9<uHxIY LH)IY(LH)HIiHHH\$0H$H\$H$H\$HH$HH[ HL$HD$ 1ۈ\$/HH$HL$hHL$HD$pHD$H\$/H\$H$Ht-H HCHkHl$0H9sH)l$/@+Hx 1A~ *image/color.GrayModel*image/color.GrayModel*type.image/color.Gray "runtime.assertI2T $runtime.panicindex 0runtime.morestack_noctxtP"".autotmp_0539type.int"".autotmp_0537*type.image/color.Gray"".autotmp_0536,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray&{2* /_' Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·23e8278e2b69a3a75fa59b23c49ed6adTprebuilts/go/darwin-x86/src/image/image.go$"".(*Gray).SetGrayeH %H;aL\$LT$LL$1ItqMA Iy(Iq0IQ8M9XI9}SL9NI9<uIY LH)IY(LH)IiHHI IAIiH9s Hl$ @+ 1AV  $runtime.panicindex 0runtime.morestack_noctxt@ "".autotmp_0543type.int"".c0*type.image/color.Gray"".y type.int"".xtype.int"".ptype.*"".Gray( "1   Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go&"".(*Gray).SubImage eH %HD$H;A H1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$hH$H$HD$xHT$`Ht$pH9)H9<HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t H$H$H$HĠHH$HH\$HH\$HD$IY H)IY(HH)IiHHLMAMIL9ILI)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$H1H9t H$H$H$HĠHH$HH\$HH\$HD$뱉TH$Hl$H$/ HU*   runtime.duffcopy ,"".Rectangle.Intersecttype."".Gray "runtime.newobject2go.itab.*"".Gray."".Imagetype.*"".Graytype."".Image2go.itab.*"".Gray."".Image runtime.typ2Itabtype."".Gray "runtime.newobject6runtime.writeBarrierEnabled 2go.itab.*"".Gray."".Image type.*"".Gray type."".Image 2go.itab.*"".Gray."".Image  runtime.typ2Itab  .runtime.writebarrierptr  $runtime.panicslice  0runtime.morestack_noctxtp"".autotmp_0556type.*uint8"".autotmp_0555type.*"".Gray"".autotmp_0554type.int"".autotmp_0553type.int"".autotmp_0550?type.*"".Gray"".autotmp_0548type.*"".Gray"".autotmp_0547/type.[]uint8"".autotmp_0546type.*"".Gray"".r"type."".Rectangle "".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".Gray(zR 1wK?MJ -  r.)Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1eTprebuilts/go/darwin-x86/src/image/image.go""".(*Gray).Opaque D$  "".~r0type.bool"".ptype.*"".Gray Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".NewGrayeH %HD$H;AIHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=uLH(Hl$0HhH$Hh H$Hh(H$Hh0H$Hh8H$HĘH$Hl$HD$x type.[]uint8 "runtime.makeslicetype."".Gray "runtime.newobject6runtime.writeBarrierEnabled .runtime.writebarrierptr 0runtime.morestack_noctxtP"".autotmp_0564?type.*"".Gray"".autotmp_0563type.int"".autotmp_0561type.int"".autotmp_0560type.int"".r"type."".Rectangle"".r"type."".Rectangle "".pix/type.[]uint8"".wtype.int "".~r1@type.*"".Gray"".r"type."".Rectangle$ ?1M7Tgclocals·c7e46dd432d705036367d637fd33d432Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0fTprebuilts/go/darwin-x86/src/image/image.go."".(*Gray16).ColorModel@61HH\$HH\$ .image/color.Gray16Model".image/color.Gray16Model0 "".~r0,type.image/color.Model"".ptype.*"".Gray16   Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go&"".(*Gray16).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(ÉP "".~r0"type."".Rectangle"".ptype.*"".Gray16@@ @Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*Gray16).AteH %H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$H\$f\$>HH$HH\$HH\$H\$>H\$HD$ H\$(H\$`H\$0H\$hH@R  *"".(*Gray16).Gray16At.type.image/color.Gray16,type.image/color.ColorXgo.itab.image/color.Gray16.image/color.Color runtime.convT2I 0runtime.morestack_noctxtP "".autotmp_0565.type.image/color.Gray16 "".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray16  #  @pTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go*"".(*Gray16).Gray16AteH %H;aL\$LT$HL$11HLI LA(Hy0Hq8M9I9M9I9<u1f\$ HY LH)HY(LH)HiHHHH1HHH1HQLAH9s>H>fHHHHH HELEH9sH,fmH f\$   1j2  $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt@ "".autotmp_0570.type.image/color.Gray16"".autotmp_0568type.int "".~r20.type.image/color.Gray16"".y type.int"".xtype.int"".ptype.*"".Gray16 $A%^ .Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go,"".(*Gray16).PixOffsetnHL$HY HD$H)HY(Hl$H)HHiHHHHH\$ @ "".~r20type.int"".y type.int"".xtype.int"".ptype.*"".Gray16@@ ;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go "".(*Gray16).SeteH %H;aHxL$L$L$1LT$@ImMA Iy(H|$PIq0Ht$XIQ8HT$`LD$HL\$8M94I9+L9"I9<uHxIY LH)IY(LH)HIiHHHHH\$0H$H\$H$H\$HH$HH[ HL$HD$ 1f\$.HH$HL$hHL$HD$pHD$H\$.H\$L$Ht$0H\$.HHHItMIIIIiH9s6H2Hf@+HHIIIIiH9s H2Hx  A1AA .image/color.Gray16Model.image/color.Gray16Model.type.image/color.Gray16 "runtime.assertI2T $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxtP"".autotmp_0582type.int"".autotmp_0581type.int"".autotmp_0579type.int"".autotmp_0577.type.image/color.Gray16"".autotmp_0576,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".Gray16&{-6 /_-+  Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·23e8278e2b69a3a75fa59b23c49ed6adTprebuilts/go/darwin-x86/src/image/image.go,"".(*Gray16).SetGray16eH %H;aLd$L\$LT$ HL$1HLI LA(Hy0Hq8M9I9M9I9<uHY LH)HY(LH)HiHHHHHHH1HQHiH9s6H>Lf@+HHHH HCHkH9sHD  1{C  $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt@"".autotmp_0589type.int"".autotmp_0588type.int"".autotmp_0586type.int"".c0.type.image/color.Gray16"".y type.int"".xtype.int"".ptype.*"".Gray160 (A%%  +Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go*"".(*Gray16).SubImage eH %HD$H;AH1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$hH$H$HD$xHT$`Ht$pH9/H9<HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t H$H$H$HĠHH$HH\$HH\$HD$IY H)IY(HH)IiHHHHLMAMIL9ILI)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$H1H9t H$H$H$HĠHH$HH\$HH\$HD$뱉TH$Hl$H$/ HO*   runtime.duffcopy ,"".Rectangle.Intersecttype."".Gray16 "runtime.newobject6go.itab.*"".Gray16."".Imagetype.*"".Gray16type."".Image6go.itab.*"".Gray16."".Image runtime.typ2Itabtype."".Gray16 "runtime.newobject6runtime.writeBarrierEnabled 6go.itab.*"".Gray16."".Image type.*"".Gray16 type."".Image 6go.itab.*"".Gray16."".Image  runtime.typ2Itab  .runtime.writebarrierptr  $runtime.panicslice  0runtime.morestack_noctxtp"".autotmp_0602type.*uint8"".autotmp_0601type.*"".Gray16"".autotmp_0600type.int"".autotmp_0599type.int"".autotmp_0596?type.*"".Gray16"".autotmp_0594type.*"".Gray16"".autotmp_0593/type.[]uint8"".autotmp_0592type.*"".Gray16"".r"type."".Rectangle "".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".Gray16*R 1wK"?MJ -  x.3Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1eTprebuilts/go/darwin-x86/src/image/image.go&"".(*Gray16).Opaque D$  "".~r0type.bool"".ptype.*"".Gray16 Tgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".NewGray16eH %HD$H;AOHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=uOH(Hl$0HHhH$Hh H$Hh(H$Hh0H$Hh8H$HĘH$Hl$HD$x type.[]uint8 "runtime.makeslicetype."".Gray16 "runtime.newobject6runtime.writeBarrierEnabled .runtime.writebarrierptr 0runtime.morestack_noctxtP"".autotmp_0610?type.*"".Gray16"".autotmp_0609type.int"".autotmp_0607type.int"".autotmp_0606type.int"".r"type."".Rectangle"".r"type."".Rectangle "".pix/type.[]uint8"".wtype.int "".~r1@type.*"".Gray16"".r"type."".Rectangle. ?1P7%Tgclocals·c7e46dd432d705036367d637fd33d432Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0fTprebuilts/go/darwin-x86/src/image/image.go*"".(*CMYK).ColorModel@61HH\$HH\$ *image/color.CMYKModel"*image/color.CMYKModel0 "".~r0,type.image/color.Model"".ptype.*"".CMYK   Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go""".(*CMYK).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(ÉP "".~r0"type."".Rectangle"".ptype.*"".CMYK@@ @Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*CMYK).AteH %H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$\$\$<\$\$=\$\$>\$\$?HH$HH\$HH\$H\$IHHH1HQHiH9snH>IHHH1HQHiH9sFH>HHHHH HCHkH9sHDT$ DL$!@t$"\$#    1  $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt@ "".autotmp_0616*type.image/color.CMYK"".autotmp_0614type.int "".~r20*type.image/color.CMYK"".y type.int"".xtype.int"".ptype.*"".CMYK" $A&  5Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go("".(*CMYK).PixOffsetpHL$HY HD$H)HY(Hl$H)HHiHHHHH\$ @ "".~r20type.int"".y type.int"".xtype.int"".ptype.*"".CMYK@@ ;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".(*CMYK).SeteH %H;aHxL$L$L$1LT$@IMA Iy(H|$PIq0Ht$XIQ8HT$`LD$HL\$8M9I9L9I9<uHxIY LH)IY(LH)HIiHHHHH\$0H$H\$H$H\$HH$HH[ HL$HD$ 1ۈ\$,\$-\$.\$/HH$HL$hHL$HD$pHD$H\$,H\$H$HD$0\$,I\$-I\$.I\$/HIIHH1HQHiI9s}JDIIH1HQHiI9sYJDIIH1HQHiI9s4JD HHHH HCHkH9s H@;Hx    e1mA *image/color.CMYKModel*image/color.CMYKModel*type.image/color.CMYK "runtime.assertI2T $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxtP"".autotmp_0634type.int"".autotmp_0633type.int"".autotmp_0632type.int"".autotmp_0631type.int"".autotmp_0629type.int"".autotmp_0627*type.image/color.CMYK"".autotmp_0626,type.image/color.Color"".r_"type."".Rectangle"".ptype."".Point"".itype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".CMYK&{=F /_.(!  Tgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·23e8278e2b69a3a75fa59b23c49ed6adTprebuilts/go/darwin-x86/src/image/image.go$"".(*CMYK).SetCMYKeH %H;a4L\$LT$HL$1HLI LA(Hy0Hq8M9I9M9I9<uHY LH)HY(LH)HiHHHHHHH1HQHiH9H>l$ @+HHH1HQHiH9sdH>l$!@+HHH1HQHiH9s:H>l$"@+HHHH HCHkH9s Hl$#@+    1  $runtime.panicindex $runtime.panicindex $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxt@"".autotmp_0645type.int"".autotmp_0644type.int"".autotmp_0643type.int"".autotmp_0642type.int"".autotmp_0640type.int"".c0*type.image/color.CMYK"".y type.int"".xtype.int"".ptype.*"".CMYK@ "A&'"#& CTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go&"".(*CMYK).SubImage eH %HD$H;AH1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$hH$H$HD$xHT$`Ht$pH90H9<HH$HD$1H(HhHhHhHh Hh(Hh0Hh8H$H1H9t H$H$H$HĠHH$HH\$HH\$HD$IY H)IY(HH)IiHHHHLMAMIL9ILI)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$H1H9t H$H$H$HĠHH$HH\$HH\$HD$뱉TH$Hl$H$/ HN*   runtime.duffcopy ,"".Rectangle.Intersecttype."".CMYK "runtime.newobject2go.itab.*"".CMYK."".Imagetype.*"".CMYKtype."".Image2go.itab.*"".CMYK."".Image runtime.typ2Itabtype."".CMYK "runtime.newobject6runtime.writeBarrierEnabled 2go.itab.*"".CMYK."".Image type.*"".CMYK type."".Image 2go.itab.*"".CMYK."".Image  runtime.typ2Itab  .runtime.writebarrierptr  $runtime.panicslice  0runtime.morestack_noctxtp"".autotmp_0660type.*uint8"".autotmp_0659type.*"".CMYK"".autotmp_0658type.int"".autotmp_0657type.int"".autotmp_0654?type.*"".CMYK"".autotmp_0652type.*"".CMYK"".autotmp_0651/type.[]uint8"".autotmp_0650type.*"".CMYK"".r"type."".Rectangle "".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".CMYK*R 1wK#?MJ -  y.2Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1eTprebuilts/go/darwin-x86/src/image/image.go""".(*CMYK).Opaque D$  "".~r0type.bool"".ptype.*"".CMYKTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go"".NewCMYKeH %HD$H;AQHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=uPH(Hl$0HHhH$Hh H$Hh(H$Hh0H$Hh8H$HĘH$Hl$HD$x type.[]uint8 "runtime.makeslicetype."".CMYK "runtime.newobject6runtime.writeBarrierEnabled .runtime.writebarrierptr 0runtime.morestack_noctxtP"".autotmp_0668?type.*"".CMYK"".autotmp_0667type.int"".autotmp_0665type.int"".autotmp_0664type.int"".r"type."".Rectangle"".r"type."".Rectangle "".buf/type.[]uint8"".wtype.int "".~r1@type.*"".CMYK"".r"type."".Rectangle,?1Q7#Tgclocals·c7e46dd432d705036367d637fd33d432Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0fTprebuilts/go/darwin-x86/src/image/image.go2"".(*Paletted).ColorModeleH %H;av{H81H\$HH\$PHH$HH\$HH\$H\$@H\$H|$t-HD$@HD$ H\$(H\$HH\$0H\$PH8É%l D0type.image/color.PaletteZ,type.image/color.ModelrZgo.itab.image/color.Palette.image/color.Model runtime.convT2I 0runtime.morestack_noctxt0p "".~r0,type.image/color.Model"".p"type.*"".Palettedpmop  c=Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go*"".(*Paletted).Boundsl1H\$Ht%Hk Hl$Hk(Hl$Hk0Hl$ Hk8Hl$(ÉP "".~r0"type."".Rectangle"".p"type.*"".Paletted@@@Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go""".(*Paletted).AteH %H;aL\$LT$HD$1HhHHu 1H\$ H\$(1LH L@(Hx0Hp8M9I9M9I9u8HHt+HH@H@HHkPHvH)Hl$ HiHl$( HX LH)HX(LH)HHhHHHHHHhH9sDH+HHHP@H@HHkPHH9sHHH+Hl$ HkHl$(  1?  $runtime.panicindex $runtime.panicindex $runtime.panicindex 0runtime.morestack_noctxtP "".autotmp_0672type.int"".autotmp_0671type.int "".~r20,type.image/color.Color"".y type.int"".xtype.int"".p"type.*"".Paletted($  88"[Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go0"".(*Paletted).PixOffsetbHL$HY HD$H)HY(Hl$H)HHiHHH\$ @ "".~r20type.int"".y type.int"".xtype.int"".p"type.*"".Paletted@@ ;Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go$"".(*Paletted).SeteH %H;a&HhL\$xL$H|$p1LT$@HLO LG(LD$PHw0Ht$XHW8HT$`LL$HL\$8M9I9M9I9<uHhH_ LH)H_(LH)HHoHHH\$0H_@H H $HKHL$HKHL$H$H\$H$H\$ HT$(H\$pHt'H HCHkHl$0H9s H)Hh 1R  2image/color.Palette.Index $runtime.panicindex 0runtime.morestack_noctxtP"".autotmp_0680type.int"".autotmp_0678type.int"".r?"type."".Rectangle"".p_type."".Point"".iotype.int"".c0,type.image/color.Color"".y type.int"".xtype.int"".p"type.*"".Paletted&u0()_'g  eTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go6"".(*Paletted).ColorIndexAteH %H;aL\$LT$LL$1ItvMA Iy(Iq0IQ8M9]I9}XL9SI9<uD$ IY LH)IY(LH)IiHHI IAIiH9s H+@l$  1AQ  $runtime.panicindex 0runtime.morestack_noctxt@ "".autotmp_0684type.int "".~r20type.uint8"".y type.int"".xtype.int"".p"type.*"".Paletted "1$   Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go8"".(*Paletted).SetColorIndexeH %H;aL\$LT$LL$1ItqMA Iy(Iq0IQ8M9XI9}SL9NI9<uIY LH)IY(LH)IiHHI IAIiH9s Hl$ @+ 1AV  $runtime.panicindex 0runtime.morestack_noctxt@ "".autotmp_0688type.int"".index0type.uint8"".y type.int"".xtype.int"".p"type.*"".Paletted("1   Tgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/image.go."".(*Paletted).SubImageeH %HD$H;AH1H$H$H$H$H$H\$H$H\$H$H\$H$HH^ H|$ HH$L\$@HT$HLl$PLd$XL$H$HT$hL$L$Ld$xL\$`Ll$pM96L9<HH$H|$HH1HH$HHk@H$HLA@LD$Hl$H-H,$H$H$H1H9t H$H$H$HHH$HH\$HH\$HD$뱉nQ-HH_ LH)H_(HH)HoHHLGLOL9LI)I)ItML$L$L$HH_ HHL\$ HT$(Ll$0Ld$8H\$@H$H\$HH$H\$PH$H\$XH$HH$HD$H$H$HhH$HhH$=H(HL$IhHhH$Hh H$Hh(H$Hh0H$Hh8H$HHk@L@@LD$Hl$H-H,$H$H$H1H9t H$H$H$HHH$HH\$HH\$HD$뱉jH$Hl$H$< HH8   runtime.duffcopy ,"".Rectangle.Intersect type."".Paletted "runtime.newobject  runtime.duffzero0type.image/color.Palette (runtime.typedmemmove:go.itab.*"".Paletted."".Image"type.*"".Palettedtype."".Image:go.itab.*"".Paletted."".Image runtime.typ2Itab   runtime.duffcopy  ,"".Rectangle.Intersect  type."".Paletted  "runtime.newobject 6runtime.writeBarrierEnabled 0type.image/color.Palette  (runtime.typedmemmove:go.itab.*"".Paletted."".Image"type.*"".Palettedtype."".Image:go.itab.*"".Paletted."".Image runtime.typ2Itab .runtime.writebarrierptr $runtime.panicslice 0runtime.morestack_noctxtp"".autotmp_0702type.*uint8"".autotmp_0701"type.*"".Paletted"".autotmp_0700type.int"".autotmp_0699type.int"".autotmp_0696?"type.*"".Paletted"".autotmp_0694"type.*"".Paletted"".autotmp_0693"type."".Rectangle"".autotmp_0692/type.[]uint8"".autotmp_0691"type.*"".Paletted"".r"type."".Rectangle "".~r1Ptype."".Image"".r"type."".Rectangle"".p"type.*"".Paletted*n1wK -"<fMJR - $,Tgclocals·0c0c2c2ec738a77c7171e28b67bc998cTgclocals·721dda3334c021125365f71a78d0ed1eTprebuilts/go/darwin-x86/src/image/image.go*"".(*Paletted).OpaqueeH %H$H;AHH$H|$H1HHJ Hj(Hl$0LZ0Hj8Hl$@L\$8HL$(I)E1Hz(HZ8H9~tLJMM9UM9LLM)M)ItO"1LL9}(H\$H@H+HHL9|HZLIHZLIHHZ8H9HHR@HKHHkPH$1H$xHL$H$pHl$H9}XH$HHH:HrHD$ H$`H$hH\$HH=spHu!HHHl$H9|Ƅ$HĈH$XH4$H$PH_ H$HHD$ \$tƄ$HĈ Y V d  runtime.duffzero $runtime.panicindex $runtime.panicslice 0runtime.morestack_noctxt """.autotmp_0720O,type.image/color.Color"".autotmp_0719.type.*image/color.Color"".autotmp_0718type.int"".autotmp_0717type.int"".autotmp_0714type.int"".autotmp_0713type.int"".autotmp_0712type.int"".autotmp_0711type.int"".autotmp_0710/0type.image/color.Palette"".autotmp_0709type.int"".autotmp_0708type.int"".autotmp_0707type.int"".r"type."".Rectangle"".co,type.image/color.Color"".presenttype.[256]bool "".~r0type.bool"".p"type.*"".Paletted&"B2\* 4 9   f +  +2Tgclocals·32bd5c6dc84e3e86dd35593b3922d3aaTgclocals·5e29cf4e275ff1db65cfee262b3b8d1fTprebuilts/go/darwin-x86/src/image/image.go"".NewPalettedeH %HD$H;AHL$H$H$H$HT$`HD$pHH|$hLD$XL)LD$8H|$HHD$PHT$@H)H\$0HHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$HD$xH$HhH$HhH$=H(Hl$0HhH$Hh H$Hh(H$Hh0H$Hh8H$HhHH$HhPH$=uHh@H$HĘL@@L$Hl$HD$xH$Hl$HD$xYH type.[]uint8 "runtime.makeslice type."".Paletted "runtime.newobject6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled .runtime.writebarrierptr .runtime.writebarrierptr 0runtime.morestack_noctxt"".autotmp_0726?"type.*"".Paletted"".autotmp_0725type.int"".autotmp_0723type.int"".autotmp_0722type.int"".r"type."".Rectangle"".r"type."".Rectangle "".pix/type.[]uint8"".wtype.int "".~r2p"type.*"".Paletted"".p@0type.image/color.Palette"".r"type."".RectangleC?1M76Tgclocals·57c83c41cc07fcd7f4b6f6e2693ed359Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0fTprebuilts/go/darwin-x86/src/image/image.go$"".(*Uniform).RGBAeH %H;avSH(H\$0Ht@H HkHl$ H,$HL$HY Ӌl$T$ L$D$l$8T$ "runtime.newobjectx6runtime.writeBarrierEnabled .runtime.writebarrierptr 0runtime.morestack_noctxt00"".autotmp_0737 type.*"".Uniform "".~r1  type.*"".Uniform"".c,type.image/color.Color0=/0/fW@"Tgclocals·51af24152615272c3d9efc8538f95767Tgclocals·0c8aa8e80191a30eac23f1a218103f16Tprebuilts/go/darwin-x86/src/image/names.go:"".YCbCrSubsampleRatio.String1HD$HjHuHH\$HD$HuHH\$HD$HuHH\$HD$HH\$HD$HuHH\$HD$HuHH\$HD$HuHH\$HD$,Dgo.string."YCbCrSubsampleRatio444"dDgo.string."YCbCrSubsampleRatio422"Dgo.string."YCbCrSubsampleRatio420"Lgo.string."YCbCrSubsampleRatioUnknown"Dgo.string."YCbCrSubsampleRatio440"Dgo.string."YCbCrSubsampleRatio411"Dgo.string."YCbCrSubsampleRatio410"0 "".~r0type.string"".s6type."".YCbCrSubsampleRatio>0  Tgclocals·790e5cc5051fc0affc980ade09e929ecTgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/ycbcr.go,"".(*YCbCr).ColorModel@61HH\$HH\$ ,image/color.YCbCrModel",image/color.YCbCrModel0 "".~r0,type.image/color.Model"".ptype.*"".YCbCr  ~Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/ycbcr.go$"".(*YCbCr).Boundsl1H\$Ht%Hk`Hl$HkhHl$HkpHl$ HkxHl$(ÉP "".~r0"type."".Rectangle"".ptype.*"".YCbCr@@ >Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/ycbcr.go"".(*YCbCr).AteH %H;aH@1H\$`H\$hH\$HH$H\$PH\$H\$XH\$\$\$=\$\$>\$\$?HH$HH\$HH\$H\$=H\$HD$ H\$(H\$`H\$0H\$hH@B  &"".(*YCbCr).YCbCrAt,type.image/color.YCbCr,type.image/color.ColorVgo.itab.image/color.YCbCr.image/color.Color runtime.convT2I 0runtime.morestack_noctxtP "".autotmp_0739,type.image/color.YCbCr "".~r20,type.image/color.Color"".y type.int"".xtype.int"".ptype.*"".YCbCr #  @Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/ycbcr.go&"".(*YCbCr).YCbCrAteH %H;alHXLL$hH|$pHt$`1ۈ\$x\$y\$z1H|$0H3L^`LVhLT$@LFpLD$HHVxHT$PL\$8LL$(M9M9I9H9<u1ɈL$xL$yL$zHXH^hHH)HHnHHHn`MI)LH\$ H4$LL$H|$LL$`HD$1ItzIIIIiHl$ H9s^H*HIQII Ii(H9sHHII?I>IIL)HH\$ H4L@hHx`HH?HH)HHLH?I)LHH)HhPHHH?H>HHII?I>IIL)HH\$ @"".autotmp_0754type.int"".autotmp_0753type.int"".autotmp_0752type.int"".autotmp_0751type.int"".autotmp_0749type.int "".~r20type.int"".y type.int"".xtype.int"".ptype.*"".YCbCr8He(EI nTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/ycbcr.go("".(*YCbCr).SubImageeH %HD$H;AH1H$H$H$H$H$H\$H$H\$H$H\$H$HH^`H|$ HL$HT$@HL$HHt$PHD$XH$H$HL$pH$H$H$HT$hHt$xH9H9<HH$HL$HHt|1L$IhXHiXH$H1H9t H$H$H$HHH$HH\$HH\$HD$뱉IYhHH)HIiHHIi`II)LH\$`L $HT$HL$H$HD$Hl$`LALIL9LI)I)ItM*L$L$L$LA LI(L9NLQI)I)ItML$L$L$LA8LI@L9 LQ0I)I)ItML$L$L$HH$HD$H$H$HhH$HhH$=yH(H$Hh H$Hh(H$=*HhH$Hh8H$Hh@H$=Hh0HL$IhXHhXL$IhHHhHL$IhPHhPH$Hh`H$HhhH$HhpH$HhxH$H1H9t H$H$H$HHH$HH\$HH\$HD$뱉4L@0L$Hl$H$ L@L$Hl$H$H$Hl$H$o   HYZ:   runtime.duffcopy ,"".Rectangle.Intersecttype."".YCbCr "runtime.newobject  runtime.duffzero4go.itab.*"".YCbCr."".Imagetype.*"".YCbCrtype."".Image4go.itab.*"".YCbCr."".Image runtime.typ2Itab &"".(*YCbCr).COffset type."".YCbCr  "runtime.newobject 6runtime.writeBarrierEnabled 6runtime.writeBarrierEnabled 6runtime.writeBarrierEnabled4go.itab.*"".YCbCr."".Imagetype.*"".YCbCrtype."".Image4go.itab.*"".YCbCr."".Image runtime.typ2Itab .runtime.writebarrierptr .runtime.writebarrierptr .runtime.writebarrierptr $runtime.panicslice $runtime.panicslice $runtime.panicslice 0runtime.morestack_noctxtp"".autotmp_0766type.*uint8"".autotmp_0765type.*"".YCbCr"".autotmp_0764type.int"".autotmp_0761type.*"".YCbCr"".autotmp_0759type.*"".YCbCr"".autotmp_0758type.[]uint8"".autotmp_0757_type.[]uint8"".autotmp_0756/type.[]uint8"".autotmp_0755type.*"".YCbCr"".r"type."".Rectangle "".yitype.int "".~r1Ptype."".Image"".r"type."".Rectangle"".ptype.*"".YCbCr* 1wNK -' A==@ -: .E?<Tgclocals·4a5c83272286258cf484ac950366f973Tgclocals·afc01c2a5c5199c7dd20b96c14725140Tprebuilts/go/darwin-x86/src/image/ycbcr.go$"".(*YCbCr).Opaque D$  "".~r0type.bool"".ptype.*"".YCbCrTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/ycbcr.go"".NewYCbCreH %HD$H;AHL$L$ H$H$LT$`LL$pHHL$hH|$XH)H|$xH$LL$L$H$(L)H@HHHH?H)HHH?II)LHH)HHHHH\$HHHHHHH\$@HHt$0HHHL$PHHHHHH$HD$HD$8HD$Ht$HHT$@HL$H\$ H$HD$(H9H$H$H$HH9H9H)IHtM0H$H$L$Hl$8H$H9H9H)IH$HtMH$H$L$HH$HD$H$H$HhH$HhH$=H(H$Hh H$Hh(H$=HhH$Hh8H$Hh@H$=ubHh0H$(HhXHl$0HhHHl$PHhPH$Hh`H$HhhH$HhpH$ HhxH$0HL@0L$Hl$H$L@L$Hl$H$:H$Hl$H$   HuTHHH?H)HHH?II)LHH)LHHH?H)HLH?MI)LHH)HHHu1HLHHH?H)HLH?MI)LHH)Hu3HHH?H>HHHH?H>HHH)HH{HHH?H>HHHH?H>HHH)HLHHH?H)HLH?MI)LHH)R type.[]uint8 "runtime.makeslicetype."".YCbCr "runtime.newobject6runtime.writeBarrierEnabled 6runtime.writeBarrierEnabled 6runtime.writeBarrierEnabled  .runtime.writebarrierptr  .runtime.writebarrierptr  .runtime.writebarrierptr  $runtime.panicslice  $runtime.panicslice  $runtime.panicslice 0runtime.morestack_noctxt`>"".autotmp_0791type.*"".YCbCr"".autotmp_0790type.int"".autotmp_0789type.int"".autotmp_0788type.int"".autotmp_0787type.int"".autotmp_0786type.int"".autotmp_0785type.int"".autotmp_0784type.int"".autotmp_0783type.int"".autotmp_0782type.int"".autotmp_0781type.int"".autotmp_0780type.int"".autotmp_0779type.int"".autotmp_0778type.int"".autotmp_0777type.int"".autotmp_0774type.int"".autotmp_0773type.int"".autotmp_0771type.[]uint8"".autotmp_0770_type.[]uint8"".autotmp_0769/type.[]uint8"".r"type."".Rectangle"".r"type."".Rectangle"".btype.[]uint8 "".i2type.int "".i1type.int "".i0type.int "".cwtype.int"".wtype.int "".~r2Ptype.*"".YCbCr""".subsampleRatio@6type."".YCbCrSubsampleRatio"".r"type."".Rectangle ?:  &$!@!=OV+&))+ .) - &Tgclocals·0ce38f56d4c8b081a7ecdd846c3439b5Tgclocals·27322ac377f4076175cee6d941c30830Tprebuilts/go/darwin-x86/src/image/ycbcr.go"".init eH %H;aH8tuH8 HH$HD$H\$HH\$=4HHH$HH\$HH\$HH\$HD$ H\$(H H $HKHL$H\$=HHH$HH\$HH\$HH\$HD$ H\$(H H $HKHL$H\$= HHH$HH\$HH\$HH\$HD$ H\$(H H $HKHL$H\$=HHH$HH\$HH\$HH\$HD$ H\$(H H $HKHL$H\$=uHH8H-H,$H\$H-H,$H\$WH-H,$H\$H-H,$H\$CH-H,$H\$t 4"".initdone·L"".initdone·j "runtime.throwinitz"".initdone· bufio.init io.init image/color.init strconv.initBgo.string."image: unknown format" errors.New"".ErrFormat6runtime.writeBarrierEnabled"".ErrFormat.type.image/color.Gray16,type.image/color.ColorXgo.itab.image/color.Gray16.image/color.Color"image/color.Black runtime.convT2I "".NewUniform6runtime.writeBarrierEnabled"".Black.type.image/color.Gray16,type.image/color.ColorXgo.itab.image/color.Gray16.image/color.Color"image/color.White runtime.convT2I "".NewUniform6runtime.writeBarrierEnabled"".White0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color.image/color.Transparent runtime.convT2I "".NewUniform6runtime.writeBarrierEnabled"".Transparent0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color$image/color.Opaque runtime.convT2I "".NewUniform 6runtime.writeBarrierEnabled "".Opaque "".initdone· "".Opaque  .runtime.writebarrierptr "".Transparent  .runtime.writebarrierptr "".White  .runtime.writebarrierptr "".Black  .runtime.writebarrierptr "".ErrFormat  .runtime.writebarrierptr  0runtime.morestack_noctxtppopop,V> NXV>pppl  4Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·33cdeccccebe80329f1fdbee7f5874cbTprebuilts/go/darwin-x86/src/image/ycbcr.goVprebuilts/go/darwin-x86/src/image/format.goTprebuilts/go/darwin-x86/src/image/names.go"".Image.AteH %H;avgH(HY Ht H|$0H9;uH#1H\$PH\$XH\$@H\$H\$HH\$H\$8H$H\$0H[ HL$HD$ HL$PHD$XH(  0runtime.morestack_noctxt`P "".~r2@,type.image/color.Color"".y0type.int"".x type.int""..thistype."".ImagePbOP  [%Tgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cb"".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  0runtime.morestack_noctxt`P "".~r0 "type."".Rectangle""..thistype."".ImagePlOP Q?Tgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cb&"".Image.ColorModeleH %H;avSHHY Ht H|$ H9;uH#1H\$0H\$8H\$(H$H\$ H[0HL$HD$HL$0HD$8H  0runtime.morestack_noctxt@0 "".~r0 ,type.image/color.Model""..thistype."".Image0N/0pp G)Tgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·33cdeccccebe80329f1fdbee7f5874cb$"".(*Point).StringeH %H;aH0HY Ht H|$8H9;uH#1H\$@H\$HH\$81H9uEHH$HD$HH\$HD$HH\$ HD$( Ht$8HH $HNHL$HL$HD$HL$@HD$HH09 "go.string."image""go.string."Point"$go.string."String" "runtime.panicwrap "".Point.String 0runtime.morestack_noctxt0` "".~r0type.string""..thistype.*"".Point`_`  MTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb"".(*Point).AddeH %H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$HH\$ HD$( H\$8Ht3H3HSHL$@HD$H11HHHHHHL$PH\$XH0É4 |"go.string."image""go.string."Point"go.string."Add" "runtime.panicwrap 0runtime.morestack_noctxtP` "".~r10type."".Point"".qtype."".Point""..thistype.*"".Point`_`  yWTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb"".(*Point).SubeH %H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$HH\$ HD$( H\$8Ht3H3HSHL$@HD$H11HH)HHH)HL$PH\$XH0É4 |"go.string."image""go.string."Point"go.string."Sub" "runtime.panicwrap 0runtime.morestack_noctxtP` "".~r10type."".Point"".qtype."".Point""..thistype.*"".Point`_` yWTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb"".(*Point).MuleH %H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$HH\$ HD$( H\$8Ht*H HSHD$@11HHHHL$HH\$PH0É= |"go.string."image""go.string."Point"go.string."Mul" "runtime.panicwrap 0runtime.morestack_noctxt@` "".~r1 type."".Point"".ktype.int""..thistype.*"".Point`_` yWTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb"".(*Point).DiveH %H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$HH\$ HD$( H\$8HtQHH{HL$@11Ht3HHHHHHtHHHHt$HH\$PH0HHHH͉ |"go.string."image""go.string."Point"go.string."Div" "runtime.panicwrap 0runtime.morestack_noctxt@` "".~r1 type."".Point"".ktype.int""..thistype.*"".Point`_`$ ywTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb"".(*Point).IneH %H;aH0HY Ht H|$8H9;uH#H\$81H9uEHH$HD$HH\$HD$HH\$ HD$( H\$8Ht=H HCH\$@H|$HHt$PHT$XH9H9}H9H9D$`H01, x"go.string."image""go.string."Point"go.string."In" "runtime.panicwrap 0runtime.morestack_noctxt`` "".~r1Ptype.bool"".r"type."".Rectangle""..thistype.*"".Point`_` wiTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals·33cdeccccebe80329f1fdbee7f5874cb"".(*Point).ModeH %H;aH@HY Ht H|$HH9;uH#1H\$pH\$xH\$H1H9uEHH$HD$HH\$HD$HH\$ HD$( Ht$HHH $HNHL$H\$PH\$H\$XH\$H\$`H\$ H\$hH\$(HL$0HD$8HL$pHD$xH@ "go.string."image""go.string."Point"go.string."Mod" "runtime.panicwrap "".Point.Mod 0runtime.morestack_noctxtp "".~r1Ptype."".Point"".r"type."".Rectangle""..thistype.*"".Point  mTgclocals·a041240a37ce609efec56707c330d1a4Tgclocals·33cdeccccebe80329f1fdbee7f5874cb"".(*Point).EqeH %H;aHPHY Ht H|$XH9;uH#H\$X1H9uEHH$HD$HH\$HD$HH\$ HD$( H\$XHt[H3HkHL$`HD$hHt$@Hl$HHL$0HD$8H\$@HH\$0HHH(H9uHYHhH9D$pHP1 x"go.string."image""go.string."Point"go.string."Eq" "runtime.panicwrap 0runtime.morestack_noctxt@ "".autotmp_0807?type."".Point"".autotmp_0806type."".Point "".~r10type.bool"".qtype."".Point""..thistype.*"".Point  wTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cb,"".(*Rectangle).StringeH %H;aH0HY Ht H|$8H9;uH#1H\$@H\$HH\$81H9uEHH$HD$HH\$HD$ HH\$ HD$( Ht$8Ht&HHL$ HD$(HL$@HD$HH0É7 "go.string."image"*go.string."Rectangle"$go.string."String" "runtime.panicwrap  runtime.duffcopy &"".Rectangle.String 0runtime.morestack_noctxt0` "".~r0type.string""..this$type.*"".Rectangle`_` MTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb$"".(*Rectangle).DxeH %H;aH0HY Ht H|$8H9;uH#H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$( H\$8HtH HkHCHkHH)H\$@H0ÉJ x"go.string."image"*go.string."Rectangle"go.string."Dx" "runtime.panicwrap 0runtime.morestack_noctxt ` "".~r0type.int""..this$type.*"".Rectangle`_` wITgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb$"".(*Rectangle).DyeH %H;aH0HY Ht H|$8H9;uH#H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$( H\$8HtH+HKHkH[H)H\$@H0ÉM x"go.string."image"*go.string."Rectangle"go.string."Dy" "runtime.panicwrap 0runtime.morestack_noctxt ` "".~r0type.int""..this$type.*"".Rectangle`_` wITgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb("".(*Rectangle).SizeeH %H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$( H\$8Ht(H3HSHKHC11H)H)HL$@HD$HH0É? |"go.string."image"*go.string."Rectangle" go.string."Size" "runtime.panicwrap 0runtime.morestack_noctxt0` "".~r0type."".Point""..this$type.*"".Rectangle`_`  yWTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb&"".(*Rectangle).AddeH %H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$( H\$8HtKH3HSLCH{HL$@HD$H11HHLHHHHHt$PHT$XHL$`H\$hH0É |"go.string."image"*go.string."Rectangle"go.string."Add" "runtime.panicwrap 0runtime.morestack_noctxtp` "".~r10"type."".Rectangle"".ptype."".Point""..this$type.*"".Rectangle`_`" ywTgclocals·a041240a37ce609efec56707c330d1a4Tgclocals·33cdeccccebe80329f1fdbee7f5874cb&"".(*Rectangle).SubeH %H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$( H\$8HtKH3HSLCH{HL$@HD$H11H)H)LH)HHH)Ht$PHT$XHL$`H\$hH0É |"go.string."image"*go.string."Rectangle"go.string."Sub" "runtime.panicwrap 0runtime.morestack_noctxtp` "".~r10"type."".Rectangle"".ptype."".Point""..this$type.*"".Rectangle`_`$ ywTgclocals·a041240a37ce609efec56707c330d1a4Tgclocals·33cdeccccebe80329f1fdbee7f5874cb*"".(*Rectangle).InseteH %H;aHHHY Ht H|$PH9;uH#1H\$`H\$hH\$pH\$xH\$P1H9uEHH$HD$HH\$HD$ HH\$ HD$( Ht$PHtDHH\$XH\$ Hl$(HT$0HL$8HD$@Hl$`HT$hHL$pHD$xHHÉ "go.string."image"*go.string."Rectangle""go.string."Inset" "runtime.panicwrap  runtime.duffcopy $"".Rectangle.Inset 0runtime.morestack_noctxt` "".~r1 "type."".Rectangle"".ntype.int""..this$type.*"".Rectangle& sTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals·33cdeccccebe80329f1fdbee7f5874cb2"".(*Rectangle).IntersecteH %H;aH`HY Ht H|$hH9;uH#1H$H$H$H$H\$h1H9uEHH$HD$HH\$HD$ HH\$ HD$(  Ht$hHttHH\$pH\$ H\$xH\$(H$H\$0H$H\$8Hl$@HT$HHL$PHD$XH$H$H$H$H`É "go.string."image"*go.string."Rectangle"*go.string."Intersect" "runtime.panicwrap  runtime.duffcopy ,"".Rectangle.Intersect 0runtime.morestack_noctxt "".~r1P"type."".Rectangle"".s"type."".Rectangle""..this$type.*"".Rectangle(Tgclocals·4d8bed7e4976e3d095a9230e496231afTgclocals·33cdeccccebe80329f1fdbee7f5874cb*"".(*Rectangle).UnioneH %H;aH`HY Ht H|$hH9;uH#1H$H$H$H$H\$h1H9uEHH$HD$HH\$HD$ HH\$ HD$( Ht$hHttHH\$pH\$ H\$xH\$(H$H\$0H$H\$8Hl$@HT$HHL$PHD$XH$H$H$H$H`É "go.string."image"*go.string."Rectangle""go.string."Union" "runtime.panicwrap  runtime.duffcopy $"".Rectangle.Union 0runtime.morestack_noctxt "".~r1P"type."".Rectangle"".s"type."".Rectangle""..this$type.*"".Rectangle*Tgclocals·4d8bed7e4976e3d095a9230e496231afTgclocals·33cdeccccebe80329f1fdbee7f5874cb*"".(*Rectangle).EmptyeH %H;aH0HY Ht H|$8H9;uH#H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$( H\$8Ht,H3HSHKHCH9}H9D$@H0H= x"go.string."image"*go.string."Rectangle""go.string."Empty" "runtime.panicwrap 0runtime.morestack_noctxt ` "".~r0type.bool""..this$type.*"".Rectangle`_`$, wYTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·33cdeccccebe80329f1fdbee7f5874cb$"".(*Rectangle).EqeH %H;aHpHY Ht H|$xH9;uH#H\$x1H9uEHH$HD$HH\$HD$ HH\$ HD$( Ht$xHL>LvLnLfL$L$L$H$L|$PLt$XLl$`Ld$hL\$0LT$8LL$@H|$HHt$PH\$0HHHHH*H9H^HjH9utHHHHHH)H9uWHXHiH9<u0"".(*Rectangle).OverlapseH %H;aHHHY Ht H|$PH9;uH#H\$P1H9uEHH$HD$HH\$HD$ HH\$ HD$( Ht$PHtCHH\$XH\$ H\$`H\$(H\$hH\$0H\$pH\$8\$@\$xHHÉ& x"go.string."image"*go.string."Rectangle"(go.string."Overlaps" "runtime.panicwrap  runtime.duffcopy *"".Rectangle.Overlaps 0runtime.morestack_noctxt` "".~r1Ptype.bool"".s"type."".Rectangle""..this$type.*"".Rectangle0 wiTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals·33cdeccccebe80329f1fdbee7f5874cb$"".(*Rectangle).IneH %H;aH0HY Ht H|$8H9;uH#H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$( H\$8HtfH;HsHSHKLl$@Ld$HL\$PLT$XH9}5H9<tHD$`H0I9L9 I9L91Hȉ x"go.string."image"*go.string."Rectangle"go.string."In" "runtime.panicwrap 0runtime.morestack_noctxt``"".autotmp_0835type.bool "".~r1Ptype.bool"".s"type."".Rectangle""..this$type.*"".Rectangle`_`52 wTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92aTgclocals·33cdeccccebe80329f1fdbee7f5874cb*"".(*Rectangle).CanoneH %H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$( H\$8HtFH3HSHKHC1H9} HHHH9} HHHHt$@HT$HHL$PHD$XH0É! |"go.string."image"*go.string."Rectangle""go.string."Canon" "runtime.panicwrap 0runtime.morestack_noctxtP`"".autotmp_0837type.int "".~r0"type."".Rectangle""..this$type.*"".Rectangle`_`4 ygTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb$"".(*Rectangle).AteH %HD$H;AHHY HtH$H9;uH#1H$H$H$1H9uEHH$HD$HH\$HD$ HH\$ HD$( H$H<LH{HsHSH$H$1H$H$1HD$@LD$hH|$pH|$PHt$xHt$XH$HT$`LD$HHL$8I9H9H9H9<t_HH$HH\$HH\$HH\$HD$ HL$(HD$0H$H$HĘHH$HH\$HH\$HH\$HD$ HL$(HD$01M "go.string."image"*go.string."Rectangle"go.string."At" "runtime.panicwrap0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color$image/color.Opaque runtime.convT2I0type.image/color.Alpha16,type.image/color.ColorZgo.itab.image/color.Alpha16.image/color.Color.image/color.Transparent runtime.convT2I 0runtime.morestack_noctxtP"".autotmp_0840,type.image/color.Color"".r"type."".Rectangle"".ptype."".Point "".~r2,type.image/color.Color"".r_"type."".Rectangle "".~r20,type.image/color.Color"".y type.int"".xtype.int""..this$type.*"".Rectangled6Tgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·23e8278e2b69a3a75fa59b23c49ed6ad,"".(*Rectangle).BoundseH %H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$( H\$8Ht*H3HSHKHC1Ht$@HT$HHL$PHD$XH0É= |"go.string."image"*go.string."Rectangle"$go.string."Bounds" "runtime.panicwrap 0runtime.morestack_noctxtP` "".~r0"type."".Rectangle""..this$type.*"".Rectangle`_`8 yWTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb4"".(*Rectangle).ColorModeleH %H;aH0HY Ht H|$8H9;uH#1H\$81H9uEHH$HD$HH\$HD$ HH\$ HD$(  H\$8Ht.H+HkHkHk1H HHL$@HD$HH0É9 |"go.string."image"*go.string."Rectangle",go.string."ColorModel" "runtime.panicwrap0image/color.Alpha16Model0image/color.Alpha16Model 0runtime.morestack_noctxt0` "".~r0,type.image/color.Model""..this$type.*"".Rectangle`_`: yWTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb(type..hash."".ConfigeH %H;avvH H\$(H$H<$tYH\$0H\$HD$H\$(H$H<$t,H$HD$0HD$HD$H\$H\$8H É%ˉ%q \ "runtime.interhash runtime.memhash 0runtime.morestack_noctxt0@ "".~r2 type.uintptr"".htype.uintptr"".ptype.*"".Config@_?@ -cTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbVprebuilts/go/darwin-x86/src/image/format.go$type..eq."".ConfigeH %H;aHHH\$XHH HsH\$PHHHSH9uxHD$(H$HT$0HT$HL$8HL$Ht$@Ht$HL$XHD$P\$ t8HXHiH9t D$`HHHXHiH9t D$`HHD$`HHD$`HHÉkN  runtime.ifaceeq 0runtime.morestack_noctxt0 "".autotmp_0842?,type.image/color.Model"".autotmp_0841,type.image/color.Model "".~r2 type.bool"".qtype.*"".Config"".ptype.*"".Config>  & oTgclocals·3bb21ca8fe1d99a3e492463bd711418aTgclocals·a8eabfc4a4514ed6b3b0c61e9680e440Vprebuilts/go/darwin-x86/src/image/format.go"".reader.PeekeH %H;aH8HY Ht H|$@H9;uH#1H\$XH\$`H\$h1H\$pH\$xH\$PH\$H\$HH$H\$@H[ Ht$Hl$HT$ HL$(HD$0Ht$XHl$`HT$hHL$pHD$xH8W  0runtime.morestack_noctxtp "".~r2`type.error "".~r10type.[]uint8""..anon0 type.int""..thistype."".readerpop< fJTgclocals·6d46c0650eba7dbebc0db316e0e0cf3bTgclocals·33cdeccccebe80329f1fdbee7f5874cb"".reader.ReadeH %H;av}H8HY Ht H|$@H9;uH#11H\$pH\$xH\$PH\$H\$XH\$H\$`H\$H\$HH$H\$@H[(HT$ HL$(HD$0HT$hHL$pHD$xH8j  0runtime.morestack_noctxtp io.err`type.errorio.nPtype.intio.p type.[]uint8""..thistype."".readerpxop> g9Tgclocals·dacebcad73eed5073009fd67170948d0Tgclocals·33cdeccccebe80329f1fdbee7f5874cb@"".(*YCbCrSubsampleRatio).StringeH %H;aH0HY Ht H|$8H9;uH#1H\$@H\$HH\$81H9uEHH$HD$HH\$HD$HH\$ HD$( H\$8H+H,$HL$HD$HL$@HD$HH0B "go.string."image">go.string."YCbCrSubsampleRatio"$go.string."String" "runtime.panicwrap :"".YCbCrSubsampleRatio.String 0runtime.morestack_noctxt0` "".~r0type.string""..this8type.*"".YCbCrSubsampleRatio`_` @ =Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cb&"".PalettedImage.AteH %H;avgH(HY Ht H|$0H9;uH#1H\$PH\$XH\$@H\$H\$HH\$H\$8H$H\$0H[ HL$HD$ HL$PHD$XH(  0runtime.morestack_noctxt`P "".~r2@,type.image/color.Color"".y0type.int"".x type.int""..this*type."".PalettedImagePbOP B [%Tgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cb."".PalettedImage.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  0runtime.morestack_noctxt`P "".~r0 "type."".Rectangle""..this*type."".PalettedImagePlOPD Q?Tgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cb:"".PalettedImage.ColorIndexAteH %H;avPH HY Ht H|$(H9;uH#H\$8H\$H\$@H\$H\$0H$H\$(H[0\$\$HH   0runtime.morestack_noctxtP@ "".~r2@type.uint8"".y0type.int"".x type.int""..this*type."".PalettedImage@K?@pFp O!Tgclocals·1347047f6245a35b91e9a4f213167d52Tgclocals·33cdeccccebe80329f1fdbee7f5874cb6"".PalettedImage.ColorModeleH %H;avSHHY Ht H|$ H9;uH#1H\$0H\$8H\$(H$H\$ H[8HL$HD$HL$0HD$8H  0runtime.morestack_noctxt@0 "".~r0 ,type.image/color.Model""..this*type."".PalettedImage0N/0pHp G)Tgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·5bcb5afcb5617f15eb2d0b279323d878((jkTgclocals·ac96ed3958d5792ac369a1dc2bfe9382((5550>go.itab.*bufio.Reader."".readerTgclocals·dd9a4d2009c4ac75e28d1a37bbe5075e@@Tgclocals·a68b09a48716afad7ca7a02fe6add474@@Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·b4c25e9b09fd0cf9bb429dcefe91c353Tgclocals·d82314ad8b4d0d463ee994662aedec13 jTgclocals·99ef9ff0bd07d0e619cc0988c2dabb63 Tgclocals·a09af47d95804d1a0febde7c2c7293b6)``5Tgclocals·693e8a411a45da74e76c619c62a5bb87PPTgclocals·a09af47d95804d1a0febde7c2c7293b6)``5Tgclocals·473289be119113ddb746c224f05da7b4PP "go.string.hdr."(" go.string."("go.string."("("go.string.hdr."," go.string.","go.string.",","go.string.hdr.")" go.string.")"go.string.")")Tgclocals·44750c784da4dd430afdd97fea5c405a Tgclocals·64ca935d1a2110a30e2d604686188539 Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·709a14768fab2805a378215c02f0d27fTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·709a14768fab2805a378215c02f0d27fTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·627bbca91efe935c3ac76737d2026ca6Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·895d0569a38a56443b84805daa09d838Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·a8eabfc4a4514ed6b3b0c61e9680e440"go.string.hdr."-" go.string."-"go.string."-"-Tgclocals·44750c784da4dd430afdd97fea5c405a Tgclocals·ae0a20890c9ac6bfbea3383f34532bab Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·709a14768fab2805a378215c02f0d27fTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·63ba92e6c81d2d7bf2207e4076c8b23c Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·63ba92e6c81d2d7bf2207e4076c8b23c Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1 Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·5f32766c99d383f833fae93d4e4d71d1 Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·5f32766c99d383f833fae93d4e4d71d1 Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·12fc1489b12fcdedb8fc818b7369b5d9Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1 Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1 Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·6d07ab0a37c299682f1d85b92cb6cfd1 Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·895d0569a38a56443b84805daa09d8380Zgo.itab.image/color.Alpha16.image/color.ColorTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·895d0569a38a56443b84805daa09d838Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·895d0569a38a56443b84805daa09d838Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·709a14768fab2805a378215c02f0d27fTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·895d0569a38a56443b84805daa09d838Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff00Tgo.itab.image/color.RGBA.image/color.ColorTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae7202go.itab.*"".RGBA."".ImageTgclocals·721dda3334c021125365f71a78d0ed1e((Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocals·c7e46dd432d705036367d637fd33d432((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff00Xgo.itab.image/color.RGBA64.image/color.ColorTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae7206go.itab.*"".RGBA64."".ImageTgclocals·721dda3334c021125365f71a78d0ed1e((Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocals·c7e46dd432d705036367d637fd33d432((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff00Vgo.itab.image/color.NRGBA.image/color.ColorTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae7204go.itab.*"".NRGBA."".ImageTgclocals·721dda3334c021125365f71a78d0ed1e((Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocals·c7e46dd432d705036367d637fd33d432((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff00Zgo.itab.image/color.NRGBA64.image/color.ColorTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae7208go.itab.*"".NRGBA64."".ImageTgclocals·721dda3334c021125365f71a78d0ed1e((Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocals·c7e46dd432d705036367d637fd33d432((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff00Vgo.itab.image/color.Alpha.image/color.ColorTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae7204go.itab.*"".Alpha."".ImageTgclocals·721dda3334c021125365f71a78d0ed1e((Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocals·c7e46dd432d705036367d637fd33d432((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae7208go.itab.*"".Alpha16."".ImageTgclocals·721dda3334c021125365f71a78d0ed1e((Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocals·c7e46dd432d705036367d637fd33d432((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff00Tgo.itab.image/color.Gray.image/color.ColorTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae7202go.itab.*"".Gray."".ImageTgclocals·721dda3334c021125365f71a78d0ed1e((Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocals·c7e46dd432d705036367d637fd33d432((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff00Xgo.itab.image/color.Gray16.image/color.ColorTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae7206go.itab.*"".Gray16."".ImageTgclocals·721dda3334c021125365f71a78d0ed1e((Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocals·c7e46dd432d705036367d637fd33d432((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff00Tgo.itab.image/color.CMYK.image/color.ColorTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae7202go.itab.*"".CMYK."".ImageTgclocals·721dda3334c021125365f71a78d0ed1e((Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocals·c7e46dd432d705036367d637fd33d432((0Zgo.itab.image/color.Palette.image/color.ModelTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·f1597d34acce1d76d65bc9b6f5da0f2dTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae720:go.itab.*"".Paletted."".ImageTgclocals·721dda3334c021125365f71a78d0ed1e((Tgclocals·0c0c2c2ec738a77c7171e28b67bc998c((Tgclocals·5e29cf4e275ff1db65cfee262b3b8d1f Tgclocals·32bd5c6dc84e3e86dd35593b3922d3aa Tgclocals·7f1e9457ccdd59eb521cbcc8eefe7f0f((Tgclocals·57c83c41cc07fcd7f4b6f6e2693ed359((Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa20Jgo.itab.*"".Uniform.image/color.ModelTgclocals·0c8aa8e80191a30eac23f1a218103f16 Tgclocals·41a13ac73c712c01973b8fe23f62d694 Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·13bdb4aeeaf63de3cc223d640262ea59Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·23e8278e2b69a3a75fa59b23c49ed6adTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·0c8aa8e80191a30eac23f1a218103f16 Tgclocals·51af24152615272c3d9efc8538f95767 Lgo.string.hdr."YCbCrSubsampleRatio444" Dgo.string."YCbCrSubsampleRatio444"Dgo.string."YCbCrSubsampleRatio444"0.YCbCrSubsampleRatio444Lgo.string.hdr."YCbCrSubsampleRatio422" Dgo.string."YCbCrSubsampleRatio422"Dgo.string."YCbCrSubsampleRatio422"0.YCbCrSubsampleRatio422Lgo.string.hdr."YCbCrSubsampleRatio420" Dgo.string."YCbCrSubsampleRatio420"Dgo.string."YCbCrSubsampleRatio420"0.YCbCrSubsampleRatio420Lgo.string.hdr."YCbCrSubsampleRatio440" Dgo.string."YCbCrSubsampleRatio440"Dgo.string."YCbCrSubsampleRatio440"0.YCbCrSubsampleRatio440Lgo.string.hdr."YCbCrSubsampleRatio411" Dgo.string."YCbCrSubsampleRatio411"Dgo.string."YCbCrSubsampleRatio411"0.YCbCrSubsampleRatio411Lgo.string.hdr."YCbCrSubsampleRatio410" Dgo.string."YCbCrSubsampleRatio410"Dgo.string."YCbCrSubsampleRatio410"0.YCbCrSubsampleRatio410Tgo.string.hdr."YCbCrSubsampleRatioUnknown" Lgo.string."YCbCrSubsampleRatioUnknown"Lgo.string."YCbCrSubsampleRatioUnknown"@6YCbCrSubsampleRatioUnknownTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·790e5cc5051fc0affc980ade09e929ecTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff00Vgo.itab.image/color.YCbCr.image/color.ColorTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff0Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae7204go.itab.*"".YCbCr."".ImageTgclocals·afc01c2a5c5199c7dd20b96c1472514088 Tgclocals·4a5c83272286258cf484ac950366f97388Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·3f5c1f818fa7055d0400cecd34057162Tgclocals·27322ac377f4076175cee6d941c3083088 Tgclocals·0ce38f56d4c8b081a7ecdd846c3439b588Jgo.string.hdr."image: unknown format" Bgo.string."image: unknown format"Bgo.string."image: unknown format"0,image: unknown formatTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·33cdeccccebe80329f1fdbee7f5874cb."".ErrFormat type.error."".formats0 type.[]"".format0 "".ZP type."".Point0 "".ZR@"type."".Rectangle."".Black type.*"".Uniform."".White type.*"".Uniform."".Transparent type.*"".Uniform."".Opaque type.*"".Uniform0"".initdone·type.uint8("".RegisterFormat·f""".RegisterFormat"".asReader·f"".asReader"".match·f"".match"".sniff·f"".sniff"".Decode·f"".Decode$"".DecodeConfig·f"".DecodeConfig$"".Point.String·f"".Point.String"".Point.Add·f"".Point.Add"".Point.Sub·f"".Point.Sub"".Point.Mul·f"".Point.Mul"".Point.Div·f"".Point.Div"".Point.In·f"".Point.In"".Point.Mod·f"".Point.Mod"".Point.Eq·f"".Point.Eq"".Pt·f "".Pt,"".Rectangle.String·f&"".Rectangle.String$"".Rectangle.Dx·f"".Rectangle.Dx$"".Rectangle.Dy·f"".Rectangle.Dy("".Rectangle.Size·f""".Rectangle.Size&"".Rectangle.Add·f "".Rectangle.Add&"".Rectangle.Sub·f "".Rectangle.Sub*"".Rectangle.Inset·f$"".Rectangle.Inset2"".Rectangle.Intersect·f,"".Rectangle.Intersect*"".Rectangle.Union·f$"".Rectangle.Union*"".Rectangle.Empty·f$"".Rectangle.Empty$"".Rectangle.Eq·f"".Rectangle.Eq0"".Rectangle.Overlaps·f*"".Rectangle.Overlaps$"".Rectangle.In·f"".Rectangle.In*"".Rectangle.Canon·f$"".Rectangle.Canon$"".Rectangle.At·f"".Rectangle.At,"".Rectangle.Bounds·f&"".Rectangle.Bounds4"".Rectangle.ColorModel·f."".Rectangle.ColorModel"".Rect·f"".Rect0"".(*RGBA).ColorModel·f*"".(*RGBA).ColorModel("".(*RGBA).Bounds·f""".(*RGBA).Bounds "".(*RGBA).At·f"".(*RGBA).At("".(*RGBA).RGBAAt·f""".(*RGBA).RGBAAt."".(*RGBA).PixOffset·f("".(*RGBA).PixOffset""".(*RGBA).Set·f"".(*RGBA).Set*"".(*RGBA).SetRGBA·f$"".(*RGBA).SetRGBA,"".(*RGBA).SubImage·f&"".(*RGBA).SubImage("".(*RGBA).Opaque·f""".(*RGBA).Opaque"".NewRGBA·f"".NewRGBA4"".(*RGBA64).ColorModel·f."".(*RGBA64).ColorModel,"".(*RGBA64).Bounds·f&"".(*RGBA64).Bounds$"".(*RGBA64).At·f"".(*RGBA64).At0"".(*RGBA64).RGBA64At·f*"".(*RGBA64).RGBA64At2"".(*RGBA64).PixOffset·f,"".(*RGBA64).PixOffset&"".(*RGBA64).Set·f "".(*RGBA64).Set2"".(*RGBA64).SetRGBA64·f,"".(*RGBA64).SetRGBA640"".(*RGBA64).SubImage·f*"".(*RGBA64).SubImage,"".(*RGBA64).Opaque·f&"".(*RGBA64).Opaque"".NewRGBA64·f"".NewRGBA642"".(*NRGBA).ColorModel·f,"".(*NRGBA).ColorModel*"".(*NRGBA).Bounds·f$"".(*NRGBA).Bounds""".(*NRGBA).At·f"".(*NRGBA).At,"".(*NRGBA).NRGBAAt·f&"".(*NRGBA).NRGBAAt0"".(*NRGBA).PixOffset·f*"".(*NRGBA).PixOffset$"".(*NRGBA).Set·f"".(*NRGBA).Set."".(*NRGBA).SetNRGBA·f("".(*NRGBA).SetNRGBA."".(*NRGBA).SubImage·f("".(*NRGBA).SubImage*"".(*NRGBA).Opaque·f$"".(*NRGBA).Opaque"".NewNRGBA·f"".NewNRGBA6"".(*NRGBA64).ColorModel·f0"".(*NRGBA64).ColorModel."".(*NRGBA64).Bounds·f("".(*NRGBA64).Bounds&"".(*NRGBA64).At·f "".(*NRGBA64).At4"".(*NRGBA64).NRGBA64At·f."".(*NRGBA64).NRGBA64At4"".(*NRGBA64).PixOffset·f."".(*NRGBA64).PixOffset("".(*NRGBA64).Set·f""".(*NRGBA64).Set6"".(*NRGBA64).SetNRGBA64·f0"".(*NRGBA64).SetNRGBA642"".(*NRGBA64).SubImage·f,"".(*NRGBA64).SubImage."".(*NRGBA64).Opaque·f("".(*NRGBA64).Opaque "".NewNRGBA64·f"".NewNRGBA642"".(*Alpha).ColorModel·f,"".(*Alpha).ColorModel*"".(*Alpha).Bounds·f$"".(*Alpha).Bounds""".(*Alpha).At·f"".(*Alpha).At,"".(*Alpha).AlphaAt·f&"".(*Alpha).AlphaAt0"".(*Alpha).PixOffset·f*"".(*Alpha).PixOffset$"".(*Alpha).Set·f"".(*Alpha).Set."".(*Alpha).SetAlpha·f("".(*Alpha).SetAlpha."".(*Alpha).SubImage·f("".(*Alpha).SubImage*"".(*Alpha).Opaque·f$"".(*Alpha).Opaque"".NewAlpha·f"".NewAlpha6"".(*Alpha16).ColorModel·f0"".(*Alpha16).ColorModel."".(*Alpha16).Bounds·f("".(*Alpha16).Bounds&"".(*Alpha16).At·f "".(*Alpha16).At4"".(*Alpha16).Alpha16At·f."".(*Alpha16).Alpha16At4"".(*Alpha16).PixOffset·f."".(*Alpha16).PixOffset("".(*Alpha16).Set·f""".(*Alpha16).Set6"".(*Alpha16).SetAlpha16·f0"".(*Alpha16).SetAlpha162"".(*Alpha16).SubImage·f,"".(*Alpha16).SubImage."".(*Alpha16).Opaque·f("".(*Alpha16).Opaque "".NewAlpha16·f"".NewAlpha160"".(*Gray).ColorModel·f*"".(*Gray).ColorModel("".(*Gray).Bounds·f""".(*Gray).Bounds "".(*Gray).At·f"".(*Gray).At("".(*Gray).GrayAt·f""".(*Gray).GrayAt."".(*Gray).PixOffset·f("".(*Gray).PixOffset""".(*Gray).Set·f"".(*Gray).Set*"".(*Gray).SetGray·f$"".(*Gray).SetGray,"".(*Gray).SubImage·f&"".(*Gray).SubImage("".(*Gray).Opaque·f""".(*Gray).Opaque"".NewGray·f"".NewGray4"".(*Gray16).ColorModel·f."".(*Gray16).ColorModel,"".(*Gray16).Bounds·f&"".(*Gray16).Bounds$"".(*Gray16).At·f"".(*Gray16).At0"".(*Gray16).Gray16At·f*"".(*Gray16).Gray16At2"".(*Gray16).PixOffset·f,"".(*Gray16).PixOffset&"".(*Gray16).Set·f "".(*Gray16).Set2"".(*Gray16).SetGray16·f,"".(*Gray16).SetGray160"".(*Gray16).SubImage·f*"".(*Gray16).SubImage,"".(*Gray16).Opaque·f&"".(*Gray16).Opaque"".NewGray16·f"".NewGray160"".(*CMYK).ColorModel·f*"".(*CMYK).ColorModel("".(*CMYK).Bounds·f""".(*CMYK).Bounds "".(*CMYK).At·f"".(*CMYK).At("".(*CMYK).CMYKAt·f""".(*CMYK).CMYKAt."".(*CMYK).PixOffset·f("".(*CMYK).PixOffset""".(*CMYK).Set·f"".(*CMYK).Set*"".(*CMYK).SetCMYK·f$"".(*CMYK).SetCMYK,"".(*CMYK).SubImage·f&"".(*CMYK).SubImage("".(*CMYK).Opaque·f""".(*CMYK).Opaque"".NewCMYK·f"".NewCMYK8"".(*Paletted).ColorModel·f2"".(*Paletted).ColorModel0"".(*Paletted).Bounds·f*"".(*Paletted).Bounds("".(*Paletted).At·f""".(*Paletted).At6"".(*Paletted).PixOffset·f0"".(*Paletted).PixOffset*"".(*Paletted).Set·f$"".(*Paletted).Set<"".(*Paletted).ColorIndexAt·f6"".(*Paletted).ColorIndexAt>"".(*Paletted).SetColorIndex·f8"".(*Paletted).SetColorIndex4"".(*Paletted).SubImage·f."".(*Paletted).SubImage0"".(*Paletted).Opaque·f*"".(*Paletted).Opaque""".NewPaletted·f"".NewPaletted*"".(*Uniform).RGBA·f$"".(*Uniform).RGBA6"".(*Uniform).ColorModel·f0"".(*Uniform).ColorModel0"".(*Uniform).Convert·f*"".(*Uniform).Convert."".(*Uniform).Bounds·f("".(*Uniform).Bounds&"".(*Uniform).At·f "".(*Uniform).At."".(*Uniform).Opaque·f("".(*Uniform).Opaque "".NewUniform·f"".NewUniform@"".YCbCrSubsampleRatio.String·f:"".YCbCrSubsampleRatio.String2"".(*YCbCr).ColorModel·f,"".(*YCbCr).ColorModel*"".(*YCbCr).Bounds·f$"".(*YCbCr).Bounds""".(*YCbCr).At·f"".(*YCbCr).At,"".(*YCbCr).YCbCrAt·f&"".(*YCbCr).YCbCrAt,"".(*YCbCr).YOffset·f&"".(*YCbCr).YOffset,"".(*YCbCr).COffset·f&"".(*YCbCr).COffset."".(*YCbCr).SubImage·f("".(*YCbCr).SubImage*"".(*YCbCr).Opaque·f$"".(*YCbCr).Opaque"".NewYCbCr·f"".NewYCbCr"".init·f"".initTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0ebb2d1da58c1b4224bf5a7b370d7578"runtime.gcbits.01Tgo.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.Color8go.string.hdr."*image.Point" 0go.string."*image.Point"0go.string."*image.Point" *image.Point*go.string.hdr."image" "go.string."image""go.string."image" image*go.string.hdr."Point" "go.string."Point""go.string."Point" Point,go.string.hdr."String" $go.string."String"$go.string."String"StringTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2&go.string.hdr."Add" go.string."Add"go.string."Add"AddTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff0&go.string.hdr."Sub" go.string."Sub"go.string."Sub"SubTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·89fe65749ce0afc971c0982226501ff0&go.string.hdr."Mul" go.string."Mul"go.string."Mul"MulTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72&go.string.hdr."Div" go.string."Div"go.string."Div"DivTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72$go.string.hdr."In" go.string."In"go.string."In"InTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·6432f8c6a0d23fa7bee6c5d96f21a92a&go.string.hdr."Mod" go.string."Mod"go.string."Mod"ModTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·a041240a37ce609efec56707c330d1a4$go.string.hdr."Eq" go.string."Eq"go.string."Eq"EqTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·2fccd208efe70893f9ac8d682812ae72vgo.string.hdr."func(*image.Point, image.Point) image.Point" +ngo.string."func(*image.Point, image.Point) image.Point"ngo.string."func(*image.Point, image.Point) image.Point"`Xfunc(*image.Point, image.Point) image.PointNtype.func(*"".Point, "".Point) "".Point.^30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*image.Point, image.Point) image.Point"p`go.weak.type.*func(*"".Point, "".Point) "".Point"runtime.zerovalueNtype.func(*"".Point, "".Point) "".PointNtype.func(*"".Point, "".Point) "".Pointtype.*"".Pointtype."".Pointtype."".Pointgo.typelink.func(*image.Point, image.Point) image.Point func(*"".Point, "".Point) "".PointNtype.func(*"".Point, "".Point) "".Pointfgo.string.hdr."func(*image.Point, int) image.Point" #^go.string."func(*image.Point, int) image.Point"^go.string."func(*image.Point, int) image.Point"PHfunc(*image.Point, int) image.PointDtype.func(*"".Point, int) "".Point3 30 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(*image.Point, int) image.Point"pVgo.weak.type.*func(*"".Point, int) "".Point"runtime.zerovalueDtype.func(*"".Point, int) "".PointDtype.func(*"".Point, int) "".Pointtype.*"".Pointtype.inttype."".Pointgo.typelink.func(*image.Point, int) image.Point func(*"".Point, int) "".PointDtype.func(*"".Point, int) "".Pointhgo.string.hdr."func(*image.Point, image.Point) bool" $`go.string."func(*image.Point, image.Point) bool"`go.string."func(*image.Point, image.Point) bool"PJfunc(*image.Point, image.Point) boolFtype.func(*"".Point, "".Point) bool30 runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(*image.Point, image.Point) bool"pXgo.weak.type.*func(*"".Point, "".Point) bool"runtime.zerovalueFtype.func(*"".Point, "".Point) boolFtype.func(*"".Point, "".Point) booltype.*"".Pointtype."".Pointtype.boolgo.typelink.func(*image.Point, image.Point) bool func(*"".Point, "".Point) boolFtype.func(*"".Point, "".Point) boolpgo.string.hdr."func(*image.Point, image.Rectangle) bool" (hgo.string."func(*image.Point, image.Rectangle) bool"hgo.string."func(*image.Point, image.Rectangle) bool"`Rfunc(*image.Point, image.Rectangle) boolNtype.func(*"".Point, "".Rectangle) bool30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.Point, image.Rectangle) bool"p`go.weak.type.*func(*"".Point, "".Rectangle) bool"runtime.zerovalueNtype.func(*"".Point, "".Rectangle) boolNtype.func(*"".Point, "".Rectangle) booltype.*"".Point"type."".Rectangletype.boolgo.typelink.func(*image.Point, image.Rectangle) bool func(*"".Point, "".Rectangle) boolNtype.func(*"".Point, "".Rectangle) bool~go.string.hdr."func(*image.Point, image.Rectangle) image.Point" /vgo.string."func(*image.Point, image.Rectangle) image.Point"vgo.string."func(*image.Point, image.Rectangle) image.Point"``func(*image.Point, image.Rectangle) image.PointVtype.func(*"".Point, "".Rectangle) "".Point30 runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(*image.Point, image.Rectangle) image.Point"phgo.weak.type.*func(*"".Point, "".Rectangle) "".Point"runtime.zerovalueVtype.func(*"".Point, "".Rectangle) "".PointVtype.func(*"".Point, "".Rectangle) "".Pointtype.*"".Point"type."".Rectangletype."".Pointgo.typelink.func(*image.Point, image.Rectangle) image.Point func(*"".Point, "".Rectangle) "".PointVtype.func(*"".Point, "".Rectangle) "".PointRgo.string.hdr."func(*image.Point) string" Jgo.string."func(*image.Point) string"Jgo.string."func(*image.Point) string"@4func(*image.Point) string6type.func(*"".Point) stringu30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(*image.Point) string"pHgo.weak.type.*func(*"".Point) string"runtime.zerovalue6type.func(*"".Point) string6type.func(*"".Point) stringtype.*"".Pointtype.stringxgo.typelink.func(*image.Point) string func(*"".Point) string6type.func(*"".Point) stringZgo.string.hdr."func(image.Point) image.Point" Rgo.string."func(image.Point) image.Point"Rgo.string."func(image.Point) image.Point"@type.func(*"".Rectangle) string_530 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(*image.Rectangle) string"pPgo.weak.type.*func(*"".Rectangle) string"runtime.zerovalue>type.func(*"".Rectangle) string>type.func(*"".Rectangle) string$type.*"".Rectangletype.stringgo.typelink.func(*image.Rectangle) string func(*"".Rectangle) string>type.func(*"".Rectangle) stringbgo.string.hdr."func(image.Point) image.Rectangle" !Zgo.string."func(image.Point) image.Rectangle"Zgo.string."func(image.Point) image.Rectangle"PDfunc(image.Point) image.Rectangle@type.func("".Point) "".RectanglemQ30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(image.Point) image.Rectangle"pRgo.weak.type.*func("".Point) "".Rectangle"runtime.zerovalue@type.func("".Point) "".Rectangle@type.func("".Point) "".Rectangletype."".Point"type."".Rectanglego.typelink.func(image.Point) image.Rectangle func("".Point) "".Rectangle@type.func("".Point) "".RectangleDgo.string.hdr."func() color.Model" type.func(*"".Rectangle) string ,"".(*Rectangle).String ,"".(*Rectangle).String &go.string.hdr."Sub" @type.func("".Point) "".Rectangle ^type.func(*"".Rectangle, "".Point) "".Rectangle &"".(*Rectangle).Sub &"".(*Rectangle).Sub *go.string.hdr."Union"Htype.func("".Rectangle) "".Rectangleftype.func(*"".Rectangle, "".Rectangle) "".Rectangle*"".(*Rectangle).Union*"".(*Rectangle).Union>go.string.hdr."image.Rectangle" 6go.string."image.Rectangle"6go.string."image.Rectangle" image.Rectangle&go.string.hdr."Min" go.string."Min"go.string."Min"Min&go.string.hdr."Max" go.string."Max"go.string."Max"Maxgo.string.hdr."func(image.Rectangle, image.Point) image.Rectangle" 2|go.string."func(image.Rectangle, image.Point) image.Rectangle"|go.string."func(image.Rectangle, image.Point) image.Rectangle"pffunc(image.Rectangle, image.Point) image.Rectangle\type.func("".Rectangle, "".Point) "".Rectangle30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(image.Rectangle, image.Point) image.Rectangle"pngo.weak.type.*func("".Rectangle, "".Point) "".Rectangle"runtime.zerovalue\type.func("".Rectangle, "".Point) "".Rectangle\type.func("".Rectangle, "".Point) "".Rectangle"type."".Rectangletype."".Point"type."".Rectanglego.typelink.func(image.Rectangle, image.Point) image.Rectangle func("".Rectangle, "".Point) "".Rectangle\type.func("".Rectangle, "".Point) "".Rectanglevgo.string.hdr."func(image.Rectangle, int, int) color.Color" +ngo.string."func(image.Rectangle, int, int) color.Color"ngo.string."func(image.Rectangle, int, int) color.Color"`Xfunc(image.Rectangle, int, int) color.Colorftype.func("".Rectangle, int, int) image/color.Color30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(image.Rectangle, int, int) color.Color"pxgo.weak.type.*func("".Rectangle, int, int) image/color.Color"runtime.zerovalueftype.func("".Rectangle, int, int) image/color.Colorftype.func("".Rectangle, int, int) image/color.Color"type."".Rectangletype.inttype.int,type.image/color.Colorgo.typelink.func(image.Rectangle, int, int) color.Color func("".Rectangle, int, int) image/color.Colorftype.func("".Rectangle, int, int) image/color.Colorbgo.string.hdr."func(image.Rectangle) color.Model" !Zgo.string."func(image.Rectangle) color.Model"Zgo.string."func(image.Rectangle) color.Model"PDfunc(image.Rectangle) color.ModelRtype.func("".Rectangle) image/color.Modela30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(image.Rectangle) color.Model"pdgo.weak.type.*func("".Rectangle) image/color.Model"runtime.zerovalueRtype.func("".Rectangle) image/color.ModelRtype.func("".Rectangle) image/color.Model"type."".Rectangle,type.image/color.Modelgo.typelink.func(image.Rectangle) color.Model func("".Rectangle) image/color.ModelRtype.func("".Rectangle) image/color.ModelRgo.string.hdr."func(image.Rectangle) int" Jgo.string."func(image.Rectangle) int"Jgo.string."func(image.Rectangle) int"@4func(image.Rectangle) int6type.func("".Rectangle) int9Y30 runtime.algarray@"runtime.gcbits.01PRgo.string.hdr."func(image.Rectangle) int"pHgo.weak.type.*func("".Rectangle) int"runtime.zerovalue6type.func("".Rectangle) int6type.func("".Rectangle) int"type."".Rectangletype.intxgo.typelink.func(image.Rectangle) int func("".Rectangle) int6type.func("".Rectangle) intvgo.string.hdr."func(image.Rectangle, image.Rectangle) bool" +ngo.string."func(image.Rectangle, image.Rectangle) bool"ngo.string."func(image.Rectangle, image.Rectangle) bool"`Xfunc(image.Rectangle, image.Rectangle) boolTtype.func("".Rectangle, "".Rectangle) bool830 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(image.Rectangle, image.Rectangle) bool"pfgo.weak.type.*func("".Rectangle, "".Rectangle) bool"runtime.zerovalueTtype.func("".Rectangle, "".Rectangle) boolTtype.func("".Rectangle, "".Rectangle) bool"type."".Rectangle"type."".Rectangletype.boolgo.typelink.func(image.Rectangle, image.Rectangle) bool func("".Rectangle, "".Rectangle) boolTtype.func("".Rectangle, "".Rectangle) booltgo.string.hdr."func(image.Rectangle, int) image.Rectangle" *lgo.string."func(image.Rectangle, int) image.Rectangle"lgo.string."func(image.Rectangle, int) image.Rectangle"`Vfunc(image.Rectangle, int) image.RectangleRtype.func("".Rectangle, int) "".Rectangle}d30 runtime.algarray@"runtime.gcbits.01Ptgo.string.hdr."func(image.Rectangle, int) image.Rectangle"pdgo.weak.type.*func("".Rectangle, int) "".Rectangle"runtime.zerovalueRtype.func("".Rectangle, int) "".RectangleRtype.func("".Rectangle, int) "".Rectangle"type."".Rectangletype.int"type."".Rectanglego.typelink.func(image.Rectangle, int) image.Rectangle func("".Rectangle, int) "".RectangleRtype.func("".Rectangle, int) "".Rectanglego.string.hdr."func(image.Rectangle, image.Rectangle) image.Rectangle" 6go.string."func(image.Rectangle, image.Rectangle) image.Rectangle"go.string."func(image.Rectangle, image.Rectangle) image.Rectangle"pnfunc(image.Rectangle, image.Rectangle) image.Rectangledtype.func("".Rectangle, "".Rectangle) "".RectangleM_E30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(image.Rectangle, image.Rectangle) image.Rectangle"pvgo.weak.type.*func("".Rectangle, "".Rectangle) "".Rectangle"runtime.zerovaluedtype.func("".Rectangle, "".Rectangle) "".Rectangledtype.func("".Rectangle, "".Rectangle) "".Rectangle"type."".Rectangle"type."".Rectangle"type."".Rectanglego.typelink.func(image.Rectangle, image.Rectangle) image.Rectangle func("".Rectangle, "".Rectangle) "".Rectangledtype.func("".Rectangle, "".Rectangle) "".RectangleXgo.string.hdr."func(image.Rectangle) string" Pgo.string."func(image.Rectangle) string"Pgo.string."func(image.Rectangle) string"@:func(image.Rectangle) stringgo.string.hdr."image.Rectangle"p$type.*"".Rectangle"runtime.zerovalue"type."".Rectangle&go.string.hdr."Min"type."".Point&go.string.hdr."Max"type."".Point`"type."".Rectangle2go.string.hdr."Rectangle""go.importpath.""."type."".Rectangle&go.string.hdr."Add"@type.func("".Point) "".Rectangle\type.func("".Rectangle, "".Point) "".Rectangle&"".(*Rectangle).Add "".Rectangle.Add$go.string.hdr."At"Jtype.func(int, int) image/color.Colorftype.func("".Rectangle, int, int) image/color.Color$"".(*Rectangle).At"".Rectangle.At,go.string.hdr."Bounds"0type.func() "".RectangleHtype.func("".Rectangle) "".Rectangle,"".(*Rectangle).Bounds&"".Rectangle.Bounds*go.string.hdr."Canon"0type.func() "".RectangleHtype.func("".Rectangle) "".Rectangle*"".(*Rectangle).Canon$"".Rectangle.Canon4go.string.hdr."ColorModel":type.func() image/color.ModelRtype.func("".Rectangle) image/color.Model4"".(*Rectangle).ColorModel."".Rectangle.ColorModel$go.string.hdr."Dx"type.func() int6type.func("".Rectangle) int$"".(*Rectangle).Dx"".Rectangle.Dx$go.string.hdr."Dy"type.func() int6type.func("".Rectangle) int$"".(*Rectangle).Dy"".Rectangle.Dy*go.string.hdr."Empty" type.func() bool 8type.func("".Rectangle) bool *"".(*Rectangle).Empty $"".Rectangle.Empty $go.string.hdr."Eq" 8type.func("".Rectangle) bool Ttype.func("".Rectangle, "".Rectangle) bool $"".(*Rectangle).Eq "".Rectangle.Eq $go.string.hdr."In" 8type.func("".Rectangle) bool Ttype.func("".Rectangle, "".Rectangle) bool $"".(*Rectangle).In "".Rectangle.In *go.string.hdr."Inset" 6type.func(int) "".Rectangle Rtype.func("".Rectangle, int) "".Rectangle *"".(*Rectangle).Inset $"".Rectangle.Inset 2go.string.hdr."Intersect" Htype.func("".Rectangle) "".Rectangle dtype.func("".Rectangle, "".Rectangle) "".Rectangle 2"".(*Rectangle).Intersect ,"".Rectangle.Intersect 0go.string.hdr."Overlaps" 8type.func("".Rectangle) bool Ttype.func("".Rectangle, "".Rectangle) bool 0"".(*Rectangle).Overlaps *"".Rectangle.Overlaps (go.string.hdr."Size" (type.func() "".Point @type.func("".Rectangle) "".Point ("".(*Rectangle).Size """.Rectangle.Size ,go.string.hdr."String"$type.func() stringtype.func(int) ([]uint8, error)type.func(int) ([]uint8, error)>type.func(int) ([]uint8, error)type.inttype.[]uint8type.errorgo.typelink.func(int) ([]uint8, error) func(int) ([]uint8, error)>type.func(int) ([]uint8, error)Tgo.string.hdr."func([]uint8) (int, error)" Lgo.string."func([]uint8) (int, error)"Lgo.string."func([]uint8) (int, error)"@6func([]uint8) (int, error)>type.func([]uint8) (int, error)N4P30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func([]uint8) (int, error)"pPgo.weak.type.*func([]uint8) (int, error)"runtime.zerovalue>type.func([]uint8) (int, error)>type.func([]uint8) (int, error)type.[]uint8type.inttype.errorgo.typelink.func([]uint8) (int, error) func([]uint8) (int, error)>type.func([]uint8) (int, error):go.string.hdr."*image.reader" 2go.string."*image.reader"2go.string."*image.reader" *image.readertype.*"".reader6 0 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."*image.reader"p0go.weak.type.**"".reader"runtime.zerovaluetype."".reader8go.string.hdr."image.reader" 0go.string."image.reader"0go.string."image.reader" image.reader(go.string.hdr."Peek"  go.string."Peek" go.string."Peek" Peek(go.string.hdr."Read"  go.string."Read" go.string."Read" Read,go.string.hdr."reader" $go.string."reader"$go.string."reader"readertype."".reader 0 runtime.algarray@"runtime.gcbits.03P8go.string.hdr."image.reader"ptype.*"".reader"runtime.zerovaluetype."".reader(go.string.hdr."Peek">type.func(int) ([]uint8, error)(go.string.hdr."Read">type.func([]uint8) (int, error)`type."".reader,go.string.hdr."reader""go.importpath."".type."".reader4go.string.hdr."image.RGBA" ,go.string."image.RGBA",go.string."image.RGBA" image.RGBA&go.string.hdr."Pix" go.string."Pix"go.string."Pix"Pix,go.string.hdr."Stride" $go.string."Stride"$go.string."Stride"Stride(go.string.hdr."Rect"  go.string."Rect" go.string."Rect" Rect(go.string.hdr."RGBA"  go.string."RGBA" go.string."RGBA" RGBAtype."".RGBA@>#V 0 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."image.RGBA"ptype.*"".RGBA"runtime.zerovaluetype."".RGBA&go.string.hdr."Pix"type.[]uint8,go.string.hdr."Stride"type.int(go.string.hdr."Rect""type."".Rectangle`type."".RGBA(go.string.hdr."RGBA""go.importpath."".type."".RGBA6go.string.hdr."*image.RGBA" .go.string."*image.RGBA".go.string."*image.RGBA" *image.RGBAngo.string.hdr."func(*image.RGBA, int, int) color.Color" 'fgo.string."func(*image.RGBA, int, int) color.Color"fgo.string."func(*image.RGBA, int, int) color.Color"PPfunc(*image.RGBA, int, int) color.Color^type.func(*"".RGBA, int, int) image/color.Color;30 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*image.RGBA, int, int) color.Color"ppgo.weak.type.*func(*"".RGBA, int, int) image/color.Color"runtime.zerovalue^type.func(*"".RGBA, int, int) image/color.Color^type.func(*"".RGBA, int, int) image/color.Colortype.*"".RGBAtype.inttype.int,type.image/color.Colorgo.typelink.func(*image.RGBA, int, int) color.Color func(*"".RGBA, int, int) image/color.Color^type.func(*"".RGBA, int, int) image/color.Colorbgo.string.hdr."func(*image.RGBA) image.Rectangle" !Zgo.string."func(*image.RGBA) image.Rectangle"Zgo.string."func(*image.RGBA) image.Rectangle"PDfunc(*image.RGBA) image.Rectangle@type.func(*"".RGBA) "".RectangleVbX 30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*image.RGBA) image.Rectangle"pRgo.weak.type.*func(*"".RGBA) "".Rectangle"runtime.zerovalue@type.func(*"".RGBA) "".Rectangle@type.func(*"".RGBA) "".Rectangletype.*"".RGBA"type."".Rectanglego.typelink.func(*image.RGBA) image.Rectangle func(*"".RGBA) "".Rectangle@type.func(*"".RGBA) "".RectangleZgo.string.hdr."func(*image.RGBA) color.Model" Rgo.string."func(*image.RGBA) color.Model"Rgo.string."func(*image.RGBA) color.Model"@La30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*image.NRGBA) image.Rectangle"pTgo.weak.type.*func(*"".NRGBA) "".Rectangle"runtime.zerovalueBtype.func(*"".NRGBA) "".RectangleBtype.func(*"".NRGBA) "".Rectangletype.*"".NRGBA"type."".Rectanglego.typelink.func(*image.NRGBA) image.Rectangle func(*"".NRGBA) "".RectangleBtype.func(*"".NRGBA) "".Rectangle\go.string.hdr."func(*image.NRGBA) color.Model" Tgo.string."func(*image.NRGBA) color.Model"Tgo.string."func(*image.NRGBA) color.Model"@>func(*image.NRGBA) color.ModelLtype.func(*"".NRGBA) image/color.Model@30 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(*image.NRGBA) color.Model"p^go.weak.type.*func(*"".NRGBA) image/color.Model"runtime.zerovalueLtype.func(*"".NRGBA) image/color.ModelLtype.func(*"".NRGBA) image/color.Modeltype.*"".NRGBA,type.image/color.Modelgo.typelink.func(*image.NRGBA) color.Model func(*"".NRGBA) image/color.ModelLtype.func(*"".NRGBA) image/color.Modelpgo.string.hdr."func(*image.NRGBA, int, int) color.NRGBA" (hgo.string."func(*image.NRGBA, int, int) color.NRGBA"hgo.string."func(*image.NRGBA, int, int) color.NRGBA"`Rfunc(*image.NRGBA, int, int) color.NRGBA`type.func(*"".NRGBA, int, int) image/color.NRGBA\30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.NRGBA, int, int) color.NRGBA"prgo.weak.type.*func(*"".NRGBA, int, int) image/color.NRGBA"runtime.zerovalue`type.func(*"".NRGBA, int, int) image/color.NRGBA`type.func(*"".NRGBA, int, int) image/color.NRGBAtype.*"".NRGBAtype.inttype.int,type.image/color.NRGBAgo.typelink.func(*image.NRGBA, int, int) color.NRGBA func(*"".NRGBA, int, int) image/color.NRGBA`type.func(*"".NRGBA, int, int) image/color.NRGBANgo.string.hdr."func(*image.NRGBA) bool" Fgo.string."func(*image.NRGBA) bool"Fgo.string."func(*image.NRGBA) bool"00func(*image.NRGBA) bool2type.func(*"".NRGBA) bool30 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func(*image.NRGBA) bool"pDgo.weak.type.*func(*"".NRGBA) bool"runtime.zerovalue2type.func(*"".NRGBA) bool2type.func(*"".NRGBA) booltype.*"".NRGBAtype.boolpgo.typelink.func(*image.NRGBA) bool func(*"".NRGBA) bool2type.func(*"".NRGBA) bool`go.string.hdr."func(*image.NRGBA, int, int) int" Xgo.string."func(*image.NRGBA, int, int) int"Xgo.string."func(*image.NRGBA, int, int) int"PBfunc(*image.NRGBA, int, int) intDtype.func(*"".NRGBA, int, int) int30 runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*image.NRGBA, int, int) int"pVgo.weak.type.*func(*"".NRGBA, int, int) int"runtime.zerovalueDtype.func(*"".NRGBA, int, int) intDtype.func(*"".NRGBA, int, int) inttype.*"".NRGBAtype.inttype.inttype.intgo.typelink.func(*image.NRGBA, int, int) int func(*"".NRGBA, int, int) intDtype.func(*"".NRGBA, int, int) intrgo.string.hdr."func(*image.NRGBA, int, int, color.Color)" )jgo.string."func(*image.NRGBA, int, int, color.Color)"jgo.string."func(*image.NRGBA, int, int, color.Color)"`Tfunc(*image.NRGBA, int, int, color.Color)btype.func(*"".NRGBA, int, int, image/color.Color)ݻ30 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*image.NRGBA, int, int, color.Color)"ptgo.weak.type.*func(*"".NRGBA, int, int, image/color.Color)"runtime.zerovaluebtype.func(*"".NRGBA, int, int, image/color.Color)btype.func(*"".NRGBA, int, int, image/color.Color)type.*"".NRGBAtype.inttype.int,type.image/color.Colorgo.typelink.func(*image.NRGBA, int, int, color.Color) func(*"".NRGBA, int, int, image/color.Color)btype.func(*"".NRGBA, int, int, image/color.Color)rgo.string.hdr."func(*image.NRGBA, int, int, color.NRGBA)" )jgo.string."func(*image.NRGBA, int, int, color.NRGBA)"jgo.string."func(*image.NRGBA, int, int, color.NRGBA)"`Tfunc(*image.NRGBA, int, int, color.NRGBA)btype.func(*"".NRGBA, int, int, image/color.NRGBA)ƛ30 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*image.NRGBA, int, int, color.NRGBA)"ptgo.weak.type.*func(*"".NRGBA, int, int, image/color.NRGBA)"runtime.zerovaluebtype.func(*"".NRGBA, int, int, image/color.NRGBA)btype.func(*"".NRGBA, int, int, image/color.NRGBA)type.*"".NRGBAtype.inttype.int,type.image/color.NRGBAgo.typelink.func(*image.NRGBA, int, int, color.NRGBA) func(*"".NRGBA, int, int, image/color.NRGBA)btype.func(*"".NRGBA, int, int, image/color.NRGBA)~go.string.hdr."func(*image.NRGBA, image.Rectangle) image.Image" /vgo.string."func(*image.NRGBA, image.Rectangle) image.Image"vgo.string."func(*image.NRGBA, image.Rectangle) image.Image"``func(*image.NRGBA, image.Rectangle) image.ImageVtype.func(*"".NRGBA, "".Rectangle) "".ImageDrӂ30 runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(*image.NRGBA, image.Rectangle) image.Image"phgo.weak.type.*func(*"".NRGBA, "".Rectangle) "".Image"runtime.zerovalueVtype.func(*"".NRGBA, "".Rectangle) "".ImageVtype.func(*"".NRGBA, "".Rectangle) "".Imagetype.*"".NRGBA"type."".Rectangletype."".Imagego.typelink.func(*image.NRGBA, image.Rectangle) image.Image func(*"".NRGBA, "".Rectangle) "".ImageVtype.func(*"".NRGBA, "".Rectangle) "".Image.go.string.hdr."NRGBAAt" &go.string."NRGBAAt"&go.string."NRGBAAt"NRGBAAtTgo.string.hdr."func(int, int) color.NRGBA" Lgo.string."func(int, int) color.NRGBA"Lgo.string."func(int, int) color.NRGBA"@6func(int, int) color.NRGBAJtype.func(int, int) image/color.NRGBA 30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int, int) color.NRGBA"p\go.weak.type.*func(int, int) image/color.NRGBA"runtime.zerovalueJtype.func(int, int) image/color.NRGBAJtype.func(int, int) image/color.NRGBAtype.inttype.int,type.image/color.NRGBAgo.typelink.func(int, int) color.NRGBA func(int, int) image/color.NRGBAJtype.func(int, int) image/color.NRGBA0go.string.hdr."SetNRGBA" (go.string."SetNRGBA"(go.string."SetNRGBA" SetNRGBAVgo.string.hdr."func(int, int, color.NRGBA)" Ngo.string."func(int, int, color.NRGBA)"Ngo.string."func(int, int, color.NRGBA)"@8func(int, int, color.NRGBA)Ltype.func(int, int, image/color.NRGBA) 30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(int, int, color.NRGBA)"p^go.weak.type.*func(int, int, image/color.NRGBA)"runtime.zerovalueLtype.func(int, int, image/color.NRGBA)Ltype.func(int, int, image/color.NRGBA)type.inttype.int,type.image/color.NRGBAgo.typelink.func(int, int, color.NRGBA) func(int, int, image/color.NRGBA)Ltype.func(int, int, image/color.NRGBA)type.*"".NRGBA*6 j0 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*image.NRGBA"p.go.weak.type.**"".NRGBA"runtime.zerovaluetype."".NRGBA`type.*"".NRGBAtype.*"".NRGBA$go.string.hdr."At"Jtype.func(int, int) image/color.Color`type.func(*"".NRGBA, int, int) image/color.Color"".(*NRGBA).At"".(*NRGBA).At,go.string.hdr."Bounds"0type.func() "".RectangleBtype.func(*"".NRGBA) "".Rectangle$"".(*NRGBA).Bounds$"".(*NRGBA).Bounds4go.string.hdr."ColorModel":type.func() image/color.ModelLtype.func(*"".NRGBA) image/color.Model,"".(*NRGBA).ColorModel,"".(*NRGBA).ColorModel.go.string.hdr."NRGBAAt"Jtype.func(int, int) image/color.NRGBA`type.func(*"".NRGBA, int, int) image/color.NRGBA&"".(*NRGBA).NRGBAAt&"".(*NRGBA).NRGBAAt,go.string.hdr."Opaque" type.func() bool2type.func(*"".NRGBA) bool$"".(*NRGBA).Opaque$"".(*NRGBA).Opaque2go.string.hdr."PixOffset".type.func(int, int) intDtype.func(*"".NRGBA, int, int) int*"".(*NRGBA).PixOffset*"".(*NRGBA).PixOffset&go.string.hdr."Set"Ltype.func(int, int, image/color.Color)btype.func(*"".NRGBA, int, int, image/color.Color)"".(*NRGBA).Set"".(*NRGBA).Set0go.string.hdr."SetNRGBA"Ltype.func(int, int, image/color.NRGBA)btype.func(*"".NRGBA, int, int, image/color.NRGBA)("".(*NRGBA).SetNRGBA("".(*NRGBA).SetNRGBA0go.string.hdr."SubImage"@type.func("".Rectangle) "".ImageVtype.func(*"".NRGBA, "".Rectangle) "".Image("".(*NRGBA).SubImage("".(*NRGBA).SubImage:go.string.hdr."image.NRGBA64" 2go.string."image.NRGBA64"2go.string."image.NRGBA64" image.NRGBA64.go.string.hdr."NRGBA64" &go.string."NRGBA64"&go.string."NRGBA64"NRGBA64type."".NRGBA64@r 0 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."image.NRGBA64"p type.*"".NRGBA64"runtime.zerovaluetype."".NRGBA64&go.string.hdr."Pix"type.[]uint8,go.string.hdr."Stride"type.int(go.string.hdr."Rect""type."".Rectangle`type."".NRGBA64.go.string.hdr."NRGBA64""go.importpath."".type."".NRGBA6430 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.Alpha, int, int) color.Alpha"prgo.weak.type.*func(*"".Alpha, int, int) image/color.Alpha"runtime.zerovalue`type.func(*"".Alpha, int, int) image/color.Alpha`type.func(*"".Alpha, int, int) image/color.Alphatype.*"".Alphatype.inttype.int,type.image/color.Alphago.typelink.func(*image.Alpha, int, int) color.Alpha func(*"".Alpha, int, int) image/color.Alpha`type.func(*"".Alpha, int, int) image/color.Alphapgo.string.hdr."func(*image.Alpha, int, int) color.Color" (hgo.string."func(*image.Alpha, int, int) color.Color"hgo.string."func(*image.Alpha, int, int) color.Color"`Rfunc(*image.Alpha, int, int) color.Color`type.func(*"".Alpha, int, int) image/color.Colordf30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.Alpha, int, int) color.Color"prgo.weak.type.*func(*"".Alpha, int, int) image/color.Color"runtime.zerovalue`type.func(*"".Alpha, int, int) image/color.Color`type.func(*"".Alpha, int, int) image/color.Colortype.*"".Alphatype.inttype.int,type.image/color.Colorgo.typelink.func(*image.Alpha, int, int) color.Color func(*"".Alpha, int, int) image/color.Color`type.func(*"".Alpha, int, int) image/color.Colordgo.string.hdr."func(*image.Alpha) image.Rectangle" "\go.string."func(*image.Alpha) image.Rectangle"\go.string."func(*image.Alpha) image.Rectangle"PFfunc(*image.Alpha) image.RectangleBtype.func(*"".Alpha) "".Rectangleӓt30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*image.Alpha) image.Rectangle"pTgo.weak.type.*func(*"".Alpha) "".Rectangle"runtime.zerovalueBtype.func(*"".Alpha) "".RectangleBtype.func(*"".Alpha) "".Rectangletype.*"".Alpha"type."".Rectanglego.typelink.func(*image.Alpha) image.Rectangle func(*"".Alpha) "".RectangleBtype.func(*"".Alpha) "".Rectangle\go.string.hdr."func(*image.Alpha) color.Model" Tgo.string."func(*image.Alpha) color.Model"Tgo.string."func(*image.Alpha) color.Model"@>func(*image.Alpha) color.ModelLtype.func(*"".Alpha) image/color.ModelY30 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(*image.Alpha) color.Model"p^go.weak.type.*func(*"".Alpha) image/color.Model"runtime.zerovalueLtype.func(*"".Alpha) image/color.ModelLtype.func(*"".Alpha) image/color.Modeltype.*"".Alpha,type.image/color.Modelgo.typelink.func(*image.Alpha) color.Model func(*"".Alpha) image/color.ModelLtype.func(*"".Alpha) image/color.ModelNgo.string.hdr."func(*image.Alpha) bool" Fgo.string."func(*image.Alpha) bool"Fgo.string."func(*image.Alpha) bool"00func(*image.Alpha) bool2type.func(*"".Alpha) boolgPO30 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func(*image.Alpha) bool"pDgo.weak.type.*func(*"".Alpha) bool"runtime.zerovalue2type.func(*"".Alpha) bool2type.func(*"".Alpha) booltype.*"".Alphatype.boolpgo.typelink.func(*image.Alpha) bool func(*"".Alpha) bool2type.func(*"".Alpha) bool`go.string.hdr."func(*image.Alpha, int, int) int" Xgo.string."func(*image.Alpha, int, int) int"Xgo.string."func(*image.Alpha, int, int) int"PBfunc(*image.Alpha, int, int) intDtype.func(*"".Alpha, int, int) intw30 runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*image.Alpha, int, int) int"pVgo.weak.type.*func(*"".Alpha, int, int) int"runtime.zerovalueDtype.func(*"".Alpha, int, int) intDtype.func(*"".Alpha, int, int) inttype.*"".Alphatype.inttype.inttype.intgo.typelink.func(*image.Alpha, int, int) int func(*"".Alpha, int, int) intDtype.func(*"".Alpha, int, int) intrgo.string.hdr."func(*image.Alpha, int, int, color.Color)" )jgo.string."func(*image.Alpha, int, int, color.Color)"jgo.string."func(*image.Alpha, int, int, color.Color)"`Tfunc(*image.Alpha, int, int, color.Color)btype.func(*"".Alpha, int, int, image/color.Color)}30 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*image.Alpha, int, int, color.Color)"ptgo.weak.type.*func(*"".Alpha, int, int, image/color.Color)"runtime.zerovaluebtype.func(*"".Alpha, int, int, image/color.Color)btype.func(*"".Alpha, int, int, image/color.Color)type.*"".Alphatype.inttype.int,type.image/color.Colorgo.typelink.func(*image.Alpha, int, int, color.Color) func(*"".Alpha, int, int, image/color.Color)btype.func(*"".Alpha, int, int, image/color.Color)rgo.string.hdr."func(*image.Alpha, int, int, color.Alpha)" )jgo.string."func(*image.Alpha, int, int, color.Alpha)"jgo.string."func(*image.Alpha, int, int, color.Alpha)"`Tfunc(*image.Alpha, int, int, color.Alpha)btype.func(*"".Alpha, int, int, image/color.Alpha)L130 runtime.algarray@"runtime.gcbits.01Prgo.string.hdr."func(*image.Alpha, int, int, color.Alpha)"ptgo.weak.type.*func(*"".Alpha, int, int, image/color.Alpha)"runtime.zerovaluebtype.func(*"".Alpha, int, int, image/color.Alpha)btype.func(*"".Alpha, int, int, image/color.Alpha)type.*"".Alphatype.inttype.int,type.image/color.Alphago.typelink.func(*image.Alpha, int, int, color.Alpha) func(*"".Alpha, int, int, image/color.Alpha)btype.func(*"".Alpha, int, int, image/color.Alpha)~go.string.hdr."func(*image.Alpha, image.Rectangle) image.Image" /vgo.string."func(*image.Alpha, image.Rectangle) image.Image"vgo.string."func(*image.Alpha, image.Rectangle) image.Image"``func(*image.Alpha, image.Rectangle) image.ImageVtype.func(*"".Alpha, "".Rectangle) "".Imageۀ30 runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(*image.Alpha, image.Rectangle) image.Image"phgo.weak.type.*func(*"".Alpha, "".Rectangle) "".Image"runtime.zerovalueVtype.func(*"".Alpha, "".Rectangle) "".ImageVtype.func(*"".Alpha, "".Rectangle) "".Imagetype.*"".Alpha"type."".Rectangletype."".Imagego.typelink.func(*image.Alpha, image.Rectangle) image.Image func(*"".Alpha, "".Rectangle) "".ImageVtype.func(*"".Alpha, "".Rectangle) "".Image.go.string.hdr."AlphaAt" &go.string."AlphaAt"&go.string."AlphaAt"AlphaAtTgo.string.hdr."func(int, int) color.Alpha" Lgo.string."func(int, int) color.Alpha"Lgo.string."func(int, int) color.Alpha"@6func(int, int) color.AlphaJtype.func(int, int) image/color.Alphat=30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int, int) color.Alpha"p\go.weak.type.*func(int, int) image/color.Alpha"runtime.zerovalueJtype.func(int, int) image/color.AlphaJtype.func(int, int) image/color.Alphatype.inttype.int,type.image/color.Alphago.typelink.func(int, int) color.Alpha func(int, int) image/color.AlphaJtype.func(int, int) image/color.Alpha0go.string.hdr."SetAlpha" (go.string."SetAlpha"(go.string."SetAlpha" SetAlphaVgo.string.hdr."func(int, int, color.Alpha)" Ngo.string."func(int, int, color.Alpha)"Ngo.string."func(int, int, color.Alpha)"@8func(int, int, color.Alpha)Ltype.func(int, int, image/color.Alpha)5CP30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func(int, int, color.Alpha)"p^go.weak.type.*func(int, int, image/color.Alpha)"runtime.zerovalueLtype.func(int, int, image/color.Alpha)Ltype.func(int, int, image/color.Alpha)type.inttype.int,type.image/color.Alphago.typelink.func(int, int, color.Alpha) func(int, int, image/color.Alpha)Ltype.func(int, int, image/color.Alpha)type.*"".Alphaܸ6 j0 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*image.Alpha"p.go.weak.type.**"".Alpha"runtime.zerovaluetype."".Alpha`type.*"".Alphatype.*"".Alpha.go.string.hdr."AlphaAt"Jtype.func(int, int) image/color.Alpha`type.func(*"".Alpha, int, int) image/color.Alpha&"".(*Alpha).AlphaAt&"".(*Alpha).AlphaAt$go.string.hdr."At"Jtype.func(int, int) image/color.Color`type.func(*"".Alpha, int, int) image/color.Color"".(*Alpha).At"".(*Alpha).At,go.string.hdr."Bounds"0type.func() "".RectangleBtype.func(*"".Alpha) "".Rectangle$"".(*Alpha).Bounds$"".(*Alpha).Bounds4go.string.hdr."ColorModel":type.func() image/color.ModelLtype.func(*"".Alpha) image/color.Model,"".(*Alpha).ColorModel,"".(*Alpha).ColorModel,go.string.hdr."Opaque" type.func() bool2type.func(*"".Alpha) bool$"".(*Alpha).Opaque$"".(*Alpha).Opaque2go.string.hdr."PixOffset".type.func(int, int) intDtype.func(*"".Alpha, int, int) int*"".(*Alpha).PixOffset*"".(*Alpha).PixOffset&go.string.hdr."Set"Ltype.func(int, int, image/color.Color)btype.func(*"".Alpha, int, int, image/color.Color)"".(*Alpha).Set"".(*Alpha).Set0go.string.hdr."SetAlpha"Ltype.func(int, int, image/color.Alpha)btype.func(*"".Alpha, int, int, image/color.Alpha)("".(*Alpha).SetAlpha("".(*Alpha).SetAlpha0go.string.hdr."SubImage"@type.func("".Rectangle) "".ImageVtype.func(*"".Alpha, "".Rectangle) "".Image("".(*Alpha).SubImage("".(*Alpha).SubImage:go.string.hdr."image.Alpha16" 2go.string."image.Alpha16"2go.string."image.Alpha16" image.Alpha16.go.string.hdr."Alpha16" &go.string."Alpha16"&go.string."Alpha16"Alpha16type."".Alpha16@D{ 0 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."image.Alpha16"p type.*"".Alpha16"runtime.zerovaluetype."".Alpha16&go.string.hdr."Pix"type.[]uint8,go.string.hdr."Stride"type.int(go.string.hdr."Rect""type."".Rectangle`type."".Alpha16.go.string.hdr."Alpha16""go.importpath."".type."".Alpha161 0 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."image.Gray"ptype.*"".Gray"runtime.zerovaluetype."".Gray&go.string.hdr."Pix"type.[]uint8,go.string.hdr."Stride"type.int(go.string.hdr."Rect""type."".Rectangle`type."".Gray(go.string.hdr."Gray""go.importpath."".type."".Gray6go.string.hdr."*image.Gray" .go.string."*image.Gray".go.string."*image.Gray" *image.Grayngo.string.hdr."func(*image.Gray, int, int) color.Color" 'fgo.string."func(*image.Gray, int, int) color.Color"fgo.string."func(*image.Gray, int, int) color.Color"PPfunc(*image.Gray, int, int) color.Color^type.func(*"".Gray, int, int) image/color.Color9kK30 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*image.Gray, int, int) color.Color"ppgo.weak.type.*func(*"".Gray, int, int) image/color.Color"runtime.zerovalue^type.func(*"".Gray, int, int) image/color.Color^type.func(*"".Gray, int, int) image/color.Colortype.*"".Graytype.inttype.int,type.image/color.Colorgo.typelink.func(*image.Gray, int, int) color.Color func(*"".Gray, int, int) image/color.Color^type.func(*"".Gray, int, int) image/color.Colorbgo.string.hdr."func(*image.Gray) image.Rectangle" !Zgo.string."func(*image.Gray) image.Rectangle"Zgo.string."func(*image.Gray) image.Rectangle"PDfunc(*image.Gray) image.Rectangle@type.func(*"".Gray) "".Rectanglee30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*image.Gray) image.Rectangle"pRgo.weak.type.*func(*"".Gray) "".Rectangle"runtime.zerovalue@type.func(*"".Gray) "".Rectangle@type.func(*"".Gray) "".Rectangletype.*"".Gray"type."".Rectanglego.typelink.func(*image.Gray) image.Rectangle func(*"".Gray) "".Rectangle@type.func(*"".Gray) "".RectangleZgo.string.hdr."func(*image.Gray) color.Model" Rgo.string."func(*image.Gray) color.Model"Rgo.string."func(*image.Gray) color.Model"@go.string.hdr."*image.Paletted" 6go.string."*image.Paletted"6go.string."*image.Paletted" *image.Palettedvgo.string.hdr."func(*image.Paletted, int, int) color.Color" +ngo.string."func(*image.Paletted, int, int) color.Color"ngo.string."func(*image.Paletted, int, int) color.Color"`Xfunc(*image.Paletted, int, int) color.Colorftype.func(*"".Paletted, int, int) image/color.Color_|r30 runtime.algarray@"runtime.gcbits.01Pvgo.string.hdr."func(*image.Paletted, int, int) color.Color"pxgo.weak.type.*func(*"".Paletted, int, int) image/color.Color"runtime.zerovalueftype.func(*"".Paletted, int, int) image/color.Colorftype.func(*"".Paletted, int, int) image/color.Color"type.*"".Palettedtype.inttype.int,type.image/color.Colorgo.typelink.func(*image.Paletted, int, int) color.Color func(*"".Paletted, int, int) image/color.Colorftype.func(*"".Paletted, int, int) image/color.Colorjgo.string.hdr."func(*image.Paletted) image.Rectangle" %bgo.string."func(*image.Paletted) image.Rectangle"bgo.string."func(*image.Paletted) image.Rectangle"PLfunc(*image.Paletted) image.RectangleHtype.func(*"".Paletted) "".RectanglebO30 runtime.algarray@"runtime.gcbits.01Pjgo.string.hdr."func(*image.Paletted) image.Rectangle"pZgo.weak.type.*func(*"".Paletted) "".Rectangle"runtime.zerovalueHtype.func(*"".Paletted) "".RectangleHtype.func(*"".Paletted) "".Rectangle"type.*"".Paletted"type."".Rectanglego.typelink.func(*image.Paletted) image.Rectangle func(*"".Paletted) "".RectangleHtype.func(*"".Paletted) "".Rectanglejgo.string.hdr."func(*image.Paletted, int, int) uint8" %bgo.string."func(*image.Paletted, int, int) uint8"bgo.string."func(*image.Paletted, int, int) uint8"PLfunc(*image.Paletted, int, int) uint8Ntype.func(*"".Paletted, int, int) uint8S)30 runtime.algarray@"runtime.gcbits.01Pjgo.string.hdr."func(*image.Paletted, int, int) uint8"p`go.weak.type.*func(*"".Paletted, int, int) uint8"runtime.zerovalueNtype.func(*"".Paletted, int, int) uint8Ntype.func(*"".Paletted, int, int) uint8"type.*"".Palettedtype.inttype.inttype.uint8go.typelink.func(*image.Paletted, int, int) uint8 func(*"".Paletted, int, int) uint8Ntype.func(*"".Paletted, int, int) uint8bgo.string.hdr."func(*image.Paletted) color.Model" !Zgo.string."func(*image.Paletted) color.Model"Zgo.string."func(*image.Paletted) color.Model"PDfunc(*image.Paletted) color.ModelRtype.func(*"".Paletted) image/color.Model30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*image.Paletted) color.Model"pdgo.weak.type.*func(*"".Paletted) image/color.Model"runtime.zerovalueRtype.func(*"".Paletted) image/color.ModelRtype.func(*"".Paletted) image/color.Model"type.*"".Paletted,type.image/color.Modelgo.typelink.func(*image.Paletted) color.Model func(*"".Paletted) image/color.ModelRtype.func(*"".Paletted) image/color.ModelTgo.string.hdr."func(*image.Paletted) bool" Lgo.string."func(*image.Paletted) bool"Lgo.string."func(*image.Paletted) bool"@6func(*image.Paletted) bool8type.func(*"".Paletted) boolmk30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(*image.Paletted) bool"pJgo.weak.type.*func(*"".Paletted) bool"runtime.zerovalue8type.func(*"".Paletted) bool8type.func(*"".Paletted) bool"type.*"".Palettedtype.bool|go.typelink.func(*image.Paletted) bool func(*"".Paletted) bool8type.func(*"".Paletted) boolfgo.string.hdr."func(*image.Paletted, int, int) int" #^go.string."func(*image.Paletted, int, int) int"^go.string."func(*image.Paletted, int, int) int"PHfunc(*image.Paletted, int, int) intJtype.func(*"".Paletted, int, int) int KL30 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(*image.Paletted, int, int) int"p\go.weak.type.*func(*"".Paletted, int, int) int"runtime.zerovalueJtype.func(*"".Paletted, int, int) intJtype.func(*"".Paletted, int, int) int"type.*"".Palettedtype.inttype.inttype.intgo.typelink.func(*image.Paletted, int, int) int func(*"".Paletted, int, int) intJtype.func(*"".Paletted, int, int) intxgo.string.hdr."func(*image.Paletted, int, int, color.Color)" ,pgo.string."func(*image.Paletted, int, int, color.Color)"pgo.string."func(*image.Paletted, int, int, color.Color)"`Zfunc(*image.Paletted, int, int, color.Color)htype.func(*"".Paletted, int, int, image/color.Color)q30 runtime.algarray@"runtime.gcbits.01Pxgo.string.hdr."func(*image.Paletted, int, int, color.Color)"pzgo.weak.type.*func(*"".Paletted, int, int, image/color.Color)"runtime.zerovaluehtype.func(*"".Paletted, int, int, image/color.Color)htype.func(*"".Paletted, int, int, image/color.Color)"type.*"".Palettedtype.inttype.int,type.image/color.Colorgo.typelink.func(*image.Paletted, int, int, color.Color) func(*"".Paletted, int, int, image/color.Color)htype.func(*"".Paletted, int, int, image/color.Color)lgo.string.hdr."func(*image.Paletted, int, int, uint8)" &dgo.string."func(*image.Paletted, int, int, uint8)"dgo.string."func(*image.Paletted, int, int, uint8)"PNfunc(*image.Paletted, int, int, uint8)Ptype.func(*"".Paletted, int, int, uint8)30 runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(*image.Paletted, int, int, uint8)"pbgo.weak.type.*func(*"".Paletted, int, int, uint8)"runtime.zerovaluePtype.func(*"".Paletted, int, int, uint8)Ptype.func(*"".Paletted, int, int, uint8)"type.*"".Palettedtype.inttype.inttype.uint8go.typelink.func(*image.Paletted, int, int, uint8) func(*"".Paletted, int, int, uint8)Ptype.func(*"".Paletted, int, int, uint8)go.string.hdr."func(*image.Paletted, image.Rectangle) image.Image" 2|go.string."func(*image.Paletted, image.Rectangle) image.Image"|go.string."func(*image.Paletted, image.Rectangle) image.Image"pffunc(*image.Paletted, image.Rectangle) image.Image\type.func(*"".Paletted, "".Rectangle) "".Imagem30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*image.Paletted, image.Rectangle) image.Image"pngo.weak.type.*func(*"".Paletted, "".Rectangle) "".Image"runtime.zerovalue\type.func(*"".Paletted, "".Rectangle) "".Image\type.func(*"".Paletted, "".Rectangle) "".Image"type.*"".Paletted"type."".Rectangletype."".Imagego.typelink.func(*image.Paletted, image.Rectangle) image.Image func(*"".Paletted, "".Rectangle) "".Image\type.func(*"".Paletted, "".Rectangle) "".Image8go.string.hdr."ColorIndexAt" 0go.string."ColorIndexAt"0go.string."ColorIndexAt" ColorIndexAtHgo.string.hdr."func(int, int) uint8" @go.string."func(int, int) uint8"@go.string."func(int, int) uint8"0*func(int, int) uint82type.func(int, int) uint8Jc_30 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."func(int, int) uint8"pDgo.weak.type.*func(int, int) uint8"runtime.zerovalue2type.func(int, int) uint82type.func(int, int) uint8type.inttype.inttype.uint8jgo.typelink.func(int, int) uint8 func(int, int) uint82type.func(int, int) uint8:go.string.hdr."SetColorIndex" 2go.string."SetColorIndex"2go.string."SetColorIndex" SetColorIndexJgo.string.hdr."func(int, int, uint8)" Bgo.string."func(int, int, uint8)"Bgo.string."func(int, int, uint8)"0,func(int, int, uint8)4type.func(int, int, uint8)l30 runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."func(int, int, uint8)"pFgo.weak.type.*func(int, int, uint8)"runtime.zerovalue4type.func(int, int, uint8)4type.func(int, int, uint8)type.inttype.inttype.uint8ngo.typelink.func(int, int, uint8) func(int, int, uint8)4type.func(int, int, uint8)"type.*"".PalettedNY6 j0 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."*image.Paletted"p4go.weak.type.**"".Paletted"runtime.zerovalue type."".Paletted`"type.*"".Paletted"type.*"".Paletted$go.string.hdr."At"Jtype.func(int, int) image/color.Colorftype.func(*"".Paletted, int, int) image/color.Color""".(*Paletted).At""".(*Paletted).At,go.string.hdr."Bounds"0type.func() "".RectangleHtype.func(*"".Paletted) "".Rectangle*"".(*Paletted).Bounds*"".(*Paletted).Bounds8go.string.hdr."ColorIndexAt"2type.func(int, int) uint8Ntype.func(*"".Paletted, int, int) uint86"".(*Paletted).ColorIndexAt6"".(*Paletted).ColorIndexAt4go.string.hdr."ColorModel":type.func() image/color.ModelRtype.func(*"".Paletted) image/color.Model2"".(*Paletted).ColorModel2"".(*Paletted).ColorModel,go.string.hdr."Opaque" type.func() bool8type.func(*"".Paletted) bool*"".(*Paletted).Opaque*"".(*Paletted).Opaque2go.string.hdr."PixOffset".type.func(int, int) intJtype.func(*"".Paletted, int, int) int0"".(*Paletted).PixOffset0"".(*Paletted).PixOffset&go.string.hdr."Set"Ltype.func(int, int, image/color.Color)htype.func(*"".Paletted, int, int, image/color.Color)$"".(*Paletted).Set$"".(*Paletted).Set:go.string.hdr."SetColorIndex"4type.func(int, int, uint8)Ptype.func(*"".Paletted, int, int, uint8)8"".(*Paletted).SetColorIndex8"".(*Paletted).SetColorIndex0go.string.hdr."SubImage"@type.func("".Rectangle) "".Image\type.func(*"".Paletted, "".Rectangle) "".Image."".(*Paletted).SubImage."".(*Paletted).SubImage,go.string.hdr."[]bool" $go.string."[]bool"$go.string."[]bool"[]booltype.[]bool 0 runtime.algarray@"runtime.gcbits.01P,go.string.hdr."[]bool"p(go.weak.type.*[]bool"runtime.zerovaluetype.bool2go.typelink.[]bool []booltype.[]bool"type..hashfunc256 ,runtime.memhash_varlentype..eqfunc256 .runtime.memequal_varlentype..alg256 "type..hashfunc256type..eqfunc2562go.string.hdr."[256]bool" *go.string."[256]bool"*go.string."[256]bool" [256]booltype.[256]bool'k0type..alg256@runtime.gcbits.P2go.string.hdr."[256]bool"p.go.weak.type.*[256]bool"runtime.zerovaluetype.booltype.[]bool>go.typelink.[256]bool [256]booltype.[256]bool:go.string.hdr."image.Uniform" 2go.string."image.Uniform"2go.string."image.Uniform" image.Uniform"go.string.hdr."C" go.string."C"go.string."C"C.go.string.hdr."Uniform" &go.string."Uniform"&go.string."Uniform"Uniformtype."".Uniform=0 runtime.algarray@"runtime.gcbits.03P:go.string.hdr."image.Uniform"p type.*"".Uniform"runtime.zerovaluetype."".Uniform"go.string.hdr."C",type.image/color.Color`type."".Uniform.go.string.hdr."Uniform""go.importpath."".type."".Uniformgo.string."YCbCrSubsampleRatio">go.string."YCbCrSubsampleRatio"0(YCbCrSubsampleRatioTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2ngo.string.hdr."func(*image.YCbCrSubsampleRatio) string" 'fgo.string."func(*image.YCbCrSubsampleRatio) string"fgo.string."func(*image.YCbCrSubsampleRatio) string"PPfunc(*image.YCbCrSubsampleRatio) stringRtype.func(*"".YCbCrSubsampleRatio) stringu!Ad30 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*image.YCbCrSubsampleRatio) string"pdgo.weak.type.*func(*"".YCbCrSubsampleRatio) string"runtime.zerovalueRtype.func(*"".YCbCrSubsampleRatio) stringRtype.func(*"".YCbCrSubsampleRatio) string8type.*"".YCbCrSubsampleRatiotype.stringgo.typelink.func(*image.YCbCrSubsampleRatio) string func(*"".YCbCrSubsampleRatio) stringRtype.func(*"".YCbCrSubsampleRatio) string8type.*"".YCbCrSubsampleRatio&60 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."*image.YCbCrSubsampleRatio"pJgo.weak.type.**"".YCbCrSubsampleRatio"runtime.zerovalue6type."".YCbCrSubsampleRatio`8type.*"".YCbCrSubsampleRatio8type.*"".YCbCrSubsampleRatio,go.string.hdr."String"$type.func() stringRtype.func(*"".YCbCrSubsampleRatio) string@"".(*YCbCrSubsampleRatio).String@"".(*YCbCrSubsampleRatio).StringRgo.string.hdr."image.YCbCrSubsampleRatio" Jgo.string."image.YCbCrSubsampleRatio"Jgo.string."image.YCbCrSubsampleRatio"@4image.YCbCrSubsampleRatiolgo.string.hdr."func(image.YCbCrSubsampleRatio) string" &dgo.string."func(image.YCbCrSubsampleRatio) string"dgo.string."func(image.YCbCrSubsampleRatio) string"PNfunc(image.YCbCrSubsampleRatio) stringPtype.func("".YCbCrSubsampleRatio) stringO30 runtime.algarray@"runtime.gcbits.01Plgo.string.hdr."func(image.YCbCrSubsampleRatio) string"pbgo.weak.type.*func("".YCbCrSubsampleRatio) string"runtime.zerovaluePtype.func("".YCbCrSubsampleRatio) stringPtype.func("".YCbCrSubsampleRatio) string6type."".YCbCrSubsampleRatiotype.stringgo.typelink.func(image.YCbCrSubsampleRatio) string func("".YCbCrSubsampleRatio) stringPtype.func("".YCbCrSubsampleRatio) string6type."".YCbCrSubsampleRatioX)0 runtime.algarray@runtime.gcbits.PRgo.string.hdr."image.YCbCrSubsampleRatio"p8type.*"".YCbCrSubsampleRatio"runtime.zerovalue`6type."".YCbCrSubsampleRatioFgo.string.hdr."YCbCrSubsampleRatio""go.importpath."".6type."".YCbCrSubsampleRatio,go.string.hdr."String"$type.func() stringPtype.func("".YCbCrSubsampleRatio) string@"".(*YCbCrSubsampleRatio).String:"".YCbCrSubsampleRatio.String"runtime.gcbits.49I6go.string.hdr."image.YCbCr" .go.string."image.YCbCr".go.string."image.YCbCr" image.YCbCr$go.string.hdr."Cb" go.string."Cb"go.string."Cb"Cb$go.string.hdr."Cr" go.string."Cr"go.string."Cr"Cr.go.string.hdr."YStride" &go.string."YStride"&go.string."YStride"YStride.go.string.hdr."CStride" &go.string."CStride"&go.string."CStride"CStridefunc(*image.YCbCr) color.ModelLtype.func(*"".YCbCr) image/color.ModelZp30 runtime.algarray@"runtime.gcbits.01P\go.string.hdr."func(*image.YCbCr) color.Model"p^go.weak.type.*func(*"".YCbCr) image/color.Model"runtime.zerovalueLtype.func(*"".YCbCr) image/color.ModelLtype.func(*"".YCbCr) image/color.Modeltype.*"".YCbCr,type.image/color.Modelgo.typelink.func(*image.YCbCr) color.Model func(*"".YCbCr) image/color.ModelLtype.func(*"".YCbCr) image/color.ModelNgo.string.hdr."func(*image.YCbCr) bool" Fgo.string."func(*image.YCbCr) bool"Fgo.string."func(*image.YCbCr) bool"00func(*image.YCbCr) bool2type.func(*"".YCbCr) bool30 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func(*image.YCbCr) bool"pDgo.weak.type.*func(*"".YCbCr) bool"runtime.zerovalue2type.func(*"".YCbCr) bool2type.func(*"".YCbCr) booltype.*"".YCbCrtype.boolpgo.typelink.func(*image.YCbCr) bool func(*"".YCbCr) bool2type.func(*"".YCbCr) bool~go.string.hdr."func(*image.YCbCr, image.Rectangle) image.Image" /vgo.string."func(*image.YCbCr, image.Rectangle) image.Image"vgo.string."func(*image.YCbCr, image.Rectangle) image.Image"``func(*image.YCbCr, image.Rectangle) image.ImageVtype.func(*"".YCbCr, "".Rectangle) "".ImageNY30 runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(*image.YCbCr, image.Rectangle) image.Image"phgo.weak.type.*func(*"".YCbCr, "".Rectangle) "".Image"runtime.zerovalueVtype.func(*"".YCbCr, "".Rectangle) "".ImageVtype.func(*"".YCbCr, "".Rectangle) "".Imagetype.*"".YCbCr"type."".Rectangletype."".Imagego.typelink.func(*image.YCbCr, image.Rectangle) image.Image func(*"".YCbCr, "".Rectangle) "".ImageVtype.func(*"".YCbCr, "".Rectangle) "".Imagepgo.string.hdr."func(*image.YCbCr, int, int) color.YCbCr" (hgo.string."func(*image.YCbCr, int, int) color.YCbCr"hgo.string."func(*image.YCbCr, int, int) color.YCbCr"`Rfunc(*image.YCbCr, int, int) color.YCbCr`type.func(*"".YCbCr, int, int) image/color.YCbCrߚ30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*image.YCbCr, int, int) color.YCbCr"prgo.weak.type.*func(*"".YCbCr, int, int) image/color.YCbCr"runtime.zerovalue`type.func(*"".YCbCr, int, int) image/color.YCbCr`type.func(*"".YCbCr, int, int) image/color.YCbCrtype.*"".YCbCrtype.inttype.int,type.image/color.YCbCrgo.typelink.func(*image.YCbCr, int, int) color.YCbCr func(*"".YCbCr, int, int) image/color.YCbCr`type.func(*"".YCbCr, int, int) image/color.YCbCr.go.string.hdr."COffset" &go.string."COffset"&go.string."COffset"COffset.go.string.hdr."YCbCrAt" &go.string."YCbCrAt"&go.string."YCbCrAt"YCbCrAtTgo.string.hdr."func(int, int) color.YCbCr" Lgo.string."func(int, int) color.YCbCr"Lgo.string."func(int, int) color.YCbCr"@6func(int, int) color.YCbCrJtype.func(int, int) image/color.YCbCr30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func(int, int) color.YCbCr"p\go.weak.type.*func(int, int) image/color.YCbCr"runtime.zerovalueJtype.func(int, int) image/color.YCbCrJtype.func(int, int) image/color.YCbCrtype.inttype.int,type.image/color.YCbCrgo.typelink.func(int, int) color.YCbCr func(int, int) image/color.YCbCrJtype.func(int, int) image/color.YCbCr.go.string.hdr."YOffset" &go.string."YOffset"&go.string."YOffset"YOffsettype.*"".YCbCr2Ы6`0 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*image.YCbCr"p.go.weak.type.**"".YCbCr"runtime.zerovaluetype."".YCbCr`type.*"".YCbCrtype.*"".YCbCr$go.string.hdr."At"Jtype.func(int, int) image/color.Color`type.func(*"".YCbCr, int, int) image/color.Color"".(*YCbCr).At"".(*YCbCr).At,go.string.hdr."Bounds"0type.func() "".RectangleBtype.func(*"".YCbCr) "".Rectangle$"".(*YCbCr).Bounds$"".(*YCbCr).Bounds.go.string.hdr."COffset".type.func(int, int) intDtype.func(*"".YCbCr, int, int) int&"".(*YCbCr).COffset&"".(*YCbCr).COffset4go.string.hdr."ColorModel":type.func() image/color.ModelLtype.func(*"".YCbCr) image/color.Model,"".(*YCbCr).ColorModel,"".(*YCbCr).ColorModel,go.string.hdr."Opaque" type.func() bool2type.func(*"".YCbCr) bool$"".(*YCbCr).Opaque$"".(*YCbCr).Opaque0go.string.hdr."SubImage"@type.func("".Rectangle) "".ImageVtype.func(*"".YCbCr, "".Rectangle) "".Image("".(*YCbCr).SubImage("".(*YCbCr).SubImage.go.string.hdr."YCbCrAt"Jtype.func(int, int) image/color.YCbCr`type.func(*"".YCbCr, int, int) image/color.YCbCr&"".(*YCbCr).YCbCrAt&"".(*YCbCr).YCbCrAt.go.string.hdr."YOffset".type.func(int, int) intDtype.func(*"".YCbCr, int, int) int&"".(*YCbCr).YOffset&"".(*YCbCr).YOffsetTgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·d98f60bd8519d0c68364b2a1d83af357Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·1347047f6245a35b91e9a4f213167d52Tgclocals·33cdeccccebe80329f1fdbee7f5874cbTgclocals·0ebb2d1da58c1b4224bf5a7b370d7578Hgo.string.hdr."*image.PalettedImage" @go.string."*image.PalettedImage"@go.string."*image.PalettedImage"0**image.PalettedImage,type.*"".PalettedImage6 0 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."*image.PalettedImage"p>go.weak.type.**"".PalettedImage"runtime.zerovalue*type."".PalettedImageFgo.string.hdr."image.PalettedImage" >go.string."image.PalettedImage">go.string."image.PalettedImage"0(image.PalettedImage:go.string.hdr."PalettedImage" 2go.string."PalettedImage"2go.string."PalettedImage" PalettedImage*type."".PalettedImage$0 runtime.algarray@"runtime.gcbits.03PFgo.string.hdr."image.PalettedImage"p,type.*"".PalettedImage"runtime.zerovalue*type."".PalettedImage$go.string.hdr."At"Jtype.func(int, int) image/color.Color,go.string.hdr."Bounds"0type.func() "".Rectangle8go.string.hdr."ColorIndexAt"2type.func(int, int) uint84go.string.hdr."ColorModel":type.func() image/color.Model`*type."".PalettedImage:go.string.hdr."PalettedImage""go.importpath."".*type."".PalettedImage.go.string.hdr."runtime" &go.string."runtime"&go.string."runtime"runtime,go.importpath.runtime. &go.string."runtime"*go.string.hdr."bufio" "go.string."bufio""go.string."bufio" bufio(go.importpath.bufio. "go.string."bufio",go.string.hdr."errors" $go.string."errors"$go.string."errors"errors*go.importpath.errors. $go.string."errors"$go.string.hdr."io" go.string."io"go.string."io"io"go.importpath.io. go.string."io"6go.string.hdr."image/color" .go.string."image/color".go.string."image/color" image/color4go.importpath.image/color. .go.string."image/color".go.string.hdr."strconv" &go.string."strconv"&go.string."strconv"strconv,go.importpath.strconv. &go.string."strconv""".Image.At·f"".Image.At$"".Image.Bounds·f"".Image.Bounds,"".Image.ColorModel·f&"".Image.ColorModel*"".(*Point).String·f$"".(*Point).String$"".(*Point).Add·f"".(*Point).Add$"".(*Point).Sub·f"".(*Point).Sub$"".(*Point).Mul·f"".(*Point).Mul$"".(*Point).Div·f"".(*Point).Div""".(*Point).In·f"".(*Point).In$"".(*Point).Mod·f"".(*Point).Mod""".(*Point).Eq·f"".(*Point).Eq2"".(*Rectangle).String·f,"".(*Rectangle).String*"".(*Rectangle).Dx·f$"".(*Rectangle).Dx*"".(*Rectangle).Dy·f$"".(*Rectangle).Dy."".(*Rectangle).Size·f("".(*Rectangle).Size,"".(*Rectangle).Add·f&"".(*Rectangle).Add,"".(*Rectangle).Sub·f&"".(*Rectangle).Sub0"".(*Rectangle).Inset·f*"".(*Rectangle).Inset8"".(*Rectangle).Intersect·f2"".(*Rectangle).Intersect0"".(*Rectangle).Union·f*"".(*Rectangle).Union0"".(*Rectangle).Empty·f*"".(*Rectangle).Empty*"".(*Rectangle).Eq·f$"".(*Rectangle).Eq6"".(*Rectangle).Overlaps·f0"".(*Rectangle).Overlaps*"".(*Rectangle).In·f$"".(*Rectangle).In0"".(*Rectangle).Canon·f*"".(*Rectangle).Canon*"".(*Rectangle).At·f$"".(*Rectangle).At2"".(*Rectangle).Bounds·f,"".(*Rectangle).Bounds:"".(*Rectangle).ColorModel·f4"".(*Rectangle).ColorModel.type..hash."".Config·f(type..hash."".Config*type..eq."".Config·f$type..eq."".Config""".reader.Peek·f"".reader.Peek""".reader.Read·f"".reader.ReadF"".(*YCbCrSubsampleRatio).String·f@"".(*YCbCrSubsampleRatio).String,"".PalettedImage.At·f&"".PalettedImage.At4"".PalettedImage.Bounds·f."".PalettedImage.Bounds@"".PalettedImage.ColorIndexAt·f:"".PalettedImage.ColorIndexAt<"".PalettedImage.ColorModel·f6"".PalettedImage.ColorModel"runtime.zerovaluego13ld