1 !<arch> 2 __.PKGDEF 0 0 0 644 7003 ` 3 go object linux amd64 go1.5.1 X:none 4 build id "edea0072f9d65477a9129cb813e347c5fd420ada" 5 6 $$ 7 package png 8 import runtime "runtime" 9 import zlib "compress/zlib" 10 import bufio "bufio" 11 import io "io" 12 import fmt "fmt" 13 import hash "hash" 14 import binary "encoding/binary" 15 import strconv "strconv" 16 import crc32 "hash/crc32" 17 import image "image" 18 import color "image/color" 19 type @"".FormatError string 20 func (@"".e2 @"".FormatError "esc:0x1") Error () (? string) { return "png: invalid format: " + string(@"".e2) } 21 type @"".UnsupportedError string 22 func (@"".e2 @"".UnsupportedError "esc:0x1") Error () (? string) { return "png: unsupported feature: " + string(@"".e2) } 23 type @"image/color".Color interface { RGBA() (@"image/color".r uint32, @"image/color".g uint32, @"image/color".b uint32, @"image/color".a uint32) } 24 type @"image".Point struct { X int; Y int } 25 func (@"image".p2 @"image".Point) Add (@"image".q3 @"image".Point) (? @"image".Point) { return (@"image".Point{ X:@"image".p2.X + @"image".q3.X, Y:@"image".p2.Y + @"image".q3.Y }) } 26 func (@"image".p2 @"image".Point) Div (@"image".k3 int) (? @"image".Point) { return (@"image".Point{ X:@"image".p2.X / @"image".k3, Y:@"image".p2.Y / @"image".k3 }) } 27 func (@"image".p2 @"image".Point) Eq (@"image".q3 @"image".Point) (? bool) { return @"image".p2 == @"image".q3 } 28 func (@"image".p2 @"image".Point) In (@"image".r3 @"image".Rectangle) (? bool) { return @"image".r3.Min.X <= @"image".p2.X && @"image".p2.X < @"image".r3.Max.X && @"image".r3.Min.Y <= @"image".p2.Y && @"image".p2.Y < @"image".r3.Max.Y } 29 func (@"image".p2 @"image".Point) Mod (@"image".r3 @"image".Rectangle) (? @"image".Point) 30 func (@"image".p2 @"image".Point) Mul (@"image".k3 int) (? @"image".Point) { return (@"image".Point{ X:@"image".p2.X * @"image".k3, Y:@"image".p2.Y * @"image".k3 }) } 31 func (@"image".p2 @"image".Point) String () (? string) 32 func (@"image".p2 @"image".Point) Sub (@"image".q3 @"image".Point) (? @"image".Point) { return (@"image".Point{ X:@"image".p2.X - @"image".q3.X, Y:@"image".p2.Y - @"image".q3.Y }) } 33 type @"image/color".Model interface { Convert(@"image/color".c @"image/color".Color) (? @"image/color".Color) } 34 type @"image".Rectangle struct { Min @"image".Point; Max @"image".Point } 35 func (@"image".r2 @"image".Rectangle) Add (@"image".p3 @"image".Point) (? @"image".Rectangle) { return (@"image".Rectangle{ Min:(@"image".Point{ X:@"image".r2.Min.X + @"image".p3.X, Y:@"image".r2.Min.Y + @"image".p3.Y }), Max:(@"image".Point{ X:@"image".r2.Max.X + @"image".p3.X, Y:@"image".r2.Max.Y + @"image".p3.Y }) }) } 36 func (@"image".r2 @"image".Rectangle) At (@"image".x3 int, @"image".y4 int) (? @"image/color".Color) { if (@"image".Point{ X:@"image".x3, Y:@"image".y4 }).In(@"image".r2) { return @"image/color".Opaque }; return @"image/color".Transparent } 37 func (@"image".r2 @"image".Rectangle) Bounds () (? @"image".Rectangle) { return @"image".r2 } 38 func (@"image".r2 @"image".Rectangle) Canon () (? @"image".Rectangle) { if @"image".r2.Max.X < @"image".r2.Min.X { @"image".r2.Min.X, @"image".r2.Max.X = @"image".r2.Max.X, @"image".r2.Min.X }; if @"image".r2.Max.Y < @"image".r2.Min.Y { @"image".r2.Min.Y, @"image".r2.Max.Y = @"image".r2.Max.Y, @"image".r2.Min.Y }; return @"image".r2 } 39 func (@"image".r2 @"image".Rectangle) ColorModel () (? @"image/color".Model) { return @"image/color".Alpha16Model } 40 func (@"image".r2 @"image".Rectangle) Dx () (? int) { return @"image".r2.Max.X - @"image".r2.Min.X } 41 func (@"image".r2 @"image".Rectangle) Dy () (? int) { return @"image".r2.Max.Y - @"image".r2.Min.Y } 42 func (@"image".r2 @"image".Rectangle) Empty () (? bool) { return @"image".r2.Min.X >= @"image".r2.Max.X || @"image".r2.Min.Y >= @"image".r2.Max.Y } 43 func (@"image".r2 @"image".Rectangle) Eq (@"image".s3 @"image".Rectangle) (? bool) { return @"image".r2 == @"image".s3 || @"image".r2.Empty() && @"image".s3.Empty() } 44 func (@"image".r2 @"image".Rectangle) In (@"image".s3 @"image".Rectangle) (? bool) { if @"image".r2.Empty() { return true }; return @"image".s3.Min.X <= @"image".r2.Min.X && @"image".r2.Max.X <= @"image".s3.Max.X && @"image".s3.Min.Y <= @"image".r2.Min.Y && @"image".r2.Max.Y <= @"image".s3.Max.Y } 45 func (@"image".r2 @"image".Rectangle) Inset (@"image".n3 int) (? @"image".Rectangle) 46 func (@"image".r2 @"image".Rectangle) Intersect (@"image".s3 @"image".Rectangle) (? @"image".Rectangle) 47 func (@"image".r2 @"image".Rectangle) Overlaps (@"image".s3 @"image".Rectangle) (? bool) 48 func (@"image".r2 @"image".Rectangle) Size () (? @"image".Point) { return (@"image".Point{ X:@"image".r2.Max.X - @"image".r2.Min.X, Y:@"image".r2.Max.Y - @"image".r2.Min.Y }) } 49 func (@"image".r2 @"image".Rectangle) String () (? string) 50 func (@"image".r2 @"image".Rectangle) Sub (@"image".p3 @"image".Point) (? @"image".Rectangle) { return (@"image".Rectangle{ Min:(@"image".Point{ X:@"image".r2.Min.X - @"image".p3.X, Y:@"image".r2.Min.Y - @"image".p3.Y }), Max:(@"image".Point{ X:@"image".r2.Max.X - @"image".p3.X, Y:@"image".r2.Max.Y - @"image".p3.Y }) }) } 51 func (@"image".r2 @"image".Rectangle) Union (@"image".s3 @"image".Rectangle) (? @"image".Rectangle) 52 type @"image".Image interface { At(@"image".x int, @"image".y int) (? @"image/color".Color); Bounds() (? @"image".Rectangle); ColorModel() (? @"image/color".Model) } 53 type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) } 54 func @"".Decode (@"".r3 @"io".Reader) (? @"image".Image, ? error) 55 type @"image".Config struct { ColorModel @"image/color".Model; Width int; Height int } 56 func @"".DecodeConfig (@"".r3 @"io".Reader) (? @"image".Config, ? error) 57 type @"".CompressionLevel int 58 type @"io".Writer interface { Write(@"io".p []byte) (@"io".n int, @"io".err error) } 59 type @"".Encoder struct { CompressionLevel @"".CompressionLevel } 60 func (@"".enc2 *@"".Encoder) Encode (@"".w3 @"io".Writer, @"".m4 @"image".Image) (? error) 61 const @"".DefaultCompression @"".CompressionLevel = 0x0 62 const @"".NoCompression @"".CompressionLevel = -0x1 63 const @"".BestSpeed @"".CompressionLevel = -0x2 64 const @"".BestCompression @"".CompressionLevel = -0x3 65 func @"".Encode (@"".w2 @"io".Writer, @"".m3 @"image".Image) (? error) 66 func @"".init () 67 type @"image/color".Alpha16 struct { A uint16 } 68 func (@"image/color".c5 @"image/color".Alpha16) RGBA () (@"image/color".r1 uint32, @"image/color".g2 uint32, @"image/color".b3 uint32, @"image/color".a4 uint32) { @"image/color".a4 = uint32(@"image/color".c5.A); return @"image/color".a4, @"image/color".a4, @"image/color".a4, @"image/color".a4 } 69 var @"image/color".Opaque @"image/color".Alpha16 70 var @"image/color".Transparent @"image/color".Alpha16 71 var @"image/color".Alpha16Model @"image/color".Model 72 73 $$ 74 _go_.o 0 0 0 644 208358 ` 75 go object linux amd64 go1.5.1 X:none 76 77 ! 78 go13ldcompress/zlib.a"encoding/binary.a 79 fmt.ahash.ahash/crc32.aimage.aimage/color.aio.abufio.astrconv.a"".abs@0H\$HH?H1H)H\$ "".~r1type.int"".xtype.int Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbZprebuilts/go/linux-x86/src/image/png/paeth.go"".paethDT$ 83 DL$ DD$AHAH)HAH)HHHH?H1H)HH?H1H)HH?HHH1H)HH9H9DD$H9DL$DT$ "".autotmp_0006type.int"".autotmp_0005type.int"".autotmp_0004type.int"".~r3type.uint8"".ctype.uint8"".btype.uint8"".atype.uint820 86 88 Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbZprebuilts/go/linux-x86/src/image/png/paeth.go"".filterPaethdH%H;aL|$(Lt$8Ll$L\$E1M911LL9H\$ L9H+HHH)II)HLIH?I1I)IH?I1I)LH?LH1H)HI9YM9TLL9sEHHHHLL9s"HHLL9fIM9JL9HH 94 95 96 $runtime.panicindex 97 $runtime.panicindex 98 $runtime.panicindex 99 0runtime.morestack_noctxtp"".autotmp_0015type.int"".autotmp_0014type.int"".autotmp_0013type.int"".autotmp_0010type.int"".autotmp_0009type.int"".autotmp_0008type.int"".autotmp_0007type.int "".bytesPerPixel`type.int"".pdat0type.[]uint8"".cdattype.[]uint8n`' 103 104 !, 6Tgclocals71f75e7e2fe2878e818867fe3428bd87Tgclocals33cdeccccebe80329f1fdbee7f5874cbZprebuilts/go/linux-x86/src/image/png/paeth.go"".cbPaletted@8HD$H| 108 H 109 D$D$ "".~r1type.bool 111 "".cbtype.int 112 fTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/linux-x86/src/image/png/reader.go("".FormatError.ErrordH%H;av_H81H\$PH\$XH$HH\$HD$H\$@H\$H\$HH\$ H\$(H\$PH\$0H\$XH8 114 TBgo.string."png: invalid format: " 115 *runtime.concatstring2 116 0runtime.morestack_noctxt@p"".~r0 type.string"".e&type."".FormatErrorpZop 118 119 P0Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/linux-x86/src/image/png/reader.go2"".UnsupportedError.ErrordH%H;av_H81H\$PH\$XH$HH\$HD$H\$@H\$H\$HH\$ H\$(H\$PH\$0H\$XH8 121 TLgo.string."png: unsupported feature: " 122 *runtime.concatstring2 123 0runtime.morestack_noctxt@p"".~r0 type.string"".e0type."".UnsupportedErrorpZop 125 126 P0Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/linux-x86/src/image/png/reader.go"".min@6HL$HD$H9}HL$HD$0"".~r2 type.int"".btype.int"".atype.int 129 Tgclocals790e5cc5051fc0affc980ade09e929ecTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/linux-x86/src/image/png/reader.go."".(*decoder).parseIHDR))dH%H$`H;A 132 H H$(1H$8H$@$0 t{HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$8H\$0H$@H HHb HtHM H HHH H$HNHL$H$HD$H$Hl$H$HT$ H$(HD$0HL$8HL$HHD$@HtH$8H$@H HHHtHH HHM Hm(H$HT$H$H|$H$Ht$Hl$XH,$HL$PHYHH$(X~t{HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$8H\$0H$@H Xt{HH$H$ HH$HH\$HH\$H$H\$HD$ H\$(H$8H\$0H$@H t{HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$8H\$0H$@H HHxHHtHmHHH$HHCHHH(Hm HHHm H$HH$* HHtHHHHH$HHHHHoHm HHNHm H$HH$!* HcHcHH9t{HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$8H\$0H$@H H@`h|Hh@Hh@HHh}@hH@`HX`H1H$H$H$H$H$HH$H$H$HH$HhtHHl$HD$HL$HD$ H$HL$`HHD$h=RHCHH$H$(H*HktH Hl$HD$HL$HD$ H$HHL$`HHD$h=HCHH$HD$H$H\$H$H\$H$H\$ HL$(HD$0HL$pH$HD$xH$HH$HH\$HH\$H$H\$HD$ H\$(H$8H\$0H$@H LCL$HD$%LCL$HD$HcHHcHp0HX8H$HL$HD$H$8H$@H @H@`Hh}@u H@`h@^H@`QHu.h}@u H@`4@*H@` Huqh}@w*@u H@`@H@`@u H@` 144 @u H@`@H@`Hh}@w*@u H@`@uH@`h@u H@` U@KH@`>HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$8H\$0H$@H Af]EGr 159 6go.string."bad IHDR length"&type."".FormatErrortype.error8go.itab."".FormatError.error 160 runtime.convT2I 161 io.ReadFull<go.string."compression method"0type."".UnsupportedErrortype.errorBgo.itab."".UnsupportedError.error 162 runtime.convT2I 2go.string."filter method" 163 0type."".UnsupportedError 164 type.error 165 Bgo.itab."".UnsupportedError.error 166 167 runtime.convT2IHgo.string."invalid interlace method"&type."".FormatErrortype.error8go.itab."".FormatError.error 173 runtime.convT2I<go.string."dimension overflow"0type."".UnsupportedErrortype.errorBgo.itab."".UnsupportedError.error 174 runtime.convT2Itype.uint8 175 runtime.convT2E6runtime.writeBarrierEnabledtype.uint8 176 runtime.convT2E6runtime.writeBarrierEnabledNgo.string."bit depth %d, color type %d" 177 fmt.Sprintf0type."".UnsupportedErrortype.errorBgo.itab."".UnsupportedError.error 178 runtime.convT2I 179 .runtime.writebarrierptr 180 .runtime.writebarrierptr 181 8"".(*decoder).verifyChecksum%<go.string."negative dimension"%&type."".FormatError%type.error&8go.itab."".FormatError.error& 182 runtime.convT2I' 183 $runtime.panicindex' 184 $runtime.panicindex' 185 $runtime.panicindex' 186 $runtime.panicindex' 187 $runtime.panicindex' 188 $runtime.panicindex( 189 $runtime.panicindex( 190 $runtime.panicindex( 191 0runtime.morestack_noctxt@8"".autotmp_0043type.int"".autotmp_0042"type.interface {}"".autotmp_0041"type.interface {}"".autotmp_0040?(type.[2]interface {}"".autotmp_0037&type.[]interface {}"".autotmp_0036type.uint8"".autotmp_0035type.uint8"".autotmp_0034type.uint8"".autotmp_0033type.uint8"".autotmp_0030type.uint32"".autotmp_00270type."".UnsupportedError"".autotmp_0026type.string"".autotmp_00250type."".UnsupportedError"".autotmp_0024&type."".FormatError"".autotmp_0023type.[]uint8"".autotmp_0022type.[]uint8"".autotmp_0021&type."".FormatError"".autotmp_00200type."".UnsupportedError"".autotmp_00190type."".UnsupportedError"".autotmp_0018type.[]uint8"".autotmp_0017otype.[]uint8"".autotmp_0016&type."".FormatError(encoding/binary.b2type.[]uint8(encoding/binary.b2type.[]uint8"".errtype.error"".~r1 type.error"".lengthtype.uint32"".d type.*"".decoder"w<{t { {{ 195 { 196 197 V+[ 198 RM 199 HE 200 D?:7 201 61 202 ,) 203 (%$! 204 205 206 207 209 210 m{##Hb4D'Tgclocals1ae62cce473f17806b5677919601c86fTgclocals306d9fc14029975ac5a7f01955b85a00\prebuilts/go/linux-x86/src/image/png/reader.go."".(*decoder).parsePLTEdH%HD$H;A0HD$H$1H$H$DDkD)XHNHAHO@HH@HH9 HHt$HHkHHHHtHHHH$HOHL$H$Hl$H$H\$H$HT$ L$HL$(HD$0HT$8HT$hHD$`HtH$H$HH@LI+HtHHHIH Ih(H$HT$H$H|$H$Ht$H$H,$H$HYHH$Hj`H uHRHu+H$HL$HD$H$H$HHHH$HD$HD$H$Ht$HL$ HD$(HRH$HJPH$HBXH$=HrH1Hl$HH9f1\$D\$E\$F\$GHHkHHHjtHHl ]\$DHHkHHjtH}Hl ]\$EHHD$PHkHHHjtH=FHl]\$FD$GHH$HH\$HH\$H\$DH\$HD$ H$HL$(HD$0HHZHHrPHjXH$H$Hl$PH$H9HHHL$pHHD$x=]HCHD$PHHl$HH9HD$HHD$XH=1\$D\$E\$F\$GD$DD$ED$FD$GHH$HH\$HH\$H\$DH\$HD$ H$HL$(HD$0HHZHHrPHjXH$H$Hl$XH$H9stHHHL$pHHD$x=u;HCHD$XHHD$XH=Hl$HLBXL9w HjPLCL$HD$H$PLCL$HD$H$#5LBHL$Ht$H$HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$HHH lHH 224 HMHrHh4AE" HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$H1RN 229 230 io.ReadFull 231 8"".(*decoder).verifyChecksum0type.image/color.Palette 232 "runtime.makeslice 233 6runtime.writeBarrierEnabled *type.image/color.RGBA ,type.image/color.Color Tgo.itab.image/color.RGBA.image/color.Color 237 runtime.convT2I6runtime.writeBarrierEnabled*type.image/color.RGBA,type.image/color.ColorTgo.itab.image/color.RGBA.image/color.Color 238 runtime.convT2I6runtime.writeBarrierEnabled 239 $runtime.panicslice 240 .runtime.writebarrierptr 241 $runtime.panicindex 242 .runtime.writebarrierptr 243 $runtime.panicindex 244 $runtime.panicindex 245 $runtime.panicindex 246 $runtime.panicindex 247 .runtime.writebarrierptrJgo.string."PLTE, color type mismatch"&type."".FormatErrortype.error8go.itab."".FormatError.error 248 runtime.convT2I 249 $runtime.panicslice 250 $runtime.panicslice6go.string."bad PLTE length"&type."".FormatErrortype.error8go.itab."".FormatError.error 251 runtime.convT2I 252 0runtime.morestack_noctxt@""".autotmp_0057type.int"".autotmp_0055&type."".FormatError"".autotmp_0054type.int"".autotmp_0053*type.image/color.RGBA"".autotmp_0052type.int"".autotmp_0051*type.image/color.RGBA"".autotmp_0050_0type.image/color.Palette"".autotmp_0049type.[]uint8"".autotmp_0048/type.[]uint8"".autotmp_0046&type."".FormatError"".itype.int"".itype.int"".errtype.error 254 "".nptype.int"".~r1 type.error"".lengthtype.uint32"".d type.*"".decoderDAW+' 258 t *"{#$% 264 265 '{ 266 qFTgclocalsf47057354ec566066f8688a4970cff5aTgclocals81b01f77324448419e6553cf225333b4\prebuilts/go/linux-x86/src/image/png/reader.go."".(*decoder).parsetRNSdH%HD$H;AH$H$1H$H$=v{HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$HHHHHtHHHH H$HNHL$H$Hl$H$H\$H$HT$ L$HT$(HD$0HL$8HL$hHD$`HtH$H$HHT$PHLIHtHHHHIH Ih(H$HT$H$H|$H$Ht$H$H,$H$HYHH$Ho`H HHu{HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$HHu{HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$HHu{HH$H$HH$HH\$HH\$H$H\$HD$ H\$(H$H\$0H$HH<$HL$HD$H$H$HH:H_PHl$PH9#Hl$PLGXL9 269 HoP1Hl$PH9}1\$L\$M\$N\$OHH$HHwHHOPHoXH$H$HHD$XH$H9HHH|$HHHNHOH\$LH\$\$LH\$MH\$NH\$O\$G1\$H\$I\$J\$KT$DT$HL$EL$ID$FD$JH$HHktLD$XIJl]\$KHH$HH\$HH\$H\$HH\$HD$ H$HL$(HD$0HtH_HHWPHoXH$H$Hl$XH$H9sJHHHL$pHHD$x=uHCHD$XHBLCL$HD$H$z-HH xH#H 276 HbHOH IHH5,E+AEbM^N 282 6go.string."bad tRNS length"&type."".FormatErrortype.error8go.itab."".FormatError.error 283 runtime.convT2I 284 io.ReadFullDgo.string."grayscale transparency"0type."".UnsupportedError type.error Bgo.itab."".UnsupportedError.error 285 runtime.convT2I 286 Jgo.string."tRNS, color type mismatch" 287 &type."".FormatErrortype.error8go.itab."".FormatError.error 291 runtime.convT2IDgo.string."truecolor transparency"0type."".UnsupportedError type.error Bgo.itab."".UnsupportedError.error 297 runtime.convT2I 298 8"".(*decoder).verifyChecksum*type.image/color.RGBA 299 "runtime.assertI2T,type.image/color.NRGBA,type.image/color.ColorVgo.itab.image/color.NRGBA.image/color.Color 300 runtime.convT2I6runtime.writeBarrierEnabled 301 .runtime.writebarrierptr 302 $runtime.panicindex 303 $runtime.panicindex 304 $runtime.panicindex 305 $runtime.panicslice 306 $runtime.panicslice 307 $runtime.panicslice 308 0runtime.morestack_noctxt@""".autotmp_0075&type."".FormatError"".autotmp_0074type.int"".autotmp_0073,type.image/color.NRGBA"".autotmp_0072*type.image/color.RGBA"".autotmp_0071type.int"".autotmp_00700type."".UnsupportedError"".autotmp_00690type."".UnsupportedError"".autotmp_0068type.[]uint8"".autotmp_0067/type.[]uint8"".autotmp_0066&type."".FormatError"".rgba*type.image/color.RGBA"".itype.int"".errtype.error"".ntype.int"".~r1 type.error"".lengthtype.uint32"".d type.*"".decoder`* @{{{{+ 313 316 317 318 319 320 321 322 !*+Tgclocals55cc6ee7528f0b48e5a6d9bfba36524aTgclocals4ccafbe600e2dcd75929e02c08919d6b\prebuilts/go/linux-x86/src/image/png/reader.go$"".(*decoder).ReaddH%HD$H;A]HH$1H$(H$0H$Hu&H$ 1H$(H$0HXp H$H$HD$HT$HT$PHD$HHt$H$ H$(H$0HHHHtHHHHH H$HNHL$H$HD$H$Hl$H$HT$ H$HD$0HL$8HL$pHD$hHt$H$ H$(H$0HHHHtHHHH$HHHHHHm HHbHm H$HH$5) ^pHHtHHHHH$H$H$HT$H$HL$HL$H$HD$ H$H*H$HD$H-Hl$HD$\$ H$HHK Hk(H$H,$H$HY(H$HHHtHHHHHjHH Hh(H$HT$H$H|$H$Ht$H$H,$H$HYHH$XpXpHHH$H$H$ HH$HH\$HH\$H$H\$HD$ H\$(H$(H\$0H$0HH$hpHH9}HH$H9KL$HHH,HHhL$LD$H$H|$H$Ht$H$H,$HL$xHY HD$ H\$(H\$XH\$0H\$`HD$@H$H9L$H$HHHK Hk(L$LD$H$HD$H$Ht$H$H,$H$HYHH$HL$@DBpA)DBpH$ H\$XH$(H\$`H$0HllWHH$H$H$ HH$HH\$HH\$H$H\$HD$ H\$(H$(H\$0H$0H1u`6 333 334 8"".(*decoder).verifyChecksum 335 io.ReadFull 336 8runtime.slicebytetostringtmp 337 go.string."IDAT" 338 339 runtime.eqstring Lgo.string."IDAT chunk length overflow"0type."".UnsupportedErrortype.errorBgo.itab."".UnsupportedError.error 342 runtime.convT2I 343 $runtime.panicslice 344 $runtime.panicsliceBgo.string."not enough pixel data"&type."".FormatErrortype.error8go.itab."".FormatError.error 345 runtime.convT2I 346 $runtime.panicindex 347 $runtime.panicindex 348 $runtime.panicindex 349 $runtime.panicindex 350 0runtime.morestack_noctxtp*"".autotmp_0095type.string"".autotmp_0093type.uint32"".autotmp_0092type.[]uint8"".autotmp_0091type.[]uint8"".autotmp_0090type.int"".autotmp_0089type.int"".autotmp_00880type."".UnsupportedError"".autotmp_0087type.[]uint8"".autotmp_0086&type."".FormatError"".autotmp_0085type.[]uint8"".autotmp_0084type.[]uint8"".autotmp_0083/type.[]uint8(encoding/binary.b2_type.[]uint8"".errtype.error"".ntype.int"".errtype.error"".errtype.error"".~r2Ptype.error"".~r1@type.int"".ptype.[]uint8"".d type.*"".decoder\MZJ 9&+$$<" * **}M.CTgclocalsffe471b206c7569cb0cc60d42e32041cTgclocalsb17ad412faed8e1ac56b9c6b0349be2f\prebuilts/go/linux-x86/src/image/png/reader.go("".(*decoder).decodedH%HD$H;A<H1H$H$1H$ H$(H$H\$`H1H9HL$`H$H$H$HL$Ht$Ht$hHl$Hl$pHL$ HT$(H$H$Ht01H$H$H$ H$(HHl$H#H^ $H\$H$1H\$xH$H$HxHHH$H\$hH\$H\$pH\$H\$H|$HHHKHOH$H$HD$D$ H\$(H\$xH\$0H$H|$8H\$@H$Ht@1H$H$H$H$ H$H$(H11HT$PHH$HHL$XHdu>1H$H$HH$ HH$(HH$HHtHxHHH$HD$H$HT$H$HL$H\$pH$H\$hH[(HT$ H|$(H\$0H$HL$XHHT$PHH$HtYH-H9/H<$H$Hl$H-Hl$H-Hl$H$HT$P\$ HuMH$]pu=H\$xH$H$H$1H$ H$(HHH$H$1H$H$HH$HH\$HH\$H$H\$HD$ H\$(H$ H\$0H$(HH$H$H_ HL$HD$H$H$H$H$1H$H$HH$HH\$HH\$H$H\$HD$ H\$(H$ H\$0H$(HlH$HxHH$H$1H\$H\$HD$D$ H\$(H\$xH\$0H$H|$8H\$@H$H$Ht81H$H$H$ H$H$(H1HL$HH(HH$H\$hH\$H\$pH\$H\$H|$HHHKHOH$H$H\$HH\$D$ H$HL$(H$Hl$0H$HT$8Ht$@H$H$Ht01H$H$H$ H$(HHtDH$H$H\$xH\$H$H\$HL$Hl$ H\$HH\$(H$HL$HHHHH$HH\$HH\$HD$V 365 :go.itab.*"".decoder.io.Reader 366 .compress/zlib.NewReader 367 &runtime.deferreturn 368 "runtime.deferproctype.io.Reader 369 runtime.convI2I 370 6"".(*decoder).readImagePass 371 &runtime.deferreturn io.ErrNoProgress io.ErrNoProgress 372 &runtime.deferreturnio.EOF io.EOF io.EOF 381 runtime.ifaceeq 382 &runtime.deferreturn>go.string."too much pixel data"&type."".FormatErrortype.error8go.itab."".FormatError.error 383 runtime.convT2I 384 &runtime.deferreturn&type."".FormatErrortype.error8go.itab."".FormatError.error 385 runtime.convT2I 386 &runtime.deferreturn 387 6"".(*decoder).readImagePass 388 &runtime.deferreturntype.io.Reader 389 runtime.convI2I 390 6"".(*decoder).readImagePass 391 &runtime.deferreturn 392 6"".(*decoder).mergePassInto 393 &runtime.deferreturn type.*"".decodertype.io.Reader:go.itab.*"".decoder.io.Reader 394 runtime.typ2Itab 395 0runtime.morestack_noctxtP""".autotmp_0107&type."".FormatError"".autotmp_0106o&type."".FormatError"".autotmp_0105Otype.string"".autotmp_0104type.int"".autotmp_0103/type.[]uint8"".autotmp_0101 type.*"".decoder"".itype.int"".ntype.int"".errtype.error"".imagePass type.image.Image"".passtype.int"".img type.image.Image"".errtype.error"".r$type.io.ReadCloser"".~r10type.error"".~r0 type.image.Image"".d type.*"".decodermdECh05@(#>g=-T80D 2\]we tw[ f>K8Tgclocals28442fe1b6b79c06163e79e71e5b8b7bTgclocals1fe09c65101354a988722cbe68f4200a\prebuilts/go/linux-x86/src/image/png/reader.go6"".(*decoder).readImagePassdH%H$hH;AEH 408 H$ 409 1H$H 410 H$P 411 1H$X 412 H$` 413 H$H$0H$H$H$H$H$H$H$E1L$ ML$(HN8Hn0H$ H$HxH$@ 414 HH$8 415 LL9DHHH+H{HSLCH$XH$ H)HHH$HH8DHHH$ L$`HL)HHH$PHCHHHH$ HCH$HCHn`H.H&H&Hn@H$H$ 11H1H9~ HHHH9~ HHH1HH$H$H$H$H$hH$pH$xH$H$H$H$H$H)H$H$HH$H$H$XH$ HH$`H$PH)H1H$ H$ H$ HH$HHHH$HD$HD$H\$H$ H\$ H$ H\$(H$ HH$HD$H$H$ HhH$ HhH$ =$H(H$HhH$Hh H$Hh(H$Hh0H$ Hh8H$H$H1H97$L$L$(IH$ $@ 416 t*L$H 417 L$P 418 1H$X 419 H$` 420 H 421 H$HHH?H=HHH$H$H$ HHHH?H=HHHH$(HH$H$(H\$H$(H\$H\$H$p H\$ H$x H\$(H$ HH$H$(H\$H$(H\$H\$H$hH\$ H$pH\$(H$xH$H$H$H9H$( 422 H$H$0 423 H\$H$p H\$H$x H\$H$ H\$ H$0H$ H$H\$0H$0H\$8H$8H$0H{H$0H-H9H$0H,$H$8Hl$H-Hl$H-Hl$\$ HH$@H$H1H$H 424 H$P 425 HH$HH\$HH\$H$@H\$HD$ H\$(H$X 426 H\$0H$` 427 H 428 H$0H-H9uDH$0H,$H$8Hl$H-Hl$H-Hl$\$ 1H$H 429 H$P 430 H$0H$X 431 H$8H$` 432 H 433 H$x H$ H HHL$p HtIH$ H$ L$ H$pH$xHQ HHL$hHtIH$` H$h L$X H$p H$x +@l$M\$M 434 \$MgH$ 435 Hk`HjH.H\H$xH$xH9BH$xH$xH?H=HH$ L$ HL9Hl]\$JH$H$HH$xH$HH91\$L\$JHH\$LH$H$H$xH$HH\$H$H\$\$L\$H$ \$J\$M\$MH\$JH$HH$H$HFH$xHH$xH$xH9H$hH$ H$pH$ H$xH$ H$p H$hH$x H$pH$ H$xH$ H$p H$ H$x H$ H$ H$HH$H$H$H9H$ H$H 437 H$(H$P 438 1H$X 439 H$` 440 H 441 H[H$H$H9H$H$H?H>HH$ L$ HL9Hl]\$FH$H$HH$H$HH91\$L\$FHUH\$LH$H$H$H$HH\$H$H\$\$L\$H$ \$F\$M\$MH\$FH$HH$H$HEH$HH$HH$H$H9wH$H$H?H)HH$ L$ HL9Hl]\$HH$ H$ HH$H$ HH91\$L\$HHH\$LH$H$H$H$ HH\$H$H\$\$L\$H$ \$H\$M\$MH\$HH$ HH$ H$ HEH$HH$H]HH$LCLKL9LI)I)ItM:L$ 445 L$ 446 L$ 447 H$ 448 H$ H$ 449 H$ H$ 450 H$ H$ H$ H$ H$ H$ H$ H$ H$ H9}H$ H$H$ H$H$ H\$H$H\$H$0H$H]HH$0HH$H$H9H$H$ L$ HHL9Hl]\$A1\$d\$e\$f\$g\$A\$d\$A\$e\$A\$fH$HHH$ L$ L9szH+\$gH$H$H$H\$H$H\$\$d\$\$e\$\$f\$\$g\$H$ H$HH$H7H$HH+H$@ HkH$H HkH$P H$PH$8H$pH$pH9}H$PH$@ L$H HL9HH$8L$ L$ HL9nM(A(@+H$PHH$@ L$H L98HH$8HL$ L$ L9 M(A(@+H$PH$@ L$H HL9HH$8L$ L$ HL9M(A(@+H$PH$@ L$H HL9soHH$PHH$PH$8HH$8H$pHH$pH$pH9H$H]HH$0HH$H$H9lH$H$H?H=HH$ L$ HL9$Hl]\$IH$H$HH$H$HH9\$I\$CHiH\$CH9\$CHLAPL9HYHH$H$H$HH\$H$H\$\$C\$H$ H$\$I\$M\$MH\$IH$HH$H$H,H$HH$ZHZH HH$H$H9H$H$H?H>HH$ L$ HL9%Hl]\$GH$H$HH$H$HH9\$G\$DHiH\$DH9\$DHLAPL9HYHH$H$H$HH\$H$H\$\$D\$H$ H$\$G\$M\$MH\$GH$HH$H$H+H$HH$YH `H$H$H9CH$H$H?H)HH$ L$ HL9%Hl]\$KH$(H$(HH$H$(HH9\$K\$EHiH\$EH9\$EHLAPL9HYHH$H$H$(HH\$H$H\$\$E\$H$ H$\$K\$M\$MH\$KH$(HH$(H$(H+H$HH$YH 471 HiHHH$H$H9HAHH$ H$L$ L9H+H9H$ H$L$ L9mH+HH$H$LAPL9?HiHH$HH$H$H9[LALIL9LI)I)ItM:L$ L$ L$ H$ H$ H$ H$ H$ H$ H$ H$ 472 H$ H$ 473 H$ H$ 474 H$ H$ 475 H9}H$ 476 H$H$ H$H$ 477 H\$H$H\$H$0H$H]HH$0HH$LCLKL9LI)I)ItM:L$ 483 L$ 484 L$ 485 H$ 486 H$ H$ 487 H$ H$ 488 H$ H$ H$ H$ H$ H$ H$ H$ H$ H9}H$ H$H$ H$H$ H\$H$H\$H$0H$H]HH$0H HH$H$H9tH$H$ L$ HHL9H+fL$HIIH$ L$ M9szJlfmH f\$N1f\$^H\$Nf\$^H$H$H$H\$H$H\$H\$^f\$H$ H$HH$H H$H$H9nH$H$ L$ HHL9H+fL$HIIH$ L$ M9mJlfmH f\$PH$H$ L$ HHL9+H+fL$H$ L$ HIIM9JlfmH f\$`1f$f$f$f$H\$Pf$H\$Pf$H\$Pf$H\$`f$H$H$H$H\$H$H\$H$f\$H$f\$H$f\$H$f\$H$ H$HH$3HoH$H$H9oH$H$ L$ HkHL9"H+fL$HMkIH$ L$ M9JlfmH f\$RH$H$ L$ HkHL9H+fL$H$ L$ HMkIM9iJlfmH f\$VH$H$ L$ HkHL9'H+fL$H$ L$ HMkIM9JlfmH f\$Z1f$f$f$f$H\$Rf$H\$Vf$H\$Zf$f$H$H$H$H\$H$H\$H$f\$H$f\$H$f\$H$f\$H$ H$HH$HH$H$H9H$H$ L$ HHL9H+fL$HIIH$ L$ M9iJlfmH f\$TH$H$ L$ HHL9'H+fL$H$ L$ HIIM9JlfmH f\$XH$H$ L$ HHL9H+fL$H$ L$ HIIM9mJlfmH f\$\H$H$ L$ HHL9+H+fL$H$ L$ HIIM9JlfmH f\$b1f$f$f$f$H\$Tf$H\$Xf$H\$\f$H\$bf$H$H$H$H\$H$H\$H$f\$H$f\$H$f\$H$f\$H$ H$HH$S\$MH$H$HH$ H$HH9H$ H$HL$ L9H++@l$MH$ H$HL$ L9syH+L$HL$H$ M)L$ M9sFJlmDD$ML@+H$HHH$HH$ H$HH9IHH$@H$H1H$H 516 H$P 517 HH$HH\$HH\$H$@H\$HD$ H\$(H$X 518 H\$0H$` 519 H 520 \$MH$X H$ 521 H$` H$ 522 H$h H$ 523 L$ 524 H$ 525 1L9.@l$MH$X\$M\$BH$ H$XL$ L9sPH++@l$MH$ H$XL$ L9s H+l$MDD$BL@+HHx\$MfH$@H$@H$H9H$ H$@L$ L9H++@l$MH$X H$@L$` L9H++H$ H$@L$ L9H+H$X L$@L$` M9Jlm@DD$ML@+H$@HH$@H$@H$H9!H$H$`H$ H$`H9H$ H$`L$ L9H++@l$MH$`L$H$ L)L$ L9H+H$X L$`L$` M9JlmHHH$ H$`L$ L9sTH+HH?II)LHDD$ML@+H$`HH$`H$ H$`H9\$MH$ H$H$ H\$H$ H\$H$X H\$H$` H\$ H$h H\$(H$H\$0H$0H$ H$ HH$HH\$HH\$HD$H$Hl$H$HpHf~HHMH`H$H$ 11H1H9~ HHHH9~ HHH1HH$HH$PH$XH$`H$hH$pH$xH$H$PH$`H$XH$HH)H$H$H$H$H$H$HH$H$H)H1H$H$H$HH$HHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$H$H$HhH$HhH$=H(H$HHhH$Hh H$Hh(H$Hh0H$Hh8H$H$H1H9t L$L$(IH$ :HH$HH\$HH\$HD$H$Hl$H$8HpH$H$ 11H1H9~ HHHH9~ HHH1HH$H$H$H$H$hH$pH$xH$H$H$H$H$H)H$H$(H$H$H$8H$ HH$@H$0H)H1H$ H$ H$ HH$HHHHH$HD$HD$H\$H$ H\$ H$ H\$(H$ HH$HD$H$H$ HhH$ HhH$ =H(H$HHhH$Hh H$Hh(H$Hh0H$ Hh8H$H$H1H9t L$L$(IH$ HH$HH\$HH\$HD$H$Hl$H$8HlHn@H$H$ E11H1I9~ LIHH9~ HHH1IHL$hLL$pH$xH$HLNHLFPHnXH$hL$pH$xH$L$ L$PL$ L$XH$ H$`L$0H$@H$8H$(H)H$HH$(L$PH$XH$8H$`HH$@L$0L)H1H$H$H$HH$HHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$H$H$HhH$HhH$=H(H$HhH$HHh H$PHh(H$XHh0H$`Hh8H$XHhHH$`HhPH$P=uqHh@H$H$H1H9t L$L$(IH$ HH$HH\$HH\$HD$L@@L$Hl$H$tH$Hl$H$gHH HH ;H 541 H'H$ H$ 11H1H$H$H$H$H9~ HHHH9~ HHH1H$H$H$H$H$H$H$H$H$hH$H$pH$H$xH$H$H$H$H$H$H$H$H$H$H$H$H$H$ H$H$H$H)H$H$H$H$H$H$H$H$H$HD$xH$H$H)H\$xH$HD$xH$H$1H$H$H$H$H$HHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$H$H$HhH$HhH$=H(H$HHhH$Hh H$Hh(H$Hh0H$Hh8H$H$H$H$H1H9t L$L$(IH$ HH$HH\$HH\$HD$H$Hl$H$(H H:H$H$PH$H$ H$0H$1H$H$H$H$H$PH$0H9~ H$PH$0H$PH$0H$H$H9~ H$H$H$H$1H$PH$H$0H$H$H$H$H$H$H$H$H$H$hH$hH$pH$pH$xH$xH$H$H$H$H$hH$hH$H$pH$H$xH$H$H$H$H$H$H)H$H$hH$H$pH$H$xH$H$H$H$H$H$H)H$H$H$H$H$h1H$H$H$H$H$hHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$H\$H$H$H$HkH$HkH$=H+H$H$HHkH$H$hHk H$pHk(H$xHk0H$Hk8H$H$H$H$H$H$H$H1H9t L$L$(IH$ HH$HH\$HH\$HD$H$Hl$ H SH$ H$`H$H$ H$@H$1H$H$H$H$ H$`H$@H9~ H$`H$@H$`H$@H$H$H9~ H$H$H$H$1H$`H$H$@H$H$H$H$H$ H$H$H$H$ H$hH$H$pH$H$xH$H$H$H$H$H$xH$H$(H$H$0H$H$8H$H$@H$H$8H$(H)H$H$H$H$H$H$H$H$H$HD$hH$H$H)H\$hH$HL$hH$H$x1H$( H$0 H$8 H$H$xHHHH$HD$HD$H\$H$( H\$ H$0 H\$(H$8 HH$H\$H$H$H$0 HkH$8 HkH$( =H+H$H$HHkH$H$Hk H$Hk(H$Hk0H$Hk8H$H$H$H$H$H$H$H1H9t L$L$(IH$ bHH$HH\$HH\$HD$H$Hl$H3H$0H$XH$H$ H$8H$1H$(H$0H$8H$@H$XH$8H9~ H$XH$8H$XH$8H$H$H9~ H$H$H$H$1H$XH$H$8H$H$(H$0H$8H$@H$(H$0H$8H$@H$hH$H$pH$H$xH$H$H$ H$H$H$pH$H$H$H$H$H$H$ H$H$H$H$H)H$H$H$H$H$H$H$H$ H$HD$pH$H$H)H\$pH$HL$pH$H$p1H$H$H$H$H$pHHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$H\$H$H$H$HkH$HkH$=H+H$H$HHkH$H$Hk H$Hk(H$Hk0H$ Hk8H$H$H$H$H$H$H$H1H9t L$L$(IH$ %HH$HH\$HH\$HD$H$Hl$HH$@H$hH$H$ H$HH$1H$H$H$H$H$hH$HH9~ H$hH$HH$hH$HH$H$H9~ H$H$H$H$1H$hH$H$HH$H$H$H$H$H$H$H$H$H$hH$hH$pH$pH$xH$xH$H$H$H$H$H$hH$H$pH$H$xH$H$H$H$H$H$H)H$H$hH$hH$pH$pH$xH$xH$H$H$H$H$pH)H$H$H$H$H$1H$H$ H$ H$H$HHHH$HD$HD$H\$H$H\$ H$ H\$(H$ HH$H\$H$H$H$ HkH$ HkH$=H+H$H$HHkH$H$hHk H$pHk(H$xHk0H$Hk8H$H$H$H$H$H$H$H1H9t L$L$(IH$ HH$HH\$HH\$HD$H$Hl$1H$H 546 H$P 547 1H$X 548 H$` 549 H 550 HHHH$ @ 552 "".interlacing"".interlacingtype.[]uint8 555 "runtime.makeslice type.image.Gray 558 "runtime.newobject 6runtime.writeBarrierEnabled>go.itab.*image.Gray.image.Imagetype.[]uint8 560 "runtime.makeslicetype.[]uint8 561 "runtime.makeslice 562 io.ReadFullio.EOFio.EOFio.EOF 566 runtime.ifaceeqBgo.string."not enough pixel data"&type."".FormatErrortype.error8go.itab."".FormatError.error 567 runtime.convT2I&io.ErrUnexpectedEOF&io.ErrUnexpectedEOF&io.ErrUnexpectedEOF 568 runtime.ifaceeq% 569 *image.(*Gray).SetGray* 570 $runtime.panicindex. 571 *image.(*Gray).SetGray0 572 $runtime.panicindex4 573 *image.(*Gray).SetGray5 574 $runtime.panicindex9 575 runtime.memmove: 576 $runtime.panicslice> 577 .image.(*NRGBA).SetNRGBA? 578 $runtime.panicindex? 579 $runtime.panicindexG 580 $runtime.panicindexG 581 $runtime.panicindexG 582 $runtime.panicindexH 583 $runtime.panicindexH 584 $runtime.panicindexH 585 $runtime.panicindexH 586 $runtime.panicindexL 587 >image.(*Paletted).SetColorIndexN 588 $runtime.panicsliceN 589 $runtime.panicindexS 590 >image.(*Paletted).SetColorIndexT 591 $runtime.panicsliceU 592 $runtime.panicindexY 593 >image.(*Paletted).SetColorIndex[ 594 $runtime.panicslice[ 595 $runtime.panicindexb 596 runtime.memmovec 597 $runtime.panicslicec 598 $runtime.panicslicec 599 $runtime.panicindexc 600 $runtime.panicindexg 601 runtime.memmoveh 602 $runtime.panicslicek 603 2image.(*Gray16).SetGray16l 604 $runtime.panicindexl 605 $runtime.panicindexs 606 6image.(*NRGBA64).SetNRGBA64t 607 $runtime.panicindext 608 $runtime.panicindext 609 $runtime.panicindext 610 $runtime.panicindex} 611 2image.(*RGBA64).SetRGBA64} 612 $runtime.panicindex} 613 $runtime.panicindex} 614 $runtime.panicindex~ 615 $runtime.panicindex~ 616 $runtime.panicindex~ 617 $runtime.panicindex 618 6image.(*NRGBA64).SetNRGBA64 619 $runtime.panicindex 620 $runtime.panicindex 621 $runtime.panicindex 622 $runtime.panicindex 623 $runtime.panicindex 624 $runtime.panicindex 625 $runtime.panicindex 626 $runtime.panicindex 627 $runtime.panicindex 628 $runtime.panicindex 629 $runtime.panicindex6go.string."bad filter type"&type."".FormatErrortype.error8go.itab."".FormatError.error 630 runtime.convT2I 631 $runtime.panicindex 632 $runtime.panicindex 633 $runtime.panicindex 634 $runtime.panicindex 635 $runtime.panicindex 636 $runtime.panicindex 637 $runtime.panicindex 638 $runtime.panicindex 639 $runtime.panicindex 640 $runtime.panicindex 641 "".filterPaeth 642 $runtime.panicindex 643 $runtime.panicslice 644 $runtime.panicslice type.*image.Gray type.image.Image>go.itab.*image.Gray.image.Image 645 runtime.typ2Itab 646 .runtime.writebarrierptrtype.[]uint8 647 "runtime.makeslice type.image.NRGBA 648 "runtime.newobject6runtime.writeBarrierEnabled@go.itab.*image.NRGBA.image.Image"type.*image.NRGBA type.image.Image@go.itab.*image.NRGBA.image.Image 649 runtime.typ2Itab 650 .runtime.writebarrierptrtype.[]uint8 651 "runtime.makeslicetype.image.RGBA 652 "runtime.newobject6runtime.writeBarrierEnabled>go.itab.*image.RGBA.image.Image type.*image.RGBA type.image.Image>go.itab.*image.RGBA.image.Image 653 runtime.typ2Itab 654 .runtime.writebarrierptrtype.[]uint8 655 "runtime.makeslice&type.image.Paletted 656 "runtime.newobject6runtime.writeBarrierEnabled6runtime.writeBarrierEnabledFgo.itab.*image.Paletted.image.Image(type.*image.Paletted type.image.ImageFgo.itab.*image.Paletted.image.Image 657 runtime.typ2Itab 658 .runtime.writebarrierptr 659 .runtime.writebarrierptrtype.[]uint8 660 "runtime.makeslice type.image.NRGBA 661 "runtime.newobject6runtime.writeBarrierEnabled@go.itab.*image.NRGBA.image.Image"type.*image.NRGBA type.image.Image@go.itab.*image.NRGBA.image.Image 662 runtime.typ2Itab 663 .runtime.writebarrierptrtype.[]uint8 664 "runtime.makeslice"type.image.Gray16 665 "runtime.newobject6runtime.writeBarrierEnabledBgo.itab.*image.Gray16.image.Image$type.*image.Gray16 type.image.ImageBgo.itab.*image.Gray16.image.Image 666 runtime.typ2Itab 667 .runtime.writebarrierptrtype.[]uint8 668 "runtime.makeslice$type.image.NRGBA64 669 "runtime.newobject6runtime.writeBarrierEnabledDgo.itab.*image.NRGBA64.image.Image&type.*image.NRGBA64 type.image.ImageDgo.itab.*image.NRGBA64.image.Image 670 runtime.typ2Itab 671 .runtime.writebarrierptrtype.[]uint8 672 "runtime.makeslice"type.image.RGBA64 673 "runtime.newobject6runtime.writeBarrierEnabledBgo.itab.*image.RGBA64.image.Image$type.*image.RGBA64 type.image.ImageBgo.itab.*image.RGBA64.image.Image 674 runtime.typ2Itab 675 .runtime.writebarrierptrtype.[]uint8 676 "runtime.makeslice$type.image.NRGBA64 677 "runtime.newobject6runtime.writeBarrierEnabledDgo.itab.*image.NRGBA64.image.Image&type.*image.NRGBA64 type.image.ImageDgo.itab.*image.NRGBA64.image.Image 678 runtime.typ2Itab 679 .runtime.writebarrierptr 680 $runtime.panicindex 681 0runtime.morestack_noctxt("".autotmp_0321type.[]uint8"".autotmp_03200type.image/color.NRGBA64"".autotmp_0319.type.image/color.RGBA64"".autotmp_03180type.image/color.NRGBA64"".autotmp_0317&.type.image/color.Gray16"".autotmp_0316type.uintptr"".autotmp_0315type.int"".autotmp_0314type.[]uint8"".autotmp_0313type.[]uint8"".autotmp_0312type.uintptr"".autotmp_0311type.int"".autotmp_0310type.[]uint8"".autotmp_0309type.[]uint8"".autotmp_0308type.int"".autotmp_0307type.int"".autotmp_0306type.int"".autotmp_0305type.int"".autotmp_0304&,type.image/color.NRGBA"".autotmp_0303type.uintptr"".autotmp_0302type.int"".autotmp_0301type.[]uint8"".autotmp_0300type.[]uint8"".autotmp_0299*type.image/color.Gray"".autotmp_0298*type.image/color.Gray"".autotmp_0297'*type.image/color.Gray"".autotmp_0296type.int"".autotmp_0295type.int"".autotmp_0294type.uint8"".autotmp_0293type.uint8"".autotmp_0292type.*uint8"".autotmp_0291type.int"".autotmp_0290type.int"".autotmp_0289'type.uint8"".autotmp_0288type.int"".autotmp_0287type.int"".autotmp_0286type.*uint8"".autotmp_0285&type.*image.NRGBA64"".autotmp_0284&type.*image.NRGBA64"".autotmp_0283type.int"".autotmp_0282type.int"".autotmp_0281type.int"".autotmp_0280type.int"".autotmp_0279type.int"".autotmp_0278(type.image.Rectangle"".autotmp_0277(type.image.Rectangle"".autotmp_0276type.int"".autotmp_0275type.int"".autotmp_0274type.*uint8"".autotmp_0273$type.*image.RGBA64"".autotmp_0272$type.*image.RGBA64"".autotmp_0271type.int"".autotmp_0270type.int"".autotmp_0269type.int"".autotmp_0268type.int"".autotmp_0267type.int"".autotmp_0266(type.image.Rectangle"".autotmp_0265(type.image.Rectangle"".autotmp_0264type.int"".autotmp_0263type.int"".autotmp_0262type.*uint8"".autotmp_0261&type.*image.NRGBA64"".autotmp_0260&type.*image.NRGBA64"".autotmp_0259type.int"".autotmp_0258type.int"".autotmp_0257type.int"".autotmp_0256type.int"".autotmp_0255type.int"".autotmp_0254(type.image.Rectangle"".autotmp_0253(type.image.Rectangle"".autotmp_0252type.int"".autotmp_0251type.int"".autotmp_0250type.*uint8"".autotmp_0249$type.*image.Gray16"".autotmp_0248$type.*image.Gray16"".autotmp_0247type.int"".autotmp_0246type.int"".autotmp_0245type.int"".autotmp_0244type.int"".autotmp_0243type.int"".autotmp_0242(type.image.Rectangle"".autotmp_0241(type.image.Rectangle"".autotmp_0240type.int"".autotmp_0239type.int"".autotmp_0238type.*uint8"".autotmp_0237"type.*image.NRGBA"".autotmp_0236"type.*image.NRGBA"".autotmp_0235type.int"".autotmp_0234type.int"".autotmp_0233type.int"".autotmp_0232type.int"".autotmp_0231type.int"".autotmp_0230(type.image.Rectangle"".autotmp_0229(type.image.Rectangle"".autotmp_0228type.int"".autotmp_0227type.int"".autotmp_0226type.*uint8"".autotmp_0225(type.*image.Paletted"".autotmp_0224(type.*image.Paletted"".autotmp_0223type.int"".autotmp_0222type.int"".autotmp_0221type.int"".autotmp_0220type.int"".autotmp_0219type.int"".autotmp_0218_0type.image/color.Palette"".autotmp_0217(type.image.Rectangle"".autotmp_0216(type.image.Rectangle"".autotmp_0215type.int"".autotmp_0214type.int"".autotmp_0213type.*uint8"".autotmp_0212 type.*image.RGBA"".autotmp_0211 type.*image.RGBA"".autotmp_0210type.int"".autotmp_0209type.int"".autotmp_0208type.int"".autotmp_0207type.int"".autotmp_0206type.int"".autotmp_0205(type.image.Rectangle"".autotmp_0204(type.image.Rectangle"".autotmp_0203type.int"".autotmp_0202type.int"".autotmp_0201type.*uint8"".autotmp_0200"type.*image.NRGBA"".autotmp_0199"type.*image.NRGBA"".autotmp_0198type.int"".autotmp_0197type.int"".autotmp_0196type.int"".autotmp_0195type.int"".autotmp_0194type.int"".autotmp_0193(type.image.Rectangle"".autotmp_0192(type.image.Rectangle"".autotmp_0191type.int"".autotmp_0190type.int"".autotmp_0188 type.*image.Gray"".autotmp_0187 type.*image.Gray"".autotmp_0186type.int"".autotmp_0184type.int"".autotmp_0183type.int"".autotmp_0182type.int"".autotmp_0181(type.image.Rectangle"".autotmp_0180 682 (type.image.Rectangle"".autotmp_0179type.int"".autotmp_0178type.int"".autotmp_0177type.int"".autotmp_0175type.int"".autotmp_0174type.int"".autotmp_0173type.int"".autotmp_0172type.int"".autotmp_0171type.int"".autotmp_0170type.int"".autotmp_0169type.[]uint8"".autotmp_0168type.int"".autotmp_0167type.[]uint8"".autotmp_0166type.int"".autotmp_0165type.int"".autotmp_0164type.int"".autotmp_0163type.int"".autotmp_0162type.int"".autotmp_0161type.int"".autotmp_0160type.uint8"".autotmp_0159type.int"".autotmp_0158type.int"".autotmp_0157type.int"".autotmp_0156type.int"".autotmp_0155type.uint8"".autotmp_0154type.int"".autotmp_0153type.int"".autotmp_0152type.int"".autotmp_0151type.int"".autotmp_0150type.uint8"".autotmp_0149type.int"".autotmp_0148type.int"".autotmp_0147type.int"".autotmp_0146type.int"".autotmp_0145type.int"".autotmp_0144type.int"".autotmp_0143type.int"".autotmp_0142type.int"".autotmp_0141type.[]uint8"".autotmp_0140type.int"".autotmp_0139type.int"".autotmp_0138type.uint8"".autotmp_0137type.int"".autotmp_0136type.int"".autotmp_0135type.uint8"".autotmp_0134type.int"".autotmp_0133type.int"".autotmp_0132type.uint8"".autotmp_0131&type."".FormatError"".autotmp_0130type.int"".autotmp_0129type.uint8"".autotmp_0128type.int"".autotmp_0127type.int"".autotmp_0126type.uint8"".autotmp_0125type.uint8"".autotmp_0124/type.[]uint8"".autotmp_0123type.int"".autotmp_0122type.uint8"".autotmp_0121type.int"".autotmp_0120&type."".FormatError"".autotmp_0119&type.*image.NRGBA64"".autotmp_0118$type.*image.RGBA64"".autotmp_0117&type.*image.NRGBA64"".autotmp_0116$type.*image.Gray16"".autotmp_0115"type.*image.NRGBA"".autotmp_0114(type.*image.Paletted"".autotmp_0113 type.*image.RGBA"".autotmp_0112"type.*image.NRGBA"".autotmp_0111 type.*image.Gray"".~r0%type.intimage.r2(type.image.Rectangle"".~r0&type.intimage.r2(type.image.Rectangle"".~r0 &type.*image.NRGBA64image.pix5type.[]uint8image.h4type.intimage.w3type.intimage.r2(type.image.Rectangle"".~r0(type.image.Rectangleimage.y15%type.intimage.x14#type.intimage.y03$type.intimage.x02"type.int"".~r0&type.intimage.r2(type.image.Rectangle"".~r0%type.intimage.r2(type.image.Rectangle"".~r0 691 $type.*image.RGBA64image.pix5type.[]uint8image.h4type.intimage.w3 type.intimage.r2(type.image.Rectangle"".~r0(type.image.Rectangleimage.y15%type.intimage.x14#type.intimage.y03$type.intimage.x02"type.int"".~r0&type.intimage.r2(type.image.Rectangle"".~r0&type.intimage.r2(type.image.Rectangle"".~r0 &type.*image.NRGBA64image.pix5type.[]uint8image.h4type.intimage.w3 type.intimage.r2(type.image.Rectangle"".~r0(type.image.Rectangleimage.y15%type.intimage.x14#type.intimage.y03$type.intimage.x02"type.int"".~r0&type.intimage.r2 (type.image.Rectangle"".~r0%type.intimage.r2(type.image.Rectangle"".~r0 701 $type.*image.Gray16image.pix5type.[]uint8image.h4type.intimage.w3 type.intimage.r2(type.image.Rectangle"".~r0(type.image.Rectangleimage.y15%type.intimage.x14#type.intimage.y03$type.intimage.x02#type.int"".~r0&type.intimage.r2(type.image.Rectangle"".~r0%type.intimage.r2(type.image.Rectangle"".~r0 "type.*image.NRGBAimage.pix5type.[]uint8image.h4type.intimage.w3 type.intimage.r2(type.image.Rectangle"".~r0(type.image.Rectangleimage.r2(type.image.Rectangleimage.r2(type.image.Rectangleimage.pix6type.[]uint8image.w4 type.intimage.p30type.image/color.Paletteimage.r2(type.image.Rectangle"".~r0(type.image.Rectangleimage.r2(type.image.Rectangleimage.r2(type.image.Rectangleimage.buf5type.[]uint8image.w3 type.intimage.r2(type.image.Rectangle"".~r0(type.image.Rectangleimage.r2 (type.image.Rectangleimage.r2(type.image.Rectangleimage.pix5type.[]uint8image.w3 type.intimage.r2(type.image.Rectangle"".~r0(type.image.Rectangleimage.r2(type.image.Rectangleimage.r2(type.image.Rectangleimage.pix5type.[]uint8image.w3 type.intimage.r2(type.image.Rectangle"".~r0(type.image.Rectangle"".acol&type.uint16"".bcol&type.uint16"".gcol&type.uint16"".rcol'type.uint16"".x!type.int"".bcol&type.uint16"".gcol'type.uint16"".rcol'type.uint16"".x!type.int"".acol&type.uint16"".ycol'type.uint16"".x!type.int"".ycol'type.uint16"".x!type.int"".x"type.int"".idx'type.uint8 715 "".x2#type.int"".b'type.uint8"".x!type.int"".idx'type.uint8 717 "".x2#type.int"".b'type.uint8"".x"type.int"".idx'type.uint8 719 "".x2$type.int"".b'type.uint8"".x!type.int"".x"type.int"".jtype.int"".itype.int"".pixtype.[]uint8"".ycol'type.uint8"".x!type.int 721 "".x2#type.int"".b'type.uint8"".x"type.int 722 "".x2$type.int"".b'type.uint8"".x!type.int 723 "".x2$type.int"".b'type.uint8"".x"type.int"".itype.int"".itype.int"".p'type.uint8"".itype.int"".itype.int"".pdattype.[]uint8"".cdattype.[]uint8"".errtype.error"".y$type.int 725 "".prtype.[]uint8 726 "".crtype.[]uint8"".rowSizetype.int "".bytesPerPixeltype.int"".p*type."".interlaceScan"".heighttype.int"".widthtype.int"".img type.image.Image"".nrgba64 &type.*image.NRGBA64"".rgba64 $type.*image.RGBA64"".gray16$type.*image.Gray16"".nrgba "type.*image.NRGBA"".paletted (type.*image.Paletted"".rgba type.*image.RGBA"".gray type.*image.Gray"".pixOffsettype.int"".bitsPerPixeltype.int"".~r4ptype.error"".~r3P type.image.Image"".allocateOnly@type.bool"".pass0type.int"".rtype.io.Reader"".d type.*"".decoder`"(((((((((2((B((, 731 732 N58.$ 742 =D 744 *&5QQ%w\X:II-6 745 E:d%%,: 747 E:d% 749 C:d%% 750 2 751 752 5 753 IYWY($ 755 E:G% 758 [p 760 E:G% 763 765 C:G% 768 770 5L$BC 772 773 <= 774 775 iP 776 op 777 opp 778 779 oppp ),0-&!d[%,), 781 w7o2JK 783 784 785 9<;/ 787 943/ 789 9,+/"21 791 792 9$#/% 794 * 795 9/ 797 9/ 799 9/ 803 9/K, 806 7<QylIJaIJaID)CJ%IJhIJiIJiID)CD)CJ%IJ%IJ%IJ%IHGJ"I877777777 Q1Tgclocals68c4affdc476982a9820da6f53093ec5Tgclocalsd42bcd0bf349a509cc9295e9f1d1ff5a\prebuilts/go/linux-x86/src/image/png/reader.go6"".(*decoder).mergePassInto98dH%H$H;AHxHH$LL9 HHH+Hl$xHkH$HkH$HkH$1H$H$H$1H$H$H$HD$81H\$XH\$`H\$hH\$pHD$PH$H$H$H$H$HD$H$H$H$H$D$=OR==8H1H9tH[H-H9LIHHE1L9tHmLL9HH)H$HiH$HiH$IAMQ MA(Iy0Iq8I)H$IiH$IiH$HD$8L$LT$XL$LD$`H$H|$hH$Ht$pHD$PH$HZ(HL$PH|$Ht$Hl$HD$ 1H$H$H$H$H$H9H$Ht$(H$HHHl$`H)Hl$8HH$LD$XL)HHH\$HH$H$H9=H\$xHD$0Hl$HHHHH$L$H9-L$H)I)ItMIMLHHHT$@L$L9H9L$H)I)ItMH$`L$hL$pL$@L$HLH$PL$XL$(L$8LH$ L9}HH$0H4$H$HT$HD$Ht$(HL$PHT$@HHD$0HH$H9HH$H9MHx>H,$LD$L LL$=H1H9tH[H-H9HHHE1L9tHmLL9HH)H$HiH$HiH$HpLP LH(L@0Hx8H(H$HhH$HhH$Ht$8L$LT$XL$LL$`L$LD$hH$H|$pHD$PXH,$LD$L LL$11E11=*H1H9tH[H-H92IHHE1L9tHmLL9HH)H$HiH$HiH$IAMQ MA(Iy0Iq8I)H$IiH$IiH$HD$8L$LT$XL$LD$`H$H|$hH$Ht$pHD$P|XH,$LD$L LL$=ORNH1H9tH[H-H9HHHE1L9tHmLL9HH)H$HiH$HiH$HpLP LH(L@0Hx8H(H$HhH$HhH$Ht$8L$LT$XL$LL$`L$LD$hH$H|$pHD$PSXH,$LD$L LL$11E11=e=H1H9tH[H-H92IHHE1L9tHmLL9HH)H$HiH$HiH$IAMQ MA(Iy0Iq8I)H$IiH$IiH$HD$8L$LT$XL$LD$`H$H|$hH$Ht$pHD$PXH,$LD$L LL$=H1H9tH[H-H9HHHE1L9tHmLL9HH)H$HiH$HiH$HpLP LH(L@0Hx8H(H$HhH$HhH$Ht$8L$LT$XL$LL$`L$LD$hH$H|$pHD$PXH,$LD$L LL$11E11=6LH1H9tH[H-H9eIHHE1L9tHmLL9HH)H$HiH$HiH$IAMQ MA(Iy0Iq8I)H$IiH$IiH$HD$8L$LT$XL$LD$`H$H|$hH$Ht$pHD$PXH,$LD$L LL$=~H1H9tH[H-H92IHHE1L9tHmLL9HH)H$HiH$HiH$IAMQ MA(Iy0Iq8I)H$IiH$IiH$HD$8L$LT$XL$LD$`H$H|$hH$Ht$pHD$P~XH,$LD$L LL$=NYPH1H9tH[H-H9HHHE1L9tHmLL9HH)H$HiH$HiH$HpLP LH(L@0Hx8H(H$HhH$HhH$Ht$8L$LT$XL$LL$`L$LD$hH$H|$pHD$PUXH,$LD$L LL$11E11E11\ 836 J"".interlacingh"".interlacing 837 $runtime.ifacethash"type.*image.Alpha"type.*image.Alpha 838 runtime.memmove 839 $runtime.panicslice 840 $runtime.panicslice type.image.Image 841 (runtime.panicdottype$type.*image.RGBA64$type.*image.RGBA64 type.image.Image 842 (runtime.panicdottype"type.*image.NRGBA"type.*image.NRGBA type.image.Image 843 (runtime.panicdottype&type.*image.NRGBA64&type.*image.NRGBA64 type.image.Image 844 (runtime.panicdottype!$type.*image.Gray16!$type.*image.Gray16% type.image.Image% 845 (runtime.panicdottype% type.*image.RGBA& type.*image.RGBA) type.image.Image) 846 (runtime.panicdottype*&type.*image.Alpha16+&type.*image.Alpha16. type.image.Image. 847 (runtime.panicdottype/ type.*image.Gray0 type.*image.Gray3 type.image.Image3 848 (runtime.panicdottype3(type.*image.Paletted4(type.*image.Paletted7 type.image.Image8 849 (runtime.panicdottype8 850 $runtime.panicindex8 851 0runtime.morestack_noctxt`T"".autotmp_0360type.[]uint8"".autotmp_0359type.[]uint8"".autotmp_0358(type.image.Rectangle"".autotmp_0357type.int"".autotmp_0356(type.image.Rectangle"".autotmp_0355type.int"".autotmp_0354(type.image.Rectangle"".autotmp_0353type.int"".autotmp_0352(type.image.Rectangle"".autotmp_0351type.int"".autotmp_0350(type.image.Rectangle"".autotmp_0349type.int"".autotmp_0348(type.image.Rectangle"".autotmp_0347type.int"".autotmp_0346(type.image.Rectangle"".autotmp_0345type.int"".autotmp_0344(type.image.Rectangle"".autotmp_0343type.int"".autotmp_0342(type.image.Rectangle"".autotmp_0338 type.image.Image"".autotmp_0337type.int"".autotmp_0336type.int"".autotmp_0335type.int"".autotmp_0334_type.[]uint8"".autotmp_0333type.int"".autotmp_0332/type.[]uint8"".autotmp_0331(type.image.Rectangle"".xtype.int"".dBasetype.int"".ytype.int"".bounds(type.image.Rectangle"".stype.int "".bytesPerPixeltype.int"".rect(type.image.Rectangle"".stridetype.int"".dstPixtype.[]uint8"".srcPixtype.[]uint8"".p*type."".interlaceScan"".passPtype.int"".src0 type.image.Image"".dst type.image.Image"".d type.*"".decoder" "R Lp D=IQ#<DLp #CO$Lp $'##<,Lp #+ZLp ,/#<<Lp #;OLp <?#<Lp 47#<4Lp #3Tgclocals6b4987f1e705354eeed25ad300690fc5Tgclocalsb6d6fb4b9c4dbd6cf41616cb10683df0\prebuilts/go/linux-x86/src/image/png/reader.go."".(*decoder).parseIDATdH%H;aH8HD$@11H\$PH\$Xl$HhpH$HL$HD$H\$H\$PH\$ H\$XH\$@HtfHL$(HKHD$0=u;HCH\$PHtH8H\$@H$HL$HD$HL$PHD$XH8LCL$HD$) 859 l 860 ("".(*decoder).decode6runtime.writeBarrierEnabled 861 8"".(*decoder).verifyChecksum 862 .runtime.writebarrierptr 863 0runtime.morestack_noctxt@p"".autotmp_0364 type.image.Image"".err type.error"".lengthtype.uint32"".d type.*"".decoderpvop&op+, 865 *M'5Tgclocals170309d2da858695ebefc5e7e0d9c320Tgclocalsc55cf99de9cdd8c8202a466952fa1a45\prebuilts/go/linux-x86/src/image/png/reader.go."".(*decoder).parseIENDdH%H;aHH1H\$`H\$h\$XtiHH\$8HD$@HH$HH\$HH\$H\$8H\$HD$ H\$(H\$`H\$0H\$hHHH\$PH$HL$HD$HL$`HD$hHH: 868 ^6go.string."bad IEND length"&type."".FormatErrortype.error8go.itab."".FormatError.error 869 runtime.convT2I 870 8"".(*decoder).verifyChecksum 871 0runtime.morestack_noctxt@"".autotmp_0365&type."".FormatError"".~r1 type.error"".lengthtype.uint32"".d type.*"".decoder$}& 873 # i'w'2Tgclocalsf47057354ec566066f8688a4970cff5aTgclocalsd8fdd2a55187867c76648dc792366181\prebuilts/go/linux-x86/src/image/png/reader.go0"".(*decoder).parseChunk))dH%HD$H;A 875 HH$1H$H$HH HtH HHHH$HNHL$H$HD$H$Hl$H$HT$ H$H\$(HD$0HL$8H$HD$xHtH$H$HHH6 HtH! HHH$HHHHHHm HHHm H$HH$) \$DHN Hn(H$H,$H$HY(H$HHDHtH/HHHHHH Hh(H$HT$H$H|$H$Ht$H$H,$H$HYHH$HHtHHHHH\$PH$H$HD$H$HT$H$HL$HT$ H$HL$(H|TH?H$H$HL$H-Hl$HD$H$H$H\$ HH*H$H$HL$H-Hl$HD$H$H$H$\$ HXhH|.HXhH$HXhHuyHh`HH 878 t_HH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$HH@hH$\$D\$HL$HD$H$H$H1ZH$HH$HL$H-Hl$HD$H$\$ HXhHt_HH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$HH@hH$\$D\$HL$HD$H$H$HHH$D$DH\$H\$pTD$DHHH9}HH=Hl$pHiH$HHH$HNHL$H$Hl$H$HD$H$HT$ HL$(HD$0HT$8H$HD$xHtH$H$HHL$HHHT$pHH$HHHHK Hk(H$HT$H$H|$H$Ht$H$H,$H$HYHD$DH\$H)H$H$HL$HD$H$H$HgDEHH$H$HL$H-Hl$HD$H$H$H$\$ HXhHt_HH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$HH@hH$\$D\$HL$HD$H$H$HHH$H$HL$H-Hl$HD$H$H$H$\$ HXhHt_HH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$HH@hH$\$D\$HL$HD$H$H$HH$HH$HL$H-Hl$HD$H$\$ HXhHt_HH$HH\$HH\$HH\$HD$ H\$(H$H\$0H$HH@hH$\$D\$HL$HD$H$H$HdO#v 886 887 io.ReadFull 888 889 2runtime.slicebytetostring go.string."IEND" 892 "runtime.cmpstring go.string."IDAT" 895 runtime.eqstring&type."".FormatErrortype.error8go.itab."".FormatError.error$"".chunkOrderError 896 runtime.convT2I 897 ."".(*decoder).parseIDAT go.string."IEND" 898 runtime.eqstring&type."".FormatErrortype.error8go.itab."".FormatError.error$"".chunkOrderError 899 runtime.convT2I 900 ."".(*decoder).parseIEND type.[4096]uint8 901 "runtime.newobject 902 io.ReadFull 903 8"".(*decoder).verifyChecksum 904 $runtime.panicslice 905 $runtime.panicslice go.string."IHDR" 906 runtime.eqstring&type."".FormatErrortype.error8go.itab."".FormatError.error$"".chunkOrderError 907 runtime.convT2I 908 ."".(*decoder).parseIHDR go.string."PLTE" 909 runtime.eqstring!&type."".FormatError!type.error!8go.itab."".FormatError.error!$"".chunkOrderError" 910 runtime.convT2I# 911 ."".(*decoder).parsePLTE$ go.string."tRNS"$ 912 runtime.eqstring%&type."".FormatError%type.error%8go.itab."".FormatError.error%$"".chunkOrderError% 913 runtime.convT2I& 914 ."".(*decoder).parsetRNS( 915 $runtime.panicindex( 916 $runtime.panicindex( 917 $runtime.panicindex( 918 $runtime.panicindex( 919 0runtime.morestack_noctxt0,"".autotmp_0383type.string"".autotmp_0382type.[32]uint8"".autotmp_0380type.error"".autotmp_0379type.uint32"".autotmp_0378type.[]uint8"".autotmp_0377type.[]uint8"".autotmp_0376type.int"".autotmp_0375type.error"".autotmp_0374type.error"".autotmp_0373type.error"".autotmp_0372type.error"".autotmp_0370type.[]uint8"".autotmp_0369type.[]uint8"".autotmp_0368type.[]uint8"".autotmp_0367/type.[]uint8"".&ignored"type.*[4096]uint8(encoding/binary.b2_type.[]uint8"".lengthtype.uint32"".errtype.error"".ntype.int"".~r0type.error"".d type.*"".decoder:::::s 922 9*&[8_3 924 K 925 _3 3C[ 929 _3[ 930 _3K 931 _3#*8{mmTgclocalscb395d89503762333b1bfb09ba74eb12Tgclocalsbecfd14a8b59fc2bfdd2cb5c84e16f8d\prebuilts/go/linux-x86/src/image/png/reader.go8"".(*decoder).verifyChecksum dH%HD$H;AGHH$1H$H$HHHtHHHHH$HNHL$H$HD$H$Hl$H$HT$ H$HD$0HL$8HL$PHD$HHtH$H$HHHeHtHPHHH$HH&HHHHm HHHm HL$xHH$) \$DHN Hn(Hl$`H,$HL$XHY@D$\$D9trHH\$hHD$pHH$HH\$HH\$H\$hH\$HD$ H\$(H$H\$0H$H1H$H$H 939 940 io.ReadFull8go.string."invalid checksum"&type."".FormatErrortype.error8go.itab."".FormatError.error 941 runtime.convT2I 942 $runtime.panicindex 943 $runtime.panicindex 944 $runtime.panicindex 945 $runtime.panicindex 946 0runtime.morestack_noctxt0"".autotmp_0392&type."".FormatError"".autotmp_0391type.uint32"".autotmp_0390type.[]uint8"".autotmp_0389/type.[]uint8"".~r0type.uint32(encoding/binary.b2_type.[]uint8"".errtype.error"".~r0type.error"".d type.*"".decoder4I,9r*AITgclocals41a13ac73c712c01973b8fe23f62d694Tgclocals98ad89ea9472b78800bdb3a2789d4f49\prebuilts/go/linux-x86/src/image/png/reader.go2"".(*decoder).checkHeaderdH%HD$H;AHH$1H$H$HHHtHHHHH$HNHL$HD$pHD$Hl$xHl$H$HT$ HD$0HL$8HL$HHD$@HtH$H$HH$HHtHHHHD$pH$HT$xHT$H$HL$HL$HL$PHD$ HD$XHuGH$HD$H-Hl$HD$\$ t1H$H$HHH\$`HD$hHH$HH\$HH\$H\$`H\$HD$ H\$(H$H\$0H$HO: 954 955 io.ReadFull 956 8runtime.slicebytetostringtmp:go.string."\x89PNG\r\n\x1a\n" 957 runtime.eqstring4go.string."not a PNG file"&type."".FormatErrortype.error8go.itab."".FormatError.error 958 runtime.convT2I 959 0runtime.morestack_noctxt0"".autotmp_0398otype.string"".autotmp_0397O&type."".FormatError"".autotmp_0396type.[]uint8"".autotmp_0395/type.[]uint8"".errtype.error"".~r0type.error"".d type.*"".decoder4q0.9nrWTgclocals41a13ac73c712c01973b8fe23f62d694Tgclocals04370ae8e333f87df1b4635605da671a\prebuilts/go/linux-x86/src/image/png/reader.go"".Decode dH%HD$H;AZH1H$H$1H$H$1H\$HH\$PHH\$(1H\$XH\$`HH$HD$HD$@Hl$(=HhHD$@H1H9pHL$@HD$XHL$`H$HD$HH$HL$PHH$HL$HH1HL$8H$H)H$=HiHl$HHi Hl$P=Hi(HL$0H$HL$0HD$HT$HT$pHD$hHt~H-H9uHH$HT$H-Hl$H-Hl$HT$pHD$h\$ tHH1H$H$H$H$HHYhHH$HL$0HD$HT$H$HD$xHtH-H9uKH$HT$H-Hl$H-Hl$H$HD$x\$ tHH1H$H$H$H$HHiH$HiH$1H$H$HLA(L$Hl$HL$8MLAL$Hl$HL$8HH$HH\$HH\$HD$^L@L$Hl$HD$@+B 968 (hash/crc32.IEEETable,type.hash/crc32.digest 969 "runtime.newobject6runtime.writeBarrierEnabledLgo.itab.*hash/crc32.digest.hash.Hash32type."".decoder 970 "runtime.newobject 971 runtime.duffzero6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled 972 2"".(*decoder).checkHeaderio.EOFio.EOFio.EOF 976 runtime.ifaceeq&io.ErrUnexpectedEOF&io.ErrUnexpectedEOF 977 0"".(*decoder).parseChunkio.EOF io.EOF io.EOF 981 runtime.ifaceeq &io.ErrUnexpectedEOF 982 &io.ErrUnexpectedEOF 984 .runtime.writebarrierptr 986 .runtime.writebarrierptr.type.*hash/crc32.digest type.hash.Hash32Lgo.itab.*hash/crc32.digest.hash.Hash32 991 runtime.typ2Itab 993 .runtime.writebarrierptr 995 0runtime.morestack_noctxt`"".autotmp_0404 type.*"".decoder"".autotmp_0403 type.hash.Hash32"".autotmp_0401 type.hash.Hash32"".autotmp_0400.type.*hash/crc32.digest"".autotmp_0399.type.*hash/crc32.digest"".~r0 type.hash.Hash32"hash/crc32.tab2,type.*hash/crc32.Table"".~r0 type.hash.Hash32"".err?type.error"".err_type.error"".d type.*"".decoder"".~r2@type.error"".~r1 type.image.Image"".rtype.io.Reader61|!^C9 1003 ! 1004 -F*+I*2U 1005 1006 ,rvoQcT99Tgclocalsdbe225b1632f2406d881b3dde3efb7dfTgclocals0b42513fdb39c54191d0904e00c52de6\prebuilts/go/linux-x86/src/image/png/reader.go\prebuilts/go/linux-x86/src/image/png/writer.go"".DecodeConfigdH%HD$H;AH1H$H$H$H$1H$H$1H\$XH\$`HH\$81H\$hH\$pHH$HD$HD$PHl$8=HhHD$PH1H9HL$PHD$hHL$pH$HD$XH$HL$`HH$HL$HHP1HL$HH$H)H$=HiHl$XHi Hl$`=Hi(HL$@H$HL$@HD$H|$H$HD$xHH-H9uKH$H|$H-Hl$H-Hl$H$HD$x\$ tHH=1H$H$H$H$H$H$HH$HL$@HD$HT$H$H$HH-H9uNH$HT$H-Hl$H-Hl$H$H$\$ tHH1H$H$H$H$H$H$HHi`H)H 1010 HYhH<1H$HH$Hi`HHlHuXH5H1HHHQ0HA8H$H$H$H$1H$H$HHtHtHHtHuH5HHuH5HmHcHH$HH\$HH\$HL$H|$t(HD$HHD$ HL$@Ht$(HT$0%H>H HtH tH 1013 xHH5HH 6HuH5HH H5HHuH5HiH_H5HLHYhH<1LA(L$Hl$HL$HLAL$Hl$HL$HHH$HH\$HH\$HD$,L@L$Hl$HD$PBj 1018 (hash/crc32.IEEETable,type.hash/crc32.digest 1019 "runtime.newobject6runtime.writeBarrierEnabledLgo.itab.*hash/crc32.digest.hash.Hash32type."".decoder 1020 "runtime.newobject 1021 runtime.duffzero6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled 1022 2"".(*decoder).checkHeaderio.EOFio.EOFio.EOF 1026 runtime.ifaceeq&io.ErrUnexpectedEOF&io.ErrUnexpectedEOF 1027 0"".(*decoder).parseChunk io.EOF io.EOF io.EOF 1031 1032 runtime.ifaceeq 1033 &io.ErrUnexpectedEOF 1034 &io.ErrUnexpectedEOF *image/color.GrayModel *image/color.GrayModel,image/color.NRGBAModel,image/color.NRGBAModel*image/color.RGBAModel*image/color.RGBAModel0type.image/color.Palette,type.image/color.ModelZgo.itab.image/color.Palette.image/color.Model 1037 runtime.convT2I,image/color.NRGBAModel,image/color.NRGBAModel.image/color.Gray16Model.image/color.Gray16Model0image/color.NRGBA64Model0image/color.NRGBA64Model.image/color.RGBA64Model.image/color.RGBA64Model0image/color.NRGBA64Model0image/color.NRGBA64Model 1038 .runtime.writebarrierptr 1039 .runtime.writebarrierptr.type.*hash/crc32.digest type.hash.Hash32Lgo.itab.*hash/crc32.digest.hash.Hash32 1040 runtime.typ2Itab 1041 .runtime.writebarrierptr 1042 0runtime.morestack_noctxt""".autotmp_0416"type.image.Config"".autotmp_0413"type.image.Config"".autotmp_0411 type.*"".decoder"".autotmp_0410 type.hash.Hash32"".autotmp_0408 type.hash.Hash32"".autotmp_0407.type.*hash/crc32.digest"".autotmp_0406.type.*hash/crc32.digest"".~r0 type.hash.Hash32"hash/crc32.tab2,type.*hash/crc32.Table"".~r0 type.hash.Hash32 1045 "".cm?,type.image/color.Model"".err_type.error"".errtype.error"".d type.*"".decoder"".~r2`type.error"".~r1 "type.image.Config"".rtype.io.Reader8! S9 1051 ! 1052 4I:2L:$:-&' 1054 S 1057 1058 ' 1059 1061 1U 1063 1064 4voXh[97Tgclocalsbe55473c35c82108762ff5f32809ea26Tgclocals3233577c66beb49f5f6236571d1023ef\prebuilts/go/linux-x86/src/image/png/reader.go\prebuilts/go/linux-x86/src/image/png/writer.go"".init.1dH%HD$H;AHH HH=HH-H1H\$pH\$xH$H$H$H$H|$PH|$pHt$XHt$xHl$`H$HT$hH$H$H$HHH HHH9w;HHHHk0HHl$pH\$Hl$H-H,$HH-H,$HT$HD$HL$H\$ HT$(HD$0HL$8HHD$@HHH HT$H=uHfH-H,$HT$HT$HHD$@B^( 1071 D"".DecodefR$"".DecodeConfigf`go.string."png"|:go.string."\x89PNG\r\n\x1a\n"image.formatsimage.formats image.formatsimage.formats"type.image.format 1072 (runtime.typedmemmove&type.[]image.format 1073 "runtime.growsliceimage.formats image.formats6runtime.writeBarrierEnabledimage.formatsimage.formats 1074 .runtime.writebarrierptr 1075 0runtime.morestack_noctxt"".autotmp_0420_"type.image.formatimage.magic2type.stringimage.name1type.string ,W,Tgclocals7d2d5fca80364273fb07d5820a76fef4Tgclocalse88a6e39a822a618d03d722f6ae4052e\prebuilts/go/linux-x86/src/image/png/reader.go"".writeUint32dH%H;avwHT$HL$D$ Hv\@*HHvDH@+HHv)H@+HHv H@+p 1084 1085 $runtime.panicindex 1086 $runtime.panicindex 1087 $runtime.panicindex 1088 $runtime.panicindex 1089 0runtime.morestack_noctxt@"".u0type.uint32"".btype.[]uint8.^ 1090 1091 j&Tgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/linux-x86/src/image/png/writer.go"".opaquedH%HD$H;AH1H\$xH$HH$H$H\$H$H\$H\$xH\$\$ HHT$xHT$XH$H\$`<tH$HZ \$$HH$H$H$H[(H\$H\$8HL$H\$H\$HH\$ H\$PHL$@H\$PH9HD$8H\$HH9~HD$0HD$HL$(HL$H$H$H$H[ HL$HD$ HD$pH$HL$hHY HL$(\$t$HHD$0HH\$HH9HH\$PH9a$HT 1093 btype."".opaquer 1094 $runtime.assertI2I2 1095 0runtime.morestack_noctxt0"".autotmp_0427type.int"".autotmp_0426?,type.image/color.Color"".autotmp_0424type."".opaquer"".xtype.int"".ytype.int"".b(type.image.Rectangle"".o_type."".opaquer"".~r1 type.bool"".m type.image.Image426vf=U]0Tgclocals51af24152615272c3d9efc8538f95767Tgclocals8c067d5052c60a71dd2787c367bb278b\prebuilts/go/linux-x86/src/image/png/writer.go"".abs8`JD$<s H\$HH)Hl$ "".~r1type.int"".dtype.uint800 Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/linux-x86/src/image/png/writer.go0"".(*encoder).writeChunk dH%H$`H;AH H$8L$HH$PH$(Hi0HtH H9H4$HL$HD$H$H$HH\$H$PH\$HH\$HD$ H$HL$(H$HD$0H\$8H$H\$@H$HH$HH\$HH\$H$H\$HD$ HL$(HD$0H$(Ht=H$HK0H$=uHC8H LC8L$HD$HH@HcIHH$I<@.HI H@+HIH@+HH$IL$H@+HEDADLHHDEDAELHxHDEDAFLHWHDEDAG1H\$hH\$pHH\$H1H\$XH\$`HH$HD$HD$PHl$H=HhHD$PH1H9HL$PHD$XHL$`H$HH$HHT$hHHD$pH$(H@H@H+HHHH$HT$H$Ht$H$Hl$H$H$HL$xHYHH$0H\$H$8H\$H$@H\$H$H$H\$xH[HH$(HHHHoH$H$H$H$H$H\$xH[@L$(D$H$H$H$H$H@*HHH@+HHH@+HH$HH$H@+LIoH@HZHHIHIhH$HT$H$H|$H$Ht$H$H,$H$HY H$(HL$(HD$0HH$HJ0H$=HB8Hj0HtH HJHjH$0H\$H$8H\$H$@H\$H$H,$H$HY H$(HT$(HL$0HH$HP0H$=HH8Hh0HtH HHHHHHHHHhH$HT$H$H|$H$Ht$H$H,$H$HY HL$(HD$0H$(Ht=H$HK0H$=uHC8H LC8L$HD$IL@8L$HL$H$(LB8L$HD$H$(EAuHH$HH\$HH\$HD$CL@L$Hl$HD$PZ 1113 1114 strconv.ItoaBgo.string." chunk is too large: " 1115 *runtime.concatstring30type."".UnsupportedErrortype.errorBgo.itab."".UnsupportedError.error 1116 runtime.convT2I6runtime.writeBarrierEnabled 1117 .runtime.writebarrierptr (hash/crc32.IEEETable 1118 ,type.hash/crc32.digest 1119 1120 "runtime.newobject 1121 6runtime.writeBarrierEnabledLgo.itab.*hash/crc32.digest.hash.Hash32 6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled 1124 .runtime.writebarrierptr 1125 .runtime.writebarrierptr 1126 .runtime.writebarrierptr 1127 $runtime.panicindex 1128 $runtime.panicindex 1129 $runtime.panicindex 1130 $runtime.panicindex.type.*hash/crc32.digest type.hash.Hash32Lgo.itab.*hash/crc32.digest.hash.Hash32 1131 runtime.typ2Itab 1132 .runtime.writebarrierptr 1133 $runtime.panicindex 1134 $runtime.panicindex 1135 $runtime.panicindex 1136 $runtime.panicindex 1137 $runtime.panicindex 1138 $runtime.panicindex 1139 $runtime.panicindex 1140 $runtime.panicindex 1141 0runtime.morestack_noctxt`0"".autotmp_0447type.error"".autotmp_0446type.error"".autotmp_0445type.error"".autotmp_0444 type.hash.Hash32"".autotmp_0442 type.hash.Hash32"".autotmp_0441.type.*hash/crc32.digest"".autotmp_0440type.[]uint8"".autotmp_0439type.[]uint8"".autotmp_0437type.[]uint8"".autotmp_0436type.[]uint8"".autotmp_0435.type.*hash/crc32.digest"".autotmp_0434/type.[]uint8"".autotmp_04330type."".UnsupportedError"".autotmp_0432type.string"".autotmp_0430type.int"".b_type.[]uint8"".~r0 type.hash.Hash32"hash/crc32.tab2,type.*hash/crc32.Table"".~r0 type.hash.Hash32"".btype.[]uint8"".crc type.hash.Hash32"".name@type.string"".btype.[]uint8"".e type.*"".encoderR"1B 1145 p> 1146 1147 *N# 1149 2e +ITgclocals689482aa6db86c01fa54c72fbbe58e52Tgclocals4b7040efeb7dea09d6d6b4d8c8b330c2\prebuilts/go/linux-x86/src/image/png/writer.go."".(*encoder).writeIHDR dH%HD$H;AMHH$H-HKHk H$H,$H$HY(H$Ld$L\$LT$LL$ HHHLHIHL\$8LL$HLLT$@Ld$0L)H$I@.HIgH@+HIHH@+HH$IL$H@+HHLHHIHLd$pLd$PL\$xL$LT$`L$LLL$hL\$XL)H$I@.HIwH@+HIXH@+HH$IL$(H@+Hh(H 1153 H@T@U@V@W@XHHLHt[H HH$H$HL$H$Hl$H$HT$HH\$ HD$(HHu @T@UuH 1156 k@T@U^H*Hu @T@UEH;@T@U.Hu @T@UH@T@U3 1170 go.string."IHDR" 1171 0"".(*encoder).writeChunk 1173 $runtime.panicindex 1175 $runtime.panicindex 1177 $runtime.panicindex 1179 $runtime.panicindex 1181 $runtime.panicindex 1183 $runtime.panicindex 1185 $runtime.panicindex 1187 $runtime.panicindex 1189 0runtime.morestack_noctxt"".autotmp_0460type.int"".autotmp_0459type.uint32"".autotmp_0458type.int"".autotmp_0455type.[]uint8"".autotmp_0454type.[]uint8"".autotmp_0453/type.[]uint8"".btype.[]uint8image.r2(type.image.Rectangle"".b_type.[]uint8image.r2(type.image.Rectangle"".b(type.image.Rectangle"".e type.*"".encoderP 1190 (`+" 1191 - 1192 1194 1195 1#*QTgclocals87d20ce1b58390b294df80b886db78bfTgclocals55b93fc8500931e797aa082d87ba0d9e\prebuilts/go/linux-x86/src/image/png/writer.go<"".(*encoder).writePLTEAndTRNSdH%HD$H;AHH$H$HH$HHD$@H$H$H$H$1H$HT$PH$HHl$PH9HT$`H"H 1199 HjHD$XHD$HH$H$HL$hHL$Hl$pHl$HH$HH[ HL$HD$ 1\$<\$=\$>\$?HH$H$HL$H$HD$H\$<H\$H$HD$H\$<I\$=I\$>H\$?HHHkHH<HiLH$Hl5DL$8DMHHkHHiLHHl5DD$9DEHHkHHiLHHl5@|$:@}tHD$@HHHiLH=}HlT$;UHT$`HD$XHHHl$PH9KH$HkH2HHHLHHH$H$Hl$H$H\$H$HT$HH\$ HD$(H$HD$@HHHHHr~HHHtjHLHt[HHH4$H$Hl$H$H\$H$HL$HH\$ HD$(HEEeH$H$HL$HD$H$HH\$HD$H$HL$H$HD$ H\$(H$H\$0H$HH$HH\$HH\$H$H\$HD$ HL$(HD$0H$Ht:HL$xHK0H$=uHC8HLC8L$HD$4 1208 ,image/color.NRGBAModel,image/color.NRGBAModel,type.image/color.NRGBA 1209 "runtime.assertI2T 1210 go.string."PLTE" 1212 0"".(*encoder).writeChunk go.string."tRNS" 1215 0"".(*encoder).writeChunk 1216 $runtime.panicslice 1217 $runtime.panicslice 1218 $runtime.panicindex 1219 $runtime.panicindex 1220 $runtime.panicindex 1221 $runtime.panicindex 1222 strconv.Itoa@go.string."bad palette length: " 1223 *runtime.concatstring2&type."".FormatErrortype.error8go.itab."".FormatError.error 1224 runtime.convT2I6runtime.writeBarrierEnabled 1225 .runtime.writebarrierptr 1226 0runtime.morestack_noctxt@4"".autotmp_0482type.int"".autotmp_0481type.int"".autotmp_0480type.int"".autotmp_0479type.int"".autotmp_0478,type.image/color.Color"".autotmp_0477.type.*image/color.Color"".autotmp_0476type.int"".autotmp_0475type.int"".autotmp_0474type.[]uint8"".autotmp_0473type.int"".autotmp_0472_type.[]uint8"".autotmp_0471type.int"".autotmp_0470type.int"".autotmp_0469,type.image/color.NRGBA"".autotmp_0468,type.image/color.Color"".autotmp_0467/0type.image/color.Palette"".autotmp_0466&type."".FormatError"".autotmp_0465type.string"".autotmp_0463type.int"".autotmp_0462type.int 1227 "".c1,type.image/color.NRGBA"".c,type.image/color.Color"".itype.int"".lasttype.int"".p0type.image/color.Palette"".e type.*"".encoder(, x'' x4)*, 1228 oTgclocals14c16763214c88f6ebc22b4b638329b7Tgclocalsfb70d14775e53cc60b96ad7bae3e5244\prebuilts/go/linux-x86/src/image/png/writer.go&"".(*encoder).WritedH%H;aH01H\$`H\$hH\$8H$H\$@H\$H\$HH\$H\$PH\$HH\$ HD$(HD$8Hh0Ht HD$XHh0Hl$`Hh8Hl$hH0H\$HH\$X1H\$`H\$hH0H 1230 go.string."IDAT" 1231 0"".(*encoder).writeChunk 1232 0runtime.morestack_noctxtp`"".~r2Ptype.error"".~r1@type.int"".btype.[]uint8"".e type.*"".encoder`{_`_`#F 1235 1236 _aTgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/linux-x86/src/image/png/writer.go"".filter""dH%HD$H;AiHH$H$HjLBH9HIL 1238 ItIHL$LHj LB(HHILJItIH$L$L$Hj8LB@HHILJ0ItIH$L$ML$HjPLBXHuHILJHItIIHl$pLD$xMLL$hHjhLBpH4HILJ`ItIHl$XLD$`LL$PH$H$HHHL$HtIIHl$HMI11L9}vH9HL9I,mL$H)L9yI,]L$IL9WI+@3@HHLHL9|IH|$0HD$(HD$1H9H9HL9I,mH)Hl$PLL$XL9Hl]LL$H\$PLD$XL9H+@b@HHLH\$HH9zHLl$L9(HH)H$H$H9 H,]$L9I+@l$HHT$ H)LT$8L\$@L9I,]\$L|$pLt$hH|$ Ll$Ld$0L\$@LT$8H$H$H$\$HH\$PLD$XL9SH;H9?H,9mH)@+LL$H\$PLD$XL9H;+@@HHLH\$H\$L9H\$L9}Ld$HD$(11L9}3IH9H+@k@HHLL9ML9}IHD$(11H9}tH$L$L9HH9H,DEDH$L$IL9H+@@HHLHH9|HL9H9SHII)I9eJ,mH)H$L$L9:Hl]H$L$IL9H+@@HHLL9L9}IHD$(11H9}yL9I+H9xHL9aI,m@H)L9CI,]IL9)I+@@HHLHH9|HL9HH)H9H)L9I,mHIH9HLH?MI)LHH)L9spI,]IL9sZI+@s=@HHLL9|#L9} HD$(H\$(H$HHF@HH)@HH)HL9;H9@HH) @HH)HHs@HH)HH@HH)@HH)@HH)uR 1280 1282 "".paeth 1283 $runtime.panicindex 1284 $runtime.panicindex 1285 $runtime.panicindex 1286 $runtime.panicindex 1287 $runtime.panicindex 1288 $runtime.panicindex 1289 $runtime.panicindex 1290 $runtime.panicindex 1291 $runtime.panicindex 1292 $runtime.panicindex 1293 $runtime.panicindex 1294 $runtime.panicindex 1295 $runtime.panicindex 1296 $runtime.panicindex 1297 $runtime.panicindex 1298 $runtime.panicindex 1299 $runtime.panicindex 1300 $runtime.panicindex 1301 $runtime.panicindex 1302 $runtime.panicindex 1303 $runtime.panicindex 1304 $runtime.panicindex 1305 $runtime.panicindex 1306 $runtime.panicindex 1307 $runtime.panicindex 1308 $runtime.panicindex 1309 $runtime.panicindex 1310 $runtime.panicindex 1311 $runtime.panicindex! 1312 $runtime.panicindex! 1313 $runtime.panicindex! 1314 $runtime.panicindex! 1315 $runtime.panicslice! 1316 $runtime.panicslice! 1317 $runtime.panicslice! 1318 $runtime.panicslice! 1319 $runtime.panicslice! 1320 $runtime.panicslice" 1321 0runtime.morestack_noctxt`^"".autotmp_0519type.int"".autotmp_0518type.int"".autotmp_0517type.int"".autotmp_0516type.int"".autotmp_0515type.int"".autotmp_0514type.uint8"".autotmp_0513type.int"".autotmp_0512type.int"".autotmp_0511type.int"".autotmp_0510type.int"".autotmp_0509type.int"".autotmp_0508type.int"".autotmp_0507type.int"".autotmp_0506type.int"".autotmp_0505type.int"".autotmp_0504type.int"".autotmp_0503type.int"".autotmp_0501type.int"".autotmp_0500type.int"".autotmp_0499type.int"".autotmp_0498type.int"".autotmp_0497type.int"".autotmp_0496type.int"".autotmp_0495type.int"".autotmp_0494type.int"".autotmp_0493type.int"".autotmp_0492type.int"".autotmp_0491type.int"".autotmp_0490type.int"".autotmp_0488type.int"".autotmp_0487type.int"".autotmp_0485type.int"".itype.int"".filtertype.int"".besttype.int"".sumtype.int"".ntype.int"".pdattype.[]uint8"".cdat4type.[]uint8"".cdat3type.[]uint8"".cdat2type.[]uint8"".cdat1_type.[]uint8"".cdat0/type.[]uint8"".~r3Ptype.int"".bpp@type.int 1325 "".prtype.[]uint8 1326 "".cr type.*[5][]uint8 / 1328 2=@:4<<2 ?;; 1331 * 2:K: G*_" # Tgclocalsaa5118865dd28fc3eaacbfc830efb456Tgclocals4783e5c4f58a98fa78a5a002c3f98dbd\prebuilts/go/linux-x86/src/image/png/writer.go"".writeImageeedH%H$8H;AFHH1H$H$H$PH$H$XH\$H$xH\$Hl$HL$ HT$(H$H$HtH$H$HHH$Hl$$HHD$H$H$pH 1338 HH$H$hH$H$`H[(H\$H$H\$H$H\$H$H\$ H$H$1H1H$H$H9(H$H$H$H$H$H$H$H$HH$H$H$H)HHHHH$HD$HD$H$HT$HL$ HD$(H$HH~HkHHHKHCH$HHPHkHHHCHkH$H$HH$@1H$HH$H9H$H$H$HH$H$H$XHH$PH$@H$H)HHHHH$HD$HD$L$L$H$H$H\$H$(H\$ H$0H\$(H$8H$`1H9tH[H-H9H$hIH$H$`1H9tH[H-H9H$hIH$H$`1H9tH[H-H9H$hHH$H$`1H9tH[H-H9\H$hIH$ILL$HM9HH$H$pH 1340 HB1I9LH)IjH$HH$HHHL$HtIIIMH$L$ML$H$I)IMJM9uL9lMI)I)ItML$LL$L$L$L$LL$L$L$L$LL$xM9}LH$H4$H$pHT$HD$H$x1HtJH$H$H$(H\$H$0H\$H$8H\$H$H\$ HD$(H$H$H$HHSHkHH|$HHHNHOHNHOL$L$H$L$L$L$H$H$HL$(Hl$0H$H$HtH$H$HHL$(H$0H$8H$H$(H$H$0H$H$8L$pL$H$xH$H$H$LL$HILL$HM91H$H$HHHI9HD$pHD$LL$H$hH$H$`H[ HL$HD$ H$HL$H$ HD$HH$HH[ HL$HD$ 1\$;HH$H$HL$H$HD$H\$;H\$H$L$LL$H\$;HH$H$H$H$HH$H$H9s%HD$:HHH$HD$pHHL$L$XL$L$`H$H$h11H$@IH$HH$P1I9RI@MIxMhI@L$L$@H$H$HL$L$PHLH)HHH$hL$xLL$pH$`H)HHH9HHL9IHHH9M*A(@+HHL9scIHHH9sMM*A(@+HHL9s/IHHH9sM*A(@+HHoHI9/HD$xHD$LL$H$hH$H$`H[ HL$HD$ H$H$H$HY L$L$XH$`LL$HH$t$T$L$HHH9seI*@+HHH9sGI2@+HHH9s(I@+HHH$HD$xHA1I9ItEMUI}MEIEL$L$@H$H$HL$L$PAEH 1356 1H91LH)HoH$HH$HHHL$HtIIIMH$L$ML$H$I)ILOM9L9LI)I)ItML$LL$L$L$L$LL$L$L$L$xLL$M9}LH$pH$H$Ht$HD$1H$H$HH$H$`H\$H$hH\$H$H\$H$H$H$H$H$H$H9 HD$`HD$H\$HH\$H$H$H$H[0H$\$HH$H$H$H$HH$H$H9s!HHHH$HD$`HXHHP1I98LH)ImH$HH$H HHL$HtIIIL$H$(L$8ML$0H$ I)IIMMM9L9MUI)I)ItMH$L$L$L$L$LL$L$L$L$LL$xM9}LH$H4$H$pHT$HD$&HI9HD$PHD$LL$H$hH$H$`H[ HL$HD$ H$HL$H$HD$HH$HH[ HL$HD$ 1\$D\$E\$F\$GHH$H$HL$H$ HD$H\$DH\$L$LL$HH$\$DI\$EI\$FI\$GHHHH$H$H$H9H1Dd$@D#HHH$H$H$H9H1D\$ADHHH$H$H$H9swH1DT$BDHHH$H$H$H$H$H$H9s(H 1367 @|$C@;HHH$HD$PHHHI9HD$XHD$LL$H$hH$H$`H[ HL$HD$ H$HL$H$ HD$HH$HH[ HL$HD$ 1f\$>HH$H$HL$H$HD$H\$>H\$L$H$LL$HH\$>HHHH$H$H$H9szH:Hf@+HHH$H$H$H$HH$pH$xH9s'HfD$<HHH$HD$XHHHI9rHD$hHD$LL$H$hH$H$`H[ HL$HD$ H$ H$H$HY L$LL$HL$t$T$L$LIH$H$H$HI9\J@+IIH$H$H$HI9J@3HHH$H$H$HH9H;@+HHH$H$H$HH9H;HHH$H$H$HH9stH3@+HHH$H$H$H$HH$pH$xH9s"HHHH$HD$hH%HlHI9`H$HD$LL$H$hH$H$`H[ HL$HD$ H$HL$H$ HD$HH$HH[ HL$HD$ 1f$f$f$f$HH$H$HL$H$HD$H$H\$L$LL$HH$H$HH$HH$HH$HIIH$L$H$HM9JHf@+IIH$L$H$HM9Jf$@;IIH$H$H$HI9JHf@+IIH$H$H$HI9BJf$@3HHH$H$H$HH9H;Hf@+HHH$H$H$HH9H;f$HHH$H$H$HH9H3Hf@+HHH$H$H$H$HH$pH$xH9s-Hf$HHH$H$H11h1+1HuH$6H 1396 ,H$H2HuH$HH$HuH$HH$HH 1400 1401 8compress/zlib.NewWriterLevel 1402 &runtime.deferreturn@compress/zlib.(*Writer).Closef 1403 "runtime.deferproc 1404 runtime.duffzerotype.[]uint8 1405 "runtime.makeslicetype.[]uint8 1408 "runtime.makeslice type.*image.Gray type.*image.RGBA(type.*image.Paletted"type.*image.NRGBA 1410 runtime.memmove 1411 "".filter 1412 :compress/zlib.(*Writer).Write 1413 &runtime.deferreturn 1414 &runtime.deferreturn 1415 $runtime.panicindex 1416 $runtime.panicslice 1417 $runtime.panicslice*image/color.GrayModel*image/color.GrayModel *type.image/color.Gray 1418 "runtime.assertI2T" 1419 $runtime.panicindex( 1420 $runtime.panicindex) 1421 $runtime.panicindex) 1422 $runtime.panicindex) 1423 $runtime.panicindex) 1424 $runtime.panicindex) 1425 $runtime.panicindex**- 1426 $runtime.panicindex- 1427 $runtime.panicindex- 1428 $runtime.panicindex3 1429 runtime.memmove4 1430 $runtime.panicslice4 1431 $runtime.panicslice40type.image.PalettedImage5 1432 "runtime.assertI2I78 1433 $runtime.panicindex= 1434 runtime.memmove= 1435 $runtime.panicslice> 1436 $runtime.panicslice>?,image/color.NRGBAModel?,image/color.NRGBAModel?@,type.image/color.NRGBAA 1437 "runtime.assertI2TE 1438 $runtime.panicindexF 1439 $runtime.panicindexF 1440 $runtime.panicindexF 1441 $runtime.panicindexGG.image/color.Gray16ModelH.image/color.Gray16ModelHH.type.image/color.Gray16I 1442 "runtime.assertI2TL 1443 $runtime.panicindexL 1444 $runtime.panicindexMMT 1445 $runtime.panicindexT 1446 $runtime.panicindexT 1447 $runtime.panicindexT 1448 $runtime.panicindexT 1449 $runtime.panicindexT 1450 $runtime.panicindexUV0image/color.NRGBA64ModelV0image/color.NRGBA64ModelVW0type.image/color.NRGBA64X 1451 "runtime.assertI2Ta 1452 $runtime.panicindexa 1453 $runtime.panicindexa 1454 $runtime.panicindexa 1455 $runtime.panicindexa 1456 $runtime.panicindexa 1457 $runtime.panicindexa 1458 $runtime.panicindexb 1459 $runtime.panicindexb 1460 $runtime.panicindexb 1461 $runtime.panicindexb 1462 $runtime.panicindexe 1463 &runtime.deferreturne 1464 0runtime.morestack_noctxt "".autotmp_0621type.[]uint8"".autotmp_0620type.int"".autotmp_0619type.int"".autotmp_0618type.int"".autotmp_0617type.int"".autotmp_0616type.int"".autotmp_0615type.int"".autotmp_0614type.int"".autotmp_0613type.int"".autotmp_0612type.int"".autotmp_0611type.int"".autotmp_0610type.int"".autotmp_0609type.int"".autotmp_0608type.int"".autotmp_0607type.int"".autotmp_0606type.int"".autotmp_0605type.int"".autotmp_0604type.int"".autotmp_0603type.int"".autotmp_0602type.int"".autotmp_0601type.int"".autotmp_0600type.uintptr"".autotmp_0599type.int"".autotmp_0598type.[]uint8"".autotmp_0597type.[]uint8"".autotmp_0596type.int"".autotmp_0595type.int"".autotmp_0594type.uintptr"".autotmp_0593type.int"".autotmp_0592type.[]uint8"".autotmp_0591type.[]uint8"".autotmp_0590type.int"".autotmp_0589type.int"".autotmp_0588type.int"".autotmp_0587type.int"".autotmp_0586type.int"".autotmp_0585type.int"".autotmp_0584type.int"".autotmp_0583type.int"".autotmp_0582type.int"".autotmp_0581type.[]uint8"".autotmp_0580type.[]uint8"".autotmp_0578type.int"".autotmp_0577type.[]uint8"".autotmp_0576type.[]uint8"".autotmp_0575type.int"".autotmp_0574type.int"".autotmp_0573type.int"".autotmp_0572type.int"".autotmp_0571type.int"".autotmp_0569 1466 type.int"".autotmp_0568type.int"".autotmp_0567 1467 type.int"".autotmp_0566type.int"".autotmp_0565type.int"".autotmp_0564type.int"".autotmp_0563 1468 0type.image/color.NRGBA64"".autotmp_0562,type.image/color.Color"".autotmp_0561,type.image/color.Color"".autotmp_0560type.int"".autotmp_0559type.int"".autotmp_0558,type.image/color.Color"".autotmp_0557type.int"".autotmp_0556type.int"".autotmp_0555.type.image/color.Gray16"".autotmp_0554,type.image/color.Color"".autotmp_0553,type.image/color.Color"".autotmp_0552type.int"".autotmp_0551type.int"".autotmp_0550,type.image/color.NRGBA"".autotmp_0549,type.image/color.Color"".autotmp_0548,type.image/color.Color"".autotmp_0547type.[]uint8"".autotmp_0546type.int"".autotmp_0545type.[]uint8"".autotmp_0544type.int"".autotmp_0543type.int"".autotmp_05410type.image.PalettedImage"".autotmp_0540type.[]uint8"".autotmp_0539type.int"".autotmp_0538type.[]uint8"".autotmp_0537type.int"".autotmp_0536type.int"".autotmp_0535,type.image/color.Color"".autotmp_0534type.int"".autotmp_0533type.int"".autotmp_0532type.int"".autotmp_0531type.int"".autotmp_0530*type.image/color.Gray"".autotmp_0529,type.image/color.Color"".autotmp_0528,type.image/color.Color"".autotmp_0527type.[]uint8"".autotmp_0526type.int"".autotmp_0525type.[]uint8"".autotmp_0520type.[]uint8image.r2(type.image.Rectangleimage.r2 1472 (type.image.Rectangleimage.r2(type.image.Rectangleimage.r2 (type.image.Rectangleimage.r2(type.image.Rectangleimage.r2 (type.image.Rectangle"".errtype.error"".c 1474 0type.image/color.NRGBA64"".xtype.int"".xtype.int"".c.type.image/color.Gray16"".xtype.int"".c,type.image/color.NRGBA"".xtype.int"".xtype.int 1482 "".pi0type.image.PalettedImage"".xtype.int"".pixtype.[]uint8"".cr0type.[]uint8"".c*type.image/color.Gray"".xtype.int"".i 1488 type.int"".ytype.int"".nrgba"type.*image.NRGBA"".paletted(type.*image.Paletted"".rgba type.*image.RGBA"".gray type.*image.Gray 1490 "".prtype.[]uint8"".i 1491 type.int 1492 "".crtype.[5][]uint8"".b(type.image.Rectangle"".bpp 1494 type.int"".errtype.error 1496 "".zw4type.*compress/zlib.Writer"".~r4`type.error"".levelPtype.int 1498 "".cb@type.int"".m type.image.Image"".wtype.io.WriterB" # 24B. 1510 &N/L6666 1512 1514 Jx B 1518 0I 1520 - /%' ~ F( 1526 1528 xwi| [ 1530 d 1531 1533 ba430H 1536 1537 2I 1540 n71713E 1543 999:999M)" 1546 ) 1549 1552 1 ZhZ H 1554 Rjk 1555 AYKjTgclocals0a58b0799ca56710e639b1ca529f9796Tgclocalsbd050223b61d3d32c7ab53e7e2dbb19f\prebuilts/go/linux-x86/src/image/png/writer.go0"".(*encoder).writeIDATsdH%HD$H;AHH$Hk0HtHH$H\$XH1H9)HL$XHD$pHHL$xHL$hHH\$`1H9tH[H-H9HHYH9HHD$HHD$PH$HH+H,$H\$H\$@H1H9HHL$PHD$pH$HL$xHL$H$HH^H|$HHHKHOH$Hk(Hl$ H\$@H\$(HL$0HD$8H$HH$HK0H$=HC8H$Hk0HtHH\$HH$HL$HD$H$Ht=H$HK0H$=uHC8HLC8L$HD$LC8L$HD$h<HH$HH\$HH\$HD$HHHH$HD$HD$H\$H$H\$ H$H\$(H$HH$HD$1H(HhHhHhHh Hh(Hh0Hh8HD$PH$HhH$Hh H$=u@HhHl$`Hh0Hl$h=u Hh8sL@8L$Hl$HD$PWL@L$Hl$HD$P11HH$HH\$HH\$HD$C8 1559 :go.itab.*"".encoder.io.Writer$type.*bufio.Writer 1560 "".levelToZlib>go.itab.*bufio.Writer.io.Writer 1561 "".writeImage6runtime.writeBarrierEnabled 1562 *bufio.(*Writer).Flush6runtime.writeBarrierEnabled 1563 .runtime.writebarrierptr 1564 .runtime.writebarrierptr$type.*bufio.Writer type.io.Writer >go.itab.*bufio.Writer.io.Writer 1565 runtime.typ2Itab type.[]uint8 1566 1567 "runtime.makeslice 1568 "type.bufio.Writer 1570 "runtime.newobject6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled 1574 .runtime.writebarrierptr 1576 .runtime.writebarrierptr type.*"".encodertype.io.Writer:go.itab.*"".encoder.io.Writer 1577 runtime.typ2Itab 1578 0runtime.morestack_noctxt"".autotmp_0657type.*uint8"".autotmp_0656$type.*bufio.Writer"".autotmp_0655$type.*bufio.Writer"".autotmp_0653otype.io.Writer"".autotmp_0652type.error"".autotmp_0651Otype.error"".autotmp_0650type.int"".autotmp_0649$type.*bufio.Writer"".autotmp_0648/type.[]uint8"".autotmp_0647type.int"".autotmp_0646$type.*bufio.Writer"".autotmp_0645 type.*"".encoderbufio.w2type.io.Writer 1579 "".bw$type.*bufio.Writer"".e type.*"".encoder4N\}G@T 2}i k;178Tgclocalsa9ea41aae9e32efcc8711d8fabe405fbTgclocalsd88df1243b7475551bc04cf11e93eaa2\prebuilts/go/linux-x86/src/image/png/writer.go"".levelToZlibHD$H*Hu 1582 HD$ Hu 1583 HD$HD$Hu 1584 HD$HuHD$ "".~r1type.int"".l0type."".CompressionLevel``, 1587 1588 1589 1591 Tgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/linux-x86/src/image/png/writer.go."".(*encoder).writeIENDdH%H;av=H0H\$8H$1H\$H\$H\$HH\$ HD$(H0 1593 ` go.string."IEND" 1594 0"".(*encoder).writeChunk 1595 0runtime.morestack_noctxt`"".e type.*"".encoder`8_``` 1596 BTgclocals87d20ce1b58390b294df80b886db78bfTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/linux-x86/src/image/png/writer.go"".EncodedH%H;avoH81H\$`H\$hHH$H\$H$H\$@H\$H\$HH\$H\$PH\$H\$XH\$ HL$(HD$0HL$`HD$hH8x 1598 1599 Dtype."".EncoderV 1600 "runtime.newobject 1601 ("".(*Encoder).Encode 1602 0runtime.morestack_noctxt`p"".~r2@type.error"".m type.image.Image"".wtype.io.WriterpjopJ 1604 *fTgclocals8ead428b4183a0f1b19d8f59d3dde163Tgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/linux-x86/src/image/png/writer.go("".(*Encoder).Encode dH%H$@H;AH@1H$pH$xH$hH$H$`H[(HL$H\$H\$pHD$H\$ H$HHD$xHL$hH)H\$XH$hH$H$`H[(H\$H$HL$H\$H$H\$ H$H$HD$XH)H\$`HHHH9HH9HH$HD$H$H$H=^H(H$PHhH$X=HhH$`HhH$h=Hh 1H$H$H$ HH$H$`H\$H$hH\$HD$\$ H$hH$H$`H[0HL$HD$1H$(H$0H$8HH$H$HL$H$HD$H$(H\$\$ H$(H$H$0H$H$8H$ H$H*H$HC( 1606 H$PH$H$XH\$HH\$HD$HL$(HD$0H$H$HK0H$=HC8H$H$H$Ht0H$H$HD$H$H\$H$ H\$H$H$H$H$H$Hk0H$pHk8H$xH@LC8L$HD$PH$hH$H$`H[0HD$HL$H$H$H$H-H9u]H$H$HL$H-Hl$H-Hl$H$H$\$ tH$HC(AH-H9u]H$H$HL$H-Hl$H-Hl$H$H$\$ tH$HC(H-H9H$H$HL$H-Hl$H-Hl$H$H$\$ tJH$`H$H$hH\$H$\$t HA(CHA(6H-H9uLH$H$HL$H-Hl$H-Hl$H$H$\$ ^H$H-H9u4H$HL$H-Hl$H-Hl$\$ H$`H$H$hH\$H$\$t HA(YHA(LL@ L$Hl$L@L$Hl$H$H$Hl$H$H$HD$ 1611 H\$H$H\$H$H\$`H$HD$ 1612 HL$HD$H$HH\$HD$H$H\$H$H\$ HH\$(HD$0H$HL$8H$HD$@H\$HH$H\$PH$HH$HH\$HH\$H$H\$HD$ H\$(H$pH\$0H$xH@r 1613 type."".encoder 1614 "runtime.newobject6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled6runtime.writeBarrierEnabled0type.image.PalettedImage 1615 $runtime.assertI2I20type.image/color.Palette 1616 $runtime.assertI2T2:go.string."\x89PNG\r\n\x1a\n" 1619 io.WriteString6runtime.writeBarrierEnabled 1622 ."".(*encoder).writeIHDR 1624 <"".(*encoder).writePLTEAndTRNS 1625 0"".(*encoder).writeIDATs 1626 ."".(*encoder).writeIEND 1627 .runtime.writebarrierptr*image/color.GrayModel*image/color.GrayModel*image/color.GrayModel 1628 runtime.ifaceeq.image/color.Gray16Model.image/color.Gray16Model.image/color.Gray16Model 1629 runtime.ifaceeq*image/color.RGBAModel*image/color.RGBAModel*image/color.RGBAModel 1630 runtime.ifaceeq 1631 "".opaque,image/color.NRGBAModel,image/color.NRGBAModel,image/color.NRGBAModel 1632 runtime.ifaceeq,image/color.AlphaModel,image/color.AlphaModel,image/color.AlphaModel 1633 runtime.ifaceeq 1634 "".opaque 1635 .runtime.writebarrierptr 1636 .runtime.writebarrierptr 1637 .runtime.writebarrierptr 1638 "strconv.FormatInt 1639 "strconv.FormatInt@go.string."invalid image size: "go.string."x" 1640 *runtime.concatstring4&type."".FormatErrortype.error8go.itab."".FormatError.error 1641 runtime.convT2I 1642 0runtime.morestack_noctxtp*"".autotmp_0676type.error"".autotmp_0675,type.image/color.Model"".autotmp_0672type.int"".autotmp_0670type.bool"".autotmp_0669type.bool"".autotmp_0668,type.image/color.Model"".autotmp_0667/0type.image/color.Palette"".autotmp_0666,type.image/color.Model"".autotmp_0665&type."".FormatError"".autotmp_0664type.string"".autotmp_0663type.string 1643 "".&e type.*"".encoderimage.r2(type.image.Rectangle"".~r0type.intimage.r2(type.image.Rectangle"".pal_0type.image/color.Palette 1646 "".mhtype.int64"".~r2Ptype.error"".m0 type.image.Image"".wtype.io.Writer"".enc type.*"".Encoder(" 1649 4: %%A,j0( )<T$!T X00 1651 ; 1653 NL+X\{fXjQ1 1654 u X1Tgclocalscf3c15400725f1b47a40e203c39bc436Tgclocalsd135382814ca6a30e6a4c30f7ebc62cd\prebuilts/go/linux-x86/src/image/png/writer.go"".initdH%H;avftu$ 1658 $"".initdone<"".initdoneR 1659 "runtime.throwinitb"".initdonen 1660 $compress/zlib.initx 1661 (encoding/binary.init 1662 fmt.init 1663 hash.init 1664 hash/crc32.init 1665 image.init 1666 image/color.init 1667 io.init 1668 bufio.init 1669 strconv.init 1670 "".init.1"".initdone 1671 0runtime.morestack_noctxt 1672 1673 (XTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb\prebuilts/go/linux-x86/src/image/png/writer.go."".(*FormatError).ErrordH%H;aHXHY Ht H|$`H9;uH#1H\$hH\$pH\$`1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$`HtbHHk1H\$8H\$@H$HH\$HD$HL$HHL$Hl$PHl$ HL$(HD$0HL$hHD$pHX 1679 go.string."png".go.string."FormatError""go.string."Error" 1680 "runtime.panicwrapBgo.string."png: invalid format: " 1681 *runtime.concatstring2 1682 0runtime.morestack_noctxt0"".~r0?type.string"".e&type."".FormatError"".~r0type.string""..this(type.*"".FormatErrorTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440<autogenerated>8"".(*UnsupportedError).ErrordH%H;aHXHY Ht H|$`H9;uH#1H\$hH\$pH\$`1H9uEHH$HD$HH\$HD$HH\$ HD$(H\$`HtbHHk1H\$8H\$@H$HH\$HD$HL$HHL$Hl$PHl$ HL$(HD$0HL$hHD$pHX 1689 go.string."png"8go.string."UnsupportedError""go.string."Error" 1690 "runtime.panicwrapLgo.string."png: unsupported feature: " 1691 *runtime.concatstring2 1692 0runtime.morestack_noctxt0"".~r0?type.string"".e0type."".UnsupportedError"".~r0type.string""..this2type.*"".UnsupportedErrorTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440<autogenerated>4type..hash.[2]interface {}dH%H;aH(HL$81HD$Hl$H9}\HD$ HHHHckRHHH\$0Ht;HHH$HD$8HD$HL$HD$ HHl$H9|HL$@H([ 1696 1697 (runtime.nilinterhash 1698 0runtime.morestack_noctxt0P 1699 "".autotmp_0682type.int"".autotmp_0681type.int"".~r2 type.uintptr"".htype.uintptr"".p*type.*[2]interface {}POP 1701 q?Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbZprebuilts/go/linux-x86/src/image/png/paeth.go0type..eq.[2]interface {}dH%H;aHX1HD$(Hl$(H9HD$0H\$hHHHHHHsH\$`HtvHHHHHSH9uVHD$8H$HT$@HT$HL$HHL$Ht$PHt$\$ t HD$0HHl$(H9nD$pHXD$pHXc 1704 1705 runtime.efaceeq 1706 0runtime.morestack_noctxt0"".autotmp_0686?"type.interface {}"".autotmp_0685"type.interface {}"".autotmp_0684_type.int"".autotmp_0683Otype.int"".~r2 type.bool"".q*type.*[2]interface {}"".p*type.*[2]interface {}& STgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Zprebuilts/go/linux-x86/src/image/png/paeth.go""".opaquer.OpaquedH%H;av<HHY Ht H|$H9;uH#H\$ H$H\$H[ \$\$(H 1711 v 1712 0runtime.morestack_noctxt0 "".~r0 type.bool""..thistype."".opaquer 7 `` 1714 ;%Tgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocals33cdeccccebe80329f1fdbee7f5874cb<autogenerated>*type..hash."".encoderdH%H;alH H\$(H$H<$HH\$0H\$HD$HD$H\$(H$H<$H$HD$0HD$HD$H\$(H$H<$H$HD$0HD$HD$H\$(H$H<$H$(HD$0HD$HD$HD$H\$(H$H<$t^H$0HD$0HD$HD$H\$(H$H<$t,H$@HD$0HD$HD$H\$H\$8H %%%[%"%%w 1718 ~ 1719 runtime.memhash 1720 "runtime.interhash 1721 "runtime.interhash 1722 runtime.memhash 1723 "runtime.interhash 1724 runtime.memhash 1725 0runtime.morestack_noctxt0@"".~r2 type.uintptr"".htype.uintptr"".p type.*"".encoder@?@S>Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbZprebuilts/go/linux-x86/src/image/png/paeth.go&type..eq."".encoder dH%HD$H;A6HH$H$HH(H9t$HHHHpHBHRH9HD$hH$HT$pHT$HL$xHL$H$Ht$\$ H$HHKHs H$HdHCHS H9CHD$HH$HT$PHT$HL$XHL$Ht$`Ht$H$H$\$ HZ(Hh(H9t$HHH0Hp8HB0HR8H9HD$(H$HT$0HT$HL$8HL$Ht$@Ht$\$ t}H$H$H<$taH$@H$H\$H|$t>HD$@HD$\$u$H$H%%$H$Ht$H 1731 1732 runtime.ifaceeq 1733 runtime.ifaceeq 1734 runtime.ifaceeq 1735 runtime.memequal 1736 0runtime.morestack_noctxt0"".autotmp_0694type.error"".autotmp_0693type.error"".autotmp_0692 type.image.Image"".autotmp_0691_ type.image.Image"".autotmp_0690?type.io.Writer"".autotmp_0689type.io.Writer"".~r2 type.bool"".q type.*"".encoder"".p type.*"".encoderd*!Tgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocals5f32766c99d383f833fae93d4e4d71d1Zprebuilts/go/linux-x86/src/image/png/paeth.goTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals71f75e7e2fe2878e818867fe3428bd87 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adJgo.string.hdr."png: invalid format: " Bgo.string."png: invalid format: "Bgo.string."png: invalid format: "0,png: invalid format: Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgo.string.hdr."png: unsupported feature: " Lgo.string."png: unsupported feature: "Lgo.string."png: unsupported feature: "@6png: unsupported feature: Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals790e5cc5051fc0affc980ade09e929ec08go.itab."".FormatError.error0Bgo.itab."".UnsupportedError.error>go.string.hdr."bad IHDR length" 6go.string."bad IHDR length"6go.string."bad IHDR length" bad IHDR lengthDgo.string.hdr."compression method" <go.string."compression method"<go.string."compression method"0&compression method:go.string.hdr."filter method" 2go.string."filter method"2go.string."filter method" filter methodPgo.string.hdr."invalid interlace method" Hgo.string."invalid interlace method"Hgo.string."invalid interlace method"@2invalid interlace methodDgo.string.hdr."negative dimension" <go.string."negative dimension"<go.string."negative dimension"0&negative dimensionDgo.string.hdr."dimension overflow" <go.string."dimension overflow"<go.string."dimension overflow"0&dimension overflowVgo.string.hdr."bit depth %d, color type %d" Ngo.string."bit depth %d, color type %d"Ngo.string."bit depth %d, color type %d"@8bit depth %d, color type %dTgclocals306d9fc14029975ac5a7f01955b85a00@@Tgclocals1ae62cce473f17806b5677919601c86f@@0Tgo.itab.image/color.RGBA.image/color.Color>go.string.hdr."bad PLTE length" 6go.string."bad PLTE length"6go.string."bad PLTE length" bad PLTE lengthRgo.string.hdr."PLTE, color type mismatch" Jgo.string."PLTE, color type mismatch"Jgo.string."PLTE, color type mismatch"@4PLTE, color type mismatchTgclocals81b01f77324448419e6553cf225333b4 @Tgclocalsf47057354ec566066f8688a4970cff5a 0Vgo.itab.image/color.NRGBA.image/color.Color>go.string.hdr."bad tRNS length" 6go.string."bad tRNS length"6go.string."bad tRNS length" bad tRNS lengthLgo.string.hdr."grayscale transparency" Dgo.string."grayscale transparency"Dgo.string."grayscale transparency"0.grayscale transparencyLgo.string.hdr."truecolor transparency" Dgo.string."truecolor transparency"Dgo.string."truecolor transparency"0.truecolor transparencyRgo.string.hdr."tRNS, color type mismatch" Jgo.string."tRNS, color type mismatch"Jgo.string."tRNS, color type mismatch"@4tRNS, color type mismatchTgclocals4ccafbe600e2dcd75929e02c08919d6b((@Tgclocals55cc6ee7528f0b48e5a6d9bfba36524a(((go.string.hdr."IDAT" go.string."IDAT" go.string."IDAT" 1739 IDATJgo.string.hdr."not enough pixel data" Bgo.string."not enough pixel data"Bgo.string."not enough pixel data"0,not enough pixel dataTgo.string.hdr."IDAT chunk length overflow" Lgo.string."IDAT chunk length overflow"Lgo.string."IDAT chunk length overflow"@6IDAT chunk length overflowTgclocalsb17ad412faed8e1ac56b9c6b0349be2f00@Tgclocalsffe471b206c7569cb0cc60d42e32041c000:go.itab.*"".decoder.io.ReaderFgo.string.hdr."too much pixel data" >go.string."too much pixel data">go.string."too much pixel data"0(too much pixel dataTgclocals1fe09c65101354a988722cbe68f4200a`` 1741 Tgclocals28442fe1b6b79c06163e79e71e5b8b7b`` 1742 0>go.itab.*image.Gray.image.Image0 (a] go.itab.*image.NRGBA.image.Image0>go.itab.*image.RGBA.image.Image0Fgo.itab.*image.Paletted.image.Image0Bgo.itab.*image.Gray16.image.Image0Dgo.itab.*image.NRGBA64.image.Image0Bgo.itab.*image.RGBA64.image.Image>go.string.hdr."bad filter type" 6go.string."bad filter type"6go.string."bad filter type" bad filter typeTgclocalsd42bcd0bf349a509cc9295e9f1d1ff5a&R ```` KO./ @ ` Tgclocals68c4affdc476982a9820da6f53093ec5& gTgclocalsb6d6fb4b9c4dbd6cf41616cb10683df0(('$Tgclocals6b4987f1e705354eeed25ad300690fc5((Tgclocalsc55cf99de9cdd8c8202a466952fa1a45 Tgclocals170309d2da858695ebefc5e7e0d9c320 >go.string.hdr."bad IEND length" 6go.string."bad IEND length"6go.string."bad IEND length" bad IEND lengthTgclocalsd8fdd2a55187867c76648dc792366181 Tgclocalsf47057354ec566066f8688a4970cff5a (go.string.hdr."IEND" go.string."IEND" go.string."IEND" 1750 IEND(go.string.hdr."IHDR" go.string."IHDR" go.string."IHDR" 1751 IHDR(go.string.hdr."PLTE" go.string."PLTE" go.string."PLTE" 1752 PLTE(go.string.hdr."tRNS" go.string."tRNS" go.string."tRNS" 1753 tRNSTgclocalsbecfd14a8b59fc2bfdd2cb5c84e16f8d(( Tgclocalscb395d89503762333b1bfb09ba74eb12((@go.string.hdr."invalid checksum" 8go.string."invalid checksum"8go.string."invalid checksum"0"invalid checksumTgclocals98ad89ea9472b78800bdb3a2789d4f49 Tgclocals41a13ac73c712c01973b8fe23f62d694 Bgo.string.hdr."\x89PNG\r\n\x1a\n" :go.string."\x89PNG\r\n\x1a\n":go.string."\x89PNG\r\n\x1a\n" PNG 1756 1757 <go.string.hdr."not a PNG file" 4go.string."not a PNG file"4go.string."not a PNG file" not a PNG fileTgclocals04370ae8e333f87df1b4635605da671a Tgclocals41a13ac73c712c01973b8fe23f62d694 0Lgo.itab.*hash/crc32.digest.hash.Hash32Tgclocals0b42513fdb39c54191d0904e00c52de6XX 04Tgclocalsdbe225b1632f2406d881b3dde3efb7dfXX 0Zgo.itab.image/color.Palette.image/color.ModelTgclocals3233577c66beb49f5f6236571d1023efXX 04Tgclocalsbe55473c35c82108762ff5f32809ea26XX &go.string.hdr."png" go.string."png"go.string."png"pngTgclocalse88a6e39a822a618d03d722f6ae4052e((Tgclocals7d2d5fca80364273fb07d5820a76fef4Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals2fccd208efe70893f9ac8d682812ae72Tgclocals8c067d5052c60a71dd2787c367bb278b 0Tgclocals51af24152615272c3d9efc8538f95767 Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adJgo.string.hdr." chunk is too large: " Bgo.string." chunk is too large: "Bgo.string." chunk is too large: "0, chunk is too large: Tgclocals4b7040efeb7dea09d6d6b4d8c8b330c2@@@Tgclocals689482aa6db86c01fa54c72fbbe58e52@@Tgclocals55b93fc8500931e797aa082d87ba0d9eTgclocals87d20ce1b58390b294df80b886db78bfHgo.string.hdr."bad palette length: " @go.string."bad palette length: "@go.string."bad palette length: "0*bad palette length: Tgclocalsfb70d14775e53cc60b96ad7bae3e5244((Tgclocals14c16763214c88f6ebc22b4b638329b7((Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocalsb60dc0a6046c556b02baa766a3fd5a27Tgclocals4783e5c4f58a98fa78a5a002c3f98dbd ITgclocalsaa5118865dd28fc3eaacbfc830efb456 Tgclocalsbd050223b61d3d32c7ab53e7e2dbb19f5@@@@@@@Tgclocals0a58b0799ca56710e639b1ca529f9796hh0:go.itab.*"".encoder.io.Writer0>go.itab.*bufio.Writer.io.WriterTgclocalsd88df1243b7475551bc04cf11e93eaa2PPTgclocalsa9ea41aae9e32efcc8711d8fabe405fbPPTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals23e8278e2b69a3a75fa59b23c49ed6adTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals87d20ce1b58390b294df80b886db78bfTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals8ead428b4183a0f1b19d8f59d3dde163Hgo.string.hdr."invalid image size: " @go.string."invalid image size: "@go.string."invalid image size: "0*invalid image size: "go.string.hdr."x" go.string."x"go.string."x"xTgclocalsd135382814ca6a30e6a4c30f7ebc62cdHH Tgclocalscf3c15400725f1b47a40e203c39bc436HHDgo.string.hdr."chunk out of order" <go.string."chunk out of order"<go.string."chunk out of order"0&chunk out of orderTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb."".interlacing0.type.[]"".interlaceScan0""".statictmp_0678.$"".chunkOrderError &type."".FormatError <go.string."chunk out of order"0""".statictmp_06780type.[7]"".interlaceScan0"".initdonetype.uint8"".absf"".abs"".paethf"".paeth""".filterPaethf"".filterPaeth "".cbPalettedf"".cbPaletted."".FormatError.Errorf("".FormatError.Error8"".UnsupportedError.Errorf2"".UnsupportedError.Error"".minf"".min4"".(*decoder).parseIHDRf."".(*decoder).parseIHDR4"".(*decoder).parsePLTEf."".(*decoder).parsePLTE4"".(*decoder).parsetRNSf."".(*decoder).parsetRNS*"".(*decoder).Readf$"".(*decoder).Read."".(*decoder).decodef("".(*decoder).decode<"".(*decoder).readImagePassf6"".(*decoder).readImagePass<"".(*decoder).mergePassIntof6"".(*decoder).mergePassInto4"".(*decoder).parseIDATf."".(*decoder).parseIDAT4"".(*decoder).parseIENDf."".(*decoder).parseIEND6"".(*decoder).parseChunkf0"".(*decoder).parseChunk>"".(*decoder).verifyChecksumf8"".(*decoder).verifyChecksum8"".(*decoder).checkHeaderf2"".(*decoder).checkHeader"".Decodef"".Decode$"".DecodeConfigf"".DecodeConfig"".init.1f"".init.1""".writeUint32f"".writeUint32"".opaquef"".opaque"".abs8f"".abs86"".(*encoder).writeChunkf0"".(*encoder).writeChunk4"".(*encoder).writeIHDRf."".(*encoder).writeIHDRB"".(*encoder).writePLTEAndTRNSf<"".(*encoder).writePLTEAndTRNS,"".(*encoder).Writef&"".(*encoder).Write"".filterf"".filter "".writeImagef"".writeImage6"".(*encoder).writeIDATsf0"".(*encoder).writeIDATs""".levelToZlibf"".levelToZlib4"".(*encoder).writeIENDf."".(*encoder).writeIEND"".Encodef"".Encode."".(*Encoder).Encodef("".(*Encoder).Encode"".initf"".init"runtime.gcbits.01.go.string.hdr."[]uint8" &go.string."[]uint8"&go.string."[]uint8"[]uint8type.[]uint8~.80 runtime.algarray@"runtime.gcbits.01P.go.string.hdr."[]uint8"p*go.weak.type.*[]uint8"runtime.zerovaluetype.uint86go.typelink.[]uint8 []uint8type.[]uint8@go.string.hdr."*png.FormatError" 8go.string."*png.FormatError"8go.string."*png.FormatError"0"*png.FormatError6go.string.hdr."FormatError" .go.string."FormatError".go.string."FormatError" FormatError*go.string.hdr."Error" "go.string."Error""go.string."Error"ErrorTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Zgo.string.hdr."func(*png.FormatError) string" Rgo.string."func(*png.FormatError) string"Rgo.string."func(*png.FormatError) string"@<func(*png.FormatError) stringBtype.func(*"".FormatError) stringxE30 runtime.algarray@"runtime.gcbits.01PZgo.string.hdr."func(*png.FormatError) string"pTgo.weak.type.*func(*"".FormatError) string"runtime.zerovalueBtype.func(*"".FormatError) stringBtype.func(*"".FormatError) string(type.*"".FormatErrortype.stringgo.typelink.func(*png.FormatError) string func(*"".FormatError) stringBtype.func(*"".FormatError) string:go.string.hdr."func() string" 2go.string."func() string"2go.string."func() string" func() string$type.func() stringm30 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."func() string"p6go.weak.type.*func() string"runtime.zerovalue$type.func() string$type.func() stringtype.stringNgo.typelink.func() string func() string$type.func() string(type.*"".FormatErrorWX60 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*png.FormatError"p:go.weak.type.**"".FormatError"runtime.zerovalue&type."".FormatError`(type.*"".FormatError(type.*"".FormatError*go.string.hdr."Error"$type.func() stringBtype.func(*"".FormatError) string."".(*FormatError).Error."".(*FormatError).Error>go.string.hdr."png.FormatError" 6go.string."png.FormatError"6go.string."png.FormatError" png.FormatErrorXgo.string.hdr."func(png.FormatError) string" Pgo.string."func(png.FormatError) string"Pgo.string."func(png.FormatError) string"@:func(png.FormatError) string@type.func("".FormatError) string30 runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(png.FormatError) string"pRgo.weak.type.*func("".FormatError) string"runtime.zerovalue@type.func("".FormatError) string@type.func("".FormatError) string&type."".FormatErrortype.stringgo.typelink.func(png.FormatError) string func("".FormatError) string@type.func("".FormatError) string2go.string.hdr."image/png" *go.string."image/png"*go.string."image/png" image/png"go.importpath."". *go.string."image/png"&type."".FormatErroruX0 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."png.FormatError"p(type.*"".FormatError"runtime.zerovalue`&type."".FormatError6go.string.hdr."FormatError""go.importpath."".&type."".FormatError*go.string.hdr."Error"$type.func() string@type.func("".FormatError) string."".(*FormatError).Error("".FormatError.ErrorJgo.string.hdr."*png.UnsupportedError" Bgo.string."*png.UnsupportedError"Bgo.string."*png.UnsupportedError"0,*png.UnsupportedError@go.string.hdr."UnsupportedError" 8go.string."UnsupportedError"8go.string."UnsupportedError"0"UnsupportedErrorTgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2dgo.string.hdr."func(*png.UnsupportedError) string" "\go.string."func(*png.UnsupportedError) string"\go.string."func(*png.UnsupportedError) string"PFfunc(*png.UnsupportedError) stringLtype.func(*"".UnsupportedError) stringX830 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*png.UnsupportedError) string"p^go.weak.type.*func(*"".UnsupportedError) string"runtime.zerovalueLtype.func(*"".UnsupportedError) stringLtype.func(*"".UnsupportedError) string2type.*"".UnsupportedErrortype.stringgo.typelink.func(*png.UnsupportedError) string func(*"".UnsupportedError) stringLtype.func(*"".UnsupportedError) string2type.*"".UnsupportedErrorQ~60 runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."*png.UnsupportedError"pDgo.weak.type.**"".UnsupportedError"runtime.zerovalue0type."".UnsupportedError`2type.*"".UnsupportedError2type.*"".UnsupportedError*go.string.hdr."Error"$type.func() stringLtype.func(*"".UnsupportedError) string8"".(*UnsupportedError).Error8"".(*UnsupportedError).ErrorHgo.string.hdr."png.UnsupportedError" @go.string."png.UnsupportedError"@go.string."png.UnsupportedError"0*png.UnsupportedErrorbgo.string.hdr."func(png.UnsupportedError) string" !Zgo.string."func(png.UnsupportedError) string"Zgo.string."func(png.UnsupportedError) string"PDfunc(png.UnsupportedError) stringJtype.func("".UnsupportedError) string30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(png.UnsupportedError) string"p\go.weak.type.*func("".UnsupportedError) string"runtime.zerovalueJtype.func("".UnsupportedError) stringJtype.func("".UnsupportedError) string0type."".UnsupportedErrortype.stringgo.typelink.func(png.UnsupportedError) string func("".UnsupportedError) stringJtype.func("".UnsupportedError) string0type."".UnsupportedError9Ea0 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."png.UnsupportedError"p2type.*"".UnsupportedError"runtime.zerovalue`0type."".UnsupportedError@go.string.hdr."UnsupportedError""go.importpath."".0type."".UnsupportedError*go.string.hdr."Error"$type.func() stringJtype.func("".UnsupportedError) string8"".(*UnsupportedError).Error2"".UnsupportedError.Error"type..hashfunc768 ,runtime.memhash_varlentype..eqfunc768 .runtime.memequal_varlentype..alg768 "type..hashfunc768type..eqfunc768runtime.gcbits.4go.string.hdr."[768]uint8" 1772 ,go.string."[768]uint8",go.string."[768]uint8" [768]uint8type.[768]uint8 0type..alg768@runtime.gcbits.P4go.string.hdr."[768]uint8"p0go.weak.type.*[768]uint8"runtime.zerovaluetype.uint8type.[]uint8Bgo.typelink.[768]uint8 [768]uint8type.[768]uint8&runtime.gcbits.3f02?6go.string.hdr."png.decoder" .go.string."png.decoder".go.string."png.decoder" png.decoder"go.string.hdr."r" go.string."r"go.string."r"r&go.string.hdr."img" go.string."img"go.string."img"img&go.string.hdr."crc" go.string."crc"go.string."crc"crc*go.string.hdr."width" "go.string."width""go.string."width"width,go.string.hdr."height" $go.string."height"$go.string."height"height*go.string.hdr."depth" "go.string."depth""go.string."depth"depth.go.string.hdr."palette" &go.string."palette"&go.string."palette"palette$go.string.hdr."cb" go.string."cb"go.string."cb"cb*go.string.hdr."stage" "go.string."stage""go.string."stage"stage4go.string.hdr."idatLength" 1778 ,go.string."idatLength",go.string."idatLength" idatLength&go.string.hdr."tmp" go.string."tmp"go.string."tmp"tmp2go.string.hdr."interlace" *go.string."interlace"*go.string."interlace" interlace.go.string.hdr."decoder" &go.string."decoder"&go.string."decoder"decodertype."".decoder P 08@H`hptx\0 runtime.algarray@&runtime.gcbits.3f02P6go.string.hdr."png.decoder"p type.*"".decoder"runtime.zerovaluetype."".decoder"go.string.hdr."r""go.importpath."".type.io.Reader&go.string.hdr."img""go.importpath."". type.image.Image&go.string.hdr."crc""go.importpath."". type.hash.Hash32*go.string.hdr."width""go.importpath."".type.int,go.string.hdr."height""go.importpath."".type.int*go.string.hdr."depth""go.importpath."".type.int.go.string.hdr."palette""go.importpath."".0type.image/color.Palette$go.string.hdr."cb""go.importpath."".type.int*go.string.hdr."stage""go.importpath."".type.int4go.string.hdr."idatLength""go.importpath."".type.uint32&go.string.hdr."tmp""go.importpath."".type.[768]uint82go.string.hdr."interlace""go.importpath."".type.int` type."".decoder .go.string.hdr."decoder" "go.importpath."". type."".decoder8go.string.hdr."*png.decoder" 0go.string."*png.decoder"0go.string."*png.decoder" *png.decoderpgo.string.hdr."func(*png.decoder, []uint8) (int, error)" (hgo.string."func(*png.decoder, []uint8) (int, error)"hgo.string."func(*png.decoder, []uint8) (int, error)"`Rfunc(*png.decoder, []uint8) (int, error)Xtype.func(*"".decoder, []uint8) (int, error)I o$30 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*png.decoder, []uint8) (int, error)"pjgo.weak.type.*func(*"".decoder, []uint8) (int, error)"runtime.zerovalueXtype.func(*"".decoder, []uint8) (int, error)Xtype.func(*"".decoder, []uint8) (int, error) type.*"".decodertype.[]uint8type.inttype.errorgo.typelink.func(*png.decoder, []uint8) (int, error) func(*"".decoder, []uint8) (int, error)Xtype.func(*"".decoder, []uint8) (int, error)Pgo.string.hdr."func(*png.decoder) error" Hgo.string."func(*png.decoder) error"Hgo.string."func(*png.decoder) error"@2func(*png.decoder) error8type.func(*"".decoder) errorBj30 runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func(*png.decoder) error"pJgo.weak.type.*func(*"".decoder) error"runtime.zerovalue8type.func(*"".decoder) error8type.func(*"".decoder) error type.*"".decodertype.errorxgo.typelink.func(*png.decoder) error func(*"".decoder) error8type.func(*"".decoder) errorngo.string.hdr."func(*png.decoder) (image.Image, error)" 'fgo.string."func(*png.decoder) (image.Image, error)"fgo.string."func(*png.decoder) (image.Image, error)"PPfunc(*png.decoder) (image.Image, error)Vtype.func(*"".decoder) (image.Image, error)"D30 runtime.algarray@"runtime.gcbits.01Pngo.string.hdr."func(*png.decoder) (image.Image, error)"phgo.weak.type.*func(*"".decoder) (image.Image, error)"runtime.zerovalueVtype.func(*"".decoder) (image.Image, error)Vtype.func(*"".decoder) (image.Image, error) type.*"".decoder type.image.Imagetype.errorgo.typelink.func(*png.decoder) (image.Image, error) func(*"".decoder) (image.Image, error)Vtype.func(*"".decoder) (image.Image, error)go.string.hdr."func(*png.decoder, image.Image, image.Image, int)" 1zgo.string."func(*png.decoder, image.Image, image.Image, int)"zgo.string."func(*png.decoder, image.Image, image.Image, int)"pdfunc(*png.decoder, image.Image, image.Image, int)jtype.func(*"".decoder, image.Image, image.Image, int)M30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*png.decoder, image.Image, image.Image, int)"p|go.weak.type.*func(*"".decoder, image.Image, image.Image, int)"runtime.zerovaluejtype.func(*"".decoder, image.Image, image.Image, int)jtype.func(*"".decoder, image.Image, image.Image, int) type.*"".decoder type.image.Image type.image.Imagetype.intgo.typelink.func(*png.decoder, image.Image, image.Image, int) func(*"".decoder, image.Image, image.Image, int)jtype.func(*"".decoder, image.Image, image.Image, int)`go.string.hdr."func(*png.decoder, uint32) error" Xgo.string."func(*png.decoder, uint32) error"Xgo.string."func(*png.decoder, uint32) error"PBfunc(*png.decoder, uint32) errorHtype.func(*"".decoder, uint32) errorL30 runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*png.decoder, uint32) error"pZgo.weak.type.*func(*"".decoder, uint32) error"runtime.zerovalueHtype.func(*"".decoder, uint32) errorHtype.func(*"".decoder, uint32) error type.*"".decodertype.uint32type.errorgo.typelink.func(*png.decoder, uint32) error func(*"".decoder, uint32) errorHtype.func(*"".decoder, uint32) errorgo.string.hdr."func(*png.decoder, io.Reader, int, bool) (image.Image, error)" =go.string."func(*png.decoder, io.Reader, int, bool) (image.Image, error)"go.string."func(*png.decoder, io.Reader, int, bool) (image.Image, error)"|func(*png.decoder, io.Reader, int, bool) (image.Image, error)type.func(*"".decoder, io.Reader, int, bool) (image.Image, error)j30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*png.decoder, io.Reader, int, bool) (image.Image, error)"pgo.weak.type.*func(*"".decoder, io.Reader, int, bool) (image.Image, error)"runtime.zerovaluetype.func(*"".decoder, io.Reader, int, bool) (image.Image, error)type.func(*"".decoder, io.Reader, int, bool) (image.Image, error) type.*"".decodertype.io.Readertype.inttype.bool type.image.Imagetype.errorgo.typelink.func(*png.decoder, io.Reader, int, bool) (image.Image, error) func(*"".decoder, io.Reader, int, bool) (image.Image, error)type.func(*"".decoder, io.Reader, int, bool) (image.Image, error)(go.string.hdr."Read" go.string."Read" go.string."Read" 1784 ReadTgo.string.hdr."func([]uint8) (int, error)" Lgo.string."func([]uint8) (int, error)"Lgo.string."func([]uint8) (int, error)"@6func([]uint8) (int, error)>type.func([]uint8) (int, error)N4P30 runtime.algarray@"runtime.gcbits.01PTgo.string.hdr."func([]uint8) (int, error)"pPgo.weak.type.*func([]uint8) (int, error)"runtime.zerovalue>type.func([]uint8) (int, error)>type.func([]uint8) (int, error)type.[]uint8type.inttype.errorgo.typelink.func([]uint8) (int, error) func([]uint8) (int, error)>type.func([]uint8) (int, error)6go.string.hdr."checkHeader" .go.string."checkHeader".go.string."checkHeader" checkHeader8go.string.hdr."func() error" 0go.string."func() error"0go.string."func() error" func() error"type.func() error30 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."func() error"p4go.weak.type.*func() error"runtime.zerovalue"type.func() error"type.func() errortype.errorJgo.typelink.func() error func() error"type.func() error,go.string.hdr."decode" $go.string."decode"$go.string."decode"decodeVgo.string.hdr."func() (image.Image, error)" Ngo.string."func() (image.Image, error)"Ngo.string."func() (image.Image, error)"@8func() (image.Image, error)@type.func() (image.Image, error)v~30 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func() (image.Image, error)"pRgo.weak.type.*func() (image.Image, error)"runtime.zerovalue@type.func() (image.Image, error)@type.func() (image.Image, error) type.image.Imagetype.errorgo.typelink.func() (image.Image, error) func() (image.Image, error)@type.func() (image.Image, error):go.string.hdr."mergePassInto" 2go.string."mergePassInto"2go.string."mergePassInto" mergePassIntofgo.string.hdr."func(image.Image, image.Image, int)" #^go.string."func(image.Image, image.Image, int)"^go.string."func(image.Image, image.Image, int)"PHfunc(image.Image, image.Image, int)Ptype.func(image.Image, image.Image, int)pDJ30 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(image.Image, image.Image, int)"pbgo.weak.type.*func(image.Image, image.Image, int)"runtime.zerovaluePtype.func(image.Image, image.Image, int)Ptype.func(image.Image, image.Image, int) type.image.Image type.image.Imagetype.intgo.typelink.func(image.Image, image.Image, int) func(image.Image, image.Image, int)Ptype.func(image.Image, image.Image, int)4go.string.hdr."parseChunk" 1788 ,go.string."parseChunk",go.string."parseChunk" parseChunk2go.string.hdr."parseIDAT" *go.string."parseIDAT"*go.string."parseIDAT" parseIDATDgo.string.hdr."func(uint32) error" <go.string."func(uint32) error"<go.string."func(uint32) error"0&func(uint32) error.type.func(uint32) error30 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."func(uint32) error"p@go.weak.type.*func(uint32) error"runtime.zerovalue.type.func(uint32) error.type.func(uint32) errortype.uint32type.errorbgo.typelink.func(uint32) error func(uint32) error.type.func(uint32) error2go.string.hdr."parseIEND" *go.string."parseIEND"*go.string."parseIEND" parseIEND2go.string.hdr."parseIHDR" *go.string."parseIHDR"*go.string."parseIHDR" parseIHDR2go.string.hdr."parsePLTE" *go.string."parsePLTE"*go.string."parsePLTE" parsePLTE2go.string.hdr."parsetRNS" *go.string."parsetRNS"*go.string."parsetRNS" parsetRNS:go.string.hdr."readImagePass" 2go.string."readImagePass"2go.string."readImagePass" readImagePass~go.string.hdr."func(io.Reader, int, bool) (image.Image, error)" /vgo.string."func(io.Reader, int, bool) (image.Image, error)"vgo.string."func(io.Reader, int, bool) (image.Image, error)"``func(io.Reader, int, bool) (image.Image, error)htype.func(io.Reader, int, bool) (image.Image, error)\[@30 runtime.algarray@"runtime.gcbits.01P~go.string.hdr."func(io.Reader, int, bool) (image.Image, error)"pzgo.weak.type.*func(io.Reader, int, bool) (image.Image, error)"runtime.zerovaluehtype.func(io.Reader, int, bool) (image.Image, error)htype.func(io.Reader, int, bool) (image.Image, error)type.io.Readertype.inttype.bool type.image.Imagetype.errorgo.typelink.func(io.Reader, int, bool) (image.Image, error) func(io.Reader, int, bool) (image.Image, error)htype.func(io.Reader, int, bool) (image.Image, error)<go.string.hdr."verifyChecksum" 4go.string."verifyChecksum"4go.string."verifyChecksum" verifyChecksum type.*"".decoder 1790 1791 B?60 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*png.decoder"p2go.weak.type.**"".decoder"runtime.zerovaluetype."".decoder` type.*"".decoder type.*"".decoder(go.string.hdr."Read">type.func([]uint8) (int, error)Xtype.func(*"".decoder, []uint8) (int, error)$"".(*decoder).Read$"".(*decoder).Read6go.string.hdr."checkHeader""go.importpath.""."type.func() error8type.func(*"".decoder) error2"".(*decoder).checkHeader2"".(*decoder).checkHeader,go.string.hdr."decode""go.importpath."".@type.func() (image.Image, error)Vtype.func(*"".decoder) (image.Image, error)("".(*decoder).decode("".(*decoder).decode:go.string.hdr."mergePassInto""go.importpath."".Ptype.func(image.Image, image.Image, int)jtype.func(*"".decoder, image.Image, image.Image, int)6"".(*decoder).mergePassInto6"".(*decoder).mergePassInto4go.string.hdr."parseChunk""go.importpath.""."type.func() error8type.func(*"".decoder) error0"".(*decoder).parseChunk0"".(*decoder).parseChunk2go.string.hdr."parseIDAT""go.importpath.""..type.func(uint32) errorHtype.func(*"".decoder, uint32) error."".(*decoder).parseIDAT."".(*decoder).parseIDAT2go.string.hdr."parseIEND""go.importpath.""..type.func(uint32) errorHtype.func(*"".decoder, uint32) error."".(*decoder).parseIEND."".(*decoder).parseIEND2go.string.hdr."parseIHDR""go.importpath.""..type.func(uint32) errorHtype.func(*"".decoder, uint32) error."".(*decoder).parseIHDR."".(*decoder).parseIHDR2go.string.hdr."parsePLTE""go.importpath.""..type.func(uint32) errorHtype.func(*"".decoder, uint32) error."".(*decoder).parsePLTE."".(*decoder).parsePLTE2go.string.hdr."parsetRNS""go.importpath.""..type.func(uint32) error Htype.func(*"".decoder, uint32) error ."".(*decoder).parsetRNS ."".(*decoder).parsetRNS :go.string.hdr."readImagePass" "go.importpath."". htype.func(io.Reader, int, bool) (image.Image, error) type.func(*"".decoder, io.Reader, int, bool) (image.Image, error) 6"".(*decoder).readImagePass 1794 6"".(*decoder).readImagePass 1795 <go.string.hdr."verifyChecksum" 1796 "go.importpath."". 1797 "type.func() error 1798 8type.func(*"".decoder) error 1799 8"".(*decoder).verifyChecksum 1800 8"".(*decoder).verifyChecksum"runtime.gcbits.038go.string.hdr."interface {}" 0go.string."interface {}"0go.string."interface {}" interface {}"type.interface {}W0 runtime.algarray@"runtime.gcbits.03P8go.string.hdr."interface {}"p4go.weak.type.*interface {}"runtime.zerovalue"type.interface {}<go.string.hdr."[]interface {}" 4go.string."[]interface {}"4go.string."[]interface {}" []interface {}&type.[]interface {}p/0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."[]interface {}"p8go.weak.type.*[]interface {}"runtime.zerovalue"type.interface {}Rgo.typelink.[]interface {} []interface {}&type.[]interface {}Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocalsa8eabfc4a4514ed6b3b0c61e9680e440Tgclocals3bb21ca8fe1d99a3e492463bd711418a<type..hashfunc.[2]interface {}4type..hash.[2]interface {}8type..eqfunc.[2]interface {}0type..eq.[2]interface {}2type..alg.[2]interface {} <type..hashfunc.[2]interface {}8type..eqfunc.[2]interface {}"runtime.gcbits.0f>go.string.hdr."[2]interface {}" 6go.string."[2]interface {}"6go.string."[2]interface {}" [2]interface {}(type.[2]interface {} ,Y02type..alg.[2]interface {}@"runtime.gcbits.0fP>go.string.hdr."[2]interface {}"p:go.weak.type.*[2]interface {}"runtime.zerovalue"type.interface {}&type.[]interface {}Vgo.typelink.[2]interface {} [2]interface {}(type.[2]interface {}@go.string.hdr."*[2]interface {}" 8go.string."*[2]interface {}"8go.string."*[2]interface {}"0"*[2]interface {}*type.*[2]interface {}s-q60 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*[2]interface {}"p<go.weak.type.**[2]interface {}"runtime.zerovalue(type.[2]interface {} type..hashfunc32 ,runtime.memhash_varlentype..eqfunc32 .runtime.memequal_varlentype..alg32 type..hashfunc32type..eqfunc32Dgo.string.hdr."*png.interlaceScan" <go.string."*png.interlaceScan"<go.string."*png.interlaceScan"0&*png.interlaceScan,type.*"".interlaceScan%:M60 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."*png.interlaceScan"p>go.weak.type.**"".interlaceScan"runtime.zerovalue*type."".interlaceScanBgo.string.hdr."png.interlaceScan" :go.string."png.interlaceScan":go.string."png.interlaceScan"0$png.interlaceScan.go.string.hdr."xFactor" &go.string."xFactor"&go.string."xFactor"xFactor.go.string.hdr."yFactor" &go.string."yFactor"&go.string."yFactor"yFactor.go.string.hdr."xOffset" &go.string."xOffset"&go.string."xOffset"xOffset.go.string.hdr."yOffset" &go.string."yOffset"&go.string."yOffset"yOffset:go.string.hdr."interlaceScan" 2go.string."interlaceScan"2go.string."interlaceScan" interlaceScan*type."".interlaceScan 6,0type..alg32@runtime.gcbits.PBgo.string.hdr."png.interlaceScan"p,type.*"".interlaceScan"runtime.zerovalue*type."".interlaceScan.go.string.hdr."xFactor""go.importpath."".type.int.go.string.hdr."yFactor""go.importpath."".type.int.go.string.hdr."xOffset""go.importpath."".type.int.go.string.hdr."yOffset""go.importpath."".type.int`*type."".interlaceScan:go.string.hdr."interlaceScan""go.importpath."".*type."".interlaceScan$type..hashfunc4096 ,runtime.memhash_varlen type..eqfunc4096 .runtime.memequal_varlentype..alg4096 $type..hashfunc4096 type..eqfunc40966go.string.hdr."[4096]uint8" .go.string."[4096]uint8".go.string."[4096]uint8" [4096]uint8 type.[4096]uint8 0type..alg4096@runtime.gcbits.P6go.string.hdr."[4096]uint8"p2go.weak.type.*[4096]uint8"runtime.zerovaluetype.uint8type.[]uint8Fgo.typelink.[4096]uint8 [4096]uint8 type.[4096]uint88go.string.hdr."*[4096]uint8" 0go.string."*[4096]uint8"0go.string."*[4096]uint8" *[4096]uint8"type.*[4096]uint8]m60 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*[4096]uint8"p4go.weak.type.**[4096]uint8"runtime.zerovalue type.[4096]uint82go.string.hdr."[32]uint8" *go.string."[32]uint8"*go.string."[32]uint8" [32]uint8type.[32]uint8 Y 0type..alg32@runtime.gcbits.P2go.string.hdr."[32]uint8"p.go.weak.type.*[32]uint8"runtime.zerovaluetype.uint8type.[]uint8>go.typelink.[32]uint8 [32]uint8type.[32]uint8hgo.string.hdr."func(io.Reader) (image.Image, error)" $`go.string."func(io.Reader) (image.Image, error)"`go.string."func(io.Reader) (image.Image, error)"PJfunc(io.Reader) (image.Image, error)Rtype.func(io.Reader) (image.Image, error)@30 runtime.algarray@"runtime.gcbits.01Phgo.string.hdr."func(io.Reader) (image.Image, error)"pdgo.weak.type.*func(io.Reader) (image.Image, error)"runtime.zerovalueRtype.func(io.Reader) (image.Image, error)Rtype.func(io.Reader) (image.Image, error)type.io.Reader type.image.Imagetype.errorgo.typelink.func(io.Reader) (image.Image, error) func(io.Reader) (image.Image, error)Rtype.func(io.Reader) (image.Image, error)jgo.string.hdr."func(io.Reader) (image.Config, error)" %bgo.string."func(io.Reader) (image.Config, error)"bgo.string."func(io.Reader) (image.Config, error)"PLfunc(io.Reader) (image.Config, error)Ttype.func(io.Reader) (image.Config, error)3/30 runtime.algarray@"runtime.gcbits.01Pjgo.string.hdr."func(io.Reader) (image.Config, error)"pfgo.weak.type.*func(io.Reader) (image.Config, error)"runtime.zerovalueTtype.func(io.Reader) (image.Config, error)Ttype.func(io.Reader) (image.Config, error)type.io.Reader"type.image.Configtype.errorgo.typelink.func(io.Reader) (image.Config, error) func(io.Reader) (image.Config, error)Ttype.func(io.Reader) (image.Config, error)<go.string.hdr."[]image.format" 4go.string."[]image.format"4go.string."[]image.format" []image.format&type.[]image.format2{10 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."[]image.format"p8go.weak.type.*[]image.format"runtime.zerovalue"type.image.formatRgo.typelink.[]image.format []image.format&type.[]image.formatTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3bb21ca8fe1d99a3e492463bd711418a6go.string.hdr."func() bool" .go.string."func() bool".go.string."func() bool" func() bool type.func() boolTx30 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."func() bool"p2go.weak.type.*func() bool"runtime.zerovalue type.func() bool type.func() booltype.boolFgo.typelink.func() bool func() bool type.func() bool8go.string.hdr."*png.opaquer" 0go.string."*png.opaquer"0go.string."*png.opaquer" *png.opaquer type.*"".opaquerCt[60 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*png.opaquer"p2go.weak.type.**"".opaquer"runtime.zerovaluetype."".opaquer6go.string.hdr."png.opaquer" .go.string."png.opaquer".go.string."png.opaquer" png.opaquer,go.string.hdr."Opaque" $go.string."Opaque"$go.string."Opaque"Opaque.go.string.hdr."opaquer" &go.string."opaquer"&go.string."opaquer"opaquertype."".opaquer0 runtime.algarray@"runtime.gcbits.03P6go.string.hdr."png.opaquer"p type.*"".opaquer"runtime.zerovaluetype."".opaquer,go.string.hdr."Opaque" type.func() bool`type."".opaquer.go.string.hdr."opaquer""go.importpath."".type."".opaquerJgo.string.hdr."*png.CompressionLevel" Bgo.string."*png.CompressionLevel"Bgo.string."*png.CompressionLevel"0,*png.CompressionLevel2type.*"".CompressionLevel4?60 runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."*png.CompressionLevel"pDgo.weak.type.**"".CompressionLevel"runtime.zerovalue0type."".CompressionLevelHgo.string.hdr."png.CompressionLevel" @go.string."png.CompressionLevel"@go.string."png.CompressionLevel"0*png.CompressionLevel@go.string.hdr."CompressionLevel" 8go.string."CompressionLevel"8go.string."CompressionLevel"0"CompressionLevel0type."".CompressionLevelzm0 runtime.algarray@runtime.gcbits.PHgo.string.hdr."png.CompressionLevel"p2type.*"".CompressionLevel"runtime.zerovalue`0type."".CompressionLevel@go.string.hdr."CompressionLevel""go.importpath."".0type."".CompressionLevel6go.string.hdr."png.Encoder" .go.string."png.Encoder".go.string."png.Encoder" png.Encoder.go.string.hdr."Encoder" &go.string."Encoder"&go.string."Encoder"Encodertype."".Encoder{wx0 runtime.algarray@runtime.gcbits.P6go.string.hdr."png.Encoder"p type.*"".Encoder"runtime.zerovaluetype."".Encoder@go.string.hdr."CompressionLevel"0type."".CompressionLevel`type."".Encoder.go.string.hdr."Encoder""go.importpath."".type."".Encoder8go.string.hdr."*png.Encoder" 0go.string."*png.Encoder"0go.string."*png.Encoder" *png.Encodergo.string.hdr."func(*png.Encoder, io.Writer, image.Image) error" 0xgo.string."func(*png.Encoder, io.Writer, image.Image) error"xgo.string."func(*png.Encoder, io.Writer, image.Image) error"pbfunc(*png.Encoder, io.Writer, image.Image) errorhtype.func(*"".Encoder, io.Writer, image.Image) error*JT30 runtime.algarray@"runtime.gcbits.01Pgo.string.hdr."func(*png.Encoder, io.Writer, image.Image) error"pzgo.weak.type.*func(*"".Encoder, io.Writer, image.Image) error"runtime.zerovaluehtype.func(*"".Encoder, io.Writer, image.Image) errorhtype.func(*"".Encoder, io.Writer, image.Image) error type.*"".Encodertype.io.Writer type.image.Imagetype.errorgo.typelink.func(*png.Encoder, io.Writer, image.Image) error func(*"".Encoder, io.Writer, image.Image) errorhtype.func(*"".Encoder, io.Writer, image.Image) error,go.string.hdr."Encode" $go.string."Encode"$go.string."Encode"Encodedgo.string.hdr."func(io.Writer, image.Image) error" "\go.string."func(io.Writer, image.Image) error"\go.string."func(io.Writer, image.Image) error"PFfunc(io.Writer, image.Image) errorNtype.func(io.Writer, image.Image) errorx30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(io.Writer, image.Image) error"p`go.weak.type.*func(io.Writer, image.Image) error"runtime.zerovalueNtype.func(io.Writer, image.Image) errorNtype.func(io.Writer, image.Image) errortype.io.Writer type.image.Imagetype.errorgo.typelink.func(io.Writer, image.Image) error func(io.Writer, image.Image) errorNtype.func(io.Writer, image.Image) error type.*"".EncoderJ[60 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*png.Encoder"p2go.weak.type.**"".Encoder"runtime.zerovaluetype."".Encoder` type.*"".Encoder type.*"".Encoder,go.string.hdr."Encode"Ntype.func(io.Writer, image.Image) errorhtype.func(*"".Encoder, io.Writer, image.Image) error("".(*Encoder).Encode("".(*Encoder).Encode0go.string.hdr."[8]uint8" (go.string."[8]uint8"(go.string."[8]uint8" [8]uint8type.[8]uint8>00 runtime.algarray@runtime.gcbits.P0go.string.hdr."[8]uint8"p,go.weak.type.*[8]uint8"runtime.zerovaluetype.uint8type.[]uint8:go.typelink.[8]uint8 [8]uint8type.[8]uint80go.string.hdr."[4]uint8" (go.string."[4]uint8"(go.string."[4]uint8" [4]uint8type.[4]uint8B0 runtime.algarray@runtime.gcbits.P0go.string.hdr."[4]uint8"p,go.weak.type.*[4]uint8"runtime.zerovaluetype.uint8type.[]uint8:go.typelink.[4]uint8 [4]uint8type.[4]uint8$type..hashfunc1024 ,runtime.memhash_varlen type..eqfunc1024 .runtime.memequal_varlentype..alg1024 $type..hashfunc1024 type..eqfunc10246go.string.hdr."[1024]uint8" .go.string."[1024]uint8".go.string."[1024]uint8" [1024]uint8 type.[1024]uint8Qj0type..alg1024@runtime.gcbits.P6go.string.hdr."[1024]uint8"p2go.weak.type.*[1024]uint8"runtime.zerovaluetype.uint8type.[]uint8Fgo.typelink.[1024]uint8 [1024]uint8 type.[1024]uint8Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals5f32766c99d383f833fae93d4e4d71d1Tgclocals3bb21ca8fe1d99a3e492463bd711418a2type..hashfunc."".encoder*type..hash."".encoder.type..eqfunc."".encoder&type..eq."".encoder(type..alg."".encoder 2type..hashfunc."".encoder.type..eqfunc."".encoder"runtime.gcbits.df6go.string.hdr."png.encoder" .go.string."png.encoder".go.string."png.encoder" png.encoder&go.string.hdr."enc" go.string."enc"go.string."enc"enc"go.string.hdr."w" go.string."w"go.string."w"w"go.string.hdr."m" go.string."m"go.string."m"m&go.string.hdr."err" go.string."err"go.string."err"err,go.string.hdr."header" $go.string."header"$go.string."header"header,go.string.hdr."footer" $go.string."footer"$go.string."footer"footer.go.string.hdr."encoder" &go.string."encoder"&go.string."encoder"encodertype."".encoderP@J>(0@HLD0(type..alg."".encoder@"runtime.gcbits.dfP6go.string.hdr."png.encoder"p type.*"".encoder"runtime.zerovaluetype."".encoder&go.string.hdr."enc""go.importpath."". type.*"".Encoder"go.string.hdr."w""go.importpath."".type.io.Writer"go.string.hdr."m""go.importpath."". type.image.Image$go.string.hdr."cb""go.importpath."".type.int&go.string.hdr."err""go.importpath."".type.error,go.string.hdr."header""go.importpath."".type.[8]uint8,go.string.hdr."footer""go.importpath."".type.[4]uint8&go.string.hdr."tmp""go.importpath."". type.[1024]uint8`type."".encoder.go.string.hdr."encoder""go.importpath."".type."".encoder8go.string.hdr."*png.encoder" 0go.string."*png.encoder"0go.string."*png.encoder" *png.encoderpgo.string.hdr."func(*png.encoder, []uint8) (int, error)" (hgo.string."func(*png.encoder, []uint8) (int, error)"hgo.string."func(*png.encoder, []uint8) (int, error)"`Rfunc(*png.encoder, []uint8) (int, error)Xtype.func(*"".encoder, []uint8) (int, error)430 runtime.algarray@"runtime.gcbits.01Ppgo.string.hdr."func(*png.encoder, []uint8) (int, error)"pjgo.weak.type.*func(*"".encoder, []uint8) (int, error)"runtime.zerovalueXtype.func(*"".encoder, []uint8) (int, error)Xtype.func(*"".encoder, []uint8) (int, error) type.*"".encodertype.[]uint8type.inttype.errorgo.typelink.func(*png.encoder, []uint8) (int, error) func(*"".encoder, []uint8) (int, error)Xtype.func(*"".encoder, []uint8) (int, error)fgo.string.hdr."func(*png.encoder, []uint8, string)" #^go.string."func(*png.encoder, []uint8, string)"^go.string."func(*png.encoder, []uint8, string)"PHfunc(*png.encoder, []uint8, string)Ntype.func(*"".encoder, []uint8, string)'30 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(*png.encoder, []uint8, string)"p`go.weak.type.*func(*"".encoder, []uint8, string)"runtime.zerovalueNtype.func(*"".encoder, []uint8, string)Ntype.func(*"".encoder, []uint8, string) type.*"".encodertype.[]uint8type.stringgo.typelink.func(*png.encoder, []uint8, string) func(*"".encoder, []uint8, string)Ntype.func(*"".encoder, []uint8, string)Dgo.string.hdr."func(*png.encoder)" <go.string."func(*png.encoder)"<go.string."func(*png.encoder)"0&func(*png.encoder),type.func(*"".encoder)p30 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."func(*png.encoder)"p>go.weak.type.*func(*"".encoder)"runtime.zerovalue,type.func(*"".encoder),type.func(*"".encoder) type.*"".encoder`go.typelink.func(*png.encoder) func(*"".encoder),type.func(*"".encoder)bgo.string.hdr."func(*png.encoder, color.Palette)" !Zgo.string."func(*png.encoder, color.Palette)"Zgo.string."func(*png.encoder, color.Palette)"PDfunc(*png.encoder, color.Palette)Vtype.func(*"".encoder, image/color.Palette)NS30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func(*png.encoder, color.Palette)"phgo.weak.type.*func(*"".encoder, image/color.Palette)"runtime.zerovalueVtype.func(*"".encoder, image/color.Palette)Vtype.func(*"".encoder, image/color.Palette) type.*"".encoder0type.image/color.Palettego.typelink.func(*png.encoder, color.Palette) func(*"".encoder, image/color.Palette)Vtype.func(*"".encoder, image/color.Palette)*go.string.hdr."Write" "go.string."Write""go.string."Write"Write4go.string.hdr."writeChunk" 1823 ,go.string."writeChunk",go.string."writeChunk" writeChunkJgo.string.hdr."func([]uint8, string)" Bgo.string."func([]uint8, string)"Bgo.string."func([]uint8, string)"0,func([]uint8, string)4type.func([]uint8, string) 1824 30 runtime.algarray@"runtime.gcbits.01PJgo.string.hdr."func([]uint8, string)"pFgo.weak.type.*func([]uint8, string)"runtime.zerovalue4type.func([]uint8, string)4type.func([]uint8, string)type.[]uint8type.stringngo.typelink.func([]uint8, string) func([]uint8, string)4type.func([]uint8, string)4go.string.hdr."writeIDATs" 1825 ,go.string."writeIDATs",go.string."writeIDATs" writeIDATs,go.string.hdr."func()" $go.string."func()"$go.string."func()"func()type.func()30 runtime.algarray@"runtime.gcbits.01P,go.string.hdr."func()"p(go.weak.type.*func()"runtime.zerovaluetype.func()type.func()2go.typelink.func() func()type.func()2go.string.hdr."writeIEND" *go.string."writeIEND"*go.string."writeIEND" writeIEND2go.string.hdr."writeIHDR" *go.string."writeIHDR"*go.string."writeIHDR" writeIHDR@go.string.hdr."writePLTEAndTRNS" 8go.string."writePLTEAndTRNS"8go.string."writePLTEAndTRNS"0"writePLTEAndTRNSFgo.string.hdr."func(color.Palette)" >go.string."func(color.Palette)">go.string."func(color.Palette)"0(func(color.Palette)<type.func(image/color.Palette)i*30 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."func(color.Palette)"pNgo.weak.type.*func(image/color.Palette)"runtime.zerovalue<type.func(image/color.Palette)<type.func(image/color.Palette)0type.image/color.Palettergo.typelink.func(color.Palette) func(image/color.Palette)<type.func(image/color.Palette) type.*"".encoderI6V0 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."*png.encoder"p2go.weak.type.**"".encoder"runtime.zerovaluetype."".encoder` type.*"".encoder type.*"".encoder*go.string.hdr."Write">type.func([]uint8) (int, error)Xtype.func(*"".encoder, []uint8) (int, error)&"".(*encoder).Write&"".(*encoder).Write4go.string.hdr."writeChunk""go.importpath."".4type.func([]uint8, string)Ntype.func(*"".encoder, []uint8, string)0"".(*encoder).writeChunk0"".(*encoder).writeChunk4go.string.hdr."writeIDATs""go.importpath."".type.func(),type.func(*"".encoder)0"".(*encoder).writeIDATs0"".(*encoder).writeIDATs2go.string.hdr."writeIEND""go.importpath."".type.func(),type.func(*"".encoder)."".(*encoder).writeIEND."".(*encoder).writeIEND2go.string.hdr."writeIHDR""go.importpath."".type.func(),type.func(*"".encoder)."".(*encoder).writeIHDR."".(*encoder).writeIHDR@go.string.hdr."writePLTEAndTRNS""go.importpath."".<type.func(image/color.Palette)Vtype.func(*"".encoder, image/color.Palette)<"".(*encoder).writePLTEAndTRNS<"".(*encoder).writePLTEAndTRNS2go.string.hdr."[][]uint8" *go.string."[][]uint8"*go.string."[][]uint8" [][]uint8type.[][]uint8}0 runtime.algarray@"runtime.gcbits.01P2go.string.hdr."[][]uint8"p.go.weak.type.*[][]uint8"runtime.zerovaluetype.[]uint8>go.typelink.[][]uint8 [][]uint8type.[][]uint8&runtime.gcbits.4912I4go.string.hdr."[5][]uint8" 1828 ,go.string."[5][]uint8",go.string."[5][]uint8" [5][]uint8type.[5][]uint8xhAS0 runtime.algarray@&runtime.gcbits.4912P4go.string.hdr."[5][]uint8"p0go.weak.type.*[5][]uint8"runtime.zerovaluetype.[]uint8type.[][]uint8Bgo.typelink.[5][]uint8 [5][]uint8type.[5][]uint86go.string.hdr."*[5][]uint8" .go.string."*[5][]uint8".go.string."*[5][]uint8" *[5][]uint8 type.*[5][]uint8ZQ60 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."*[5][]uint8"p2go.weak.type.**[5][]uint8"runtime.zerovaluetype.[5][]uint8Fgo.string.hdr."[]png.interlaceScan" >go.string."[]png.interlaceScan">go.string."[]png.interlaceScan"0([]png.interlaceScan.type.[]"".interlaceScan*T0 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."[]png.interlaceScan"p@go.weak.type.*[]"".interlaceScan"runtime.zerovalue*type."".interlaceScandgo.typelink.[]png.interlaceScan []"".interlaceScan.type.[]"".interlaceScan"type..hashfunc224 ,runtime.memhash_varlentype..eqfunc224 .runtime.memequal_varlentype..alg224 "type..hashfunc224type..eqfunc224Hgo.string.hdr."[7]png.interlaceScan" @go.string."[7]png.interlaceScan"@go.string."[7]png.interlaceScan"0*[7]png.interlaceScan0type.[7]"".interlaceScan,80type..alg224@runtime.gcbits.PHgo.string.hdr."[7]png.interlaceScan"pBgo.weak.type.*[7]"".interlaceScan"runtime.zerovalue*type."".interlaceScan.type.[]"".interlaceScanhgo.typelink.[7]png.interlaceScan [7]"".interlaceScan0type.[7]"".interlaceScan.go.string.hdr."runtime" &go.string."runtime"&go.string."runtime"runtime,go.importpath.runtime. &go.string."runtime":go.string.hdr."compress/zlib" 2go.string."compress/zlib"2go.string."compress/zlib" compress/zlib8go.importpath.compress/zlib. 2go.string."compress/zlib"*go.string.hdr."bufio" "go.string."bufio""go.string."bufio"bufio(go.importpath.bufio. "go.string."bufio"$go.string.hdr."io" go.string."io"go.string."io"io"go.importpath.io. go.string."io"&go.string.hdr."fmt" go.string."fmt"go.string."fmt"fmt$go.importpath.fmt. go.string."fmt"(go.string.hdr."hash" go.string."hash" go.string."hash" 1835 hash&go.importpath.hash. go.string."hash">go.string.hdr."encoding/binary" 6go.string."encoding/binary"6go.string."encoding/binary" encoding/binary<go.importpath.encoding/binary. 6go.string."encoding/binary".go.string.hdr."strconv" &go.string."strconv"&go.string."strconv"strconv,go.importpath.strconv. &go.string."strconv"4go.string.hdr."hash/crc32" 1836 ,go.string."hash/crc32",go.string."hash/crc32" hash/crc322go.importpath.hash/crc32. 1837 ,go.string."hash/crc32"*go.string.hdr."image" "go.string."image""go.string."image"image(go.importpath.image. "go.string."image"6go.string.hdr."image/color" .go.string."image/color".go.string."image/color" image/color4go.importpath.image/color. .go.string."image/color"4"".(*FormatError).Errorf."".(*FormatError).Error>"".(*UnsupportedError).Errorf8"".(*UnsupportedError).Error:type..hash.[2]interface {}f4type..hash.[2]interface {}6type..eq.[2]interface {}f0type..eq.[2]interface {}("".opaquer.Opaquef""".opaquer.Opaque0type..hash."".encoderf*type..hash."".encoder,type..eq."".encoderf&type..eq."".encoder"runtime.zerovaluego13ld