blob: e2b94af1d6bff9b281251380102c2b2e1b53ce84 [file] [log] [blame]
!<arch>
__.PKGDEF 0 0 0 644 20021 `
go object windows amd64 go1.4.2 X:precisestack
$$
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.X == @"".q·3.X && @"".p·2.Y == @"".q·3.Y }
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 @"".Rectangle struct { Min @"".Point; Max @"".Point }
func (@"".r·2 @"".Rectangle) Add (@"".p·3 @"".Point) (? @"".Rectangle)
func (@"".r·2 @"".Rectangle) Canon () (? @"".Rectangle)
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)
func (@"".r·2 @"".Rectangle) In (@"".s·3 @"".Rectangle) (? bool)
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)
func (@"".r·2 @"".Rectangle) Union (@"".s·3 @"".Rectangle) (? @"".Rectangle)
type @"image/color".Model interface { Convert(@"image/color".c @"image/color".Color) (? @"image/color".Color) }
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)
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)
type @"".RGBA struct { Pix []uint8; Stride int; Rect @"".Rectangle }
func (@"".p·2 *@"".RGBA "esc:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".RGBA "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".RGBA "esc:0x0") ColorModel () (? @"image/color".Model) { return @"image/color".RGBAModel }
func (@"".p·2 *@"".RGBA "esc:0x0") Opaque () (? bool)
func (@"".p·2 *@"".RGBA "esc:0x0") 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:0x0") RGBAAt (@"".x·3 int, @"".y·4 int) (? @"image/color".RGBA)
func (@"".p·1 *@"".RGBA "esc:0x0") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".RGBA "esc:0x0") SetRGBA (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".RGBA)
func (@"".p·2 *@"".RGBA) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewRGBA (@"".r·2 @"".Rectangle) (? *@"".RGBA)
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:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".RGBA64 "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".RGBA64 "esc:0x0") ColorModel () (? @"image/color".Model) { return @"image/color".RGBA64Model }
func (@"".p·2 *@"".RGBA64 "esc:0x0") Opaque () (? bool)
func (@"".p·2 *@"".RGBA64 "esc:0x0") 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:0x0") RGBA64At (@"".x·3 int, @"".y·4 int) (? @"image/color".RGBA64)
func (@"".p·1 *@"".RGBA64 "esc:0x0") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".RGBA64 "esc:0x0") SetRGBA64 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".RGBA64)
func (@"".p·2 *@"".RGBA64) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewRGBA64 (@"".r·2 @"".Rectangle) (? *@"".RGBA64)
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)
type @"".NRGBA struct { Pix []uint8; Stride int; Rect @"".Rectangle }
func (@"".p·2 *@"".NRGBA "esc:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".NRGBA "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".NRGBA "esc:0x0") ColorModel () (? @"image/color".Model) { return @"image/color".NRGBAModel }
func (@"".p·2 *@"".NRGBA "esc:0x0") NRGBAAt (@"".x·3 int, @"".y·4 int) (? @"image/color".NRGBA)
func (@"".p·2 *@"".NRGBA "esc:0x0") Opaque () (? bool)
func (@"".p·2 *@"".NRGBA "esc:0x0") 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:0x0") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".NRGBA "esc:0x0") SetNRGBA (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".NRGBA)
func (@"".p·2 *@"".NRGBA) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewNRGBA (@"".r·2 @"".Rectangle) (? *@"".NRGBA)
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)
type @"".NRGBA64 struct { Pix []uint8; Stride int; Rect @"".Rectangle }
func (@"".p·2 *@"".NRGBA64 "esc:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".NRGBA64 "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".NRGBA64 "esc:0x0") ColorModel () (? @"image/color".Model) { return @"image/color".NRGBA64Model }
func (@"".p·2 *@"".NRGBA64 "esc:0x0") NRGBA64At (@"".x·3 int, @"".y·4 int) (? @"image/color".NRGBA64)
func (@"".p·2 *@"".NRGBA64 "esc:0x0") Opaque () (? bool)
func (@"".p·2 *@"".NRGBA64 "esc:0x0") 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:0x0") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".NRGBA64 "esc:0x0") SetNRGBA64 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".NRGBA64)
func (@"".p·2 *@"".NRGBA64) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewNRGBA64 (@"".r·2 @"".Rectangle) (? *@"".NRGBA64)
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:0x0") AlphaAt (@"".x·3 int, @"".y·4 int) (? @"image/color".Alpha)
func (@"".p·2 *@"".Alpha "esc:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".Alpha "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".Alpha "esc:0x0") ColorModel () (? @"image/color".Model) { return @"image/color".AlphaModel }
func (@"".p·2 *@"".Alpha "esc:0x0") Opaque () (? bool)
func (@"".p·2 *@"".Alpha "esc:0x0") 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:0x0") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".Alpha "esc:0x0") SetAlpha (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Alpha)
func (@"".p·2 *@"".Alpha) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewAlpha (@"".r·2 @"".Rectangle) (? *@"".Alpha)
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:0x0") Alpha16At (@"".x·3 int, @"".y·4 int) (? @"image/color".Alpha16)
func (@"".p·2 *@"".Alpha16 "esc:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".Alpha16 "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".Alpha16 "esc:0x0") ColorModel () (? @"image/color".Model) { return @"image/color".Alpha16Model }
func (@"".p·2 *@"".Alpha16 "esc:0x0") Opaque () (? bool)
func (@"".p·2 *@"".Alpha16 "esc:0x0") 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:0x0") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".Alpha16 "esc:0x0") SetAlpha16 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Alpha16)
func (@"".p·2 *@"".Alpha16) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewAlpha16 (@"".r·2 @"".Rectangle) (? *@"".Alpha16)
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:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".Gray "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".Gray "esc:0x0") ColorModel () (? @"image/color".Model) { return @"image/color".GrayModel }
func (@"".p·2 *@"".Gray "esc:0x0") GrayAt (@"".x·3 int, @"".y·4 int) (? @"image/color".Gray)
func (@"".p·2 *@"".Gray "esc:0x0") Opaque () (? bool) { return true }
func (@"".p·2 *@"".Gray "esc:0x0") 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:0x0") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".Gray "esc:0x0") SetGray (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Gray)
func (@"".p·2 *@"".Gray) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewGray (@"".r·2 @"".Rectangle) (? *@"".Gray)
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:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".Gray16 "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".Gray16 "esc:0x0") ColorModel () (? @"image/color".Model) { return @"image/color".Gray16Model }
func (@"".p·2 *@"".Gray16 "esc:0x0") Gray16At (@"".x·3 int, @"".y·4 int) (? @"image/color".Gray16)
func (@"".p·2 *@"".Gray16 "esc:0x0") Opaque () (? bool) { return true }
func (@"".p·2 *@"".Gray16 "esc:0x0") 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:0x0") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".Gray16 "esc:0x0") SetGray16 (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Gray16)
func (@"".p·2 *@"".Gray16) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewGray16 (@"".r·2 @"".Rectangle) (? *@"".Gray16)
type @"image/color".Palette []@"image/color".Color
func (@"image/color".p·2 @"image/color".Palette "esc:0x0") Convert (@"image/color".c·3 @"image/color".Color) (? @"image/color".Color)
func (@"image/color".p·2 @"image/color".Palette "esc:0x0") 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:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".Paletted "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".Paletted "esc:0x0") ColorIndexAt (@"".x·3 int, @"".y·4 int) (? uint8)
func (@"".p·2 *@"".Paletted "esc:0x1") ColorModel () (? @"image/color".Model) { return @"".p·2.Palette }
func (@"".p·2 *@"".Paletted "esc:0x0") Opaque () (? bool)
func (@"".p·2 *@"".Paletted "esc:0x0") 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:0x0") Set (@"".x·2 int, @"".y·3 int, @"".c·4 @"image/color".Color)
func (@"".p·1 *@"".Paletted "esc:0x0") SetColorIndex (@"".x·2 int, @"".y·3 int, @"".index·4 uint8)
func (@"".p·2 *@"".Paletted) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func @"".NewPaletted (@"".r·2 @"".Rectangle, @"".p·3 @"image/color".Palette) (? *@"".Paletted)
type @"".Uniform struct { C @"image/color".Color }
func (@"".c·2 *@"".Uniform "esc:0x1") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color) { return @"".c·2.C }
func (@"".c·2 *@"".Uniform "esc:0x0") Bounds () (? @"".Rectangle) { return (@"".Rectangle{ Min:(@"".Point{ X:-0x3B9ACA00, Y:-0x3B9ACA00 }), Max:(@"".Point{ X:0x3B9ACA00, Y:0x3B9ACA00 }) }) }
func (@"".c·2 *@"".Uniform "esc:0x2") ColorModel () (? @"image/color".Model) { return @"".c·2 }
func (@"".c·2 *@"".Uniform "esc:0x1") Convert (? @"image/color".Color) (? @"image/color".Color) { return @"".c·2.C }
func (@"".c·2 *@"".Uniform) Opaque () (? bool)
func (@"".c·5 *@"".Uniform) 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
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:0x0") At (@"".x·3 int, @"".y·4 int) (? @"image/color".Color)
func (@"".p·2 *@"".YCbCr "esc:0x0") Bounds () (? @"".Rectangle) { return @"".p·2.Rect }
func (@"".p·2 *@"".YCbCr "esc:0x0") COffset (@"".x·3 int, @"".y·4 int) (? int)
func (@"".p·2 *@"".YCbCr "esc:0x0") ColorModel () (? @"image/color".Model) { return @"image/color".YCbCrModel }
func (@"".p·2 *@"".YCbCr "esc:0x0") Opaque () (? bool) { return true }
func (@"".p·2 *@"".YCbCr) SubImage (@"".r·3 @"".Rectangle) (? @"".Image)
func (@"".p·2 *@"".YCbCr "esc:0x0") YCbCrAt (@"".x·3 int, @"".y·4 int) (? @"image/color".YCbCr)
func (@"".p·2 *@"".YCbCr "esc:0x0") 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 ()
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".Alpha16Model @"image/color".Model
var @"image/color".GrayModel @"image/color".Model
var @"image/color".Gray16Model @"image/color".Model
var @"image/color".YCbCrModel @"image/color".Model
$$
�_go_.6 0 0 0 644 452854 `
go object windows amd64 go1.4.2 X:precisestack
!
��go13ldbufio.aerrors.aio.astrconv.aimage/color.a�þ""".RegisterFormat��à��ÒeH‹ %(���H‹‰����HD$ØH;Awè����ëÞHì¨���H‹œ$¨���H‰$è����H|$x1Àè����H‹œ$°���H‰\$xH‹œ$¸���H‰œ$€���H‹œ$À���H‰œ$ˆ���H‹œ$È���H‰œ$���H‹œ$Ð���H‰œ$˜���H‹œ$Ø���H‰œ$ ���H����H‰$è����H‹����H‹ ����H‹����H‰ÃH)ËHƒû}FH����H‰$H‰T$HH‰T$H‰L$PH‰L$H‰D$XH‰D$HÇD$ ���è����H‹T$(H‹L$0H‹D$8H‰ÍHÿÁH‰ÓH‰L$PH‰D$XH‰T$HH‰l$@Hkí0HëH‰$HÇD$0���è����H����H‰$H‹\$HH‹l$@Hkí0HëH‰\$H\$xH‰\$è����H‹\$HH‰\$`H‹\$PH‰\$hH‹\$XH‰\$pH����H‰$è����H����H‰$H‹\$`H‰\$H‹\$hH‰\$H‹\$pH‰\$è����è����HÄ¨���Ã&������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���„è� runtime.duffzero���Ì��"".formats���Þ�� runtime.raceread���ì��"".formats���ú�"".formats���ˆ �"".formats���®�� type.[]"".format���Ž��"runtime.growslice���˜��,runtime.racewriterange���¦��type."".format���ø��.runtime.writebarrierfat���Â��"".formats���Ô��"runtime.racewrite���â��"".formats���°��2runtime.writebarrierslice���º��(runtime.racefuncexit���`Ð��"".autotmp_0003�Ïtype.int�"".autotmp_0002�¿ type.[]"".format�"".autotmp_0001�_type."".format�"".autotmp_0000� type.[]"".format�"".decodeConfig�PNtype.func(io.Reader) ("".Config, error)�"".decode�@Ltype.func(io.Reader) ("".Image, error)�"".magic� type.string�"".name��type.string�)пÏ�ð�B)¸��5y^.�Tgclocals·382d0f0c39326859a002473c076d7857�Tgclocals·404642bc6b7fe8525dc8555c2685f007���2c:/go/src/image/format.goþ"".asReader�� ��žeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹\$HH‰$è����HÇD$`����HÇD$h����H����H‰$H‹\$PH‰\$H‹\$XH‰\$è����H‹T$H‰T$8H‹L$ H‰L$@¶\$(€û�tH‰T$`H‰L$hè����HƒÄHÃH‹\$PH‰$H‹\$XH‰\$è����H‹\$H‰\$0H‹����1íH9ètH‹\$0H‰\$hH‰D$`è����HƒÄHÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¸������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���ˆ��type."".reader���Â��$runtime.assertI2I2���œ��(runtime.racefuncexit���Ö��bufio.NewReader���ø��>go.itab.*bufio.Reader."".reader���®��(runtime.racefuncexit���Æ��$type.*bufio.Reader���Ü��type."".reader���ô��>go.itab.*bufio.Reader."".reader���ˆ�� runtime.typ2Itab���@��"".autotmp_0010�/$type.*bufio.Reader�
"".rr�type."".reader� "".~r1� type."".reader�"".r��type.io.Reader�$!uH0��"XAB
?5��*c,- �Tgclocals·5cdacfafea6a52cba8772e006cb5d09a�Tgclocals·98a1cc4b1e487a8c1b167979e655e44f���2c:/go/src/image/format.goþ"".match�� ��”eH‹ %(���H‹‰����H;awè����ëãHƒì8H‹\$8H‰$è����H‹t$XH‹L$HH9ñtÆD$h�è����HƒÄ8ÃH‹D$PH‹\$`H‰\$01ÉH‰t$(H‰t$H‰D$ H‰L$H‹l$H9é}qH‰D$H‰$è����L‹L$HH‹|$H‹t$H‹T$@¶.L9Ïs]H:¶@8ët L9ÏsEH:¶€û?tÆD$h�è����HƒÄ8ÃH‰ðHÿÀH‰ùHÿÁH‰L$H‹l$H9é|ÆD$hè����HƒÄ8Ãè���� è���� ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���ˆ��(runtime.racefuncexit���Œ�� runtime.raceread���’��(runtime.racefuncexit���æ��(runtime.racefuncexit���ú��$runtime.panicindex���ˆ��$runtime.panicindex���`p��"".autotmp_0018�?type.*uint8�"".autotmp_0017��type.int�"".autotmp_0016��type.int�"".autotmp_0015�/type.[]uint8�"".autotmp_0014�_type.int�"".autotmp_0013�Otype.int� "".~r2�Ptype.bool�"".b� type.[]uint8�"".magic��type.string�$!p+op„op)op��:h!
 T"
��*BC4�Tgclocals·0d2207e032e47f7796c2b4a7a37b2060�Tgclocals·07ce3793e0acbc9268622f5f9e9eb47d���2c:/go/src/image/format.goþ"".sniff��À��¢eH‹ %(���H‹‰����H„$`ÿÿÿH;Awè����ëÛHì ��H‹œ$ ��H‰$è����H¼$8��1Àè����H����H‰$è����H‹ ����H‹����H‹����H‰œ$ˆ���1ÒH‰„$€���H‰D$8H‰L$xH‰ÈH‰T$@H‹l$8H9ê0��H‰D$HH‰$HÇD$0���è����H‹t$HHƒþ�„A��H¬$ð���H‰ïè����Hœ$ð���H¬$���H‰ïH‰Þè����H‹œ$¨���H‰\$H‹œ$0��H‰$H‹œ$(��H‹[ ÿÓL‹L$L‰L$`L‹D$L‰D$hH‹T$ H‰T$pH‹D$(H‹\$0H‰\$XHƒø�H‰D$Pu\Hœ$ ���H,$H‰ïH‰ÞH¥H¥L‰L$L‰D$H‰T$ è����¶\$(€û�t(Hœ$���H¬$8��H‰ïH‰Þè����è����HÄ ��ÃH‹D$HH‹T$@HƒÀ0HÿÂH‰T$@H‹l$8H9êŒÐþÿÿH¼$À���1Àè����Hœ$À���H¬$8��H‰ïH‰Þè����è����HÄ ��Éé¸þÿÿ&������>��0runtime.morestack_noctxt���r��*runtime.racefuncenter���è� runtime.duffzero���ž��"".formats���°�� runtime.raceread���¾��"".formats���Ì�"".formats���Ú �"".formats���ì��*runtime.racereadrange���ªØ� runtime.duffcopy���àØ� runtime.duffcopy���²�
������ò��"".match���¼Ø� runtime.duffcopy���Æ��(runtime.racefuncexit���¼è� runtime.duffzero���òØ� runtime.duffcopy���ü��(runtime.racefuncexit���€À��"".autotmp_0027�¿type."".format�"".autotmp_0026�_type."".format�"".autotmp_0025�¯type.*"".format�"".autotmp_0024�Ïtype.int�"".autotmp_0023�¿type.int�"".autotmp_0020�Ï type.[]"".format� "".err�Ÿtype.error�"".b�ÿtype.[]uint8�"".f�Ÿtype."".format� "".~r1� type."".format�"".r��type."".reader�&,À‚¿ÀZ¿À� �6‚, ¨T?$ 7 ��8}d‰~�Tgclocals·8d794d28595a79b9c61a6cf1543db318�Tgclocals·d1c45c047b685bf108a97a0f73b0eacc���2c:/go/src/image/format.goþ"".Decode��À��¾eH‹ %(���H‹‰����HD$°H;Awè����ëÞHìÐ���H‹œ$Ð���H‰$è����HDŽ$è�������HDŽ$ð�������HDŽ$ø�������HDŽ$�������HDŽ$������HDŽ$������H‹œ$Ø���H‰$H‹œ$à���H‰\$è����H‹T$H‹D$H‰T$@H‰$H‰D$HH‰D$è����H\$H¬$ ���H‰ïH‰Þè����Hœ$ ���Hl$pH‰ïH‰Þè����H‹œ$���1íH9ëukH����H‰$è����HDŽ$è�������HDŽ$ð�������HDŽ$ø�������HDŽ$�������H‹����H‰œ$��H‹����H‰œ$��è����HÄÐ���ÃH����H‰$H‹\$@H‰\$H‹\$HH‰\$è����H\$H,$H‰ïH‰ÞH¥H¥H‹”$���H‹ÿÓH‹l$H‹T$H‹L$ H‹D$(H‰l$PH‰¬$è���H‰T$XH‰”$ð���H‹\$pH‰œ$ø���H‹\$xH‰œ$���H‰L$`H‰Œ$��H‰D$hH‰„$��è����HÄÐ���à ������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���¸��"".asReader���ü��"".sniff���¬Ø� runtime.duffcopy���ÜØ� runtime.duffcopy���ˆ��"".ErrFormat���š�� runtime.raceread���ˆ��"".ErrFormat���¦�"".ErrFormat���À��(runtime.racefuncexit���Þ��type.io.Reader���˜��runtime.convI2I���Ü�
������¦��(runtime.racefuncexit���€ ��"".autotmp_0029�_type."".format� "".err�ßtype.error�"".m�ÿtype."".Image�"".f�¿type."".format�
"".rr�Ÿtype."".reader� "".~r3�`type.error� "".~r2�@type.string� "".~r1� type."".Image�"".r��type.io.Reader�") ÂŸ ²Ÿ� �0ž) H(H^X\�"�5ˆOS,‡�Tgclocals·468e0303f138e657083948ae3b7fc07f�Tgclocals·dd557ed9f2a1ff4ac6f468355d252505���2c:/go/src/image/format.goþ"".DecodeConfig��€ ��ôeH‹ %(���H‹‰����HD$€H;Awè����ëÞHì���H‹œ$���H‰$è����H¼$��1Àè����HDŽ$8������HDŽ$@������HDŽ$H������HDŽ$P������H‹œ$��H‰$H‹œ$��H‰\$è����H‹T$H‹D$H‰T$@H‰$H‰D$HH‰D$è����H\$H¬$Ð���H‰ïH‰Þè����Hœ$Ð���H¬$ ���H‰ïH‰Þè����H‹œ$È���1íH9ëu}H¼$€���1Àè����H����H‰$è����Hœ$€���H¬$��H‰ïH‰Þè����HDŽ$8������HDŽ$@������H‹����H‰œ$H��H‹����H‰œ$P��è����HÄ���ÃH����H‰$H‹\$@H‰\$H‹\$HH‰\$è����H\$H,$H‰ïH‰ÞH¥H¥H‹”$È���H‹ÿÓH\$`Hl$H‰ßH‰îè����H‹T$0H‹D$8H\$`H¬$��H‰ïH‰Þè����H‹œ$ ���H‰œ$8��H‹œ$¨���H‰œ$@��H‰T$PH‰”$H��H‰D$XH‰„$P��è����HÄ���Ã*������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Šð� runtime.duffzero���¦��"".asReader���ê��"".sniff���šØ� runtime.duffcopy���ÐØ� runtime.duffcopy���Œð� runtime.duffzero���š��"".ErrFormat���¬�� runtime.raceread���â� runtime.duffcopy��� ��"".ErrFormat���¾�"".ErrFormat���Ø��(runtime.racefuncexit���ö��type.io.Reader���°��runtime.convI2I���ô�
������š� runtime.duffcopy���ސ� runtime.duffcopy���Ü��(runtime.racefuncexit��� €��"".autotmp_0032�ÿtype."".Config�"".autotmp_0031�_type."".format� "".err�ßtype.error�"".c�¿type."".Config�"".f�¿type."".format�
"".rr�ÿtype."".reader� "".~r3�€type.error� "".~r2�`type.string� "".~r1� type."".Config�"".r��type.io.Reader�")€Îÿ€Áÿ�À�0º) ?(Kpce� �5aV,–�Tgclocals·cc6984845585fa273b42c620f2d8d0d2�Tgclocals·212d75d72bc329f4c8d38693858ff636���2c:/go/src/image/format.goþ"".Point.String��À��¾eH‹ %(���H‹‰����H;awè����ëãHì€���H‹œ$€���H‰$è����HDŽ$˜�������HDŽ$ �������H‹œ$ˆ���H‰$è����H‹\$H‰\$pH‹\$H‰\$xH‹œ$���H‰$è����H‹L$H‹D$H����H,$H‰ïH‰ÞH¥H¥H‹\$pH‰\$H‹t$xH‰t$H5����Hl$ H‰ïH¥H¥H‰L$`H‰L$0H‰D$hH‰D$8H����Hl$@H‰ïH‰ÞH¥H¥è����H‹\$PH‰œ$˜���H‹\$XH‰œ$ ���è����HÄ€���Ã������.��0runtime.morestack_noctxt���b��*runtime.racefuncenter���´��strconv.Itoa���þ��strconv.Itoa��� ��go.string."("���ò��go.string.","���À��go.string.")"���è��*runtime.concatstring5���¦��(runtime.racefuncexit���@€��"".autotmp_0034�?type.string�"".autotmp_0033�type.string� "".~r0� type.string�"".p��type."".Point�$€úÿ� �$MÅ ��0Nu�Tgclocals·2a3639eecdbdb0960aa0f7327004bc51�Tgclocals·a8cc63930a774e5693faf789d6200da1���.c:/go/src/image/geom.goþ"".Point.Add��à��ÎeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹L$ H‹l$0H‹D$(HéH‹l$8HèH‰L$H‰L$@H‰D$H‰D$Hè����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¼��(runtime.racefuncexit���`0��"".autotmp_0035�type."".Point� "".~r1�@type."".Point�"".q� type."".Point�"".p��type."".Point�!0E/
�p�
.!O��*3�Tgclocals·e99c5ad22e1e3b7a5c36b33fb1bb3c8b�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ"".Point.Sub��à��ÎeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹L$ H‹l$0H‹D$(H)éH‹l$8H)èH‰L$H‰L$@H‰D$H‰D$Hè����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¼��(runtime.racefuncexit���`0��"".autotmp_0036�type."".Point� "".~r1�@type."".Point�"".q� type."".Point�"".p��type."".Point�!0E/
�p�
8!O��*3�Tgclocals·e99c5ad22e1e3b7a5c36b33fb1bb3c8b�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ"".Point.Mul��à��ÈeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹D$0H‹L$ H‹\$(H¯ÈH¯ØH‰L$H‰L$8H‰\$H‰\$@è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¶��(runtime.racefuncexit���P0��"".autotmp_0037�type."".Point� "".~r1�0type."".Point�"".k� type.int�"".p��type."".Point�!0B/ �p�
B!O��*0�Tgclocals·a8fe0fad69a58f69236bb63df0a7bab9�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ"".Point.Div�� ��–eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹L$0H‹D$ HƒùÿtDH™H÷ùH‰ÃH‹D$(H‰ÞHƒùÿt&H™H÷ùH‰ÃH‰t$H‰t$8H‰\$H‰\$@è����HƒÄÃH÷ØH‰ÃëÚH÷ØH‰Ãë¼������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���ä��(runtime.racefuncexit���P0��"".autotmp_0038�type."".Point� "".~r1�0type."".Point�"".k� type.int�"".p��type."".Point�!0Y/0��
L!o��*G�Tgclocals·a8fe0fad69a58f69236bb63df0a7bab9�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ"".Point.In��€��îeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹L$H‹D$H‹\$ H9Ë-H‹l$0H9é}#H‹\$(H9ÃH‹l$8H9è}ÆD$@è����HƒÄÃÆD$@�ëï������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���Î��(runtime.racefuncexit���p�� "".~r1�`type.bool�"".r� "type."".Rectangle�"".p��type."".Point�!N�€�
V!_��*<�Tgclocals·1196e3e9d141ed7ea830766ad9564f54�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ"".Point.Mod��À��¶eH‹ %(���H‹‰����HD$ÈH;Awè����ëÞHì¸���H‹œ$¸���H‰$è����Hœ$Ð���Hl$xH‰ïH‰Þè����H‹”$ˆ���H‹|$xH)úHœ$Ð���H¼$˜���H‰Þè����H‹´$°���H‹¬$ ���H)îH‰×H‹”$À���L‹„$È���H‹Œ$Ð���H‹„$Ø���H‰T$HH‰L$(H)ÊL‰D$PH‰D$0I)ÀH‰T$L‰D$H‰ÐHƒÿÿ„³���H™H÷ÿH‰ÓH‰ÙHƒû�}HùL‰ÀHƒþÿ„‹���H™H÷þH‰ÓH‰ØHƒû�}HðH‰Œ$À���H‰ËH‰„$È���H‰ÂH‹Œ$Ð���H‹„$Ø���H‰\$XH‰L$8HËH‰ÙH‰ÓH‰T$`H‰D$@HÃH‰L$hH‰\$pH‰L$H‰Œ$ð���H‰\$ H‰œ$ø���è����HÄ¸���Ã1Ûévÿÿÿ1ÛéNÿÿÿ ������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���œ� runtime.duffcopy���ì� runtime.duffcopy���‚��(runtime.racefuncexit���€ð��""".autotmp_0046��type."".Point�"".autotmp_0045�Ÿtype."".Point�"".autotmp_0043��type.int�"".autotmp_0042��type.int�"".autotmp_0040��type.int�"".autotmp_0039��type.int� "".~r1�¿type."".Point�"".q�ÿtype."".Point�"".p�¿type."".Point� "".~r1�ßtype."".Point�"".q�Ÿtype."".Point�"".p�ßtype."".Point�"".r�?"type."".Rectangle�"".r�"type."".Rectangle� "".~r1�`type."".Point�"".r� "type."".Rectangle�"".p��type."".Point�)ðãïð� �6d)VDw ��5Ë �Tgclocals·0f8628ce243e71452b64ce00ce1b425f�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ"".Point.Eq��à��ÆeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹\$H‹l$ H9ëuH‹\$H‹l$(H9ëuÆD$0è����HƒÄÃÆD$0�ëï������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¦��(runtime.racefuncexit���P�� "".~r1�@type.bool�"".q� type."".Point�"".p��type."".Point�!:�p� ‚!O��*(�Tgclocals·b3fbade898daefb344db285cb2897d8f�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ
"".Pt��À��®eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹L$ H‹D$(H‰L$H‰L$0H‰D$H‰D$8è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���œ��(runtime.racefuncexit���@0��"".autotmp_0047�type."".Point� "".~r2� type."".Point�"".Y�type.int�"".X��type.int�!05/
�`� ’!?��*#�Tgclocals·f926cc9015687c7ab1dac05930d6eb9d�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ&"".Rectangle.String��€��êeH‹ %(���H‹‰����H;awè����ëãHƒì`H‹\$`H‰$è����HDŽ$ˆ�������HDŽ$�������H\$hH,$H‰ïH‰ÞH¥H¥è����H‹\$H‰\$PH‹t$H‰t$XHt$xH,$H‰ïH¥H¥è����H‹L$H‹D$H‹\$PH‰$H‹t$XH‰t$H5����Hl$H‰ïH¥H¥H‰L$@H‰L$ H‰D$HH‰D$(è����H‹\$0H‰œ$ˆ���H‹\$8H‰œ$���è����HƒÄ`Ã������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¶��"".Point.String���ˆ��"".Point.String���Ð��go.string."-"���š��*runtime.concatstring3���Ø��(runtime.racefuncexit���`À��"".autotmp_0049�?type.string�"".autotmp_0048�type.string� "".~r0�@type.string�"".r��"type."".Rectangle�!ÀÓ¿ �€�¬G¤��*YI�Tgclocals·ec00f41b8d1062152e5a6f1d15484282�Tgclocals·a8cc63930a774e5693faf789d6200da1���.c:/go/src/image/geom.goþ"".Rectangle.Dx�� ��–eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹\$ H‹l$H)ëH‰\$0è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���„��(runtime.racefuncexit���P�� "".~r0�@type.int�"".r��"type."".Rectangle�!)�P� ¶!/��*�Tgclocals·b3fbade898daefb344db285cb2897d8f�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ"".Rectangle.Dy�� ��–eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹\$(H‹l$H)ëH‰\$0è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���„��(runtime.racefuncexit���P�� "".~r0�@type.int�"".r��"type."".Rectangle�!)�P� À!/��*�Tgclocals·b3fbade898daefb344db285cb2897d8f�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ""".Rectangle.Size��à��ÎeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹L$0H‹l$ H‹D$8H)éH‹l$(H)èH‰L$H‰L$@H‰D$H‰D$Hè����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¼��(runtime.racefuncexit���`0��"".autotmp_0050�type."".Point� "".~r0�@type."".Point�"".r��"type."".Rectangle�!0E/
�p�Ê!'��*3�Tgclocals·e99c5ad22e1e3b7a5c36b33fb1bb3c8b�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ "".Rectangle.Add��à��ÂeH‹ %(���H‹‰����H;awè����ëãHƒì(H‹\$(H‰$è����H‹t$PH‹T$XH|$`1Àè����H|$1Àè����H‹\$0HóH‰\$H‹\$8HÓH‰\$H‹\$@HóH‰\$H‹t$HHÖH‰t$ Ht$Hl$`H‰ïè����è����HƒÄ(Ã������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���‚ð� runtime.duffzero���šð� runtime.duffzero���¦� runtime.duffcopy���°��(runtime.racefuncexit��� P��"".autotmp_0051�?"type."".Rectangle� "".~r1�`"type."".Rectangle�"".p�@type."".Point�"".r��"type."".Rectangle�!PO�°�Ú! @+��*m�Tgclocals·d5aefc253c61fc093d318b2142370eff�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ "".Rectangle.Sub��à��ÂeH‹ %(���H‹‰����H;awè����ëãHƒì(H‹\$(H‰$è����H‹t$PH‹T$XH|$`1Àè����H|$1Àè����H‹\$0H)óH‰\$H‹\$8H)ÓH‰\$H‹\$@H)óH‰\$H‹t$HH)ÖH‰t$ Ht$Hl$`H‰ïè����è����HƒÄ(Ã������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���‚ð� runtime.duffzero���šð� runtime.duffzero���¦� runtime.duffcopy���°��(runtime.racefuncexit��� P��"".autotmp_0052�?"type."".Rectangle� "".~r1�`"type."".Rectangle�"".p�@type."".Point�"".r��"type."".Rectangle�!PO�°�ê! @+��*m�Tgclocals·d5aefc253c61fc093d318b2142370eff�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ$"".Rectangle.Inset�� �� eH‹ %(���H‹‰����H;awè����ëãHƒìHH‹\$HH‰$è����H‹T$pH|$x1Àè����H\$PHl$H‰ïH‰Þè����H‹\$H‹l$H)ëH‰ÕHÑåH9ëÀ���H‹\$PH‹l$`HëH‰ÝHÁû?H)ÝH‰ëHÑûH‰\$PH‹\$PH‰\$`H\$PHl$(H‰ïH‰Þè����H‹\$@H‹l$0H)ëH‰ÕHÑåH9ë}KH‹\$XH‹l$hHëH‰ÝHÁû?H)ÝH‰ëHÑûH‰\$XH‹\$XH‰\$hH\$PHl$xH‰ïH‰Þè����è����HƒÄHÃH‹\$XHÓH‰\$XH‹\$hH)ÓH‰\$hëÅH‹\$PHÓH‰\$PH‹\$`H)ÓH‰\$`éMÿÿÿ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���xð� runtime.duffzero���¢� runtime.duffcopy���ܐ� runtime.duffcopy���Ž� runtime.duffcopy���˜��(runtime.racefuncexit�����"".autotmp_0060��type.int�"".autotmp_0059��type.int�"".autotmp_0058��type.int�"".autotmp_0056��type.int�"".autotmp_0055��type.int�"".autotmp_0054��type.int�"".autotmp_0053��type.int�"".r�?"type."".Rectangle�"".r�"type."".Rectangle� "".~r1�P"type."".Rectangle�"".n�@type.int�"".r��"type."".Rectangle�!ó;�Ð�Dþ! 1"
-"
    ��*áE�Tgclocals·f1b15bf753205b3c7543a4b6fecc547a�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ,"".Rectangle.Intersect�� ��„eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����L‹D$8H‹t$@H‹T$HH‹L$PH|$X1Àè����H‹\$L9Ã}L‰D$H‹\$ H9ó}H‰t$ H‹\$(H9Ó~H‰T$(H‹\$0H9Ë~H‰L$0H‹\$H‹l$(H9ë.H‹\$ H‹l$0H9ëH\$Hl$XH‰ïH‰Þè����è����HƒÄÃH����H‰$HÇD$ ���è����H����Hl$XH‰ïH‰Þè����è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���–ð� runtime.duffzero���ô� runtime.duffcopy���þ��(runtime.racefuncexit���–��
"".ZR���º��*runtime.racereadrange���È��
"".ZR���è� runtime.duffcopy���ò��(runtime.racefuncexit���À �� "".~r1�€"type."".Rectangle�"".s�@"type."".Rectangle�"".r��"type."".Rectangle�! ¦ 9��D¦! " 



0��*”�Tgclocals·e487c1454de0507bf340729649fa8a65�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ$"".Rectangle.Union��à��ÔeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����L‹L$0L‹D$8H‹t$@H‹T$HH|$P1Àè����H‹\$L9Ë~L‰L$H‹\$L9Ã~L‰D$H‹\$ H9ó}H‰t$ H‹\$(H9Ó}H‰T$(H\$Hl$PH‰ïH‰Þè����è����HƒÄà ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���–ð� runtime.duffzero���¸� runtime.duffcopy���Â��(runtime.racefuncexit���À�� "".~r1�€"type."".Rectangle�"".s�@"type."".Rectangle�"".r��"type."".Rectangle�!ˆ�°�4Î!" 



%��*v�Tgclocals·e487c1454de0507bf340729649fa8a65�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ$"".Rectangle.Empty��à��ÆeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹\$H‹l$ H9ë}H‹\$H‹l$(H9ë}ÆD$0�è����HƒÄÃÆD$0ëï������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¦��(runtime.racefuncexit���P�� "".~r0�@type.bool�"".r��"type."".Rectangle�!:�p� ð!O��*(�Tgclocals·b3fbade898daefb344db285cb2897d8f�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ"".Rectangle.Eq�� ��‚eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹\$H‹l$0H9ëu<H‹\$H‹l$8H9ëu-H‹\$ H‹l$@H9ëuH‹\$(H‹l$HH9ëuÆD$Pè����HƒÄÃÆD$P�ëï������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���â��(runtime.racefuncexit����� "".~r1�€type.bool�"".s�@"type."".Rectangle�"".r��"type."".Rectangle�!X�� ú!o��*F �Tgclocals·e2f933fcc4556266243d5fdc4fa1cf6a�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ*"".Rectangle.Overlaps�� ��‚eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹\$H‹l$@H9ë}<H‹\$0H‹l$ H9ë}-H‹\$H‹l$HH9ë}H‹\$8H‹l$(H9ë}ÆD$Pè����HƒÄÃÆD$P�ëï������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���â��(runtime.racefuncexit����� "".~r1�€type.bool�"".s�@"type."".Rectangle�"".r��"type."".Rectangle�!X�� †!o��*F �Tgclocals·e2f933fcc4556266243d5fdc4fa1cf6a�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ"".Rectangle.In��À��¤eH‹ %(���H‹‰����H;awè����ëãHƒì(H‹\$(H‰$è����H\$0Hl$H‰ïH‰Þè����H‹\$H‹l$H9ë}vH‹\$H‹l$ H9ë}g1À<�tÆD$pè����HƒÄ(ÃH‹\$PH‹l$0H9ë<H‹\$@H‹l$`H9ë-H‹\$XH‹l$8H9ëH‹\$HH‹l$hH9ëÆD$pè����HƒÄ(ÃÆD$p�ëïHÇÀ���ë’ ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���€� runtime.duffcopy���Ü��(runtime.racefuncexit���ò��(runtime.racefuncexit���P��"".r�?"type."".Rectangle� "".~r1�€type.bool�"".s�@"type."".Rectangle�"".r��"type."".Rectangle�!PUOPJOP�à�$’! 9
 
R ��*Cs�Tgclocals·e2f933fcc4556266243d5fdc4fa1cf6a�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ$"".Rectangle.Canon��À��ÀeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H|$01Àè����H‹\$ H‹l$H9ë}H‹D$H‹\$ H‰\$H‰D$ H‹\$(H‹l$H9ë}H‹D$H‹\$(H‰\$H‰D$(H\$Hl$0H‰ïH‰Þè����è����HƒÄà ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���nð� runtime.duffzero���¤� runtime.duffcopy���®��(runtime.racefuncexit���€��"".autotmp_0063��type.int� "".~r0�@"type."".Rectangle�"".r��"type."".Rectangle�!~� �$ª! ��*l
�Tgclocals·dc377e0defc61182c01f4d957cc32e80�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ"".Rect��€��üeH‹ %(���H‹‰����H;awè����ëãHƒì(H‹\$(H‰$è����L‹L$0L‹D$@H‹t$8H‹T$HH|$P1Àè����M9Á~ L‰ÈM‰ÁI‰ÀH9Ö~ H‰ðH‰ÖH‰ÂH|$1Àè����L‰L$0L‰L$H‰t$8H‰t$L‰D$@L‰D$H‰T$HH‰T$ H\$Hl$PH‰ïH‰Þè����è����HƒÄ(Ã������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���–ð� runtime.duffzero���æð� runtime.duffzero���à� runtime.duffcopy���ê��(runtime.racefuncexit���€P��"".autotmp_0066�?"type."".Rectangle�"".autotmp_0065��type.int� "".~r4�@"type."".Rectangle�
"".y1�0type.int�
"".x1� type.int�
"".y0�type.int�
"".x0��type.int�!PœO�À�$Æ!"   U��*Š �Tgclocals·dc377e0defc61182c01f4d957cc32e80�Tgclocals·0115f8d53b75c1696444f08ad03251d9���.c:/go/src/image/geom.goþ*"".(*RGBA).ColorModel��€��æeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����HÇD$����HÇD$ ����H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���ˆ��*image/color.RGBAModel���š�� runtime.raceread���¨��*image/color.RGBAModel���À�*image/color.RGBAModel���Ô��(runtime.racefuncexit���0�� "".~r0�,type.image/color.Model�"".p��type.*"".RGBA�!Q�€�
Ž€��*?�Tgclocals·a9282ac20787dc3025c0916068a42263�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ""".(*RGBA).Bounds�� ��‚eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H|$ 1Àè����H‹\$H‰$Hƒ$ HÇD$ ���è����H‹|$Hƒÿ�tHo H|$ H‰îè����è����HƒÄÉëá������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���nð� runtime.duffzero���¦��*runtime.racereadrange���ސ� runtime.duffcopy���è��(runtime.racefuncexit���P �� "".~r0�"type."".Rectangle�"".p��type.*"".RGBA�! [ ��
’��*I�Tgclocals·50a798c9d6a789f8ff12a130568a080f�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ"".(*RGBA).At��À��®eH‹ %(���H‹‰����H;awè����ëãHƒì8H‹\$8H‰$è����HÇD$X����HÇD$`����H‹\$@H‰$H‹\$HH‰\$H‹\$PH‰\$è����¶\$ˆ\$4¶\$ˆ\$5¶\$ˆ\$6¶\$ˆ\$7H����H‰$H����H‰\$H����H‰\$H\$4H‰\$è����H‹\$ H‰\$XH‹\$(H‰\$`è����HƒÄ8Ã������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¾��""".(*RGBA).RGBAAt���”��*type.image/color.RGBA���ª��,type.image/color.Color���Â��Tgo.itab.image/color.RGBA.image/color.Color���ê��runtime.convT2I���œ��(runtime.racefuncexit���Pp��
"".autotmp_0067�*type.image/color.RGBA� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�!pµo
�à�–AŒ��*£�Tgclocals·f4e5c2ea265c0bb50618a74b99defd82�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ""".(*RGBA).RGBAAt��à��ÚeH‹ %(���H‹‰����HD$øH;Awè����ëÞHìˆ���H‹œ$ˆ���H‰$è����Ƅ$¨����Ƅ$©����Ƅ$ª����Ƅ$«����H‹œ$˜���H‰\$8H‹œ$ ���H‰\$@H‹œ$���H‰$Hƒ$ HÇD$ ���è����L‹D$8H‹D$@H‹”$���Hƒú�„7��Hj H\$HH‰ßH‰îè����H‹\$HL9Ï��H‹l$XI9è���H‹\$PH9Ïò��H‹l$`H9èä��HÇÀ���<�uC1í1Ò1É1À@ˆl$@ˆ¬$¨���ˆT$ˆ”$©���ˆL$ˆŒ$ª���ˆD$ˆ„$«���è����HÄˆ���ÃH‹œ$˜���H‰\$ H‹œ$ ���H‰\$H‰T$hH‰$Hƒ$ è����H‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$è����H‹\$hH‰$Hƒ$è����H‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HÁåHëH‰\$(ÆD$�ÆD$�ÆD$�ÆD$�H‹œ$���H‰$è����H‹D$(H‹œ$���HƒÀ�H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ��HH‰$è����H‹´$���H‹D$(HƒÀ�Hƒþ�„n��H‹H‹NL‹FL‰„$€���H‰T$pH‰L$xH9ȃA��H¶ˆ\$H‰4$è����H‹D$(HÿÀH‹œ$���H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃð��HH‰$è����H‹´$���H‹D$(HÿÀHƒþ�„Â��H‹H‹NL‹FL‰„$€���H‰T$pH‰L$xH9ȃ•��H¶ˆ\$H‰4$è����H‹D$(H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃC��HH‰$è����H‹´$���H‹D$(HƒÀHƒþ�„��H‹H‹NL‹FL‰„$€���H‰T$pH‰L$xH9ȃç���H¶ˆ\$H‰4$è����H‹D$(H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ•���HH‰$è����H‹D$(H‹¬$���HƒÀHƒý�tlH‹U�H‹ML‹EL‰„$€���H‰T$pH‰L$xH9ÈsBH¶H‰Ø¶\$ˆœ$¨���¶\$ˆœ$©���¶\$ˆœ$ª���ˆ„$«���è����HÄˆ���Ãè���� ‰E�ëè���� è���� ‰éåþÿÿè���� è���� ‰é7þÿÿè���� è���� ‰é‹ýÿÿè���� 1Àéüÿÿ‰éÂûÿÿ4������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���ž��*runtime.racereadrange���þ� runtime.duffcopy���ú��(runtime.racefuncexit���ä�� runtime.raceread���¶�� runtime.raceread���Ü�� runtime.raceread���€�� runtime.raceread���ˆ �� runtime.raceread���²
�� runtime.raceread���¸ �� runtime.raceread���à �� runtime.raceread���è �� runtime.raceread���’�� runtime.raceread���š�� runtime.raceread���‚��(runtime.racefuncexit���œ��$runtime.panicindex���´��$runtime.panicindex���Â��$runtime.panicindex���Þ��$runtime.panicindex���ì��$runtime.panicindex���ˆ��$runtime.panicindex���–��$runtime.panicindex���²��$runtime.panicindex���@��"".autotmp_0072��*type.image/color.RGBA�"".autotmp_0071�¯type.int�"".autotmp_0070��type.int�"".autotmp_0069�ç*type.image/color.RGBA�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".RGBA�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int� "".~r2�0*type.image/color.RGBA�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�()ŸÃc�ð �2ž)
 ¬6–€�$�5‡5Ž c�Tgclocals·1a780b2043fc6869f6e645f97d4b356b�Tgclocals·07ce3793e0acbc9268622f5f9e9eb47d���0c:/go/src/image/image.goþ("".(*RGBA).PixOffset��€��êeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÁåHëH‰\$0è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���|�� runtime.raceread���Î�� runtime.raceread���ô�� runtime.raceread���Ø��(runtime.racefuncexit���@ ��
"".autotmp_0089�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�! “ �À�²!Ÿ��*�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ"".(*RGBA).Set�� ��ŒeH‹ %(���H‹‰����HD$ÐH;Awè����ëÞHì°���H‹œ$°���H‰$è����H‹œ$À���H‰\$PH‹œ$È���H‰\$XH‹œ$¸���H‰$Hƒ$ HÇD$ ���è����L‹D$PH‹D$XH‹”$¸���Hƒú�„°��Hj H\$`H‰ßH‰îè����H‹\$`L9χ��H‹l$pI9èy��H‹\$hH9Ïk��H‹l$xH9è]��HÇÀ���<�u è����HÄ°���ÃH‹œ$À���H‰\$8H‹œ$È���H‰\$0H‰”$€���H‰$Hƒ$ è����H‹„$€���H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$è����H‹œ$€���H‰$Hƒ$è����H‹„$€���H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHÁåHëH‰\$@H����H‰$è����H‹œ$Ð���H‰\$H‹œ$Ø���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ H����H‰$H‰Œ$ˆ���H‰L$H‰„$���H‰D$è����¶\$ˆ\$,¶\$ˆ\$-¶\$ˆ\$.¶\$ˆ\$/H‹\$@HƒÃ�H‰\$HH‹œ$¸���H‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ńª��H)H‰$è����H‹”$¸���Hƒú�„„��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃL��H)¶l$,@ˆ+H‹\$@HÿÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ńê��H)H‰$è����H‹”$¸���Hƒú�„Ä��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃŒ��H)¶l$-@ˆ+H‹\$@HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń)��H)H‰$è����H‹”$¸���Hƒú�„��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃË���H)¶l$.@ˆ+H‹\$@HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅslH)H‰$è����H‹œ$¸���Hƒû�tMH‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅsH)¶l$/@ˆ+è����HÄ°���Ãè���� ‰ë¯è���� è���� ‰éöþÿÿè���� è���� ‰é5þÿÿè���� è���� ‰éuýÿÿè���� 1Àé£ûÿÿ‰éIûÿÿB������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Þ��*runtime.racereadrange���¾� runtime.duffcopy���Î��(runtime.racefuncexit���¾�� runtime.raceread���–�� runtime.raceread���Â�� runtime.raceread���°��*image/color.RGBAModel���Â�� runtime.raceread���„�*image/color.RGBAModel���š��*image/color.RGBAModel���ª�
������È��*type.image/color.RGBA���Ž��"runtime.assertI2T���” �� runtime.raceread��� 
��"runtime.racewrite���ê �� runtime.raceread���ö ��"runtime.racewrite���Â�� runtime.raceread���Î��"runtime.racewrite���š�� runtime.raceread���ž��"runtime.racewrite���¶��(runtime.racefuncexit���Ð��$runtime.panicindex���æ��$runtime.panicindex���ô��$runtime.panicindex�����$runtime.panicindex���ž��$runtime.panicindex���º��$runtime.panicindex���È��$runtime.panicindex���ä��$runtime.panicindex���Pà��$"".autotmp_0097��type.int�"".autotmp_0096��type.int�"".autotmp_0095��type.int�"".autotmp_0094��type.int�"".autotmp_0093�Ïtype.int�"".autotmp_0092��type.int�"".autotmp_0090�O,type.image/color.Color�"".y�ÿtype.int�"".x�ïtype.int�"".p�_type.*"".RGBA�"".r�Ÿ"type."".Rectangle�"".p�¿type."".Point�
"".c1�‡*type.image/color.RGBA�"".i�ßtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�()àÉßàóßài�Ð
�Vº)¬ ¢š´«¬¥ ��5é‚°�Tgclocals·562ff44fc2b4beb994776fb7f4a5aec4�Tgclocals·23c4785fa8abd7e258acfe91c9f325f3���0c:/go/src/image/image.goþ$"".(*RGBA).SetRGBA��À��´eH‹ %(���H‹‰����H;awè����ëãHì€���H‹œ$€���H‰$è����H‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹D$0H‹D$8H‹”$ˆ���Hƒú�„É��Hj H\$@H‰ßH‰îè����H‹\$@L9Ï ��H‹l$PI9荒��H‹\$HH9Ï„��H‹l$XH9èv��HÇÀ���<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰T$`H‰$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ HƒÃ�H‰\$(H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ńw��H)H‰$è����H‹”$ˆ���Hƒú�„Q��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń"��H)¶¬$ ���@ˆ+H‹\$ HÿÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÆ��H)H‰$è����H‹”$ˆ���Hƒú�„ ��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ńq��H)¶¬$¡���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń��H)H‰$è����H‹”$ˆ���Hƒú�„î���H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń¿���H)¶¬$¢���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsfH)H‰$è����H‹œ$ˆ���Hƒû�tGH‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)¶¬$£���@ˆ+è����HÄ€���Ãè���� ‰ëµè���� è���� ‰é ÿÿÿè���� è���� ‰éYþÿÿè���� è���� ‰é¨ýÿÿè���� 1ÀéŠüÿÿ‰é0üÿÿ4������.��0runtime.morestack_noctxt���b��*runtime.racefuncenter���Ô��*runtime.racereadrange���´� runtime.duffcopy���Ä��(runtime.racefuncexit���®�� runtime.raceread���€�� runtime.raceread���¦�� runtime.raceread���´�� runtime.raceread���®��"runtime.racewrite���ì�� runtime.raceread���æ ��"runtime.racewrite���¦ �� runtime.raceread���  ��"runtime.racewrite���à �� runtime.raceread���Ò��"runtime.racewrite���Þ��(runtime.racefuncexit���ø��$runtime.panicindex���Ž��$runtime.panicindex���œ��$runtime.panicindex���¸��$runtime.panicindex���Æ��$runtime.panicindex���â��$runtime.panicindex���ð��$runtime.panicindex���Œ��$runtime.panicindex���@€�� "".autotmp_0112��type.int�"".autotmp_0111��type.int�"".autotmp_0110��type.int�"".autotmp_0109��type.int�"".autotmp_0108�¯type.int�"".autotmp_0107��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".RGBA�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�0*type.image/color.RGBA�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA�($€Éÿ€Œÿ€e�à�PÒ$ ¬ ‘¥œ–��0æƒÇ�Tgclocals·baa0c3679835632b56aa126ccf73f5ec�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ&"".(*RGBA).SubImage�� ��ŒeH‹ %(���H‹‰����HD$€H;Awè����ëÞHì���H‹œ$���H‰$è����HDŽ$0������HDŽ$8������H‹œ$��H‰$Hƒ$ HÇD$ ���è����Hœ$��H,$H‰ïH‰Þè����H‹¼$��Hƒÿ�„%��Ho H|$ H‰îè����è����H\$@H¬$¸���H‰ïH‰Þè����Hœ$¸���H¬$��H‰ïH‰Þè����Hœ$��H¬$˜���H‰ïH‰Þè����H‹œ$˜���H‹¬$¨���H9덜��H‹œ$ ���H‹¬$°���H9덃��1À<�„µ���H����H‰$è����H‹D$H‰„$à���H‰$HÇD$@���è����H‹¼$à���H‰ùHƒÿ�tq1Àè����H‰Œ$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉ë‹H‹Œ$��H‹„$��H‹œ$��H‰\$hH‰D$`H‰Œ$Ø���H‰ $Hƒ$ è����H‹„$Ø���H‹X H‹l$hH)ÝH‰¬$���H‰$Hƒ$ Hƒ$è����H‹œ$Ø���H‰$Hƒ$è����H‹„$Ø���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹¬$���HÁåHëH‰\$pH����H‰$è����H‹\$H‰œ$à���H‹œ$��H‰$è����H‹„$��H‹XH‰œ$ˆ���H‰$è����H‹œ$��H‹KH‹D$pH‰Œ$€���H‰D$xH9Á‚›��H‹œ$à���H‰$è����H‹t$xH‹œ$à���H‰$Hƒ<$�„b��H‹œ$��H‹H‹¼$€���H‹”$ˆ���H)÷H)òHƒú�t H‰óHÃH‰ØH‰„$è���H‰D$H‰¼$ð���H‰|$H‰”$ø���H‰T$è����H‹œ$à���H‰$Hƒ$è����H‹œ$��H‰$Hƒ$è����H‹„$à���Hƒø�„Á���L‹„$��I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$à���Hƒø�„���Hh Hœ$��H‰ïH‰Þè����H‰„$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�éxÿÿÿ‰�é8ÿÿÿ‰%����é’þÿÿè���� HÇÀ���ésüÿÿ‰éÔûÿÿP������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Ú��*runtime.racereadrange���ˆ� runtime.duffcopy���ΐ� runtime.duffcopy���Ø��,"".Rectangle.Intersect���ˆ� runtime.duffcopy���¾� runtime.duffcopy���ô� runtime.duffcopy���ú��type."".RGBA���Œ��"runtime.newobject���Ê��,runtime.racewriterange���úà� runtime.duffzero���˜��2go.itab.*"".RGBA."".Image���à��(runtime.racefuncexit���þ��type.*"".RGBA���”��type."".Image���¬��2go.itab.*"".RGBA."".Image���À�� runtime.typ2Itab���Æ�� runtime.raceread���¤ �� runtime.raceread���Ð �� runtime.raceread���Ä
��type."".RGBA���Ö
��"runtime.newobject���’ �� runtime.raceread���Ì �� runtime.raceread���¼ ��"runtime.racewrite���¬��2runtime.writebarrierslice���Ø��"runtime.racewrite���„�� runtime.raceread���ö��,runtime.racewriterange���Ȑ� runtime.duffcopy���æ��2go.itab.*"".RGBA."".Image���®��(runtime.racefuncexit���Ì��type.*"".RGBA���â��type."".Image���ú��2go.itab.*"".RGBA."".Image���Ž�� runtime.typ2Itab���Ú��$runtime.panicslice���p€��("".autotmp_0134��type.*uint8�"".autotmp_0133�type.uint64�"".autotmp_0132�ÿtype.uint64�"".autotmp_0131�ïtype.uint64�"".autotmp_0130��type.*"".RGBA�"".autotmp_0129��type.int�"".autotmp_0128��type.int�"".autotmp_0127�ßtype.int�"".autotmp_0125�?type.*"".RGBA�"".autotmp_0123��type.*"".RGBA�"".autotmp_0122��type.*"".RGBA�"".autotmp_0121�"type."".Rectangle�"".y�¿type.int�"".x�¯type.int�"".p�Otype.*"".RGBA�"".r�Ï"type."".Rectangle�"".i�Ÿtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".RGBA�()€’ÿ€¦ÿ€m�Ð �^ìR‘Wu  ;°k‰p- �4�5¯K0CˆŽ0&$�Tgclocals·2a24b925de47e6af398f4500cd782a35�Tgclocals·c4d490826610b32d5111d57f926afcb9���0c:/go/src/image/image.goþ""".(*RGBA).Opaque��  ��’ eH‹ %(���H‹‰����HD$ðH;Awè����ëÞHì���H‹œ$���H‰$è����H‹œ$˜���H‰$Hƒ$ HÇD$ ���è����H‹”$˜���Hƒú�„—��Hj H\$XH‰ßH‰îè����H‹\$XH‹l$hH9ëd��H‹\$`H‹l$pH9ëQ��1À<�tƄ$ ���è����HÄ���ÃH‰$Hƒ$ HÇD$ ���è����H‹”$˜���Hƒú�„��Hj H\$8H‰ßH‰îè����H‹\$HH‹l$8H)ëHÁãHÇD$ ���H‰\$H‰$Hƒ$ Hƒ$è����H‹Œ$˜���H‹i(H‰l$H‰ $Hƒ$ Hƒ$Hƒ$è����H‹Œ$˜���H‹Y8H‹l$H9ëŽh��H‹D$ H‰D$(H‹l$H9èÇ���H‰ $è����H‹œ$˜���H‹ H‹CH‹kH‰¬$ˆ���H‰L$xH‹l$(H‰„$€���H9Ń
��H)H‰$è����H‹t$(H‹Œ$˜���Hƒù�„ß���H‹H‹AL‹AL‰„$ˆ���H‰T$xH‰„$€���H9ƃ¯���H2¶€ûÿtƄ$ ����è����HÄ���ÃH‰ðHƒÀH‰D$(H‹l$H9èŒ9ÿÿÿH‹\$ H‰\$0H‰ $Hƒ$è����H‹„$˜���H‹XH‹l$0HëH‰\$ H‹\$H‰\$0H‰$Hƒ$è����H‹Œ$˜���H‹YH‹l$0HëH‰\$H‹\$HÿÃH‰\$é{þÿÿè���� ‰éÿÿÿè���� Ƅ$ ���è����HÄ���ÉéóýÿÿHÇÀ���é¥ýÿÿ‰ébýÿÿ$������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���ª��*runtime.racereadrange���ö� runtime.duffcopy���è��(runtime.racefuncexit���¦��*runtime.racereadrange���ò� runtime.duffcopy���Ö�� runtime.raceread���¨�� runtime.raceread���ž�� runtime.raceread���¤�� runtime.raceread���Ö��(runtime.racefuncexit���Ê �� runtime.raceread���¬
�� runtime.raceread���Œ ��$runtime.panicindex���¨ ��$runtime.panicindex���Æ ��(runtime.racefuncexit���  ��"".autotmp_0148��type.int�"".autotmp_0147��type.int�"".autotmp_0146�¿type.int�"".autotmp_0144��type.int�"".autotmp_0143��type.int�"".autotmp_0142��type.int�"".autotmp_0141��type.int�"".r�¯"type."".Rectangle�"".r�o"type."".Rectangle�"".i�Ïtype.int�"".y�ÿtype.int�
"".i1�ïtype.int�
"".i0�ßtype.int� "".~r0�type.bool�"".p��type.*"".RGBA�6) –Ÿ öŸ ·Ÿ !��ZŽ)q\V˜  
11 � �5~Ø:~.�Tgclocals·cf86db206769ec68369d07e260728f65�Tgclocals·bfc69a0c89200aaeab2b53343f38a3be���0c:/go/src/image/image.goþ"".NewRGBA��€��öeH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���H‹œ$˜���H‰$è����Hœ$ ���Hl$XH‰ïH‰Þè����H‹T$hH‹|$XH)úHœ$ ���H|$8H‰Þè����H‹D$PH‹l$@H)èH‰ÓH‰T$0HÁãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹l$H‹T$ H‹D$(H‰¬$€���H‰”$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‰$Hƒ<$�„£���H‹œ$€���H‰\$H‹œ$ˆ���H‰\$H‹œ$���H‰\$è����H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0HÁåH‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xHƒø�t,Hh Hœ$ ���H‰ïH‰Þè����H‰„$À���è����HÄ˜���É�ëЉ%����éQÿÿÿ������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���œ� runtime.duffcopy���à� runtime.duffcopy���®��type.[]uint8���Ô��"runtime.makeslice���°��type."".RGBA���Â��"runtime.newobject���è��"runtime.racewrite���è��2runtime.writebarrierslice���Ž��"runtime.racewrite���à��,runtime.racewriterange���¤� runtime.duffcopy���¾��(runtime.racefuncexit���P°��"".autotmp_0157�?type.*"".RGBA�"".autotmp_0156��type.int�"".autotmp_0154��type.int�"".autotmp_0153��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".buf�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".RGBA�"".r��"type."".Rectangle�)°¯°�À�²)GTë��5«@k"�Tgclocals·c883c1a619e1938819370d0a31e3736f�Tgclocals·9fd26bf7af0929d886dbef3fe54c8a77���0c:/go/src/image/image.goþ."".(*RGBA64).ColorModel��€��æeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����HÇD$����HÇD$ ����H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���ˆ��.image/color.RGBA64Model���š�� runtime.raceread���¨��.image/color.RGBA64Model���À�.image/color.RGBA64Model���Ô��(runtime.racefuncexit���0�� "".~r0�,type.image/color.Model�"".p��type.*"".RGBA64�!Q�€�
Ô€��*?�Tgclocals·a9282ac20787dc3025c0916068a42263�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ&"".(*RGBA64).Bounds�� ��‚eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H|$ 1Àè����H‹\$H‰$Hƒ$ HÇD$ ���è����H‹|$Hƒÿ�tHo H|$ H‰îè����è����HƒÄÉëá������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���nð� runtime.duffzero���¦��*runtime.racereadrange���ސ� runtime.duffcopy���è��(runtime.racefuncexit���P �� "".~r0�"type."".Rectangle�"".p��type.*"".RGBA64�! [ ��
ؐ��*I�Tgclocals·50a798c9d6a789f8ff12a130568a080f�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ"".(*RGBA64).At��À��¾eH‹ %(���H‹‰����H;awè����ëãHƒì8H‹\$8H‰$è����HÇD$X����HÇD$`����H‹\$@H‰$H‹\$HH‰\$H‹\$PH‰\$è����H·\$f‰\$0H·\$f‰\$2H·\$f‰\$4H·\$f‰\$6H����H‰$H����H‰\$H����H‰\$H\$0H‰\$è����H‹\$ H‰\$XH‹\$(H‰\$`è����HƒÄ8Ã������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¾��*"".(*RGBA64).RGBA64At���¤��.type.image/color.RGBA64���º��,type.image/color.Color���Ò��Xgo.itab.image/color.RGBA64.image/color.Color���ú��runtime.convT2I���¬��(runtime.racefuncexit���Pp��
"".autotmp_0158�.type.image/color.RGBA64� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64�!p½o�à�ÜA”��*« �Tgclocals·f4e5c2ea265c0bb50618a74b99defd82�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ*"".(*RGBA64).RGBA64At��À��´eH‹ %(���H‹‰����HD$øH;Awè����ëÞHìˆ���H‹œ$ˆ���H‰$è����fDŽ$¨�����fDŽ$ª�����fDŽ$¬�����fDŽ$®�����H‹œ$˜���H‰\$8H‹œ$ ���H‰\$@H‹œ$���H‰$Hƒ$ HÇD$ ���è����L‹D$8H‹D$@H‹”$���Hƒú�„œ��Hj H\$HH‰ßH‰îè����H‹\$HL9Ïs��H‹l$XI9èe��H‹\$PH9ÏW��H‹l$`H9èI��HÇÀ���<�uI1í1Ò1É1Àf‰l$0f‰¬$¨���f‰T$2f‰”$ª���f‰L$4f‰Œ$¬���f‰D$6f‰„$®���è����HÄˆ���ÃH‹œ$˜���H‰\$H‹œ$ ���H‰\$H‰T$hH‰$Hƒ$ è����H‹D$hH‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$hH‰$Hƒ$è����H‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ fÇD$0��fÇD$2��fÇD$4��fÇD$6��H‹œ$���H‰$è����H‹D$ H‹œ$���HƒÀ�H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃô��HH‰$è����H‹œ$���H‰$è����H‹D$ HÿÀH‹œ$���H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ™��HH‰$è����H‹|$ H‹´$���H‰úHƒÂ�Hƒþ�„g��H‹H‹FL‹FH9ƒL��Hf¶HÁãH‰øHÿÀH‹H‹NL‹NL‰Œ$€���H‰T$pH‰L$xH9ȃ ��H,f¶m�H ëf‰\$0H‰4$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃµ��HH‰$è����H‹œ$���H‰$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃY��HH‰$è����H‹|$ H‹´$���H‰úHƒÂHƒþ�„'��H‹H‹FL‹FH9ƒ ��Hf¶HÁãH‰øHƒÀH‹H‹NL‹NL‰Œ$€���H‰T$pH‰L$xH9ȃÌ��H,f¶m�H ëf‰\$2H‰4$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃt��HH‰$è����H‹œ$���H‰$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ��HH‰$è����H‹|$ H‹´$���H‰úHƒÂHƒþ�„æ��H‹H‹FL‹FH9ƒË��Hf¶HÁãH‰øHƒÀH‹H‹NL‹NL‰Œ$€���H‰T$pH‰L$xH9ȃ‹��H,f¶m�H ëf‰\$4H‰4$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ3��HH‰$è����H‹œ$���H‰$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ×���HH‰$è����H‹¼$���H‹t$ H‰òHƒÂHƒÿ�„¥���H‹H‹GL‹GH9ƒŠ���Hf¶HÁãH‰ðHƒÀH‹H‹OL‹OL‰Œ$€���H‰T$pH‰L$xH9ÈsNH,f¶m�H ëH‰ØH·\$0f‰œ$¨���H·\$2f‰œ$ª���H·\$4f‰œ$¬���f‰„$®���è����HÄˆ���Ãè���� è���� ‰éTÿÿÿè���� è���� è���� è���� ‰éþÿÿè���� è���� è���� è���� ‰éÒüÿÿè���� è���� è���� è���� ‰é’ûÿÿè���� è���� 1Àé·ùÿÿ‰é]ùÿÿT������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���®��*runtime.racereadrange���Ž� runtime.duffcopy���–��(runtime.racefuncexit���€�� runtime.raceread���Ò�� runtime.raceread���ø�� runtime.raceread���¬�� runtime.raceread���´ �� runtime.raceread���Ö �� runtime.raceread���Ü
�� runtime.raceread���ä �� runtime.raceread���ì �� runtime.raceread���Ž�� runtime.raceread���–�� runtime.raceread��� �� runtime.raceread���¨�� runtime.raceread���Ê�� runtime.raceread���Ò�� runtime.raceread���Ü�� runtime.raceread���ä�� runtime.raceread���†�� runtime.raceread���Ž�� runtime.raceread���è��(runtime.racefuncexit���‚��$runtime.panicindex�����$runtime.panicindex���¬��$runtime.panicindex���º��$runtime.panicindex���È��$runtime.panicindex���Ö��$runtime.panicindex���ò��$runtime.panicindex���€��$runtime.panicindex���Ž��$runtime.panicindex���œ��$runtime.panicindex���¸��$runtime.panicindex���Æ��$runtime.panicindex���Ô��$runtime.panicindex���â��$runtime.panicindex���þ��$runtime.panicindex���Œ��$runtime.panicindex���@��"".autotmp_0163��.type.image/color.RGBA64�"".autotmp_0162�¿type.int�"".autotmp_0161��type.int�"".autotmp_0160�¯.type.image/color.RGBA64�"".y�ïtype.int�"".x�ßtype.int�"".p�?type.*"".RGBA64�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�Ïtype.int� "".~r2�0.type.image/color.RGBA64�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64�*)­è
 �à�|ä)(¬<–¶n¯o¯o¯i
?  �&�5•5–ž   �Tgclocals·1a780b2043fc6869f6e645f97d4b356b�Tgclocals·07ce3793e0acbc9268622f5f9e9eb47d���0c:/go/src/image/image.goþ,"".(*RGBA64).PixOffset��€��êeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÁåHëH‰\$0è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���|�� runtime.raceread���Î�� runtime.raceread���ô�� runtime.raceread���Ø��(runtime.racefuncexit���@ ��
"".autotmp_0196�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64�! “ �À�‚!Ÿ��*�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ "".(*RGBA64).Set��à!��Ô!eH‹ %(���H‹‰����HD$ÐH;Awè����ëÞHì°���H‹œ$°���H‰$è����H‹œ$À���H‰\$PH‹œ$È���H‰\$XH‹œ$¸���H‰$Hƒ$ HÇD$ ���è����L‹D$PH‹D$XH‹”$¸���Hƒú�„Ô��Hj H\$`H‰ßH‰îè����H‹\$`L9Ï«��H‹l$pI9荝��H‹\$hH9Ϗ��H‹l$xH9荁��HÇÀ���<�u è����HÄ°���ÃH‹œ$À���H‰\$0H‹œ$È���H‰\$(H‰”$€���H‰$Hƒ$ è����H‹„$€���H‹X H‹l$0H)ÝH‰l$HH‰$Hƒ$ Hƒ$è����H‹œ$€���H‰$Hƒ$è����H‹„$€���H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HHÁåHëH‰\$8H����H‰$è����H‹œ$Ð���H‰\$H‹œ$Ø���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ H����H‰$H‰Œ$ˆ���H‰L$H‰„$���H‰D$è����H·\$f‰\$@H·\$f‰\$BH·\$f‰\$DH·\$f‰\$FH‹\$8HƒÃ�H‰\$HH‹œ$¸���H‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃÆ��H)H‰$è����H‹”$¸���Hƒú�„ ��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ńh��H)H·l$@fÁí@ˆ+H‹\$8HÿÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń��H)H‰$è����H‹”$¸���Hƒú�„Û��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń£��H)H·l$@@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń?��H)H‰$è����H‹”$¸���Hƒú�„��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ńá��H)H·l$BfÁí@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ńy��H)H‰$è����H‹”$¸���Hƒú�„S��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń��H)H·l$B@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń·��H)H‰$è����H‹”$¸���Hƒú�„‘��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃY��H)H·l$DfÁí@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ńñ��H)H‰$è����H‹”$¸���Hƒú�„Ë��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń“��H)H·l$D@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń/��H)H‰$è����H‹”$¸���Hƒú�„ ��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃÑ���H)H·l$FfÁí@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅsmH)H‰$è����H‹œ$¸���Hƒû�tNH‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅsH)H·l$F@ˆ+è����HÄ°���Ãè���� ‰ë®è���� è���� ‰éðþÿÿè���� è���� ‰é.þÿÿè���� è���� ‰éhýÿÿè���� è���� ‰é¦üÿÿè���� è���� ‰éàûÿÿè���� è���� ‰éûÿÿè���� è���� ‰éYúÿÿè���� 1Àéøÿÿ‰é%øÿÿb������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Þ��*runtime.racereadrange���¾� runtime.duffcopy���Î��(runtime.racefuncexit���¾�� runtime.raceread���–�� runtime.raceread���Â�� runtime.raceread���°��.image/color.RGBA64Model���Â�� runtime.raceread���„�.image/color.RGBA64Model���š��.image/color.RGBA64Model���ª�
������È��.type.image/color.RGBA64���Ž��"runtime.assertI2T���¤ �� runtime.raceread���°
��"runtime.racewrite���„ �� runtime.raceread��� ��"runtime.racewrite���Þ�� runtime.raceread���ê��"runtime.racewrite���À�� runtime.raceread���Ì��"runtime.racewrite���š�� runtime.raceread���¦��"runtime.racewrite���ü�� runtime.raceread���ˆ��"runtime.racewrite���Ö�� runtime.raceread���â��"runtime.racewrite���¸�� runtime.raceread���¼��"runtime.racewrite���Ö��(runtime.racefuncexit���ð��$runtime.panicindex���†��$runtime.panicindex���”��$runtime.panicindex���°��$runtime.panicindex���¾��$runtime.panicindex���Ú��$runtime.panicindex���è��$runtime.panicindex���„ ��$runtime.panicindex���’ ��$runtime.panicindex���® ��$runtime.panicindex���¼ ��$runtime.panicindex���Ø ��$runtime.panicindex���æ ��$runtime.panicindex���‚!��$runtime.panicindex���!��$runtime.panicindex���¬!��$runtime.panicindex���Pà��,"".autotmp_0208��type.int�"".autotmp_0207��type.int�"".autotmp_0206��type.int�"".autotmp_0205��type.int�"".autotmp_0204��type.int�"".autotmp_0203��type.int�"".autotmp_0202��type.int�"".autotmp_0201��type.int�"".autotmp_0200�Ïtype.int�"".autotmp_0199��type.int�"".autotmp_0197�O,type.image/color.Color�"".y�type.int�"".x�ÿtype.int�"".p�_type.*"".RGBA64�"".r�Ÿ"type."".Rectangle�"".p�¿type."".Point�
"".c1�ß.type.image/color.RGBA64�"".i�ïtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64�*)àÉßàà ßà¹�ð�~Š)¬¢¢¹¬±­±­±¦ ��5é‚Ð �Tgclocals·562ff44fc2b4beb994776fb7f4a5aec4�Tgclocals·23c4785fa8abd7e258acfe91c9f325f3���0c:/go/src/image/image.goþ,"".(*RGBA64).SetRGBA64��€��ôeH‹ %(���H‹‰����H;awè����ëãHì€���H‹œ$€���H‰$è����H‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹D$0H‹D$8H‹”$ˆ���Hƒú�„©��Hj H\$@H‰ßH‰îè����H‹\$@L9Ï€��H‹l$PI9èr��H‹\$HH9Ïd��H‹l$XH9èV��HÇÀ���<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰T$`H‰$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ HƒÃ�H‰\$(H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃW��H)H‰$è����H‹”$ˆ���Hƒú�„1��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń��H)H·¬$ ���fÁí@ˆ+H‹\$ HÿÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń¡��H)H‰$è����H‹”$ˆ���Hƒú�„{��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃL��H)H·¬$ ���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ńî��H)H‰$è����H‹”$ˆ���Hƒú�„È��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń™��H)H·¬$¢���fÁí@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń7��H)H‰$è����H‹”$ˆ���Hƒú�„��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ńâ��H)H·¬$¢���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń„��H)H‰$è����H‹”$ˆ���Hƒú�„^��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń/��H)H·¬$¤���fÁí@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÍ��H)H‰$è����H‹”$ˆ���Hƒú�„§��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ńx��H)H·¬$¤���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń��H)H‰$è����H‹”$ˆ���Hƒú�„ô���H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÅ���H)H·¬$¦���fÁí@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsgH)H‰$è����H‹œ$ˆ���Hƒû�tHH‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)H·¬$¦���@ˆ+è����HÄ€���Ãè���� ‰ë´è���� è���� ‰éÿÿÿè���� è���� ‰éRþÿÿè���� è���� ‰é›ýÿÿè���� è���� ‰éèüÿÿè���� è���� ‰é1üÿÿè���� è���� ‰é~ûÿÿè���� è���� ‰éÈúÿÿè���� 1Àéªùÿÿ‰éPùÿÿT������.��0runtime.morestack_noctxt���b��*runtime.racefuncenter���Ô��*runtime.racereadrange���´� runtime.duffcopy���Ä��(runtime.racefuncexit���®�� runtime.raceread���€�� runtime.raceread���¦�� runtime.raceread���´�� runtime.raceread���®��"runtime.racewrite���ö�� runtime.raceread���ð ��"runtime.racewrite���² �� runtime.raceread���¬ ��"runtime.racewrite���ö �� runtime.raceread���ð��"runtime.racewrite���²�� runtime.raceread���¬��"runtime.racewrite���ö�� runtime.raceread���ð��"runtime.racewrite���²�� runtime.raceread���¬��"runtime.racewrite���ö�� runtime.raceread���è��"runtime.racewrite���ö��(runtime.racefuncexit�����$runtime.panicindex���¦��$runtime.panicindex���´��$runtime.panicindex���Ð��$runtime.panicindex���Þ��$runtime.panicindex���ú��$runtime.panicindex���ˆ��$runtime.panicindex���¤��$runtime.panicindex���²��$runtime.panicindex���Î��$runtime.panicindex���Ü��$runtime.panicindex���ø��$runtime.panicindex���†��$runtime.panicindex���¢��$runtime.panicindex���°��$runtime.panicindex���Ì��$runtime.panicindex���@€��("".autotmp_0235��type.int�"".autotmp_0234��type.int�"".autotmp_0233��type.int�"".autotmp_0232��type.int�"".autotmp_0231��type.int�"".autotmp_0230��type.int�"".autotmp_0229��type.int�"".autotmp_0228��type.int�"".autotmp_0227�¯type.int�"".autotmp_0226��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".RGBA64�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�0.type.image/color.RGBA64�"".y� type.int�"".x�type.int�"".p��type.*"".RGBA64�*$€Éÿ€˜ ÿ€¹�À�xª$¬‘ª¢ž¢ž¢—��0惧 �Tgclocals·baa0c3679835632b56aa126ccf73f5ec�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ*"".(*RGBA64).SubImage�� ��ŒeH‹ %(���H‹‰����HD$€H;Awè����ëÞHì���H‹œ$���H‰$è����HDŽ$0������HDŽ$8������H‹œ$��H‰$Hƒ$ HÇD$ ���è����Hœ$��H,$H‰ïH‰Þè����H‹¼$��Hƒÿ�„%��Ho H|$ H‰îè����è����H\$@H¬$¸���H‰ïH‰Þè����Hœ$¸���H¬$��H‰ïH‰Þè����Hœ$��H¬$˜���H‰ïH‰Þè����H‹œ$˜���H‹¬$¨���H9덜��H‹œ$ ���H‹¬$°���H9덃��1À<�„µ���H����H‰$è����H‹D$H‰„$à���H‰$HÇD$@���è����H‹¼$à���H‰ùHƒÿ�tq1Àè����H‰Œ$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉ë‹H‹Œ$��H‹„$��H‹œ$��H‰\$hH‰D$`H‰Œ$Ø���H‰ $Hƒ$ è����H‹„$Ø���H‹X H‹l$hH)ÝH‰¬$���H‰$Hƒ$ Hƒ$è����H‹œ$Ø���H‰$Hƒ$è����H‹„$Ø���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹¬$���HÁåHëH‰\$pH����H‰$è����H‹\$H‰œ$à���H‹œ$��H‰$è����H‹„$��H‹XH‰œ$ˆ���H‰$è����H‹œ$��H‹KH‹D$pH‰Œ$€���H‰D$xH9Á‚›��H‹œ$à���H‰$è����H‹t$xH‹œ$à���H‰$Hƒ<$�„b��H‹œ$��H‹H‹¼$€���H‹”$ˆ���H)÷H)òHƒú�t H‰óHÃH‰ØH‰„$è���H‰D$H‰¼$ð���H‰|$H‰”$ø���H‰T$è����H‹œ$à���H‰$Hƒ$è����H‹œ$��H‰$Hƒ$è����H‹„$à���Hƒø�„Á���L‹„$��I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$à���Hƒø�„���Hh Hœ$��H‰ïH‰Þè����H‰„$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�éxÿÿÿ‰�é8ÿÿÿ‰%����é’þÿÿè���� HÇÀ���ésüÿÿ‰éÔûÿÿP������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Ú��*runtime.racereadrange���ˆ� runtime.duffcopy���ΐ� runtime.duffcopy���Ø��,"".Rectangle.Intersect���ˆ� runtime.duffcopy���¾� runtime.duffcopy���ô� runtime.duffcopy���ú��type."".RGBA64���Œ��"runtime.newobject���Ê��,runtime.racewriterange���úà� runtime.duffzero���˜��6go.itab.*"".RGBA64."".Image���à��(runtime.racefuncexit���þ��type.*"".RGBA64���”��type."".Image���¬��6go.itab.*"".RGBA64."".Image���À�� runtime.typ2Itab���Æ�� runtime.raceread���¤ �� runtime.raceread���Ð �� runtime.raceread���Ä
��type."".RGBA64���Ö
��"runtime.newobject���’ �� runtime.raceread���Ì �� runtime.raceread���¼ ��"runtime.racewrite���¬��2runtime.writebarrierslice���Ø��"runtime.racewrite���„�� runtime.raceread���ö��,runtime.racewriterange���Ȑ� runtime.duffcopy���æ��6go.itab.*"".RGBA64."".Image���®��(runtime.racefuncexit���Ì��type.*"".RGBA64���â��type."".Image���ú��6go.itab.*"".RGBA64."".Image���Ž�� runtime.typ2Itab���Ú��$runtime.panicslice���p€��("".autotmp_0265��type.*uint8�"".autotmp_0264�type.uint64�"".autotmp_0263�ÿtype.uint64�"".autotmp_0262�ïtype.uint64�"".autotmp_0261��type.*"".RGBA64�"".autotmp_0260��type.int�"".autotmp_0259��type.int�"".autotmp_0258�ßtype.int�"".autotmp_0256�?type.*"".RGBA64�"".autotmp_0254��type.*"".RGBA64�"".autotmp_0253��type.*"".RGBA64�"".autotmp_0252�"type."".Rectangle�"".y�¿type.int�"".x�¯type.int�"".p�Otype.*"".RGBA64�"".r�Ï"type."".Rectangle�"".i�Ÿtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".RGBA64�()€’ÿ€¦ÿ€m�Ð �^ÌR‘Wu  ;°k‰p- �4�5¯K0CˆŽ0&$�Tgclocals·2a24b925de47e6af398f4500cd782a35�Tgclocals·c4d490826610b32d5111d57f926afcb9���0c:/go/src/image/image.goþ&"".(*RGBA64).Opaque�� ��žeH‹ %(���H‹‰����HD$ðH;Awè����ëÞHì���H‹œ$���H‰$è����H‹œ$˜���H‰$Hƒ$ HÇD$ ���è����H‹”$˜���Hƒú�„]��Hj H\$XH‰ßH‰îè����H‹\$XH‹l$hH9ë*��H‹\$`H‹l$pH9ë��1À<�tƄ$ ���è����HÄ���ÃH‰$Hƒ$ HÇD$ ���è����H‹”$˜���Hƒú�„Ì��Hj H\$8H‰ßH‰îè����H‹\$HH‹l$8H)ëHÁãHÇD$ ���H‰\$H‰$Hƒ$ Hƒ$è����H‹Œ$˜���H‹i(H‰l$H‰ $Hƒ$ Hƒ$Hƒ$è����H‹Œ$˜���H‹Y8H‹l$H9ëŽ.��H‹D$ H‰D$(H‹l$H9èc��H‰ $è����H‹D$(H‹œ$˜���HƒÀ�H‹H‹KH‹kH‰¬$ˆ���H‰T$xH‰Œ$€���H9ȃÌ��HH‰$è����H‹´$˜���H‹D$(HƒÀ�Hƒþ�„��H‹H‹NL‹FL‰„$ˆ���H‰T$xH‰Œ$€���H9ȃm��H¶€ûÿ…3��H‰4$è����H‹D$(HÿÀH‹œ$˜���H‹H‹KH‹kH‰¬$ˆ���H‰T$xH‰Œ$€���H9ȃ��HH‰$è����H‹|$(H‹Œ$˜���H‰øHÿÀHƒù�„ã���H‹1H‹QL‹AL‰„$ˆ���H‰t$xH‰”$€���H9Ѓ³���H¶€ûÿ…Ž���H‰øHƒÀH‰D$(H‹l$H9茝þÿÿH‹\$ H‰\$0H‰ $Hƒ$è����H‹„$˜���H‹XH‹l$0HëH‰\$ H‹\$H‰\$0H‰$Hƒ$è����H‹Œ$˜���H‹YH‹l$0HëH‰\$H‹\$HÿÃH‰\$éßýÿÿƄ$ ����è����HÄ���Ãè���� ‰éÿÿÿè���� è���� ‰é\þÿÿè���� Ƅ$ ���è����HÄ���Éé-ýÿÿHÇÀ���éßüÿÿ‰éœüÿÿ,������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���ª��*runtime.racereadrange���ö� runtime.duffcopy���è��(runtime.racefuncexit���¦��*runtime.racereadrange���ò� runtime.duffcopy���Ö�� runtime.raceread���¨�� runtime.raceread���ž�� runtime.raceread���¬�� runtime.raceread���æ�� runtime.raceread���ò �� runtime.raceread���‚ �� runtime.raceread���ä �� runtime.raceread���Ô ��(runtime.racefuncexit���î ��$runtime.panicindex���Š��$runtime.panicindex���˜��$runtime.panicindex���´��$runtime.panicindex���Ò��(runtime.racefuncexit���  ��"".autotmp_0279��type.int�"".autotmp_0278��type.int�"".autotmp_0277�¿type.int�"".autotmp_0275��type.int�"".autotmp_0274��type.int�"".autotmp_0273��type.int�"".autotmp_0272��type.int�"".r�¯"type."".Rectangle�"".r�o"type."".Rectangle�"".i�Ïtype.int�"".y�ÿtype.int�
"".i1�ïtype.int�
"".i0�ßtype.int� "".~r0�type.bool�"".p��type.*"".RGBA64�4) –Ÿ µŸ >Ÿ �Ð�Zî)q\VÉ
11   *� �5~— 2(�Tgclocals·cf86db206769ec68369d07e260728f65�Tgclocals·bfc69a0c89200aaeab2b53343f38a3be���0c:/go/src/image/image.goþ"".NewRGBA64��€��öeH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���H‹œ$˜���H‰$è����Hœ$ ���Hl$XH‰ïH‰Þè����H‹T$hH‹|$XH)úHœ$ ���H|$8H‰Þè����H‹D$PH‹l$@H)èH‰ÓH‰T$0HÁãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹l$H‹T$ H‹D$(H‰¬$€���H‰”$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‰$Hƒ<$�„£���H‹œ$€���H‰\$H‹œ$ˆ���H‰\$H‹œ$���H‰\$è����H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0HÁåH‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xHƒø�t,Hh Hœ$ ���H‰ïH‰Þè����H‰„$À���è����HÄ˜���É�ëЉ%����éQÿÿÿ������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���œ� runtime.duffcopy���à� runtime.duffcopy���®��type.[]uint8���Ô��"runtime.makeslice���°��type."".RGBA64���Â��"runtime.newobject���è��"runtime.racewrite���è��2runtime.writebarrierslice���Ž��"runtime.racewrite���à��,runtime.racewriterange���¤� runtime.duffcopy���¾��(runtime.racefuncexit���P°��"".autotmp_0294�?type.*"".RGBA64�"".autotmp_0293��type.int�"".autotmp_0291��type.int�"".autotmp_0290��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".RGBA64�"".r��"type."".Rectangle�)°¯°�À�’)GTë��5«@k"�Tgclocals·c883c1a619e1938819370d0a31e3736f�Tgclocals·9fd26bf7af0929d886dbef3fe54c8a77���0c:/go/src/image/image.goþ,"".(*NRGBA).ColorModel��€��æeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����HÇD$����HÇD$ ����H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���ˆ��,image/color.NRGBAModel���š�� runtime.raceread���¨��,image/color.NRGBAModel���À�,image/color.NRGBAModel���Ô��(runtime.racefuncexit���0�� "".~r0�,type.image/color.Model�"".p��type.*"".NRGBA�!Q�€�
´€��*?�Tgclocals·a9282ac20787dc3025c0916068a42263�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ$"".(*NRGBA).Bounds�� ��‚eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H|$ 1Àè����H‹\$H‰$Hƒ$ HÇD$ ���è����H‹|$Hƒÿ�tHo H|$ H‰îè����è����HƒÄÉëá������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���nð� runtime.duffzero���¦��*runtime.racereadrange���ސ� runtime.duffcopy���è��(runtime.racefuncexit���P �� "".~r0�"type."".Rectangle�"".p��type.*"".NRGBA�! [ ��
¸��*I�Tgclocals·50a798c9d6a789f8ff12a130568a080f�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ"".(*NRGBA).At��À��®eH‹ %(���H‹‰����H;awè����ëãHƒì8H‹\$8H‰$è����HÇD$X����HÇD$`����H‹\$@H‰$H‹\$HH‰\$H‹\$PH‰\$è����¶\$ˆ\$4¶\$ˆ\$5¶\$ˆ\$6¶\$ˆ\$7H����H‰$H����H‰\$H����H‰\$H\$4H‰\$è����H‹\$ H‰\$XH‹\$(H‰\$`è����HƒÄ8Ã������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¾��&"".(*NRGBA).NRGBAAt���”��,type.image/color.NRGBA���ª��,type.image/color.Color���Â��Vgo.itab.image/color.NRGBA.image/color.Color���ê��runtime.convT2I���œ��(runtime.racefuncexit���Pp��
"".autotmp_0295�,type.image/color.NRGBA� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�!pµo
�à�¼AŒ��*£�Tgclocals·f4e5c2ea265c0bb50618a74b99defd82�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ&"".(*NRGBA).NRGBAAt��à��ÚeH‹ %(���H‹‰����HD$øH;Awè����ëÞHìˆ���H‹œ$ˆ���H‰$è����Ƅ$¨����Ƅ$©����Ƅ$ª����Ƅ$«����H‹œ$˜���H‰\$8H‹œ$ ���H‰\$@H‹œ$���H‰$Hƒ$ HÇD$ ���è����L‹D$8H‹D$@H‹”$���Hƒú�„7��Hj H\$HH‰ßH‰îè����H‹\$HL9Ï��H‹l$XI9è���H‹\$PH9Ïò��H‹l$`H9èä��HÇÀ���<�uC1í1Ò1É1À@ˆl$@ˆ¬$¨���ˆT$ˆ”$©���ˆL$ˆŒ$ª���ˆD$ˆ„$«���è����HÄˆ���ÃH‹œ$˜���H‰\$ H‹œ$ ���H‰\$H‰T$hH‰$Hƒ$ è����H‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$è����H‹\$hH‰$Hƒ$è����H‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HÁåHëH‰\$(ÆD$�ÆD$�ÆD$�ÆD$�H‹œ$���H‰$è����H‹D$(H‹œ$���HƒÀ�H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ��HH‰$è����H‹´$���H‹D$(HƒÀ�Hƒþ�„n��H‹H‹NL‹FL‰„$€���H‰T$pH‰L$xH9ȃA��H¶ˆ\$H‰4$è����H‹D$(HÿÀH‹œ$���H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃð��HH‰$è����H‹´$���H‹D$(HÿÀHƒþ�„Â��H‹H‹NL‹FL‰„$€���H‰T$pH‰L$xH9ȃ•��H¶ˆ\$H‰4$è����H‹D$(H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃC��HH‰$è����H‹´$���H‹D$(HƒÀHƒþ�„��H‹H‹NL‹FL‰„$€���H‰T$pH‰L$xH9ȃç���H¶ˆ\$H‰4$è����H‹D$(H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ•���HH‰$è����H‹D$(H‹¬$���HƒÀHƒý�tlH‹U�H‹ML‹EL‰„$€���H‰T$pH‰L$xH9ÈsBH¶H‰Ø¶\$ˆœ$¨���¶\$ˆœ$©���¶\$ˆœ$ª���ˆ„$«���è����HÄˆ���Ãè���� ‰E�ëè���� è���� ‰éåþÿÿè���� è���� ‰é7þÿÿè���� è���� ‰é‹ýÿÿè���� 1Àéüÿÿ‰éÂûÿÿ4������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���ž��*runtime.racereadrange���þ� runtime.duffcopy���ú��(runtime.racefuncexit���ä�� runtime.raceread���¶�� runtime.raceread���Ü�� runtime.raceread���€�� runtime.raceread���ˆ �� runtime.raceread���²
�� runtime.raceread���¸ �� runtime.raceread���à �� runtime.raceread���è �� runtime.raceread���’�� runtime.raceread���š�� runtime.raceread���‚��(runtime.racefuncexit���œ��$runtime.panicindex���´��$runtime.panicindex���Â��$runtime.panicindex���Þ��$runtime.panicindex���ì��$runtime.panicindex���ˆ��$runtime.panicindex���–��$runtime.panicindex���²��$runtime.panicindex���@��"".autotmp_0300��,type.image/color.NRGBA�"".autotmp_0299�¯type.int�"".autotmp_0298��type.int�"".autotmp_0297�ç,type.image/color.NRGBA�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".NRGBA�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int� "".~r2�0,type.image/color.NRGBA�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�()ŸÃc�ð �2Ä)
 ¬6–€�$�5‡5Ž c�Tgclocals·1a780b2043fc6869f6e645f97d4b356b�Tgclocals·07ce3793e0acbc9268622f5f9e9eb47d���0c:/go/src/image/image.goþ*"".(*NRGBA).PixOffset��€��êeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÁåHëH‰\$0è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���|�� runtime.raceread���Î�� runtime.raceread���ô�� runtime.raceread���Ø��(runtime.racefuncexit���@ ��
"".autotmp_0317�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�! “ �À�Ø!Ÿ��*�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ"".(*NRGBA).Set�� ��ŒeH‹ %(���H‹‰����HD$ÐH;Awè����ëÞHì°���H‹œ$°���H‰$è����H‹œ$À���H‰\$PH‹œ$È���H‰\$XH‹œ$¸���H‰$Hƒ$ HÇD$ ���è����L‹D$PH‹D$XH‹”$¸���Hƒú�„°��Hj H\$`H‰ßH‰îè����H‹\$`L9χ��H‹l$pI9èy��H‹\$hH9Ïk��H‹l$xH9è]��HÇÀ���<�u è����HÄ°���ÃH‹œ$À���H‰\$8H‹œ$È���H‰\$0H‰”$€���H‰$Hƒ$ è����H‹„$€���H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$è����H‹œ$€���H‰$Hƒ$è����H‹„$€���H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHÁåHëH‰\$@H����H‰$è����H‹œ$Ð���H‰\$H‹œ$Ø���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ H����H‰$H‰Œ$ˆ���H‰L$H‰„$���H‰D$è����¶\$ˆ\$,¶\$ˆ\$-¶\$ˆ\$.¶\$ˆ\$/H‹\$@HƒÃ�H‰\$HH‹œ$¸���H‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ńª��H)H‰$è����H‹”$¸���Hƒú�„„��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃL��H)¶l$,@ˆ+H‹\$@HÿÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ńê��H)H‰$è����H‹”$¸���Hƒú�„Ä��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃŒ��H)¶l$-@ˆ+H‹\$@HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń)��H)H‰$è����H‹”$¸���Hƒú�„��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃË���H)¶l$.@ˆ+H‹\$@HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅslH)H‰$è����H‹œ$¸���Hƒû�tMH‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅsH)¶l$/@ˆ+è����HÄ°���Ãè���� ‰ë¯è���� è���� ‰éöþÿÿè���� è���� ‰é5þÿÿè���� è���� ‰éuýÿÿè���� 1Àé£ûÿÿ‰éIûÿÿB������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Þ��*runtime.racereadrange���¾� runtime.duffcopy���Î��(runtime.racefuncexit���¾�� runtime.raceread���–�� runtime.raceread���Â�� runtime.raceread���°��,image/color.NRGBAModel���Â�� runtime.raceread���„�,image/color.NRGBAModel���š��,image/color.NRGBAModel���ª�
������È��,type.image/color.NRGBA���Ž��"runtime.assertI2T���” �� runtime.raceread��� 
��"runtime.racewrite���ê �� runtime.raceread���ö ��"runtime.racewrite���Â�� runtime.raceread���Î��"runtime.racewrite���š�� runtime.raceread���ž��"runtime.racewrite���¶��(runtime.racefuncexit���Ð��$runtime.panicindex���æ��$runtime.panicindex���ô��$runtime.panicindex�����$runtime.panicindex���ž��$runtime.panicindex���º��$runtime.panicindex���È��$runtime.panicindex���ä��$runtime.panicindex���Pà��$"".autotmp_0325��type.int�"".autotmp_0324��type.int�"".autotmp_0323��type.int�"".autotmp_0322��type.int�"".autotmp_0321�Ïtype.int�"".autotmp_0320��type.int�"".autotmp_0318�O,type.image/color.Color�"".y�ÿtype.int�"".x�ïtype.int�"".p�_type.*"".NRGBA�"".r�Ÿ"type."".Rectangle�"".p�¿type."".Point�
"".c1�‡,type.image/color.NRGBA�"".i�ßtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�()àÉßàóßài�Ð
�Và)¬ ¢š´«¬¥ ��5é‚°�Tgclocals·562ff44fc2b4beb994776fb7f4a5aec4�Tgclocals·23c4785fa8abd7e258acfe91c9f325f3���0c:/go/src/image/image.goþ("".(*NRGBA).SetNRGBA��À��´eH‹ %(���H‹‰����H;awè����ëãHì€���H‹œ$€���H‰$è����H‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹D$0H‹D$8H‹”$ˆ���Hƒú�„É��Hj H\$@H‰ßH‰îè����H‹\$@L9Ï ��H‹l$PI9荒��H‹\$HH9Ï„��H‹l$XH9èv��HÇÀ���<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰T$`H‰$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ HƒÃ�H‰\$(H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ńw��H)H‰$è����H‹”$ˆ���Hƒú�„Q��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń"��H)¶¬$ ���@ˆ+H‹\$ HÿÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÆ��H)H‰$è����H‹”$ˆ���Hƒú�„ ��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ńq��H)¶¬$¡���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń��H)H‰$è����H‹”$ˆ���Hƒú�„î���H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń¿���H)¶¬$¢���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsfH)H‰$è����H‹œ$ˆ���Hƒû�tGH‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)¶¬$£���@ˆ+è����HÄ€���Ãè���� ‰ëµè���� è���� ‰é ÿÿÿè���� è���� ‰éYþÿÿè���� è���� ‰é¨ýÿÿè���� 1ÀéŠüÿÿ‰é0üÿÿ4������.��0runtime.morestack_noctxt���b��*runtime.racefuncenter���Ô��*runtime.racereadrange���´� runtime.duffcopy���Ä��(runtime.racefuncexit���®�� runtime.raceread���€�� runtime.raceread���¦�� runtime.raceread���´�� runtime.raceread���®��"runtime.racewrite���ì�� runtime.raceread���æ ��"runtime.racewrite���¦ �� runtime.raceread���  ��"runtime.racewrite���à �� runtime.raceread���Ò��"runtime.racewrite���Þ��(runtime.racefuncexit���ø��$runtime.panicindex���Ž��$runtime.panicindex���œ��$runtime.panicindex���¸��$runtime.panicindex���Æ��$runtime.panicindex���â��$runtime.panicindex���ð��$runtime.panicindex���Œ��$runtime.panicindex���@€�� "".autotmp_0340��type.int�"".autotmp_0339��type.int�"".autotmp_0338��type.int�"".autotmp_0337��type.int�"".autotmp_0336�¯type.int�"".autotmp_0335��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".NRGBA�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�0,type.image/color.NRGBA�"".y� type.int�"".x�type.int�"".p��type.*"".NRGBA�($€Éÿ€Œÿ€e�à�Pø$ ¬ ‘¥œ–��0æƒÇ�Tgclocals·baa0c3679835632b56aa126ccf73f5ec�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ("".(*NRGBA).SubImage�� ��ŒeH‹ %(���H‹‰����HD$€H;Awè����ëÞHì���H‹œ$���H‰$è����HDŽ$0������HDŽ$8������H‹œ$��H‰$Hƒ$ HÇD$ ���è����Hœ$��H,$H‰ïH‰Þè����H‹¼$��Hƒÿ�„%��Ho H|$ H‰îè����è����H\$@H¬$¸���H‰ïH‰Þè����Hœ$¸���H¬$��H‰ïH‰Þè����Hœ$��H¬$˜���H‰ïH‰Þè����H‹œ$˜���H‹¬$¨���H9덜��H‹œ$ ���H‹¬$°���H9덃��1À<�„µ���H����H‰$è����H‹D$H‰„$à���H‰$HÇD$@���è����H‹¼$à���H‰ùHƒÿ�tq1Àè����H‰Œ$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉ë‹H‹Œ$��H‹„$��H‹œ$��H‰\$hH‰D$`H‰Œ$Ø���H‰ $Hƒ$ è����H‹„$Ø���H‹X H‹l$hH)ÝH‰¬$���H‰$Hƒ$ Hƒ$è����H‹œ$Ø���H‰$Hƒ$è����H‹„$Ø���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹¬$���HÁåHëH‰\$pH����H‰$è����H‹\$H‰œ$à���H‹œ$��H‰$è����H‹„$��H‹XH‰œ$ˆ���H‰$è����H‹œ$��H‹KH‹D$pH‰Œ$€���H‰D$xH9Á‚›��H‹œ$à���H‰$è����H‹t$xH‹œ$à���H‰$Hƒ<$�„b��H‹œ$��H‹H‹¼$€���H‹”$ˆ���H)÷H)òHƒú�t H‰óHÃH‰ØH‰„$è���H‰D$H‰¼$ð���H‰|$H‰”$ø���H‰T$è����H‹œ$à���H‰$Hƒ$è����H‹œ$��H‰$Hƒ$è����H‹„$à���Hƒø�„Á���L‹„$��I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$à���Hƒø�„���Hh Hœ$��H‰ïH‰Þè����H‰„$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�éxÿÿÿ‰�é8ÿÿÿ‰%����é’þÿÿè���� HÇÀ���ésüÿÿ‰éÔûÿÿP������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Ú��*runtime.racereadrange���ˆ� runtime.duffcopy���ΐ� runtime.duffcopy���Ø��,"".Rectangle.Intersect���ˆ� runtime.duffcopy���¾� runtime.duffcopy���ô� runtime.duffcopy���ú��type."".NRGBA���Œ��"runtime.newobject���Ê��,runtime.racewriterange���úà� runtime.duffzero���˜��4go.itab.*"".NRGBA."".Image���à��(runtime.racefuncexit���þ��type.*"".NRGBA���”��type."".Image���¬��4go.itab.*"".NRGBA."".Image���À�� runtime.typ2Itab���Æ�� runtime.raceread���¤ �� runtime.raceread���Ð �� runtime.raceread���Ä
��type."".NRGBA���Ö
��"runtime.newobject���’ �� runtime.raceread���Ì �� runtime.raceread���¼ ��"runtime.racewrite���¬��2runtime.writebarrierslice���Ø��"runtime.racewrite���„�� runtime.raceread���ö��,runtime.racewriterange���Ȑ� runtime.duffcopy���æ��4go.itab.*"".NRGBA."".Image���®��(runtime.racefuncexit���Ì��type.*"".NRGBA���â��type."".Image���ú��4go.itab.*"".NRGBA."".Image���Ž�� runtime.typ2Itab���Ú��$runtime.panicslice���p€��("".autotmp_0362��type.*uint8�"".autotmp_0361�type.uint64�"".autotmp_0360�ÿtype.uint64�"".autotmp_0359�ïtype.uint64�"".autotmp_0358��type.*"".NRGBA�"".autotmp_0357��type.int�"".autotmp_0356��type.int�"".autotmp_0355�ßtype.int�"".autotmp_0353�?type.*"".NRGBA�"".autotmp_0351��type.*"".NRGBA�"".autotmp_0350��type.*"".NRGBA�"".autotmp_0349�"type."".Rectangle�"".y�¿type.int�"".x�¯type.int�"".p�Otype.*"".NRGBA�"".r�Ï"type."".Rectangle�"".i�Ÿtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".NRGBA�()€’ÿ€¦ÿ€m�Ð �^’R‘Wu  ;°k‰p- �4�5¯K0CˆŽ0&$�Tgclocals·2a24b925de47e6af398f4500cd782a35�Tgclocals·c4d490826610b32d5111d57f926afcb9���0c:/go/src/image/image.goþ$"".(*NRGBA).Opaque��  ��’ eH‹ %(���H‹‰����HD$ðH;Awè����ëÞHì���H‹œ$���H‰$è����H‹œ$˜���H‰$Hƒ$ HÇD$ ���è����H‹”$˜���Hƒú�„—��Hj H\$XH‰ßH‰îè����H‹\$XH‹l$hH9ëd��H‹\$`H‹l$pH9ëQ��1À<�tƄ$ ���è����HÄ���ÃH‰$Hƒ$ HÇD$ ���è����H‹”$˜���Hƒú�„��Hj H\$8H‰ßH‰îè����H‹\$HH‹l$8H)ëHÁãHÇD$ ���H‰\$H‰$Hƒ$ Hƒ$è����H‹Œ$˜���H‹i(H‰l$H‰ $Hƒ$ Hƒ$Hƒ$è����H‹Œ$˜���H‹Y8H‹l$H9ëŽh��H‹D$ H‰D$(H‹l$H9èÇ���H‰ $è����H‹œ$˜���H‹ H‹CH‹kH‰¬$ˆ���H‰L$xH‹l$(H‰„$€���H9Ń
��H)H‰$è����H‹t$(H‹Œ$˜���Hƒù�„ß���H‹H‹AL‹AL‰„$ˆ���H‰T$xH‰„$€���H9ƃ¯���H2¶€ûÿtƄ$ ����è����HÄ���ÃH‰ðHƒÀH‰D$(H‹l$H9èŒ9ÿÿÿH‹\$ H‰\$0H‰ $Hƒ$è����H‹„$˜���H‹XH‹l$0HëH‰\$ H‹\$H‰\$0H‰$Hƒ$è����H‹Œ$˜���H‹YH‹l$0HëH‰\$H‹\$HÿÃH‰\$é{þÿÿè���� ‰éÿÿÿè���� Ƅ$ ���è����HÄ���ÉéóýÿÿHÇÀ���é¥ýÿÿ‰ébýÿÿ$������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���ª��*runtime.racereadrange���ö� runtime.duffcopy���è��(runtime.racefuncexit���¦��*runtime.racereadrange���ò� runtime.duffcopy���Ö�� runtime.raceread���¨�� runtime.raceread���ž�� runtime.raceread���¤�� runtime.raceread���Ö��(runtime.racefuncexit���Ê �� runtime.raceread���¬
�� runtime.raceread���Œ ��$runtime.panicindex���¨ ��$runtime.panicindex���Æ ��(runtime.racefuncexit���  ��"".autotmp_0376��type.int�"".autotmp_0375��type.int�"".autotmp_0374�¿type.int�"".autotmp_0372��type.int�"".autotmp_0371��type.int�"".autotmp_0370��type.int�"".autotmp_0369��type.int�"".r�¯"type."".Rectangle�"".r�o"type."".Rectangle�"".i�Ïtype.int�"".y�ÿtype.int�
"".i1�ïtype.int�
"".i0�ßtype.int� "".~r0�type.bool�"".p��type.*"".NRGBA�6) –Ÿ öŸ ·Ÿ !��Z´)q\V˜  
11 � �5~Ø:~.�Tgclocals·cf86db206769ec68369d07e260728f65�Tgclocals·bfc69a0c89200aaeab2b53343f38a3be���0c:/go/src/image/image.goþ"".NewNRGBA��€��öeH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���H‹œ$˜���H‰$è����Hœ$ ���Hl$XH‰ïH‰Þè����H‹T$hH‹|$XH)úHœ$ ���H|$8H‰Þè����H‹D$PH‹l$@H)èH‰ÓH‰T$0HÁãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹l$H‹T$ H‹D$(H‰¬$€���H‰”$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‰$Hƒ<$�„£���H‹œ$€���H‰\$H‹œ$ˆ���H‰\$H‹œ$���H‰\$è����H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0HÁåH‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xHƒø�t,Hh Hœ$ ���H‰ïH‰Þè����H‰„$À���è����HÄ˜���É�ëЉ%����éQÿÿÿ������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���œ� runtime.duffcopy���à� runtime.duffcopy���®��type.[]uint8���Ô��"runtime.makeslice���°��type."".NRGBA���Â��"runtime.newobject���è��"runtime.racewrite���è��2runtime.writebarrierslice���Ž��"runtime.racewrite���à��,runtime.racewriterange���¤� runtime.duffcopy���¾��(runtime.racefuncexit���P°��"".autotmp_0385�?type.*"".NRGBA�"".autotmp_0384��type.int�"".autotmp_0382��type.int�"".autotmp_0381��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".NRGBA�"".r��"type."".Rectangle�)°¯°�À�Ø)GTë��5«@k"�Tgclocals·c883c1a619e1938819370d0a31e3736f�Tgclocals·9fd26bf7af0929d886dbef3fe54c8a77���0c:/go/src/image/image.goþ0"".(*NRGBA64).ColorModel��€��æeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����HÇD$����HÇD$ ����H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���ˆ��0image/color.NRGBA64Model���š�� runtime.raceread���¨��0image/color.NRGBA64Model���À�0image/color.NRGBA64Model���Ô��(runtime.racefuncexit���0�� "".~r0�,type.image/color.Model�"".p�� type.*"".NRGBA64�!Q�€�
ú€��*?�Tgclocals·a9282ac20787dc3025c0916068a42263�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ("".(*NRGBA64).Bounds�� ��‚eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H|$ 1Àè����H‹\$H‰$Hƒ$ HÇD$ ���è����H‹|$Hƒÿ�tHo H|$ H‰îè����è����HƒÄÉëá������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���nð� runtime.duffzero���¦��*runtime.racereadrange���ސ� runtime.duffcopy���è��(runtime.racefuncexit���P �� "".~r0�"type."".Rectangle�"".p�� type.*"".NRGBA64�! [ ��
þ��*I�Tgclocals·50a798c9d6a789f8ff12a130568a080f�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ "".(*NRGBA64).At��À��¾eH‹ %(���H‹‰����H;awè����ëãHƒì8H‹\$8H‰$è����HÇD$X����HÇD$`����H‹\$@H‰$H‹\$HH‰\$H‹\$PH‰\$è����H·\$f‰\$0H·\$f‰\$2H·\$f‰\$4H·\$f‰\$6H����H‰$H����H‰\$H����H‰\$H\$0H‰\$è����H‹\$ H‰\$XH‹\$(H‰\$`è����HƒÄ8Ã������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¾��."".(*NRGBA64).NRGBA64At���¤��0type.image/color.NRGBA64���º��,type.image/color.Color���Ò��Zgo.itab.image/color.NRGBA64.image/color.Color���ú��runtime.convT2I���¬��(runtime.racefuncexit���Pp��
"".autotmp_0386�0type.image/color.NRGBA64� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64�!p½o�à�‚A”��*« �Tgclocals·f4e5c2ea265c0bb50618a74b99defd82�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ."".(*NRGBA64).NRGBA64At��À��´eH‹ %(���H‹‰����HD$øH;Awè����ëÞHìˆ���H‹œ$ˆ���H‰$è����fDŽ$¨�����fDŽ$ª�����fDŽ$¬�����fDŽ$®�����H‹œ$˜���H‰\$8H‹œ$ ���H‰\$@H‹œ$���H‰$Hƒ$ HÇD$ ���è����L‹D$8H‹D$@H‹”$���Hƒú�„œ��Hj H\$HH‰ßH‰îè����H‹\$HL9Ïs��H‹l$XI9èe��H‹\$PH9ÏW��H‹l$`H9èI��HÇÀ���<�uI1í1Ò1É1Àf‰l$0f‰¬$¨���f‰T$2f‰”$ª���f‰L$4f‰Œ$¬���f‰D$6f‰„$®���è����HÄˆ���ÃH‹œ$˜���H‰\$H‹œ$ ���H‰\$H‰T$hH‰$Hƒ$ è����H‹D$hH‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$hH‰$Hƒ$è����H‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ fÇD$0��fÇD$2��fÇD$4��fÇD$6��H‹œ$���H‰$è����H‹D$ H‹œ$���HƒÀ�H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃô��HH‰$è����H‹œ$���H‰$è����H‹D$ HÿÀH‹œ$���H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ™��HH‰$è����H‹|$ H‹´$���H‰úHƒÂ�Hƒþ�„g��H‹H‹FL‹FH9ƒL��Hf¶HÁãH‰øHÿÀH‹H‹NL‹NL‰Œ$€���H‰T$pH‰L$xH9ȃ ��H,f¶m�H ëf‰\$0H‰4$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃµ��HH‰$è����H‹œ$���H‰$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃY��HH‰$è����H‹|$ H‹´$���H‰úHƒÂHƒþ�„'��H‹H‹FL‹FH9ƒ ��Hf¶HÁãH‰øHƒÀH‹H‹NL‹NL‰Œ$€���H‰T$pH‰L$xH9ȃÌ��H,f¶m�H ëf‰\$2H‰4$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃt��HH‰$è����H‹œ$���H‰$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ��HH‰$è����H‹|$ H‹´$���H‰úHƒÂHƒþ�„æ��H‹H‹FL‹FH9ƒË��Hf¶HÁãH‰øHƒÀH‹H‹NL‹NL‰Œ$€���H‰T$pH‰L$xH9ȃ‹��H,f¶m�H ëf‰\$4H‰4$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ3��HH‰$è����H‹œ$���H‰$è����H‹D$ H‹œ$���HƒÀH‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃ×���HH‰$è����H‹¼$���H‹t$ H‰òHƒÂHƒÿ�„¥���H‹H‹GL‹GH9ƒŠ���Hf¶HÁãH‰ðHƒÀH‹H‹OL‹OL‰Œ$€���H‰T$pH‰L$xH9ÈsNH,f¶m�H ëH‰ØH·\$0f‰œ$¨���H·\$2f‰œ$ª���H·\$4f‰œ$¬���f‰„$®���è����HÄˆ���Ãè���� è���� ‰éTÿÿÿè���� è���� è���� è���� ‰éþÿÿè���� è���� è���� è���� ‰éÒüÿÿè���� è���� è���� è���� ‰é’ûÿÿè���� è���� 1Àé·ùÿÿ‰é]ùÿÿT������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���®��*runtime.racereadrange���Ž� runtime.duffcopy���–��(runtime.racefuncexit���€�� runtime.raceread���Ò�� runtime.raceread���ø�� runtime.raceread���¬�� runtime.raceread���´ �� runtime.raceread���Ö �� runtime.raceread���Ü
�� runtime.raceread���ä �� runtime.raceread���ì �� runtime.raceread���Ž�� runtime.raceread���–�� runtime.raceread��� �� runtime.raceread���¨�� runtime.raceread���Ê�� runtime.raceread���Ò�� runtime.raceread���Ü�� runtime.raceread���ä�� runtime.raceread���†�� runtime.raceread���Ž�� runtime.raceread���è��(runtime.racefuncexit���‚��$runtime.panicindex�����$runtime.panicindex���¬��$runtime.panicindex���º��$runtime.panicindex���È��$runtime.panicindex���Ö��$runtime.panicindex���ò��$runtime.panicindex���€��$runtime.panicindex���Ž��$runtime.panicindex���œ��$runtime.panicindex���¸��$runtime.panicindex���Æ��$runtime.panicindex���Ô��$runtime.panicindex���â��$runtime.panicindex���þ��$runtime.panicindex���Œ��$runtime.panicindex���@��"".autotmp_0391��0type.image/color.NRGBA64�"".autotmp_0390�¿type.int�"".autotmp_0389��type.int�"".autotmp_0388�¯0type.image/color.NRGBA64�"".y�ïtype.int�"".x�ßtype.int�"".p�? type.*"".NRGBA64�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�Ïtype.int� "".~r2�00type.image/color.NRGBA64�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64�*)­è
 �à�|Š)(¬<–¶n¯o¯o¯i
?  �&�5•5–ž   �Tgclocals·1a780b2043fc6869f6e645f97d4b356b�Tgclocals·07ce3793e0acbc9268622f5f9e9eb47d���0c:/go/src/image/image.goþ."".(*NRGBA64).PixOffset��€��êeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÁåHëH‰\$0è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���|�� runtime.raceread���Î�� runtime.raceread���ô�� runtime.raceread���Ø��(runtime.racefuncexit���@ ��
"".autotmp_0424�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64�! “ �À�¨!Ÿ��*�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ""".(*NRGBA64).Set��à!��Ô!eH‹ %(���H‹‰����HD$ÐH;Awè����ëÞHì°���H‹œ$°���H‰$è����H‹œ$À���H‰\$PH‹œ$È���H‰\$XH‹œ$¸���H‰$Hƒ$ HÇD$ ���è����L‹D$PH‹D$XH‹”$¸���Hƒú�„Ô��Hj H\$`H‰ßH‰îè����H‹\$`L9Ï«��H‹l$pI9荝��H‹\$hH9Ϗ��H‹l$xH9荁��HÇÀ���<�u è����HÄ°���ÃH‹œ$À���H‰\$0H‹œ$È���H‰\$(H‰”$€���H‰$Hƒ$ è����H‹„$€���H‹X H‹l$0H)ÝH‰l$HH‰$Hƒ$ Hƒ$è����H‹œ$€���H‰$Hƒ$è����H‹„$€���H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HHÁåHëH‰\$8H����H‰$è����H‹œ$Ð���H‰\$H‹œ$Ø���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ H����H‰$H‰Œ$ˆ���H‰L$H‰„$���H‰D$è����H·\$f‰\$@H·\$f‰\$BH·\$f‰\$DH·\$f‰\$FH‹\$8HƒÃ�H‰\$HH‹œ$¸���H‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃÆ��H)H‰$è����H‹”$¸���Hƒú�„ ��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ńh��H)H·l$@fÁí@ˆ+H‹\$8HÿÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń��H)H‰$è����H‹”$¸���Hƒú�„Û��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń£��H)H·l$@@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń?��H)H‰$è����H‹”$¸���Hƒú�„��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ńá��H)H·l$BfÁí@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ńy��H)H‰$è����H‹”$¸���Hƒú�„S��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń��H)H·l$B@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń·��H)H‰$è����H‹”$¸���Hƒú�„‘��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃY��H)H·l$DfÁí@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ńñ��H)H‰$è����H‹”$¸���Hƒú�„Ë��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń“��H)H·l$D@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń/��H)H‰$è����H‹”$¸���Hƒú�„ ��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃÑ���H)H·l$FfÁí@ˆ+H‹\$8HƒÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅsmH)H‰$è����H‹œ$¸���Hƒû�tNH‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅsH)H·l$F@ˆ+è����HÄ°���Ãè���� ‰ë®è���� è���� ‰éðþÿÿè���� è���� ‰é.þÿÿè���� è���� ‰éhýÿÿè���� è���� ‰é¦üÿÿè���� è���� ‰éàûÿÿè���� è���� ‰éûÿÿè���� è���� ‰éYúÿÿè���� 1Àéøÿÿ‰é%øÿÿb������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Þ��*runtime.racereadrange���¾� runtime.duffcopy���Î��(runtime.racefuncexit���¾�� runtime.raceread���–�� runtime.raceread���Â�� runtime.raceread���°��0image/color.NRGBA64Model���Â�� runtime.raceread���„�0image/color.NRGBA64Model���š��0image/color.NRGBA64Model���ª�
������È��0type.image/color.NRGBA64���Ž��"runtime.assertI2T���¤ �� runtime.raceread���°
��"runtime.racewrite���„ �� runtime.raceread��� ��"runtime.racewrite���Þ�� runtime.raceread���ê��"runtime.racewrite���À�� runtime.raceread���Ì��"runtime.racewrite���š�� runtime.raceread���¦��"runtime.racewrite���ü�� runtime.raceread���ˆ��"runtime.racewrite���Ö�� runtime.raceread���â��"runtime.racewrite���¸�� runtime.raceread���¼��"runtime.racewrite���Ö��(runtime.racefuncexit���ð��$runtime.panicindex���†��$runtime.panicindex���”��$runtime.panicindex���°��$runtime.panicindex���¾��$runtime.panicindex���Ú��$runtime.panicindex���è��$runtime.panicindex���„ ��$runtime.panicindex���’ ��$runtime.panicindex���® ��$runtime.panicindex���¼ ��$runtime.panicindex���Ø ��$runtime.panicindex���æ ��$runtime.panicindex���‚!��$runtime.panicindex���!��$runtime.panicindex���¬!��$runtime.panicindex���Pà��,"".autotmp_0436��type.int�"".autotmp_0435��type.int�"".autotmp_0434��type.int�"".autotmp_0433��type.int�"".autotmp_0432��type.int�"".autotmp_0431��type.int�"".autotmp_0430��type.int�"".autotmp_0429��type.int�"".autotmp_0428�Ïtype.int�"".autotmp_0427��type.int�"".autotmp_0425�O,type.image/color.Color�"".y�type.int�"".x�ÿtype.int�"".p�_ type.*"".NRGBA64�"".r�Ÿ"type."".Rectangle�"".p�¿type."".Point�
"".c1�ß0type.image/color.NRGBA64�"".i�ïtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64�*)àÉßàà ßà¹�ð�~°)¬¢¢¹¬±­±­±¦ ��5é‚Ð �Tgclocals·562ff44fc2b4beb994776fb7f4a5aec4�Tgclocals·23c4785fa8abd7e258acfe91c9f325f3���0c:/go/src/image/image.goþ0"".(*NRGBA64).SetNRGBA64��€��ôeH‹ %(���H‹‰����H;awè����ëãHì€���H‹œ$€���H‰$è����H‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹D$0H‹D$8H‹”$ˆ���Hƒú�„©��Hj H\$@H‰ßH‰îè����H‹\$@L9Ï€��H‹l$PI9èr��H‹\$HH9Ïd��H‹l$XH9èV��HÇÀ���<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰T$`H‰$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÁåHëH‰\$ HƒÃ�H‰\$(H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃW��H)H‰$è����H‹”$ˆ���Hƒú�„1��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń��H)H·¬$ ���fÁí@ˆ+H‹\$ HÿÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń¡��H)H‰$è����H‹”$ˆ���Hƒú�„{��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃL��H)H·¬$ ���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ńî��H)H‰$è����H‹”$ˆ���Hƒú�„È��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń™��H)H·¬$¢���fÁí@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń7��H)H‰$è����H‹”$ˆ���Hƒú�„��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ńâ��H)H·¬$¢���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń„��H)H‰$è����H‹”$ˆ���Hƒú�„^��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ń/��H)H·¬$¤���fÁí@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÍ��H)H‰$è����H‹”$ˆ���Hƒú�„§��H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9Ńx��H)H·¬$¤���@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń��H)H‰$è����H‹”$ˆ���Hƒú�„ô���H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÅ���H)H·¬$¦���fÁí@ˆ+H‹\$ HƒÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsgH)H‰$è����H‹œ$ˆ���Hƒû�tHH‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)H·¬$¦���@ˆ+è����HÄ€���Ãè���� ‰ë´è���� è���� ‰éÿÿÿè���� è���� ‰éRþÿÿè���� è���� ‰é›ýÿÿè���� è���� ‰éèüÿÿè���� è���� ‰é1üÿÿè���� è���� ‰é~ûÿÿè���� è���� ‰éÈúÿÿè���� 1Àéªùÿÿ‰éPùÿÿT������.��0runtime.morestack_noctxt���b��*runtime.racefuncenter���Ô��*runtime.racereadrange���´� runtime.duffcopy���Ä��(runtime.racefuncexit���®�� runtime.raceread���€�� runtime.raceread���¦�� runtime.raceread���´�� runtime.raceread���®��"runtime.racewrite���ö�� runtime.raceread���ð ��"runtime.racewrite���² �� runtime.raceread���¬ ��"runtime.racewrite���ö �� runtime.raceread���ð��"runtime.racewrite���²�� runtime.raceread���¬��"runtime.racewrite���ö�� runtime.raceread���ð��"runtime.racewrite���²�� runtime.raceread���¬��"runtime.racewrite���ö�� runtime.raceread���è��"runtime.racewrite���ö��(runtime.racefuncexit�����$runtime.panicindex���¦��$runtime.panicindex���´��$runtime.panicindex���Ð��$runtime.panicindex���Þ��$runtime.panicindex���ú��$runtime.panicindex���ˆ��$runtime.panicindex���¤��$runtime.panicindex���²��$runtime.panicindex���Î��$runtime.panicindex���Ü��$runtime.panicindex���ø��$runtime.panicindex���†��$runtime.panicindex���¢��$runtime.panicindex���°��$runtime.panicindex���Ì��$runtime.panicindex���@€��("".autotmp_0463��type.int�"".autotmp_0462��type.int�"".autotmp_0461��type.int�"".autotmp_0460��type.int�"".autotmp_0459��type.int�"".autotmp_0458��type.int�"".autotmp_0457��type.int�"".autotmp_0456��type.int�"".autotmp_0455�¯type.int�"".autotmp_0454��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�? type.*"".NRGBA64�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�00type.image/color.NRGBA64�"".y� type.int�"".x�type.int�"".p�� type.*"".NRGBA64�*$€Éÿ€˜ ÿ€¹�À�xÐ$¬‘ª¢ž¢ž¢—��0惧 �Tgclocals·baa0c3679835632b56aa126ccf73f5ec�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ,"".(*NRGBA64).SubImage�� ��ŒeH‹ %(���H‹‰����HD$€H;Awè����ëÞHì���H‹œ$���H‰$è����HDŽ$0������HDŽ$8������H‹œ$��H‰$Hƒ$ HÇD$ ���è����Hœ$��H,$H‰ïH‰Þè����H‹¼$��Hƒÿ�„%��Ho H|$ H‰îè����è����H\$@H¬$¸���H‰ïH‰Þè����Hœ$¸���H¬$��H‰ïH‰Þè����Hœ$��H¬$˜���H‰ïH‰Þè����H‹œ$˜���H‹¬$¨���H9덜��H‹œ$ ���H‹¬$°���H9덃��1À<�„µ���H����H‰$è����H‹D$H‰„$à���H‰$HÇD$@���è����H‹¼$à���H‰ùHƒÿ�tq1Àè����H‰Œ$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉ë‹H‹Œ$��H‹„$��H‹œ$��H‰\$hH‰D$`H‰Œ$Ø���H‰ $Hƒ$ è����H‹„$Ø���H‹X H‹l$hH)ÝH‰¬$���H‰$Hƒ$ Hƒ$è����H‹œ$Ø���H‰$Hƒ$è����H‹„$Ø���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹¬$���HÁåHëH‰\$pH����H‰$è����H‹\$H‰œ$à���H‹œ$��H‰$è����H‹„$��H‹XH‰œ$ˆ���H‰$è����H‹œ$��H‹KH‹D$pH‰Œ$€���H‰D$xH9Á‚›��H‹œ$à���H‰$è����H‹t$xH‹œ$à���H‰$Hƒ<$�„b��H‹œ$��H‹H‹¼$€���H‹”$ˆ���H)÷H)òHƒú�t H‰óHÃH‰ØH‰„$è���H‰D$H‰¼$ð���H‰|$H‰”$ø���H‰T$è����H‹œ$à���H‰$Hƒ$è����H‹œ$��H‰$Hƒ$è����H‹„$à���Hƒø�„Á���L‹„$��I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$à���Hƒø�„���Hh Hœ$��H‰ïH‰Þè����H‰„$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�éxÿÿÿ‰�é8ÿÿÿ‰%����é’þÿÿè���� HÇÀ���ésüÿÿ‰éÔûÿÿP������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Ú��*runtime.racereadrange���ˆ� runtime.duffcopy���ΐ� runtime.duffcopy���Ø��,"".Rectangle.Intersect���ˆ� runtime.duffcopy���¾� runtime.duffcopy���ô� runtime.duffcopy���ú��type."".NRGBA64���Œ��"runtime.newobject���Ê��,runtime.racewriterange���úà� runtime.duffzero���˜��8go.itab.*"".NRGBA64."".Image���à��(runtime.racefuncexit���þ�� type.*"".NRGBA64���”��type."".Image���¬��8go.itab.*"".NRGBA64."".Image���À�� runtime.typ2Itab���Æ�� runtime.raceread���¤ �� runtime.raceread���Ð �� runtime.raceread���Ä
��type."".NRGBA64���Ö
��"runtime.newobject���’ �� runtime.raceread���Ì �� runtime.raceread���¼ ��"runtime.racewrite���¬��2runtime.writebarrierslice���Ø��"runtime.racewrite���„�� runtime.raceread���ö��,runtime.racewriterange���Ȑ� runtime.duffcopy���æ��8go.itab.*"".NRGBA64."".Image���®��(runtime.racefuncexit���Ì�� type.*"".NRGBA64���â��type."".Image���ú��8go.itab.*"".NRGBA64."".Image���Ž�� runtime.typ2Itab���Ú��$runtime.panicslice���p€��("".autotmp_0493��type.*uint8�"".autotmp_0492�type.uint64�"".autotmp_0491�ÿtype.uint64�"".autotmp_0490�ïtype.uint64�"".autotmp_0489�� type.*"".NRGBA64�"".autotmp_0488��type.int�"".autotmp_0487��type.int�"".autotmp_0486�ßtype.int�"".autotmp_0484�? type.*"".NRGBA64�"".autotmp_0482�� type.*"".NRGBA64�"".autotmp_0481�� type.*"".NRGBA64�"".autotmp_0480�"type."".Rectangle�"".y�¿type.int�"".x�¯type.int�"".p�O type.*"".NRGBA64�"".r�Ï"type."".Rectangle�"".i�Ÿtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p�� type.*"".NRGBA64�()€’ÿ€¦ÿ€m�Ð �^òR‘Wu  ;°k‰p- �4�5¯K0CˆŽ0&$�Tgclocals·2a24b925de47e6af398f4500cd782a35�Tgclocals·c4d490826610b32d5111d57f926afcb9���0c:/go/src/image/image.goþ("".(*NRGBA64).Opaque�� ��žeH‹ %(���H‹‰����HD$ðH;Awè����ëÞHì���H‹œ$���H‰$è����H‹œ$˜���H‰$Hƒ$ HÇD$ ���è����H‹”$˜���Hƒú�„]��Hj H\$XH‰ßH‰îè����H‹\$XH‹l$hH9ë*��H‹\$`H‹l$pH9ë��1À<�tƄ$ ���è����HÄ���ÃH‰$Hƒ$ HÇD$ ���è����H‹”$˜���Hƒú�„Ì��Hj H\$8H‰ßH‰îè����H‹\$HH‹l$8H)ëHÁãHÇD$ ���H‰\$H‰$Hƒ$ Hƒ$è����H‹Œ$˜���H‹i(H‰l$H‰ $Hƒ$ Hƒ$Hƒ$è����H‹Œ$˜���H‹Y8H‹l$H9ëŽ.��H‹D$ H‰D$(H‹l$H9èc��H‰ $è����H‹D$(H‹œ$˜���HƒÀ�H‹H‹KH‹kH‰¬$ˆ���H‰T$xH‰Œ$€���H9ȃÌ��HH‰$è����H‹´$˜���H‹D$(HƒÀ�Hƒþ�„��H‹H‹NL‹FL‰„$ˆ���H‰T$xH‰Œ$€���H9ȃm��H¶€ûÿ…3��H‰4$è����H‹D$(HÿÀH‹œ$˜���H‹H‹KH‹kH‰¬$ˆ���H‰T$xH‰Œ$€���H9ȃ��HH‰$è����H‹|$(H‹Œ$˜���H‰øHÿÀHƒù�„ã���H‹1H‹QL‹AL‰„$ˆ���H‰t$xH‰”$€���H9Ѓ³���H¶€ûÿ…Ž���H‰øHƒÀH‰D$(H‹l$H9茝þÿÿH‹\$ H‰\$0H‰ $Hƒ$è����H‹„$˜���H‹XH‹l$0HëH‰\$ H‹\$H‰\$0H‰$Hƒ$è����H‹Œ$˜���H‹YH‹l$0HëH‰\$H‹\$HÿÃH‰\$éßýÿÿƄ$ ����è����HÄ���Ãè���� ‰éÿÿÿè���� è���� ‰é\þÿÿè���� Ƅ$ ���è����HÄ���Éé-ýÿÿHÇÀ���éßüÿÿ‰éœüÿÿ,������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���ª��*runtime.racereadrange���ö� runtime.duffcopy���è��(runtime.racefuncexit���¦��*runtime.racereadrange���ò� runtime.duffcopy���Ö�� runtime.raceread���¨�� runtime.raceread���ž�� runtime.raceread���¬�� runtime.raceread���æ�� runtime.raceread���ò �� runtime.raceread���‚ �� runtime.raceread���ä �� runtime.raceread���Ô ��(runtime.racefuncexit���î ��$runtime.panicindex���Š��$runtime.panicindex���˜��$runtime.panicindex���´��$runtime.panicindex���Ò��(runtime.racefuncexit���  ��"".autotmp_0507��type.int�"".autotmp_0506��type.int�"".autotmp_0505�¿type.int�"".autotmp_0503��type.int�"".autotmp_0502��type.int�"".autotmp_0501��type.int�"".autotmp_0500��type.int�"".r�¯"type."".Rectangle�"".r�o"type."".Rectangle�"".i�Ïtype.int�"".y�ÿtype.int�
"".i1�ïtype.int�
"".i0�ßtype.int� "".~r0�type.bool�"".p�� type.*"".NRGBA64�4) –Ÿ µŸ >Ÿ �Ð�Z”)q\VÉ
11   *� �5~— 2(�Tgclocals·cf86db206769ec68369d07e260728f65�Tgclocals·bfc69a0c89200aaeab2b53343f38a3be���0c:/go/src/image/image.goþ"".NewNRGBA64��€��öeH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���H‹œ$˜���H‰$è����Hœ$ ���Hl$XH‰ïH‰Þè����H‹T$hH‹|$XH)úHœ$ ���H|$8H‰Þè����H‹D$PH‹l$@H)èH‰ÓH‰T$0HÁãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹l$H‹T$ H‹D$(H‰¬$€���H‰”$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‰$Hƒ<$�„£���H‹œ$€���H‰\$H‹œ$ˆ���H‰\$H‹œ$���H‰\$è����H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0HÁåH‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xHƒø�t,Hh Hœ$ ���H‰ïH‰Þè����H‰„$À���è����HÄ˜���É�ëЉ%����éQÿÿÿ������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���œ� runtime.duffcopy���à� runtime.duffcopy���®��type.[]uint8���Ô��"runtime.makeslice���°��type."".NRGBA64���Â��"runtime.newobject���è��"runtime.racewrite���è��2runtime.writebarrierslice���Ž��"runtime.racewrite���à��,runtime.racewriterange���¤� runtime.duffcopy���¾��(runtime.racefuncexit���P°��"".autotmp_0522�? type.*"".NRGBA64�"".autotmp_0521��type.int�"".autotmp_0519��type.int�"".autotmp_0518��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@ type.*"".NRGBA64�"".r��"type."".Rectangle�)°¯°�À�¸)GTë��5«@k"�Tgclocals·c883c1a619e1938819370d0a31e3736f�Tgclocals·9fd26bf7af0929d886dbef3fe54c8a77���0c:/go/src/image/image.goþ,"".(*Alpha).ColorModel��€��æeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����HÇD$����HÇD$ ����H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���ˆ��,image/color.AlphaModel���š�� runtime.raceread���¨��,image/color.AlphaModel���À�,image/color.AlphaModel���Ô��(runtime.racefuncexit���0�� "".~r0�,type.image/color.Model�"".p��type.*"".Alpha�!Q�€�
Ú€��*?�Tgclocals·a9282ac20787dc3025c0916068a42263�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ$"".(*Alpha).Bounds�� ��‚eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H|$ 1Àè����H‹\$H‰$Hƒ$ HÇD$ ���è����H‹|$Hƒÿ�tHo H|$ H‰îè����è����HƒÄÉëá������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���nð� runtime.duffzero���¦��*runtime.racereadrange���ސ� runtime.duffcopy���è��(runtime.racefuncexit���P �� "".~r0�"type."".Rectangle�"".p��type.*"".Alpha�! [ ��
ސ��*I�Tgclocals·50a798c9d6a789f8ff12a130568a080f�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ"".(*Alpha).At��€��øeH‹ %(���H‹‰����H;awè����ëãHƒì8H‹\$8H‰$è����HÇD$X����HÇD$`����H‹\$@H‰$H‹\$HH‰\$H‹\$PH‰\$è����¶\$ˆ\$7H����H‰$H����H‰\$H����H‰\$H\$7H‰\$è����H‹\$ H‰\$XH‹\$(H‰\$`è����HƒÄ8Ã������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¾��&"".(*Alpha).AlphaAt���Þ��,type.image/color.Alpha���ô��,type.image/color.Color���Œ��Vgo.itab.image/color.Alpha.image/color.Color���´��runtime.convT2I���æ��(runtime.racefuncexit���Pp��
"".autotmp_0523�,type.image/color.Alpha� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�!pšo�À�âAq ��*ˆ�Tgclocals·f4e5c2ea265c0bb50618a74b99defd82�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ&"".(*Alpha).AlphaAt��À ��¼ eH‹ %(���H‹‰����HD$øH;Awè����ëÞHìˆ���H‹œ$ˆ���H‰$è����Ƅ$¨����H‹œ$˜���H‰\$8H‹œ$ ���H‰\$@H‹œ$���H‰$Hƒ$ HÇD$ ���è����L‹D$8H‹D$@H‹”$���Hƒú�„À��Hj H\$HH‰ßH‰îè����H‹\$HL9Ï—��H‹l$XI9草��H‹\$PH9Ï{��H‹l$`H9èm��HÇÀ���<�u1ÀˆD$ˆ„$¨���è����HÄˆ���ÃH‹œ$˜���H‰\$ H‹œ$ ���H‰\$H‰T$hH‰$Hƒ$ è����H‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$è����H‹\$hH‰$Hƒ$è����H‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HëH‰\$(ÆD$�H‹œ$���H‰$è����H‹œ$���H‹ H‹CH‹kH‰¬$€���H‰L$pH‹l$(H‰D$xH9ÅsjH)H‰$è����H‹¬$���Hƒý�tJH‹M�H‹EL‹EL‰„$€���H‰L$pH‹l$(H‰D$xH9ÅsH)¶ˆœ$¨���è����HÄˆ���Ãè���� ‰E�ë±è���� 1Àé“þÿÿ‰é9þÿÿ������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���î��*runtime.racereadrange���ΐ� runtime.duffcopy���ø��(runtime.racefuncexit���â�� runtime.raceread���´�� runtime.raceread���Ú�� runtime.raceread���Ø�� runtime.raceread���Ð�� runtime.raceread���â��(runtime.racefuncexit���ü��$runtime.panicindex���” ��$runtime.panicindex���@��"".autotmp_0528��,type.image/color.Alpha�"".autotmp_0527�¯type.int�"".autotmp_0526��type.int�"".autotmp_0525�á,type.image/color.Alpha�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".Alpha�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int� "".~r2�0,type.image/color.Alpha�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�()Þ´#�à�2ê)
 ¬ ’¶�"�5Æ5{… #�Tgclocals·1a780b2043fc6869f6e645f97d4b356b�Tgclocals·07ce3793e0acbc9268622f5f9e9eb47d���0c:/go/src/image/image.goþ*"".(*Alpha).PixOffset��€��âeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HëH‰\$0è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���|�� runtime.raceread���Î�� runtime.raceread���ô�� runtime.raceread���Ð��(runtime.racefuncexit���@ ��
"".autotmp_0531�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�! �À�þ!Ÿ��*}�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ"".(*Alpha).Set��À ��¸ eH‹ %(���H‹‰����HD$ØH;Awè����ëÞHì¨���H‹œ$¨���H‰$è����H‹œ$¸���H‰\$HH‹œ$À���H‰\$PH‹œ$°���H‰$Hƒ$ HÇD$ ���è����L‹D$HH‹D$PH‹”$°���Hƒú�„F��Hj H\$XH‰ßH‰îè����H‹\$XL9Ï��H‹l$hI9è��H‹\$`H9Ï��H‹l$pH9èó��HÇÀ���<�u è����HÄ¨���ÃH‹œ$¸���H‰\$0H‹œ$À���H‰\$(H‰T$xH‰$Hƒ$ è����H‹D$xH‹X H‹l$0H)ÝH‰l$@H‰$Hƒ$ Hƒ$è����H‹\$xH‰$Hƒ$è����H‹D$xH‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$@HëH‰\$8H����H‰$è����H‹œ$È���H‰\$H‹œ$Ð���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹\$H‰œ$€���H‹\$ H‰œ$ˆ���H‹œ$°���H‰$è����H‹œ$°���H‹ H‹CH‹kH‰¬$ ���H‰Œ$���H‹l$8H‰„$˜���H9Ńœ���H)H‰$è����L����L‰$L‹„$€���L‰D$L‹„$ˆ���L‰D$è����Hl$¶]�H‹¬$°���Hƒý�tIH‹M�H‹EL‹EL‰„$ ���H‰Œ$���L‹D$8H‰„$˜���I9ÀsJ,ˆ]�è����HÄ¨���Ãè���� ‰E�ë²è���� 1Àé þÿÿ‰é³ýÿÿ*������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Þ��*runtime.racereadrange���¾� runtime.duffcopy���Î��(runtime.racefuncexit���¸�� runtime.raceread���Š�� runtime.raceread���°�� runtime.raceread�����,image/color.AlphaModel���¢�� runtime.raceread���ä�,image/color.AlphaModel���ú��,image/color.AlphaModel���Š�
������Ü�� runtime.raceread���è��"runtime.racewrite���ö��,type.image/color.Alpha���¼ ��"runtime.assertI2T���Þ
��(runtime.racefuncexit���ø
��$runtime.panicindex��� ��$runtime.panicindex���PÐ��"".autotmp_0535�Ïtype.int�"".autotmp_0534��type.int�"".autotmp_0532�O,type.image/color.Color�"".y�ÿtype.int�"".x�ïtype.int�"".p�_type.*"".Alpha�"".r�Ÿ"type."".Rectangle�"".p�¿type."".Point�"".i�ßtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�()ÐÉÏÐÇÏÐ%�à�2†)
¬’®��5æu]pƒ�Tgclocals·23577fc4d42d7457d30ca9b68c64e3ca�Tgclocals·2523ee35de145ebf4415e47baea27afc���0c:/go/src/image/image.goþ("".(*Alpha).SetAlpha��€ ��ðeH‹ %(���H‹‰����H;awè����ëãHì€���H‹œ$€���H‰$è����H‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹D$0H‹D$8H‹”$ˆ���Hƒú�„§��Hj H\$@H‰ßH‰îè����H‹\$@L9Ï~��H‹l$PI9èp��H‹\$HH9Ïb��H‹l$XH9èT��HÇÀ���<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰T$`H‰$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HëH‰\$ H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsfH)H‰$è����H‹œ$ˆ���Hƒû�tGH‹ H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsH)¶¬$ ���@ˆ+è����HÄ€���Ãè���� ‰ëµè���� 1Àé¬þÿÿ‰éRþÿÿ������.��0runtime.morestack_noctxt���b��*runtime.racefuncenter���Ô��*runtime.racereadrange���´� runtime.duffcopy���Ä��(runtime.racefuncexit���®�� runtime.raceread���€�� runtime.raceread���¦�� runtime.raceread���š�� runtime.raceread���Œ��"runtime.racewrite���˜��(runtime.racefuncexit���²��$runtime.panicindex���È��$runtime.panicindex���@€��"".autotmp_0540�¯type.int�"".autotmp_0539��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".Alpha�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�0,type.image/color.Alpha�"".y� type.int�"".x�type.int�"".p��type.*"".Alpha�($€Éÿ€©ÿ€(�À�2–$
¬’��0æv´�Tgclocals·baa0c3679835632b56aa126ccf73f5ec�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ("".(*Alpha).SubImage�� ��„eH‹ %(���H‹‰����HD$€H;Awè����ëÞHì���H‹œ$���H‰$è����HDŽ$0������HDŽ$8������H‹œ$��H‰$Hƒ$ HÇD$ ���è����Hœ$��H,$H‰ïH‰Þè����H‹¼$��Hƒÿ�„!��Ho H|$ H‰îè����è����H\$@H¬$¸���H‰ïH‰Þè����Hœ$¸���H¬$��H‰ïH‰Þè����Hœ$��H¬$˜���H‰ïH‰Þè����H‹œ$˜���H‹¬$¨���H9던��H‹œ$ ���H‹¬$°���H9ë��1À<�„µ���H����H‰$è����H‹D$H‰„$à���H‰$HÇD$@���è����H‹¼$à���H‰ùHƒÿ�tq1Àè����H‰Œ$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉ë‹H‹Œ$��H‹„$��H‹œ$��H‰\$hH‰D$`H‰Œ$Ø���H‰ $Hƒ$ è����H‹„$Ø���H‹X H‹l$hH)ÝH‰¬$���H‰$Hƒ$ Hƒ$è����H‹œ$Ø���H‰$Hƒ$è����H‹„$Ø���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹¬$���HëH‰\$pH����H‰$è����H‹\$H‰œ$à���H‹œ$��H‰$è����H‹„$��H‹XH‰œ$ˆ���H‰$è����H‹œ$��H‹KH‹D$pH‰Œ$€���H‰D$xH9Á‚›��H‹œ$à���H‰$è����H‹t$xH‹œ$à���H‰$Hƒ<$�„b��H‹œ$��H‹H‹¼$€���H‹”$ˆ���H)÷H)òHƒú�t H‰óHÃH‰ØH‰„$è���H‰D$H‰¼$ð���H‰|$H‰”$ø���H‰T$è����H‹œ$à���H‰$Hƒ$è����H‹œ$��H‰$Hƒ$è����H‹„$à���Hƒø�„Á���L‹„$��I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$à���Hƒø�„���Hh Hœ$��H‰ïH‰Þè����H‰„$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�éxÿÿÿ‰�é8ÿÿÿ‰%����é’þÿÿè���� HÇÀ���éwüÿÿ‰éØûÿÿP������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Ú��*runtime.racereadrange���ˆ� runtime.duffcopy���ΐ� runtime.duffcopy���Ø��,"".Rectangle.Intersect���ˆ� runtime.duffcopy���¾� runtime.duffcopy���ô� runtime.duffcopy���ú��type."".Alpha���Œ��"runtime.newobject���Ê��,runtime.racewriterange���úà� runtime.duffzero���˜��4go.itab.*"".Alpha."".Image���à��(runtime.racefuncexit���þ��type.*"".Alpha���”��type."".Image���¬��4go.itab.*"".Alpha."".Image���À�� runtime.typ2Itab���Æ�� runtime.raceread���¤ �� runtime.raceread���Ð �� runtime.raceread���¼
��type."".Alpha���Î
��"runtime.newobject���Š �� runtime.raceread���Ä �� runtime.raceread���´ ��"runtime.racewrite���¤��2runtime.writebarrierslice���Ð��"runtime.racewrite���ü�� runtime.raceread���î��,runtime.racewriterange���À� runtime.duffcopy���Þ��4go.itab.*"".Alpha."".Image���¦��(runtime.racefuncexit���Ä��type.*"".Alpha���Ú��type."".Image���ò��4go.itab.*"".Alpha."".Image���†�� runtime.typ2Itab���Ò��$runtime.panicslice���p€��("".autotmp_0556��type.*uint8�"".autotmp_0555�type.uint64�"".autotmp_0554�ÿtype.uint64�"".autotmp_0553�ïtype.uint64�"".autotmp_0552��type.*"".Alpha�"".autotmp_0551��type.int�"".autotmp_0550��type.int�"".autotmp_0549�ßtype.int�"".autotmp_0547�?type.*"".Alpha�"".autotmp_0545��type.*"".Alpha�"".autotmp_0544��type.*"".Alpha�"".autotmp_0543�"type."".Rectangle�"".y�¿type.int�"".x�¯type.int�"".p�Otype.*"".Alpha�"".r�Ï"type."".Rectangle�"".i�Ÿtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".Alpha�()€’ÿ€¢ÿ€q�Ð �^ªR‘Wu  ;¬k‰p- �4�5¯K0C„Ž0&(�Tgclocals·2a24b925de47e6af398f4500cd782a35�Tgclocals·c4d490826610b32d5111d57f926afcb9���0c:/go/src/image/image.goþ$"".(*Alpha).Opaque��  ��ˆ eH‹ %(���H‹‰����HD$ðH;Awè����ëÞHì���H‹œ$���H‰$è����H‹œ$˜���H‰$Hƒ$ HÇD$ ���è����H‹”$˜���Hƒú�„’��Hj H\$XH‰ßH‰îè����H‹\$XH‹l$hH9ë_��H‹\$`H‹l$pH9ëL��1À<�tƄ$ ���è����HÄ���ÃH‰$Hƒ$ HÇD$ ���è����H‹”$˜���Hƒú�„��Hj H\$8H‰ßH‰îè����H‹\$HH‹l$8H)ëHÇD$ ����H‰\$H‰$Hƒ$ Hƒ$è����H‹Œ$˜���H‹i(H‰l$H‰ $Hƒ$ Hƒ$Hƒ$è����H‹Œ$˜���H‹Y8H‹l$H9ëŽg��H‹D$ H‰D$(H‹l$H9èÆ���H‰ $è����H‹œ$˜���H‹ H‹CH‹kH‰¬$ˆ���H‰L$xH‹l$(H‰„$€���H9Ń ��H)H‰$è����H‹t$(H‹Œ$˜���Hƒù�„Þ���H‹H‹AL‹AL‰„$ˆ���H‰T$xH‰„$€���H9ƃ®���H2¶€ûÿtƄ$ ����è����HÄ���ÃH‰ðHÿÀH‰D$(H‹l$H9èŒ:ÿÿÿH‹\$ H‰\$0H‰ $Hƒ$è����H‹„$˜���H‹XH‹l$0HëH‰\$ H‹\$H‰\$0H‰$Hƒ$è����H‹Œ$˜���H‹YH‹l$0HëH‰\$H‹\$HÿÃH‰\$é|þÿÿè���� ‰éÿÿÿè���� Ƅ$ ���è����HÄ���ÉéøýÿÿHÇÀ���éªýÿÿ‰égýÿÿ$������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���ª��*runtime.racereadrange���ö� runtime.duffcopy���è��(runtime.racefuncexit���¦��*runtime.racereadrange���ò� runtime.duffcopy���Î�� runtime.raceread��� �� runtime.raceread���–�� runtime.raceread���œ�� runtime.raceread���Î��(runtime.racefuncexit���À �� runtime.raceread���¢
�� runtime.raceread���‚ ��$runtime.panicindex���ž ��$runtime.panicindex���¼ ��(runtime.racefuncexit���  ��"".autotmp_0569��type.int�"".autotmp_0568�¿type.int�"".autotmp_0566��type.int�"".autotmp_0565��type.int�"".autotmp_0564��type.int�"".autotmp_0563��type.int�"".r�¯"type."".Rectangle�"".r�o"type."".Rectangle�"".i�Ïtype.int�"".y�ÿtype.int�
"".i1�ïtype.int�
"".i0�ßtype.int� "".~r0�type.bool�"".p��type.*"".Alpha�6) –Ÿ òŸ ¶Ÿ &��ZÌ)qXV˜  
11 � �5~Ô9~3�Tgclocals·cf86db206769ec68369d07e260728f65�Tgclocals·bfc69a0c89200aaeab2b53343f38a3be���0c:/go/src/image/image.goþ"".NewAlpha��€��æeH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���H‹œ$˜���H‰$è����Hœ$ ���Hl$XH‰ïH‰Þè����H‹T$hH‹|$XH)úHœ$ ���H|$8H‰Þè����H‹D$PH‹l$@H)èH‰ÓH‰T$0H¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹l$H‹T$ H‹D$(H‰¬$€���H‰”$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‰$Hƒ<$�„Ÿ���H‹œ$€���H‰\$H‹œ$ˆ���H‰\$H‹œ$���H‰\$è����H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0H‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xHƒø�t,Hh Hœ$ ���H‰ïH‰Þè����H‰„$À���è����HÄ˜���É�ëЉ%����éUÿÿÿ������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���œ� runtime.duffcopy���à� runtime.duffcopy���¦��type.[]uint8���Ì��"runtime.makeslice���¨��type."".Alpha���º��"runtime.newobject���à��"runtime.racewrite���à��2runtime.writebarrierslice���†��"runtime.racewrite���Ð��,runtime.racewriterange���”� runtime.duffcopy���®��(runtime.racefuncexit���P°��"".autotmp_0578�?type.*"".Alpha�"".autotmp_0577��type.int�"".autotmp_0575��type.int�"".autotmp_0574��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".Alpha�"".r��"type."".Rectangle�)°ù¯°�À�ð)GPï��5§@g*�Tgclocals·c883c1a619e1938819370d0a31e3736f�Tgclocals·9fd26bf7af0929d886dbef3fe54c8a77���0c:/go/src/image/image.goþ0"".(*Alpha16).ColorModel��€��æeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����HÇD$����HÇD$ ����H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���ˆ��0image/color.Alpha16Model���š�� runtime.raceread���¨��0image/color.Alpha16Model���À�0image/color.Alpha16Model���Ô��(runtime.racefuncexit���0�� "".~r0�,type.image/color.Model�"".p�� type.*"".Alpha16�!Q�€�
’ €��*?�Tgclocals·a9282ac20787dc3025c0916068a42263�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ("".(*Alpha16).Bounds�� ��‚eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H|$ 1Àè����H‹\$H‰$Hƒ$ HÇD$ ���è����H‹|$Hƒÿ�tHo H|$ H‰îè����è����HƒÄÉëá������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���nð� runtime.duffzero���¦��*runtime.racereadrange���ސ� runtime.duffcopy���è��(runtime.racefuncexit���P �� "".~r0�"type."".Rectangle�"".p�� type.*"".Alpha16�! [ ��
– ��*I�Tgclocals·50a798c9d6a789f8ff12a130568a080f�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ "".(*Alpha16).At��€��üeH‹ %(���H‹‰����H;awè����ëãHƒì8H‹\$8H‰$è����HÇD$X����HÇD$`����H‹\$@H‰$H‹\$HH‰\$H‹\$PH‰\$è����H·\$f‰\$6H����H‰$H����H‰\$H����H‰\$H\$6H‰\$è����H‹\$ H‰\$XH‹\$(H‰\$`è����HƒÄ8Ã������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¾��."".(*Alpha16).Alpha16At���â��0type.image/color.Alpha16���ø��,type.image/color.Color�����Zgo.itab.image/color.Alpha16.image/color.Color���¸��runtime.convT2I���ê��(runtime.racefuncexit���Pp��
"".autotmp_0579�0type.image/color.Alpha16� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16�!pœo�À�š As��*Š �Tgclocals·f4e5c2ea265c0bb50618a74b99defd82�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ."".(*Alpha16).Alpha16At��€ ��ü eH‹ %(���H‹‰����HD$øH;Awè����ëÞHìˆ���H‹œ$ˆ���H‰$è����fDŽ$¨�����H‹œ$˜���H‰\$8H‹œ$ ���H‰\$@H‹œ$���H‰$Hƒ$ HÇD$ ���è����L‹D$8H‹D$@H‹”$���Hƒú�„^��Hj H\$HH‰ßH‰îè����H‹\$HL9Ï5��H‹l$XI9è'��H‹\$PH9Ï��H‹l$`H9è ��HÇÀ���<�u1Àf‰D$f‰„$¨���è����HÄˆ���ÃH‹œ$˜���H‰\$ H‹œ$ ���H‰\$H‰T$hH‰$Hƒ$ è����H‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$è����H‹\$hH‰$Hƒ$è����H‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HÑåHëH‰\$(fÇD$��H‹œ$���H‰$è����H‹D$(H‹œ$���HƒÀ�H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃù���HH‰$è����H‹œ$���H‰$è����H‹D$(HÿÀH‹œ$���H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃž���HH‰$è����H‹¼$���H‹t$(H‰òHƒÂ�Hƒÿ�tsH‹H‹GL‹GH9Âs\Hf¶HÁãH‰ðHÿÀH‹H‹OL‹OL‰Œ$€���H‰T$pH‰L$xH9Ès!H,f¶m�H ëf‰œ$¨���è����HÄˆ���Ãè���� è���� ‰ë‰è���� è���� 1Àéõýÿÿ‰é›ýÿÿ$������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���ò��*runtime.racereadrange���Ґ� runtime.duffcopy���€��(runtime.racefuncexit���ê�� runtime.raceread���¼�� runtime.raceread���â�� runtime.raceread���ê�� runtime.raceread���ò�� runtime.raceread���”�� runtime.raceread���š �� runtime.raceread���ˆ ��(runtime.racefuncexit���¢ ��$runtime.panicindex���° ��$runtime.panicindex���Æ ��$runtime.panicindex���Ô ��$runtime.panicindex���@��"".autotmp_0584��0type.image/color.Alpha16�"".autotmp_0583�¯type.int�"".autotmp_0582��type.int�"".autotmp_0581�ã0type.image/color.Alpha16�"".y�ßtype.int�"".x�Ïtype.int�"".p�? type.*"".Alpha16�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int� "".~r2�00type.image/color.Alpha16�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16�()âÃ0�€�2¢ )

¬•Ï�$�5Ê5€ 0�Tgclocals·1a780b2043fc6869f6e645f97d4b356b�Tgclocals·07ce3793e0acbc9268622f5f9e9eb47d���0c:/go/src/image/image.goþ."".(*Alpha16).PixOffset��€��èeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÑåHëH‰\$0è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���|�� runtime.raceread���Î�� runtime.raceread���ô�� runtime.raceread���Ö��(runtime.racefuncexit���@ ��
"".autotmp_0593�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16�! ’ �À�¶ !Ÿ��*€�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ""".(*Alpha16).Set��à��àeH‹ %(���H‹‰����HD$ÐH;Awè����ëÞHì°���H‹œ$°���H‰$è����H‹œ$À���H‰\$PH‹œ$È���H‰\$XH‹œ$¸���H‰$Hƒ$ HÇD$ ���è����L‹D$PH‹D$XH‹”$¸���Hƒú�„��Hj H\$`H‰ßH‰îè����H‹\$`L9Ïñ��H‹l$pI9èã��H‹\$hH9ÏÕ��H‹l$xH9èÇ��HÇÀ���<�u è����HÄ°���ÃH‹œ$À���H‰\$8H‹œ$È���H‰\$0H‰”$€���H‰$Hƒ$ è����H‹„$€���H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$è����H‹œ$€���H‰$Hƒ$è����H‹„$€���H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHÑåHëH‰\$@H����H‰$è����H‹œ$Ð���H‰\$H‹œ$Ø���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ H����H‰$H‰Œ$ˆ���H‰L$H‰„$���H‰D$è����H·\$f‰\$.H‹\$@HƒÃ�H‰\$HH‹œ$¸���H‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń.��H)H‰$è����H‹”$¸���Hƒú�„��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃÐ���H)H·l$.fÁí@ˆ+H‹\$@HÿÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅsmH)H‰$è����H‹œ$¸���Hƒû�tNH‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅsH)H·l$.@ˆ+è����HÄ°���Ãè���� ‰ë®è���� è���� ‰éñþÿÿè���� 1Àé9ýÿÿ‰éßüÿÿ2������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Þ��*runtime.racereadrange���¾� runtime.duffcopy���Î��(runtime.racefuncexit���¾�� runtime.raceread���–�� runtime.raceread���Â�� runtime.raceread���®��0image/color.Alpha16Model���À�� runtime.raceread���‚�0image/color.Alpha16Model���˜��0image/color.Alpha16Model���¨�
������Æ��0type.image/color.Alpha16���Œ��"runtime.assertI2T���à�� runtime.raceread���ì ��"runtime.racewrite���À �� runtime.raceread���Ä ��"runtime.racewrite���Þ ��(runtime.racefuncexit���ø ��$runtime.panicindex���Ž��$runtime.panicindex���œ��$runtime.panicindex���¸��$runtime.panicindex���Pà�� "".autotmp_0599��type.int�"".autotmp_0598��type.int�"".autotmp_0597�Ïtype.int�"".autotmp_0596��type.int�"".autotmp_0594�O,type.image/color.Color�"".y�ÿtype.int�"".x�ïtype.int�"".p�_ type.*"".Alpha16�"".r�Ÿ"type."".Rectangle�"".p�¿type."".Point�
"".c1�ƒ0type.image/color.Alpha16�"".i�ßtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16�()àÉßà‡ßà5�°�B¾ ) ¬  ¡¹¥ ��5遑�Tgclocals·562ff44fc2b4beb994776fb7f4a5aec4�Tgclocals·23c4785fa8abd7e258acfe91c9f325f3���0c:/go/src/image/image.goþ0"".(*Alpha16).SetAlpha16��€ ��ö eH‹ %(���H‹‰����H;awè����ëãHì€���H‹œ$€���H‰$è����H‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹D$0H‹D$8H‹”$ˆ���Hƒú�„j��Hj H\$@H‰ßH‰îè����H‹\$@L9ÏA��H‹l$PI9è3��H‹\$HH9Ï%��H‹l$XH9è��HÇÀ���<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰T$`H‰$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÑåHëH‰\$ HƒÃ�H‰\$(H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń��H)H‰$è����H‹”$ˆ���Hƒú�„ó���H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÄ���H)H·¬$ ���fÁí@ˆ+H‹\$ HÿÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsgH)H‰$è����H‹œ$ˆ���Hƒû�tHH‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)H·¬$ ���@ˆ+è����HÄ€���Ãè���� ‰ë´è���� è���� ‰éÿÿÿè���� 1Àééýÿÿ‰éýÿÿ$������.��0runtime.morestack_noctxt���b��*runtime.racefuncenter���Ô��*runtime.racereadrange���´� runtime.duffcopy���Ä��(runtime.racefuncexit���®�� runtime.raceread���€�� runtime.raceread���¦�� runtime.raceread���²�� runtime.raceread���¬��"runtime.racewrite���ô�� runtime.raceread���æ ��"runtime.racewrite���ô
��(runtime.racefuncexit���Ž ��$runtime.panicindex���¤ ��$runtime.panicindex���² ��$runtime.panicindex���Î ��$runtime.panicindex���@€��"".autotmp_0608��type.int�"".autotmp_0607��type.int�"".autotmp_0606�¯type.int�"".autotmp_0605��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�? type.*"".Alpha16�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�00type.image/color.Alpha16�"".y� type.int�"".x�type.int�"".p�� type.*"".Alpha16�($€Éÿ€×ÿ€:�€�<Ò $  ¬
ª–��0æ‚è�Tgclocals·baa0c3679835632b56aa126ccf73f5ec�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ,"".(*Alpha16).SubImage�� ��ŠeH‹ %(���H‹‰����HD$€H;Awè����ëÞHì���H‹œ$���H‰$è����HDŽ$0������HDŽ$8������H‹œ$��H‰$Hƒ$ HÇD$ ���è����Hœ$��H,$H‰ïH‰Þè����H‹¼$��Hƒÿ�„$��Ho H|$ H‰îè����è����H\$@H¬$¸���H‰ïH‰Þè����Hœ$¸���H¬$��H‰ïH‰Þè����Hœ$��H¬$˜���H‰ïH‰Þè����H‹œ$˜���H‹¬$¨���H9덛��H‹œ$ ���H‹¬$°���H9덂��1À<�„µ���H����H‰$è����H‹D$H‰„$à���H‰$HÇD$@���è����H‹¼$à���H‰ùHƒÿ�tq1Àè����H‰Œ$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉ë‹H‹Œ$��H‹„$��H‹œ$��H‰\$hH‰D$`H‰Œ$Ø���H‰ $Hƒ$ è����H‹„$Ø���H‹X H‹l$hH)ÝH‰¬$���H‰$Hƒ$ Hƒ$è����H‹œ$Ø���H‰$Hƒ$è����H‹„$Ø���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹¬$���HÑåHëH‰\$pH����H‰$è����H‹\$H‰œ$à���H‹œ$��H‰$è����H‹„$��H‹XH‰œ$ˆ���H‰$è����H‹œ$��H‹KH‹D$pH‰Œ$€���H‰D$xH9Á‚›��H‹œ$à���H‰$è����H‹t$xH‹œ$à���H‰$Hƒ<$�„b��H‹œ$��H‹H‹¼$€���H‹”$ˆ���H)÷H)òHƒú�t H‰óHÃH‰ØH‰„$è���H‰D$H‰¼$ð���H‰|$H‰”$ø���H‰T$è����H‹œ$à���H‰$Hƒ$è����H‹œ$��H‰$Hƒ$è����H‹„$à���Hƒø�„Á���L‹„$��I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$à���Hƒø�„���Hh Hœ$��H‰ïH‰Þè����H‰„$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�éxÿÿÿ‰�é8ÿÿÿ‰%����é’þÿÿè���� HÇÀ���étüÿÿ‰éÕûÿÿP������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Ú��*runtime.racereadrange���ˆ� runtime.duffcopy���ΐ� runtime.duffcopy���Ø��,"".Rectangle.Intersect���ˆ� runtime.duffcopy���¾� runtime.duffcopy���ô� runtime.duffcopy���ú��type."".Alpha16���Œ��"runtime.newobject���Ê��,runtime.racewriterange���úà� runtime.duffzero���˜��8go.itab.*"".Alpha16."".Image���à��(runtime.racefuncexit���þ�� type.*"".Alpha16���”��type."".Image���¬��8go.itab.*"".Alpha16."".Image���À�� runtime.typ2Itab���Æ�� runtime.raceread���¤ �� runtime.raceread���Ð �� runtime.raceread���Â
��type."".Alpha16���Ô
��"runtime.newobject��� �� runtime.raceread���Ê �� runtime.raceread���º ��"runtime.racewrite���ª��2runtime.writebarrierslice���Ö��"runtime.racewrite���‚�� runtime.raceread���ô��,runtime.racewriterange���Ɛ� runtime.duffcopy���ä��8go.itab.*"".Alpha16."".Image���¬��(runtime.racefuncexit���Ê�� type.*"".Alpha16���à��type."".Image���ø��8go.itab.*"".Alpha16."".Image���Œ�� runtime.typ2Itab���Ø��$runtime.panicslice���p€��("".autotmp_0626��type.*uint8�"".autotmp_0625�type.uint64�"".autotmp_0624�ÿtype.uint64�"".autotmp_0623�ïtype.uint64�"".autotmp_0622�� type.*"".Alpha16�"".autotmp_0621��type.int�"".autotmp_0620��type.int�"".autotmp_0619�ßtype.int�"".autotmp_0617�? type.*"".Alpha16�"".autotmp_0615�� type.*"".Alpha16�"".autotmp_0614�� type.*"".Alpha16�"".autotmp_0613�"type."".Rectangle�"".y�¿type.int�"".x�¯type.int�"".p�O type.*"".Alpha16�"".r�Ï"type."".Rectangle�"".i�Ÿtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p�� type.*"".Alpha16�()€’ÿ€¥ÿ€n�Ð �^è R‘Wu  ;¯k‰p- �4�5¯K0C‡Ž0&%�Tgclocals·2a24b925de47e6af398f4500cd782a35�Tgclocals·c4d490826610b32d5111d57f926afcb9���0c:/go/src/image/image.goþ("".(*Alpha16).Opaque�� ��œeH‹ %(���H‹‰����HD$ðH;Awè����ëÞHì���H‹œ$���H‰$è����H‹œ$˜���H‰$Hƒ$ HÇD$ ���è����H‹”$˜���Hƒú�„\��Hj H\$XH‰ßH‰îè����H‹\$XH‹l$hH9ë)��H‹\$`H‹l$pH9ë��1À<�tƄ$ ���è����HÄ���ÃH‰$Hƒ$ HÇD$ ���è����H‹”$˜���Hƒú�„Ë��Hj H\$8H‰ßH‰îè����H‹\$HH‹l$8H)ëHÑãHÇD$ ����H‰\$H‰$Hƒ$ Hƒ$è����H‹Œ$˜���H‹i(H‰l$H‰ $Hƒ$ Hƒ$Hƒ$è����H‹Œ$˜���H‹Y8H‹l$H9ëŽ.��H‹D$ H‰D$(H‹l$H9èc��H‰ $è����H‹D$(H‹œ$˜���HƒÀ�H‹H‹KH‹kH‰¬$ˆ���H‰T$xH‰Œ$€���H9ȃÌ��HH‰$è����H‹´$˜���H‹D$(HƒÀ�Hƒþ�„��H‹H‹NL‹FL‰„$ˆ���H‰T$xH‰Œ$€���H9ȃm��H¶€ûÿ…3��H‰4$è����H‹D$(HÿÀH‹œ$˜���H‹H‹KH‹kH‰¬$ˆ���H‰T$xH‰Œ$€���H9ȃ��HH‰$è����H‹|$(H‹Œ$˜���H‰øHÿÀHƒù�„ã���H‹1H‹QL‹AL‰„$ˆ���H‰t$xH‰”$€���H9Ѓ³���H¶€ûÿ…Ž���H‰øHƒÀH‰D$(H‹l$H9茝þÿÿH‹\$ H‰\$0H‰ $Hƒ$è����H‹„$˜���H‹XH‹l$0HëH‰\$ H‹\$H‰\$0H‰$Hƒ$è����H‹Œ$˜���H‹YH‹l$0HëH‰\$H‹\$HÿÃH‰\$éßýÿÿƄ$ ����è����HÄ���Ãè���� ‰éÿÿÿè���� è���� ‰é\þÿÿè���� Ƅ$ ���è����HÄ���Éé.ýÿÿHÇÀ���éàüÿÿ‰éüÿÿ,������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���ª��*runtime.racereadrange���ö� runtime.duffcopy���è��(runtime.racefuncexit���¦��*runtime.racereadrange���ò� runtime.duffcopy���Ô�� runtime.raceread���¦�� runtime.raceread���œ�� runtime.raceread���ª�� runtime.raceread���ä�� runtime.raceread���ð �� runtime.raceread���€ �� runtime.raceread���â �� runtime.raceread���Ò ��(runtime.racefuncexit���ì ��$runtime.panicindex���ˆ��$runtime.panicindex���–��$runtime.panicindex���²��$runtime.panicindex���Ð��(runtime.racefuncexit���  ��"".autotmp_0640��type.int�"".autotmp_0639��type.int�"".autotmp_0638�¿type.int�"".autotmp_0636��type.int�"".autotmp_0635��type.int�"".autotmp_0634��type.int�"".autotmp_0633��type.int�"".r�¯"type."".Rectangle�"".r�o"type."".Rectangle�"".i�Ïtype.int�"".y�ÿtype.int�
"".i1�ïtype.int�
"".i0�ßtype.int� "".~r0�type.bool�"".p�� type.*"".Alpha16�4) –Ÿ ´Ÿ >Ÿ �Ð�ZŠ
)q[VÉ
11   *� �5~– 2)�Tgclocals·cf86db206769ec68369d07e260728f65�Tgclocals·bfc69a0c89200aaeab2b53343f38a3be���0c:/go/src/image/image.goþ"".NewAlpha16��€��òeH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���H‹œ$˜���H‰$è����Hœ$ ���Hl$XH‰ïH‰Þè����H‹T$hH‹|$XH)úHœ$ ���H|$8H‰Þè����H‹D$PH‹l$@H)èH‰ÓH‰T$0HÑãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹l$H‹T$ H‹D$(H‰¬$€���H‰”$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‰$Hƒ<$�„¢���H‹œ$€���H‰\$H‹œ$ˆ���H‰\$H‹œ$���H‰\$è����H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0HÑåH‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xHƒø�t,Hh Hœ$ ���H‰ïH‰Þè����H‰„$À���è����HÄ˜���É�ëЉ%����éRÿÿÿ������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���œ� runtime.duffcopy���à� runtime.duffcopy���¬��type.[]uint8���Ò��"runtime.makeslice���®��type."".Alpha16���À��"runtime.newobject���æ��"runtime.racewrite���æ��2runtime.writebarrierslice���Œ��"runtime.racewrite���Ü��,runtime.racewriterange��� � runtime.duffcopy���º��(runtime.racefuncexit���P°��"".autotmp_0655�? type.*"".Alpha16�"".autotmp_0654��type.int�"".autotmp_0652��type.int�"".autotmp_0651��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@ type.*"".Alpha16�"".r��"type."".Rectangle�)°ÿ¯°�À�®
)GSì��5ª@j$�Tgclocals·c883c1a619e1938819370d0a31e3736f�Tgclocals·9fd26bf7af0929d886dbef3fe54c8a77���0c:/go/src/image/image.goþ*"".(*Gray).ColorModel��€��æeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����HÇD$����HÇD$ ����H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���ˆ��*image/color.GrayModel���š�� runtime.raceread���¨��*image/color.GrayModel���À�*image/color.GrayModel���Ô��(runtime.racefuncexit���0�� "".~r0�,type.image/color.Model�"".p��type.*"".Gray�!Q�€�
Ð
€��*?�Tgclocals·a9282ac20787dc3025c0916068a42263�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ""".(*Gray).Bounds�� ��‚eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H|$ 1Àè����H‹\$H‰$Hƒ$ HÇD$ ���è����H‹|$Hƒÿ�tHo H|$ H‰îè����è����HƒÄÉëá������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���nð� runtime.duffzero���¦��*runtime.racereadrange���ސ� runtime.duffcopy���è��(runtime.racefuncexit���P �� "".~r0�"type."".Rectangle�"".p��type.*"".Gray�! [ ��
Ô
��*I�Tgclocals·50a798c9d6a789f8ff12a130568a080f�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ"".(*Gray).At��€��øeH‹ %(���H‹‰����H;awè����ëãHƒì8H‹\$8H‰$è����HÇD$X����HÇD$`����H‹\$@H‰$H‹\$HH‰\$H‹\$PH‰\$è����¶\$ˆ\$7H����H‰$H����H‰\$H����H‰\$H\$7H‰\$è����H‹\$ H‰\$XH‹\$(H‰\$`è����HƒÄ8Ã������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¾��""".(*Gray).GrayAt���Þ��*type.image/color.Gray���ô��,type.image/color.Color���Œ��Tgo.itab.image/color.Gray.image/color.Color���´��runtime.convT2I���æ��(runtime.racefuncexit���Pp��
"".autotmp_0656�*type.image/color.Gray� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�!pšo�À�Ø
Aq ��*ˆ�Tgclocals·f4e5c2ea265c0bb50618a74b99defd82�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ""".(*Gray).GrayAt��À ��¼ eH‹ %(���H‹‰����HD$øH;Awè����ëÞHìˆ���H‹œ$ˆ���H‰$è����Ƅ$¨����H‹œ$˜���H‰\$8H‹œ$ ���H‰\$@H‹œ$���H‰$Hƒ$ HÇD$ ���è����L‹D$8H‹D$@H‹”$���Hƒú�„À��Hj H\$HH‰ßH‰îè����H‹\$HL9Ï—��H‹l$XI9草��H‹\$PH9Ï{��H‹l$`H9èm��HÇÀ���<�u1ÀˆD$ˆ„$¨���è����HÄˆ���ÃH‹œ$˜���H‰\$ H‹œ$ ���H‰\$H‰T$hH‰$Hƒ$ è����H‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$è����H‹\$hH‰$Hƒ$è����H‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HëH‰\$(ÆD$�H‹œ$���H‰$è����H‹œ$���H‹ H‹CH‹kH‰¬$€���H‰L$pH‹l$(H‰D$xH9ÅsjH)H‰$è����H‹¬$���Hƒý�tJH‹M�H‹EL‹EL‰„$€���H‰L$pH‹l$(H‰D$xH9ÅsH)¶ˆœ$¨���è����HÄˆ���Ãè���� ‰E�ë±è���� 1Àé“þÿÿ‰é9þÿÿ������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���î��*runtime.racereadrange���ΐ� runtime.duffcopy���ø��(runtime.racefuncexit���â�� runtime.raceread���´�� runtime.raceread���Ú�� runtime.raceread���Ø�� runtime.raceread���Ð�� runtime.raceread���â��(runtime.racefuncexit���ü��$runtime.panicindex���” ��$runtime.panicindex���@��"".autotmp_0661��*type.image/color.Gray�"".autotmp_0660�¯type.int�"".autotmp_0659��type.int�"".autotmp_0658�á*type.image/color.Gray�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".Gray�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int� "".~r2�0*type.image/color.Gray�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�()Þ´#�à�2à
)
 ¬ ’¶�"�5Æ5{… #�Tgclocals·1a780b2043fc6869f6e645f97d4b356b�Tgclocals·07ce3793e0acbc9268622f5f9e9eb47d���0c:/go/src/image/image.goþ("".(*Gray).PixOffset��€��âeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HëH‰\$0è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���|�� runtime.raceread���Î�� runtime.raceread���ô�� runtime.raceread���Ð��(runtime.racefuncexit���@ ��
"".autotmp_0664�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�! �À�ô
!Ÿ��*}�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ"".(*Gray).Set��À ��¸ eH‹ %(���H‹‰����HD$ØH;Awè����ëÞHì¨���H‹œ$¨���H‰$è����H‹œ$¸���H‰\$HH‹œ$À���H‰\$PH‹œ$°���H‰$Hƒ$ HÇD$ ���è����L‹D$HH‹D$PH‹”$°���Hƒú�„F��Hj H\$XH‰ßH‰îè����H‹\$XL9Ï��H‹l$hI9è��H‹\$`H9Ï��H‹l$pH9èó��HÇÀ���<�u è����HÄ¨���ÃH‹œ$¸���H‰\$0H‹œ$À���H‰\$(H‰T$xH‰$Hƒ$ è����H‹D$xH‹X H‹l$0H)ÝH‰l$@H‰$Hƒ$ Hƒ$è����H‹\$xH‰$Hƒ$è����H‹D$xH‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$@HëH‰\$8H����H‰$è����H‹œ$È���H‰\$H‹œ$Ð���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹\$H‰œ$€���H‹\$ H‰œ$ˆ���H‹œ$°���H‰$è����H‹œ$°���H‹ H‹CH‹kH‰¬$ ���H‰Œ$���H‹l$8H‰„$˜���H9Ńœ���H)H‰$è����L����L‰$L‹„$€���L‰D$L‹„$ˆ���L‰D$è����Hl$¶]�H‹¬$°���Hƒý�tIH‹M�H‹EL‹EL‰„$ ���H‰Œ$���L‹D$8H‰„$˜���I9ÀsJ,ˆ]�è����HÄ¨���Ãè���� ‰E�ë²è���� 1Àé þÿÿ‰é³ýÿÿ*������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Þ��*runtime.racereadrange���¾� runtime.duffcopy���Î��(runtime.racefuncexit���¸�� runtime.raceread���Š�� runtime.raceread���°�� runtime.raceread�����*image/color.GrayModel���¢�� runtime.raceread���ä�*image/color.GrayModel���ú��*image/color.GrayModel���Š�
������Ü�� runtime.raceread���è��"runtime.racewrite���ö��*type.image/color.Gray���¼ ��"runtime.assertI2T���Þ
��(runtime.racefuncexit���ø
��$runtime.panicindex��� ��$runtime.panicindex���PÐ��"".autotmp_0668�Ïtype.int�"".autotmp_0667��type.int�"".autotmp_0665�O,type.image/color.Color�"".y�ÿtype.int�"".x�ïtype.int�"".p�_type.*"".Gray�"".r�Ÿ"type."".Rectangle�"".p�¿type."".Point�"".i�ßtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�()ÐÉÏÐÇÏÐ%�à�2ü
)
¬’®��5æu]pƒ�Tgclocals·23577fc4d42d7457d30ca9b68c64e3ca�Tgclocals·2523ee35de145ebf4415e47baea27afc���0c:/go/src/image/image.goþ$"".(*Gray).SetGray��€ ��ðeH‹ %(���H‹‰����H;awè����ëãHì€���H‹œ$€���H‰$è����H‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹D$0H‹D$8H‹”$ˆ���Hƒú�„§��Hj H\$@H‰ßH‰îè����H‹\$@L9Ï~��H‹l$PI9èp��H‹\$HH9Ïb��H‹l$XH9èT��HÇÀ���<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰T$`H‰$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HëH‰\$ H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsfH)H‰$è����H‹œ$ˆ���Hƒû�tGH‹ H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsH)¶¬$ ���@ˆ+è����HÄ€���Ãè���� ‰ëµè���� 1Àé¬þÿÿ‰éRþÿÿ������.��0runtime.morestack_noctxt���b��*runtime.racefuncenter���Ô��*runtime.racereadrange���´� runtime.duffcopy���Ä��(runtime.racefuncexit���®�� runtime.raceread���€�� runtime.raceread���¦�� runtime.raceread���š�� runtime.raceread���Œ��"runtime.racewrite���˜��(runtime.racefuncexit���²��$runtime.panicindex���È��$runtime.panicindex���@€��"".autotmp_0673�¯type.int�"".autotmp_0672��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".Gray�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�0*type.image/color.Gray�"".y� type.int�"".x�type.int�"".p��type.*"".Gray�($€Éÿ€©ÿ€(�À�2Œ $
¬’��0æv´�Tgclocals·baa0c3679835632b56aa126ccf73f5ec�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ&"".(*Gray).SubImage�� ��„eH‹ %(���H‹‰����HD$€H;Awè����ëÞHì���H‹œ$���H‰$è����HDŽ$0������HDŽ$8������H‹œ$��H‰$Hƒ$ HÇD$ ���è����Hœ$��H,$H‰ïH‰Þè����H‹¼$��Hƒÿ�„!��Ho H|$ H‰îè����è����H\$@H¬$¸���H‰ïH‰Þè����Hœ$¸���H¬$��H‰ïH‰Þè����Hœ$��H¬$˜���H‰ïH‰Þè����H‹œ$˜���H‹¬$¨���H9던��H‹œ$ ���H‹¬$°���H9ë��1À<�„µ���H����H‰$è����H‹D$H‰„$à���H‰$HÇD$@���è����H‹¼$à���H‰ùHƒÿ�tq1Àè����H‰Œ$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉ë‹H‹Œ$��H‹„$��H‹œ$��H‰\$hH‰D$`H‰Œ$Ø���H‰ $Hƒ$ è����H‹„$Ø���H‹X H‹l$hH)ÝH‰¬$���H‰$Hƒ$ Hƒ$è����H‹œ$Ø���H‰$Hƒ$è����H‹„$Ø���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹¬$���HëH‰\$pH����H‰$è����H‹\$H‰œ$à���H‹œ$��H‰$è����H‹„$��H‹XH‰œ$ˆ���H‰$è����H‹œ$��H‹KH‹D$pH‰Œ$€���H‰D$xH9Á‚›��H‹œ$à���H‰$è����H‹t$xH‹œ$à���H‰$Hƒ<$�„b��H‹œ$��H‹H‹¼$€���H‹”$ˆ���H)÷H)òHƒú�t H‰óHÃH‰ØH‰„$è���H‰D$H‰¼$ð���H‰|$H‰”$ø���H‰T$è����H‹œ$à���H‰$Hƒ$è����H‹œ$��H‰$Hƒ$è����H‹„$à���Hƒø�„Á���L‹„$��I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$à���Hƒø�„���Hh Hœ$��H‰ïH‰Þè����H‰„$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�éxÿÿÿ‰�é8ÿÿÿ‰%����é’þÿÿè���� HÇÀ���éwüÿÿ‰éØûÿÿP������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Ú��*runtime.racereadrange���ˆ� runtime.duffcopy���ΐ� runtime.duffcopy���Ø��,"".Rectangle.Intersect���ˆ� runtime.duffcopy���¾� runtime.duffcopy���ô� runtime.duffcopy���ú��type."".Gray���Œ��"runtime.newobject���Ê��,runtime.racewriterange���úà� runtime.duffzero���˜��2go.itab.*"".Gray."".Image���à��(runtime.racefuncexit���þ��type.*"".Gray���”��type."".Image���¬��2go.itab.*"".Gray."".Image���À�� runtime.typ2Itab���Æ�� runtime.raceread���¤ �� runtime.raceread���Ð �� runtime.raceread���¼
��type."".Gray���Î
��"runtime.newobject���Š �� runtime.raceread���Ä �� runtime.raceread���´ ��"runtime.racewrite���¤��2runtime.writebarrierslice���Ð��"runtime.racewrite���ü�� runtime.raceread���î��,runtime.racewriterange���À� runtime.duffcopy���Þ��2go.itab.*"".Gray."".Image���¦��(runtime.racefuncexit���Ä��type.*"".Gray���Ú��type."".Image���ò��2go.itab.*"".Gray."".Image���†�� runtime.typ2Itab���Ò��$runtime.panicslice���p€��("".autotmp_0689��type.*uint8�"".autotmp_0688�type.uint64�"".autotmp_0687�ÿtype.uint64�"".autotmp_0686�ïtype.uint64�"".autotmp_0685��type.*"".Gray�"".autotmp_0684��type.int�"".autotmp_0683��type.int�"".autotmp_0682�ßtype.int�"".autotmp_0680�?type.*"".Gray�"".autotmp_0678��type.*"".Gray�"".autotmp_0677��type.*"".Gray�"".autotmp_0676�"type."".Rectangle�"".y�¿type.int�"".x�¯type.int�"".p�Otype.*"".Gray�"".r�Ï"type."".Rectangle�"".i�Ÿtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".Gray�()€’ÿ€¢ÿ€q�Ð �^  R‘Wu  ;¬k‰p- �4�5¯K0C„Ž0&(�Tgclocals·2a24b925de47e6af398f4500cd782a35�Tgclocals·c4d490826610b32d5111d57f926afcb9���0c:/go/src/image/image.goþ""".(*Gray).Opaque��€��|eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����ÆD$è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���j��(runtime.racefuncexit��� �� "".~r0�type.bool�"".p��type.*"".Gray�!�@�  !��*
 �Tgclocals·cf86db206769ec68369d07e260728f65�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ"".NewGray��€��æeH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���H‹œ$˜���H‰$è����Hœ$ ���Hl$XH‰ïH‰Þè����H‹T$hH‹|$XH)úHœ$ ���H|$8H‰Þè����H‹D$PH‹l$@H)èH‰ÓH‰T$0H¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹l$H‹T$ H‹D$(H‰¬$€���H‰”$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‰$Hƒ<$�„Ÿ���H‹œ$€���H‰\$H‹œ$ˆ���H‰\$H‹œ$���H‰\$è����H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0H‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xHƒø�t,Hh Hœ$ ���H‰ïH‰Þè����H‰„$À���è����HÄ˜���É�ëЉ%����éUÿÿÿ������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���œ� runtime.duffcopy���à� runtime.duffcopy���¦��type.[]uint8���Ì��"runtime.makeslice���¨��type."".Gray���º��"runtime.newobject���à��"runtime.racewrite���à��2runtime.writebarrierslice���†��"runtime.racewrite���Ð��,runtime.racewriterange���”� runtime.duffcopy���®��(runtime.racefuncexit���P°��"".autotmp_0702�?type.*"".Gray�"".autotmp_0701��type.int�"".autotmp_0699��type.int�"".autotmp_0698��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".Gray�"".r��"type."".Rectangle�)°ù¯°�À�Ì )GPï��5§@g*�Tgclocals·c883c1a619e1938819370d0a31e3736f�Tgclocals·9fd26bf7af0929d886dbef3fe54c8a77���0c:/go/src/image/image.goþ."".(*Gray16).ColorModel��€��æeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����HÇD$����HÇD$ ����H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���ˆ��.image/color.Gray16Model���š�� runtime.raceread���¨��.image/color.Gray16Model���À�.image/color.Gray16Model���Ô��(runtime.racefuncexit���0�� "".~r0�,type.image/color.Model�"".p��type.*"".Gray16�!Q�€�
î €��*?�Tgclocals·a9282ac20787dc3025c0916068a42263�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ&"".(*Gray16).Bounds�� ��‚eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H|$ 1Àè����H‹\$H‰$Hƒ$ HÇD$ ���è����H‹|$Hƒÿ�tHo H|$ H‰îè����è����HƒÄÉëá������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���nð� runtime.duffzero���¦��*runtime.racereadrange���ސ� runtime.duffcopy���è��(runtime.racefuncexit���P �� "".~r0�"type."".Rectangle�"".p��type.*"".Gray16�! [ ��
ò ��*I�Tgclocals·50a798c9d6a789f8ff12a130568a080f�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ"".(*Gray16).At��€��üeH‹ %(���H‹‰����H;awè����ëãHƒì8H‹\$8H‰$è����HÇD$X����HÇD$`����H‹\$@H‰$H‹\$HH‰\$H‹\$PH‰\$è����H·\$f‰\$6H����H‰$H����H‰\$H����H‰\$H\$6H‰\$è����H‹\$ H‰\$XH‹\$(H‰\$`è����HƒÄ8Ã������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¾��*"".(*Gray16).Gray16At���â��.type.image/color.Gray16���ø��,type.image/color.Color�����Xgo.itab.image/color.Gray16.image/color.Color���¸��runtime.convT2I���ê��(runtime.racefuncexit���Pp��
"".autotmp_0703�.type.image/color.Gray16� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16�!pœo�À�ö As��*Š �Tgclocals·f4e5c2ea265c0bb50618a74b99defd82�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ*"".(*Gray16).Gray16At��€ ��ü eH‹ %(���H‹‰����HD$øH;Awè����ëÞHìˆ���H‹œ$ˆ���H‰$è����fDŽ$¨�����H‹œ$˜���H‰\$8H‹œ$ ���H‰\$@H‹œ$���H‰$Hƒ$ HÇD$ ���è����L‹D$8H‹D$@H‹”$���Hƒú�„^��Hj H\$HH‰ßH‰îè����H‹\$HL9Ï5��H‹l$XI9è'��H‹\$PH9Ï��H‹l$`H9è ��HÇÀ���<�u1Àf‰D$f‰„$¨���è����HÄˆ���ÃH‹œ$˜���H‰\$ H‹œ$ ���H‰\$H‰T$hH‰$Hƒ$ è����H‹D$hH‹X H‹l$ H)ÝH‰l$0H‰$Hƒ$ Hƒ$è����H‹\$hH‰$Hƒ$è����H‹D$hH‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$0HÑåHëH‰\$(fÇD$��H‹œ$���H‰$è����H‹D$(H‹œ$���HƒÀ�H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃù���HH‰$è����H‹œ$���H‰$è����H‹D$(HÿÀH‹œ$���H‹H‹KH‹kH‰¬$€���H‰T$pH‰L$xH9ȃž���HH‰$è����H‹¼$���H‹t$(H‰òHƒÂ�Hƒÿ�tsH‹H‹GL‹GH9Âs\Hf¶HÁãH‰ðHÿÀH‹H‹OL‹OL‰Œ$€���H‰T$pH‰L$xH9Ès!H,f¶m�H ëf‰œ$¨���è����HÄˆ���Ãè���� è���� ‰ë‰è���� è���� 1Àéõýÿÿ‰é›ýÿÿ$������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���ò��*runtime.racereadrange���Ґ� runtime.duffcopy���€��(runtime.racefuncexit���ê�� runtime.raceread���¼�� runtime.raceread���â�� runtime.raceread���ê�� runtime.raceread���ò�� runtime.raceread���”�� runtime.raceread���š �� runtime.raceread���ˆ ��(runtime.racefuncexit���¢ ��$runtime.panicindex���° ��$runtime.panicindex���Æ ��$runtime.panicindex���Ô ��$runtime.panicindex���@��"".autotmp_0708��.type.image/color.Gray16�"".autotmp_0707�¯type.int�"".autotmp_0706��type.int�"".autotmp_0705�ã.type.image/color.Gray16�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".Gray16�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int� "".~r2�0.type.image/color.Gray16�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16�()âÃ0�€�2þ )

¬•Ï�$�5Ê5€ 0�Tgclocals·1a780b2043fc6869f6e645f97d4b356b�Tgclocals·07ce3793e0acbc9268622f5f9e9eb47d���0c:/go/src/image/image.goþ,"".(*Gray16).PixOffset��€��èeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HÑåHëH‰\$0è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���|�� runtime.raceread���Î�� runtime.raceread���ô�� runtime.raceread���Ö��(runtime.racefuncexit���@ ��
"".autotmp_0717�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16�! ’ �À�’ !Ÿ��*€�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ "".(*Gray16).Set��à��àeH‹ %(���H‹‰����HD$ÐH;Awè����ëÞHì°���H‹œ$°���H‰$è����H‹œ$À���H‰\$PH‹œ$È���H‰\$XH‹œ$¸���H‰$Hƒ$ HÇD$ ���è����L‹D$PH‹D$XH‹”$¸���Hƒú�„��Hj H\$`H‰ßH‰îè����H‹\$`L9Ïñ��H‹l$pI9èã��H‹\$hH9ÏÕ��H‹l$xH9èÇ��HÇÀ���<�u è����HÄ°���ÃH‹œ$À���H‰\$8H‹œ$È���H‰\$0H‰”$€���H‰$Hƒ$ è����H‹„$€���H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$è����H‹œ$€���H‰$Hƒ$è����H‹„$€���H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHÑåHëH‰\$@H����H‰$è����H‹œ$Ð���H‰\$H‹œ$Ø���H‰\$H‹����H‰$H‹����H‹[ ÿÓH‹L$H‹D$ H����H‰$H‰Œ$ˆ���H‰L$H‰„$���H‰D$è����H·\$f‰\$.H‹\$@HƒÃ�H‰\$HH‹œ$¸���H‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9Ń.��H)H‰$è����H‹”$¸���Hƒú�„��H‹
H‹BH‹jH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ŃÐ���H)H·l$.fÁí@ˆ+H‹\$@HÿÃH‰\$HH‰$è����H‹œ$¸���H‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅsmH)H‰$è����H‹œ$¸���Hƒû�tNH‹ H‹CH‹kH‰¬$¨���H‰Œ$˜���H‹l$HH‰„$ ���H9ÅsH)H·l$.@ˆ+è����HÄ°���Ãè���� ‰ë®è���� è���� ‰éñþÿÿè���� 1Àé9ýÿÿ‰éßüÿÿ2������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Þ��*runtime.racereadrange���¾� runtime.duffcopy���Î��(runtime.racefuncexit���¾�� runtime.raceread���–�� runtime.raceread���Â�� runtime.raceread���®��.image/color.Gray16Model���À�� runtime.raceread���‚�.image/color.Gray16Model���˜��.image/color.Gray16Model���¨�
������Æ��.type.image/color.Gray16���Œ��"runtime.assertI2T���à�� runtime.raceread���ì ��"runtime.racewrite���À �� runtime.raceread���Ä ��"runtime.racewrite���Þ ��(runtime.racefuncexit���ø ��$runtime.panicindex���Ž��$runtime.panicindex���œ��$runtime.panicindex���¸��$runtime.panicindex���Pà�� "".autotmp_0723��type.int�"".autotmp_0722��type.int�"".autotmp_0721�Ïtype.int�"".autotmp_0720��type.int�"".autotmp_0718�O,type.image/color.Color�"".y�ÿtype.int�"".x�ïtype.int�"".p�_type.*"".Gray16�"".r�Ÿ"type."".Rectangle�"".p�¿type."".Point�
"".c1�ƒ.type.image/color.Gray16�"".i�ßtype.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16�()àÉßà‡ßà5�°�Bš ) ¬  ¡¹¥ ��5遑�Tgclocals·562ff44fc2b4beb994776fb7f4a5aec4�Tgclocals·23c4785fa8abd7e258acfe91c9f325f3���0c:/go/src/image/image.goþ,"".(*Gray16).SetGray16��€ ��ö eH‹ %(���H‹‰����H;awè����ëãHì€���H‹œ$€���H‰$è����H‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹D$0H‹D$8H‹”$ˆ���Hƒú�„j��Hj H\$@H‰ßH‰îè����H‹\$@L9ÏA��H‹l$PI9è3��H‹\$HH9Ï%��H‹l$XH9è��HÇÀ���<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰T$`H‰$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HÑåHëH‰\$ HƒÃ�H‰\$(H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9Ń��H)H‰$è����H‹”$ˆ���Hƒú�„ó���H‹
H‹BH‹jH‰l$xH‰L$hH‹l$(H‰D$pH9ŃÄ���H)H·¬$ ���fÁí@ˆ+H‹\$ HÿÃH‰\$(H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsgH)H‰$è����H‹œ$ˆ���Hƒû�tHH‹ H‹CH‹kH‰l$xH‰L$hH‹l$(H‰D$pH9ÅsH)H·¬$ ���@ˆ+è����HÄ€���Ãè���� ‰ë´è���� è���� ‰éÿÿÿè���� 1Àééýÿÿ‰éýÿÿ$������.��0runtime.morestack_noctxt���b��*runtime.racefuncenter���Ô��*runtime.racereadrange���´� runtime.duffcopy���Ä��(runtime.racefuncexit���®�� runtime.raceread���€�� runtime.raceread���¦�� runtime.raceread���²�� runtime.raceread���¬��"runtime.racewrite���ô�� runtime.raceread���æ ��"runtime.racewrite���ô
��(runtime.racefuncexit���Ž ��$runtime.panicindex���¤ ��$runtime.panicindex���² ��$runtime.panicindex���Î ��$runtime.panicindex���@€��"".autotmp_0732��type.int�"".autotmp_0731��type.int�"".autotmp_0730�¯type.int�"".autotmp_0729��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?type.*"".Gray16�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�0.type.image/color.Gray16�"".y� type.int�"".x�type.int�"".p��type.*"".Gray16�($€Éÿ€×ÿ€:�€�<® $  ¬
ª–��0æ‚è�Tgclocals·baa0c3679835632b56aa126ccf73f5ec�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ*"".(*Gray16).SubImage�� ��ŠeH‹ %(���H‹‰����HD$€H;Awè����ëÞHì���H‹œ$���H‰$è����HDŽ$0������HDŽ$8������H‹œ$��H‰$Hƒ$ HÇD$ ���è����Hœ$��H,$H‰ïH‰Þè����H‹¼$��Hƒÿ�„$��Ho H|$ H‰îè����è����H\$@H¬$¸���H‰ïH‰Þè����Hœ$¸���H¬$��H‰ïH‰Þè����Hœ$��H¬$˜���H‰ïH‰Þè����H‹œ$˜���H‹¬$¨���H9덛��H‹œ$ ���H‹¬$°���H9덂��1À<�„µ���H����H‰$è����H‹D$H‰„$à���H‰$HÇD$@���è����H‹¼$à���H‰ùHƒÿ�tq1Àè����H‰Œ$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉ë‹H‹Œ$��H‹„$��H‹œ$��H‰\$hH‰D$`H‰Œ$Ø���H‰ $Hƒ$ è����H‹„$Ø���H‹X H‹l$hH)ÝH‰¬$���H‰$Hƒ$ Hƒ$è����H‹œ$Ø���H‰$Hƒ$è����H‹„$Ø���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹¬$���HÑåHëH‰\$pH����H‰$è����H‹\$H‰œ$à���H‹œ$��H‰$è����H‹„$��H‹XH‰œ$ˆ���H‰$è����H‹œ$��H‹KH‹D$pH‰Œ$€���H‰D$xH9Á‚›��H‹œ$à���H‰$è����H‹t$xH‹œ$à���H‰$Hƒ<$�„b��H‹œ$��H‹H‹¼$€���H‹”$ˆ���H)÷H)òHƒú�t H‰óHÃH‰ØH‰„$è���H‰D$H‰¼$ð���H‰|$H‰”$ø���H‰T$è����H‹œ$à���H‰$Hƒ$è����H‹œ$��H‰$Hƒ$è����H‹„$à���Hƒø�„Á���L‹„$��I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$à���Hƒø�„���Hh Hœ$��H‰ïH‰Þè����H‰„$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�éxÿÿÿ‰�é8ÿÿÿ‰%����é’þÿÿè���� HÇÀ���étüÿÿ‰éÕûÿÿP������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Ú��*runtime.racereadrange���ˆ� runtime.duffcopy���ΐ� runtime.duffcopy���Ø��,"".Rectangle.Intersect���ˆ� runtime.duffcopy���¾� runtime.duffcopy���ô� runtime.duffcopy���ú��type."".Gray16���Œ��"runtime.newobject���Ê��,runtime.racewriterange���úà� runtime.duffzero���˜��6go.itab.*"".Gray16."".Image���à��(runtime.racefuncexit���þ��type.*"".Gray16���”��type."".Image���¬��6go.itab.*"".Gray16."".Image���À�� runtime.typ2Itab���Æ�� runtime.raceread���¤ �� runtime.raceread���Ð �� runtime.raceread���Â
��type."".Gray16���Ô
��"runtime.newobject��� �� runtime.raceread���Ê �� runtime.raceread���º ��"runtime.racewrite���ª��2runtime.writebarrierslice���Ö��"runtime.racewrite���‚�� runtime.raceread���ô��,runtime.racewriterange���Ɛ� runtime.duffcopy���ä��6go.itab.*"".Gray16."".Image���¬��(runtime.racefuncexit���Ê��type.*"".Gray16���à��type."".Image���ø��6go.itab.*"".Gray16."".Image���Œ�� runtime.typ2Itab���Ø��$runtime.panicslice���p€��("".autotmp_0750��type.*uint8�"".autotmp_0749�type.uint64�"".autotmp_0748�ÿtype.uint64�"".autotmp_0747�ïtype.uint64�"".autotmp_0746��type.*"".Gray16�"".autotmp_0745��type.int�"".autotmp_0744��type.int�"".autotmp_0743�ßtype.int�"".autotmp_0741�?type.*"".Gray16�"".autotmp_0739��type.*"".Gray16�"".autotmp_0738��type.*"".Gray16�"".autotmp_0737�"type."".Rectangle�"".y�¿type.int�"".x�¯type.int�"".p�Otype.*"".Gray16�"".r�Ï"type."".Rectangle�"".i�Ÿtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".Gray16�()€’ÿ€¥ÿ€n�Ð �^Ä R‘Wu  ;¯k‰p- �4�5¯K0C‡Ž0&%�Tgclocals·2a24b925de47e6af398f4500cd782a35�Tgclocals·c4d490826610b32d5111d57f926afcb9���0c:/go/src/image/image.goþ&"".(*Gray16).Opaque��€��|eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����ÆD$è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���j��(runtime.racefuncexit��� �� "".~r0�type.bool�"".p��type.*"".Gray16�!�@� æ !��*
 �Tgclocals·cf86db206769ec68369d07e260728f65�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ"".NewGray16��€��òeH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���H‹œ$˜���H‰$è����Hœ$ ���Hl$XH‰ïH‰Þè����H‹T$hH‹|$XH)úHœ$ ���H|$8H‰Þè����H‹D$PH‹l$@H)èH‰ÓH‰T$0HÑãH¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹l$H‹T$ H‹D$(H‰¬$€���H‰”$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‰$Hƒ<$�„¢���H‹œ$€���H‰\$H‹œ$ˆ���H‰\$H‹œ$���H‰\$è����H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0HÑåH‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xHƒø�t,Hh Hœ$ ���H‰ïH‰Þè����H‰„$À���è����HÄ˜���É�ëЉ%����éRÿÿÿ������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���œ� runtime.duffcopy���à� runtime.duffcopy���¬��type.[]uint8���Ò��"runtime.makeslice���®��type."".Gray16���À��"runtime.newobject���æ��"runtime.racewrite���æ��2runtime.writebarrierslice���Œ��"runtime.racewrite���Ü��,runtime.racewriterange��� � runtime.duffcopy���º��(runtime.racefuncexit���P°��"".autotmp_0763�?type.*"".Gray16�"".autotmp_0762��type.int�"".autotmp_0760��type.int�"".autotmp_0759��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r1�@type.*"".Gray16�"".r��"type."".Rectangle�)°ÿ¯°�À�ð )GSì��5ª@j$�Tgclocals·c883c1a619e1938819370d0a31e3736f�Tgclocals·9fd26bf7af0929d886dbef3fe54c8a77���0c:/go/src/image/image.goþ2"".(*Paletted).ColorModel��à��ÐeH‹ %(���H‹‰����H;awè����ëãHƒì0H‹\$0H‰$è����HÇD$@����HÇD$H����H����H‰$H����H‰\$H����H‰\$H‹\$8H‰\$Hƒ|$�t)HƒD$@è����H‹\$ H‰\$@H‹\$(H‰\$Hè����HƒÄ0É%����ëÎ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���ˆ��0type.image/color.Palette���ž��,type.image/color.Model���¶��Zgo.itab.image/color.Palette.image/color.Model���ú��runtime.convT2I���¬��(runtime.racefuncexit���0`�� "".~r0�,type.image/color.Model�"".p��"type.*"".Paletted�!`}_`�°�
– °��*k�Tgclocals·a9282ac20787dc3025c0916068a42263�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ*"".(*Paletted).Bounds�� ��‚eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H|$ 1Àè����H‹\$H‰$Hƒ$ HÇD$ ���è����H‹|$Hƒÿ�tHo H|$ H‰îè����è����HƒÄÉëá������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���nð� runtime.duffzero���¦��*runtime.racereadrange���ސ� runtime.duffcopy���è��(runtime.racefuncexit���P �� "".~r0�"type."".Rectangle�"".p��"type.*"".Paletted�! [ ��
š ��*I�Tgclocals·50a798c9d6a789f8ff12a130568a080f�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ""".(*Paletted).At�� ��’eH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���H‹œ$˜���H‰$è����HDŽ$¸�������HDŽ$À�������H‹œ$ ���H‰$Hƒ$@è����H‹”$ ���H‹jHHƒý�u%HDŽ$¸�������HDŽ$À�������è����HÄ˜���ÃH‹œ$¨���H‰\$0H‹œ$°���H‰\$8H‰$Hƒ$ HÇD$ ���è����L‹D$0H‹D$8H‹”$ ���Hƒú�„V��Hj H\$@H‰ßH‰îè����H‹\$@L9Ï-��H‹l$PI9è��H‹\$HH9Ï��H‹l$XH9è��HÇÀ���<�…·���H‰$Hƒ$@è����H‹œ$ ���H‹K@H‹CHH‹kPH‰¬$���H‰Œ$€���Hƒø�H‰„$ˆ���vpH‰ $è����H‹œ$ ���Hƒû�tUH‹K@H‹CHH‹kPH‰¬$���H‰Œ$€���Hƒø�H‰„$ˆ���v$H‹)H‰¬$¸���H‹iH‰¬$À���è����HÄ˜���Ãè���� ‰ë§è���� H‹œ$¨���H‰\$H‹œ$°���H‰\$H‰T$`H‰$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HëH‰\$ H‹œ$ ���H‰$Hƒ$@è����H‹œ$ ���H‰$è����H‹œ$ ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ŃM��H)H‰$è����H‹”$ ���H‹
H‹BH‹jH‰l$xH‰L$hH‹l$ H‰D$pH9Ń ��H)¶+H‰èH‰ÓH‹R@H‹KHH‹kPH‰¬$���H‰ÓH‰”$€���¶èH9ÍH‰Œ$ˆ���ƒÂ���HkíHëH‰$è����H‹”$ ���Hƒú�„™���H‹
H‹BH‹jH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsnH)¶+H‰èH‰ÓH‹R@H‹KHH‹kPH‰¬$���H‰ÓH‰”$€���¶èH9ÍH‰Œ$ˆ���s+HkíHëH‹+H‰¬$¸���H‹kH‰¬$À���è����HÄ˜���Ãè���� è���� ‰é`ÿÿÿè���� è���� è���� 1Àéýüÿÿ‰é£üÿÿ2������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���È�� runtime.raceread���¦��(runtime.racefuncexit���˜��*runtime.racereadrange���ø� runtime.duffcopy���¢�� runtime.raceread���˜�� runtime.raceread���À��(runtime.racefuncexit���Ú��$runtime.panicindex���ð��$runtime.panicindex���Î�� runtime.raceread���  �� runtime.raceread���Æ �� runtime.raceread���Ä
�� runtime.raceread���æ
�� runtime.raceread���à �� runtime.raceread���à �� runtime.raceread���Š��(runtime.racefuncexit���¤��$runtime.panicindex���²��$runtime.panicindex���Î��$runtime.panicindex���Ü��$runtime.panicindex���ê��$runtime.panicindex���P°��"".autotmp_0767��type.int�"".autotmp_0766��type.int�"".autotmp_0764�ßtype.int�"".y�type.int�"".x�ÿtype.int�"".p�o"type.*"".Paletted�"".r�¯"type."".Rectangle�"".p�Ïtype."".Point�"".i�ïtype.int� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�4)°u¯°Ì¯°¤¯°?�Ð�Dž )(  ¨˜’«�.�5]9” :{ã ?�Tgclocals·66101c35671cc87c43abaa29d8c7f489�Tgclocals·12fe87de4ae3c5b95abe8940c9637c18���0c:/go/src/image/image.goþ0"".(*Paletted).PixOffset��€��âeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹\$H‰$Hƒ$ è����H‹D$H‹X H‹l$ H)ÝH‰l$H‰$Hƒ$ Hƒ$è����H‹\$H‰$Hƒ$è����H‹D$H‹X(H‹l$(H)ÝH‰ëH‹hH¯ÝH‹l$HëH‰\$0è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���|�� runtime.raceread���Î�� runtime.raceread���ô�� runtime.raceread���Ð��(runtime.racefuncexit���@ ��
"".autotmp_0777�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�! �À�¸ !Ÿ��*}�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/image.goþ$"".(*Paletted).Set��  ��‚ eH‹ %(���H‹‰����HD$àH;Awè����ëÞHì ���H‹œ$ ���H‰$è����H‹œ$°���H‰\$PH‹œ$¸���H‰\$XH‹œ$¨���H‰$Hƒ$ HÇD$ ���è����L‹D$PH‹D$XH‹”$¨���Hƒú�„+��Hj H\$`H‰ßH‰îè����H‹\$`L9Ï��H‹l$pI9èô��H‹\$hH9Ïæ��H‹l$xH9èØ��HÇÀ���<�u è����HÄ ���ÃH‹œ$°���H‰\$8H‹œ$¸���H‰\$0H‰”$€���H‰$Hƒ$ è����H‹„$€���H‹X H‹l$8H)ÝH‰l$HH‰$Hƒ$ Hƒ$è����H‹œ$€���H‰$Hƒ$è����H‹„$€���H‹X(H‹l$0H)ÝH‰ëH‹hH¯ÝH‹l$HHëH‰\$@H‹œ$¨���H‰$Hƒ$@è����H‹¼$¨���Hƒÿ�„ó���Ho@H<$H‰îH¥H¥H¥H‹œ$À���H‰\$H‹œ$È���H‰\$ è����H‹\$(H‰\$HH‹œ$¨���H‰$è����H‹œ$¨���H‹ H‹CH‹kH‰¬$˜���H‰Œ$ˆ���H‹l$@H‰„$���H9ÅslH)H‰$è����H‹œ$¨���Hƒû�tMH‹ H‹CH‹kH‰¬$˜���H‰Œ$ˆ���H‹l$@H‰„$���H9ÅsH)H‹l$H@ˆ+è����HÄ ���Ãè���� ‰ë¯è���� ‰éÿÿÿ1Àé(þÿÿ‰éÎýÿÿ ������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Þ��*runtime.racereadrange���¾� runtime.duffcopy���Î��(runtime.racefuncexit���¾�� runtime.raceread���–�� runtime.raceread���Â�� runtime.raceread���Æ�� runtime.raceread���Ê��2image/color.Palette.Index���€�� runtime.raceread���„ ��"runtime.racewrite���œ
��(runtime.racefuncexit���¶
��$runtime.panicindex���Ì
��$runtime.panicindex���PÀ��"".autotmp_0781�¯type.int�"".autotmp_0780��type.int�"".autotmp_0778��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?"type.*"".Paletted�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".c�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�()ÀÉ¿À¦¿À6�Ð�2À )
¬ž��5é„®�Tgclocals·562ff44fc2b4beb994776fb7f4a5aec4�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ6"".(*Paletted).ColorIndexAt��€ ��€ eH‹ %(���H‹‰����H;awè����ëãHì€���H‹œ$€���H‰$è����H‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹D$0H‹D$8H‹”$ˆ���Hƒú�„¯��Hj H\$@H‰ßH‰îè����H‹\$@L9φ��H‹l$PI9èx��H‹\$HH9Ïj��H‹l$XH9è\��HÇÀ���<�uƄ$ ����è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰T$`H‰$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HëH‰\$ H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsfH)H‰$è����H‹œ$ˆ���Hƒû�tGH‹ H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsH)¶+@ˆ¬$ ���è����HÄ€���Ãè���� ‰ëµè���� 1Àé¤þÿÿ‰éJþÿÿ������.��0runtime.morestack_noctxt���b��*runtime.racefuncenter���Ô��*runtime.racereadrange���´� runtime.duffcopy���Ô��(runtime.racefuncexit���¾�� runtime.raceread����� runtime.raceread���¶�� runtime.raceread���ª�� runtime.raceread���œ�� runtime.raceread���¨��(runtime.racefuncexit���Â��$runtime.panicindex���Ø��$runtime.panicindex���@€��"".autotmp_0786�¯type.int�"".autotmp_0785��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?"type.*"".Paletted�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int� "".~r2�0type.uint8�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�($€Ñÿ€©ÿ€ �À�.Ð $
¬’ª� �0¹5v  �Tgclocals·1a780b2043fc6869f6e645f97d4b356b�Tgclocals·07ce3793e0acbc9268622f5f9e9eb47d���0c:/go/src/image/image.goþ8"".(*Paletted).SetColorIndex��€ ��ðeH‹ %(���H‹‰����H;awè����ëãHì€���H‹œ$€���H‰$è����H‹œ$���H‰\$0H‹œ$˜���H‰\$8H‹œ$ˆ���H‰$Hƒ$ HÇD$ ���è����L‹D$0H‹D$8H‹”$ˆ���Hƒú�„§��Hj H\$@H‰ßH‰îè����H‹\$@L9Ï~��H‹l$PI9èp��H‹\$HH9Ïb��H‹l$XH9èT��HÇÀ���<�u è����HÄ€���ÃH‹œ$���H‰\$H‹œ$˜���H‰\$H‰T$`H‰$Hƒ$ è����H‹D$`H‹X H‹l$H)ÝH‰l$(H‰$Hƒ$ Hƒ$è����H‹\$`H‰$Hƒ$è����H‹D$`H‹X(H‹l$H)ÝH‰ëH‹hH¯ÝH‹l$(HëH‰\$ H‹œ$ˆ���H‰$è����H‹œ$ˆ���H‹ H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsfH)H‰$è����H‹œ$ˆ���Hƒû�tGH‹ H‹CH‹kH‰l$xH‰L$hH‹l$ H‰D$pH9ÅsH)¶¬$ ���@ˆ+è����HÄ€���Ãè���� ‰ëµè���� 1Àé¬þÿÿ‰éRþÿÿ������.��0runtime.morestack_noctxt���b��*runtime.racefuncenter���Ô��*runtime.racereadrange���´� runtime.duffcopy���Ä��(runtime.racefuncexit���®�� runtime.raceread���€�� runtime.raceread���¦�� runtime.raceread���š�� runtime.raceread���Œ��"runtime.racewrite���˜��(runtime.racefuncexit���²��$runtime.panicindex���È��$runtime.panicindex���@€��"".autotmp_0791�¯type.int�"".autotmp_0790��type.int�"".y�ßtype.int�"".x�Ïtype.int�"".p�?"type.*"".Paletted�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�"".i�¿type.int�"".index�0type.uint8�"".y� type.int�"".x�type.int�"".p��"type.*"".Paletted�($€Éÿ€©ÿ€(�À�2à $
¬’��0æv´�Tgclocals·baa0c3679835632b56aa126ccf73f5ec�Tgclocals·29f0050a5ee7c2b9348a75428171d7de���0c:/go/src/image/image.goþ."".(*Paletted).SubImage�� ��œeH‹ %(���H‹‰����HD$€H;Awè����ëÞHì���H‹œ$���H‰$è����HDŽ$0������HDŽ$8������H‹œ$��H‰$Hƒ$ HÇD$ ���è����Hœ$��H,$H‰ïH‰Þè����H‹¼$��Hƒÿ�„­��Ho H|$ H‰îè����è����H\$@H¬$¸���H‰ïH‰Þè����Hœ$¸���H¬$��H‰ïH‰Þè����Hœ$��H¬$˜���H‰ïH‰Þè����H‹œ$˜���H‹¬$¨���H9ë$��H‹œ$ ���H‹¬$°���H9ë ��1À<�„@��H����H‰$è����H‹D$H‰„$à���H‰$HÇD$X���è����H‹¼$à���H‰ùHƒÿ�„õ���1Àè����H‰ $Hƒ$@è����H‹œ$��H‰$Hƒ$@è����H‹œ$à���H‰$Hƒ<$�„§���Hƒ$@H‹¼$��Hƒÿ�„‰���Ho@H|$H‰îH¥H¥H¥è����H‹œ$à���H‰œ$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉épÿÿÿ‰%����éMÿÿÿ‰éÿÿÿH‹”$��H‹„$��H‹œ$��H‰\$hH‰D$`H‰”$Ø���H‰$Hƒ$ è����H‹„$Ø���H‹X H‹l$hH)ÝH‰¬$���H‰$Hƒ$ Hƒ$è����H‹œ$Ø���H‰$Hƒ$è����H‹„$Ø���H‹X(H‹l$`H)ÝH‰ëH‹hH¯ÝH‹¬$���HëH‰\$pH‹œ$��H‰$Hƒ$ HÇD$ ���è����H‹¼$��Hƒÿ�„Ý��Ho H<$H‰îè����Hœ$��Hl$ H‰ïH‰Þè����è����H\$@H¬$¸���H‰ïH‰Þè����H����H‰$è����H‹\$H‰œ$à���H‹œ$��H‰$è����H‹„$��H‹XH‰œ$ˆ���H‰$è����H‹œ$��H‹KH‹D$pH‰Œ$€���H‰D$xH9Á‚��H‹œ$à���H‰$è����H‹t$xH‹œ$à���H‰$Hƒ<$�„æ��H‹œ$��H‹H‹¼$€���H‹”$ˆ���H)÷H)òHƒú�t H‰óHÃH‰ØH‰„$è���H‰D$H‰¼$ð���H‰|$H‰”$ø���H‰T$è����H‹œ$à���H‰$Hƒ$è����H‹œ$��H‰$Hƒ$è����H‹„$à���Hƒø�„E��L‹„$��I‹hH‰hH‰$Hƒ$ HÇD$ ���è����H‹„$à���Hƒø�„��Hh Hœ$¸���H‰ïH‰Þè����H‰$Hƒ$@è����H‹œ$��H‰$Hƒ$@è����H‹œ$à���H‰$Hƒ<$�„§���Hƒ$@H‹¼$��Hƒÿ�„‰���Ho@H|$H‰îH¥H¥H¥è����H‹œ$à���H‰œ$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉épÿÿÿ‰%����éMÿÿÿ‰�éôþÿÿ‰�é´þÿÿ‰%����éþÿÿè���� ‰éýÿÿHÇÀ���éëúÿÿ‰éLúÿÿf������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Ú��*runtime.racereadrange���ˆ� runtime.duffcopy���ΐ� runtime.duffcopy���Ø��,"".Rectangle.Intersect���ˆ� runtime.duffcopy���¾� runtime.duffcopy���ô� runtime.duffcopy���ú�� type."".Paletted���Œ��"runtime.newobject���Ê��,runtime.racewriterange���‚Ô� runtime.duffzero���ž��"runtime.racewrite���Ê�� runtime.raceread���Ô��2runtime.writebarrierslice���‚��:go.itab.*"".Paletted."".Image���Ê��(runtime.racefuncexit���è��"type.*"".Paletted���þ��type."".Image���– ��:go.itab.*"".Paletted."".Image���ª �� runtime.typ2Itab���Ü
�� runtime.raceread���º �� runtime.raceread���æ �� runtime.raceread���‚ ��*runtime.racereadrange���Æ � runtime.duffcopy���ö � runtime.duffcopy���€��,"".Rectangle.Intersect���°� runtime.duffcopy���¾�� type."".Paletted���Ð��"runtime.newobject���Œ�� runtime.raceread���Æ�� runtime.raceread���¶��"runtime.racewrite���¦��2runtime.writebarrierslice���Ò��"runtime.racewrite���þ�� runtime.raceread���ð��,runtime.racewriterange���� runtime.duffcopy���Þ��"runtime.racewrite���Š�� runtime.raceread���”��2runtime.writebarrierslice���Â��:go.itab.*"".Paletted."".Image���Š��(runtime.racefuncexit���¨��"type.*"".Paletted���¾��type."".Image���Ö��:go.itab.*"".Paletted."".Image���ê�� runtime.typ2Itab���Ü��$runtime.panicslice���p€��*"".autotmp_0808��type.*uint8�"".autotmp_0807�type.uint64�"".autotmp_0806�ÿtype.uint64�"".autotmp_0805�ïtype.uint64�"".autotmp_0804��"type.*"".Paletted�"".autotmp_0803��type.int�"".autotmp_0802��type.int�"".autotmp_0801�ßtype.int�"".autotmp_0799�?"type.*"".Paletted�"".autotmp_0797��"type.*"".Paletted�"".autotmp_0796��"type."".Rectangle�"".autotmp_0795��"type.*"".Paletted�"".autotmp_0794�"type."".Rectangle�"".y�¿type.int�"".x�¯type.int�"".p�O"type.*"".Paletted�"".r�Ï"type."".Rectangle�"".i�Ÿtype.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��"type.*"".Paletted�()€‡ÿ€Ÿÿ€�Ð �zô R‘WÒ-¬vk‰á --  �8�5¯À0Y“…ÿ09#�Tgclocals·2a24b925de47e6af398f4500cd782a35�Tgclocals·c4d490826610b32d5111d57f926afcb9���0c:/go/src/image/image.goþ*"".(*Paletted).Opaque��€��øeH‹ %(���H‹‰����H„$°þÿÿH;Awè����ëÛHìÐ��H‹œ$Ð��H‰$è����H|$p1Àè����H‹œ$Ø��H‰$Hƒ$ HÇD$ ���è����H‹”$Ø��Hƒú�„{��Hj H\$PH‰ßH‰îè����H‹\$`H‹l$PH)ëHÇD$0����H‰\$(H‰$Hƒ$ Hƒ$è����H‹Œ$Ø��H‹i(H‰l$ H‰ $Hƒ$ Hƒ$Hƒ$è����H‹„$Ø��H‹X8H‹l$ H9ëŽm��H‰$è����L‹„$Ø��I‹pH‹T$(H‹D$0H9Ö‚>��H9‚5��I‹H‰×H)ÇH‰òH)ÂHƒú�t H‰ÃHËH‰ÙH‰ÈH‰”$È��1ÉH‰¼$À��H‰|$HH‰„$¸��H‰L$@H‹l$HH9é}rH‰„$x��H‰$è����H‹œ$x��¶+H\$p@ˆl$@¶íH+H‰$è����L‹„$Ø��H\$p¶l$H+ÆH‹„$x��HÿÀH‹L$@HÿÁH‰L$@H‹l$HH9é|ŽH‹\$0H‰\$@L‰$Hƒ$è����H‹„$Ø��H‹XH‹l$@HëH‰\$0H‹\$(H‰\$@H‰$Hƒ$è����H‹Œ$Ø��H‹YH‹l$@HëH‰\$(H‹\$ HÿÃH‰\$ éhþÿÿè���� H‰$Hƒ$@è����H‹œ$Ø��Hƒû�„b��H‹S@H‹CHH‹kPH‰¬$°��1ÉH‰„$¨��H‰D$HH‰”$ ��H‰ÐH‰L$@H‹l$HH9鍼���H‰„$p��H‰$è����H‹œ$p��Hƒû�„÷���H‹H‹kH‹D$@H‰”$��H‰”$€��H‰¬$˜��H‰¬$ˆ��H\$pH‰D$8H=���ƒ®���HH‰$è����H\$pH‹l$8Hý���ƒƒ���H+¶€û�u<H‹„$p��H‹L$@HƒÀHÿÁH‰L$@H‹l$HH9éŒDÿÿÿƄ$à��è����HÄÐ��ÃH‹œ$ˆ��H‰$H‹œ$€��H‹[ ÿӋ\$ûÿÿ��tžÆ„$à���è����HÄÐ��Ãè���� è���� ‰éÿÿÿ‰é—þÿÿ‰é~üÿÿ,������>��0runtime.morestack_noctxt���r��*runtime.racefuncenter���Š€� runtime.duffzero���È��*runtime.racereadrange���”� runtime.duffcopy���ð�� runtime.raceread���Â�� runtime.raceread���ˆ�� runtime.raceread���˜�� runtime.raceread���ä��"runtime.racewrite���Š�� runtime.raceread���ì�� runtime.raceread���Ì ��$runtime.panicslice���ì �� runtime.raceread���´ �� runtime.raceread���ö �� runtime.raceread���¤��(runtime.racefuncexit���ì�
������š��(runtime.racefuncexit���´��$runtime.panicindex���Â��$runtime.panicindex���  ��0"".autotmp_0832�,type.image/color.Color�"".autotmp_0831�¿.type.*image/color.Color�"".autotmp_0830��type.int�"".autotmp_0829��type.int�"".autotmp_0827�¯type.*uint8�"".autotmp_0826��type.int�"".autotmp_0825��type.int�"".autotmp_0821��type.int�"".autotmp_0820�type.int�"".autotmp_0819�_0type.image/color.Palette�"".autotmp_0818��type.int�"".autotmp_0817��type.int�"".autotmp_0816��type.int�"".autotmp_0815�/type.[]uint8�"".r�ÿ"type."".Rectangle�"".c�Ÿ,type.image/color.Color�"".i�¯type.int�"".c�átype.uint8�"".y�ßtype.int�
"".i1�Ïtype.int�
"".i0�¿type.int�"".present�¿type.[256]bool� "".~r0�type.bool�"".p��"type.*"".Paletted�&, ñŸ :Ÿ '�€�hœ,&# `Vœ4"11  °F'   �.�8ÓyÕaW% '�Tgclocals·b730310aa25263a75bbe3b1ba20caa05�Tgclocals·3a4608ee038510a3866d59edec1647b8���0c:/go/src/image/image.goþ"".NewPaletted��À��®eH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���H‹œ$˜���H‰$è����Hœ$ ���Hl$XH‰ïH‰Þè����H‹T$hH‹|$XH)úHœ$ ���H|$8H‰Þè����H‹D$PH‹l$@H)èH‰ÓH‰T$0H¯ØH‰ØH����H‰$H‰D$H‰D$è����H‹l$H‹T$ H‹D$(H‰¬$€���H‰”$ˆ���H‰„$���H����H‰$è����H‹D$H‰D$xH‰$è����H‹\$xH‰$Hƒ<$�„��H‹œ$€���H‰\$H‹œ$ˆ���H‰\$H‹œ$���H‰\$è����H‹\$xH‰$Hƒ$è����H‹D$xH‹l$0H‰hH‰$Hƒ$ HÇD$ ���è����H‹D$xHƒø�„‰���Hh Hœ$ ���H‰ïH‰Þè����H‰$Hƒ$@è����H‹\$xH‰$Hƒ<$�tKHƒ$@H‹œ$À���H‰\$H‹œ$È���H‰\$H‹œ$Ð���H‰\$è����H‹\$xH‰œ$Ø���è����HÄ˜���É%����묉�épÿÿÿ‰%����éñþÿÿ"������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���œ� runtime.duffcopy���à� runtime.duffcopy���¦��type.[]uint8���Ì��"runtime.makeslice���¨�� type."".Paletted���º��"runtime.newobject���à��"runtime.racewrite���à��2runtime.writebarrierslice���†��"runtime.racewrite���Ð��,runtime.racewriterange���œ� runtime.duffcopy���¸��"runtime.racewrite���º��2runtime.writebarrierslice���Þ��(runtime.racefuncexit���€°��"".autotmp_0842�?"type.*"".Paletted�"".autotmp_0841��type.int�"".autotmp_0839��type.int�"".autotmp_0838��type.int�"".r�¿"type."".Rectangle�"".r�"type."".Rectangle� "".pix�/type.[]uint8�"".w�Ïtype.int� "".~r2�p"type.*"".Paletted�"".p�@0type.image/color.Palette�"".r��"type."".Rectangle�)°Ñ¯°%� �Ê)GPÏ��5§@¿2�Tgclocals·ee7fd7b7ae1d607a49016aad3741586d�Tgclocals·9fd26bf7af0929d886dbef3fe54c8a77���0c:/go/src/image/image.goþ$"".(*Uniform).RGBA��À��¢eH‹ %(���H‹‰����H;awè����ëãHƒì(H‹\$(H‰$è����H‹\$0H‰$è����H‹\$0Hƒû�tEH‹ H‹kH‰l$ H‰,$H‰L$H‹Y ÿӋl$‹T$ ‹L$‹D$‰l$8‰T$<‰L$@‰D$Dè����HƒÄ(Éë· ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���r�� runtime.raceread���Â�
������ˆ��(runtime.racefuncexit���0P��
"".a�(type.uint32�"".b� type.uint32�"".g�type.uint32�"".r�type.uint32�"".c�� type.*"".Uniform�!PkOP� �
:!��*Y�Tgclocals·0c1de6f5863a411b332163addfd6db93�Tgclocals·a310211a5d93ca643985188646602d0e���0c:/go/src/image/names.goþ0"".(*Uniform).ColorModel��à��ÂeH‹ %(���H‹‰����H;awè����ëãHƒì(H‹\$(H‰$è����HÇD$8����HÇD$@����H‹\$0H‰\$ H‹����1íH9ètH‹\$ H‰\$@H‰D$8è����HƒÄ(ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¸������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���œ��Jgo.itab.*"".Uniform.image/color.Model���Ò��(runtime.racefuncexit���ê�� type.*"".Uniform���€��,type.image/color.Model���˜��Jgo.itab.*"".Uniform.image/color.Model���¬�� runtime.typ2Itab���0P��"".autotmp_0848� type.*"".Uniform� "".~r0�,type.image/color.Model�"".c�� type.*"".Uniform�!PPOP>�°�BA'C��*>-�Tgclocals·7f720595ca0b8b6a95aaac2f38eb7b52�Tgclocals·9265c967b79b0c937dffe448c4822b36���0c:/go/src/image/names.goþ*"".(*Uniform).Convert��€��òeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����HÇD$(����HÇD$0����H‹\$H‰$è����H‹\$Hƒû�tH‹+H‰l$(H‹kH‰l$0è����HƒÄÉëá
������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���–�� runtime.raceread���Ø��(runtime.racefuncexit���P�� "".~r1�0,type.image/color.Color�"".c�� type.*"".Uniform�!S �€�J!?��*A�Tgclocals·4f7930a05ab329338bbd420830e58939�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/names.goþ("".(*Uniform).Bounds�� ��”eH‹ %(���H‹‰����H;awè����ëãHƒì(H‹\$(H‰$è����H|$81Àè����H|$1Àè����HÇD$�6eÄHÇD$�6eÄHÇD$�ʚ;HÇD$ �ʚ;H\$Hl$8H‰ïH‰Þè����è����HƒÄ(Ã������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���nð� runtime.duffzero���†ð� runtime.duffzero���ø� runtime.duffcopy���‚��(runtime.racefuncexit���PP��"".autotmp_0851�?"type."".Rectangle� "".~r0�"type."".Rectangle�"".c�� type.*"".Uniform�!PhO��R��*V�Tgclocals·50a798c9d6a789f8ff12a130568a080f�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/names.goþ "".(*Uniform).At��€��òeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����HÇD$(����HÇD$0����H‹\$H‰$è����H‹\$Hƒû�tH‹+H‰l$(H‹kH‰l$0è����HƒÄÉëá
������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���–�� runtime.raceread���Ø��(runtime.racefuncexit���P�� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".c�� type.*"".Uniform�!S �€�V€��*A�Tgclocals·f4e5c2ea265c0bb50618a74b99defd82�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/names.goþ("".(*Uniform).Opaque�� ��’eH‹ %(���H‹‰����H;awè����ëãHƒì(H‹\$(H‰$è����H‹\$0H‰$è����H‹\$0Hƒû�t=H‹ H‹kH‰l$ H‰,$H‰L$H‹Y ÿӋ\$ûÿÿ��tÆD$8�è����HƒÄ(ÃÆD$8ëï‰ë¿ ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���r�� runtime.raceread���Â�
������ê��(runtime.racefuncexit��� P�� "".~r0�type.bool�"".c�� type.*"".Uniform�!P\OP��\!8 ��*J�Tgclocals·cf86db206769ec68369d07e260728f65�Tgclocals·a310211a5d93ca643985188646602d0e���0c:/go/src/image/names.goþ"".NewUniform��À��°eH‹ %(���H‹‰����H;awè����ëãHƒì H‹\$ H‰$è����H����H‰$è����H‹D$H‰D$H‰$è����H‹\$H‰$Hƒ<$�t-H‹\$(H‰\$H‹\$0H‰\$è����H‹\$H‰\$8è����HƒÄ É%����ëÊ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���d��type."".Uniform���v��"runtime.newobject���œ��"runtime.racewrite���î��2runtime.writebarrieriface���Œ��(runtime.racefuncexit���0@��"".autotmp_0853� type.*"".Uniform� "".~r1�  type.*"".Uniform�"".c��,type.image/color.Color�!@m?@� �
f!��*#8�Tgclocals·b93f5341db34820a49aadcfc8eb4ce02�Tgclocals·9265c967b79b0c937dffe448c4822b36���0c:/go/src/image/names.goþ:"".YCbCrSubsampleRatio.String��€��øeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹D$HƒørHƒø�u"H����H‹+H‰l$H‹kH‰l$ è����HƒÄÃHƒøu"H����H‹+H‰l$H‹kH‰l$ è����HƒÄÃH����H‹+H‰l$H‹kH‰l$ è����HƒÄÃHƒøu"H����H‹+H‰l$H‹kH‰l$ è����HƒÄÃHƒøu°H����H‹+H‰l$H‹kH‰l$ è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���†��Dgo.string."YCbCrSubsampleRatio444"���²��(runtime.racefuncexit���Ö��Dgo.string."YCbCrSubsampleRatio422"���‚��(runtime.racefuncexit���š��Lgo.string."YCbCrSubsampleRatioUnknown"���Æ��(runtime.racefuncexit���ê��Dgo.string."YCbCrSubsampleRatio420"���–��(runtime.racefuncexit���º��Dgo.string."YCbCrSubsampleRatio440"���æ��(runtime.racefuncexit���0�� "".~r0�type.string�"".s��6type."".YCbCrSubsampleRatio�.!@'!''�€�R,!    "  ��*.¨�Tgclocals·75c3124ce5365bfb55c4c083dc0d231d�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/ycbcr.goþ,"".(*YCbCr).ColorModel��€��æeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����HÇD$����HÇD$ ����H����H‰$è����H‹����H‰\$H‹����H‰\$ è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���ˆ��,image/color.YCbCrModel���š�� runtime.raceread���¨��,image/color.YCbCrModel���À�,image/color.YCbCrModel���Ô��(runtime.racefuncexit���0�� "".~r0�,type.image/color.Model�"".p��type.*"".YCbCr�!Q�€�n!?��*?�Tgclocals·a9282ac20787dc3025c0916068a42263�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/ycbcr.goþ$"".(*YCbCr).Bounds�� ��‚eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H|$ 1Àè����H‹\$H‰$Hƒ$`HÇD$ ���è����H‹|$Hƒÿ�tHo`H|$ H‰îè����è����HƒÄÉëá������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���nð� runtime.duffzero���¦��*runtime.racereadrange���ސ� runtime.duffcopy���è��(runtime.racefuncexit���P �� "".~r0�"type."".Rectangle�"".p��type.*"".YCbCr�! [ ��v! U��*I�Tgclocals·50a798c9d6a789f8ff12a130568a080f�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/ycbcr.goþ"".(*YCbCr).At�� ��œeH‹ %(���H‹‰����H;awè����ëãHƒì8H‹\$8H‰$è����HÇD$X����HÇD$`����H‹\$@H‰$H‹\$HH‰\$H‹\$PH‰\$è����¶\$ˆ\$5¶\$ˆ\$6¶\$ˆ\$7H����H‰$H����H‰\$H����H‰\$H\$5H‰\$è����H‹\$ H‰\$XH‹\$(H‰\$`è����HƒÄ8Ã������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¾��&"".(*YCbCr).YCbCrAt���‚��,type.image/color.YCbCr���˜��,type.image/color.Color���°��Vgo.itab.image/color.YCbCr.image/color.Color���Ø��runtime.convT2I���Š��(runtime.racefuncexit���Pp��
"".autotmp_0855�,type.image/color.YCbCr� "".~r2�0,type.image/color.Color�"".y� type.int�"".x�type.int�"".p��type.*"".YCbCr�!p¬o�Ð�~Aƒ��*š �Tgclocals·f4e5c2ea265c0bb50618a74b99defd82�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/ycbcr.goþ&"".(*YCbCr).YCbCrAt��À��²eH‹ %(���H‹‰����HD$èH;Awè����ëÞHì˜���H‹œ$˜���H‰$è����Ƅ$¸����Ƅ$¹����Ƅ$º����H‹œ$¨���H‰\$HH‹œ$°���H‰\$PH‹œ$ ���H‰$Hƒ$`HÇD$ ���è����L‹D$HH‹D$PH‹”$ ���Hƒú�„«��Hj`H\$XH‰ßH‰îè����H‹\$XL9Ï‚��H‹l$hI9èt��H‹\$`H9Ïf��H‹l$pH9èX��HÇÀ���<�u41Ò1É1ÀˆT$%ˆ”$¸���ˆL$&ˆŒ$¹���ˆD$'ˆ„$º���è����HÄ˜���ÃH‹œ$¨���H‰\$8H‹œ$°���H‰\$0H‰T$xH‰$Hƒ$`Hƒ$è����H‹\$xH‰$Hƒ$Hè����H‹\$xH‰$Hƒ$`è����H‹D$xH‹XhH‹l$0H)ÝH‰ëH‹hHH¯ÝH‹h`L‹D$8I)èLÃH‰\$(H‹œ$ ���H‰$H‹œ$¨���H‰\$H‹œ$°���H‰\$è����H‹\$H‰\$@ÆD$%�ÆD$&�ÆD$'�H‹œ$ ���H‰$è����H‹œ$ ���H‹ H‹CH‹kH‰¬$���H‰Œ$€���H‹l$(H‰„$ˆ���H9Ńü��H)H‰$è����H‹”$ ���Hƒú�„Ö��H‹
H‹BL‹BL‰„$���H‰Œ$€���H‹l$(H‰„$ˆ���H9Ńž��H)¶ˆ\$%H‰$Hƒ$è����H‹œ$ ���H‹KH‹C H‹k(H‰¬$���H‰Œ$€���H‹l$@H‰„$ˆ���H9ŃD��H)H‰$è����H‹”$ ���Hƒú�„��H‹JH‹B L‹B(L‰„$���H‰Œ$€���H‹l$@H‰„$ˆ���H9Ńå���H)¶ˆ\$&H‰$Hƒ$0è����H‹œ$ ���H‹K0H‹C8H‹k@H‰¬$���H‰Œ$€���H‹l$@H‰„$ˆ���H9Ń‹���H)H‰$è����H‹¬$ ���Hƒý�tkH‹M0H‹E8L‹E@L‰„$���H‰Œ$€���H‹l$@H‰„$ˆ���H9Ås6H)¶H‰Ø¶\$%ˆœ$¸���¶\$&ˆœ$¹���ˆ„$º���è����HÄ˜���Ãè���� ‰E�ëè���� è���� ‰éÛþÿÿè���� è���� ‰é#þÿÿè���� 1Àé¨üÿÿ‰éNüÿÿ.������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Ž��*runtime.racereadrange���î� runtime.duffcopy���Ì��(runtime.racefuncexit���À�� runtime.raceread���æ�� runtime.raceread���Œ�� runtime.raceread���Â��&"".(*YCbCr).COffset���–�� runtime.raceread���¢ �� runtime.raceread���Ú
�� runtime.raceread���è �� runtime.raceread���¢ �� runtime.raceread���°�� runtime.raceread���„��(runtime.racefuncexit���ž��$runtime.panicindex���¶��$runtime.panicindex���Ä��$runtime.panicindex���à��$runtime.panicindex���î��$runtime.panicindex���Š��$runtime.panicindex���@°��"".autotmp_0860��,type.image/color.YCbCr�"".autotmp_0858�å,type.image/color.YCbCr�"".autotmp_0856��type.int�"".y�Ïtype.int�"".x�¿type.int�"".p�?type.*"".YCbCr�"".r�"type."".Rectangle�"".p�Ÿtype."".Point�
"".ci�¯type.int�
"".yi�ßtype.int� "".~r2�0,type.image/color.YCbCr�"".y� type.int�"".x�type.int�"".p��type.*"".YCbCr�()°ˆ¯°Û¯°R�à�h†)¬'ˆ5_F]GUF,  �$�5ð:¡ R�Tgclocals·1a780b2043fc6869f6e645f97d4b356b�Tgclocals·07ce3793e0acbc9268622f5f9e9eb47d���0c:/go/src/image/ycbcr.goþ&"".(*YCbCr).YOffset��à��ÎeH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹\$H‰$Hƒ$`Hƒ$è����H‹\$H‰$Hƒ$Hè����H‹\$H‰$Hƒ$`è����H‹D$H‹XhH‹l$ H)ÝH‰ëH‹hHH¯ÝH‹h`L‹D$I)èLÃH‰\$(è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���†�� runtime.raceread���¬�� runtime.raceread���Ò�� runtime.raceread���¼��(runtime.racefuncexit���@�� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".YCbCr�!…
�°�¤!��*s�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/ycbcr.goþ&"".(*YCbCr).COffset��À ��´ eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����H‹\$ H‰$Hƒ$Xè����H‹L$ H‹iXHƒý…���H‰ $Hƒ$`è����H‹D$ H‹h`H‰l$H‰$Hƒ$`Hƒ$è����H‹\$ H‰$Hƒ$Pè����H‹T$ L‹L$L‹D$(H‹ZhH‹l$0H)ÝH‰ëH‹jPH¯ÝL‰ÅHÁý?I)èL‰ÅHÑýM‰ÈIÁø?M)ÁM‰ÈIÑøL)ÅHëH‰\$8è����HƒÄÃHƒý…Ç���H‰ $Hƒ$`Hƒ$è����H‹D$ H‹hhH‰l$H‰$Hƒ$`è����H‹D$ H‹h`H‰l$H‰$Hƒ$Pè����L‹D$H‹l$0H‹L$(L‹L$H‰ëHÁû?H)ÝH‰ëHÑûL‰ÅHÁý?I)èL‰ÅL‹D$ HÑýH)ëI‹hPH¯ÝH‰ÍHÁý?I‰ÈI)èL‰ÅHÑýM‰ÈIÁø?M)ÁM‰ÈIÑøL)ÅHëH‰\$8è����HƒÄÃHƒý…š���H‰ $Hƒ$`Hƒ$è����H‹D$ H‹hhH‰l$H‰$Hƒ$Pè����H‹\$ H‰$Hƒ$`è����H‹T$ H‹l$0L‹D$H‰ëHÁû?H)ÝH‰ëHÑûL‰ÅHÁý?I)èL‰ÅHÑýH)ëH‹jPH¯ÝH‹j`L‹D$(I)èLÃH‰\$8è����HƒÄÃH‰ $Hƒ$`Hƒ$è����H‹\$ H‰$Hƒ$Pè����H‹\$ H‰$Hƒ$`è����H‹D$ H‹XhH‹l$0H)ÝH‰ëH‹hPH¯ÝH‹h`L‹D$(I)èLÃH‰\$8è����HƒÄÃ(������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���|�� runtime.raceread���¾�� runtime.raceread���€�� runtime.raceread���¦�� runtime.raceread���Ò��(runtime.racefuncexit���–�� runtime.raceread���Î�� runtime.raceread���†�� runtime.raceread���ô��(runtime.racefuncexit���¸�� runtime.raceread���ð�� runtime.raceread���–�� runtime.raceread���¼ ��(runtime.racefuncexit���ì �� runtime.raceread���’
�� runtime.raceread���¸
�� runtime.raceread���¢ ��(runtime.racefuncexit���@0��"".autotmp_0871��type.int�"".autotmp_0870�type.int�"".autotmp_0869��type.int�"".autotmp_0868�type.int� "".~r2�0type.int�"".y� type.int�"".x�type.int�"".p��type.*"".YCbCr�,!0Ð/0Ð/0£/0r/�à�J°!
“ 
½
 
y�,�*¾"¯"‚[�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/ycbcr.goþ("".(*YCbCr).SubImage��à��ØeH‹ %(���H‹‰����HD$€H;Awè����ëÞHì���H‹œ$���H‰$è����HDŽ$0������HDŽ$8������H‹œ$��H‰$Hƒ$`HÇD$ ���è����Hœ$��H,$H‰ïH‰Þè����H‹¼$��Hƒÿ�„K��Ho`H|$ H‰îè����è����H\$@H¬$¸���H‰ïH‰Þè����Hœ$¸���H¬$��H‰ïH‰Þè����Hœ$��H¬$˜���H‰ïH‰Þè����H‹œ$˜���H‹¬$¨���H9ëÂ��H‹œ$ ���H‹¬$°���H9덩��1À<�„��H����H‰$è����H‹D$H‰„$à���H‰$HÇD$€���è����H‹¼$à���H‰ùHƒÿ�„·���1Àè����H‰ $Hƒ$Xè����H‹œ$��H‰$Hƒ$Xè����H‹„$à���Hƒø�tzL‹„$��I‹hXH‰hXH‰„$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�낉éBÿÿÿH‹Œ$��H‹„$��H‹œ$��H‰\$pH‰D$hH‰Œ$Ø���H‰ $Hƒ$`Hƒ$è����H‹œ$Ø���H‰$Hƒ$Hè����H‹œ$Ø���H‰$Hƒ$`è����H‹„$Ø���H‹XhH‹l$hH)ÝH‰ëH‹hHH¯ÝH‹h`L‹D$pI)èLÃH‰\$`H‹œ$��H‰$H‹œ$��H‰\$H‹œ$��H‰\$è����H‹\$H‰\$xH����H‰$è����H‹\$H‰œ$à���H‹œ$��H‰$è����H‹„$��H‹XH‰œ$���H‰$è����H‹œ$��H‹KH‹D$`H‰Œ$ˆ���H‰„$€���H9Á‚P��H‹œ$à���H‰$è����H‹”$€���H‹œ$à���H‰$Hƒ<$�„��H‹œ$��H‹H‹´$ˆ���H‹Œ$���H)ÖH)ÑHƒù�t H‰ÓHÃH‰ØH‰„$è���H‰D$H‰´$ð���H‰t$H‰Œ$ø���H‰L$è����H‹œ$��H‰$Hƒ$è����H‹„$��H‹X(H‰œ$€���H‰$Hƒ$è����H‹œ$��H‹K H‹D$xH‰Œ$���H‰„$ˆ���H9Á‚O��H‹œ$à���H‰$Hƒ$è����H‹´$ˆ���H‹œ$à���H‰$Hƒ<$�„��Hƒ$H‹œ$��H‹CH‹”$���H‹Œ$€���H)òH)ñHƒù�t H‰óHÃH‰ØH‰„$è���H‰D$H‰”$ð���H‰T$H‰Œ$ø���H‰L$è����H‹œ$��H‰$Hƒ$0è����H‹„$��H‹X@H‰œ$ˆ���H‰$Hƒ$0è����H‹œ$��H‹K8H‹D$xH‰Œ$���H‰„$€���H9Á‚C��H‹œ$à���H‰$Hƒ$0è����H‹´$€���H‹œ$à���H‰$Hƒ<$�„��Hƒ$0H‹œ$��H‹C0H‹¼$���H‹”$ˆ���H)÷H)òHƒú�t H‰óHÃH‰ØH‰„$è���H‰D$H‰¼$ð���H‰|$H‰”$ø���H‰T$è����H‹œ$à���H‰$Hƒ$Xè����H‹œ$��H‰$Hƒ$Xè����H‹„$à���Hƒø�„[��L‹„$��I‹hXH‰hXH‰$Hƒ$Hè����H‹œ$��H‰$Hƒ$Hè����H‹„$à���Hƒø�„��L‹„$��I‹hHH‰hHH‰$Hƒ$Pè����H‹œ$��H‰$Hƒ$Pè����H‹„$à���Hƒø�„Á���L‹„$��I‹hPH‰hPH‰$Hƒ$`HÇD$ ���è����H‹„$à���Hƒø�„���Hh`Hœ$��H‰ïH‰Þè����H‰„$à���H‹����1íH9èt%H‹œ$à���H‰œ$8��H‰„$0��è����HÄ���ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$묉�éxÿÿÿ‰�é8ÿÿÿ‰�éëþÿÿ‰�éžþÿÿ‰%����éòýÿÿè���� ‰%����éæüÿÿè���� ‰%����éàûÿÿè���� HÇÀ���éMùÿÿ‰é®øÿÿr������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���Ú��*runtime.racereadrange���ˆ� runtime.duffcopy���ΐ� runtime.duffcopy���Ø��,"".Rectangle.Intersect���ˆ� runtime.duffcopy���¾� runtime.duffcopy���ô� runtime.duffcopy���ú��type."".YCbCr���Œ��"runtime.newobject���Ê��,runtime.racewriterange���‚À� runtime.duffzero���ž��"runtime.racewrite���Ê�� runtime.raceread���¤��4go.itab.*"".YCbCr."".Image���ì��(runtime.racefuncexit���Š��type.*"".YCbCr��� ��type."".Image���¸��4go.itab.*"".YCbCr."".Image���Ì�� runtime.typ2Itab���ê �� runtime.raceread���–
�� runtime.raceread���Â
�� runtime.raceread���þ ��&"".(*YCbCr).COffset���  ��type."".YCbCr���² ��"runtime.newobject���î �� runtime.raceread���¨ �� runtime.raceread���ž��"runtime.racewrite���”��2runtime.writebarrierslice���À�� runtime.raceread���„�� runtime.raceread���„��"runtime.racewrite���†��2runtime.writebarrierslice���²�� runtime.raceread���ö�� runtime.raceread���ö��"runtime.racewrite���ø��2runtime.writebarrierslice���¤��"runtime.racewrite���Ð�� runtime.raceread���°��"runtime.racewrite���Ü�� runtime.raceread���¼��"runtime.racewrite���è�� runtime.raceread���Ú��,runtime.racewriterange���¬� runtime.duffcopy���Ê��4go.itab.*"".YCbCr."".Image���’��(runtime.racefuncexit���°��type.*"".YCbCr���Æ��type."".Image���Þ��4go.itab.*"".YCbCr."".Image���ò�� runtime.typ2Itab���Ú��$runtime.panicslice���€��$runtime.panicslice���¦��$runtime.panicslice���p€��4"".autotmp_0891��type.*uint8�"".autotmp_0890��type.uint64�"".autotmp_0889��type.uint64�"".autotmp_0888��type.uint64�"".autotmp_0887��type.uint64�"".autotmp_0886��type.uint64�"".autotmp_0885��type.uint64�"".autotmp_0884�ÿtype.uint64�"".autotmp_0883�ïtype.uint64�"".autotmp_0882�ßtype.uint64�"".autotmp_0881��type.*"".YCbCr�"".autotmp_0880��type.int�"".autotmp_0877�?type.*"".YCbCr�"".autotmp_0875��type.*"".YCbCr�"".autotmp_0874��type.int�"".autotmp_0873��type.*"".YCbCr�"".autotmp_0872�"type."".Rectangle�"".y�¯type.int�"".x�Ÿtype.int�"".p�Otype.*"".YCbCr�"".r�Ï"type."".Rectangle�
"".ci�type.int�
"".yi�¿type.int� "".~r1�Ptype."".Image�"".r�"type."".Rectangle�"".p��type.*"".YCbCr�*)€Øÿ€Ò
ÿ€›�ð�¨ÎR‘W£- œ5 q s €
y€((p'(-( 
  �6�5¯‘0OŠ8’04D�Tgclocals·2a24b925de47e6af398f4500cd782a35�Tgclocals·c4d490826610b32d5111d57f926afcb9���0c:/go/src/image/ycbcr.goþ$"".(*YCbCr).Opaque��€��|eH‹ %(���H‹‰����H;awè����ëãHƒìH‹\$H‰$è����ÆD$è����HƒÄÃ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���j��(runtime.racefuncexit��� �� "".~r0�type.bool�"".p��type.*"".YCbCr�!�@� ü!��*
 �Tgclocals·cf86db206769ec68369d07e260728f65�Tgclocals·0115f8d53b75c1696444f08ad03251d9���0c:/go/src/image/ycbcr.goþ"".NewYCbCr��à��ÂeH‹ %(���H‹‰����HD$ H;Awè����ëÞHìà���H‹œ$à���H‰$è����Hœ$è���Hl$hH‰ïH‰Þè����H‹T$xH‹|$hH)úHœ$è���H¼$ˆ���H‰Þè����H‹„$ ���H‹¬$���H)èH‰ÖH‰ÂH‹„$��Hƒø…��H‹œ$ø���HÿÃL‹„$è���H‰ÙHÁû?H)ÙHÑùL‰ÅHÁý?I)èL‰ÅHÑýH)éH‰ÐH‰óH‰t$0H‰T$8H¯ÚH‰ÍH‰L$@HÑåH‰D$HH¯èHëH‰ØH����H‰$H‰D$H‰D$è����H‹T$H‹L$ H‹D$(H‰”$°���H‰Œ$¸���H‰„$À���H����H‰$è����H‹T$H‹D$0H‹l$8H‹Œ$À���H¯ÅH‰L$`H‰D$XH9Á‚��H‰”$¨���H‰$è����H‹œ$¨���H‰$Hƒ<$�„ç��H‹¬$°���H‹L$XH‹T$`H‰¬$È���H‰l$H‰Œ$Ð���H‰L$H‰”$Ø���H‰T$è����H‹L$0H‹D$8H‹l$@L‹D$HH‹”$À���H‰ËH¯ÈHƒÁ�H¯ØI¯èHëH‰T$XH9Ú‚b��H‰\$`H‰L$PH9Ë‚O��H‹œ$¨���H‰$Hƒ$è����H‹T$PH‹œ$¨���H‰$Hƒ<$�„��Hƒ$H‹„$°���H‹t$`H‹L$XH)ÖH)ÑHƒù�t H‰ÓHÃH‰ØH‰„$È���H‰D$H‰´$Ð���H‰t$H‰Œ$Ø���H‰L$è����H‹L$0H‹t$8H‹l$@H‹D$HH‰ËH¯ÎH‰êH¯èHéH¯ÞH‰ÕH‹”$À���HÑåH¯èHëH‰T$PH9Ú‚f��H‰\$`H‰L$XH9Ë‚S��H‹œ$¨���H‰$Hƒ$0è����H‹t$XH‹œ$¨���H‰$Hƒ<$�„��Hƒ$0H‹„$°���H‹|$`H‹T$PH)÷H)òHƒú�t H‰óHÃH‰ØH‰„$È���H‰D$H‰¼$Ð���H‰|$H‰”$Ø���H‰T$è����H‹œ$¨���H‰$Hƒ$Xè����H‹„$¨���H‹¬$��H‰hXH‰$Hƒ$Hè����H‹„$¨���H‹l$0H‰hHH‰$Hƒ$Pè����H‹„$¨���H‹l$@H‰hPH‰$Hƒ$`HÇD$ ���è����H‹„$¨���Hƒø�t,Hh`Hœ$è���H‰ïH‰Þè����H‰„$��è����HÄà���É�ëЉ%����éßþÿÿè���� ‰%����éãýÿÿè���� ‰%����é ýÿÿè���� HƒøukH‹œ$ø���HÿÃL‹„$è���H‰ÙHÁû?H)ÙH‹œ$���HÑùL‰ÅHÁý?I)èL‰ÅHÑýH)éHÿÃL‹„$ð���H‰ØHÁû?H)ØHÑøL‰ÅHÁý?I)èL‰ÅHÑýH)èéÃûÿÿHƒøu;H‹œ$���H‰ñHÿÃL‹„$ð���H‰ØHÁû?H)ØHÑøL‰ÅHÁý?I)èL‰ÅHÑýH)èé‚ûÿÿH‰ñH‰Ðéwûÿÿ0������8��0runtime.morestack_noctxt���l��*runtime.racefuncenter���œ� runtime.duffcopy���æ� runtime.duffcopy���Œ��type.[]uint8���²��"runtime.makeslice���Ž��type."".YCbCr��� ��"runtime.newobject���ž��"runtime.racewrite���È��2runtime.writebarrierslice���š ��"runtime.racewrite���‚ ��2runtime.writebarrierslice���ì ��"runtime.racewrite���Ô��2runtime.writebarrierslice���€��"runtime.racewrite���Ä��"runtime.racewrite���‚��"runtime.racewrite���Ò��,runtime.racewriterange���œ� runtime.duffcopy���¶��(runtime.racefuncexit���ð��$runtime.panicslice���–��$runtime.panicslice���¼��$runtime.panicslice���`À��H"".autotmp_0934��type.uint64�"".autotmp_0933��type.uint64�"".autotmp_0932��type.uint64�"".autotmp_0931��type.int�"".autotmp_0930��type.int�"".autotmp_0929�Ÿtype.uint64�"".autotmp_0928��type.uint64�"".autotmp_0927��type.uint64�"".autotmp_0926��type.int�"".autotmp_0925��type.int�"".autotmp_0924�type.uint64�"".autotmp_0923�ÿtype.uint64�"".autotmp_0922��type.int�"".autotmp_0921�otype.*"".YCbCr�"".autotmp_0920��type.int�"".autotmp_0919��type.int�"".autotmp_0918��type.int�"".autotmp_0917��type.int�"".autotmp_0916��type.int�"".autotmp_0915��type.int�"".autotmp_0914��type.int�"".autotmp_0913��type.int�"".autotmp_0912��type.int�"".autotmp_0909��type.int�"".autotmp_0908��type.int�"".autotmp_0906�/type.[]uint8�"".r�¯"type."".Rectangle�"".r�ï"type."".Rectangle�"".b�_type.[]uint8�
"".ch�¯type.int�
"".cw�¿type.int�"".h�Ïtype.int�"".w�ßtype.int� "".~r2�Ptype.*"".YCbCr�""".subsampleRatio�@6type."".YCbCrSubsampleRatio�"".r��"type."".Rectangle�)À½¿À‰�ð
�˜†)41V
3l : _ d
ƒf“ 
++ �&�5š?›±ù�Tgclocals·3bca9fd3d2a139fc2022d0a9bbf6274a�Tgclocals·0710c93e2d2b13c7901141f652c8613e���0c:/go/src/image/ycbcr.goþ"".init��à ��Ì eH‹ %(���H‹‰����H;awè����ëãHƒìHH‹\$HH‰$è����H����H‰$è����¶����€û�t-H����H‰$è����¶����€ûu
è����HƒÄHÃè���� H����H‰$è����Æ����è����è����è����è����H����H,$H‰ïH‰ÞH¥H¥è����H‹\$H‰\$8H‹\$H‰\$@H����H‰$è����H����H‰$H‹\$8H‰\$H‹\$@H‰\$è����H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ H,$H‰ïH‰ÞH¥H¥è����H‹\$H‰\$0H����H‰$è����H����H‰$H‹\$0H‰\$è����H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ H,$H‰ïH‰ÞH¥H¥è����H‹\$H‰\$0H����H‰$è����H����H‰$H‹\$0H‰\$è����H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ H,$H‰ïH‰ÞH¥H¥è����H‹\$H‰\$0H����H‰$è����H����H‰$H‹\$0H‰\$è����H����H‰$H����H‰\$H����H‰\$H����H‰\$è����H\$ H,$H‰ïH‰ÞH¥H¥è����H‹\$H‰\$0H����H‰$è����H����H‰$H‹\$0H‰\$è����H����H‰$è����Æ����è����HƒÄHÈ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���d��"".initdone·���v�� runtime.raceread���„��"".initdone·���œ��"".initdone·���®�� runtime.raceread���¼��"".initdone·���Ð��(runtime.racefuncexit���ä��"runtime.throwinit���ö��"".initdone·���ˆ��"runtime.racewrite���”�"".initdone·��� �� image/color.init���ª��strconv.init���´��io.init���¾��bufio.init���Ì��Bgo.string."image: unknown format"���ò��errors.New���¨��"".ErrFormat���º��"runtime.racewrite���È��"".ErrFormat���‚��2runtime.writebarrieriface�����.type.image/color.Gray16���¦��,type.image/color.Color���¾��Xgo.itab.image/color.Gray16.image/color.Color���Ö��"image/color.Black���ê��runtime.convT2I���š��"".NewUniform���¼��"".Black���Î��"runtime.racewrite���Ü��"".Black���‚��.runtime.writebarrierptr�����.type.image/color.Gray16���¦��,type.image/color.Color���¾��Xgo.itab.image/color.Gray16.image/color.Color���Ö��"image/color.White���ê��runtime.convT2I���š��"".NewUniform���¼��"".White���Î��"runtime.racewrite���Ü��"".White���‚��.runtime.writebarrierptr�����0type.image/color.Alpha16���¦��,type.image/color.Color���¾��Zgo.itab.image/color.Alpha16.image/color.Color���Ö��.image/color.Transparent���ê��runtime.convT2I���š ��"".NewUniform���¼ ��"".Transparent���Î ��"runtime.racewrite���Ü ��"".Transparent���‚
��.runtime.writebarrierptr���
��0type.image/color.Alpha16���¦
��,type.image/color.Color���¾
��Zgo.itab.image/color.Alpha16.image/color.Color���Ö
��$image/color.Opaque���ê
��runtime.convT2I���š ��"".NewUniform���¼ ��"".Opaque���Î ��"runtime.racewrite���Ü ��"".Opaque���‚ ��.runtime.writebarrierptr��� ��"".initdone·���¢ ��"runtime.racewrite���® �"".initdone·���º ��(runtime.racefuncexit������
"".autotmp_0951�� type.*"".Uniform�"".autotmp_0950�� type.*"".Uniform�"".autotmp_0949�� type.*"".Uniform�"".autotmp_0948�/ type.*"".Uniform�"".autotmp_0947�type.error� !O´ �£b€+�.¼£b€€€€”+�4�*²$ffff0�Tgclocals·73423680ca5f2d7df4fe760a82d507fb�Tgclocals·e4de8e0b69ee4dd6c2285b2decd0f6ec���0c:/go/src/image/ycbcr.go2c:/go/src/image/format.go0c:/go/src/image/names.goþ"".Image.At�à��ÎeH‹ %(���H‹‰����H;awè����ëãHƒì8H‹Y H…Ût H|$@H9;uH‰#H‹\$8H‰$è����HÇD$`����HÇD$h����H‹\$PH‰\$H‹\$XH‰\$H‹\$HH‰$H‹\$@H‹[ ÿÓH‹L$H‹D$ H‰L$(H‰L$`H‰D$0H‰D$hè����HƒÄ8Ã
������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���ú�
������¼��(runtime.racefuncexit���`p��
"".autotmp_0952�,type.image/color.Color� "".~r2�@,type.image/color.Color�"".y�0type.int�"".x� type.int�""..this��type."".Image�!p…o
�°�°��@]�Tgclocals·3bc6fbe3302b9693f624ee9c9bf384a0�Tgclocals·a310211a5d93ca643985188646602d0e���<autogenerated>þ"".Image.Bounds�À��²eH‹ %(���H‹‰����H;awè����ëãHƒìHH‹Y H…Ût H|$PH9;uH‰#H‹\$HH‰$è����H|$`1Àè����H‹\$XH‰$H‹\$PH‹[(ÿÓH\$Hl$(H‰ïH‰Þè����H\$(Hl$`H‰ïH‰Þè����è����HƒÄHÃ������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���šð� runtime.duffzero���Æ�
������ì� runtime.duffcopy���–� runtime.duffcopy��� ��(runtime.racefuncexit���`��"".autotmp_0953�?"type."".Rectangle� "".~r0� "type."".Rectangle�""..this��type."".Image�!w� � ��@O�Tgclocals·00644cd315d467a44ad54125dd31bea5�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ&"".Image.ColorModel�À��¦eH‹ %(���H‹‰����H;awè����ëãHƒì(H‹Y H…Ût H|$0H9;uH‰#H‹\$(H‰$è����HÇD$@����HÇD$H����H‹\$8H‰$H‹\$0H‹[0ÿÓH‹L$H‹D$H‰L$H‰L$@H‰D$ H‰D$Hè����HƒÄ(Ã
������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���Ò�
������”��(runtime.racefuncexit���@P��"".autotmp_0954�,type.image/color.Model� "".~r0� ,type.image/color.Model�""..this��type."".Image�!PqO� � ��@I�Tgclocals·dc29d72f6585636b1615fc65f41da45f�Tgclocals·a310211a5d93ca643985188646602d0e���<autogenerated>þ$"".(*Point).String� ��’eH‹ %(���H‹‰����H;awè����ëãHƒì@H‹Y H…Ût H|$HH9;uH‰#H‹\$@H‰$è����HÇD$P����HÇD$X����H‹\$H1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$HH‰$HÇD$���è����H‹t$HHƒþ�t8H,$H‰ïH¥H¥è����H‹L$H‹D$H‰L$0H‰L$PH‰D$8H‰D$Xè����HƒÄ@ÉëÄ������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���Ì��"go.string."image"���ö��"go.string."Point"���¢��$go.string."String"���Ê��"runtime.panicwrap���ü��*runtime.racereadrange���²��"".Point.String���ø��(runtime.racefuncexit���0€��"".autotmp_0955�type.string� "".~r0�type.string�""..this��type.*"".Point�!€ã€ ��
��@»�Tgclocals·521d2fa12a56ba961a59b2852d682dbc�Tgclocals·a310211a5d93ca643985188646602d0e���<autogenerated>þ"".(*Point).Add�€��þeH‹ %(���H‹‰����H;awè����ëãHƒìpH‹Y H…Ût H|$xH9;uH‰#H‹\$pH‰$è����HDŽ$�������HDŽ$˜�������H‹\$x1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$xH‰$HÇD$���è����H‹\$xHƒû�thH‹3H‹SH‹Œ$€���H‹„$ˆ���H‰óH‰t$PH‰L$@HËH‰ÙH‰ÓH‰T$XH‰D$HHÃH‰L$`H‰\$hH‰L$0H‰Œ$���H‰\$8H‰œ$˜���è����HƒÄpÉë”������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���Ø��"go.string."image"���‚��"go.string."Point"���®��go.string."Add"���Ö��"runtime.panicwrap���ˆ��*runtime.racereadrange���ä��(runtime.racefuncexit���Pà��"".autotmp_0956�type."".Point� "".~r1�type."".Point�"".q�_type."".Point�"".p�?type."".Point� "".~r1�0type."".Point�"".q�type."".Point�""..this��type.*"".Point�!à™ßà�À� À��@ñ�Tgclocals·660dfebf754287f432184ddb1d573833�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ"".(*Point).Sub�€��þeH‹ %(���H‹‰����H;awè����ëãHƒìpH‹Y H…Ût H|$xH9;uH‰#H‹\$pH‰$è����HDŽ$�������HDŽ$˜�������H‹\$x1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$xH‰$HÇD$���è����H‹\$xHƒû�thH‹3H‹SH‹Œ$€���H‹„$ˆ���H‰óH‰t$PH‰L$@H)ËH‰ÙH‰ÓH‰T$XH‰D$HH)ÃH‰L$`H‰\$hH‰L$0H‰Œ$���H‰\$8H‰œ$˜���è����HƒÄpÉë”������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���Ø��"go.string."image"���‚��"go.string."Point"���®��go.string."Sub"���Ö��"runtime.panicwrap���ˆ��*runtime.racereadrange���ä��(runtime.racefuncexit���Pà��"".autotmp_0957�type."".Point� "".~r1�type."".Point�"".q�_type."".Point�"".p�?type."".Point� "".~r1�0type."".Point�"".q�type."".Point�""..this��type.*"".Point�!à™ßà�À�À��@ñ�Tgclocals·660dfebf754287f432184ddb1d573833�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ"".(*Point).Mul�à��ÌeH‹ %(���H‹‰����H;awè����ëãHƒì`H‹Y H…Ût H|$hH9;uH‰#H‹\$`H‰$è����HÇD$x����HDŽ$€�������H‹\$h1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$hH‰$HÇD$���è����H‹\$hHƒû�tRH‹ H‹SH‹D$pH‰ËH‰L$@H¯ØH‰ÙH‰ÓH‰T$HH¯ØH‰L$PH‰\$XH‰L$0H‰L$xH‰\$8H‰œ$€���è����HƒÄ`Éëª������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���Ò��"go.string."image"���ü��"go.string."Point"���¨��go.string."Mul"���Ð��"runtime.panicwrap���‚��*runtime.racereadrange���²��(runtime.racefuncexit���@À�� "".autotmp_0958�type."".Point� "".~r1�_type."".Point�"".p�?type."".Point� "".~r1� type."".Point�"".k�type.int�""..this��type.*"".Point�!À€¿À�°�°��@Ø�Tgclocals·cd56180dcb3dc91ea7de5ea59bbcd428�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ"".(*Point).Div� ��ŽeH‹ %(���H‹‰����H;awè����ëãHƒì`H‹Y H…Ût H|$hH9;uH‰#H‹\$`H‰$è����HÇD$x����HDŽ$€�������H‹\$h1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$hH‰$HÇD$���è����H‹\$hHƒû�tsH‹H‹{H‹L$pH‰D$@HƒùÿtTH™H÷ùH‰ÃH‰ÞH‰|$HH‰øHƒùÿt3H™H÷ùH‰ÃH‰t$PH‰\$XH‰t$0H‰t$xH‰\$8H‰œ$€���è����HƒÄ`ÃH÷ØH‰ÃëÍH÷ØH‰Ã묉ë‰������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���Ò��"go.string."image"���ü��"go.string."Point"���¨��go.string."Div"���Ð��"runtime.panicwrap���‚��*runtime.racereadrange���Ô��(runtime.racefuncexit���@À�� "".autotmp_0959�type."".Point� "".~r1�_type."".Point�"".p�?type."".Point� "".~r1� type."".Point�"".k�type.int�""..this��type.*"".Point�!À‘¿À�Ð�Ð��@é'�Tgclocals·cd56180dcb3dc91ea7de5ea59bbcd428�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ"".(*Point).In�à��ÌeH‹ %(���H‹‰����H;awè����ëãHƒì`H‹Y H…Ût H|$hH9;uH‰#H‹\$`H‰$è����H‹\$h1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$hH‰$HÇD$���è����H‹t$hHƒþ�tgH‹H‹FH‰D$8Ht$pHl$@H‰ïè����H‹\$@H‰T$0H9Ó6H‹l$PH9ê},H‹\$HH9Ã"H‹l$XH9è}HÇÀ���ˆ„$���è����HƒÄ`Ã1Àëë‰ë•������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���¨��"go.string."image"���Ò��"go.string."Point"���þ��go.string."In"���¦��"runtime.panicwrap���Ø��*runtime.racereadrange���ª� runtime.duffcopy���ª��(runtime.racefuncexit���`À��
"".r�?"type."".Rectangle�"".p�_type."".Point� "".~r1�Ptype.bool�"".r�"type."".Rectangle�""..this��type.*"".Point�!Àü¿À�°�°��@Ô�Tgclocals·70d3daffdf749070f7b06adf93601bff�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ"".(*Point).Mod�à��ÔeH‹ %(���H‹‰����H;awè����ëãHƒìPH‹Y H…Ût H|$XH9;uH‰#H‹\$PH‰$è����HDŽ$€�������HDŽ$ˆ�������H‹\$X1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$XH‰$HÇD$���è����H‹t$XHƒþ�tSH,$H‰ïH¥H¥H\$`Hl$H‰ïH‰Þè����è����H‹L$0H‹D$8H‰L$@H‰Œ$€���H‰D$HH‰„$ˆ���è����HƒÄPÉë©������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���Ø��"go.string."image"���‚��"go.string."Point"���®��go.string."Mod"���Ö��"runtime.panicwrap���ˆ��*runtime.racereadrange���ސ� runtime.duffcopy���è��"".Point.Mod���º��(runtime.racefuncexit���p ��"".autotmp_0961�type."".Point� "".~r1�Ptype."".Point�"".r�"type."".Rectangle�""..this��type.*"".Point�! „Ÿ 
�°�°��@Ü�Tgclocals·7fe5812befed2e9301fced72f2318788�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ"".(*Point).Eq� ��ŽeH‹ %(���H‹‰����H;awè����ëãHƒìPH‹Y H…Ût H|$XH9;uH‰#H‹\$PH‰$è����H‹\$X1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$XH‰$HÇD$���è����H‹\$XHƒû�tHH‹3H‹SH‰T$HH‹L$`H‹D$hH‰D$8H‰t$@H‰L$0H9ÎuH9ÂuHÇÀ���ˆD$pè����HƒÄPÃ1Àëî‰ë´������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���¨��"go.string."image"���Ò��"go.string."Point"���þ��go.string."Eq"���¦��"runtime.panicwrap���Ø��*runtime.racereadrange���ì��(runtime.racefuncexit���@ ��
"".q�?type."".Point�"".p�type."".Point� "".~r1�0type.bool�"".q�type."".Point�""..this��type.*"".Point�! ÝŸ ����@µ�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ,"".(*Rectangle).String� ��”eH‹ %(���H‹‰����H;awè����ëãHƒì@H‹Y H…Ût H|$HH9;uH‰#H‹\$@H‰$è����HÇD$P����HÇD$X����H‹\$H1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$HH‰$HÇD$ ���è����H‹t$HHƒþ�t9H,$H‰ïè����è����H‹L$ H‹D$(H‰L$0H‰L$PH‰D$8H‰D$Xè����HƒÄ@ÉëÃ������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���Ì��"go.string."image"���ö��*go.string."Rectangle"���¢��$go.string."String"���Ê��"runtime.panicwrap���ü��*runtime.racereadrange���ª� runtime.duffcopy���´��&"".Rectangle.String���ú��(runtime.racefuncexit���0€��"".autotmp_0963�type.string� "".~r0�type.string�""..this��$type.*"".Rectangle�!€ä€
����@¼�Tgclocals·521d2fa12a56ba961a59b2852d682dbc�Tgclocals·a310211a5d93ca643985188646602d0e���<autogenerated>þ$"".(*Rectangle).Dx�à��ÐeH‹ %(���H‹‰����H;awè����ëãHƒìPH‹Y H…Ût H|$XH9;uH‰#H‹\$PH‰$è����H‹\$X1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$XH‰$HÇD$ ���è����H‹t$XHƒþ�t)Hl$0H‰ïè����H‹\$@H‹l$0H)ëH‰\$`è����HƒÄPÉëÓ������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���¨��"go.string."image"���Ò��*go.string."Rectangle"���þ��go.string."Dx"���¦��"runtime.panicwrap���Ø��*runtime.racereadrange���ˆ� runtime.duffcopy���¶��(runtime.racefuncexit���  ��"".r�?"type."".Rectangle� "".~r0�type.int�""..this��$type.*"".Rectangle�! ÂŸ  �ð�ð��@š�Tgclocals·cf86db206769ec68369d07e260728f65�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ$"".(*Rectangle).Dy�à��ÐeH‹ %(���H‹‰����H;awè����ëãHƒìPH‹Y H…Ût H|$XH9;uH‰#H‹\$PH‰$è����H‹\$X1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$XH‰$HÇD$ ���è����H‹t$XHƒþ�t)Hl$0H‰ïè����H‹\$HH‹l$8H)ëH‰\$`è����HƒÄPÉëÓ������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���¨��"go.string."image"���Ò��*go.string."Rectangle"���þ��go.string."Dy"���¦��"runtime.panicwrap���Ø��*runtime.racereadrange���ˆ� runtime.duffcopy���¶��(runtime.racefuncexit���  ��"".r�?"type."".Rectangle� "".~r0�type.int�""..this��$type.*"".Rectangle�! ÂŸ  �ð�ð��@š�Tgclocals·cf86db206769ec68369d07e260728f65�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ("".(*Rectangle).Size�à��ØeH‹ %(���H‹‰����H;awè����ëãHƒìpH‹Y H…Ût H|$xH9;uH‰#H‹\$pH‰$è����HDŽ$€�������HDŽ$ˆ�������H‹\$x1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$xH‰$HÇD$ ���è����H‹t$xHƒþ�tUHl$PH‰ïè����H‹L$`H‹l$PH‹D$hH)éH‹l$XH)èH‰L$@H‰D$HH‰L$0H‰Œ$€���H‰D$8H‰„$ˆ���è����HƒÄpÉë§������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���Ø��"go.string."image"���‚��*go.string."Rectangle"���®�� go.string."Size"���Ö��"runtime.panicwrap���ˆ��*runtime.racereadrange���¸� runtime.duffcopy���¾��(runtime.racefuncexit���0à��
"".autotmp_0966�_type."".Point� "".~r0�type."".Point�"".r�?"type."".Rectangle� "".~r0�type."".Point�""..this��$type.*"".Rectangle�!à†ßà�°� °��@Þ�Tgclocals·0c1de6f5863a411b332163addfd6db93�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ&"".(*Rectangle).Add�à��àeH‹ %(���H‹‰����H;awè����ëãHƒìpH‹Y H…Ût H|$xH9;uH‰#H‹\$pH‰$è����H¼$���1Àè����H‹\$x1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$xH‰$HÇD$ ���è����H‹t$xHƒþ�tbH,$H‰ïè����H‹œ$€���H‰\$ H‹œ$ˆ���H‰\$(è����H\$0Hl$PH‰ïH‰Þè����H\$PH¬$���H‰ïH‰Þè����è����HƒÄpÉëš������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter��� ð� runtime.duffzero���Æ��"go.string."image"���ð��*go.string."Rectangle"���œ��go.string."Add"���Ä��"runtime.panicwrap���ö��*runtime.racereadrange���¤� runtime.duffcopy���â�� "".Rectangle.Add���Œ� runtime.duffcopy���¼� runtime.duffcopy���Æ��(runtime.racefuncexit���pà��"".autotmp_0967�?"type."".Rectangle� "".~r1�0"type."".Rectangle�"".p�type."".Point�""..this��$type.*"".Rectangle�!àŠßà�°�"°��@â�Tgclocals·09d94b3b83dee62c00632c4d5a94784b�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ&"".(*Rectangle).Sub�à��àeH‹ %(���H‹‰����H;awè����ëãHƒìpH‹Y H…Ût H|$xH9;uH‰#H‹\$pH‰$è����H¼$���1Àè����H‹\$x1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$xH‰$HÇD$ ���è����H‹t$xHƒþ�tbH,$H‰ïè����H‹œ$€���H‰\$ H‹œ$ˆ���H‰\$(è����H\$0Hl$PH‰ïH‰Þè����H\$PH¬$���H‰ïH‰Þè����è����HƒÄpÉëš������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter��� ð� runtime.duffzero���Æ��"go.string."image"���ð��*go.string."Rectangle"���œ��go.string."Sub"���Ä��"runtime.panicwrap���ö��*runtime.racereadrange���¤� runtime.duffcopy���â�� "".Rectangle.Sub���Œ� runtime.duffcopy���¼� runtime.duffcopy���Æ��(runtime.racefuncexit���pà��"".autotmp_0968�?"type."".Rectangle� "".~r1�0"type."".Rectangle�"".p�type."".Point�""..this��$type.*"".Rectangle�!àŠßà�°�$°��@â�Tgclocals·09d94b3b83dee62c00632c4d5a94784b�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ*"".(*Rectangle).Inset�À��ÀeH‹ %(���H‹‰����H;awè����ëãHƒìhH‹Y H…Ût H|$pH9;uH‰#H‹\$hH‰$è����H¼$€���1Àè����H‹\$p1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$pH‰$HÇD$ ���è����H‹t$pHƒþ�tRH,$H‰ïè����H‹\$xH‰\$ è����H\$(Hl$HH‰ïH‰Þè����H\$HH¬$€���H‰ïH‰Þè����è����HƒÄhÉëª������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter��� ð� runtime.duffzero���Æ��"go.string."image"���ð��*go.string."Rectangle"���œ��"go.string."Inset"���Ä��"runtime.panicwrap���ö��*runtime.racereadrange���¤� runtime.duffcopy���Â��$"".Rectangle.Inset���ì� runtime.duffcopy���œ� runtime.duffcopy���¦��(runtime.racefuncexit���`Ð��"".autotmp_0969�?"type."".Rectangle� "".~r1� "type."".Rectangle�"".n�type.int�""..this��$type.*"".Rectangle�!ÐúÏÐ� �& ��@Ò�Tgclocals·b0485f3f9710e2b302adf458724207b0�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ2"".(*Rectangle).Intersect� ��†eH‹ %(���H‹‰����H;awè����ëãHì€���H‹Y H…ÛtH¼$ˆ���H9;uH‰#H‹œ$€���H‰$è����H¼$°���1Àè����H‹œ$ˆ���1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹œ$ˆ���H‰$HÇD$ ���è����H‹´$ˆ���Hƒþ�tcH,$H‰ïè����Hœ$���Hl$ H‰ïH‰Þè����è����H\$@Hl$`H‰ïH‰Þè����H\$`H¬$°���H‰ïH‰Þè����è����HÄ€���Éë™������.��0runtime.morestack_noctxt���”��*runtime.racefuncenter���²ð� runtime.duffzero���Þ��"go.string."image"���ˆ��*go.string."Rectangle"���´��*go.string."Intersect"���Ü��"runtime.panicwrap���”��*runtime.racereadrange���Ȑ� runtime.duffcopy���ø� runtime.duffcopy���‚��,"".Rectangle.Intersect���¬� runtime.duffcopy���ܐ� runtime.duffcopy���æ��(runtime.racefuncexit���€��"".autotmp_0970�?"type."".Rectangle� "".~r1�P"type."".Rectangle�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�$€šÿ€�Ð�(Ð��Ié�Tgclocals·96bccb0148dea313d31967fdae869127�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ*"".(*Rectangle).Union� ��†eH‹ %(���H‹‰����H;awè����ëãHì€���H‹Y H…ÛtH¼$ˆ���H9;uH‰#H‹œ$€���H‰$è����H¼$°���1Àè����H‹œ$ˆ���1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹œ$ˆ���H‰$HÇD$ ���è����H‹´$ˆ���Hƒþ�tcH,$H‰ïè����Hœ$���Hl$ H‰ïH‰Þè����è����H\$@Hl$`H‰ïH‰Þè����H\$`H¬$°���H‰ïH‰Þè����è����HÄ€���Éë™������.��0runtime.morestack_noctxt���”��*runtime.racefuncenter���²ð� runtime.duffzero���Þ��"go.string."image"���ˆ��*go.string."Rectangle"���´��"go.string."Union"���Ü��"runtime.panicwrap���”��*runtime.racereadrange���Ȑ� runtime.duffcopy���ø� runtime.duffcopy���‚��$"".Rectangle.Union���¬� runtime.duffcopy���ܐ� runtime.duffcopy���æ��(runtime.racefuncexit���€��"".autotmp_0971�?"type."".Rectangle� "".~r1�P"type."".Rectangle�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�$€šÿ€�Ð�*Ð��Ié�Tgclocals·96bccb0148dea313d31967fdae869127�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ*"".(*Rectangle).Empty� ��†eH‹ %(���H‹‰����H;awè����ëãHƒìPH‹Y H…Ût H|$XH9;uH‰#H‹\$PH‰$è����H‹\$X1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$XH‰$HÇD$ ���è����H‹t$XHƒþ�tDHl$0H‰ïè����H‹\$0H‹l$@H9ë}H‹\$8H‹l$HH9ë}1ÀˆD$`è����HƒÄPÃHÇÀ���ëé‰ë¸������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���¨��"go.string."image"���Ò��*go.string."Rectangle"���þ��"go.string."Empty"���¦��"runtime.panicwrap���Ø��*runtime.racereadrange���ˆ� runtime.duffcopy���Ú��(runtime.racefuncexit���  ��"".r�?"type."".Rectangle� "".~r0�type.bool�""..this��$type.*"".Rectangle�! ÔŸ ��,��@¬$�Tgclocals·cf86db206769ec68369d07e260728f65�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ$"".(*Rectangle).Eq�€��ðeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹Y H…Ût H|$PH9;uH‰#H‹\$HH‰$è����H‹\$P1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$PH‰$HÇD$ ���è����H‹t$PHƒþ�t9H,$H‰ïè����H\$XHl$ H‰ïH‰Þè����è����¶\$@ˆ\$xè����HƒÄHÉëÃ������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���¨��"go.string."image"���Ò��*go.string."Rectangle"���þ��go.string."Eq"���¦��"runtime.panicwrap���Ø��*runtime.racereadrange���†� runtime.duffcopy���°� runtime.duffcopy���º��"".Rectangle.Eq���Ö��(runtime.racefuncexit���`�� "".~r1�Ptype.bool�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�!Ò �€�.€��@ª�Tgclocals·70d3daffdf749070f7b06adf93601bff�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ0"".(*Rectangle).Overlaps�€��ðeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹Y H…Ût H|$PH9;uH‰#H‹\$HH‰$è����H‹\$P1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$PH‰$HÇD$ ���è����H‹t$PHƒþ�t9H,$H‰ïè����H\$XHl$ H‰ïH‰Þè����è����¶\$@ˆ\$xè����HƒÄHÉëÃ������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���¨��"go.string."image"���Ò��*go.string."Rectangle"���þ��(go.string."Overlaps"���¦��"runtime.panicwrap���Ø��*runtime.racereadrange���†� runtime.duffcopy���°� runtime.duffcopy���º��*"".Rectangle.Overlaps���Ö��(runtime.racefuncexit���`�� "".~r1�Ptype.bool�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�!Ò �€�0€��@ª�Tgclocals·70d3daffdf749070f7b06adf93601bff�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ$"".(*Rectangle).In�€��ðeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹Y H…Ût H|$PH9;uH‰#H‹\$HH‰$è����H‹\$P1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$PH‰$HÇD$ ���è����H‹t$PHƒþ�t9H,$H‰ïè����H\$XHl$ H‰ïH‰Þè����è����¶\$@ˆ\$xè����HƒÄHÉëÃ������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���¨��"go.string."image"���Ò��*go.string."Rectangle"���þ��go.string."In"���¦��"runtime.panicwrap���Ø��*runtime.racereadrange���†� runtime.duffcopy���°� runtime.duffcopy���º��"".Rectangle.In���Ö��(runtime.racefuncexit���`�� "".~r1�Ptype.bool�"".s�"type."".Rectangle�""..this��$type.*"".Rectangle�!Ò �€�2€��@ª�Tgclocals·70d3daffdf749070f7b06adf93601bff�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ*"".(*Rectangle).Canon� �� eH‹ %(���H‹‰����H;awè����ëãHƒì`H‹Y H…Ût H|$hH9;uH‰#H‹\$`H‰$è����H|$p1Àè����H‹\$h1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$hH‰$HÇD$ ���è����H‹t$hHƒþ�tEH,$H‰ïè����è����H\$ Hl$@H‰ïH‰Þè����H\$@Hl$pH‰ïH‰Þè����è����HƒÄ`Éë·������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���šð� runtime.duffzero���À��"go.string."image"���ê��*go.string."Rectangle"���–��"go.string."Canon"���¾��"runtime.panicwrap���ð��*runtime.racereadrange���ž� runtime.duffcopy���¨��$"".Rectangle.Canon���Ґ� runtime.duffcopy���ü� runtime.duffcopy���†��(runtime.racefuncexit���PÀ��"".autotmp_0976�?"type."".Rectangle� "".~r0�"type."".Rectangle�""..this��$type.*"".Rectangle�!Àê¿À��4��@Â�Tgclocals·50a798c9d6a789f8ff12a130568a080f�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ(type..hash."".Config�€��èeH‹ %(���H‹‰����H;awè����ëãHƒì H‹\$ H‰$è����H‹\$(H‰$Hƒ<$�tlHÇD$���H‹\$8H‰\$è����H‹D$H‹\$(H‰$Hƒ<$�t6Hƒ$HÇD$���H‰D$8H‰D$è����H‹D$H‰D$8H‰D$@è����HƒÄ É%����ëÁ‰%����ë‹ ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���¦��"runtime.interhash���Š��runtime.memhash���²��(runtime.racefuncexit���@@��
"".autotmp_0978��type.uintptr� "".~r3�0type.uintptr�"".h� type.uintptr�"".s�type.uintptr�"".p��type.*"".Config�!@€?@�À�À��*n(�Tgclocals·a11c21977d0c39648c83179d370ce4b8�Tgclocals·0115f8d53b75c1696444f08ad03251d9���2c:/go/src/image/format.goþ$type..eq."".Config� ��†eH‹ %(���H‹‰����H;awè����ëãHƒìHH‹\$HH‰$è����H‹\$XH‰$è����H‹\$XHƒû�„0��H‹+H‰l$8H‹kH‰l$@H‹\$PH‰$è����H‹T$8H‹\$PHƒû�„ö���H‹H‹KH‰L$0H‰D$(H9Ð…Í���H‰$H‰L$H‰T$H‹l$@H‰l$è����¶\$ €û�„¢���H‹\$PH‰$Hƒ$è����H‹\$XH‰$Hƒ$è����H‹D$PH‹XL‹D$XI‹hH9ëtÆD$h�è����HƒÄHÃH‰$Hƒ$è����H‹\$XH‰$Hƒ$è����H‹l$PH‹]L‹D$XI‹hH9ëtÆD$h�è����HƒÄHÃÆD$hè����HƒÄHÃÆD$h�è����HƒÄHÉéÿÿÿ‰éÉþÿÿ������.��0runtime.morestack_noctxt���V��*runtime.racefuncenter���r�� runtime.raceread���Î�� runtime.raceread���ä��runtime.ifaceeq���¦�� runtime.raceread���Ì�� runtime.raceread���Ž��(runtime.racefuncexit���´�� runtime.raceread���Ú�� runtime.raceread���œ��(runtime.racefuncexit���º��(runtime.racefuncexit���Ø��(runtime.racefuncexit���@�� "".autotmp_0980�?,type.image/color.Model�"".autotmp_0979�,type.image/color.Model� "".~r3�0type.bool�"".s� type.uintptr�"".q�type.*"".Config�"".p��type.*"".Config�>!îF����*<KU4C�Tgclocals·2bd0058e25364e522f9f24a53d6b8231�Tgclocals·b51ba4d3e5142d442245970ca6341da4���2c:/go/src/image/format.goþ"".reader.Peek� ��†eH‹ %(���H‹‰����H;awè����ëãHƒì`H‹Y H…Ût H|$hH9;uH‰#H‹\$`H‰$è����HDŽ$€�������HDŽ$ˆ�������HDŽ$�������HDŽ$˜�������HDŽ$ �������H‹\$xH‰\$H‹\$pH‰$H‹\$hH‹[ ÿÓH‹t$H‹l$H‹T$ H‹L$(H‹D$0H‰t$HH‰´$€���H‰l$PH‰¬$ˆ���H‰T$XH‰”$���H‰L$8H‰Œ$˜���H‰D$@H‰„$ ���è����HƒÄ`Ã
������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���º�
������ô��(runtime.racefuncexit���€À�� "".autotmp_0982�Otype.error�"".autotmp_0981�/type.[]uint8� "".~r2�`type.error� "".~r1�0type.[]uint8�""..anon0� type.int�""..this��type."".reader�!Àá¿��6��@¹�Tgclocals·80616be8a57129c27a30d411740f1c83�Tgclocals·ff5b0da9bb1a442d12997989bec519c8���<autogenerated>þ"".reader.Read� ��ŽeH‹ %(���H‹‰����H;awè����ëãHƒìHH‹Y H…Ût H|$PH9;uH‰#H‹\$HH‰$è����HDŽ$€�������HDŽ$ˆ�������H‹\$`H‰\$H‹\$hH‰\$H‹\$pH‰\$H‹\$XH‰$H‹\$PH‹[(ÿÓH‹D$ H‹T$(H‹L$0H‰D$xH‰T$8H‰”$€���H‰L$@H‰Œ$ˆ���è����HƒÄHÃ
������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���š�
������ü��(runtime.racefuncexit���€��
"".autotmp_0984�type.error� io.err�`type.error�io.n�Ptype.int�io.p� type.[]uint8�""..this��type."".reader�!¥
�Ð�8Ð��@}�Tgclocals·1d679e9c7c6c168fe3ba3a0285c2de28�Tgclocals·a310211a5d93ca643985188646602d0e���<autogenerated>þ@"".(*YCbCrSubsampleRatio).String��€��äeH‹ %(���H‹‰����H;awè����ëãHƒì@H‹Y H…Ût H|$HH9;uH‰#H‹\$@H‰$è����HÇD$P����HÇD$X����H‹\$H1íH9ëuHH����H,$H‰ïH‰ÞH¥H¥H����Hl$H‰ïH‰ÞH¥H¥H����Hl$ H‰ïH‰ÞH¥H¥è���� H‹\$HH‰$è����H‹\$HH‹+H‰,$è����H‹L$H‹D$H‰L$0H‰L$PH‰D$8H‰D$Xè����HƒÄ@Ã������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���Ì��"go.string."image"���ö��>go.string."YCbCrSubsampleRatio"���¢��$go.string."String"���Ê��"runtime.panicwrap���ê�� runtime.raceread���Œ��:"".YCbCrSubsampleRatio.String���Ò��(runtime.racefuncexit���0€��"".autotmp_0985�type.string� "".~r0�type.string�""..this��8type.*"".YCbCrSubsampleRatio�!€Ð�€�:€��@¨�Tgclocals·521d2fa12a56ba961a59b2852d682dbc�Tgclocals·a310211a5d93ca643985188646602d0e���<autogenerated>þ&"".PalettedImage.At�à��ÎeH‹ %(���H‹‰����H;awè����ëãHƒì8H‹Y H…Ût H|$@H9;uH‰#H‹\$8H‰$è����HÇD$`����HÇD$h����H‹\$PH‰\$H‹\$XH‰\$H‹\$HH‰$H‹\$@H‹[ ÿÓH‹L$H‹D$ H‰L$(H‰L$`H‰D$0H‰D$hè����HƒÄ8Ã
������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���ú�
������¼��(runtime.racefuncexit���`p��
"".autotmp_0986�,type.image/color.Color� "".~r2�@,type.image/color.Color�"".y�0type.int�"".x� type.int�""..this��*type."".PalettedImage�!p…o
�°�<°��@]�Tgclocals·3bc6fbe3302b9693f624ee9c9bf384a0�Tgclocals·a310211a5d93ca643985188646602d0e���<autogenerated>þ."".PalettedImage.Bounds�À��²eH‹ %(���H‹‰����H;awè����ëãHƒìHH‹Y H…Ût H|$PH9;uH‰#H‹\$HH‰$è����H|$`1Àè����H‹\$XH‰$H‹\$PH‹[(ÿÓH\$Hl$(H‰ïH‰Þè����H\$(Hl$`H‰ïH‰Þè����è����HƒÄHÃ������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���šð� runtime.duffzero���Æ�
������ì� runtime.duffcopy���–� runtime.duffcopy��� ��(runtime.racefuncexit���`��"".autotmp_0987�?"type."".Rectangle� "".~r0� "type."".Rectangle�""..this��*type."".PalettedImage�!w� �> ��@O�Tgclocals·00644cd315d467a44ad54125dd31bea5�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ:"".PalettedImage.ColorIndexAt�€��€eH‹ %(���H‹‰����H;awè����ëãHƒì H‹Y H…Ût H|$(H9;uH‰#H‹\$ H‰$è����H‹\$8H‰\$H‹\$@H‰\$H‹\$0H‰$H‹\$(H‹[0ÿÓ¶\$ˆ\$Hè����HƒÄ Ã
������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���Ö�
������î��(runtime.racefuncexit���P@�� "".~r2�@type.uint8�"".y�0type.int�"".x� type.int�""..this��*type."".PalettedImage�!@^?�€�@€��@6
�Tgclocals·178d074213b6ead6b40910ce12e0cee2�Tgclocals·0115f8d53b75c1696444f08ad03251d9���<autogenerated>þ6"".PalettedImage.ColorModel�À��¦eH‹ %(���H‹‰����H;awè����ëãHƒì(H‹Y H…Ût H|$0H9;uH‰#H‹\$(H‰$è����HÇD$@����HÇD$H����H‹\$8H‰$H‹\$0H‹[8ÿÓH‹L$H‹D$H‰L$H‰L$@H‰D$ H‰D$Hè����HƒÄ(Ã
������.��0runtime.morestack_noctxt���‚��*runtime.racefuncenter���Ò�
������”��(runtime.racefuncexit���@P��"".autotmp_0989�,type.image/color.Model� "".~r0� ,type.image/color.Model�""..this��*type."".PalettedImage�!PqO� �B ��@I�Tgclocals·dc29d72f6585636b1615fc65f41da45f�Tgclocals·a310211a5d93ca643985188646602d0e���<autogenerated>þTgclocals·404642bc6b7fe8525dc8555c2685f007�0��0����������� ¢� ¢�€ ¢��þTgclocals·382d0f0c39326859a002473c076d7857�0��0��� ���"
��"
��"
��"
���þ,>go.itab.*bufio.Reader."".reader�����þTgclocals·98a1cc4b1e487a8c1b167979e655e44f�(��(������������������þTgclocals·5cdacfafea6a52cba8772e006cb5d09a�(��(������ ���»��� ����þTgclocals·07ce3793e0acbc9268622f5f9e9eb47d�(��(������������������þTgclocals·0d2207e032e47f7796c2b4a7a37b2060�(��(��� ���"���"��"����þTgclocals·d1c45c047b685bf108a97a0f73b0eacc�P��P���6�������������������ˆ(�������������þTgclocals·8d794d28595a79b9c61a6cf1543db318�0��0������ ��� ��� ���+¢���þTgclocals·dd557ed9f2a1ff4ac6f468355d252505�P��P���$����������� ���������������� ¢������þTgclocals·468e0303f138e657083948ae3b7fc07f�0��0������ ��� ���»²�� ����þTgclocals·212d75d72bc329f4c8d38693858ff636�`��`���0����������� ���������[����������������"
����þTgclocals·cc6984845585fa273b42c620f2d8d0d2�8��8������ ��� ��� ���»% � ����þgo.string."("�0��$���������������(�� �go.string."("���þgo.string.","�0��$���������������,�� �go.string.","���þgo.string.")"�0��$���������������)�� �go.string.")"���þTgclocals·a8cc63930a774e5693faf789d6200da1�(��(���������� ��������þTgclocals·2a3639eecdbdb0960aa0f7327004bc51�(��(������������%����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·e99c5ad22e1e3b7a5c36b33fb1bb3c8b� �� ��� ���U���U���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·e99c5ad22e1e3b7a5c36b33fb1bb3c8b� �� ��� ���U���U���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a8fe0fad69a58f69236bb63df0a7bab9� �� ���
������U���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a8fe0fad69a58f69236bb63df0a7bab9� �� ���
������U���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·1196e3e9d141ed7ea830766ad9564f54� �� ������U��U���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·0f8628ce243e71452b64ce00ce1b425f� �� ������U��UU���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·b3fbade898daefb344db285cb2897d8f� �� ���
���U���U���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·f926cc9015687c7ab1dac05930d6eb9d� �� ���������U����þgo.string."-"�0��$���������������-�� �go.string."-"���þTgclocals·a8cc63930a774e5693faf789d6200da1�(��(���������� ��������þTgclocals·ec00f41b8d1062152e5a6f1d15484282�(��(��� ���U���U���U���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·b3fbade898daefb344db285cb2897d8f� �� ���
���U���U���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·b3fbade898daefb344db285cb2897d8f� �� ���
���U���U���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·e99c5ad22e1e3b7a5c36b33fb1bb3c8b� �� ��� ���U���U���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·d5aefc253c61fc093d318b2142370eff� �� ������U��UU��þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·d5aefc253c61fc093d318b2142370eff� �� ������U��UU��þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·f1b15bf753205b3c7543a4b6fecc547a� �� ������U��UU��þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·e487c1454de0507bf340729649fa8a65� �� ������UU��UUU��þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·e487c1454de0507bf340729649fa8a65� �� ������UU��UUU��þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·b3fbade898daefb344db285cb2897d8f� �� ���
���U���U���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·e2f933fcc4556266243d5fdc4fa1cf6a� �� ������UU��UU��þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·e2f933fcc4556266243d5fdc4fa1cf6a� �� ������UU��UU��þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·e2f933fcc4556266243d5fdc4fa1cf6a� �� ������UU��UU��þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·dc377e0defc61182c01f4d957cc32e80� �� ������U���UU���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·dc377e0defc61182c01f4d957cc32e80� �� ������U���UU���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a9282ac20787dc3025c0916068a42263� �� ���������.����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·50a798c9d6a789f8ff12a130568a080f� �� ���
������V���þ,Tgo.itab.image/color.RGBA.image/color.Color�����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·f4e5c2ea265c0bb50618a74b99defd82� �� ���
������Ö���þTgclocals·07ce3793e0acbc9268622f5f9e9eb47d�(��(������������������þTgclocals·1a780b2043fc6869f6e645f97d4b356b�(��(���������V�������þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·23c4785fa8abd7e258acfe91c9f325f3� �� ��� �����������þTgclocals·562ff44fc2b4beb994776fb7f4a5aec4� �� ���
���Ö��Ö���þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·baa0c3679835632b56aa126ccf73f5ec� �� ������V���V����þ,2go.itab.*"".RGBA."".Image�����þTgclocals·c4d490826610b32d5111d57f926afcb9�0��0���
������������������þTgclocals·2a24b925de47e6af398f4500cd782a35�0��0������V��V��V-��V���þTgclocals·bfc69a0c89200aaeab2b53343f38a3be� �� ���������������þTgclocals·cf86db206769ec68369d07e260728f65� �� �������������þTgclocals·9fd26bf7af0929d886dbef3fe54c8a77�8��8�������������
�����������þTgclocals·c883c1a619e1938819370d0a31e3736f�8��8���
���U���U���U���U���U���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a9282ac20787dc3025c0916068a42263� �� ���������.����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·50a798c9d6a789f8ff12a130568a080f� �� ���
������V���þ,Xgo.itab.image/color.RGBA64.image/color.Color�����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·f4e5c2ea265c0bb50618a74b99defd82� �� ���
������Ö���þTgclocals·07ce3793e0acbc9268622f5f9e9eb47d�(��(������������������þTgclocals·1a780b2043fc6869f6e645f97d4b356b�(��(���������V�������þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·23c4785fa8abd7e258acfe91c9f325f3� �� ��� �����������þTgclocals·562ff44fc2b4beb994776fb7f4a5aec4� �� ���
���Ö��Ö���þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·baa0c3679835632b56aa126ccf73f5ec� �� ������V���V����þ,6go.itab.*"".RGBA64."".Image�����þTgclocals·c4d490826610b32d5111d57f926afcb9�0��0���
������������������þTgclocals·2a24b925de47e6af398f4500cd782a35�0��0������V��V��V-��V���þTgclocals·bfc69a0c89200aaeab2b53343f38a3be� �� ���������������þTgclocals·cf86db206769ec68369d07e260728f65� �� �������������þTgclocals·9fd26bf7af0929d886dbef3fe54c8a77�8��8�������������
�����������þTgclocals·c883c1a619e1938819370d0a31e3736f�8��8���
���U���U���U���U���U���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a9282ac20787dc3025c0916068a42263� �� ���������.����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·50a798c9d6a789f8ff12a130568a080f� �� ���
������V���þ,Vgo.itab.image/color.NRGBA.image/color.Color�����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·f4e5c2ea265c0bb50618a74b99defd82� �� ���
������Ö���þTgclocals·07ce3793e0acbc9268622f5f9e9eb47d�(��(������������������þTgclocals·1a780b2043fc6869f6e645f97d4b356b�(��(���������V�������þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·23c4785fa8abd7e258acfe91c9f325f3� �� ��� �����������þTgclocals·562ff44fc2b4beb994776fb7f4a5aec4� �� ���
���Ö��Ö���þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·baa0c3679835632b56aa126ccf73f5ec� �� ������V���V����þ,4go.itab.*"".NRGBA."".Image�����þTgclocals·c4d490826610b32d5111d57f926afcb9�0��0���
������������������þTgclocals·2a24b925de47e6af398f4500cd782a35�0��0������V��V��V-��V���þTgclocals·bfc69a0c89200aaeab2b53343f38a3be� �� ���������������þTgclocals·cf86db206769ec68369d07e260728f65� �� �������������þTgclocals·9fd26bf7af0929d886dbef3fe54c8a77�8��8�������������
�����������þTgclocals·c883c1a619e1938819370d0a31e3736f�8��8���
���U���U���U���U���U���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a9282ac20787dc3025c0916068a42263� �� ���������.����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·50a798c9d6a789f8ff12a130568a080f� �� ���
������V���þ,Zgo.itab.image/color.NRGBA64.image/color.Color�����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·f4e5c2ea265c0bb50618a74b99defd82� �� ���
������Ö���þTgclocals·07ce3793e0acbc9268622f5f9e9eb47d�(��(������������������þTgclocals·1a780b2043fc6869f6e645f97d4b356b�(��(���������V�������þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·23c4785fa8abd7e258acfe91c9f325f3� �� ��� �����������þTgclocals·562ff44fc2b4beb994776fb7f4a5aec4� �� ���
���Ö��Ö���þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·baa0c3679835632b56aa126ccf73f5ec� �� ������V���V����þ,8go.itab.*"".NRGBA64."".Image�����þTgclocals·c4d490826610b32d5111d57f926afcb9�0��0���
������������������þTgclocals·2a24b925de47e6af398f4500cd782a35�0��0������V��V��V-��V���þTgclocals·bfc69a0c89200aaeab2b53343f38a3be� �� ���������������þTgclocals·cf86db206769ec68369d07e260728f65� �� �������������þTgclocals·9fd26bf7af0929d886dbef3fe54c8a77�8��8�������������
�����������þTgclocals·c883c1a619e1938819370d0a31e3736f�8��8���
���U���U���U���U���U���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a9282ac20787dc3025c0916068a42263� �� ���������.����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·50a798c9d6a789f8ff12a130568a080f� �� ���
������V���þ,Vgo.itab.image/color.Alpha.image/color.Color�����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·f4e5c2ea265c0bb50618a74b99defd82� �� ���
������Ö���þTgclocals·07ce3793e0acbc9268622f5f9e9eb47d�(��(������������������þTgclocals·1a780b2043fc6869f6e645f97d4b356b�(��(���������V�������þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·2523ee35de145ebf4415e47baea27afc�(��(��� ����������,����þTgclocals·23577fc4d42d7457d30ca9b68c64e3ca�(��(���
���Ö��Ö��Ö���þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·baa0c3679835632b56aa126ccf73f5ec� �� ������V���V����þ,4go.itab.*"".Alpha."".Image�����þTgclocals·c4d490826610b32d5111d57f926afcb9�0��0���
������������������þTgclocals·2a24b925de47e6af398f4500cd782a35�0��0������V��V��V-��V���þTgclocals·bfc69a0c89200aaeab2b53343f38a3be� �� ���������������þTgclocals·cf86db206769ec68369d07e260728f65� �� �������������þTgclocals·9fd26bf7af0929d886dbef3fe54c8a77�8��8�������������
�����������þTgclocals·c883c1a619e1938819370d0a31e3736f�8��8���
���U���U���U���U���U���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a9282ac20787dc3025c0916068a42263� �� ���������.����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·50a798c9d6a789f8ff12a130568a080f� �� ���
������V���þ,Zgo.itab.image/color.Alpha16.image/color.Color�����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·f4e5c2ea265c0bb50618a74b99defd82� �� ���
������Ö���þTgclocals·07ce3793e0acbc9268622f5f9e9eb47d�(��(������������������þTgclocals·1a780b2043fc6869f6e645f97d4b356b�(��(���������V�������þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·23c4785fa8abd7e258acfe91c9f325f3� �� ��� �����������þTgclocals·562ff44fc2b4beb994776fb7f4a5aec4� �� ���
���Ö��Ö���þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·baa0c3679835632b56aa126ccf73f5ec� �� ������V���V����þ,8go.itab.*"".Alpha16."".Image�����þTgclocals·c4d490826610b32d5111d57f926afcb9�0��0���
������������������þTgclocals·2a24b925de47e6af398f4500cd782a35�0��0������V��V��V-��V���þTgclocals·bfc69a0c89200aaeab2b53343f38a3be� �� ���������������þTgclocals·cf86db206769ec68369d07e260728f65� �� �������������þTgclocals·9fd26bf7af0929d886dbef3fe54c8a77�8��8�������������
�����������þTgclocals·c883c1a619e1938819370d0a31e3736f�8��8���
���U���U���U���U���U���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a9282ac20787dc3025c0916068a42263� �� ���������.����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·50a798c9d6a789f8ff12a130568a080f� �� ���
������V���þ,Tgo.itab.image/color.Gray.image/color.Color�����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·f4e5c2ea265c0bb50618a74b99defd82� �� ���
������Ö���þTgclocals·07ce3793e0acbc9268622f5f9e9eb47d�(��(������������������þTgclocals·1a780b2043fc6869f6e645f97d4b356b�(��(���������V�������þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·2523ee35de145ebf4415e47baea27afc�(��(��� ����������,����þTgclocals·23577fc4d42d7457d30ca9b68c64e3ca�(��(���
���Ö��Ö��Ö���þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·baa0c3679835632b56aa126ccf73f5ec� �� ������V���V����þ,2go.itab.*"".Gray."".Image�����þTgclocals·c4d490826610b32d5111d57f926afcb9�0��0���
������������������þTgclocals·2a24b925de47e6af398f4500cd782a35�0��0������V��V��V-��V���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·cf86db206769ec68369d07e260728f65� �� �������������þTgclocals·9fd26bf7af0929d886dbef3fe54c8a77�8��8�������������
�����������þTgclocals·c883c1a619e1938819370d0a31e3736f�8��8���
���U���U���U���U���U���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a9282ac20787dc3025c0916068a42263� �� ���������.����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·50a798c9d6a789f8ff12a130568a080f� �� ���
������V���þ,Xgo.itab.image/color.Gray16.image/color.Color�����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·f4e5c2ea265c0bb50618a74b99defd82� �� ���
������Ö���þTgclocals·07ce3793e0acbc9268622f5f9e9eb47d�(��(������������������þTgclocals·1a780b2043fc6869f6e645f97d4b356b�(��(���������V�������þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·23c4785fa8abd7e258acfe91c9f325f3� �� ��� �����������þTgclocals·562ff44fc2b4beb994776fb7f4a5aec4� �� ���
���Ö��Ö���þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·baa0c3679835632b56aa126ccf73f5ec� �� ������V���V����þ,6go.itab.*"".Gray16."".Image�����þTgclocals·c4d490826610b32d5111d57f926afcb9�0��0���
������������������þTgclocals·2a24b925de47e6af398f4500cd782a35�0��0������V��V��V-��V���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·cf86db206769ec68369d07e260728f65� �� �������������þTgclocals·9fd26bf7af0929d886dbef3fe54c8a77�8��8�������������
�����������þTgclocals·c883c1a619e1938819370d0a31e3736f�8��8���
���U���U���U���U���U���þ,Zgo.itab.image/color.Palette.image/color.Model�����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a9282ac20787dc3025c0916068a42263� �� ���������.����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·50a798c9d6a789f8ff12a130568a080f� �� ���
������V���þTgclocals·12fe87de4ae3c5b95abe8940c9637c18�(��(������������������þTgclocals·66101c35671cc87c43abaa29d8c7f489�(��(���
������Ö������þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·562ff44fc2b4beb994776fb7f4a5aec4� �� ���
���Ö��Ö���þTgclocals·07ce3793e0acbc9268622f5f9e9eb47d�(��(������������������þTgclocals·1a780b2043fc6869f6e645f97d4b356b�(��(���������V�������þTgclocals·29f0050a5ee7c2b9348a75428171d7de� �� ��������������þTgclocals·baa0c3679835632b56aa126ccf73f5ec� �� ������V���V����þ,:go.itab.*"".Paletted."".Image�����þTgclocals·c4d490826610b32d5111d57f926afcb9�0��0���
������������������þTgclocals·2a24b925de47e6af398f4500cd782a35�0��0������V��V��V-��V���þTgclocals·3a4608ee038510a3866d59edec1647b8�8��8����������������²��������þTgclocals·b730310aa25263a75bbe3b1ba20caa05�8��8����������������������þTgclocals·9fd26bf7af0929d886dbef3fe54c8a77�8��8�������������
�����������þTgclocals·ee7fd7b7ae1d607a49016aad3741586d�8��8������U��U��U��U��U‚���þTgclocals·a310211a5d93ca643985188646602d0e� �� ���������������þTgclocals·0c1de6f5863a411b332163addfd6db93� �� �������������þ,Jgo.itab.*"".Uniform.image/color.Model�����þTgclocals·9265c967b79b0c937dffe448c4822b36�(��(������������������þTgclocals·7f720595ca0b8b6a95aaac2f38eb7b52�(��(������������.����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·4f7930a05ab329338bbd420830e58939� �� ���
���.���î���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·50a798c9d6a789f8ff12a130568a080f� �� ���
������V���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·f4e5c2ea265c0bb50618a74b99defd82� �� ���
������Ö���þTgclocals·a310211a5d93ca643985188646602d0e� �� ���������������þTgclocals·cf86db206769ec68369d07e260728f65� �� �������������þTgclocals·9265c967b79b0c937dffe448c4822b36�(��(������������������þTgclocals·b93f5341db34820a49aadcfc8eb4ce02�(��(������ ��� ���+����þDgo.string."YCbCrSubsampleRatio444"�P��N���������������YCbCrSubsampleRatio444�� �Dgo.string."YCbCrSubsampleRatio444"���þDgo.string."YCbCrSubsampleRatio422"�P��N���������������YCbCrSubsampleRatio422�� �Dgo.string."YCbCrSubsampleRatio422"���þDgo.string."YCbCrSubsampleRatio420"�P��N���������������YCbCrSubsampleRatio420�� �Dgo.string."YCbCrSubsampleRatio420"���þDgo.string."YCbCrSubsampleRatio440"�P��N���������������YCbCrSubsampleRatio440�� �Dgo.string."YCbCrSubsampleRatio440"���þLgo.string."YCbCrSubsampleRatioUnknown"�`��V���������������YCbCrSubsampleRatioUnknown�� �Lgo.string."YCbCrSubsampleRatioUnknown"���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·75c3124ce5365bfb55c4c083dc0d231d� �� ��������� ����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a9282ac20787dc3025c0916068a42263� �� ���������.����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·50a798c9d6a789f8ff12a130568a080f� �� ���
������V���þ,Vgo.itab.image/color.YCbCr.image/color.Color�����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·f4e5c2ea265c0bb50618a74b99defd82� �� ���
������Ö���þTgclocals·07ce3793e0acbc9268622f5f9e9eb47d�(��(������������������þTgclocals·1a780b2043fc6869f6e645f97d4b356b�(��(���������V�������þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þ,4go.itab.*"".YCbCr."".Image�����þTgclocals·c4d490826610b32d5111d57f926afcb9�0��0���
������������������þTgclocals·2a24b925de47e6af398f4500cd782a35�0��0������V��V��V-��V���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·cf86db206769ec68369d07e260728f65� �� �������������þTgclocals·0710c93e2d2b13c7901141f652c8613e�8��8�������������
�����������þTgclocals·3bca9fd3d2a139fc2022d0a9bbf6274a�8��8��� ���U��U��U��U��U ���þBgo.string."image: unknown format"�P��L���������������image: unknown format�� �Bgo.string."image: unknown format"���þTgclocals·e4de8e0b69ee4dd6c2285b2decd0f6ec�(��(����������,�������þTgclocals·73423680ca5f2d7df4fe760a82d507fb�����������þ*"".ErrFormat�� type.error���þ*"".formats��0 type.[]"".format���þ,
"".ZP�� type."".Point���þ,
"".ZR��@"type."".Rectangle���þ*"".Black�� type.*"".Uniform���þ*"".White�� type.*"".Uniform���þ*"".Transparent�� type.*"".Uniform���þ*"".Opaque�� type.*"".Uniform���þ,"".initdone·��type.uint8���þ("".RegisterFormat·f��������������""".RegisterFormat���þ0runtime.racefuncenter·f��������������*runtime.racefuncenter���þ&runtime.raceread·f�������������� runtime.raceread���þ(runtime.growslice·f��������������"runtime.growslice���þ2runtime.racewriterange·f��������������,runtime.racewriterange���þ4runtime.writebarrierfat·f��������������.runtime.writebarrierfat���þ(runtime.racewrite·f��������������"runtime.racewrite���þ8runtime.writebarrierslice·f��������������2runtime.writebarrierslice���þ.runtime.racefuncexit·f��������������(runtime.racefuncexit���þ"".asReader·f��������������"".asReader���þ*runtime.assertI2I2·f��������������$runtime.assertI2I2���þ$bufio.NewReader·f��������������bufio.NewReader���þ&runtime.typ2Itab·f�������������� runtime.typ2Itab���þ,runtime.throwreturn·f��������������&runtime.throwreturn���þ"".match·f��������������"".match���þ*runtime.panicindex·f��������������$runtime.panicindex���þ"".sniff·f��������������"".sniff���þ0runtime.racereadrange·f��������������*runtime.racereadrange���þ"".Decode·f��������������"".Decode���þ$runtime.convI2I·f��������������runtime.convI2I���þ$"".DecodeConfig·f��������������"".DecodeConfig���þ$"".Point.String·f��������������"".Point.String���þstrconv.Itoa·f��������������strconv.Itoa���þ0runtime.concatstring5·f��������������*runtime.concatstring5���þ"".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���þ0runtime.concatstring3·f��������������*runtime.concatstring3���þ$"".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.Inset���þ2"".Rectangle.Intersect·f��������������,"".Rectangle.Intersect���þ*"".Rectangle.Union·f��������������$"".Rectangle.Union���þ*"".Rectangle.Empty·f��������������$"".Rectangle.Empty���þ$"".Rectangle.Eq·f��������������"".Rectangle.Eq���þ0"".Rectangle.Overlaps·f��������������*"".Rectangle.Overlaps���þ$"".Rectangle.In·f��������������"".Rectangle.In���þ*"".Rectangle.Canon·f��������������$"".Rectangle.Canon���þ"".Rect·f��������������"".Rect���þ0"".(*RGBA).ColorModel·f��������������*"".(*RGBA).ColorModel���þ("".(*RGBA).Bounds·f��������������""".(*RGBA).Bounds���þ "".(*RGBA).At·f��������������"".(*RGBA).At���þ("".(*RGBA).RGBAAt·f��������������""".(*RGBA).RGBAAt���þ$runtime.convT2I·f��������������runtime.convT2I���þ."".(*RGBA).PixOffset·f��������������("".(*RGBA).PixOffset���þ""".(*RGBA).Set·f��������������"".(*RGBA).Set���þ(runtime.assertI2T·f��������������"runtime.assertI2T���þ*"".(*RGBA).SetRGBA·f��������������$"".(*RGBA).SetRGBA���þ,"".(*RGBA).SubImage·f��������������&"".(*RGBA).SubImage���þ(runtime.newobject·f��������������"runtime.newobject���þ*runtime.panicslice·f��������������$runtime.panicslice���þ("".(*RGBA).Opaque·f��������������""".(*RGBA).Opaque���þ"".NewRGBA·f��������������"".NewRGBA���þ(runtime.makeslice·f��������������"runtime.makeslice���þ4"".(*RGBA64).ColorModel·f��������������."".(*RGBA64).ColorModel���þ,"".(*RGBA64).Bounds·f��������������&"".(*RGBA64).Bounds���þ$"".(*RGBA64).At·f��������������"".(*RGBA64).At���þ0"".(*RGBA64).RGBA64At·f��������������*"".(*RGBA64).RGBA64At���þ2"".(*RGBA64).PixOffset·f��������������,"".(*RGBA64).PixOffset���þ&"".(*RGBA64).Set·f�������������� "".(*RGBA64).Set���þ2"".(*RGBA64).SetRGBA64·f��������������,"".(*RGBA64).SetRGBA64���þ0"".(*RGBA64).SubImage·f��������������*"".(*RGBA64).SubImage���þ,"".(*RGBA64).Opaque·f��������������&"".(*RGBA64).Opaque���þ"".NewRGBA64·f��������������"".NewRGBA64���þ2"".(*NRGBA).ColorModel·f��������������,"".(*NRGBA).ColorModel���þ*"".(*NRGBA).Bounds·f��������������$"".(*NRGBA).Bounds���þ""".(*NRGBA).At·f��������������"".(*NRGBA).At���þ,"".(*NRGBA).NRGBAAt·f��������������&"".(*NRGBA).NRGBAAt���þ0"".(*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��������������"".NewNRGBA���þ6"".(*NRGBA64).ColorModel·f��������������0"".(*NRGBA64).ColorModel���þ."".(*NRGBA64).Bounds·f��������������("".(*NRGBA64).Bounds���þ&"".(*NRGBA64).At·f�������������� "".(*NRGBA64).At���þ4"".(*NRGBA64).NRGBA64At·f��������������."".(*NRGBA64).NRGBA64At���þ4"".(*NRGBA64).PixOffset·f��������������."".(*NRGBA64).PixOffset���þ("".(*NRGBA64).Set·f��������������""".(*NRGBA64).Set���þ6"".(*NRGBA64).SetNRGBA64·f��������������0"".(*NRGBA64).SetNRGBA64���þ2"".(*NRGBA64).SubImage·f��������������,"".(*NRGBA64).SubImage���þ."".(*NRGBA64).Opaque·f��������������("".(*NRGBA64).Opaque���þ "".NewNRGBA64·f��������������"".NewNRGBA64���þ2"".(*Alpha).ColorModel·f��������������,"".(*Alpha).ColorModel���þ*"".(*Alpha).Bounds·f��������������$"".(*Alpha).Bounds���þ""".(*Alpha).At·f��������������"".(*Alpha).At���þ,"".(*Alpha).AlphaAt·f��������������&"".(*Alpha).AlphaAt���þ0"".(*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��������������"".NewAlpha���þ6"".(*Alpha16).ColorModel·f��������������0"".(*Alpha16).ColorModel���þ."".(*Alpha16).Bounds·f��������������("".(*Alpha16).Bounds���þ&"".(*Alpha16).At·f�������������� "".(*Alpha16).At���þ4"".(*Alpha16).Alpha16At·f��������������."".(*Alpha16).Alpha16At���þ4"".(*Alpha16).PixOffset·f��������������."".(*Alpha16).PixOffset���þ("".(*Alpha16).Set·f��������������""".(*Alpha16).Set���þ6"".(*Alpha16).SetAlpha16·f��������������0"".(*Alpha16).SetAlpha16���þ2"".(*Alpha16).SubImage·f��������������,"".(*Alpha16).SubImage���þ."".(*Alpha16).Opaque·f��������������("".(*Alpha16).Opaque���þ "".NewAlpha16·f��������������"".NewAlpha16���þ0"".(*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��������������"".NewGray���þ4"".(*Gray16).ColorModel·f��������������."".(*Gray16).ColorModel���þ,"".(*Gray16).Bounds·f��������������&"".(*Gray16).Bounds���þ$"".(*Gray16).At·f��������������"".(*Gray16).At���þ0"".(*Gray16).Gray16At·f��������������*"".(*Gray16).Gray16At���þ2"".(*Gray16).PixOffset·f��������������,"".(*Gray16).PixOffset���þ&"".(*Gray16).Set·f�������������� "".(*Gray16).Set���þ2"".(*Gray16).SetGray16·f��������������,"".(*Gray16).SetGray16���þ0"".(*Gray16).SubImage·f��������������*"".(*Gray16).SubImage���þ,"".(*Gray16).Opaque·f��������������&"".(*Gray16).Opaque���þ"".NewGray16·f��������������"".NewGray16���þ8"".(*Paletted).ColorModel·f��������������2"".(*Paletted).ColorModel���þ0"".(*Paletted).Bounds·f��������������*"".(*Paletted).Bounds���þ("".(*Paletted).At·f��������������""".(*Paletted).At���þ6"".(*Paletted).PixOffset·f��������������0"".(*Paletted).PixOffset���þ*"".(*Paletted).Set·f��������������$"".(*Paletted).Set���þ8image/color.Palette.Index·f��������������2image/color.Palette.Index���þ<"".(*Paletted).ColorIndexAt·f��������������6"".(*Paletted).ColorIndexAt���þ>"".(*Paletted).SetColorIndex·f��������������8"".(*Paletted).SetColorIndex���þ4"".(*Paletted).SubImage·f��������������."".(*Paletted).SubImage���þ0"".(*Paletted).Opaque·f��������������*"".(*Paletted).Opaque���þ""".NewPaletted·f��������������"".NewPaletted���þ*"".(*Uniform).RGBA·f��������������$"".(*Uniform).RGBA���þ6"".(*Uniform).ColorModel·f��������������0"".(*Uniform).ColorModel���þ0"".(*Uniform).Convert·f��������������*"".(*Uniform).Convert���þ."".(*Uniform).Bounds·f��������������("".(*Uniform).Bounds���þ&"".(*Uniform).At·f�������������� "".(*Uniform).At���þ."".(*Uniform).Opaque·f��������������("".(*Uniform).Opaque���þ "".NewUniform·f��������������"".NewUniform���þ8runtime.writebarrieriface·f��������������2runtime.writebarrieriface���þ@"".YCbCrSubsampleRatio.String·f��������������:"".YCbCrSubsampleRatio.String���þ2"".(*YCbCr).ColorModel·f��������������,"".(*YCbCr).ColorModel���þ*"".(*YCbCr).Bounds·f��������������$"".(*YCbCr).Bounds���þ""".(*YCbCr).At·f��������������"".(*YCbCr).At���þ,"".(*YCbCr).YCbCrAt·f��������������&"".(*YCbCr).YCbCrAt���þ,"".(*YCbCr).COffset·f��������������&"".(*YCbCr).COffset���þ,"".(*YCbCr).YOffset·f��������������&"".(*YCbCr).YOffset���þ."".(*YCbCr).SubImage·f��������������("".(*YCbCr).SubImage���þ*"".(*YCbCr).Opaque·f��������������$"".(*YCbCr).Opaque���þ"".NewYCbCr·f��������������"".NewYCbCr���þ"".init·f��������������"".init���þ(runtime.throwinit·f��������������"runtime.throwinit���þ&image/color.init·f�������������� image/color.init���þstrconv.init·f��������������strconv.init���þio.init·f��������������io.init���þbufio.init·f��������������bufio.init���þerrors.New·f��������������errors.New���þ4runtime.writebarrierptr·f��������������.runtime.writebarrierptr���þTgclocals·a310211a5d93ca643985188646602d0e� �� ���������������þTgclocals·3bc6fbe3302b9693f624ee9c9bf384a0� �� ��� ���[���[ ���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·00644cd315d467a44ad54125dd31bea5� �� ��� ��� ���[���þTgclocals·a310211a5d93ca643985188646602d0e� �� ���������������þTgclocals·dc29d72f6585636b1615fc65f41da45f� �� ������ ���»����þbruntime.gcbits.0x88000000000000000000000000000000� �� ˆ����������������þLgo.string."func(int, int) color.Color"�`��V���������������func(int, int) color.Color�� �Lgo.string."func(int, int) color.Color"���þJtype.func(int, int) image/color.Color�°��°�������‚ÌÛT�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."func(int, int) color.Color"���p��\go.weak.type.*func(int, int) image/color.Color���€��"runtime.zerovalue��� €�Jtype.func(int, int) image/color.Color���Р�Jtype.func(int, int) image/color.Color���€��type.int�����type.int��� ��,type.image/color.Color���þ0go.string."*image.Point"�@��:�������� �������*image.Point�� �0go.string."*image.Point"���þ"go.string."image"�0��,���������������image�� �"go.string."image"���þ"go.string."Point"�0��,���������������Point�� �"go.string."Point"���þ$go.string."String"�0��.���������������String�� �$go.string."String"���þTgclocals·a310211a5d93ca643985188646602d0e� �� ���������������þTgclocals·521d2fa12a56ba961a59b2852d682dbc� �� ���������
����þgo.string."Add"�0��(���������������Add�� �go.string."Add"���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·660dfebf754287f432184ddb1d573833� �� ���
������V���þgo.string."Sub"�0��(���������������Sub�� �go.string."Sub"���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·660dfebf754287f432184ddb1d573833� �� ���
������V���þgo.string."Mul"�0��(���������������Mul�� �go.string."Mul"���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·cd56180dcb3dc91ea7de5ea59bbcd428� �� ���������V����þgo.string."Div"�0��(���������������Div�� �go.string."Div"���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·cd56180dcb3dc91ea7de5ea59bbcd428� �� ���������V����þgo.string."In"�0��&���������������In�� �go.string."In"���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·70d3daffdf749070f7b06adf93601bff� �� ��� ���V��V���þgo.string."Mod"�0��(���������������Mod�� �go.string."Mod"���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·7fe5812befed2e9301fced72f2318788� �� ������V��V���þgo.string."Eq"�0��&���������������Eq�� �go.string."Eq"���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þngo.string."func(*image.Point, image.Point) image.Point"�€��x��������+�������func(*image.Point, image.Point) image.Point�� �ngo.string."func(*image.Point, image.Point) image.Point"���þNtype.func(*"".Point, "".Point) "".Point�°��°�������Ÿ.^�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��ngo.string."func(*image.Point, image.Point) image.Point"���p��`go.weak.type.*func(*"".Point, "".Point) "".Point���€��"runtime.zerovalue��� €�Ntype.func(*"".Point, "".Point) "".Point���Р�Ntype.func(*"".Point, "".Point) "".Point���€��type.*"".Point�����type."".Point��� ��type."".Point���þ^go.string."func(*image.Point, int) image.Point"�p��h��������#�������func(*image.Point, int) image.Point�� �^go.string."func(*image.Point, int) image.Point"���þDtype.func(*"".Point, int) "".Point�°��°�������3 �3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��^go.string."func(*image.Point, int) image.Point"���p��Vgo.weak.type.*func(*"".Point, int) "".Point���€��"runtime.zerovalue��� €�Dtype.func(*"".Point, int) "".Point���Р�Dtype.func(*"".Point, int) "".Point���€��type.*"".Point�����type.int��� ��type."".Point���þ`go.string."func(*image.Point, image.Point) bool"�p��j��������$�������func(*image.Point, image.Point) bool�� �`go.string."func(*image.Point, image.Point) bool"���þFtype.func(*"".Point, "".Point) bool�°��°�������¯š¢�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��`go.string."func(*image.Point, image.Point) bool"���p��Xgo.weak.type.*func(*"".Point, "".Point) bool���€��"runtime.zerovalue��� €�Ftype.func(*"".Point, "".Point) bool���Р�Ftype.func(*"".Point, "".Point) bool���€��type.*"".Point�����type."".Point��� ��type.bool���þhgo.string."func(*image.Point, image.Rectangle) bool"�€��r��������(�������func(*image.Point, image.Rectangle) bool�� �hgo.string."func(*image.Point, image.Rectangle) bool"���þNtype.func(*"".Point, "".Rectangle) bool�°��°�������­âõ�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��hgo.string."func(*image.Point, image.Rectangle) bool"���p��`go.weak.type.*func(*"".Point, "".Rectangle) bool���€��"runtime.zerovalue��� €�Ntype.func(*"".Point, "".Rectangle) bool���Р�Ntype.func(*"".Point, "".Rectangle) bool���€��type.*"".Point�����"type."".Rectangle��� ��type.bool���þvgo.string."func(*image.Point, image.Rectangle) image.Point"�€��€��������/�������func(*image.Point, image.Rectangle) image.Point�� �vgo.string."func(*image.Point, image.Rectangle) image.Point"���þVtype.func(*"".Point, "".Rectangle) "".Point�°��°�������«øõ„�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��vgo.string."func(*image.Point, image.Rectangle) image.Point"���p��hgo.weak.type.*func(*"".Point, "".Rectangle) "".Point���€��"runtime.zerovalue��� €�Vtype.func(*"".Point, "".Rectangle) "".Point���Р�Vtype.func(*"".Point, "".Rectangle) "".Point���€��type.*"".Point�����"type."".Rectangle��� ��type."".Point���þJgo.string."func(*image.Point) string"�`��T���������������func(*image.Point) string�� �Jgo.string."func(*image.Point) string"���þ6type.func(*"".Point) string� �� �������Çu×á�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Jgo.string."func(*image.Point) string"���p��Hgo.weak.type.*func(*"".Point) string���€��"runtime.zerovalue��� €�6type.func(*"".Point) string���А�6type.func(*"".Point) string���€��type.*"".Point�����type.string���þRgo.string."func(image.Point) image.Point"�`��\���������������func(image.Point) image.Point�� �Rgo.string."func(image.Point) image.Point"���þ8type.func("".Point) "".Point� �� �������˜<Ñ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Rgo.string."func(image.Point) image.Point"���p��Jgo.weak.type.*func("".Point) "".Point���€��"runtime.zerovalue��� €�8type.func("".Point) "".Point���А�8type.func("".Point) "".Point���€��type."".Point�����type."".Point���þBgo.string."func(int) image.Point"�P��L���������������func(int) image.Point�� �Bgo.string."func(int) image.Point"���þ.type.func(int) "".Point� �� �������R§¸�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Bgo.string."func(int) image.Point"���p��@go.weak.type.*func(int) "".Point���€��"runtime.zerovalue��� €�.type.func(int) "".Point���А�.type.func(int) "".Point���€��type.int�����type."".Point���þDgo.string."func(image.Point) bool"�P��N���������������func(image.Point) bool�� �Dgo.string."func(image.Point) bool"���þ0type.func("".Point) bool� �� �������—ËÆa�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Dgo.string."func(image.Point) bool"���p��Bgo.weak.type.*func("".Point) bool���€��"runtime.zerovalue��� €�0type.func("".Point) bool���А�0type.func("".Point) bool���€��type."".Point�����type.bool���þLgo.string."func(image.Rectangle) bool"�`��V���������������func(image.Rectangle) bool�� �Lgo.string."func(image.Rectangle) bool"���þ8type.func("".Rectangle) bool� �� �������Á¬S�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."func(image.Rectangle) bool"���p��Jgo.weak.type.*func("".Rectangle) bool���€��"runtime.zerovalue��� €�8type.func("".Rectangle) bool���А�8type.func("".Rectangle) bool���€��"type."".Rectangle�����type.bool���þZgo.string."func(image.Rectangle) image.Point"�p��d��������!�������func(image.Rectangle) image.Point�� �Zgo.string."func(image.Rectangle) image.Point"���þ@type.func("".Rectangle) "".Point� �� �������¯]Ek�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Zgo.string."func(image.Rectangle) image.Point"���p��Rgo.weak.type.*func("".Rectangle) "".Point���€��"runtime.zerovalue��� €�@type.func("".Rectangle) "".Point���А�@type.func("".Rectangle) "".Point���€��"type."".Rectangle�����type."".Point���þ2go.string."func() string"�@��<�������� �������func() string�� �2go.string."func() string"���þ$type.func() string����������¢mË�3���������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��2go.string."func() string"���p��6go.weak.type.*func() string���€��"runtime.zerovalue��� €�$type.func() string���Ѐ�$type.func() string���€��type.string���þtype.*"".Point��ð��ð�������=‘5Ë�6������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������`  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��0go.string."*image.Point"���p��.go.weak.type.**"".Point���€��"runtime.zerovalue�����type."".Point���` �type.*"".Point���Àð�type.*"".Point���ð��go.string."Add"�����8type.func("".Point) "".Point��� ��Ntype.func(*"".Point, "".Point) "".Point���°��"".(*Point).Add���À��"".(*Point).Add���Ð��go.string."Div"���ð��.type.func(int) "".Point���€��Dtype.func(*"".Point, int) "".Point�����"".(*Point).Div��� ��"".(*Point).Div���°��go.string."Eq"���Ð��0type.func("".Point) bool���à��Ftype.func(*"".Point, "".Point) bool���ð��"".(*Point).Eq���€��"".(*Point).Eq�����go.string."In"���°��8type.func("".Rectangle) bool���À��Ntype.func(*"".Point, "".Rectangle) bool���Ð��"".(*Point).In���à��"".(*Point).In���ð��go.string."Mod"�����@type.func("".Rectangle) "".Point��� ��Vtype.func(*"".Point, "".Rectangle) "".Point���°��"".(*Point).Mod���À��"".(*Point).Mod���Ð��go.string."Mul"���ð��.type.func(int) "".Point���€��Dtype.func(*"".Point, int) "".Point�����"".(*Point).Mul��� ��"".(*Point).Mul���°��$go.string."String"���Ð��$type.func() string���à��6type.func(*"".Point) string���ð��$"".(*Point).String���€��$"".(*Point).String�����go.string."Sub"���°��8type.func("".Point) "".Point���À��Ntype.func(*"".Point, "".Point) "".Point���Ð��"".(*Point).Sub���à��"".(*Point).Sub���þ^runtime.gcbits.0x000000000000000000000000000000� �� �����������������þ.go.string."image.Point"�@��8�������� �������image.Point�� �.go.string."image.Point"���þgo.string."X"�0��$���������������X�� �go.string."X"���þgo.string."Y"�0��$���������������Y�� �go.string."Y"���þlgo.string."func(image.Point, image.Point) image.Point"�€��v��������*�������func(image.Point, image.Point) image.Point�� �lgo.string."func(image.Point, image.Point) image.Point"���þLtype.func("".Point, "".Point) "".Point�°��°�������z„m{�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��lgo.string."func(image.Point, image.Point) image.Point"���p��^go.weak.type.*func("".Point, "".Point) "".Point���€��"runtime.zerovalue��� €�Ltype.func("".Point, "".Point) "".Point���Р�Ltype.func("".Point, "".Point) "".Point���€��type."".Point�����type."".Point��� ��type."".Point���þ\go.string."func(image.Point, int) image.Point"�p��f��������"�������func(image.Point, int) image.Point�� �\go.string."func(image.Point, int) image.Point"���þBtype.func("".Point, int) "".Point�°��°�������Ø(de�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��\go.string."func(image.Point, int) image.Point"���p��Tgo.weak.type.*func("".Point, int) "".Point���€��"runtime.zerovalue��� €�Btype.func("".Point, int) "".Point���Р�Btype.func("".Point, int) "".Point���€��type."".Point�����type.int��� ��type."".Point���þ^go.string."func(image.Point, image.Point) bool"�p��h��������#�������func(image.Point, image.Point) bool�� �^go.string."func(image.Point, image.Point) bool"���þDtype.func("".Point, "".Point) bool�°��°�������ãÊÀ3�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��^go.string."func(image.Point, image.Point) bool"���p��Vgo.weak.type.*func("".Point, "".Point) bool���€��"runtime.zerovalue��� €�Dtype.func("".Point, "".Point) bool���Р�Dtype.func("".Point, "".Point) bool���€��type."".Point�����type."".Point��� ��type.bool���þfgo.string."func(image.Point, image.Rectangle) bool"�p��p��������'�������func(image.Point, image.Rectangle) bool�� �fgo.string."func(image.Point, image.Rectangle) bool"���þLtype.func("".Point, "".Rectangle) bool�°��°������� �3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��fgo.string."func(image.Point, image.Rectangle) bool"���p��^go.weak.type.*func("".Point, "".Rectangle) bool���€��"runtime.zerovalue��� €�Ltype.func("".Point, "".Rectangle) bool���Р�Ltype.func("".Point, "".Rectangle) bool���€��type."".Point�����"type."".Rectangle��� ��type.bool���þtgo.string."func(image.Point, image.Rectangle) image.Point"�€��~��������.�������func(image.Point, image.Rectangle) image.Point�� �tgo.string."func(image.Point, image.Rectangle) image.Point"���þTtype.func("".Point, "".Rectangle) "".Point�°��°�������$#Íò�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��tgo.string."func(image.Point, image.Rectangle) image.Point"���p��fgo.weak.type.*func("".Point, "".Rectangle) "".Point���€��"runtime.zerovalue��� €�Ttype.func("".Point, "".Rectangle) "".Point���Р�Ttype.func("".Point, "".Rectangle) "".Point���€��type."".Point�����"type."".Rectangle��� ��type."".Point���þHgo.string."func(image.Point) string"�`��R���������������func(image.Point) string�� �Hgo.string."func(image.Point) string"���þ4type.func("".Point) string� �� �������Û,|º�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Hgo.string."func(image.Point) string"���p��Fgo.weak.type.*func("".Point) string���€��"runtime.zerovalue��� €�4type.func("".Point) string���А�4type.func("".Point) string���€��type."".Point�����type.string���þtype."".Point��° ��° �������V[¼�™���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������l À� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��.go.string."image.Point"���p��type.*"".Point���€��"runtime.zerovalue���À�type."".Point���À��go.string."X"���à��type.int�����go.string."Y"���°��type.int���`à�type."".Point���à��"go.string."Point"���ð��"go.importpath."".���€°�type."".Point���°��go.string."Add"���Ð��8type.func("".Point) "".Point���à��Ltype.func("".Point, "".Point) "".Point���ð��"".(*Point).Add���€��"".Point.Add�����go.string."Div"���°��.type.func(int) "".Point���À��Btype.func("".Point, int) "".Point���Ð��"".(*Point).Div���à��"".Point.Div���ð��go.string."Eq"�����0type.func("".Point) bool��� ��Dtype.func("".Point, "".Point) bool���°��"".(*Point).Eq���À��"".Point.Eq���Ð��go.string."In"���ð��8type.func("".Rectangle) bool���€��Ltype.func("".Point, "".Rectangle) bool�����"".(*Point).In��� ��"".Point.In���°��go.string."Mod"���Ð��@type.func("".Rectangle) "".Point���à��Ttype.func("".Point, "".Rectangle) "".Point���ð��"".(*Point).Mod���€��"".Point.Mod�����go.string."Mul"���°��.type.func(int) "".Point���À��Btype.func("".Point, int) "".Point���Ð��"".(*Point).Mul���à��"".Point.Mul���ð��$go.string."String"�����$type.func() string��� ��4type.func("".Point) string���°��$"".(*Point).String���À��"".Point.String���Ð��go.string."Sub"���ð��8type.func("".Point) "".Point���€ ��Ltype.func("".Point, "".Point) "".Point��� ��"".(*Point).Sub���  ��"".Point.Sub���þ8go.string."*image.Rectangle"�P��B���������������*image.Rectangle�� �8go.string."*image.Rectangle"���þ*go.string."Rectangle"�@��4�������� �������Rectangle�� �*go.string."Rectangle"���þTgclocals·a310211a5d93ca643985188646602d0e� �� ���������������þTgclocals·521d2fa12a56ba961a59b2852d682dbc� �� ���������
����þgo.string."Dx"�0��&���������������Dx�� �go.string."Dx"���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·cf86db206769ec68369d07e260728f65� �� �������������þgo.string."Dy"�0��&���������������Dy�� �go.string."Dy"���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·cf86db206769ec68369d07e260728f65� �� �������������þ go.string."Size"�0��*���������������Size�� � go.string."Size"���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·0c1de6f5863a411b332163addfd6db93� �� �������������þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·09d94b3b83dee62c00632c4d5a94784b� �� ���������V���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·09d94b3b83dee62c00632c4d5a94784b� �� ���������V���þ"go.string."Inset"�0��,���������������Inset�� �"go.string."Inset"���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·b0485f3f9710e2b302adf458724207b0� �� ��� ������V���þ*go.string."Intersect"�@��4�������� �������Intersect�� �*go.string."Intersect"���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·96bccb0148dea313d31967fdae869127� �� ������V��VU��þ"go.string."Union"�0��,���������������Union�� �"go.string."Union"���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·96bccb0148dea313d31967fdae869127� �� ������V��VU��þ"go.string."Empty"�0��,���������������Empty�� �"go.string."Empty"���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·cf86db206769ec68369d07e260728f65� �� �������������þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·70d3daffdf749070f7b06adf93601bff� �� ��� ���V��V���þ(go.string."Overlaps"�@��2���������������Overlaps�� �(go.string."Overlaps"���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·70d3daffdf749070f7b06adf93601bff� �� ��� ���V��V���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·70d3daffdf749070f7b06adf93601bff� �� ��� ���V��V���þ"go.string."Canon"�0��,���������������Canon�� �"go.string."Canon"���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·50a798c9d6a789f8ff12a130568a080f� �� ���
������V���þ~go.string."func(*image.Rectangle, image.Point) image.Rectangle"���ˆ��������3�������func(*image.Rectangle, image.Point) image.Rectangle�� �~go.string."func(*image.Rectangle, image.Point) image.Rectangle"���þ^type.func(*"".Rectangle, "".Point) "".Rectangle�°��°�������7Øút�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��~go.string."func(*image.Rectangle, image.Point) image.Rectangle"���p��pgo.weak.type.*func(*"".Rectangle, "".Point) "".Rectangle���€��"runtime.zerovalue��� €�^type.func(*"".Rectangle, "".Point) "".Rectangle���Р�^type.func(*"".Rectangle, "".Point) "".Rectangle���€��$type.*"".Rectangle�����type."".Point��� ��"type."".Rectangle���þdgo.string."func(*image.Rectangle) image.Rectangle"�p��n��������&�������func(*image.Rectangle) image.Rectangle�� �dgo.string."func(*image.Rectangle) image.Rectangle"���þJtype.func(*"".Rectangle) "".Rectangle� �� �������ŒP2]�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��dgo.string."func(*image.Rectangle) image.Rectangle"���p��\go.weak.type.*func(*"".Rectangle) "".Rectangle���€��"runtime.zerovalue��� €�Jtype.func(*"".Rectangle) "".Rectangle���А�Jtype.func(*"".Rectangle) "".Rectangle���€��$type.*"".Rectangle�����"type."".Rectangle���þLgo.string."func(*image.Rectangle) int"�`��V���������������func(*image.Rectangle) int�� �Lgo.string."func(*image.Rectangle) int"���þ8type.func(*"".Rectangle) int� �� �������áç§@�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."func(*image.Rectangle) int"���p��Jgo.weak.type.*func(*"".Rectangle) int���€��"runtime.zerovalue��� €�8type.func(*"".Rectangle) int���А�8type.func(*"".Rectangle) int���€��$type.*"".Rectangle�����type.int���þNgo.string."func(*image.Rectangle) bool"�`��X���������������func(*image.Rectangle) bool�� �Ngo.string."func(*image.Rectangle) bool"���þ:type.func(*"".Rectangle) bool� �� �������ro��3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Ngo.string."func(*image.Rectangle) bool"���p��Lgo.weak.type.*func(*"".Rectangle) bool���€��"runtime.zerovalue��� €�:type.func(*"".Rectangle) bool���А�:type.func(*"".Rectangle) bool���€��$type.*"".Rectangle�����type.bool���þpgo.string."func(*image.Rectangle, image.Rectangle) bool"�€��z��������,�������func(*image.Rectangle, image.Rectangle) bool�� �pgo.string."func(*image.Rectangle, image.Rectangle) bool"���þVtype.func(*"".Rectangle, "".Rectangle) bool�°��°�������‹ @¶�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��pgo.string."func(*image.Rectangle, image.Rectangle) bool"���p��hgo.weak.type.*func(*"".Rectangle, "".Rectangle) bool���€��"runtime.zerovalue��� €�Vtype.func(*"".Rectangle, "".Rectangle) bool���Р�Vtype.func(*"".Rectangle, "".Rectangle) bool���€��$type.*"".Rectangle�����"type."".Rectangle��� ��type.bool���þngo.string."func(*image.Rectangle, int) image.Rectangle"�€��x��������+�������func(*image.Rectangle, int) image.Rectangle�� �ngo.string."func(*image.Rectangle, int) image.Rectangle"���þTtype.func(*"".Rectangle, int) "".Rectangle�°��°�������Ògš�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��ngo.string."func(*image.Rectangle, int) image.Rectangle"���p��fgo.weak.type.*func(*"".Rectangle, int) "".Rectangle���€��"runtime.zerovalue��� €�Ttype.func(*"".Rectangle, int) "".Rectangle���Р�Ttype.func(*"".Rectangle, int) "".Rectangle���€��$type.*"".Rectangle�����type.int��� ��"type."".Rectangle���þ†go.string."func(*image.Rectangle, image.Rectangle) image.Rectangle"�����������7�������func(*image.Rectangle, image.Rectangle) image.Rectangle�� �†go.string."func(*image.Rectangle, image.Rectangle) image.Rectangle"���þftype.func(*"".Rectangle, "".Rectangle) "".Rectangle�°��°�������:çÃ¥�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��†go.string."func(*image.Rectangle, image.Rectangle) image.Rectangle"���p��xgo.weak.type.*func(*"".Rectangle, "".Rectangle) "".Rectangle���€��"runtime.zerovalue��� €�ftype.func(*"".Rectangle, "".Rectangle) "".Rectangle���Р�ftype.func(*"".Rectangle, "".Rectangle) "".Rectangle���€��$type.*"".Rectangle�����"type."".Rectangle��� ��"type."".Rectangle���þ\go.string."func(*image.Rectangle) image.Point"�p��f��������"�������func(*image.Rectangle) image.Point�� �\go.string."func(*image.Rectangle) image.Point"���þBtype.func(*"".Rectangle) "".Point� �� �������v÷I�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��\go.string."func(*image.Rectangle) image.Point"���p��Tgo.weak.type.*func(*"".Rectangle) "".Point���€��"runtime.zerovalue��� €�Btype.func(*"".Rectangle) "".Point���А�Btype.func(*"".Rectangle) "".Point���€��$type.*"".Rectangle�����type."".Point���þRgo.string."func(*image.Rectangle) string"�`��\���������������func(*image.Rectangle) string�� �Rgo.string."func(*image.Rectangle) string"���þ>type.func(*"".Rectangle) string� �� �������€_5�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Rgo.string."func(*image.Rectangle) string"���p��Pgo.weak.type.*func(*"".Rectangle) string���€��"runtime.zerovalue��� €�>type.func(*"".Rectangle) string���А�>type.func(*"".Rectangle) string���€��$type.*"".Rectangle�����type.string���þZgo.string."func(image.Point) image.Rectangle"�p��d��������!�������func(image.Point) image.Rectangle�� �Zgo.string."func(image.Point) image.Rectangle"���þ@type.func("".Point) "".Rectangle� �� �������ÇmËQ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Zgo.string."func(image.Point) image.Rectangle"���p��Rgo.weak.type.*func("".Point) "".Rectangle���€��"runtime.zerovalue��� €�@type.func("".Point) "".Rectangle���А�@type.func("".Point) "".Rectangle���€��type."".Point�����"type."".Rectangle���þ,go.string."func() int"�@��6��������
�������func() int�� �,go.string."func() int"���þtype.func() int����������å†9à�3���������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��,go.string."func() int"���p��0go.weak.type.*func() int���€��"runtime.zerovalue��� €�type.func() int���Ѐ�type.func() int���€��type.int���þ.go.string."func() bool"�@��8�������� �������func() bool�� �.go.string."func() bool"���þ type.func() bool����������TËx�3���������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��.go.string."func() bool"���p��2go.weak.type.*func() bool���€��"runtime.zerovalue��� €� type.func() bool���Ѐ� type.func() bool���€��type.bool���þJgo.string."func(int) image.Rectangle"�`��T���������������func(int) image.Rectangle�� �Jgo.string."func(int) image.Rectangle"���þ6type.func(int) "".Rectangle� �� �������À¹,e�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Jgo.string."func(int) image.Rectangle"���p��Hgo.weak.type.*func(int) "".Rectangle���€��"runtime.zerovalue��� €�6type.func(int) "".Rectangle���А�6type.func(int) "".Rectangle���€��type.int�����"type."".Rectangle���þbgo.string."func(image.Rectangle) image.Rectangle"�p��l��������%�������func(image.Rectangle) image.Rectangle�� �bgo.string."func(image.Rectangle) image.Rectangle"���þHtype.func("".Rectangle) "".Rectangle� �� �������a? B�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��bgo.string."func(image.Rectangle) image.Rectangle"���p��Zgo.weak.type.*func("".Rectangle) "".Rectangle���€��"runtime.zerovalue��� €�Htype.func("".Rectangle) "".Rectangle���А�Htype.func("".Rectangle) "".Rectangle���€��"type."".Rectangle�����"type."".Rectangle���þ<go.string."func() image.Point"�P��F���������������func() image.Point�� �<go.string."func() image.Point"���þ(type.func() "".Point����������$*|õ�3���������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��<go.string."func() image.Point"���p��:go.weak.type.*func() "".Point���€��"runtime.zerovalue��� €�(type.func() "".Point���Ѐ�(type.func() "".Point���€��type."".Point���þ$type.*"".Rectangle��° ��° �������DðÊ�6������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������œ  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��8go.string."*image.Rectangle"���p��6go.weak.type.**"".Rectangle���€��"runtime.zerovalue�����"type."".Rectangle���` �$type.*"".Rectangle���Àð�$type.*"".Rectangle���ð��go.string."Add"�����@type.func("".Point) "".Rectangle��� ��^type.func(*"".Rectangle, "".Point) "".Rectangle���°��&"".(*Rectangle).Add���À��&"".(*Rectangle).Add���Ð��"go.string."Canon"���ð��0type.func() "".Rectangle���€��Jtype.func(*"".Rectangle) "".Rectangle�����*"".(*Rectangle).Canon��� ��*"".(*Rectangle).Canon���°��go.string."Dx"���Ð��type.func() int���à��8type.func(*"".Rectangle) int���ð��$"".(*Rectangle).Dx���€��$"".(*Rectangle).Dx�����go.string."Dy"���°��type.func() int���À��8type.func(*"".Rectangle) int���Ð��$"".(*Rectangle).Dy���à��$"".(*Rectangle).Dy���ð��"go.string."Empty"����� type.func() bool��� ��:type.func(*"".Rectangle) bool���°��*"".(*Rectangle).Empty���À��*"".(*Rectangle).Empty���Ð��go.string."Eq"���ð��8type.func("".Rectangle) bool���€��Vtype.func(*"".Rectangle, "".Rectangle) bool�����$"".(*Rectangle).Eq��� ��$"".(*Rectangle).Eq���°��go.string."In"���Ð��8type.func("".Rectangle) bool���à��Vtype.func(*"".Rectangle, "".Rectangle) bool���ð��$"".(*Rectangle).In���€��$"".(*Rectangle).In�����"go.string."Inset"���°��6type.func(int) "".Rectangle���À��Ttype.func(*"".Rectangle, int) "".Rectangle���Ð��*"".(*Rectangle).Inset���à��*"".(*Rectangle).Inset���ð��*go.string."Intersect"�����Htype.func("".Rectangle) "".Rectangle��� ��ftype.func(*"".Rectangle, "".Rectangle) "".Rectangle���°��2"".(*Rectangle).Intersect���À��2"".(*Rectangle).Intersect���Ð��(go.string."Overlaps"���ð��8type.func("".Rectangle) bool���€ ��Vtype.func(*"".Rectangle, "".Rectangle) bool��� ��0"".(*Rectangle).Overlaps���  ��0"".(*Rectangle).Overlaps���° �� go.string."Size"���Ð ��(type.func() "".Point���à ��Btype.func(*"".Rectangle) "".Point���ð ��("".(*Rectangle).Size���€
��("".(*Rectangle).Size���
��$go.string."String"���°
��$type.func() string�����>type.func(*"".Rectangle) string���Ð
��,"".(*Rectangle).String���à
��,"".(*Rectangle).String���ð
��go.string."Sub"��� ��@type.func("".Point) "".Rectangle���  ��^type.func(*"".Rectangle, "".Point) "".Rectangle���° ��&"".(*Rectangle).Sub���À ��&"".(*Rectangle).Sub���Ð ��"go.string."Union"���ð ��Htype.func("".Rectangle) "".Rectangle���€ ��ftype.func(*"".Rectangle, "".Rectangle) "".Rectangle��� ��*"".(*Rectangle).Union���  ��*"".(*Rectangle).Union���þ6go.string."image.Rectangle"�@��@���������������image.Rectangle�� �6go.string."image.Rectangle"���þgo.string."Min"�0��(���������������Min�� �go.string."Min"���þgo.string."Max"�0��(���������������Max�� �go.string."Max"���þ|go.string."func(image.Rectangle, image.Point) image.Rectangle"���†��������2�������func(image.Rectangle, image.Point) image.Rectangle�� �|go.string."func(image.Rectangle, image.Point) image.Rectangle"���þ\type.func("".Rectangle, "".Point) "".Rectangle�°��°�������·ç�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��|go.string."func(image.Rectangle, image.Point) image.Rectangle"���p��ngo.weak.type.*func("".Rectangle, "".Point) "".Rectangle���€��"runtime.zerovalue��� €�\type.func("".Rectangle, "".Point) "".Rectangle���Р�\type.func("".Rectangle, "".Point) "".Rectangle���€��"type."".Rectangle�����type."".Point��� ��"type."".Rectangle���þJgo.string."func(image.Rectangle) int"�`��T���������������func(image.Rectangle) int�� �Jgo.string."func(image.Rectangle) int"���þ6type.func("".Rectangle) int� �� �������ç9Y¼�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Jgo.string."func(image.Rectangle) int"���p��Hgo.weak.type.*func("".Rectangle) int���€��"runtime.zerovalue��� €�6type.func("".Rectangle) int���А�6type.func("".Rectangle) int���€��"type."".Rectangle�����type.int���þngo.string."func(image.Rectangle, image.Rectangle) bool"�€��x��������+�������func(image.Rectangle, image.Rectangle) bool�� �ngo.string."func(image.Rectangle, image.Rectangle) bool"���þTtype.func("".Rectangle, "".Rectangle) bool�°��°�������ÿ˜8Ñ�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��ngo.string."func(image.Rectangle, image.Rectangle) bool"���p��fgo.weak.type.*func("".Rectangle, "".Rectangle) bool���€��"runtime.zerovalue��� €�Ttype.func("".Rectangle, "".Rectangle) bool���Р�Ttype.func("".Rectangle, "".Rectangle) bool���€��"type."".Rectangle�����"type."".Rectangle��� ��type.bool���þlgo.string."func(image.Rectangle, int) image.Rectangle"�€��v��������*�������func(image.Rectangle, int) image.Rectangle�� �lgo.string."func(image.Rectangle, int) image.Rectangle"���þRtype.func("".Rectangle, int) "".Rectangle�°��°�������}dÎ�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��lgo.string."func(image.Rectangle, int) image.Rectangle"���p��dgo.weak.type.*func("".Rectangle, int) "".Rectangle���€��"runtime.zerovalue��� €�Rtype.func("".Rectangle, int) "".Rectangle���Р�Rtype.func("".Rectangle, int) "".Rectangle���€��"type."".Rectangle�����type.int��� ��"type."".Rectangle���þ„go.string."func(image.Rectangle, image.Rectangle) image.Rectangle"���Ž��������6�������func(image.Rectangle, image.Rectangle) image.Rectangle�� �„go.string."func(image.Rectangle, image.Rectangle) image.Rectangle"���þdtype.func("".Rectangle, "".Rectangle) "".Rectangle�°��°�������M_Eå�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��„go.string."func(image.Rectangle, image.Rectangle) image.Rectangle"���p��vgo.weak.type.*func("".Rectangle, "".Rectangle) "".Rectangle���€��"runtime.zerovalue��� €�dtype.func("".Rectangle, "".Rectangle) "".Rectangle���Р�dtype.func("".Rectangle, "".Rectangle) "".Rectangle���€��"type."".Rectangle�����"type."".Rectangle��� ��"type."".Rectangle���þPgo.string."func(image.Rectangle) string"�`��Z���������������func(image.Rectangle) string�� �Pgo.string."func(image.Rectangle) string"���þ<type.func("".Rectangle) string� �� �������¨Ü7b�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Pgo.string."func(image.Rectangle) string"���p��Ngo.weak.type.*func("".Rectangle) string���€��"runtime.zerovalue��� €�<type.func("".Rectangle) string���А�<type.func("".Rectangle) string���€��"type."".Rectangle�����type.string���þ"type."".Rectangle��ð ��ð �������£•—É�™���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������¨ �� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��6go.string."image.Rectangle"���p��$type.*"".Rectangle���€��"runtime.zerovalue���À�"type."".Rectangle���À��go.string."Min"���à��type."".Point�����go.string."Max"���°��type."".Point���`à�"type."".Rectangle���à��*go.string."Rectangle"���ð��"go.importpath."".���€°�"type."".Rectangle���°��go.string."Add"���Ð��@type.func("".Point) "".Rectangle���à��\type.func("".Rectangle, "".Point) "".Rectangle���ð��&"".(*Rectangle).Add���€�� "".Rectangle.Add�����"go.string."Canon"���°��0type.func() "".Rectangle���À��Htype.func("".Rectangle) "".Rectangle���Ð��*"".(*Rectangle).Canon���à��$"".Rectangle.Canon���ð��go.string."Dx"�����type.func() int��� ��6type.func("".Rectangle) int���°��$"".(*Rectangle).Dx���À��"".Rectangle.Dx���Ð��go.string."Dy"���ð��type.func() int���€��6type.func("".Rectangle) int�����$"".(*Rectangle).Dy��� ��"".Rectangle.Dy���°��"go.string."Empty"���Ð�� type.func() bool���à��8type.func("".Rectangle) bool���ð��*"".(*Rectangle).Empty���€��$"".Rectangle.Empty�����go.string."Eq"���°��8type.func("".Rectangle) bool���À��Ttype.func("".Rectangle, "".Rectangle) bool���Ð��$"".(*Rectangle).Eq���à��"".Rectangle.Eq���ð��go.string."In"�����8type.func("".Rectangle) bool��� ��Ttype.func("".Rectangle, "".Rectangle) bool���°��$"".(*Rectangle).In���À��"".Rectangle.In���Ð��"go.string."Inset"���ð��6type.func(int) "".Rectangle���€ ��Rtype.func("".Rectangle, int) "".Rectangle��� ��*"".(*Rectangle).Inset���  ��$"".Rectangle.Inset���° ��*go.string."Intersect"���Ð ��Htype.func("".Rectangle) "".Rectangle���à ��dtype.func("".Rectangle, "".Rectangle) "".Rectangle���ð ��2"".(*Rectangle).Intersect���€
��,"".Rectangle.Intersect���
��(go.string."Overlaps"���°
��8type.func("".Rectangle) bool�����Ttype.func("".Rectangle, "".Rectangle) bool���Ð
��0"".(*Rectangle).Overlaps���à
��*"".Rectangle.Overlaps���ð
�� go.string."Size"��� ��(type.func() "".Point���  ��@type.func("".Rectangle) "".Point���° ��("".(*Rectangle).Size���À ��""".Rectangle.Size���Ð ��$go.string."String"���ð ��$type.func() string���€ ��<type.func("".Rectangle) string��� ��,"".(*Rectangle).String���  ��&"".Rectangle.String���° ��go.string."Sub"���Ð ��@type.func("".Point) "".Rectangle���à ��\type.func("".Rectangle, "".Point) "".Rectangle���ð ��&"".(*Rectangle).Sub���€ �� "".Rectangle.Sub��� ��"go.string."Union"���° ��Htype.func("".Rectangle) "".Rectangle���À ��dtype.func("".Rectangle, "".Rectangle) "".Rectangle���Ð ��*"".(*Rectangle).Union���à ��$"".Rectangle.Union���þDgo.string."func() image.Rectangle"�P��N���������������func() image.Rectangle�� �Dgo.string."func() image.Rectangle"���þ0type.func() "".Rectangle����������ìÍ´e�3���������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Dgo.string."func() image.Rectangle"���p��Bgo.weak.type.*func() "".Rectangle���€��"runtime.zerovalue��� €�0type.func() "".Rectangle���Ѐ�0type.func() "".Rectangle���€��"type."".Rectangle���þ<go.string."func() color.Model"�P��F���������������func() color.Model�� �<go.string."func() color.Model"���þ:type.func() image/color.Model����������‚{#�3���������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��<go.string."func() color.Model"���p��Lgo.weak.type.*func() image/color.Model���€��"runtime.zerovalue��� €�:type.func() image/color.Model���Ѐ�:type.func() image/color.Model���€��,type.image/color.Model���þ0go.string."*image.Image"�@��:�������� �������*image.Image�� �0go.string."*image.Image"���þtype.*"".Image�� �� �������CL¨è�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��0go.string."*image.Image"���p��.go.weak.type.**"".Image���€��"runtime.zerovalue�����type."".Image���þbruntime.gcbits.0x8c000000000000000000000000000000� �� Œ����������������þ.go.string."image.Image"�@��8�������� �������image.Image�� �.go.string."image.Image"���þgo.string."At"�0��&���������������At�� �go.string."At"���þ$go.string."Bounds"�0��.���������������Bounds�� �$go.string."Bounds"���þ,go.string."ColorModel"�@��6��������
�������ColorModel�� �,go.string."ColorModel"���þ"go.string."Image"�0��,���������������Image�� �"go.string."Image"���þtype."".Image�� �� �������ÜSÍ®����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x8c000000000000000000000000000000���P��.go.string."image.Image"���p��type.*"".Image���€��"runtime.zerovalue���À�type."".Image���À��go.string."At"���à��Jtype.func(int, int) image/color.Color���ð��$go.string."Bounds"�����0type.func() "".Rectangle��� ��,go.string."ColorModel"���À��:type.func() image/color.Model���`Ð�type."".Image���Ð��"go.string."Image"���à��"go.importpath."".���ð �type."".Image���þ`go.string."func(io.Reader) (image.Image, error)"�p��j��������$�������func(io.Reader) (image.Image, error)�� �`go.string."func(io.Reader) (image.Image, error)"���þLtype.func(io.Reader) ("".Image, error)�°��°�������‚ïº@�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��`go.string."func(io.Reader) (image.Image, error)"���p��^go.weak.type.*func(io.Reader) ("".Image, error)���€��"runtime.zerovalue��� €�Ltype.func(io.Reader) ("".Image, error)���А�Ltype.func(io.Reader) ("".Image, error)���€��type.io.Reader�����type."".Image��� ��type.error���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·a11c21977d0c39648c83179d370ce4b8� �� ���������V����þTgclocals·b51ba4d3e5142d442245970ca6341da4�(��(����������°��������þTgclocals·2bd0058e25364e522f9f24a53d6b8231�(��(������������Z����þ0type..hashfunc."".Config��������������(type..hash."".Config���þ,type..eqfunc."".Config��������������$type..eq."".Config���þ&type..alg."".Config� �� �������������������0type..hashfunc."".Config�����,type..eqfunc."".Config���þ2go.string."*image.Config"�@��<�������� �������*image.Config�� �2go.string."*image.Config"���þtype.*"".Config�� �� �������³`y�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��2go.string."*image.Config"���p��0go.weak.type.**"".Config���€��"runtime.zerovalue�����type."".Config���þbruntime.gcbits.0x8c440000000000000000000000000000� �� ŒD���������������þ0go.string."image.Config"�@��:�������� �������image.Config�� �0go.string."image.Config"���þ"go.string."Width"�0��,���������������Width�� �"go.string."Width"���þ$go.string."Height"�0��.���������������Height�� �$go.string."Height"���þ$go.string."Config"�0��.���������������Config�� �$go.string."Config"���þtype."".Config��€��€ �������Y³¯g��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ��&type..alg."".Config���0��bruntime.gcbits.0x8c440000000000000000000000000000���P��0go.string."image.Config"���p��type.*"".Config���€��"runtime.zerovalue���À�type."".Config���À��,go.string."ColorModel"���à��,type.image/color.Model�����"go.string."Width"���°��type.int���à��$go.string."Height"���€��type.int���`°�type."".Config���°��$go.string."Config"���À��"go.importpath."".���Ѐ�type."".Config���þbgo.string."func(io.Reader) (image.Config, error)"�p��l��������%�������func(io.Reader) (image.Config, error)�� �bgo.string."func(io.Reader) (image.Config, error)"���þNtype.func(io.Reader) ("".Config, error)�°��°�������ã3/ö�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��bgo.string."func(io.Reader) (image.Config, error)"���p��`go.weak.type.*func(io.Reader) ("".Config, error)���€��"runtime.zerovalue��� €�Ntype.func(io.Reader) ("".Config, error)���А�Ntype.func(io.Reader) ("".Config, error)���€��type.io.Reader�����type."".Config��� ��type.error���þ2go.string."*image.format"�@��<�������� �������*image.format�� �2go.string."*image.format"���þtype.*"".format�� �� �������ÃQ@M�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��2go.string."*image.format"���p��0go.weak.type.**"".format���€��"runtime.zerovalue�����type."".format���þbruntime.gcbits.0x48488800000000000000000000000000� �� HHˆ��������������þ0go.string."image.format"�@��:�������� �������image.format�� �0go.string."image.format"���þ go.string."name"�0��*���������������name�� � go.string."name"���þ"go.string."magic"�0��,���������������magic�� �"go.string."magic"���þ$go.string."decode"�0��.���������������decode�� �$go.string."decode"���þ0go.string."decodeConfig"�@��:�������� �������decodeConfig�� �0go.string."decodeConfig"���þ$go.string."format"�0��.���������������format�� �$go.string."format"���þtype."".format��Ð��Ð0�������ˆ@7¨���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������(�����������������������������������������������, à� runtime.algarray���0��bruntime.gcbits.0x48488800000000000000000000000000���P��0go.string."image.format"���p��type.*"".format���€��"runtime.zerovalue���À�type."".format���À�� go.string."name"���Ð��"go.importpath."".���à��type.string�����"go.string."magic"��� ��"go.importpath."".���°��type.string���à��$go.string."decode"���ð��"go.importpath."".���€��Ltype.func(io.Reader) ("".Image, error)���°��0go.string."decodeConfig"���À��"go.importpath."".���Ð��Ntype.func(io.Reader) ("".Config, error)���`€�type."".format���€��$go.string."format"�����"go.importpath."".��� Ð�type."".format���þbruntime.gcbits.0x48844400000000000000000000000000� �� H„D��������������þ4go.string."[]image.format"�@��>���������������[]image.format�� �4go.string."[]image.format"���þ type.[]"".format� �� �������2{1�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��4go.string."[]image.format"���p��2go.weak.type.*[]"".format���€��"runtime.zerovalue�����type."".format���þLgo.typelink.[]image.format/[]"".format�������������� type.[]"".format���þTgclocals·ff5b0da9bb1a442d12997989bec519c8� �� ���
������������þTgclocals·80616be8a57129c27a30d411740f1c83� �� ���������›°���þTgclocals·a310211a5d93ca643985188646602d0e� �� ���������������þTgclocals·1d679e9c7c6c168fe3ba3a0285c2de28� �� ������+���+´���þ&go.string."[]uint8"�0��0���������������[]uint8�� �&go.string."[]uint8"���þtype.[]uint8� �� �������ß~.8�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��&go.string."[]uint8"���p��*go.weak.type.*[]uint8���€��"runtime.zerovalue�����type.uint8���þ6go.typelink.[]uint8/[]uint8��������������type.[]uint8���þLgo.string."func(int) ([]uint8, error)"�`��V���������������func(int) ([]uint8, error)�� �Lgo.string."func(int) ([]uint8, error)"���þ>type.func(int) ([]uint8, error)�°��°�������<bCË�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."func(int) ([]uint8, error)"���p��Pgo.weak.type.*func(int) ([]uint8, error)���€��"runtime.zerovalue��� €�>type.func(int) ([]uint8, error)���А�>type.func(int) ([]uint8, error)���€��type.int�����type.[]uint8��� ��type.error���þLgo.string."func([]uint8) (int, error)"�`��V���������������func([]uint8) (int, error)�� �Lgo.string."func([]uint8) (int, error)"���þ>type.func([]uint8) (int, error)�°��°�������„N4P�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."func([]uint8) (int, error)"���p��Pgo.weak.type.*func([]uint8) (int, error)���€��"runtime.zerovalue��� €�>type.func([]uint8) (int, error)���А�>type.func([]uint8) (int, error)���€��type.[]uint8�����type.int��� ��type.error���þ2go.string."*image.reader"�@��<�������� �������*image.reader�� �2go.string."*image.reader"���þtype.*"".reader�� �� �������Œˆ–�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��2go.string."*image.reader"���p��0go.weak.type.**"".reader���€��"runtime.zerovalue�����type."".reader���þ0go.string."image.reader"�@��:�������� �������image.reader�� �0go.string."image.reader"���þ go.string."Peek"�0��*���������������Peek�� � go.string."Peek"���þ go.string."Read"�0��*���������������Read�� � go.string."Read"���þ$go.string."reader"�0��.���������������reader�� �$go.string."reader"���þtype."".reader��ð��ð������� ²€����������������������������������������������������������������������������������������������������������������������������������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x8c000000000000000000000000000000���P��0go.string."image.reader"���p��type.*"".reader���€��"runtime.zerovalue���À�type."".reader���À�� go.string."Peek"���à��>type.func(int) ([]uint8, error)���ð�� go.string."Read"�����>type.func([]uint8) (int, error)���` �type."".reader��� ��$go.string."reader"���°��"go.importpath."".���Àð�type."".reader���þbruntime.gcbits.0x48444444000000000000000000000000� �� HDDD�������������þ,go.string."image.RGBA"�@��6��������
�������image.RGBA�� �,go.string."image.RGBA"���þgo.string."Pix"�0��(���������������Pix�� �go.string."Pix"���þ$go.string."Stride"�0��.���������������Stride�� �$go.string."Stride"���þ go.string."Rect"�0��*���������������Rect�� � go.string."Rect"���þ go.string."RGBA"�0��*���������������RGBA�� � go.string."RGBA"���þtype."".RGBA��€��€@�������>#VÄ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x48444444000000000000000000000000���P��,go.string."image.RGBA"���p��type.*"".RGBA���€��"runtime.zerovalue���À�type."".RGBA���À��go.string."Pix"���à��type.[]uint8�����$go.string."Stride"���°��type.int���à�� go.string."Rect"���€��"type."".Rectangle���`°�type."".RGBA���°�� go.string."RGBA"���À��"go.importpath."".���Ѐ�type."".RGBA���þ.go.string."*image.RGBA"�@��8�������� �������*image.RGBA�� �.go.string."*image.RGBA"���þfgo.string."func(*image.RGBA, int, int) color.Color"�p��p��������'�������func(*image.RGBA, int, int) color.Color�� �fgo.string."func(*image.RGBA, int, int) color.Color"���þ^type.func(*"".RGBA, int, int) image/color.Color�À��À�������ì‡;ƒ�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��fgo.string."func(*image.RGBA, int, int) color.Color"���p��pgo.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.Color���€��type.*"".RGBA�����type.int��� ��type.int���°��,type.image/color.Color���þZgo.string."func(*image.RGBA) image.Rectangle"�p��d��������!�������func(*image.RGBA) image.Rectangle�� �Zgo.string."func(*image.RGBA) image.Rectangle"���þ@type.func(*"".RGBA) "".Rectangle� �� �������VbX �3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Zgo.string."func(*image.RGBA) image.Rectangle"���p��Rgo.weak.type.*func(*"".RGBA) "".Rectangle���€��"runtime.zerovalue��� €�@type.func(*"".RGBA) "".Rectangle���А�@type.func(*"".RGBA) "".Rectangle���€��type.*"".RGBA�����"type."".Rectangle���þRgo.string."func(*image.RGBA) color.Model"�`��\���������������func(*image.RGBA) color.Model�� �Rgo.string."func(*image.RGBA) color.Model"���þJtype.func(*"".RGBA) image/color.Model� �� �������;àmì�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Rgo.string."func(*image.RGBA) color.Model"���p��\go.weak.type.*func(*"".RGBA) image/color.Model���€��"runtime.zerovalue��� €�Jtype.func(*"".RGBA) image/color.Model���А�Jtype.func(*"".RGBA) image/color.Model���€��type.*"".RGBA�����,type.image/color.Model���þDgo.string."func(*image.RGBA) bool"�P��N���������������func(*image.RGBA) bool�� �Dgo.string."func(*image.RGBA) bool"���þ0type.func(*"".RGBA) bool� �� ������� ÆÇ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Dgo.string."func(*image.RGBA) bool"���p��Bgo.weak.type.*func(*"".RGBA) bool���€��"runtime.zerovalue��� €�0type.func(*"".RGBA) bool���А�0type.func(*"".RGBA) bool���€��type.*"".RGBA�����type.bool���þVgo.string."func(*image.RGBA, int, int) int"�`��`���������������func(*image.RGBA, int, int) int�� �Vgo.string."func(*image.RGBA, int, int) int"���þBtype.func(*"".RGBA, int, int) int�À��À�������Óãf·�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Vgo.string."func(*image.RGBA, int, int) int"���p��Tgo.weak.type.*func(*"".RGBA, int, int) int���€��"runtime.zerovalue��� €�Btype.func(*"".RGBA, int, int) int���а�Btype.func(*"".RGBA, int, int) int���€��type.*"".RGBA�����type.int��� ��type.int���°��type.int���þdgo.string."func(*image.RGBA, int, int) color.RGBA"�p��n��������&�������func(*image.RGBA, int, int) color.RGBA�� �dgo.string."func(*image.RGBA, int, int) color.RGBA"���þ\type.func(*"".RGBA, int, int) image/color.RGBA�À��À�������:-�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��dgo.string."func(*image.RGBA, int, int) color.RGBA"���p��ngo.weak.type.*func(*"".RGBA, int, int) image/color.RGBA���€��"runtime.zerovalue��� €�\type.func(*"".RGBA, int, int) image/color.RGBA���а�\type.func(*"".RGBA, int, int) image/color.RGBA���€��type.*"".RGBA�����type.int��� ��type.int���°��*type.image/color.RGBA���þhgo.string."func(*image.RGBA, int, int, color.Color)"�€��r��������(�������func(*image.RGBA, int, int, color.Color)�� �hgo.string."func(*image.RGBA, int, int, color.Color)"���þ`type.func(*"".RGBA, int, int, image/color.Color)�À��À�������ÿâ¤�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��hgo.string."func(*image.RGBA, int, int, color.Color)"���p��rgo.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.Color)���€��type.*"".RGBA�����type.int��� ��type.int���°��,type.image/color.Color���þfgo.string."func(*image.RGBA, int, int, color.RGBA)"�p��p��������'�������func(*image.RGBA, int, int, color.RGBA)�� �fgo.string."func(*image.RGBA, int, int, color.RGBA)"���þ^type.func(*"".RGBA, int, int, image/color.RGBA)�À��À�������çe1�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��fgo.string."func(*image.RGBA, int, int, color.RGBA)"���p��pgo.weak.type.*func(*"".RGBA, int, int, image/color.RGBA)���€��"runtime.zerovalue��� €�^type.func(*"".RGBA, int, int, image/color.RGBA)���ÐÀ�^type.func(*"".RGBA, int, int, image/color.RGBA)���€��type.*"".RGBA�����type.int��� ��type.int���°��*type.image/color.RGBA���þtgo.string."func(*image.RGBA, image.Rectangle) image.Image"�€��~��������.�������func(*image.RGBA, image.Rectangle) image.Image�� �tgo.string."func(*image.RGBA, image.Rectangle) image.Image"���þTtype.func(*"".RGBA, "".Rectangle) "".Image�°��°������� ˬ‹�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��tgo.string."func(*image.RGBA, image.Rectangle) image.Image"���p��fgo.weak.type.*func(*"".RGBA, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Ttype.func(*"".RGBA, "".Rectangle) "".Image���Р�Ttype.func(*"".RGBA, "".Rectangle) "".Image���€��type.*"".RGBA�����"type."".Rectangle��� ��type."".Image���þ$go.string."Opaque"�0��.���������������Opaque�� �$go.string."Opaque"���þ*go.string."PixOffset"�@��4�������� �������PixOffset�� �*go.string."PixOffset"���þ<go.string."func(int, int) int"�P��F���������������func(int, int) int�� �<go.string."func(int, int) int"���þ.type.func(int, int) int�°��°�������ÌBu�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��<go.string."func(int, int) int"���p��@go.weak.type.*func(int, int) int���€��"runtime.zerovalue��� €�.type.func(int, int) int���Р�.type.func(int, int) int���€��type.int�����type.int��� ��type.int���þ$go.string."RGBAAt"�0��.���������������RGBAAt�� �$go.string."RGBAAt"���þJgo.string."func(int, int) color.RGBA"�`��T���������������func(int, int) color.RGBA�� �Jgo.string."func(int, int) color.RGBA"���þHtype.func(int, int) image/color.RGBA�°��°�������M‹g�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Jgo.string."func(int, int) color.RGBA"���p��Zgo.weak.type.*func(int, int) image/color.RGBA���€��"runtime.zerovalue��� €�Htype.func(int, int) image/color.RGBA���Р�Htype.func(int, int) image/color.RGBA���€��type.int�����type.int��� ��*type.image/color.RGBA���þgo.string."Set"�0��(���������������Set�� �go.string."Set"���þNgo.string."func(int, int, color.Color)"�`��X���������������func(int, int, color.Color)�� �Ngo.string."func(int, int, color.Color)"���þLtype.func(int, int, image/color.Color)�°��°�������md~Õ�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Ngo.string."func(int, int, color.Color)"���p��^go.weak.type.*func(int, int, image/color.Color)���€��"runtime.zerovalue��� €�Ltype.func(int, int, image/color.Color)���а�Ltype.func(int, int, image/color.Color)���€��type.int�����type.int��� ��,type.image/color.Color���þ&go.string."SetRGBA"�0��0���������������SetRGBA�� �&go.string."SetRGBA"���þLgo.string."func(int, int, color.RGBA)"�`��V���������������func(int, int, color.RGBA)�� �Lgo.string."func(int, int, color.RGBA)"���þJtype.func(int, int, image/color.RGBA)�°��°�������qÌ$�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."func(int, int, color.RGBA)"���p��\go.weak.type.*func(int, int, image/color.RGBA)���€��"runtime.zerovalue��� €�Jtype.func(int, int, image/color.RGBA)���а�Jtype.func(int, int, image/color.RGBA)���€��type.int�����type.int��� ��*type.image/color.RGBA���þ(go.string."SubImage"�@��2���������������SubImage�� �(go.string."SubImage"���þZgo.string."func(image.Rectangle) image.Image"�p��d��������!�������func(image.Rectangle) image.Image�� �Zgo.string."func(image.Rectangle) image.Image"���þ@type.func("".Rectangle) "".Image� �� �������wûÁ£�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Zgo.string."func(image.Rectangle) image.Image"���p��Rgo.weak.type.*func("".Rectangle) "".Image���€��"runtime.zerovalue��� €�@type.func("".Rectangle) "".Image���А�@type.func("".Rectangle) "".Image���€��"type."".Rectangle�����type."".Image���þtype.*"".RGBA��Ð��Ð�������çª�6���������������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��.go.string."*image.RGBA"���p��,go.weak.type.**"".RGBA���€��"runtime.zerovalue�����type."".RGBA���` �type.*"".RGBA���Àð�type.*"".RGBA���ð��go.string."At"�����Jtype.func(int, int) image/color.Color��� ��^type.func(*"".RGBA, int, int) image/color.Color���°��"".(*RGBA).At���À��"".(*RGBA).At���Ð��$go.string."Bounds"���ð��0type.func() "".Rectangle���€��@type.func(*"".RGBA) "".Rectangle�����""".(*RGBA).Bounds��� ��""".(*RGBA).Bounds���°��,go.string."ColorModel"���Ð��:type.func() image/color.Model���à��Jtype.func(*"".RGBA) image/color.Model���ð��*"".(*RGBA).ColorModel���€��*"".(*RGBA).ColorModel�����$go.string."Opaque"���°�� type.func() bool���À��0type.func(*"".RGBA) bool���Ð��""".(*RGBA).Opaque���à��""".(*RGBA).Opaque���ð��*go.string."PixOffset"�����.type.func(int, int) int��� ��Btype.func(*"".RGBA, int, int) int���°��("".(*RGBA).PixOffset���À��("".(*RGBA).PixOffset���Ð��$go.string."RGBAAt"���ð��Htype.func(int, int) image/color.RGBA���€��\type.func(*"".RGBA, int, int) image/color.RGBA�����""".(*RGBA).RGBAAt��� ��""".(*RGBA).RGBAAt���°��go.string."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��`type.func(*"".RGBA, int, int, image/color.Color)���ð��"".(*RGBA).Set���€��"".(*RGBA).Set�����&go.string."SetRGBA"���°��Jtype.func(int, int, image/color.RGBA)���À��^type.func(*"".RGBA, int, int, image/color.RGBA)���Ð��$"".(*RGBA).SetRGBA���à��$"".(*RGBA).SetRGBA���ð��(go.string."SubImage"�����@type.func("".Rectangle) "".Image��� ��Ttype.func(*"".RGBA, "".Rectangle) "".Image���°��&"".(*RGBA).SubImage���À��&"".(*RGBA).SubImage���þ0go.string."image.RGBA64"�@��:�������� �������image.RGBA64�� �0go.string."image.RGBA64"���þ$go.string."RGBA64"�0��.���������������RGBA64�� �$go.string."RGBA64"���þtype."".RGBA64��€��€@�������Z˜4…���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x48444444000000000000000000000000���P��0go.string."image.RGBA64"���p��type.*"".RGBA64���€��"runtime.zerovalue���À�type."".RGBA64���À��go.string."Pix"���à��type.[]uint8�����$go.string."Stride"���°��type.int���à�� go.string."Rect"���€��"type."".Rectangle���`°�type."".RGBA64���°��$go.string."RGBA64"���À��"go.importpath."".���Ѐ�type."".RGBA64���þ2go.string."*image.RGBA64"�@��<�������� �������*image.RGBA64�� �2go.string."*image.RGBA64"���þjgo.string."func(*image.RGBA64, int, int) color.Color"�€��t��������)�������func(*image.RGBA64, int, int) color.Color�� �jgo.string."func(*image.RGBA64, int, int) color.Color"���þbtype.func(*"".RGBA64, int, int) image/color.Color�À��À�������¸ØIx�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��jgo.string."func(*image.RGBA64, int, int) color.Color"���p��tgo.weak.type.*func(*"".RGBA64, int, int) image/color.Color���€��"runtime.zerovalue��� €�btype.func(*"".RGBA64, int, int) image/color.Color���а�btype.func(*"".RGBA64, int, int) image/color.Color���€��type.*"".RGBA64�����type.int��� ��type.int���°��,type.image/color.Color���þ^go.string."func(*image.RGBA64) image.Rectangle"�p��h��������#�������func(*image.RGBA64) image.Rectangle�� �^go.string."func(*image.RGBA64) image.Rectangle"���þDtype.func(*"".RGBA64) "".Rectangle� �� �������LÜç�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��^go.string."func(*image.RGBA64) image.Rectangle"���p��Vgo.weak.type.*func(*"".RGBA64) "".Rectangle���€��"runtime.zerovalue��� €�Dtype.func(*"".RGBA64) "".Rectangle���А�Dtype.func(*"".RGBA64) "".Rectangle���€��type.*"".RGBA64�����"type."".Rectangle���þVgo.string."func(*image.RGBA64) color.Model"�`��`���������������func(*image.RGBA64) color.Model�� �Vgo.string."func(*image.RGBA64) color.Model"���þNtype.func(*"".RGBA64) image/color.Model� �� �������M\a�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Vgo.string."func(*image.RGBA64) color.Model"���p��`go.weak.type.*func(*"".RGBA64) image/color.Model���€��"runtime.zerovalue��� €�Ntype.func(*"".RGBA64) image/color.Model���А�Ntype.func(*"".RGBA64) image/color.Model���€��type.*"".RGBA64�����,type.image/color.Model���þHgo.string."func(*image.RGBA64) bool"�`��R���������������func(*image.RGBA64) bool�� �Hgo.string."func(*image.RGBA64) bool"���þ4type.func(*"".RGBA64) bool� �� �������`Ù �3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Hgo.string."func(*image.RGBA64) bool"���p��Fgo.weak.type.*func(*"".RGBA64) bool���€��"runtime.zerovalue��� €�4type.func(*"".RGBA64) bool���А�4type.func(*"".RGBA64) bool���€��type.*"".RGBA64�����type.bool���þZgo.string."func(*image.RGBA64, int, int) int"�p��d��������!�������func(*image.RGBA64, int, int) int�� �Zgo.string."func(*image.RGBA64, int, int) int"���þFtype.func(*"".RGBA64, int, int) int�À��À�������‡ ¹ë�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Zgo.string."func(*image.RGBA64, int, int) int"���p��Xgo.weak.type.*func(*"".RGBA64, int, int) int���€��"runtime.zerovalue��� €�Ftype.func(*"".RGBA64, int, int) int���а�Ftype.func(*"".RGBA64, int, int) int���€��type.*"".RGBA64�����type.int��� ��type.int���°��type.int���þlgo.string."func(*image.RGBA64, int, int) color.RGBA64"�€��v��������*�������func(*image.RGBA64, int, int) color.RGBA64�� �lgo.string."func(*image.RGBA64, int, int) color.RGBA64"���þdtype.func(*"".RGBA64, int, int) image/color.RGBA64�À��À�������ÿ·c6�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��lgo.string."func(*image.RGBA64, int, int) color.RGBA64"���p��vgo.weak.type.*func(*"".RGBA64, int, int) image/color.RGBA64���€��"runtime.zerovalue��� €�dtype.func(*"".RGBA64, int, int) image/color.RGBA64���а�dtype.func(*"".RGBA64, int, int) image/color.RGBA64���€��type.*"".RGBA64�����type.int��� ��type.int���°��.type.image/color.RGBA64���þlgo.string."func(*image.RGBA64, int, int, color.Color)"�€��v��������*�������func(*image.RGBA64, int, int, color.Color)�� �lgo.string."func(*image.RGBA64, int, int, color.Color)"���þdtype.func(*"".RGBA64, int, int, image/color.Color)�À��À�������”Ò1�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��lgo.string."func(*image.RGBA64, int, int, color.Color)"���p��vgo.weak.type.*func(*"".RGBA64, int, int, image/color.Color)���€��"runtime.zerovalue��� €�dtype.func(*"".RGBA64, int, int, image/color.Color)���ÐÀ�dtype.func(*"".RGBA64, int, int, image/color.Color)���€��type.*"".RGBA64�����type.int��� ��type.int���°��,type.image/color.Color���þngo.string."func(*image.RGBA64, int, int, color.RGBA64)"�€��x��������+�������func(*image.RGBA64, int, int, color.RGBA64)�� �ngo.string."func(*image.RGBA64, int, int, color.RGBA64)"���þftype.func(*"".RGBA64, int, int, image/color.RGBA64)�À��À�������H‹¥ÿ�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��ngo.string."func(*image.RGBA64, int, int, color.RGBA64)"���p��xgo.weak.type.*func(*"".RGBA64, int, int, image/color.RGBA64)���€��"runtime.zerovalue��� €�ftype.func(*"".RGBA64, int, int, image/color.RGBA64)���ÐÀ�ftype.func(*"".RGBA64, int, int, image/color.RGBA64)���€��type.*"".RGBA64�����type.int��� ��type.int���°��.type.image/color.RGBA64���þxgo.string."func(*image.RGBA64, image.Rectangle) image.Image"���‚��������0�������func(*image.RGBA64, image.Rectangle) image.Image�� �xgo.string."func(*image.RGBA64, image.Rectangle) image.Image"���þXtype.func(*"".RGBA64, "".Rectangle) "".Image�°��°�������9»z¥�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��xgo.string."func(*image.RGBA64, image.Rectangle) image.Image"���p��jgo.weak.type.*func(*"".RGBA64, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Xtype.func(*"".RGBA64, "".Rectangle) "".Image���Р�Xtype.func(*"".RGBA64, "".Rectangle) "".Image���€��type.*"".RGBA64�����"type."".Rectangle��� ��type."".Image���þ(go.string."RGBA64At"�@��2���������������RGBA64At�� �(go.string."RGBA64At"���þNgo.string."func(int, int) color.RGBA64"�`��X���������������func(int, int) color.RGBA64�� �Ngo.string."func(int, int) color.RGBA64"���þLtype.func(int, int) image/color.RGBA64�°��°�������BÆ»�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Ngo.string."func(int, int) color.RGBA64"���p��^go.weak.type.*func(int, int) image/color.RGBA64���€��"runtime.zerovalue��� €�Ltype.func(int, int) image/color.RGBA64���Р�Ltype.func(int, int) image/color.RGBA64���€��type.int�����type.int��� ��.type.image/color.RGBA64���þ*go.string."SetRGBA64"�@��4�������� �������SetRGBA64�� �*go.string."SetRGBA64"���þPgo.string."func(int, int, color.RGBA64)"�`��Z���������������func(int, int, color.RGBA64)�� �Pgo.string."func(int, int, color.RGBA64)"���þNtype.func(int, int, image/color.RGBA64)�°��°�������$‹àw�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Pgo.string."func(int, int, color.RGBA64)"���p��`go.weak.type.*func(int, int, image/color.RGBA64)���€��"runtime.zerovalue��� €�Ntype.func(int, int, image/color.RGBA64)���а�Ntype.func(int, int, image/color.RGBA64)���€��type.int�����type.int��� ��.type.image/color.RGBA64���þtype.*"".RGBA64��Ð��Ð�������‰Ò§�6���������������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��2go.string."*image.RGBA64"���p��0go.weak.type.**"".RGBA64���€��"runtime.zerovalue�����type."".RGBA64���` �type.*"".RGBA64���Àð�type.*"".RGBA64���ð��go.string."At"�����Jtype.func(int, int) image/color.Color��� ��btype.func(*"".RGBA64, int, int) image/color.Color���°��"".(*RGBA64).At���À��"".(*RGBA64).At���Ð��$go.string."Bounds"���ð��0type.func() "".Rectangle���€��Dtype.func(*"".RGBA64) "".Rectangle�����&"".(*RGBA64).Bounds��� ��&"".(*RGBA64).Bounds���°��,go.string."ColorModel"���Ð��:type.func() image/color.Model���à��Ntype.func(*"".RGBA64) image/color.Model���ð��."".(*RGBA64).ColorModel���€��."".(*RGBA64).ColorModel�����$go.string."Opaque"���°�� type.func() bool���À��4type.func(*"".RGBA64) bool���Ð��&"".(*RGBA64).Opaque���à��&"".(*RGBA64).Opaque���ð��*go.string."PixOffset"�����.type.func(int, int) int��� ��Ftype.func(*"".RGBA64, int, int) int���°��,"".(*RGBA64).PixOffset���À��,"".(*RGBA64).PixOffset���Ð��(go.string."RGBA64At"���ð��Ltype.func(int, int) image/color.RGBA64���€��dtype.func(*"".RGBA64, int, int) image/color.RGBA64�����*"".(*RGBA64).RGBA64At��� ��*"".(*RGBA64).RGBA64At���°��go.string."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��dtype.func(*"".RGBA64, int, int, image/color.Color)���ð�� "".(*RGBA64).Set���€�� "".(*RGBA64).Set�����*go.string."SetRGBA64"���°��Ntype.func(int, int, image/color.RGBA64)���À��ftype.func(*"".RGBA64, int, int, image/color.RGBA64)���Ð��,"".(*RGBA64).SetRGBA64���à��,"".(*RGBA64).SetRGBA64���ð��(go.string."SubImage"�����@type.func("".Rectangle) "".Image��� ��Xtype.func(*"".RGBA64, "".Rectangle) "".Image���°��*"".(*RGBA64).SubImage���À��*"".(*RGBA64).SubImage���þ.go.string."image.NRGBA"�@��8�������� �������image.NRGBA�� �.go.string."image.NRGBA"���þ"go.string."NRGBA"�0��,���������������NRGBA�� �"go.string."NRGBA"���þtype."".NRGBA��€��€@�������‘ü���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x48444444000000000000000000000000���P��.go.string."image.NRGBA"���p��type.*"".NRGBA���€��"runtime.zerovalue���À�type."".NRGBA���À��go.string."Pix"���à��type.[]uint8�����$go.string."Stride"���°��type.int���à�� go.string."Rect"���€��"type."".Rectangle���`°�type."".NRGBA���°��"go.string."NRGBA"���À��"go.importpath."".���Ѐ�type."".NRGBA���þ0go.string."*image.NRGBA"�@��:�������� �������*image.NRGBA�� �0go.string."*image.NRGBA"���þhgo.string."func(*image.NRGBA, int, int) color.Color"�€��r��������(�������func(*image.NRGBA, int, int) color.Color�� �hgo.string."func(*image.NRGBA, int, int) color.Color"���þ`type.func(*"".NRGBA, int, int) image/color.Color�À��À������� Ó÷ì�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��hgo.string."func(*image.NRGBA, int, int) color.Color"���p��rgo.weak.type.*func(*"".NRGBA, int, int) image/color.Color���€��"runtime.zerovalue��� €�`type.func(*"".NRGBA, int, int) image/color.Color���а�`type.func(*"".NRGBA, int, int) image/color.Color���€��type.*"".NRGBA�����type.int��� ��type.int���°��,type.image/color.Color���þ\go.string."func(*image.NRGBA) image.Rectangle"�p��f��������"�������func(*image.NRGBA) image.Rectangle�� �\go.string."func(*image.NRGBA) image.Rectangle"���þBtype.func(*"".NRGBA) "".Rectangle� �� �������>÷La�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��\go.string."func(*image.NRGBA) image.Rectangle"���p��Tgo.weak.type.*func(*"".NRGBA) "".Rectangle���€��"runtime.zerovalue��� €�Btype.func(*"".NRGBA) "".Rectangle���А�Btype.func(*"".NRGBA) "".Rectangle���€��type.*"".NRGBA�����"type."".Rectangle���þTgo.string."func(*image.NRGBA) color.Model"�`��^���������������func(*image.NRGBA) color.Model�� �Tgo.string."func(*image.NRGBA) color.Model"���þLtype.func(*"".NRGBA) image/color.Model� �� �������˜™×@�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Tgo.string."func(*image.NRGBA) color.Model"���p��^go.weak.type.*func(*"".NRGBA) image/color.Model���€��"runtime.zerovalue��� €�Ltype.func(*"".NRGBA) image/color.Model���А�Ltype.func(*"".NRGBA) image/color.Model���€��type.*"".NRGBA�����,type.image/color.Model���þhgo.string."func(*image.NRGBA, int, int) color.NRGBA"�€��r��������(�������func(*image.NRGBA, int, int) color.NRGBA�� �hgo.string."func(*image.NRGBA, int, int) color.NRGBA"���þ`type.func(*"".NRGBA, int, int) image/color.NRGBA�À��À�������¼\ƒÈ�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��hgo.string."func(*image.NRGBA, int, int) color.NRGBA"���p��rgo.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.NRGBA���€��type.*"".NRGBA�����type.int��� ��type.int���°��,type.image/color.NRGBA���þFgo.string."func(*image.NRGBA) bool"�P��P���������������func(*image.NRGBA) bool�� �Fgo.string."func(*image.NRGBA) bool"���þ2type.func(*"".NRGBA) bool� �� �������ڏ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Fgo.string."func(*image.NRGBA) bool"���p��Dgo.weak.type.*func(*"".NRGBA) bool���€��"runtime.zerovalue��� €�2type.func(*"".NRGBA) bool���А�2type.func(*"".NRGBA) bool���€��type.*"".NRGBA�����type.bool���þXgo.string."func(*image.NRGBA, int, int) int"�p��b�������� �������func(*image.NRGBA, int, int) int�� �Xgo.string."func(*image.NRGBA, int, int) int"���þDtype.func(*"".NRGBA, int, int) int�À��À�������¿¹�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Xgo.string."func(*image.NRGBA, int, int) int"���p��Vgo.weak.type.*func(*"".NRGBA, int, int) int���€��"runtime.zerovalue��� €�Dtype.func(*"".NRGBA, int, int) int���а�Dtype.func(*"".NRGBA, int, int) int���€��type.*"".NRGBA�����type.int��� ��type.int���°��type.int���þjgo.string."func(*image.NRGBA, int, int, color.Color)"�€��t��������)�������func(*image.NRGBA, int, int, color.Color)�� �jgo.string."func(*image.NRGBA, int, int, color.Color)"���þbtype.func(*"".NRGBA, int, int, image/color.Color)�À��À�������Ý»ìû�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��jgo.string."func(*image.NRGBA, int, int, color.Color)"���p��tgo.weak.type.*func(*"".NRGBA, int, int, image/color.Color)���€��"runtime.zerovalue��� €�btype.func(*"".NRGBA, int, int, image/color.Color)���ÐÀ�btype.func(*"".NRGBA, int, int, image/color.Color)���€��type.*"".NRGBA�����type.int��� ��type.int���°��,type.image/color.Color���þjgo.string."func(*image.NRGBA, int, int, color.NRGBA)"�€��t��������)�������func(*image.NRGBA, int, int, color.NRGBA)�� �jgo.string."func(*image.NRGBA, int, int, color.NRGBA)"���þbtype.func(*"".NRGBA, int, int, image/color.NRGBA)�À��À�������ÏƛÈ�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��jgo.string."func(*image.NRGBA, int, int, color.NRGBA)"���p��tgo.weak.type.*func(*"".NRGBA, int, int, image/color.NRGBA)���€��"runtime.zerovalue��� €�btype.func(*"".NRGBA, int, int, image/color.NRGBA)���ÐÀ�btype.func(*"".NRGBA, int, int, image/color.NRGBA)���€��type.*"".NRGBA�����type.int��� ��type.int���°��,type.image/color.NRGBA���þvgo.string."func(*image.NRGBA, image.Rectangle) image.Image"�€��€��������/�������func(*image.NRGBA, image.Rectangle) image.Image�� �vgo.string."func(*image.NRGBA, image.Rectangle) image.Image"���þVtype.func(*"".NRGBA, "".Rectangle) "".Image�°��°�������Drӂ�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��vgo.string."func(*image.NRGBA, image.Rectangle) image.Image"���p��hgo.weak.type.*func(*"".NRGBA, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Vtype.func(*"".NRGBA, "".Rectangle) "".Image���Р�Vtype.func(*"".NRGBA, "".Rectangle) "".Image���€��type.*"".NRGBA�����"type."".Rectangle��� ��type."".Image���þ&go.string."NRGBAAt"�0��0���������������NRGBAAt�� �&go.string."NRGBAAt"���þLgo.string."func(int, int) color.NRGBA"�`��V���������������func(int, int) color.NRGBA�� �Lgo.string."func(int, int) color.NRGBA"���þJtype.func(int, int) image/color.NRGBA�°��°�������Ä �3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."func(int, int) color.NRGBA"���p��\go.weak.type.*func(int, int) image/color.NRGBA���€��"runtime.zerovalue��� €�Jtype.func(int, int) image/color.NRGBA���Р�Jtype.func(int, int) image/color.NRGBA���€��type.int�����type.int��� ��,type.image/color.NRGBA���þ(go.string."SetNRGBA"�@��2���������������SetNRGBA�� �(go.string."SetNRGBA"���þNgo.string."func(int, int, color.NRGBA)"�`��X���������������func(int, int, color.NRGBA)�� �Ngo.string."func(int, int, color.NRGBA)"���þLtype.func(int, int, image/color.NRGBA)�°��°������� ‚�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Ngo.string."func(int, int, color.NRGBA)"���p��^go.weak.type.*func(int, int, image/color.NRGBA)���€��"runtime.zerovalue��� €�Ltype.func(int, int, image/color.NRGBA)���а�Ltype.func(int, int, image/color.NRGBA)���€��type.int�����type.int��� ��,type.image/color.NRGBA���þtype.*"".NRGBA��Ð��Ð������� ö“*�6���������������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��0go.string."*image.NRGBA"���p��.go.weak.type.**"".NRGBA���€��"runtime.zerovalue�����type."".NRGBA���` �type.*"".NRGBA���Àð�type.*"".NRGBA���ð��go.string."At"�����Jtype.func(int, int) image/color.Color��� ��`type.func(*"".NRGBA, int, int) image/color.Color���°��"".(*NRGBA).At���À��"".(*NRGBA).At���Ð��$go.string."Bounds"���ð��0type.func() "".Rectangle���€��Btype.func(*"".NRGBA) "".Rectangle�����$"".(*NRGBA).Bounds��� ��$"".(*NRGBA).Bounds���°��,go.string."ColorModel"���Ð��:type.func() image/color.Model���à��Ltype.func(*"".NRGBA) image/color.Model���ð��,"".(*NRGBA).ColorModel���€��,"".(*NRGBA).ColorModel�����&go.string."NRGBAAt"���°��Jtype.func(int, int) image/color.NRGBA���À��`type.func(*"".NRGBA, int, int) image/color.NRGBA���Ð��&"".(*NRGBA).NRGBAAt���à��&"".(*NRGBA).NRGBAAt���ð��$go.string."Opaque"����� type.func() bool��� ��2type.func(*"".NRGBA) bool���°��$"".(*NRGBA).Opaque���À��$"".(*NRGBA).Opaque���Ð��*go.string."PixOffset"���ð��.type.func(int, int) int���€��Dtype.func(*"".NRGBA, int, int) int�����*"".(*NRGBA).PixOffset��� ��*"".(*NRGBA).PixOffset���°��go.string."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��btype.func(*"".NRGBA, int, int, image/color.Color)���ð��"".(*NRGBA).Set���€��"".(*NRGBA).Set�����(go.string."SetNRGBA"���°��Ltype.func(int, int, image/color.NRGBA)���À��btype.func(*"".NRGBA, int, int, image/color.NRGBA)���Ð��("".(*NRGBA).SetNRGBA���à��("".(*NRGBA).SetNRGBA���ð��(go.string."SubImage"�����@type.func("".Rectangle) "".Image��� ��Vtype.func(*"".NRGBA, "".Rectangle) "".Image���°��("".(*NRGBA).SubImage���À��("".(*NRGBA).SubImage���þ2go.string."image.NRGBA64"�@��<�������� �������image.NRGBA64�� �2go.string."image.NRGBA64"���þ&go.string."NRGBA64"�0��0���������������NRGBA64�� �&go.string."NRGBA64"���þtype."".NRGBA64��€��€@�������Ûr»ò���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x48444444000000000000000000000000���P��2go.string."image.NRGBA64"���p�� type.*"".NRGBA64���€��"runtime.zerovalue���À�type."".NRGBA64���À��go.string."Pix"���à��type.[]uint8�����$go.string."Stride"���°��type.int���à�� go.string."Rect"���€��"type."".Rectangle���`°�type."".NRGBA64���°��&go.string."NRGBA64"���À��"go.importpath."".���Ѐ�type."".NRGBA64���þ4go.string."*image.NRGBA64"�@��>���������������*image.NRGBA64�� �4go.string."*image.NRGBA64"���þlgo.string."func(*image.NRGBA64, int, int) color.Color"�€��v��������*�������func(*image.NRGBA64, int, int) color.Color�� �lgo.string."func(*image.NRGBA64, int, int) color.Color"���þdtype.func(*"".NRGBA64, int, int) image/color.Color�À��À�������;m¬&�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��lgo.string."func(*image.NRGBA64, int, int) color.Color"���p��vgo.weak.type.*func(*"".NRGBA64, int, int) image/color.Color���€��"runtime.zerovalue��� €�dtype.func(*"".NRGBA64, int, int) image/color.Color���а�dtype.func(*"".NRGBA64, int, int) image/color.Color���€�� type.*"".NRGBA64�����type.int��� ��type.int���°��,type.image/color.Color���þ`go.string."func(*image.NRGBA64) image.Rectangle"�p��j��������$�������func(*image.NRGBA64) image.Rectangle�� �`go.string."func(*image.NRGBA64) image.Rectangle"���þFtype.func(*"".NRGBA64) "".Rectangle� �� �������Éa�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��`go.string."func(*image.NRGBA64) image.Rectangle"���p��Xgo.weak.type.*func(*"".NRGBA64) "".Rectangle���€��"runtime.zerovalue��� €�Ftype.func(*"".NRGBA64) "".Rectangle���А�Ftype.func(*"".NRGBA64) "".Rectangle���€�� type.*"".NRGBA64�����"type."".Rectangle���þXgo.string."func(*image.NRGBA64) color.Model"�p��b�������� �������func(*image.NRGBA64) color.Model�� �Xgo.string."func(*image.NRGBA64) color.Model"���þPtype.func(*"".NRGBA64) image/color.Model� �� �������Ãòlz�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Xgo.string."func(*image.NRGBA64) color.Model"���p��bgo.weak.type.*func(*"".NRGBA64) image/color.Model���€��"runtime.zerovalue��� €�Ptype.func(*"".NRGBA64) image/color.Model���А�Ptype.func(*"".NRGBA64) image/color.Model���€�� type.*"".NRGBA64�����,type.image/color.Model���þpgo.string."func(*image.NRGBA64, int, int) color.NRGBA64"�€��z��������,�������func(*image.NRGBA64, int, int) color.NRGBA64�� �pgo.string."func(*image.NRGBA64, int, int) color.NRGBA64"���þhtype.func(*"".NRGBA64, int, int) image/color.NRGBA64�À��À�������RbK�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��pgo.string."func(*image.NRGBA64, int, int) color.NRGBA64"���p��zgo.weak.type.*func(*"".NRGBA64, int, int) image/color.NRGBA64���€��"runtime.zerovalue��� €�htype.func(*"".NRGBA64, int, int) image/color.NRGBA64���а�htype.func(*"".NRGBA64, int, int) image/color.NRGBA64���€�� type.*"".NRGBA64�����type.int��� ��type.int���°��0type.image/color.NRGBA64���þJgo.string."func(*image.NRGBA64) bool"�`��T���������������func(*image.NRGBA64) bool�� �Jgo.string."func(*image.NRGBA64) bool"���þ6type.func(*"".NRGBA64) bool� �� �������\U¸�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Jgo.string."func(*image.NRGBA64) bool"���p��Hgo.weak.type.*func(*"".NRGBA64) bool���€��"runtime.zerovalue��� €�6type.func(*"".NRGBA64) bool���А�6type.func(*"".NRGBA64) bool���€�� type.*"".NRGBA64�����type.bool���þ\go.string."func(*image.NRGBA64, int, int) int"�p��f��������"�������func(*image.NRGBA64, int, int) int�� �\go.string."func(*image.NRGBA64, int, int) int"���þHtype.func(*"".NRGBA64, int, int) int�À��À�������³rY�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��\go.string."func(*image.NRGBA64, int, int) int"���p��Zgo.weak.type.*func(*"".NRGBA64, int, int) int���€��"runtime.zerovalue��� €�Htype.func(*"".NRGBA64, int, int) int���а�Htype.func(*"".NRGBA64, int, int) int���€�� type.*"".NRGBA64�����type.int��� ��type.int���°��type.int���þngo.string."func(*image.NRGBA64, int, int, color.Color)"�€��x��������+�������func(*image.NRGBA64, int, int, color.Color)�� �ngo.string."func(*image.NRGBA64, int, int, color.Color)"���þftype.func(*"".NRGBA64, int, int, image/color.Color)�À��À�������…Ém�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��ngo.string."func(*image.NRGBA64, int, int, color.Color)"���p��xgo.weak.type.*func(*"".NRGBA64, int, int, image/color.Color)���€��"runtime.zerovalue��� €�ftype.func(*"".NRGBA64, int, int, image/color.Color)���ÐÀ�ftype.func(*"".NRGBA64, int, int, image/color.Color)���€�� type.*"".NRGBA64�����type.int��� ��type.int���°��,type.image/color.Color���þrgo.string."func(*image.NRGBA64, int, int, color.NRGBA64)"�€��|��������-�������func(*image.NRGBA64, int, int, color.NRGBA64)�� �rgo.string."func(*image.NRGBA64, int, int, color.NRGBA64)"���þjtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)�À��À�������ëFL|�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��rgo.string."func(*image.NRGBA64, int, int, color.NRGBA64)"���p��|go.weak.type.*func(*"".NRGBA64, int, int, image/color.NRGBA64)���€��"runtime.zerovalue��� €�jtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)���ÐÀ�jtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)���€�� type.*"".NRGBA64�����type.int��� ��type.int���°��0type.image/color.NRGBA64���þzgo.string."func(*image.NRGBA64, image.Rectangle) image.Image"���„��������1�������func(*image.NRGBA64, image.Rectangle) image.Image�� �zgo.string."func(*image.NRGBA64, image.Rectangle) image.Image"���þZtype.func(*"".NRGBA64, "".Rectangle) "".Image�°��°�������hÀî¦�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��zgo.string."func(*image.NRGBA64, image.Rectangle) image.Image"���p��lgo.weak.type.*func(*"".NRGBA64, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Ztype.func(*"".NRGBA64, "".Rectangle) "".Image���Р�Ztype.func(*"".NRGBA64, "".Rectangle) "".Image���€�� type.*"".NRGBA64�����"type."".Rectangle��� ��type."".Image���þ*go.string."NRGBA64At"�@��4�������� �������NRGBA64At�� �*go.string."NRGBA64At"���þPgo.string."func(int, int) color.NRGBA64"�`��Z���������������func(int, int) color.NRGBA64�� �Pgo.string."func(int, int) color.NRGBA64"���þNtype.func(int, int) image/color.NRGBA64�°��°�������|¨c0�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Pgo.string."func(int, int) color.NRGBA64"���p��`go.weak.type.*func(int, int) image/color.NRGBA64���€��"runtime.zerovalue��� €�Ntype.func(int, int) image/color.NRGBA64���Р�Ntype.func(int, int) image/color.NRGBA64���€��type.int�����type.int��� ��0type.image/color.NRGBA64���þ,go.string."SetNRGBA64"�@��6��������
�������SetNRGBA64�� �,go.string."SetNRGBA64"���þRgo.string."func(int, int, color.NRGBA64)"�`��\���������������func(int, int, color.NRGBA64)�� �Rgo.string."func(int, int, color.NRGBA64)"���þPtype.func(int, int, image/color.NRGBA64)�°��°�������·M;s�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Rgo.string."func(int, int, color.NRGBA64)"���p��bgo.weak.type.*func(int, int, image/color.NRGBA64)���€��"runtime.zerovalue��� €�Ptype.func(int, int, image/color.NRGBA64)���а�Ptype.func(int, int, image/color.NRGBA64)���€��type.int�����type.int��� ��0type.image/color.NRGBA64���þ type.*"".NRGBA64��Ð��Ð�������ôOR�6���������������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��4go.string."*image.NRGBA64"���p��2go.weak.type.**"".NRGBA64���€��"runtime.zerovalue�����type."".NRGBA64���` � type.*"".NRGBA64���Àð� type.*"".NRGBA64���ð��go.string."At"�����Jtype.func(int, int) image/color.Color��� ��dtype.func(*"".NRGBA64, int, int) image/color.Color���°�� "".(*NRGBA64).At���À�� "".(*NRGBA64).At���Ð��$go.string."Bounds"���ð��0type.func() "".Rectangle���€��Ftype.func(*"".NRGBA64) "".Rectangle�����("".(*NRGBA64).Bounds��� ��("".(*NRGBA64).Bounds���°��,go.string."ColorModel"���Ð��:type.func() image/color.Model���à��Ptype.func(*"".NRGBA64) image/color.Model���ð��0"".(*NRGBA64).ColorModel���€��0"".(*NRGBA64).ColorModel�����*go.string."NRGBA64At"���°��Ntype.func(int, int) image/color.NRGBA64���À��htype.func(*"".NRGBA64, int, int) image/color.NRGBA64���Ð��."".(*NRGBA64).NRGBA64At���à��."".(*NRGBA64).NRGBA64At���ð��$go.string."Opaque"����� type.func() bool��� ��6type.func(*"".NRGBA64) bool���°��("".(*NRGBA64).Opaque���À��("".(*NRGBA64).Opaque���Ð��*go.string."PixOffset"���ð��.type.func(int, int) int���€��Htype.func(*"".NRGBA64, int, int) int�����."".(*NRGBA64).PixOffset��� ��."".(*NRGBA64).PixOffset���°��go.string."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��ftype.func(*"".NRGBA64, int, int, image/color.Color)���ð��""".(*NRGBA64).Set���€��""".(*NRGBA64).Set�����,go.string."SetNRGBA64"���°��Ptype.func(int, int, image/color.NRGBA64)���À��jtype.func(*"".NRGBA64, int, int, image/color.NRGBA64)���Ð��0"".(*NRGBA64).SetNRGBA64���à��0"".(*NRGBA64).SetNRGBA64���ð��(go.string."SubImage"�����@type.func("".Rectangle) "".Image��� ��Ztype.func(*"".NRGBA64, "".Rectangle) "".Image���°��,"".(*NRGBA64).SubImage���À��,"".(*NRGBA64).SubImage���þ.go.string."image.Alpha"�@��8�������� �������image.Alpha�� �.go.string."image.Alpha"���þ"go.string."Alpha"�0��,���������������Alpha�� �"go.string."Alpha"���þtype."".Alpha��€��€@�������×,=Ò���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x48444444000000000000000000000000���P��.go.string."image.Alpha"���p��type.*"".Alpha���€��"runtime.zerovalue���À�type."".Alpha���À��go.string."Pix"���à��type.[]uint8�����$go.string."Stride"���°��type.int���à�� go.string."Rect"���€��"type."".Rectangle���`°�type."".Alpha���°��"go.string."Alpha"���À��"go.importpath."".���Ѐ�type."".Alpha���þ0go.string."*image.Alpha"�@��:�������� �������*image.Alpha�� �0go.string."*image.Alpha"���þhgo.string."func(*image.Alpha, int, int) color.Alpha"�€��r��������(�������func(*image.Alpha, int, int) color.Alpha�� �hgo.string."func(*image.Alpha, int, int) color.Alpha"���þ`type.func(*"".Alpha, int, int) image/color.Alpha�À��À�������Š>ˆ�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��hgo.string."func(*image.Alpha, int, int) color.Alpha"���p��rgo.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.Alpha���€��type.*"".Alpha�����type.int��� ��type.int���°��,type.image/color.Alpha���þhgo.string."func(*image.Alpha, int, int) color.Color"�€��r��������(�������func(*image.Alpha, int, int) color.Color�� �hgo.string."func(*image.Alpha, int, int) color.Color"���þ`type.func(*"".Alpha, int, int) image/color.Color�À��À�������™dfú�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��hgo.string."func(*image.Alpha, int, int) color.Color"���p��rgo.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.Color���€��type.*"".Alpha�����type.int��� ��type.int���°��,type.image/color.Color���þ\go.string."func(*image.Alpha) image.Rectangle"�p��f��������"�������func(*image.Alpha) image.Rectangle�� �\go.string."func(*image.Alpha) image.Rectangle"���þBtype.func(*"".Alpha) "".Rectangle� �� �������ӓôt�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��\go.string."func(*image.Alpha) image.Rectangle"���p��Tgo.weak.type.*func(*"".Alpha) "".Rectangle���€��"runtime.zerovalue��� €�Btype.func(*"".Alpha) "".Rectangle���А�Btype.func(*"".Alpha) "".Rectangle���€��type.*"".Alpha�����"type."".Rectangle���þTgo.string."func(*image.Alpha) color.Model"�`��^���������������func(*image.Alpha) color.Model�� �Tgo.string."func(*image.Alpha) color.Model"���þLtype.func(*"".Alpha) image/color.Model� �� �������ë‹çY�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Tgo.string."func(*image.Alpha) color.Model"���p��^go.weak.type.*func(*"".Alpha) image/color.Model���€��"runtime.zerovalue��� €�Ltype.func(*"".Alpha) image/color.Model���А�Ltype.func(*"".Alpha) image/color.Model���€��type.*"".Alpha�����,type.image/color.Model���þFgo.string."func(*image.Alpha) bool"�P��P���������������func(*image.Alpha) bool�� �Fgo.string."func(*image.Alpha) bool"���þ2type.func(*"".Alpha) bool� �� �������ÂgPO�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Fgo.string."func(*image.Alpha) bool"���p��Dgo.weak.type.*func(*"".Alpha) bool���€��"runtime.zerovalue��� €�2type.func(*"".Alpha) bool���А�2type.func(*"".Alpha) bool���€��type.*"".Alpha�����type.bool���þXgo.string."func(*image.Alpha, int, int) int"�p��b�������� �������func(*image.Alpha, int, int) int�� �Xgo.string."func(*image.Alpha, int, int) int"���þDtype.func(*"".Alpha, int, int) int�À��À�������—½ìw�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Xgo.string."func(*image.Alpha, int, int) int"���p��Vgo.weak.type.*func(*"".Alpha, int, int) int���€��"runtime.zerovalue��� €�Dtype.func(*"".Alpha, int, int) int���а�Dtype.func(*"".Alpha, int, int) int���€��type.*"".Alpha�����type.int��� ��type.int���°��type.int���þjgo.string."func(*image.Alpha, int, int, color.Color)"�€��t��������)�������func(*image.Alpha, int, int, color.Color)�� �jgo.string."func(*image.Alpha, int, int, color.Color)"���þbtype.func(*"".Alpha, int, int, image/color.Color)�À��À�������¾ª}�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��jgo.string."func(*image.Alpha, int, int, color.Color)"���p��tgo.weak.type.*func(*"".Alpha, int, int, image/color.Color)���€��"runtime.zerovalue��� €�btype.func(*"".Alpha, int, int, image/color.Color)���ÐÀ�btype.func(*"".Alpha, int, int, image/color.Color)���€��type.*"".Alpha�����type.int��� ��type.int���°��,type.image/color.Color���þjgo.string."func(*image.Alpha, int, int, color.Alpha)"�€��t��������)�������func(*image.Alpha, int, int, color.Alpha)�� �jgo.string."func(*image.Alpha, int, int, color.Alpha)"���þbtype.func(*"".Alpha, int, int, image/color.Alpha)�À��À�������¿L1�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��jgo.string."func(*image.Alpha, int, int, color.Alpha)"���p��tgo.weak.type.*func(*"".Alpha, int, int, image/color.Alpha)���€��"runtime.zerovalue��� €�btype.func(*"".Alpha, int, int, image/color.Alpha)���ÐÀ�btype.func(*"".Alpha, int, int, image/color.Alpha)���€��type.*"".Alpha�����type.int��� ��type.int���°��,type.image/color.Alpha���þvgo.string."func(*image.Alpha, image.Rectangle) image.Image"�€��€��������/�������func(*image.Alpha, image.Rectangle) image.Image�� �vgo.string."func(*image.Alpha, image.Rectangle) image.Image"���þVtype.func(*"".Alpha, "".Rectangle) "".Image�°��°�������ۀŸ�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��vgo.string."func(*image.Alpha, image.Rectangle) image.Image"���p��hgo.weak.type.*func(*"".Alpha, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Vtype.func(*"".Alpha, "".Rectangle) "".Image���Р�Vtype.func(*"".Alpha, "".Rectangle) "".Image���€��type.*"".Alpha�����"type."".Rectangle��� ��type."".Image���þ&go.string."AlphaAt"�0��0���������������AlphaAt�� �&go.string."AlphaAt"���þLgo.string."func(int, int) color.Alpha"�`��V���������������func(int, int) color.Alpha�� �Lgo.string."func(int, int) color.Alpha"���þJtype.func(int, int) image/color.Alpha�°��°�������t=¼ü�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."func(int, int) color.Alpha"���p��\go.weak.type.*func(int, int) image/color.Alpha���€��"runtime.zerovalue��� €�Jtype.func(int, int) image/color.Alpha���Р�Jtype.func(int, int) image/color.Alpha���€��type.int�����type.int��� ��,type.image/color.Alpha���þ(go.string."SetAlpha"�@��2���������������SetAlpha�� �(go.string."SetAlpha"���þNgo.string."func(int, int, color.Alpha)"�`��X���������������func(int, int, color.Alpha)�� �Ngo.string."func(int, int, color.Alpha)"���þLtype.func(int, int, image/color.Alpha)�°��°�������5·CP�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Ngo.string."func(int, int, color.Alpha)"���p��^go.weak.type.*func(int, int, image/color.Alpha)���€��"runtime.zerovalue��� €�Ltype.func(int, int, image/color.Alpha)���а�Ltype.func(int, int, image/color.Alpha)���€��type.int�����type.int��� ��,type.image/color.Alpha���þtype.*"".Alpha��Ð��Ð�������Úܸ�6���������������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��0go.string."*image.Alpha"���p��.go.weak.type.**"".Alpha���€��"runtime.zerovalue�����type."".Alpha���` �type.*"".Alpha���Àð�type.*"".Alpha���ð��&go.string."AlphaAt"�����Jtype.func(int, int) image/color.Alpha��� ��`type.func(*"".Alpha, int, int) image/color.Alpha���°��&"".(*Alpha).AlphaAt���À��&"".(*Alpha).AlphaAt���Ð��go.string."At"���ð��Jtype.func(int, int) image/color.Color���€��`type.func(*"".Alpha, int, int) image/color.Color�����"".(*Alpha).At��� ��"".(*Alpha).At���°��$go.string."Bounds"���Ð��0type.func() "".Rectangle���à��Btype.func(*"".Alpha) "".Rectangle���ð��$"".(*Alpha).Bounds���€��$"".(*Alpha).Bounds�����,go.string."ColorModel"���°��:type.func() image/color.Model���À��Ltype.func(*"".Alpha) image/color.Model���Ð��,"".(*Alpha).ColorModel���à��,"".(*Alpha).ColorModel���ð��$go.string."Opaque"����� type.func() bool��� ��2type.func(*"".Alpha) bool���°��$"".(*Alpha).Opaque���À��$"".(*Alpha).Opaque���Ð��*go.string."PixOffset"���ð��.type.func(int, int) int���€��Dtype.func(*"".Alpha, int, int) int�����*"".(*Alpha).PixOffset��� ��*"".(*Alpha).PixOffset���°��go.string."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��btype.func(*"".Alpha, int, int, image/color.Color)���ð��"".(*Alpha).Set���€��"".(*Alpha).Set�����(go.string."SetAlpha"���°��Ltype.func(int, int, image/color.Alpha)���À��btype.func(*"".Alpha, int, int, image/color.Alpha)���Ð��("".(*Alpha).SetAlpha���à��("".(*Alpha).SetAlpha���ð��(go.string."SubImage"�����@type.func("".Rectangle) "".Image��� ��Vtype.func(*"".Alpha, "".Rectangle) "".Image���°��("".(*Alpha).SubImage���À��("".(*Alpha).SubImage���þ2go.string."image.Alpha16"�@��<�������� �������image.Alpha16�� �2go.string."image.Alpha16"���þ&go.string."Alpha16"�0��0���������������Alpha16�� �&go.string."Alpha16"���þtype."".Alpha16��€��€@�������àD·{���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x48444444000000000000000000000000���P��2go.string."image.Alpha16"���p�� type.*"".Alpha16���€��"runtime.zerovalue���À�type."".Alpha16���À��go.string."Pix"���à��type.[]uint8�����$go.string."Stride"���°��type.int���à�� go.string."Rect"���€��"type."".Rectangle���`°�type."".Alpha16���°��&go.string."Alpha16"���À��"go.importpath."".���Ѐ�type."".Alpha16���þ4go.string."*image.Alpha16"�@��>���������������*image.Alpha16�� �4go.string."*image.Alpha16"���þpgo.string."func(*image.Alpha16, int, int) color.Alpha16"�€��z��������,�������func(*image.Alpha16, int, int) color.Alpha16�� �pgo.string."func(*image.Alpha16, int, int) color.Alpha16"���þhtype.func(*"".Alpha16, int, int) image/color.Alpha16�À��À�������iÀ•¾�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��pgo.string."func(*image.Alpha16, int, int) color.Alpha16"���p��zgo.weak.type.*func(*"".Alpha16, int, int) image/color.Alpha16���€��"runtime.zerovalue��� €�htype.func(*"".Alpha16, int, int) image/color.Alpha16���а�htype.func(*"".Alpha16, int, int) image/color.Alpha16���€�� type.*"".Alpha16�����type.int��� ��type.int���°��0type.image/color.Alpha16���þlgo.string."func(*image.Alpha16, int, int) color.Color"�€��v��������*�������func(*image.Alpha16, int, int) color.Color�� �lgo.string."func(*image.Alpha16, int, int) color.Color"���þdtype.func(*"".Alpha16, int, int) image/color.Color�À��À�������¿[€­�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��lgo.string."func(*image.Alpha16, int, int) color.Color"���p��vgo.weak.type.*func(*"".Alpha16, int, int) image/color.Color���€��"runtime.zerovalue��� €�dtype.func(*"".Alpha16, int, int) image/color.Color���а�dtype.func(*"".Alpha16, int, int) image/color.Color���€�� type.*"".Alpha16�����type.int��� ��type.int���°��,type.image/color.Color���þ`go.string."func(*image.Alpha16) image.Rectangle"�p��j��������$�������func(*image.Alpha16) image.Rectangle�� �`go.string."func(*image.Alpha16) image.Rectangle"���þFtype.func(*"".Alpha16) "".Rectangle� �� �������„„^;�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��`go.string."func(*image.Alpha16) image.Rectangle"���p��Xgo.weak.type.*func(*"".Alpha16) "".Rectangle���€��"runtime.zerovalue��� €�Ftype.func(*"".Alpha16) "".Rectangle���А�Ftype.func(*"".Alpha16) "".Rectangle���€�� type.*"".Alpha16�����"type."".Rectangle���þXgo.string."func(*image.Alpha16) color.Model"�p��b�������� �������func(*image.Alpha16) color.Model�� �Xgo.string."func(*image.Alpha16) color.Model"���þPtype.func(*"".Alpha16) image/color.Model� �� �������#*ëN�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Xgo.string."func(*image.Alpha16) color.Model"���p��bgo.weak.type.*func(*"".Alpha16) image/color.Model���€��"runtime.zerovalue��� €�Ptype.func(*"".Alpha16) image/color.Model���А�Ptype.func(*"".Alpha16) image/color.Model���€�� type.*"".Alpha16�����,type.image/color.Model���þJgo.string."func(*image.Alpha16) bool"�`��T���������������func(*image.Alpha16) bool�� �Jgo.string."func(*image.Alpha16) bool"���þ6type.func(*"".Alpha16) bool� �� �������‘bcÁ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Jgo.string."func(*image.Alpha16) bool"���p��Hgo.weak.type.*func(*"".Alpha16) bool���€��"runtime.zerovalue��� €�6type.func(*"".Alpha16) bool���А�6type.func(*"".Alpha16) bool���€�� type.*"".Alpha16�����type.bool���þ\go.string."func(*image.Alpha16, int, int) int"�p��f��������"�������func(*image.Alpha16, int, int) int�� �\go.string."func(*image.Alpha16, int, int) int"���þHtype.func(*"".Alpha16, int, int) int�À��À�������¶ žK�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��\go.string."func(*image.Alpha16, int, int) int"���p��Zgo.weak.type.*func(*"".Alpha16, int, int) int���€��"runtime.zerovalue��� €�Htype.func(*"".Alpha16, int, int) int���а�Htype.func(*"".Alpha16, int, int) int���€�� type.*"".Alpha16�����type.int��� ��type.int���°��type.int���þngo.string."func(*image.Alpha16, int, int, color.Color)"�€��x��������+�������func(*image.Alpha16, int, int, color.Color)�� �ngo.string."func(*image.Alpha16, int, int, color.Color)"���þftype.func(*"".Alpha16, int, int, image/color.Color)�À��À�������Ž°¢h�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��ngo.string."func(*image.Alpha16, int, int, color.Color)"���p��xgo.weak.type.*func(*"".Alpha16, int, int, image/color.Color)���€��"runtime.zerovalue��� €�ftype.func(*"".Alpha16, int, int, image/color.Color)���ÐÀ�ftype.func(*"".Alpha16, int, int, image/color.Color)���€�� type.*"".Alpha16�����type.int��� ��type.int���°��,type.image/color.Color���þrgo.string."func(*image.Alpha16, int, int, color.Alpha16)"�€��|��������-�������func(*image.Alpha16, int, int, color.Alpha16)�� �rgo.string."func(*image.Alpha16, int, int, color.Alpha16)"���þjtype.func(*"".Alpha16, int, int, image/color.Alpha16)�À��À������� &œõ�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��rgo.string."func(*image.Alpha16, int, int, color.Alpha16)"���p��|go.weak.type.*func(*"".Alpha16, int, int, image/color.Alpha16)���€��"runtime.zerovalue��� €�jtype.func(*"".Alpha16, int, int, image/color.Alpha16)���ÐÀ�jtype.func(*"".Alpha16, int, int, image/color.Alpha16)���€�� type.*"".Alpha16�����type.int��� ��type.int���°��0type.image/color.Alpha16���þzgo.string."func(*image.Alpha16, image.Rectangle) image.Image"���„��������1�������func(*image.Alpha16, image.Rectangle) image.Image�� �zgo.string."func(*image.Alpha16, image.Rectangle) image.Image"���þZtype.func(*"".Alpha16, "".Rectangle) "".Image�°��°�������i—8 �3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��zgo.string."func(*image.Alpha16, image.Rectangle) image.Image"���p��lgo.weak.type.*func(*"".Alpha16, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Ztype.func(*"".Alpha16, "".Rectangle) "".Image���Р�Ztype.func(*"".Alpha16, "".Rectangle) "".Image���€�� type.*"".Alpha16�����"type."".Rectangle��� ��type."".Image���þ*go.string."Alpha16At"�@��4�������� �������Alpha16At�� �*go.string."Alpha16At"���þPgo.string."func(int, int) color.Alpha16"�`��Z���������������func(int, int) color.Alpha16�� �Pgo.string."func(int, int) color.Alpha16"���þNtype.func(int, int) image/color.Alpha16�°��°�������AŒd!�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Pgo.string."func(int, int) color.Alpha16"���p��`go.weak.type.*func(int, int) image/color.Alpha16���€��"runtime.zerovalue��� €�Ntype.func(int, int) image/color.Alpha16���Р�Ntype.func(int, int) image/color.Alpha16���€��type.int�����type.int��� ��0type.image/color.Alpha16���þ,go.string."SetAlpha16"�@��6��������
�������SetAlpha16�� �,go.string."SetAlpha16"���þRgo.string."func(int, int, color.Alpha16)"�`��\���������������func(int, int, color.Alpha16)�� �Rgo.string."func(int, int, color.Alpha16)"���þPtype.func(int, int, image/color.Alpha16)�°��°�������ø­Z|�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Rgo.string."func(int, int, color.Alpha16)"���p��bgo.weak.type.*func(int, int, image/color.Alpha16)���€��"runtime.zerovalue��� €�Ptype.func(int, int, image/color.Alpha16)���а�Ptype.func(int, int, image/color.Alpha16)���€��type.int�����type.int��� ��0type.image/color.Alpha16���þ type.*"".Alpha16��Ð��Ð�������6L”æ�6���������������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��4go.string."*image.Alpha16"���p��2go.weak.type.**"".Alpha16���€��"runtime.zerovalue�����type."".Alpha16���` � type.*"".Alpha16���Àð� type.*"".Alpha16���ð��*go.string."Alpha16At"�����Ntype.func(int, int) image/color.Alpha16��� ��htype.func(*"".Alpha16, int, int) image/color.Alpha16���°��."".(*Alpha16).Alpha16At���À��."".(*Alpha16).Alpha16At���Ð��go.string."At"���ð��Jtype.func(int, int) image/color.Color���€��dtype.func(*"".Alpha16, int, int) image/color.Color����� "".(*Alpha16).At��� �� "".(*Alpha16).At���°��$go.string."Bounds"���Ð��0type.func() "".Rectangle���à��Ftype.func(*"".Alpha16) "".Rectangle���ð��("".(*Alpha16).Bounds���€��("".(*Alpha16).Bounds�����,go.string."ColorModel"���°��:type.func() image/color.Model���À��Ptype.func(*"".Alpha16) image/color.Model���Ð��0"".(*Alpha16).ColorModel���à��0"".(*Alpha16).ColorModel���ð��$go.string."Opaque"����� type.func() bool��� ��6type.func(*"".Alpha16) bool���°��("".(*Alpha16).Opaque���À��("".(*Alpha16).Opaque���Ð��*go.string."PixOffset"���ð��.type.func(int, int) int���€��Htype.func(*"".Alpha16, int, int) int�����."".(*Alpha16).PixOffset��� ��."".(*Alpha16).PixOffset���°��go.string."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��ftype.func(*"".Alpha16, int, int, image/color.Color)���ð��""".(*Alpha16).Set���€��""".(*Alpha16).Set�����,go.string."SetAlpha16"���°��Ptype.func(int, int, image/color.Alpha16)���À��jtype.func(*"".Alpha16, int, int, image/color.Alpha16)���Ð��0"".(*Alpha16).SetAlpha16���à��0"".(*Alpha16).SetAlpha16���ð��(go.string."SubImage"�����@type.func("".Rectangle) "".Image��� ��Ztype.func(*"".Alpha16, "".Rectangle) "".Image���°��,"".(*Alpha16).SubImage���À��,"".(*Alpha16).SubImage���þ,go.string."image.Gray"�@��6��������
�������image.Gray�� �,go.string."image.Gray"���þ go.string."Gray"�0��*���������������Gray�� � go.string."Gray"���þtype."".Gray��€��€@�������a>ä1���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x48444444000000000000000000000000���P��,go.string."image.Gray"���p��type.*"".Gray���€��"runtime.zerovalue���À�type."".Gray���À��go.string."Pix"���à��type.[]uint8�����$go.string."Stride"���°��type.int���à�� go.string."Rect"���€��"type."".Rectangle���`°�type."".Gray���°�� go.string."Gray"���À��"go.importpath."".���Ѐ�type."".Gray���þ.go.string."*image.Gray"�@��8�������� �������*image.Gray�� �.go.string."*image.Gray"���þfgo.string."func(*image.Gray, int, int) color.Color"�p��p��������'�������func(*image.Gray, int, int) color.Color�� �fgo.string."func(*image.Gray, int, int) color.Color"���þ^type.func(*"".Gray, int, int) image/color.Color�À��À�������9kK�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��fgo.string."func(*image.Gray, int, int) color.Color"���p��pgo.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.Color���€��type.*"".Gray�����type.int��� ��type.int���°��,type.image/color.Color���þZgo.string."func(*image.Gray) image.Rectangle"�p��d��������!�������func(*image.Gray) image.Rectangle�� �Zgo.string."func(*image.Gray) image.Rectangle"���þ@type.func(*"".Gray) "".Rectangle� �� �������°¸e�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Zgo.string."func(*image.Gray) image.Rectangle"���p��Rgo.weak.type.*func(*"".Gray) "".Rectangle���€��"runtime.zerovalue��� €�@type.func(*"".Gray) "".Rectangle���А�@type.func(*"".Gray) "".Rectangle���€��type.*"".Gray�����"type."".Rectangle���þRgo.string."func(*image.Gray) color.Model"�`��\���������������func(*image.Gray) color.Model�� �Rgo.string."func(*image.Gray) color.Model"���þJtype.func(*"".Gray) image/color.Model� �� �������ý·áò�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Rgo.string."func(*image.Gray) color.Model"���p��\go.weak.type.*func(*"".Gray) image/color.Model���€��"runtime.zerovalue��� €�Jtype.func(*"".Gray) image/color.Model���А�Jtype.func(*"".Gray) image/color.Model���€��type.*"".Gray�����,type.image/color.Model���þdgo.string."func(*image.Gray, int, int) color.Gray"�p��n��������&�������func(*image.Gray, int, int) color.Gray�� �dgo.string."func(*image.Gray, int, int) color.Gray"���þ\type.func(*"".Gray, int, int) image/color.Gray�À��À�������Š½žh�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��dgo.string."func(*image.Gray, int, int) color.Gray"���p��ngo.weak.type.*func(*"".Gray, int, int) image/color.Gray���€��"runtime.zerovalue��� €�\type.func(*"".Gray, int, int) image/color.Gray���а�\type.func(*"".Gray, int, int) image/color.Gray���€��type.*"".Gray�����type.int��� ��type.int���°��*type.image/color.Gray���þDgo.string."func(*image.Gray) bool"�P��N���������������func(*image.Gray) bool�� �Dgo.string."func(*image.Gray) bool"���þ0type.func(*"".Gray) bool� �� �������PdT`�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Dgo.string."func(*image.Gray) bool"���p��Bgo.weak.type.*func(*"".Gray) bool���€��"runtime.zerovalue��� €�0type.func(*"".Gray) bool���А�0type.func(*"".Gray) bool���€��type.*"".Gray�����type.bool���þVgo.string."func(*image.Gray, int, int) int"�`��`���������������func(*image.Gray, int, int) int�� �Vgo.string."func(*image.Gray, int, int) int"���þBtype.func(*"".Gray, int, int) int�À��À�������Cþ0ò�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Vgo.string."func(*image.Gray, int, int) int"���p��Tgo.weak.type.*func(*"".Gray, int, int) int���€��"runtime.zerovalue��� €�Btype.func(*"".Gray, int, int) int���а�Btype.func(*"".Gray, int, int) int���€��type.*"".Gray�����type.int��� ��type.int���°��type.int���þhgo.string."func(*image.Gray, int, int, color.Color)"�€��r��������(�������func(*image.Gray, int, int, color.Color)�� �hgo.string."func(*image.Gray, int, int, color.Color)"���þ`type.func(*"".Gray, int, int, image/color.Color)�À��À�������¿KNo�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��hgo.string."func(*image.Gray, int, int, color.Color)"���p��rgo.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.Color)���€��type.*"".Gray�����type.int��� ��type.int���°��,type.image/color.Color���þfgo.string."func(*image.Gray, int, int, color.Gray)"�p��p��������'�������func(*image.Gray, int, int, color.Gray)�� �fgo.string."func(*image.Gray, int, int, color.Gray)"���þ^type.func(*"".Gray, int, int, image/color.Gray)�À��À�������ƒhMæ�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��fgo.string."func(*image.Gray, int, int, color.Gray)"���p��pgo.weak.type.*func(*"".Gray, int, int, image/color.Gray)���€��"runtime.zerovalue��� €�^type.func(*"".Gray, int, int, image/color.Gray)���ÐÀ�^type.func(*"".Gray, int, int, image/color.Gray)���€��type.*"".Gray�����type.int��� ��type.int���°��*type.image/color.Gray���þtgo.string."func(*image.Gray, image.Rectangle) image.Image"�€��~��������.�������func(*image.Gray, image.Rectangle) image.Image�� �tgo.string."func(*image.Gray, image.Rectangle) image.Image"���þTtype.func(*"".Gray, "".Rectangle) "".Image�°��°�������7I–�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��tgo.string."func(*image.Gray, image.Rectangle) image.Image"���p��fgo.weak.type.*func(*"".Gray, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Ttype.func(*"".Gray, "".Rectangle) "".Image���Р�Ttype.func(*"".Gray, "".Rectangle) "".Image���€��type.*"".Gray�����"type."".Rectangle��� ��type."".Image���þ$go.string."GrayAt"�0��.���������������GrayAt�� �$go.string."GrayAt"���þJgo.string."func(int, int) color.Gray"�`��T���������������func(int, int) color.Gray�� �Jgo.string."func(int, int) color.Gray"���þHtype.func(int, int) image/color.Gray�°��°�������šÜ�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Jgo.string."func(int, int) color.Gray"���p��Zgo.weak.type.*func(int, int) image/color.Gray���€��"runtime.zerovalue��� €�Htype.func(int, int) image/color.Gray���Р�Htype.func(int, int) image/color.Gray���€��type.int�����type.int��� ��*type.image/color.Gray���þ&go.string."SetGray"�0��0���������������SetGray�� �&go.string."SetGray"���þLgo.string."func(int, int, color.Gray)"�`��V���������������func(int, int, color.Gray)�� �Lgo.string."func(int, int, color.Gray)"���þJtype.func(int, int, image/color.Gray)�°��°�������ð=qŠ�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."func(int, int, color.Gray)"���p��\go.weak.type.*func(int, int, image/color.Gray)���€��"runtime.zerovalue��� €�Jtype.func(int, int, image/color.Gray)���а�Jtype.func(int, int, image/color.Gray)���€��type.int�����type.int��� ��*type.image/color.Gray���þtype.*"".Gray��Ð��Ð�������~ ßì�6���������������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��.go.string."*image.Gray"���p��,go.weak.type.**"".Gray���€��"runtime.zerovalue�����type."".Gray���` �type.*"".Gray���Àð�type.*"".Gray���ð��go.string."At"�����Jtype.func(int, int) image/color.Color��� ��^type.func(*"".Gray, int, int) image/color.Color���°��"".(*Gray).At���À��"".(*Gray).At���Ð��$go.string."Bounds"���ð��0type.func() "".Rectangle���€��@type.func(*"".Gray) "".Rectangle�����""".(*Gray).Bounds��� ��""".(*Gray).Bounds���°��,go.string."ColorModel"���Ð��:type.func() image/color.Model���à��Jtype.func(*"".Gray) image/color.Model���ð��*"".(*Gray).ColorModel���€��*"".(*Gray).ColorModel�����$go.string."GrayAt"���°��Htype.func(int, int) image/color.Gray���À��\type.func(*"".Gray, int, int) image/color.Gray���Ð��""".(*Gray).GrayAt���à��""".(*Gray).GrayAt���ð��$go.string."Opaque"����� type.func() bool��� ��0type.func(*"".Gray) bool���°��""".(*Gray).Opaque���À��""".(*Gray).Opaque���Ð��*go.string."PixOffset"���ð��.type.func(int, int) int���€��Btype.func(*"".Gray, int, int) int�����("".(*Gray).PixOffset��� ��("".(*Gray).PixOffset���°��go.string."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��`type.func(*"".Gray, int, int, image/color.Color)���ð��"".(*Gray).Set���€��"".(*Gray).Set�����&go.string."SetGray"���°��Jtype.func(int, int, image/color.Gray)���À��^type.func(*"".Gray, int, int, image/color.Gray)���Ð��$"".(*Gray).SetGray���à��$"".(*Gray).SetGray���ð��(go.string."SubImage"�����@type.func("".Rectangle) "".Image��� ��Ttype.func(*"".Gray, "".Rectangle) "".Image���°��&"".(*Gray).SubImage���À��&"".(*Gray).SubImage���þ0go.string."image.Gray16"�@��:�������� �������image.Gray16�� �0go.string."image.Gray16"���þ$go.string."Gray16"�0��.���������������Gray16�� �$go.string."Gray16"���þtype."".Gray16��€��€@�������jn~%���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ����������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x48444444000000000000000000000000���P��0go.string."image.Gray16"���p��type.*"".Gray16���€��"runtime.zerovalue���À�type."".Gray16���À��go.string."Pix"���à��type.[]uint8�����$go.string."Stride"���°��type.int���à�� go.string."Rect"���€��"type."".Rectangle���`°�type."".Gray16���°��$go.string."Gray16"���À��"go.importpath."".���Ѐ�type."".Gray16���þ2go.string."*image.Gray16"�@��<�������� �������*image.Gray16�� �2go.string."*image.Gray16"���þjgo.string."func(*image.Gray16, int, int) color.Color"�€��t��������)�������func(*image.Gray16, int, int) color.Color�� �jgo.string."func(*image.Gray16, int, int) color.Color"���þbtype.func(*"".Gray16, int, int) image/color.Color�À��À�������I{±÷�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��jgo.string."func(*image.Gray16, int, int) color.Color"���p��tgo.weak.type.*func(*"".Gray16, int, int) image/color.Color���€��"runtime.zerovalue��� €�btype.func(*"".Gray16, int, int) image/color.Color���а�btype.func(*"".Gray16, int, int) image/color.Color���€��type.*"".Gray16�����type.int��� ��type.int���°��,type.image/color.Color���þ^go.string."func(*image.Gray16) image.Rectangle"�p��h��������#�������func(*image.Gray16) image.Rectangle�� �^go.string."func(*image.Gray16) image.Rectangle"���þDtype.func(*"".Gray16) "".Rectangle� �� �������Í!ʋ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��^go.string."func(*image.Gray16) image.Rectangle"���p��Vgo.weak.type.*func(*"".Gray16) "".Rectangle���€��"runtime.zerovalue��� €�Dtype.func(*"".Gray16) "".Rectangle���А�Dtype.func(*"".Gray16) "".Rectangle���€��type.*"".Gray16�����"type."".Rectangle���þVgo.string."func(*image.Gray16) color.Model"�`��`���������������func(*image.Gray16) color.Model�� �Vgo.string."func(*image.Gray16) color.Model"���þNtype.func(*"".Gray16) image/color.Model� �� �������<Oç�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Vgo.string."func(*image.Gray16) color.Model"���p��`go.weak.type.*func(*"".Gray16) image/color.Model���€��"runtime.zerovalue��� €�Ntype.func(*"".Gray16) image/color.Model���А�Ntype.func(*"".Gray16) image/color.Model���€��type.*"".Gray16�����,type.image/color.Model���þlgo.string."func(*image.Gray16, int, int) color.Gray16"�€��v��������*�������func(*image.Gray16, int, int) color.Gray16�� �lgo.string."func(*image.Gray16, int, int) color.Gray16"���þdtype.func(*"".Gray16, int, int) image/color.Gray16�À��À�������ùKµ�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��lgo.string."func(*image.Gray16, int, int) color.Gray16"���p��vgo.weak.type.*func(*"".Gray16, int, int) image/color.Gray16���€��"runtime.zerovalue��� €�dtype.func(*"".Gray16, int, int) image/color.Gray16���а�dtype.func(*"".Gray16, int, int) image/color.Gray16���€��type.*"".Gray16�����type.int��� ��type.int���°��.type.image/color.Gray16���þHgo.string."func(*image.Gray16) bool"�`��R���������������func(*image.Gray16) bool�� �Hgo.string."func(*image.Gray16) bool"���þ4type.func(*"".Gray16) bool� �� �������Òò®w�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Hgo.string."func(*image.Gray16) bool"���p��Fgo.weak.type.*func(*"".Gray16) bool���€��"runtime.zerovalue��� €�4type.func(*"".Gray16) bool���А�4type.func(*"".Gray16) bool���€��type.*"".Gray16�����type.bool���þZgo.string."func(*image.Gray16, int, int) int"�p��d��������!�������func(*image.Gray16, int, int) int�� �Zgo.string."func(*image.Gray16, int, int) int"���þFtype.func(*"".Gray16, int, int) int�À��À�������ìÎI½�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Zgo.string."func(*image.Gray16, int, int) int"���p��Xgo.weak.type.*func(*"".Gray16, int, int) int���€��"runtime.zerovalue��� €�Ftype.func(*"".Gray16, int, int) int���а�Ftype.func(*"".Gray16, int, int) int���€��type.*"".Gray16�����type.int��� ��type.int���°��type.int���þlgo.string."func(*image.Gray16, int, int, color.Color)"�€��v��������*�������func(*image.Gray16, int, int, color.Color)�� �lgo.string."func(*image.Gray16, int, int, color.Color)"���þdtype.func(*"".Gray16, int, int, image/color.Color)�À��À�������¾ôHª�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��lgo.string."func(*image.Gray16, int, int, color.Color)"���p��vgo.weak.type.*func(*"".Gray16, int, int, image/color.Color)���€��"runtime.zerovalue��� €�dtype.func(*"".Gray16, int, int, image/color.Color)���ÐÀ�dtype.func(*"".Gray16, int, int, image/color.Color)���€��type.*"".Gray16�����type.int��� ��type.int���°��,type.image/color.Color���þngo.string."func(*image.Gray16, int, int, color.Gray16)"�€��x��������+�������func(*image.Gray16, int, int, color.Gray16)�� �ngo.string."func(*image.Gray16, int, int, color.Gray16)"���þftype.func(*"".Gray16, int, int, image/color.Gray16)�À��À�������]æ8�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��ngo.string."func(*image.Gray16, int, int, color.Gray16)"���p��xgo.weak.type.*func(*"".Gray16, int, int, image/color.Gray16)���€��"runtime.zerovalue��� €�ftype.func(*"".Gray16, int, int, image/color.Gray16)���ÐÀ�ftype.func(*"".Gray16, int, int, image/color.Gray16)���€��type.*"".Gray16�����type.int��� ��type.int���°��.type.image/color.Gray16���þxgo.string."func(*image.Gray16, image.Rectangle) image.Image"���‚��������0�������func(*image.Gray16, image.Rectangle) image.Image�� �xgo.string."func(*image.Gray16, image.Rectangle) image.Image"���þXtype.func(*"".Gray16, "".Rectangle) "".Image�°��°�������<'k)�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��xgo.string."func(*image.Gray16, image.Rectangle) image.Image"���p��jgo.weak.type.*func(*"".Gray16, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Xtype.func(*"".Gray16, "".Rectangle) "".Image���Р�Xtype.func(*"".Gray16, "".Rectangle) "".Image���€��type.*"".Gray16�����"type."".Rectangle��� ��type."".Image���þ(go.string."Gray16At"�@��2���������������Gray16At�� �(go.string."Gray16At"���þNgo.string."func(int, int) color.Gray16"�`��X���������������func(int, int) color.Gray16�� �Ngo.string."func(int, int) color.Gray16"���þLtype.func(int, int) image/color.Gray16�°��°�������ÄX}8�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Ngo.string."func(int, int) color.Gray16"���p��^go.weak.type.*func(int, int) image/color.Gray16���€��"runtime.zerovalue��� €�Ltype.func(int, int) image/color.Gray16���Р�Ltype.func(int, int) image/color.Gray16���€��type.int�����type.int��� ��.type.image/color.Gray16���þ*go.string."SetGray16"�@��4�������� �������SetGray16�� �*go.string."SetGray16"���þPgo.string."func(int, int, color.Gray16)"�`��Z���������������func(int, int, color.Gray16)�� �Pgo.string."func(int, int, color.Gray16)"���þNtype.func(int, int, image/color.Gray16)�°��°�������SL(�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Pgo.string."func(int, int, color.Gray16)"���p��`go.weak.type.*func(int, int, image/color.Gray16)���€��"runtime.zerovalue��� €�Ntype.func(int, int, image/color.Gray16)���а�Ntype.func(int, int, image/color.Gray16)���€��type.int�����type.int��� ��.type.image/color.Gray16���þtype.*"".Gray16��Ð��Ð�������–þÝ�6���������������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��2go.string."*image.Gray16"���p��0go.weak.type.**"".Gray16���€��"runtime.zerovalue�����type."".Gray16���` �type.*"".Gray16���Àð�type.*"".Gray16���ð��go.string."At"�����Jtype.func(int, int) image/color.Color��� ��btype.func(*"".Gray16, int, int) image/color.Color���°��"".(*Gray16).At���À��"".(*Gray16).At���Ð��$go.string."Bounds"���ð��0type.func() "".Rectangle���€��Dtype.func(*"".Gray16) "".Rectangle�����&"".(*Gray16).Bounds��� ��&"".(*Gray16).Bounds���°��,go.string."ColorModel"���Ð��:type.func() image/color.Model���à��Ntype.func(*"".Gray16) image/color.Model���ð��."".(*Gray16).ColorModel���€��."".(*Gray16).ColorModel�����(go.string."Gray16At"���°��Ltype.func(int, int) image/color.Gray16���À��dtype.func(*"".Gray16, int, int) image/color.Gray16���Ð��*"".(*Gray16).Gray16At���à��*"".(*Gray16).Gray16At���ð��$go.string."Opaque"����� type.func() bool��� ��4type.func(*"".Gray16) bool���°��&"".(*Gray16).Opaque���À��&"".(*Gray16).Opaque���Ð��*go.string."PixOffset"���ð��.type.func(int, int) int���€��Ftype.func(*"".Gray16, int, int) int�����,"".(*Gray16).PixOffset��� ��,"".(*Gray16).PixOffset���°��go.string."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��dtype.func(*"".Gray16, int, int, image/color.Color)���ð�� "".(*Gray16).Set���€�� "".(*Gray16).Set�����*go.string."SetGray16"���°��Ntype.func(int, int, image/color.Gray16)���À��ftype.func(*"".Gray16, int, int, image/color.Gray16)���Ð��,"".(*Gray16).SetGray16���à��,"".(*Gray16).SetGray16���ð��(go.string."SubImage"�����@type.func("".Rectangle) "".Image��� ��Xtype.func(*"".Gray16, "".Rectangle) "".Image���°��*"".(*Gray16).SubImage���À��*"".(*Gray16).SubImage���þbruntime.gcbits.0x48444444488444444484440000000000� �� HDDDH„DDD„D������þ4go.string."image.Paletted"�@��>���������������image.Paletted�� �4go.string."image.Paletted"���þ&go.string."Palette"�0��0���������������Palette�� �&go.string."Palette"���þ(go.string."Paletted"�@��2���������������Paletted�� �(go.string."Paletted"���þ type."".Paletted��Ð��ÐX�������LÕ`���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������@�����������������������������������������������$ à� runtime.algarray���0��bruntime.gcbits.0x48444444488444444484440000000000���P��4go.string."image.Paletted"���p��"type.*"".Paletted���€��"runtime.zerovalue���À� type."".Paletted���À��go.string."Pix"���à��type.[]uint8�����$go.string."Stride"���°��type.int���à�� go.string."Rect"���€��"type."".Rectangle���°��&go.string."Palette"���Ð��0type.image/color.Palette���`€� type."".Paletted���€��(go.string."Paletted"�����"go.importpath."".��� Ð� type."".Paletted���þ6go.string."*image.Paletted"�@��@���������������*image.Paletted�� �6go.string."*image.Paletted"���þngo.string."func(*image.Paletted, int, int) color.Color"�€��x��������+�������func(*image.Paletted, int, int) color.Color�� �ngo.string."func(*image.Paletted, int, int) color.Color"���þftype.func(*"".Paletted, int, int) image/color.Color�À��À�������_ú|r�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��ngo.string."func(*image.Paletted, int, int) color.Color"���p��xgo.weak.type.*func(*"".Paletted, int, int) image/color.Color���€��"runtime.zerovalue��� €�ftype.func(*"".Paletted, int, int) image/color.Color���а�ftype.func(*"".Paletted, int, int) image/color.Color���€��"type.*"".Paletted�����type.int��� ��type.int���°��,type.image/color.Color���þbgo.string."func(*image.Paletted) image.Rectangle"�p��l��������%�������func(*image.Paletted) image.Rectangle�� �bgo.string."func(*image.Paletted) image.Rectangle"���þHtype.func(*"".Paletted) "".Rectangle� �� �������bOæÝ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��bgo.string."func(*image.Paletted) image.Rectangle"���p��Zgo.weak.type.*func(*"".Paletted) "".Rectangle���€��"runtime.zerovalue��� €�Htype.func(*"".Paletted) "".Rectangle���А�Htype.func(*"".Paletted) "".Rectangle���€��"type.*"".Paletted�����"type."".Rectangle���þbgo.string."func(*image.Paletted, int, int) uint8"�p��l��������%�������func(*image.Paletted, int, int) uint8�� �bgo.string."func(*image.Paletted, int, int) uint8"���þNtype.func(*"".Paletted, int, int) uint8�À��À�������S­)Š�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��bgo.string."func(*image.Paletted, int, int) uint8"���p��`go.weak.type.*func(*"".Paletted, int, int) uint8���€��"runtime.zerovalue��� €�Ntype.func(*"".Paletted, int, int) uint8���а�Ntype.func(*"".Paletted, int, int) uint8���€��"type.*"".Paletted�����type.int��� ��type.int���°��type.uint8���þZgo.string."func(*image.Paletted) color.Model"�p��d��������!�������func(*image.Paletted) color.Model�� �Zgo.string."func(*image.Paletted) color.Model"���þRtype.func(*"".Paletted) image/color.Model� �� �������ô¯ö�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Zgo.string."func(*image.Paletted) color.Model"���p��dgo.weak.type.*func(*"".Paletted) image/color.Model���€��"runtime.zerovalue��� €�Rtype.func(*"".Paletted) image/color.Model���А�Rtype.func(*"".Paletted) image/color.Model���€��"type.*"".Paletted�����,type.image/color.Model���þLgo.string."func(*image.Paletted) bool"�`��V���������������func(*image.Paletted) bool�� �Lgo.string."func(*image.Paletted) bool"���þ8type.func(*"".Paletted) bool� �� �������m•k�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."func(*image.Paletted) bool"���p��Jgo.weak.type.*func(*"".Paletted) bool���€��"runtime.zerovalue��� €�8type.func(*"".Paletted) bool���А�8type.func(*"".Paletted) bool���€��"type.*"".Paletted�����type.bool���þ^go.string."func(*image.Paletted, int, int) int"�p��h��������#�������func(*image.Paletted, int, int) int�� �^go.string."func(*image.Paletted, int, int) int"���þJtype.func(*"".Paletted, int, int) int�À��À�������† KL�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��^go.string."func(*image.Paletted, int, int) int"���p��\go.weak.type.*func(*"".Paletted, int, int) int���€��"runtime.zerovalue��� €�Jtype.func(*"".Paletted, int, int) int���а�Jtype.func(*"".Paletted, int, int) int���€��"type.*"".Paletted�����type.int��� ��type.int���°��type.int���þpgo.string."func(*image.Paletted, int, int, color.Color)"�€��z��������,�������func(*image.Paletted, int, int, color.Color)�� �pgo.string."func(*image.Paletted, int, int, color.Color)"���þhtype.func(*"".Paletted, int, int, image/color.Color)�À��À�������–íqÎ�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��pgo.string."func(*image.Paletted, int, int, color.Color)"���p��zgo.weak.type.*func(*"".Paletted, int, int, image/color.Color)���€��"runtime.zerovalue��� €�htype.func(*"".Paletted, int, int, image/color.Color)���ÐÀ�htype.func(*"".Paletted, int, int, image/color.Color)���€��"type.*"".Paletted�����type.int��� ��type.int���°��,type.image/color.Color���þdgo.string."func(*image.Paletted, int, int, uint8)"�p��n��������&�������func(*image.Paletted, int, int, uint8)�� �dgo.string."func(*image.Paletted, int, int, uint8)"���þPtype.func(*"".Paletted, int, int, uint8)�À��À�������ÆþÁ®�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��dgo.string."func(*image.Paletted, int, int, uint8)"���p��bgo.weak.type.*func(*"".Paletted, int, int, uint8)���€��"runtime.zerovalue��� €�Ptype.func(*"".Paletted, int, int, uint8)���ÐÀ�Ptype.func(*"".Paletted, int, int, uint8)���€��"type.*"".Paletted�����type.int��� ��type.int���°��type.uint8���þ|go.string."func(*image.Paletted, image.Rectangle) image.Image"���†��������2�������func(*image.Paletted, image.Rectangle) image.Image�� �|go.string."func(*image.Paletted, image.Rectangle) image.Image"���þ\type.func(*"".Paletted, "".Rectangle) "".Image�°��°�������÷m•´�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��|go.string."func(*image.Paletted, image.Rectangle) image.Image"���p��ngo.weak.type.*func(*"".Paletted, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�\type.func(*"".Paletted, "".Rectangle) "".Image���Р�\type.func(*"".Paletted, "".Rectangle) "".Image���€��"type.*"".Paletted�����"type."".Rectangle��� ��type."".Image���þ0go.string."ColorIndexAt"�@��:�������� �������ColorIndexAt�� �0go.string."ColorIndexAt"���þ@go.string."func(int, int) uint8"�P��J���������������func(int, int) uint8�� �@go.string."func(int, int) uint8"���þ2type.func(int, int) uint8�°��°�������Jc_�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��@go.string."func(int, int) uint8"���p��Dgo.weak.type.*func(int, int) uint8���€��"runtime.zerovalue��� €�2type.func(int, int) uint8���Р�2type.func(int, int) uint8���€��type.int�����type.int��� ��type.uint8���þ2go.string."SetColorIndex"�@��<�������� �������SetColorIndex�� �2go.string."SetColorIndex"���þBgo.string."func(int, int, uint8)"�P��L���������������func(int, int, uint8)�� �Bgo.string."func(int, int, uint8)"���þ4type.func(int, int, uint8)�°��°�������ÌÌl�3�������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Bgo.string."func(int, int, uint8)"���p��Fgo.weak.type.*func(int, int, uint8)���€��"runtime.zerovalue��� €�4type.func(int, int, uint8)���а�4type.func(int, int, uint8)���€��type.int�����type.int��� ��type.uint8���þ"type.*"".Paletted��Ð��Ð�������ÉNYû�6���������������������������������������������������������������������������������������� ������� �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������j  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��6go.string."*image.Paletted"���p��4go.weak.type.**"".Paletted���€��"runtime.zerovalue����� type."".Paletted���` �"type.*"".Paletted���Àð�"type.*"".Paletted���ð��go.string."At"�����Jtype.func(int, int) image/color.Color��� ��ftype.func(*"".Paletted, int, int) image/color.Color���°��""".(*Paletted).At���À��""".(*Paletted).At���Ð��$go.string."Bounds"���ð��0type.func() "".Rectangle���€��Htype.func(*"".Paletted) "".Rectangle�����*"".(*Paletted).Bounds��� ��*"".(*Paletted).Bounds���°��0go.string."ColorIndexAt"���Ð��2type.func(int, int) uint8���à��Ntype.func(*"".Paletted, int, int) uint8���ð��6"".(*Paletted).ColorIndexAt���€��6"".(*Paletted).ColorIndexAt�����,go.string."ColorModel"���°��:type.func() image/color.Model���À��Rtype.func(*"".Paletted) image/color.Model���Ð��2"".(*Paletted).ColorModel���à��2"".(*Paletted).ColorModel���ð��$go.string."Opaque"����� type.func() bool��� ��8type.func(*"".Paletted) bool���°��*"".(*Paletted).Opaque���À��*"".(*Paletted).Opaque���Ð��*go.string."PixOffset"���ð��.type.func(int, int) int���€��Jtype.func(*"".Paletted, int, int) int�����0"".(*Paletted).PixOffset��� ��0"".(*Paletted).PixOffset���°��go.string."Set"���Ð��Ltype.func(int, int, image/color.Color)���à��htype.func(*"".Paletted, int, int, image/color.Color)���ð��$"".(*Paletted).Set���€��$"".(*Paletted).Set�����2go.string."SetColorIndex"���°��4type.func(int, int, uint8)���À��Ptype.func(*"".Paletted, int, int, uint8)���Ð��8"".(*Paletted).SetColorIndex���à��8"".(*Paletted).SetColorIndex���ð��(go.string."SubImage"�����@type.func("".Rectangle) "".Image��� ��\type.func(*"".Paletted, "".Rectangle) "".Image���°��."".(*Paletted).SubImage���À��."".(*Paletted).SubImage���þ$go.string."[]bool"�0��.���������������[]bool�� �$go.string."[]bool"���þtype.[]bool� �� �������±åç�����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x48844400000000000000000000000000���P��$go.string."[]bool"���p��(go.weak.type.*[]bool���€��"runtime.zerovalue�����type.bool���þ2go.typelink.[]bool/[]bool��������������type.[]bool���þ*go.string."[256]bool"�@��4�������� �������[256]bool�� �*go.string."[256]bool"���þtype.[256]bool�À��À�������°Ä'k�‘������������������������������������������������������������������������������� �� runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��*go.string."[256]bool"���p��.go.weak.type.*[256]bool���€��"runtime.zerovalue�����type.bool��� ��type.[]bool���þ>go.typelink.[256]bool/[256]bool��������������type.[256]bool���þ2go.string."image.Uniform"�@��<�������� �������image.Uniform�� �2go.string."image.Uniform"���þgo.string."C"�0��$���������������C�� �go.string."C"���þ&go.string."Uniform"�0��0���������������Uniform�� �&go.string."Uniform"���þtype."".Uniform��à��à�������ö=á��������������������������������������������������������������������������������������������������������������������������������������������������������������� à� runtime.algarray���0��bruntime.gcbits.0x8c000000000000000000000000000000���P��2go.string."image.Uniform"���p�� type.*"".Uniform���€��"runtime.zerovalue���À�type."".Uniform���À��go.string."C"���à��,type.image/color.Color���`�type."".Uniform�����&go.string."Uniform"��� ��"go.importpath."".���°à�type."".Uniform���þ4go.string."*image.Uniform"�@��>���������������*image.Uniform�� �4go.string."*image.Uniform"���þlgo.string."func(*image.Uniform, int, int) color.Color"�€��v��������*�������func(*image.Uniform, int, int) color.Color�� �lgo.string."func(*image.Uniform, int, int) color.Color"���þdtype.func(*"".Uniform, int, int) image/color.Color�À��À�������„Œp�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��lgo.string."func(*image.Uniform, int, int) color.Color"���p��vgo.weak.type.*func(*"".Uniform, int, int) image/color.Color���€��"runtime.zerovalue��� €�dtype.func(*"".Uniform, int, int) image/color.Color���а�dtype.func(*"".Uniform, int, int) image/color.Color���€�� type.*"".Uniform�����type.int��� ��type.int���°��,type.image/color.Color���þ`go.string."func(*image.Uniform) image.Rectangle"�p��j��������$�������func(*image.Uniform) image.Rectangle�� �`go.string."func(*image.Uniform) image.Rectangle"���þFtype.func(*"".Uniform) "".Rectangle� �� �������2[è|�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��`go.string."func(*image.Uniform) image.Rectangle"���p��Xgo.weak.type.*func(*"".Uniform) "".Rectangle���€��"runtime.zerovalue��� €�Ftype.func(*"".Uniform) "".Rectangle���А�Ftype.func(*"".Uniform) "".Rectangle���€�� type.*"".Uniform�����"type."".Rectangle���þXgo.string."func(*image.Uniform) color.Model"�p��b�������� �������func(*image.Uniform) color.Model�� �Xgo.string."func(*image.Uniform) color.Model"���þPtype.func(*"".Uniform) image/color.Model� �� �������"ÈáÐ�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Xgo.string."func(*image.Uniform) color.Model"���p��bgo.weak.type.*func(*"".Uniform) image/color.Model���€��"runtime.zerovalue��� €�Ptype.func(*"".Uniform) image/color.Model���А�Ptype.func(*"".Uniform) image/color.Model���€�� type.*"".Uniform�����,type.image/color.Model���þrgo.string."func(*image.Uniform, color.Color) color.Color"�€��|��������-�������func(*image.Uniform, color.Color) color.Color�� �rgo.string."func(*image.Uniform, color.Color) color.Color"���þvtype.func(*"".Uniform, image/color.Color) image/color.Color�°��°�������@AÂ2�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��rgo.string."func(*image.Uniform, color.Color) color.Color"���p��ˆgo.weak.type.*func(*"".Uniform, image/color.Color) image/color.Color���€��"runtime.zerovalue��� €�vtype.func(*"".Uniform, image/color.Color) image/color.Color���Р�vtype.func(*"".Uniform, image/color.Color) image/color.Color���€�� type.*"".Uniform�����,type.image/color.Color��� ��,type.image/color.Color���þJgo.string."func(*image.Uniform) bool"�`��T���������������func(*image.Uniform) bool�� �Jgo.string."func(*image.Uniform) bool"���þ6type.func(*"".Uniform) bool� �� �������èñ»?�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Jgo.string."func(*image.Uniform) bool"���p��Hgo.weak.type.*func(*"".Uniform) bool���€��"runtime.zerovalue��� €�6type.func(*"".Uniform) bool���А�6type.func(*"".Uniform) bool���€�� type.*"".Uniform�����type.bool���þ‚go.string."func(*image.Uniform) (uint32, uint32, uint32, uint32)"���Œ��������5�������func(*image.Uniform) (uint32, uint32, uint32, uint32)�� �‚go.string."func(*image.Uniform) (uint32, uint32, uint32, uint32)"���þntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)�Ð��Ð�������N¸V�3���������������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��‚go.string."func(*image.Uniform) (uint32, uint32, uint32, uint32)"���p��€go.weak.type.*func(*"".Uniform) (uint32, uint32, uint32, uint32)���€��"runtime.zerovalue��� €�ntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)���А�ntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)���€�� type.*"".Uniform�����type.uint32��� ��type.uint32���°��type.uint32���À��type.uint32���þ&go.string."Convert"�0��0���������������Convert�� �&go.string."Convert"���þRgo.string."func(color.Color) color.Color"�`��\���������������func(color.Color) color.Color�� �Rgo.string."func(color.Color) color.Color"���þ\type.func(image/color.Color) image/color.Color� �� �������õr¹�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Rgo.string."func(color.Color) color.Color"���p��ngo.weak.type.*func(image/color.Color) image/color.Color���€��"runtime.zerovalue��� €�\type.func(image/color.Color) image/color.Color���А�\type.func(image/color.Color) image/color.Color���€��,type.image/color.Color�����,type.image/color.Color���þfgo.string."func() (uint32, uint32, uint32, uint32)"�p��p��������'�������func() (uint32, uint32, uint32, uint32)�� �fgo.string."func() (uint32, uint32, uint32, uint32)"���þXtype.func() (uint32, uint32, uint32, uint32)�À��À�������ÌǤè�3���������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��fgo.string."func() (uint32, uint32, uint32, uint32)"���p��jgo.weak.type.*func() (uint32, uint32, uint32, uint32)���€��"runtime.zerovalue��� €�Xtype.func() (uint32, uint32, uint32, uint32)���Ѐ�Xtype.func() (uint32, uint32, uint32, uint32)���€��type.uint32�����type.uint32��� ��type.uint32���°��type.uint32���þ type.*"".Uniform��°��°�������®Q f�6������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������L  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��4go.string."*image.Uniform"���p��2go.weak.type.**"".Uniform���€��"runtime.zerovalue�����type."".Uniform���` � type.*"".Uniform���Àð� type.*"".Uniform���ð��go.string."At"�����Jtype.func(int, int) image/color.Color��� ��dtype.func(*"".Uniform, int, int) image/color.Color���°�� "".(*Uniform).At���À�� "".(*Uniform).At���Ð��$go.string."Bounds"���ð��0type.func() "".Rectangle���€��Ftype.func(*"".Uniform) "".Rectangle�����("".(*Uniform).Bounds��� ��("".(*Uniform).Bounds���°��,go.string."ColorModel"���Ð��:type.func() image/color.Model���à��Ptype.func(*"".Uniform) image/color.Model���ð��0"".(*Uniform).ColorModel���€��0"".(*Uniform).ColorModel�����&go.string."Convert"���°��\type.func(image/color.Color) image/color.Color���À��vtype.func(*"".Uniform, image/color.Color) image/color.Color���Ð��*"".(*Uniform).Convert���à��*"".(*Uniform).Convert���ð��$go.string."Opaque"����� type.func() bool��� ��6type.func(*"".Uniform) bool���°��("".(*Uniform).Opaque���À��("".(*Uniform).Opaque���Ð�� go.string."RGBA"���ð��Xtype.func() (uint32, uint32, uint32, uint32)���€��ntype.func(*"".Uniform) (uint32, uint32, uint32, uint32)�����$"".(*Uniform).RGBA��� ��$"".(*Uniform).RGBA���þLgo.string."*image.YCbCrSubsampleRatio"�`��V���������������*image.YCbCrSubsampleRatio�� �Lgo.string."*image.YCbCrSubsampleRatio"���þ>go.string."YCbCrSubsampleRatio"�P��H���������������YCbCrSubsampleRatio�� �>go.string."YCbCrSubsampleRatio"���þTgclocals·a310211a5d93ca643985188646602d0e� �� ���������������þTgclocals·521d2fa12a56ba961a59b2852d682dbc� �� ���������
����þfgo.string."func(*image.YCbCrSubsampleRatio) string"�p��p��������'�������func(*image.YCbCrSubsampleRatio) string�� �fgo.string."func(*image.YCbCrSubsampleRatio) string"���þRtype.func(*"".YCbCrSubsampleRatio) string� �� �������u!Ad�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��fgo.string."func(*image.YCbCrSubsampleRatio) string"���p��dgo.weak.type.*func(*"".YCbCrSubsampleRatio) string���€��"runtime.zerovalue��� €�Rtype.func(*"".YCbCrSubsampleRatio) string���А�Rtype.func(*"".YCbCrSubsampleRatio) string���€��8type.*"".YCbCrSubsampleRatio�����type.string���þ8type.*"".YCbCrSubsampleRatio��Ð��Ð�������˜àË&�6������������������������������������������������������������������������������������������������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."*image.YCbCrSubsampleRatio"���p��Jgo.weak.type.**"".YCbCrSubsampleRatio���€��"runtime.zerovalue�����6type."".YCbCrSubsampleRatio���` �8type.*"".YCbCrSubsampleRatio���Àð�8type.*"".YCbCrSubsampleRatio���ð��$go.string."String"�����$type.func() string��� ��Rtype.func(*"".YCbCrSubsampleRatio) string���°��@"".(*YCbCrSubsampleRatio).String���À��@"".(*YCbCrSubsampleRatio).String���þJgo.string."image.YCbCrSubsampleRatio"�`��T���������������image.YCbCrSubsampleRatio�� �Jgo.string."image.YCbCrSubsampleRatio"���þdgo.string."func(image.YCbCrSubsampleRatio) string"�p��n��������&�������func(image.YCbCrSubsampleRatio) string�� �dgo.string."func(image.YCbCrSubsampleRatio) string"���þPtype.func("".YCbCrSubsampleRatio) string� �� �������ËO‚Ê�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��dgo.string."func(image.YCbCrSubsampleRatio) string"���p��bgo.weak.type.*func("".YCbCrSubsampleRatio) string���€��"runtime.zerovalue��� €�Ptype.func("".YCbCrSubsampleRatio) string���А�Ptype.func("".YCbCrSubsampleRatio) string���€��6type."".YCbCrSubsampleRatio�����type.string���þ6type."".YCbCrSubsampleRatio��À��À�������ªX)â�‚����������������������������������������������������������������������������������������������������������������������������������������������  � runtime.algarray���0��^runtime.gcbits.0x000000000000000000000000000000���P��Jgo.string."image.YCbCrSubsampleRatio"���p��8type.*"".YCbCrSubsampleRatio���€��"runtime.zerovalue���`�6type."".YCbCrSubsampleRatio�����>go.string."YCbCrSubsampleRatio"��� ��"go.importpath."".���°à�6type."".YCbCrSubsampleRatio���à��$go.string."String"���€��$type.func() string�����Ptype.func("".YCbCrSubsampleRatio) string��� ��@"".(*YCbCrSubsampleRatio).String���°��:"".YCbCrSubsampleRatio.String���þbruntime.gcbits.0x48844448444444440000000000000000� �� H„DHDDDD���������þ.go.string."image.YCbCr"�@��8�������� �������image.YCbCr�� �.go.string."image.YCbCr"���þgo.string."Cb"�0��&���������������Cb�� �go.string."Cb"���þgo.string."Cr"�0��&���������������Cr�� �go.string."Cr"���þ&go.string."YStride"�0��0���������������YStride�� �&go.string."YStride"���þ&go.string."CStride"�0��0���������������CStride�� �&go.string."CStride"���þ4go.string."SubsampleRatio"�@��>���������������SubsampleRatio�� �4go.string."SubsampleRatio"���þ"go.string."YCbCr"�0��,���������������YCbCr�� �"go.string."YCbCr"���þtype."".YCbCr��À��À€�������¼Ãa¯����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������0���������������������������������������H���������������������������������������P���������������������������������������X���������������������������������������`�����������������������������������������������0 à� runtime.algarray���0��bruntime.gcbits.0x48844448444444440000000000000000���P��.go.string."image.YCbCr"���p��type.*"".YCbCr���€��"runtime.zerovalue���À�type."".YCbCr���À��go.string."Y"���à��type.[]uint8�����go.string."Cb"���°��type.[]uint8���à��go.string."Cr"���€��type.[]uint8���°��&go.string."YStride"���Ð��type.int���€��&go.string."CStride"��� ��type.int���Ð��4go.string."SubsampleRatio"���ð��6type."".YCbCrSubsampleRatio��� �� go.string."Rect"���À��"type."".Rectangle���`ð�type."".YCbCr���ð��"go.string."YCbCr"���€��"go.importpath."".���À�type."".YCbCr���þ0go.string."*image.YCbCr"�@��:�������� �������*image.YCbCr�� �0go.string."*image.YCbCr"���þhgo.string."func(*image.YCbCr, int, int) color.Color"�€��r��������(�������func(*image.YCbCr, int, int) color.Color�� �hgo.string."func(*image.YCbCr, int, int) color.Color"���þ`type.func(*"".YCbCr, int, int) image/color.Color�À��À�������óGÏ�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��hgo.string."func(*image.YCbCr, int, int) color.Color"���p��rgo.weak.type.*func(*"".YCbCr, int, int) image/color.Color���€��"runtime.zerovalue��� €�`type.func(*"".YCbCr, int, int) image/color.Color���а�`type.func(*"".YCbCr, int, int) image/color.Color���€��type.*"".YCbCr�����type.int��� ��type.int���°��,type.image/color.Color���þ\go.string."func(*image.YCbCr) image.Rectangle"�p��f��������"�������func(*image.YCbCr) image.Rectangle�� �\go.string."func(*image.YCbCr) image.Rectangle"���þBtype.func(*"".YCbCr) "".Rectangle� �� �������5;»�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��\go.string."func(*image.YCbCr) image.Rectangle"���p��Tgo.weak.type.*func(*"".YCbCr) "".Rectangle���€��"runtime.zerovalue��� €�Btype.func(*"".YCbCr) "".Rectangle���А�Btype.func(*"".YCbCr) "".Rectangle���€��type.*"".YCbCr�����"type."".Rectangle���þXgo.string."func(*image.YCbCr, int, int) int"�p��b�������� �������func(*image.YCbCr, int, int) int�� �Xgo.string."func(*image.YCbCr, int, int) int"���þDtype.func(*"".YCbCr, int, int) int�À��À�������?@ÛÒ�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Xgo.string."func(*image.YCbCr, int, int) int"���p��Vgo.weak.type.*func(*"".YCbCr, int, int) int���€��"runtime.zerovalue��� €�Dtype.func(*"".YCbCr, int, int) int���а�Dtype.func(*"".YCbCr, int, int) int���€��type.*"".YCbCr�����type.int��� ��type.int���°��type.int���þTgo.string."func(*image.YCbCr) color.Model"�`��^���������������func(*image.YCbCr) color.Model�� �Tgo.string."func(*image.YCbCr) color.Model"���þLtype.func(*"".YCbCr) image/color.Model� �� ������� Zp�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Tgo.string."func(*image.YCbCr) color.Model"���p��^go.weak.type.*func(*"".YCbCr) image/color.Model���€��"runtime.zerovalue��� €�Ltype.func(*"".YCbCr) image/color.Model���А�Ltype.func(*"".YCbCr) image/color.Model���€��type.*"".YCbCr�����,type.image/color.Model���þFgo.string."func(*image.YCbCr) bool"�P��P���������������func(*image.YCbCr) bool�� �Fgo.string."func(*image.YCbCr) bool"���þ2type.func(*"".YCbCr) bool� �� �������¬›�3���������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Fgo.string."func(*image.YCbCr) bool"���p��Dgo.weak.type.*func(*"".YCbCr) bool���€��"runtime.zerovalue��� €�2type.func(*"".YCbCr) bool���А�2type.func(*"".YCbCr) bool���€��type.*"".YCbCr�����type.bool���þvgo.string."func(*image.YCbCr, image.Rectangle) image.Image"�€��€��������/�������func(*image.YCbCr, image.Rectangle) image.Image�� �vgo.string."func(*image.YCbCr, image.Rectangle) image.Image"���þVtype.func(*"".YCbCr, "".Rectangle) "".Image�°��°�������÷NY¡�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��vgo.string."func(*image.YCbCr, image.Rectangle) image.Image"���p��hgo.weak.type.*func(*"".YCbCr, "".Rectangle) "".Image���€��"runtime.zerovalue��� €�Vtype.func(*"".YCbCr, "".Rectangle) "".Image���Р�Vtype.func(*"".YCbCr, "".Rectangle) "".Image���€��type.*"".YCbCr�����"type."".Rectangle��� ��type."".Image���þhgo.string."func(*image.YCbCr, int, int) color.YCbCr"�€��r��������(�������func(*image.YCbCr, int, int) color.YCbCr�� �hgo.string."func(*image.YCbCr, int, int) color.YCbCr"���þ`type.func(*"".YCbCr, int, int) image/color.YCbCr�À��À�������ߚØ�3�������������������������������������������������������������������������������������������������������������������������������������������� €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��hgo.string."func(*image.YCbCr, int, int) color.YCbCr"���p��rgo.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.YCbCr���€��type.*"".YCbCr�����type.int��� ��type.int���°��,type.image/color.YCbCr���þ&go.string."COffset"�0��0���������������COffset�� �&go.string."COffset"���þ&go.string."YCbCrAt"�0��0���������������YCbCrAt�� �&go.string."YCbCrAt"���þLgo.string."func(int, int) color.YCbCr"�`��V���������������func(int, int) color.YCbCr�� �Lgo.string."func(int, int) color.YCbCr"���þJtype.func(int, int) image/color.YCbCr�°��°�������´Áþå�3������������������������������������������������������������������������������������������������������������������������������������ €� runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��Lgo.string."func(int, int) color.YCbCr"���p��\go.weak.type.*func(int, int) image/color.YCbCr���€��"runtime.zerovalue��� €�Jtype.func(int, int) image/color.YCbCr���Р�Jtype.func(int, int) image/color.YCbCr���€��type.int�����type.int��� ��,type.image/color.YCbCr���þ&go.string."YOffset"�0��0���������������YOffset�� �&go.string."YOffset"���þtype.*"".YCbCr��ð��ð�������2öЫ�6������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������`  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��0go.string."*image.YCbCr"���p��.go.weak.type.**"".YCbCr���€��"runtime.zerovalue�����type."".YCbCr���` �type.*"".YCbCr���Àð�type.*"".YCbCr���ð��go.string."At"�����Jtype.func(int, int) image/color.Color��� ��`type.func(*"".YCbCr, int, int) image/color.Color���°��"".(*YCbCr).At���À��"".(*YCbCr).At���Ð��$go.string."Bounds"���ð��0type.func() "".Rectangle���€��Btype.func(*"".YCbCr) "".Rectangle�����$"".(*YCbCr).Bounds��� ��$"".(*YCbCr).Bounds���°��&go.string."COffset"���Ð��.type.func(int, int) int���à��Dtype.func(*"".YCbCr, int, int) int���ð��&"".(*YCbCr).COffset���€��&"".(*YCbCr).COffset�����,go.string."ColorModel"���°��:type.func() image/color.Model���À��Ltype.func(*"".YCbCr) image/color.Model���Ð��,"".(*YCbCr).ColorModel���à��,"".(*YCbCr).ColorModel���ð��$go.string."Opaque"����� type.func() bool��� ��2type.func(*"".YCbCr) bool���°��$"".(*YCbCr).Opaque���À��$"".(*YCbCr).Opaque���Ð��(go.string."SubImage"���ð��@type.func("".Rectangle) "".Image���€��Vtype.func(*"".YCbCr, "".Rectangle) "".Image�����("".(*YCbCr).SubImage��� ��("".(*YCbCr).SubImage���°��&go.string."YCbCrAt"���Ð��Jtype.func(int, int) image/color.YCbCr���à��`type.func(*"".YCbCr, int, int) image/color.YCbCr���ð��&"".(*YCbCr).YCbCrAt���€��&"".(*YCbCr).YCbCrAt�����&go.string."YOffset"���°��.type.func(int, int) int���À��Dtype.func(*"".YCbCr, int, int) int���Ð��&"".(*YCbCr).YOffset���à��&"".(*YCbCr).YOffset���þTgclocals·a310211a5d93ca643985188646602d0e� �� ���������������þTgclocals·3bc6fbe3302b9693f624ee9c9bf384a0� �� ��� ���[���[ ���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·00644cd315d467a44ad54125dd31bea5� �� ��� ��� ���[���þTgclocals·0115f8d53b75c1696444f08ad03251d9�����������þTgclocals·178d074213b6ead6b40910ce12e0cee2� �� ���
���[���[���þTgclocals·a310211a5d93ca643985188646602d0e� �� ���������������þTgclocals·dc29d72f6585636b1615fc65f41da45f� �� ������ ���»����þ@go.string."*image.PalettedImage"�P��J���������������*image.PalettedImage�� �@go.string."*image.PalettedImage"���þ,type.*"".PalettedImage�� �� �������íº�6����������������������������������������������������������������  � runtime.algarray���0��bruntime.gcbits.0x88000000000000000000000000000000���P��@go.string."*image.PalettedImage"���p��>go.weak.type.**"".PalettedImage���€��"runtime.zerovalue�����*type."".PalettedImage���þ>go.string."image.PalettedImage"�P��H���������������image.PalettedImage�� �>go.string."image.PalettedImage"���þ2go.string."PalettedImage"�@��<�������� �������PalettedImage�� �2go.string."PalettedImage"���þ*type."".PalettedImage��Ð��Ð�������¶©�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������$ à� runtime.algarray���0��bruntime.gcbits.0x8c000000000000000000000000000000���P��>go.string."image.PalettedImage"���p��,type.*"".PalettedImage���€��"runtime.zerovalue���À�*type."".PalettedImage���À��go.string."At"���à��Jtype.func(int, int) image/color.Color���ð��$go.string."Bounds"�����0type.func() "".Rectangle��� ��0go.string."ColorIndexAt"���À��2type.func(int, int) uint8���Ð��,go.string."ColorModel"���ð��:type.func() image/color.Model���`€�*type."".PalettedImage���€��2go.string."PalettedImage"�����"go.importpath."".��� Ð�*type."".PalettedImage���þ&go.string."runtime"�0��0���������������runtime�� �&go.string."runtime"���þ,go.importpath.runtime.� �� ���������������� �&go.string."runtime"���þ"go.string."bufio"�0��,���������������bufio�� �"go.string."bufio"���þ(go.importpath.bufio.� �� ���������������� �"go.string."bufio"���þ$go.string."errors"�0��.���������������errors�� �$go.string."errors"���þ*go.importpath.errors.� �� ���������������� �$go.string."errors"���þgo.string."io"�0��&���������������io�� �go.string."io"���þ"go.importpath.io.� �� ���������������� �go.string."io"���þ.go.string."image/color"�@��8�������� �������image/color�� �.go.string."image/color"���þ4go.importpath.image/color.� �� �������� �������� �.go.string."image/color"���þ&go.string."strconv"�0��0���������������strconv�� �&go.string."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���þ(runtime.panicwrap·f��������������"runtime.panicwrap���þ$"".(*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���þ2"".(*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���þ0"".(*Rectangle).Inset·f��������������*"".(*Rectangle).Inset���þ8"".(*Rectangle).Intersect·f��������������2"".(*Rectangle).Intersect���þ0"".(*Rectangle).Union·f��������������*"".(*Rectangle).Union���þ0"".(*Rectangle).Empty·f��������������*"".(*Rectangle).Empty���þ*"".(*Rectangle).Eq·f��������������$"".(*Rectangle).Eq���þ6"".(*Rectangle).Overlaps·f��������������0"".(*Rectangle).Overlaps���þ*"".(*Rectangle).In·f��������������$"".(*Rectangle).In���þ0"".(*Rectangle).Canon·f��������������*"".(*Rectangle).Canon���þ.type..hash."".Config·f��������������(type..hash."".Config���þ(runtime.interhash·f��������������"runtime.interhash���þ$runtime.memhash·f��������������runtime.memhash���þ*type..eq."".Config·f��������������$type..eq."".Config���þ$runtime.ifaceeq·f��������������runtime.ifaceeq���þ""".reader.Peek·f��������������"".reader.Peek���þ""".reader.Read·f��������������"".reader.Read���þF"".(*YCbCrSubsampleRatio).String·f��������������@"".(*YCbCrSubsampleRatio).String���þ,"".PalettedImage.At·f��������������&"".PalettedImage.At���þ4"".PalettedImage.Bounds·f��������������."".PalettedImage.Bounds���þ@"".PalettedImage.ColorIndexAt·f��������������:"".PalettedImage.ColorIndexAt���þ<"".PalettedImage.ColorModel·f��������������6"".PalettedImage.ColorModel���þ"runtime.zerovalue������ÿÿgo13ld