Repository URL to install this package:
|
Version:
1.0 ▾
|
!<arch>
__.PKGDEF 0 0 0 644 7950 `
go object linux amd64 go1.6 X:none
build id "cd20f0981a69d46a8a9c9ac309b5a0bb60c510ef"
$$
package bufio
import bytes "bytes"
import errors "errors"
import io "io"
import utf8 "unicode/utf8"
var @"".ErrInvalidUnreadByte error
var @"".ErrInvalidUnreadRune error
var @"".ErrBufferFull error
var @"".ErrNegativeCount error
type @"io".Reader interface { Read(@"io".p []byte) (@"io".n int, @"io".err error) }
type @"io".Writer interface { Write(@"io".p []byte) (@"io".n int, @"io".err error) }
type @"".Reader struct { @"".buf []byte; @"".rd @"io".Reader; @"".r int; @"".w int; @"".err error; @"".lastByte int; @"".lastRuneSize int }
func (@"".b·2 *@"".Reader "esc:0x1") Buffered () (? int) { return @"".b·2.@"".w - @"".b·2.@"".r }
func (@"".b·3 *@"".Reader "esc:0x10a") Discard (@"".n·4 int) (@"".discarded·1 int, @"".err·2 error)
func (@"".b·3 *@"".Reader "esc:0x12a") Peek (@"".n·4 int) (? []byte, ? error)
func (@"".b·3 *@"".Reader "esc:0x10a") Read (@"".p·4 []byte) (@"".n·1 int, @"".err·2 error)
func (@"".b·3 *@"".Reader "esc:0x10a") ReadByte () (@"".c·1 byte, @"".err·2 error)
func (@"".b·3 *@"".Reader "esc:0x10a") ReadBytes (@"".delim·4 byte) (@"".line·1 []byte, @"".err·2 error)
func (@"".b·4 *@"".Reader "esc:0x82a") ReadLine () (@"".line·1 []byte, @"".isPrefix·2 bool, @"".err·3 error)
func (@"".b·4 *@"".Reader "esc:0x80a") ReadRune () (@"".r·1 rune, @"".size·2 int, @"".err·3 error)
func (@"".b·3 *@"".Reader "esc:0x12a") ReadSlice (@"".delim·4 byte) (@"".line·1 []byte, @"".err·2 error)
func (@"".b·3 *@"".Reader "esc:0x10a") ReadString (@"".delim·4 byte) (@"".line·1 string, @"".err·2 error)
func (@"".b·1 *@"".Reader "esc:0x9") Reset (@"".r·2 @"io".Reader) { @"".b·1.@"".reset(@"".b·1.@"".buf, @"".r·2) }
func (@"".b·2 *@"".Reader "esc:0x1") UnreadByte () (? error) { if @"".b·2.@"".lastByte < int(0x0) || @"".b·2.@"".r == int(0x0) && @"".b·2.@"".w > int(0x0) { return @"".ErrInvalidUnreadByte }; if @"".b·2.@"".r > int(0x0) { @"".b·2.@"".r-- } else { @"".b·2.@"".w = int(0x1) }; @"".b·2.@"".buf[@"".b·2.@"".r] = byte(@"".b·2.@"".lastByte); @"".b·2.@"".lastByte = int(-0x1); @"".b·2.@"".lastRuneSize = int(-0x1); return nil }
func (@"".b·2 *@"".Reader "esc:0x1") UnreadRune () (? error) { if @"".b·2.@"".lastRuneSize < int(0x0) || @"".b·2.@"".r < @"".b·2.@"".lastRuneSize { return @"".ErrInvalidUnreadRune }; @"".b·2.@"".r -= @"".b·2.@"".lastRuneSize; @"".b·2.@"".lastByte = int(-0x1); @"".b·2.@"".lastRuneSize = int(-0x1); return nil }
func (@"".b·3 *@"".Reader "esc:0x10a") WriteTo (@"".w·4 @"io".Writer) (@"".n·1 int64, @"".err·2 error)
func (@"".b·1 *@"".Reader "esc:0x9") @"".fill ()
func (@"".b·2 *@"".Reader "esc:0x22") @"".readErr () (? error) { var @"".err·3 error; @"".err·3 = @"".b·2.@"".err; @"".b·2.@"".err = nil; return @"".err·3 }
func (@"".b·1 *@"".Reader "esc:0x1") @"".reset (@"".buf·2 []byte, @"".r·3 @"io".Reader) { *@"".b·1 = (@"".Reader{ @"".buf:@"".buf·2, @"".rd:@"".r·3, @"".lastByte:int(-0x1), @"".lastRuneSize:int(-0x1) }) }
func (@"".b·3 *@"".Reader "esc:0x9") @"".writeBuf (@"".w·4 @"io".Writer) (? int64, ? error)
func @"".NewReaderSize (@"".rd·2 @"io".Reader, @"".size·3 int) (? *@"".Reader) { var @"".b·4 *@"".Reader; var @"".ok·5 bool; @"".b·4, @"".ok·5 = @"".rd·2.(*@"".Reader); if @"".ok·5 && len(@"".b·4.@"".buf) >= @"".size·3 { return @"".b·4 }; if @"".size·3 < int(0x10) { @"".size·3 = int(0x10) }; var @"".r·6 *@"".Reader; @"".r·6 = new(@"".Reader); @"".r·6.@"".reset(make([]byte, @"".size·3), @"".rd·2); return @"".r·6 }
func @"".NewReader (@"".rd·2 @"io".Reader) (? *@"".Reader) { return @"".NewReaderSize(@"".rd·2, int(0x1000)) }
type @"".Writer struct { @"".err error; @"".buf []byte; @"".n int; @"".wr @"io".Writer }
func (@"".b·2 *@"".Writer "esc:0x1") Available () (? int) { return len(@"".b·2.@"".buf) - @"".b·2.@"".n }
func (@"".b·2 *@"".Writer "esc:0x1") Buffered () (? int) { return @"".b·2.@"".n }
func (@"".b·2 *@"".Writer "esc:0x2a") Flush () (? error)
func (@"".b·3 *@"".Writer "esc:0x10a") ReadFrom (@"".r·4 @"io".Reader) (@"".n·1 int64, @"".err·2 error)
func (@"".b·1 *@"".Writer "esc:0x1") Reset (@"".w·2 @"io".Writer) { @"".b·1.@"".err = nil; @"".b·1.@"".n = int(0x0); @"".b·1.@"".wr = @"".w·2 }
func (@"".b·3 *@"".Writer "esc:0x10a") Write (@"".p·4 []byte) (@"".nn·1 int, @"".err·2 error)
func (@"".b·2 *@"".Writer "esc:0x2a") WriteByte (@"".c·3 byte) (? error)
func (@"".b·3 *@"".Writer "esc:0x10a") WriteRune (@"".r·4 rune) (@"".size·1 int, @"".err·2 error)
func (@"".b·3 *@"".Writer "esc:0x10a") WriteString (@"".s·4 string "esc:0x9") (? int, ? error)
func (@"".b·2 *@"".Writer "esc:0x2a") @"".flush () (? error)
func @"".NewWriterSize (@"".w·2 @"io".Writer, @"".size·3 int) (? *@"".Writer) { var @"".b·4 *@"".Writer; var @"".ok·5 bool; @"".b·4, @"".ok·5 = @"".w·2.(*@"".Writer); if @"".ok·5 && len(@"".b·4.@"".buf) >= @"".size·3 { return @"".b·4 }; if @"".size·3 <= int(0x0) { @"".size·3 = int(0x1000) }; return (&@"".Writer{ @"".buf:make([]byte, @"".size·3), @"".wr:@"".w·2 }) }
func @"".NewWriter (@"".w·2 @"io".Writer) (? *@"".Writer) { return @"".NewWriterSize(@"".w·2, int(0x1000)) }
type @"".ReadWriter struct { ? *@"".Reader; ? *@"".Writer }
func @"".NewReadWriter (@"".r·2 *@"".Reader, @"".w·3 *@"".Writer) (? *@"".ReadWriter) { return (&@"".ReadWriter{ Reader:@"".r·2, Writer:@"".w·3 }) }
type @"".SplitFunc func(@"".data []byte, @"".atEOF bool) (@"".advance int, @"".token []byte, @"".err error)
type @"".Scanner struct { @"".r @"io".Reader; @"".split @"".SplitFunc; @"".maxTokenSize int; @"".token []byte; @"".buf []byte; @"".start int; @"".end int; @"".err error; @"".empties int; @"".scanCalled bool; @"".done bool }
func (@"".s·1 *@"".Scanner "esc:0x1") Buffer (@"".buf·2 []byte, @"".max·3 int)
func (@"".s·2 *@"".Scanner "esc:0x22") Bytes () (? []byte) { return @"".s·2.@"".token }
func (@"".s·2 *@"".Scanner "esc:0x22") Err () (? error) { if @"".s·2.@"".err == @"io".EOF { return nil }; return @"".s·2.@"".err }
func (@"".s·2 *@"".Scanner "esc:0x9") Scan () (? bool)
func (@"".s·1 *@"".Scanner "esc:0x1") Split (@"".split·2 @"".SplitFunc)
func (@"".s·2 *@"".Scanner "esc:0x1") Text () (? string) { return string(@"".s·2.@"".token) }
func (@"".s·2 *@"".Scanner "esc:0x1") @"".advance (@"".n·3 int) (? bool) { if @"".n·3 < int(0x0) { @"".s·2.@"".setErr(@"".ErrNegativeAdvance); return bool(false) }; if @"".n·3 > @"".s·2.@"".end - @"".s·2.@"".start { @"".s·2.@"".setErr(@"".ErrAdvanceTooFar); return bool(false) }; @"".s·2.@"".start += @"".n·3; return bool(true) }
func (@"".s·1 *@"".Scanner "esc:0x1") @"".setErr (@"".err·2 error) { if @"".s·1.@"".err == nil || @"".s·1.@"".err == @"io".EOF { @"".s·1.@"".err = @"".err·2 } }
var @"".ErrTooLong error
var @"".ErrNegativeAdvance error
var @"".ErrAdvanceTooFar error
const @"".MaxScanTokenSize = 0x10000
func @"".NewScanner (@"".r·2 @"io".Reader) (? *@"".Scanner) { return (&@"".Scanner{ @"".r:@"".r·2, @"".split:@"".ScanLines, @"".maxTokenSize:int(0x10000) }) }
var @"".ErrFinalToken error
func @"".ScanBytes (@"".data·4 []byte "esc:0x82", @"".atEOF·5 bool) (@"".advance·1 int, @"".token·2 []byte, @"".err·3 error) { if @"".atEOF·5 && len(@"".data·4) == int(0x0) { return int(0x0), nil, nil }; return int(0x1), @"".data·4[int(0x0):int(0x1)], nil }
func @"".ScanRunes (@"".data·4 []byte "esc:0x82", @"".atEOF·5 bool) (@"".advance·1 int, @"".token·2 []byte, @"".err·3 error)
func @"".ScanLines (@"".data·4 []byte "esc:0x82", @"".atEOF·5 bool) (@"".advance·1 int, @"".token·2 []byte, @"".err·3 error)
func @"".ScanWords (@"".data·4 []byte "esc:0x82", @"".atEOF·5 bool) (@"".advance·1 int, @"".token·2 []byte, @"".err·3 error)
func @"".init ()
const @"".minReadBufferSize = 0x10
const @"".defaultBufSize = 0x1000
var @"io".EOF error
$$
_go_.o 0 0 0 644 271360 `
go object linux amd64 go1.6 X:none
!
go13ldbytes.aerrors.aio.aunicode/utf8.a þ "".NewReaderSize dH% HD$°H;Aá HìÐ H$Ð H$è HÇD$H H H$H$Ø H\$H$à H\$H\$HH\$è ¶\$ HL$Hû t9HL$8H$è HL$8HYH¬$è H9ë|H$ð è HÄÐ ÃH$è Hû}HDŽ$è H H$è H$è HD$HD$0HD$@H H$HL$HL$è Ht$Hl$ HT$(H$Ø H$à H|$xWÀHÇÐè GøHt$`Ht$xHl$hH¬$ HT$pH$ HL$PH$ HD$XH$ HDŽ$À ÿÿÿÿHDŽ$È ÿÿÿÿH\$@H$HÇD$X è H\$@Hû t9Hl$xH\$Hl$H- H,$è H\$0H$ð è HÄÐ ÉëÃè éýýÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌ
X *runtime.racefuncenter x type.*"".Reader Ò $runtime.assertI2T2 runtime.raceread Ò (runtime.racefuncexit ¤ type."".Reader ¶ "runtime.newobject ò type.[]uint8 "runtime.makeslice øª runtime.duffzero Ú ,runtime.racewriterange type."".Reader ® (runtime.typedmemmove Ò (runtime.racefuncexit ô 0runtime.morestack_noctxt @ "".autotmp_0004 ¯type."".Reader "".autotmp_0000 type.*"".Reader "".r ÿtype.io.Reader "".buf ßtype.[]uint8 "".b type.*"".Reader "".r ¿type.*"".Reader "".b ¯type.*"".Reader "".~r2 0type.*"".Reader "".size type.int
"".rd type.io.Reader . ¿ D^G)
A , +=#21¡*( Tgclocals·c46dfc723e6d96e32949e86b88e4659b Tgclocals·6d3b4d7b0d978767a7cf94befcbb9713 4$GOROOT/src/bufio/bufio.goþ"".NewReader dH% HD$H;Aä Hìè H$è H$è H$ð H$ø HÇD$0 HÇD$P H H$HL$XHL$HD$`HD$H\$PH\$è ¶\$ HL$Pû t9HL$HH$è HL$HHYHl$0H9ë|HÈH$ è HÄè ÃH\$0Hû} HÇD$0 H H$è HL$0HD$HD$8HD$@H H$HL$HL$è Ht$Hl$ HT$(HL$XHD$`H¼$ WÀHÇÐè GøHt$xH´$ H¬$ H¬$ H$ H$ HL$hH$¨ HD$pH$° HDŽ$Ø ÿÿÿÿHDŽ$à ÿÿÿÿH\$@H$HÇD$X è H\$@Hû t,H¬$ H\$Hl$H- H,$è HD$8é»þÿÿëÐè éúýÿÿÌÌÌÌÌÌÌÌÌÌ
X *runtime.racefuncenter ª type.*"".Reader ø $runtime.assertI2T2 ² runtime.raceread ø (runtime.racefuncexit ¾ type."".Reader Ð "runtime.newobject type.[]uint8 ¬ "runtime.makeslice ª runtime.duffzero ú ,runtime.racewriterange  type."".Reader Ô (runtime.typedmemmove ú 0runtime.morestack_noctxt 0Ð "".autotmp_0009 ¯type."".Reader "".autotmp_0005 ¯type.*"".Reader "".r ÿtype.io.Reader "".buf ßtype.[]uint8 "".b Ïtype.*"".Reader "".r ßtype.*"".Reader "".b ¿type.*"".Reader "".size ïtype.int
"".rd type.io.Reader "".~r1 type.*"".Reader
"".rd type.io.Reader "ШÏÐ´Ï |óR ( +P#
,.§-' Tgclocals·374f7530c7c9139b03e4cc6a4d3abb0c Tgclocals·e8004ab91ae58d196207b2a1eb8d0284 4$GOROOT/src/bufio/bufio.goþ$"".(*Reader).Reset dH% HD$àH;A Hì H$ H$è H$¨ HD$H$è H$¨ Hû Ì LHsHkH$° H$¸ H|$HWÀHÇÐè GøLD$0LD$HHt$8Ht$PHl$@Hl$XHL$ HL$`HD$(HD$hHDŽ$ ÿÿÿÿHDŽ$ ÿÿÿÿH\$H$HÇD$X è H\$Hû t,Hl$HH\$Hl$H- H,$è è HĠ ÉëЉé-ÿÿÿè éËþÿÿÌÌÌÌÌÌÌÌÌÌÌ
X *runtime.racefuncenter runtime.raceread ª runtime.duffzero Ê ,runtime.racewriterange type."".Reader (runtime.typedmemmove ¨ (runtime.racefuncexit Ø 0runtime.morestack_noctxt 0À "".autotmp_0010 ¯type."".Reader "".r ÿtype.io.Reader "".buf ßtype.[]uint8 "".b type.*"".Reader "".r type.io.Reader "".b type.*"".Reader À¿À¿ À ù +£*2 Tgclocals·2027b6cfe4f64a74d7b688d238add74a Tgclocals·a9c9a7796859951df5ca62d0c8003ceb 4$GOROOT/src/bufio/bufio.goþ$"".(*Reader).reset à àdH% H;aÉ HìpH\$pH$è H|$WÀHÇÐè GøH$ H\$H$ H\$ H$ H\$(H$ H\$0H$ H\$8HÇD$`ÿÿÿÿHÇD$hÿÿÿÿH\$xH$HÇD$X è H\$xHû t)Hl$H\$Hl$H- H,$è è HÄpÉëÓè éÿÿÿÌÌÌÌÌÌÌÌÌÌ
B *runtime.racefuncenter dª runtime.duffzero À ,runtime.racewriterange type."".Reader (runtime.typedmemmove (runtime.racefuncexit º 0runtime.morestack_noctxt `à "".autotmp_0011 ¯type."".Reader "".r @type.io.Reader "".buf type.[]uint8 "".b type.*"".Reader àÀßàß ð $d
/ *' Tgclocals·9b5703f55080246e63ae3761bc22f198 Tgclocals·30d6fb124969afaea707da78b4c1a6b1 4$GOROOT/src/bufio/bufio.goþ""".(*Reader).fill dH% HD$ØH;A Hì¨ H$¨ H$è H$° H$H$(è H$° HX(Hû H$H$(è H$° Hh(Hl$XH$H$0è H$° Hh0Hl$PH$è H$° Hl$XLD$PLHM9È_ L9ÅV LI)èI)éIù tM*L$ L$ L$ H$è H´$° HH$HNHL$HNHL$H$ H\$H$ H\$ H$ H\$(HÇD$0 è H$° H$H$0è H$° Hh0Hl$XH$H$0è H$° H$H$(è H$° Hø h Hh(LD$XI)èL@0H$H$(è H$° HÇ@( H$è H$° HhHl$XH$H$0è H$° HY0Hl$XH9ë|]H H$ HDŽ$ H H$H$ H\$HÇD$ è H\$HH$HKHL$è HÇÀd HD$HHø H$H$0è H$° Hh0Hl$XH$è H$° Hl$XL@LHL9Å< LI)èI)éIù tM*L$ L$ L$ H$H$è H$° Hû ê HKHk H$ H\$H$ H\$H$ H\$Hl$xH,$HL$pHY ÿÓHT$ HL$(HD$0HL$`HD$hHT$@Hú }HH H$è H H$H H\$è H\$HH$HKHL$è H$° H$H$0è H$° Hh0Hl$XH$H$0è HD$@H$° Hl$XHÅHi0H\$`Hû tRH$H$8è H$° Hl$`Hk8Hl$h= uHk@è HĨ ÃLC@L$Hl$è ëßHø ~
è HĨ ÃHD$HHÿÈHD$HHø ëýÿÿH$H$8è H H$è H$° H- Hk8H- = uHk@è HĨ ÃLC@L$Hl$è ë߉éþÿÿè éüÿÿè è éÎúÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ\
X *runtime.racefuncenter runtime.raceread Ì runtime.raceread runtime.raceread ¾ runtime.raceread ö runtime.raceread ¢ "runtime.slicecopy Î runtime.raceread "runtime.racewrite ¸ runtime.raceread "runtime.racewrite Ê runtime.raceread runtime.raceread  Xgo.string."bufio: tried to fill full buffer" ø type.string ¶ runtime.convT2E ê runtime.gopanic ¶
runtime.raceread ê
runtime.raceread runtime.raceread Æ
$"".errNegativeRead ª runtime.raceread ¸ $"".errNegativeRead Î $"".errNegativeRead â runtime.convI2E runtime.gopanic Æ runtime.raceread "runtime.racewrite è "runtime.racewrite (runtime.writeBarrier ¸ (runtime.racefuncexit ì .runtime.writebarrierptr (runtime.racefuncexit à "runtime.racewrite î io.ErrNoProgress runtime.raceread io.ErrNoProgress ´ io.ErrNoProgress À (runtime.writeBarrier Ø (runtime.racefuncexit .runtime.writebarrierptr ¨ $runtime.panicslice Ä $runtime.panicslice Ò 0runtime.morestack_noctxt Ð "".autotmp_0023 type.int "".autotmp_0022 type.int "".autotmp_0020 type.int "".autotmp_0019 type.[]uint8 "".autotmp_0018 type.int "".autotmp_0017 Otype.string "".autotmp_0016 type.int "".autotmp_0015 type.int "".autotmp_0014 /type.[]uint8 "".autotmp_0013 ¯type.int "".autotmp_0012 type.int "".err type.error "".n Ïtype.int "".i ¿type.int "".b type.*"".Reader 8ÐÈÏÐ&ÏÐhÏÐ0Ï À
¨61,ùm>]íHN1J 0 +ÏV@qXyå Tgclocals·5d2b5a2aeff4e4cf961f497a12cc05ae Tgclocals·fccd037804c4af8f15196b05346fa958 4$GOROOT/src/bufio/bufio.goþ("".(*Reader).readErr à àdH% H;a HìH\$H$è 1ÛH\$(H\$0H\$ H$H$8è HD$ Hø tMHh8Hl$Hh@Hl$H$H$8è H\$ 1íHk8Hk@H\$H\$(H\$H\$0è HÄÉ ë¯è éVÿÿÿÌÌÌÌÌÌ
B *runtime.racefuncenter runtime.raceread Ö "runtime.racewrite ¦ (runtime.racefuncexit  0runtime.morestack_noctxt 00 "".err type.error "".~r0 type.error "".b type.*"".Reader 0/0/ ° $ä0 J( Tgclocals·27f94a2fe0ff5b305b2385471201b6d7 Tgclocals·c2934d28c868ce52e67cf0667b9c3035 4$GOROOT/src/bufio/bufio.goþ""".(*Reader).Peek à
à
dH% H;aK HìhH\$hH$è 1ÛH$ H$ H$ 1ÛH$ H$ H\$xHû }RH H$è 1ÛH$ H$ H$ H H$ H H$ è HÄhÃH\$pH$è H\$pHkH\$xH9ë~RH H$è 1ÛH$ H$ H$ H H$ H H$ è HÄhÃH\$pH$H$0è H\$pH$H$(è HD$pHX0Hh(H)ëHl$xH9ë}(H$H$8è HD$pHh8Hý uH$è ë1ÛH\$@H\$HH$H$0è H\$pH$H$(è HT$pHB0Hj(H)èHl$xH9è¸ HD$x1ÛH\$ H\$(HT$H$H$8è HD$Hø P Hh8Hl$0Hh@Hl$8H$H$8è HT$pH\$1íHk8Hk@HL$0HD$8HL$ HD$(HD$HHL$@Hù u-H H$è HT$pH H\$@H H\$HH$H$(è HD$pHh(Hl$H$H$(è HD$pHX(Hl$xHëH\$H$è H\$pHl$LD$LKM9ÈwcL9Åw^LI)èI)éIù tM*LT$PL$ LD$XL$ LL$`L$ H\$@H$ H\$HH$ è HÄhÃè é©þÿÿè éüÿÿÌÌÌÌÌÌÌÌ>
B *runtime.racefuncenter ¾ &"".ErrNegativeCount Ð runtime.raceread &"".ErrNegativeCount ° &"".ErrNegativeCount Ê (runtime.racefuncexit ð runtime.raceread ¤ "".ErrBufferFull ¶ runtime.raceread ø "".ErrBufferFull "".ErrBufferFull ° (runtime.racefuncexit à runtime.raceread runtime.raceread Ö runtime.raceread """.(*Reader).fill ¾ runtime.raceread ä runtime.raceread è runtime.raceread Æ "runtime.racewrite Ä "".ErrBufferFull Ö runtime.raceread î "".ErrBufferFull
"".ErrBufferFull ¬
runtime.raceread ä
runtime.raceread ¢ runtime.raceread
(runtime.racefuncexit ¢
$runtime.panicslice ¾
0runtime.morestack_noctxt pÐ "".autotmp_0028 /type.[]uint8 "".autotmp_0027 ¿type.int "".autotmp_0026 type.int "".autotmp_0025 ¯type.int "".~r0 type.error "".err otype.error "".b type.*"".Reader "".err Otype.error "".~r2 Ptype.error "".~r1 type.[]uint8 "".n type.int "".b type.*"".Reader :ÐÏÐrÏЮÏÐÏ ð bøQH!H
] ?{-º)* : `oU/H+±
Tgclocals·5545e33d07dc8d1e7fd7cc1694643000 Tgclocals·f00637f8dc304d6999e3e8391a79f71a 4$GOROOT/src/bufio/bufio.goþ("".(*Reader).Discard dH% H;a HìhH\$hH$è HL$xHD$p1Û1ÛH$ H$ HDŽ$ Hù }NH H$è H
H HDŽ$ HL$XH$ HD$`H$ è HÄhÃHù u
è HÄhÃHL$HD$0H$H$0è H\$0H$H$(è HD$0HX0Hh(H)ëHØHû uLH\$pH$è HD$pHD$(H$H$0è H\$(H$H$(è HD$(HX0Hh(H)ëHØHD$Hl$H9è~
H\$H\$H\$pH$H$(è HD$pHh(Hl$H$H$(è HT$pHL$Hl$HÍHj(HD$H)ÈHD$Hø u)H\$xH$ 1ÛH$ H$ è HÄhÃH$H$8è HD$pHh8Hý ºþÿÿ1ÛH\$8H\$@HD$ H$H$8è HD$ Hø t|Hh8Hl$HHh@Hl$PH$H$8è H\$ 1íHk8Hk@HT$HHL$PHD$xHl$H)èHT$8HL$@H$ HT$XH$ HL$`H$ è HÄhÉ ëè éNýÿÿÌÌÌÌÌÌÌÌÌÌÌÌÌÌ*
B *runtime.racefuncenter ° &"".ErrNegativeCount  runtime.raceread Ð &"".ErrNegativeCount Þ &"".ErrNegativeCount ´ (runtime.racefuncexit Ô (runtime.racefuncexit runtime.raceread ´ runtime.raceread """.(*Reader).fill ² runtime.raceread Ø runtime.raceread Ö runtime.raceread "runtime.racewrite ¨ (runtime.racefuncexit Î runtime.raceread ² runtime.raceread "runtime.racewrite ¶
(runtime.racefuncexit Ò
0runtime.morestack_noctxt PÐ $"".autotmp_0035 type.error "".autotmp_0034 type.int "".autotmp_0033 type.int "".autotmp_0032 type.int "".autotmp_0031 type.error "".autotmp_0030 type.int "".autotmp_0029 type.int "".~r0 _type.error "".err ?type.error "".b type.*"".Reader "".b type.*"".Reader "".b otype.*"".Reader "".skip ¿type.int "".remain ¯type.int "".err 0type.error "".discarded type.int "".n type.int "".b type.*"".Reader HÐÏÐÏЩÏÐÆÏÐÏ À n².- D*)	>
E!ª- 2 y-:Ri2+W&