blob: 81eaf8456f939fca0ca543bd99c7c80943706283 [file] [log] [blame]
!<arch>
__.PKGDEF 0 0 0 644 21160 `
go object linux amd64 go1.5.1 X:none
build id "78a6e09e5af13a423f24f4112e26fdd622a51e0b"
$$
package pe
import runtime "runtime"
import dwarf "debug/dwarf"
import binary "encoding/binary"
import errors "errors"
import io "io"
import strconv "strconv"
import fmt "fmt"
import os "os"
type @"".FileHeader struct { Machine uint16; NumberOfSections uint16; TimeDateStamp uint32; PointerToSymbolTable uint32; NumberOfSymbols uint32; SizeOfOptionalHeader uint16; Characteristics uint16 }
type @"".SectionHeader struct { Name string; VirtualSize uint32; VirtualAddress uint32; Size uint32; Offset uint32; PointerToRelocations uint32; PointerToLineNumbers uint32; NumberOfRelocations uint16; NumberOfLineNumbers uint16; Characteristics uint32 }
type @"io".ReaderAt interface { ReadAt(@"io".p []byte, @"io".off int64) (@"io".n int, @"io".err error) }
type @"io".SectionReader struct { @"io".r @"io".ReaderAt; @"io".base int64; @"io".off int64; @"io".limit int64 }
func (@"io".s·3 *@"io".SectionReader "esc:0x9") Read (@"io".p·4 []byte) (@"io".n·1 int, @"io".err·2 error)
func (@"io".s·3 *@"io".SectionReader "esc:0x9") ReadAt (@"io".p·4 []byte, @"io".off·5 int64) (@"io".n·1 int, @"io".err·2 error)
func (@"io".s·3 *@"io".SectionReader "esc:0x1") Seek (@"io".offset·4 int64, @"io".whence·5 int) (? int64, ? error)
func (@"io".s·2 *@"io".SectionReader "esc:0x1") Size () (? int64) { return @"io".s·2.@"io".limit - @"io".s·2.@"io".base }
type @"io".ReadSeeker interface { Read(@"io".p []byte) (@"io".n int, @"io".err error); Seek(@"io".offset int64, @"io".whence int) (? int64, ? error) }
type @"".Section struct { ? @"".SectionHeader; ? @"io".ReaderAt; @"".sr *@"io".SectionReader }
func (@"".s·3 *@"".Section "esc:0x9") Data () (? []byte, ? error)
func (@"".s·2 *@"".Section "esc:0xa") Open () (? @"io".ReadSeeker) { return @"io".NewSectionReader(@"".s·2.@"".sr, 0x0, 0x7fffffffffffffff) }
type @"".Symbol struct { Name string; Value uint32; SectionNumber int16; Type uint16; StorageClass uint8 }
type @"io".Closer interface { Close() (? error) }
type @"debug/dwarf".Tag uint32
func (@"debug/dwarf".t·2 @"debug/dwarf".Tag) GoString () (? string)
func (@"debug/dwarf".t·2 @"debug/dwarf".Tag) String () (? string)
type @"debug/dwarf".Attr uint32
func (@"debug/dwarf".a·2 @"debug/dwarf".Attr) GoString () (? string)
func (@"debug/dwarf".a·2 @"debug/dwarf".Attr) String () (? string)
type @"debug/dwarf".format uint32
type @"debug/dwarf".Class int
func (@"debug/dwarf".i·2 @"debug/dwarf".Class) GoString () (? string)
func (@"debug/dwarf".i·2 @"debug/dwarf".Class) String () (? string)
type @"debug/dwarf".afield struct { @"debug/dwarf".attr @"debug/dwarf".Attr; @"debug/dwarf".fmt @"debug/dwarf".format; @"debug/dwarf".class @"debug/dwarf".Class }
type @"debug/dwarf".abbrev struct { @"debug/dwarf".tag @"debug/dwarf".Tag; @"debug/dwarf".children bool; @"debug/dwarf".field []@"debug/dwarf".afield }
type @"debug/dwarf".abbrevTable map[uint32]@"debug/dwarf".abbrev
type @"encoding/binary".ByteOrder interface { PutUint16(? []byte, ? uint16); PutUint32(? []byte, ? uint32); PutUint64(? []byte, ? uint64); String() (? string); Uint16(? []byte) (? uint16); Uint32(? []byte) (? uint32); Uint64(? []byte) (? uint64) }
type @"debug/dwarf".CommonType struct { ByteSize int64; Name string }
func (@"debug/dwarf".c·2 *@"debug/dwarf".CommonType "esc:0x12") Common () (? *@"debug/dwarf".CommonType) { return @"debug/dwarf".c·2 }
func (@"debug/dwarf".c·2 *@"debug/dwarf".CommonType "esc:0x1") Size () (? int64) { return @"debug/dwarf".c·2.ByteSize }
type @"debug/dwarf".Type interface { Common() (? *@"debug/dwarf".CommonType); Size() (? int64); String() (? string) }
type @"debug/dwarf".Offset uint32
type @"debug/dwarf".unit struct { @"debug/dwarf".base @"debug/dwarf".Offset; @"debug/dwarf".off @"debug/dwarf".Offset; @"debug/dwarf".data []byte; @"debug/dwarf".atable @"debug/dwarf".abbrevTable; @"debug/dwarf".asize int; @"debug/dwarf".vers int; @"debug/dwarf".is64 bool }
func (@"debug/dwarf".u·2 *@"debug/dwarf".unit "esc:0x1") @"debug/dwarf".addrsize () (? int) { return @"debug/dwarf".u·2.@"debug/dwarf".asize }
func (@"debug/dwarf".u·3 *@"debug/dwarf".unit "esc:0x1") @"debug/dwarf".dwarf64 () (? bool, ? bool) { return @"debug/dwarf".u·3.@"debug/dwarf".is64, true }
func (@"debug/dwarf".u·2 *@"debug/dwarf".unit "esc:0x1") @"debug/dwarf".version () (? int) { return @"debug/dwarf".u·2.@"debug/dwarf".vers }
type @"debug/dwarf".typeUnit struct { @"debug/dwarf".? @"debug/dwarf".unit; @"debug/dwarf".toff @"debug/dwarf".Offset; @"debug/dwarf".name string; @"debug/dwarf".cache @"debug/dwarf".Type }
type @"debug/dwarf".dataFormat interface { @"debug/dwarf".addrsize() (? int); @"debug/dwarf".dwarf64() (@"debug/dwarf".dwarf64 bool, @"debug/dwarf".isKnown bool); @"debug/dwarf".version() (? int) }
type @"debug/dwarf".Field struct { Attr @"debug/dwarf".Attr; Val interface {}; Class @"debug/dwarf".Class }
type @"debug/dwarf".Entry struct { Offset @"debug/dwarf".Offset; Tag @"debug/dwarf".Tag; Children bool; Field []@"debug/dwarf".Field }
func (@"debug/dwarf".e·2 *@"debug/dwarf".Entry "esc:0x22") AttrField (@"debug/dwarf".a·3 @"debug/dwarf".Attr) (? *@"debug/dwarf".Field)
func (@"debug/dwarf".e·2 *@"debug/dwarf".Entry "esc:0x32") Val (@"debug/dwarf".a·3 @"debug/dwarf".Attr) (? interface {})
type @"debug/dwarf".buf struct { @"debug/dwarf".dwarf *@"debug/dwarf".Data; @"debug/dwarf".order @"encoding/binary".ByteOrder; @"debug/dwarf".format @"debug/dwarf".dataFormat; @"debug/dwarf".name string; @"debug/dwarf".off @"debug/dwarf".Offset; @"debug/dwarf".data []byte; @"debug/dwarf".err error }
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".addr () (? uint64)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf "esc:0x2a") @"debug/dwarf".bytes (@"debug/dwarf".n·3 int) (? []byte) { if len(@"debug/dwarf".b·2.@"debug/dwarf".data) < @"debug/dwarf".n·3 { @"debug/dwarf".b·2.@"debug/dwarf".error("underflow"); return nil }; var @"debug/dwarf".data·4 []byte; ; @"debug/dwarf".data·4 = @"debug/dwarf".b·2.@"debug/dwarf".data[0x0:@"debug/dwarf".n·3]; @"debug/dwarf".b·2.@"debug/dwarf".data = @"debug/dwarf".b·2.@"debug/dwarf".data[@"debug/dwarf".n·3:]; @"debug/dwarf".b·2.@"debug/dwarf".off += @"debug/dwarf".Offset(@"debug/dwarf".n·3); return @"debug/dwarf".data·4 }
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".entry (@"debug/dwarf".atab·3 @"debug/dwarf".abbrevTable "esc:0x1", @"debug/dwarf".ubase·4 @"debug/dwarf".Offset) (? *@"debug/dwarf".Entry)
func (@"debug/dwarf".b·1 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".error (@"debug/dwarf".s·2 string) { if @"debug/dwarf".b·1.@"debug/dwarf".err == nil { @"debug/dwarf".b·1.@"debug/dwarf".data = nil; @"debug/dwarf".b·1.@"debug/dwarf".err = (@"debug/dwarf".DecodeError{ Name:@"debug/dwarf".b·1.@"debug/dwarf".name, Offset:@"debug/dwarf".b·1.@"debug/dwarf".off, Err:@"debug/dwarf".s·2 }) } }
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf "esc:0x1") @"debug/dwarf".int () (? int64)
func (@"debug/dwarf".b·1 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".skip (@"debug/dwarf".n·2 int) { @"debug/dwarf".b·1.@"debug/dwarf".bytes(@"debug/dwarf".n·2) }
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".string () (? string)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf "esc:0x1") @"debug/dwarf".uint () (? uint64)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".uint16 () (? uint16)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".uint32 () (? uint32)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".uint64 () (? uint64)
func (@"debug/dwarf".b·2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".uint8 () (? uint8) { if len(@"debug/dwarf".b·2.@"debug/dwarf".data) < 0x1 { @"debug/dwarf".b·2.@"debug/dwarf".error("underflow"); return 0x0 }; var @"debug/dwarf".val·3 byte; ; @"debug/dwarf".val·3 = @"debug/dwarf".b·2.@"debug/dwarf".data[0x0]; @"debug/dwarf".b·2.@"debug/dwarf".data = @"debug/dwarf".b·2.@"debug/dwarf".data[0x1:]; @"debug/dwarf".b·2.@"debug/dwarf".off++; return @"debug/dwarf".val·3 }
func (@"debug/dwarf".b·3 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".unitLength () (@"debug/dwarf".length·1 @"debug/dwarf".Offset, @"debug/dwarf".dwarf64·2 bool)
func (@"debug/dwarf".b·3 *@"debug/dwarf".buf "esc:0x1") @"debug/dwarf".varint () (@"debug/dwarf".c·1 uint64, @"debug/dwarf".bits·2 uint)
type @"debug/dwarf".LineFile struct { Name string; Mtime uint64; Length int }
type @"debug/dwarf".LineEntry struct { Address uint64; OpIndex int; File *@"debug/dwarf".LineFile; Line int; Column int; IsStmt bool; BasicBlock bool; PrologueEnd bool; EpilogueBegin bool; ISA int; Discriminator int; EndSequence bool }
type @"debug/dwarf".LineReaderPos struct { @"debug/dwarf".off @"debug/dwarf".Offset; @"debug/dwarf".numFileEntries int; @"debug/dwarf".state @"debug/dwarf".LineEntry; @"debug/dwarf".fileIndex int }
type @"debug/dwarf".LineReader struct { @"debug/dwarf".buf @"debug/dwarf".buf; @"debug/dwarf".section []byte; @"debug/dwarf".version uint16; @"debug/dwarf".minInstructionLength int; @"debug/dwarf".maxOpsPerInstruction int; @"debug/dwarf".defaultIsStmt bool; @"debug/dwarf".lineBase int; @"debug/dwarf".lineRange int; @"debug/dwarf".opcodeBase int; @"debug/dwarf".opcodeLengths []int; @"debug/dwarf".directories []string; @"debug/dwarf".fileEntries []*@"debug/dwarf".LineFile; @"debug/dwarf".programOffset @"debug/dwarf".Offset; @"debug/dwarf".endOffset @"debug/dwarf".Offset; @"debug/dwarf".initialFileEntries int; @"debug/dwarf".state @"debug/dwarf".LineEntry; @"debug/dwarf".fileIndex int }
func (@"debug/dwarf".r·2 *@"debug/dwarf".LineReader "esc:0x2a") Next (@"debug/dwarf".entry·3 *@"debug/dwarf".LineEntry "esc:0x1") (? error)
func (@"debug/dwarf".r·1 *@"debug/dwarf".LineReader "esc:0x9") Reset ()
func (@"debug/dwarf".r·1 *@"debug/dwarf".LineReader "esc:0x9") Seek (@"debug/dwarf".pos·2 @"debug/dwarf".LineReaderPos) { @"debug/dwarf".r·1.@"debug/dwarf".buf.@"debug/dwarf".off = @"debug/dwarf".pos·2.@"debug/dwarf".off; @"debug/dwarf".r·1.@"debug/dwarf".buf.@"debug/dwarf".data = @"debug/dwarf".r·1.@"debug/dwarf".section[@"debug/dwarf".r·1.@"debug/dwarf".buf.@"debug/dwarf".off:@"debug/dwarf".r·1.@"debug/dwarf".endOffset]; @"debug/dwarf".r·1.@"debug/dwarf".fileEntries = @"debug/dwarf".r·1.@"debug/dwarf".fileEntries[:@"debug/dwarf".pos·2.@"debug/dwarf".numFileEntries]; @"debug/dwarf".r·1.@"debug/dwarf".state = @"debug/dwarf".pos·2.@"debug/dwarf".state; @"debug/dwarf".r·1.@"debug/dwarf".fileIndex = @"debug/dwarf".pos·2.@"debug/dwarf".fileIndex }
func (@"debug/dwarf".r·2 *@"debug/dwarf".LineReader "esc:0x2a") SeekPC (@"debug/dwarf".pc·3 uint64, @"debug/dwarf".entry·4 *@"debug/dwarf".LineEntry "esc:0x1") (? error)
func (@"debug/dwarf".r·2 *@"debug/dwarf".LineReader "esc:0x22") Tell () (? @"debug/dwarf".LineReaderPos) { return (@"debug/dwarf".LineReaderPos{ @"debug/dwarf".off:@"debug/dwarf".r·2.@"debug/dwarf".buf.@"debug/dwarf".off, @"debug/dwarf".numFileEntries:len(@"debug/dwarf".r·2.@"debug/dwarf".fileEntries), @"debug/dwarf".state:@"debug/dwarf".r·2.@"debug/dwarf".state, @"debug/dwarf".fileIndex:@"debug/dwarf".r·2.@"debug/dwarf".fileIndex }) }
func (@"debug/dwarf".r·1 *@"debug/dwarf".LineReader "esc:0x1") @"debug/dwarf".advancePC (@"debug/dwarf".opAdvance·2 int) { var @"debug/dwarf".opIndex·3 int; ; @"debug/dwarf".opIndex·3 = @"debug/dwarf".r·1.@"debug/dwarf".state.OpIndex + @"debug/dwarf".opAdvance·2; @"debug/dwarf".r·1.@"debug/dwarf".state.Address += uint64(@"debug/dwarf".r·1.@"debug/dwarf".minInstructionLength * (@"debug/dwarf".opIndex·3 / @"debug/dwarf".r·1.@"debug/dwarf".maxOpsPerInstruction)); @"debug/dwarf".r·1.@"debug/dwarf".state.OpIndex = @"debug/dwarf".opIndex·3 % @"debug/dwarf".r·1.@"debug/dwarf".maxOpsPerInstruction }
func (@"debug/dwarf".r·3 *@"debug/dwarf".LineReader "esc:0x10a") @"debug/dwarf".readFileEntry () (? bool, ? error)
func (@"debug/dwarf".r·2 *@"debug/dwarf".LineReader "esc:0x2a") @"debug/dwarf".readHeader () (? error)
func (@"debug/dwarf".r·1 *@"debug/dwarf".LineReader "esc:0x9") @"debug/dwarf".resetState () { @"debug/dwarf".r·1.@"debug/dwarf".state = (@"debug/dwarf".LineEntry{ Address:0x0, OpIndex:0x0, File:nil, Line:0x1, Column:0x0, IsStmt:@"debug/dwarf".r·1.@"debug/dwarf".defaultIsStmt, BasicBlock:false, PrologueEnd:false, EpilogueBegin:false, ISA:0x0, Discriminator:0x0 }); @"debug/dwarf".r·1.@"debug/dwarf".fileIndex = 0x1; @"debug/dwarf".r·1.@"debug/dwarf".updateFile() }
func (@"debug/dwarf".r·2 *@"debug/dwarf".LineReader "esc:0x9") @"debug/dwarf".step (@"debug/dwarf".entry·3 *@"debug/dwarf".LineEntry "esc:0x1") (? bool)
func (@"debug/dwarf".r·1 *@"debug/dwarf".LineReader "esc:0x9") @"debug/dwarf".updateFile () { if @"debug/dwarf".r·1.@"debug/dwarf".fileIndex < len(@"debug/dwarf".r·1.@"debug/dwarf".fileEntries) { @"debug/dwarf".r·1.@"debug/dwarf".state.File = @"debug/dwarf".r·1.@"debug/dwarf".fileEntries[@"debug/dwarf".r·1.@"debug/dwarf".fileIndex] } else { @"debug/dwarf".r·1.@"debug/dwarf".state.File = nil } }
type @"debug/dwarf".typeReader interface { AddressSize() (? int); Next() (? *@"debug/dwarf".Entry, ? error); Seek(? @"debug/dwarf".Offset); @"debug/dwarf".clone() (? @"debug/dwarf".typeReader); @"debug/dwarf".offset() (? @"debug/dwarf".Offset) }
type @"debug/dwarf".Reader struct { @"debug/dwarf".b @"debug/dwarf".buf; @"debug/dwarf".d *@"debug/dwarf".Data; @"debug/dwarf".err error; @"debug/dwarf".unit int; @"debug/dwarf".lastChildren bool; @"debug/dwarf".lastSibling @"debug/dwarf".Offset }
func (@"debug/dwarf".r·2 *@"debug/dwarf".Reader "esc:0x1") AddressSize () (? int) { return @"debug/dwarf".r·2.@"debug/dwarf".d.@"debug/dwarf".unit[@"debug/dwarf".r·2.@"debug/dwarf".unit].@"debug/dwarf".asize }
func (@"debug/dwarf".r·3 *@"debug/dwarf".Reader "esc:0x10a") Next () (? *@"debug/dwarf".Entry, ? error)
func (@"debug/dwarf".r·1 *@"debug/dwarf".Reader "esc:0x9") Seek (@"debug/dwarf".off·2 @"debug/dwarf".Offset)
func (@"debug/dwarf".r·1 *@"debug/dwarf".Reader "esc:0x9") SkipChildren ()
func (@"debug/dwarf".r·2 *@"debug/dwarf".Reader "esc:0x9") @"debug/dwarf".clone () (? @"debug/dwarf".typeReader)
func (@"debug/dwarf".r·1 *@"debug/dwarf".Reader "esc:0x9") @"debug/dwarf".maybeNextUnit ()
func (@"debug/dwarf".r·2 *@"debug/dwarf".Reader "esc:0x1") @"debug/dwarf".offset () (? @"debug/dwarf".Offset) { return @"debug/dwarf".r·2.@"debug/dwarf".b.@"debug/dwarf".off }
type @"debug/dwarf".Data struct { @"debug/dwarf".abbrev []byte; @"debug/dwarf".aranges []byte; @"debug/dwarf".frame []byte; @"debug/dwarf".info []byte; @"debug/dwarf".line []byte; @"debug/dwarf".pubnames []byte; @"debug/dwarf".ranges []byte; @"debug/dwarf".str []byte; @"debug/dwarf".abbrevCache map[uint32]@"debug/dwarf".abbrevTable; @"debug/dwarf".order @"encoding/binary".ByteOrder; @"debug/dwarf".typeCache map[@"debug/dwarf".Offset]@"debug/dwarf".Type; @"debug/dwarf".typeSigs map[uint64]*@"debug/dwarf".typeUnit; @"debug/dwarf".unit []@"debug/dwarf".unit }
func (@"debug/dwarf".d·2 *@"debug/dwarf".Data) AddTypes (@"debug/dwarf".name·3 string, @"debug/dwarf".types·4 []byte) (? error)
func (@"debug/dwarf".d·3 *@"debug/dwarf".Data) LineReader (@"debug/dwarf".cu·4 *@"debug/dwarf".Entry) (? *@"debug/dwarf".LineReader, ? error)
func (@"debug/dwarf".d·2 *@"debug/dwarf".Data) Reader () (? *@"debug/dwarf".Reader)
func (@"debug/dwarf".d·3 *@"debug/dwarf".Data) Type (@"debug/dwarf".off·4 @"debug/dwarf".Offset) (? @"debug/dwarf".Type, ? error)
func (@"debug/dwarf".d·2 *@"debug/dwarf".Data "esc:0x1") @"debug/dwarf".offsetToUnit (@"debug/dwarf".off·3 @"debug/dwarf".Offset) (? int)
func (@"debug/dwarf".d·3 *@"debug/dwarf".Data) @"debug/dwarf".parseAbbrev (@"debug/dwarf".off·4 uint32, @"debug/dwarf".vers·5 int) (? @"debug/dwarf".abbrevTable, ? error)
func (@"debug/dwarf".d·2 *@"debug/dwarf".Data) @"debug/dwarf".parseTypes (@"debug/dwarf".name·3 string, @"debug/dwarf".types·4 []byte) (? error)
func (@"debug/dwarf".d·3 *@"debug/dwarf".Data) @"debug/dwarf".parseUnits () (? []@"debug/dwarf".unit, ? error)
func (@"debug/dwarf".d·3 *@"debug/dwarf".Data) @"debug/dwarf".readType (@"debug/dwarf".name·4 string, @"debug/dwarf".r·5 @"debug/dwarf".typeReader, @"debug/dwarf".off·6 @"debug/dwarf".Offset, @"debug/dwarf".typeCache·7 map[@"debug/dwarf".Offset]@"debug/dwarf".Type "esc:0x1") (? @"debug/dwarf".Type, ? error)
func (@"debug/dwarf".d·3 *@"debug/dwarf".Data) @"debug/dwarf".sigToType (@"debug/dwarf".sig·4 uint64) (? @"debug/dwarf".Type, ? error)
type @"".File struct { ? @"".FileHeader; OptionalHeader interface {}; Sections []*@"".Section; Symbols []*@"".Symbol; @"".closer @"io".Closer }
func (@"".f·2 *@"".File "esc:0x9") Close () (? error)
func (@"".f·3 *@"".File "esc:0x9") DWARF () (? *@"debug/dwarf".Data, ? error)
func (@"".f·3 *@"".File "esc:0x1") ImportedLibraries () (? []string, ? error) { return nil, nil }
func (@"".f·3 *@"".File "esc:0x9") ImportedSymbols () (? []string, ? error)
func (@"".f·2 *@"".File "esc:0x32") Section (@"".name·3 string "esc:0x1") (? *@"".Section)
type @"".ImportDirectory struct { OriginalFirstThunk uint32; TimeDateStamp uint32; ForwarderChain uint32; Name uint32; FirstThunk uint32; @"".dll string }
type @"".FormatError struct { @"".off int64; @"".msg string; @"".val interface {} }
func (@"".e·2 *@"".FormatError "esc:0x2a") Error () (? string)
func @"".Open (@"".name·3 string) (? *@"".File, ? error)
func @"".NewFile (@"".r·3 @"io".ReaderAt) (? *@"".File, ? error)
type @"".DataDirectory struct { VirtualAddress uint32; Size uint32 }
type @"".OptionalHeader32 struct { Magic uint16; MajorLinkerVersion uint8; MinorLinkerVersion uint8; SizeOfCode uint32; SizeOfInitializedData uint32; SizeOfUninitializedData uint32; AddressOfEntryPoint uint32; BaseOfCode uint32; BaseOfData uint32; ImageBase uint32; SectionAlignment uint32; FileAlignment uint32; MajorOperatingSystemVersion uint16; MinorOperatingSystemVersion uint16; MajorImageVersion uint16; MinorImageVersion uint16; MajorSubsystemVersion uint16; MinorSubsystemVersion uint16; Win32VersionValue uint32; SizeOfImage uint32; SizeOfHeaders uint32; CheckSum uint32; Subsystem uint16; DllCharacteristics uint16; SizeOfStackReserve uint32; SizeOfStackCommit uint32; SizeOfHeapReserve uint32; SizeOfHeapCommit uint32; LoaderFlags uint32; NumberOfRvaAndSizes uint32; DataDirectory [16]@"".DataDirectory }
type @"".OptionalHeader64 struct { Magic uint16; MajorLinkerVersion uint8; MinorLinkerVersion uint8; SizeOfCode uint32; SizeOfInitializedData uint32; SizeOfUninitializedData uint32; AddressOfEntryPoint uint32; BaseOfCode uint32; ImageBase uint64; SectionAlignment uint32; FileAlignment uint32; MajorOperatingSystemVersion uint16; MinorOperatingSystemVersion uint16; MajorImageVersion uint16; MinorImageVersion uint16; MajorSubsystemVersion uint16; MinorSubsystemVersion uint16; Win32VersionValue uint32; SizeOfImage uint32; SizeOfHeaders uint32; CheckSum uint32; Subsystem uint16; DllCharacteristics uint16; SizeOfStackReserve uint64; SizeOfStackCommit uint64; SizeOfHeapReserve uint64; SizeOfHeapCommit uint64; LoaderFlags uint32; NumberOfRvaAndSizes uint32; DataDirectory [16]@"".DataDirectory }
type @"".SectionHeader32 struct { Name [8]uint8; VirtualSize uint32; VirtualAddress uint32; SizeOfRawData uint32; PointerToRawData uint32; PointerToRelocations uint32; PointerToLineNumbers uint32; NumberOfRelocations uint16; NumberOfLineNumbers uint16; Characteristics uint32 }
const @"".COFFSymbolSize = 0x12
type @"".COFFSymbol struct { Name [8]uint8; Value uint32; SectionNumber int16; Type uint16; StorageClass uint8; NumberOfAuxSymbols uint8 }
const @"".IMAGE_FILE_MACHINE_UNKNOWN = 0x0
const @"".IMAGE_FILE_MACHINE_AM33 = 0x1d3
const @"".IMAGE_FILE_MACHINE_AMD64 = 0x8664
const @"".IMAGE_FILE_MACHINE_ARM = 0x1c0
const @"".IMAGE_FILE_MACHINE_EBC = 0xebc
const @"".IMAGE_FILE_MACHINE_I386 = 0x14c
const @"".IMAGE_FILE_MACHINE_IA64 = 0x200
const @"".IMAGE_FILE_MACHINE_M32R = 0x9041
const @"".IMAGE_FILE_MACHINE_MIPS16 = 0x266
const @"".IMAGE_FILE_MACHINE_MIPSFPU = 0x366
const @"".IMAGE_FILE_MACHINE_MIPSFPU16 = 0x466
const @"".IMAGE_FILE_MACHINE_POWERPC = 0x1f0
const @"".IMAGE_FILE_MACHINE_POWERPCFP = 0x1f1
const @"".IMAGE_FILE_MACHINE_R4000 = 0x166
const @"".IMAGE_FILE_MACHINE_SH3 = 0x1a2
const @"".IMAGE_FILE_MACHINE_SH3DSP = 0x1a3
const @"".IMAGE_FILE_MACHINE_SH4 = 0x1a6
const @"".IMAGE_FILE_MACHINE_SH5 = 0x1a8
const @"".IMAGE_FILE_MACHINE_THUMB = 0x1c2
const @"".IMAGE_FILE_MACHINE_WCEMIPSV2 = 0x169
func @"".init ()
func @"io".NewSectionReader (@"io".r·2 @"io".ReaderAt, @"io".off·3 int64, @"io".n·4 int64) (? *@"io".SectionReader) { return (&@"io".SectionReader{ @"io".r:@"io".r·2, @"io".base:@"io".off·3, @"io".off:@"io".off·3, @"io".limit:@"io".off·3 + @"io".n·4 }) }
type @"debug/dwarf".DecodeError struct { Name string; Offset @"debug/dwarf".Offset; Err string }
func (@"debug/dwarf".e·2 @"debug/dwarf".DecodeError "esc:0x1") Error () (? string)
$$
_go_.o 0 0 0 644 146627 `
go object linux amd64 go1.5.1 X:none
!
��go13lddebug/dwarf.a"encoding/binary.aerrors.a
fmt.aio.aos.astrconv.a�þ$"".(*Section).Data��À��¤dH‹ %����HD$øH;A†°��Hìˆ���H‹œ$ˆ���H‰$è����1ÛH‰œ$˜���H‰œ$ ���H‰œ$¨���1ÛH‰œ$°���H‰œ$¸���H‹œ$���H‰$Hƒ$@è����H‹œ$���H‹k@H‰l$@H‰,$Hƒ$ è����H‹\$@H‰$Hƒ$è����H‹D$@H‹X H‹hH)ëH‰ØH����H‰$H‰D$H‰D$è����H‹T$H‹L$ H‹D$(H‰T$XH‰L$`H‰D$hH‹œ$���H‰$Hƒ$@è����H‹œ$���H‹k@H‰,$H‹\$XH‰\$H‹\$`H‰\$H‹\$hH‰\$HÇD$ ����è����H‹D$(H‹T$0H‹L$8H‹t$`H9ðul1ÒH‰ÑH‹l$hH9èwVL‹D$XL‰D$pL‰„$˜���H‰D$xH‰„$ ���H‰¬$€���H‰¬$¨���H‰T$HH‰”$°���H‰L$PH‰Œ$¸���è����HÄˆ���Ãè���� ë—è����é.þÿÿ
������X
��*runtime.racefuncenter���Ü
�� runtime.raceread���š
�� runtime.raceread����� runtime.raceread���ô��type.[]uint8���š
��"runtime.makeslice���‚
�� runtime.raceread���ú
��4io.(*SectionReader).ReadAt���æ
��(runtime.racefuncexit���€
��$runtime.panicslice���’
��0runtime.morestack_noctxt���`��"".autotmp_0011��type.int64�"".autotmp_0009��type.[]uint8�"".autotmp_0008��type.int�"".autotmp_0005�/type.[]uint8�io.s·2�,type.*io.SectionReader� "".err�type.error� "".dat�_type.[]uint8� "".~r1�@type.error� "".~r0�type.[]uint8�"".s�� type.*"".Section�Ÿ!�à�*”\“a
S   � �+a@4² !�Tgclocals·3d62476710a386a8bdda2662c18ab6e5�Tgclocals·7f7e6ec54e0fe5c2b861c6ab03f71f2b���8/tmp/go/src/debug/pe/file.goþ$"".(*Section).Open��à��ÞdH‹ %����H;a†Ò��Hƒì`H‹\$`H‰$è����1ÛH‰\$pH‰\$xH‹����H‰D$81íH9è„f��H‹\$hH‰$Hƒ$@è����H‹\$hH‹k@H‹D$8H‰D$PH‰D$@H‰l$XH‰l$HHÇD$ ����H»ÿÿÿÿÿÿÿH‰\$(H����H‰$è����H‹D$H‰D$0H‰$è����H‹\$0H‹l$@H‰+H‹l$H€=�����…À���H‰kH‹\$0H‰$Hƒ$è����H‹D$0H‹l$ H‰hH‰$Hƒ$è����H‹D$0H‹l$ H‰hH‰$Hƒ$ è����H‹D$0H‹l$ L‹D$(LÅH‰h H‰D$0H‹����1íH9ètH‹\$0H‰\$xH‰D$pè����HƒÄ`ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë¸LCL‰$H‰l$è����é-ÿÿÿH����H‰$H����H‰\$H����H‰\$è����H‹\$H‰\$8écþÿÿè����éþÿÿ.
������B
��*runtime.racefuncenter���h��Jgo.itab.*io.SectionReader.io.ReaderAt���®
�� runtime.raceread���°��*type.io.SectionReader���Â
��"runtime.newobject���è
��"runtime.racewrite���˜�6runtime.writeBarrierEnabled���Ô
��"runtime.racewrite���Œ
��"runtime.racewrite���Ä
��"runtime.racewrite���ˆ��Ngo.itab.*io.SectionReader.io.ReadSeeker���¾
��(runtime.racefuncexit���Ö��,type.*io.SectionReader���ì��$type.io.ReadSeeker���„��Ngo.itab.*io.SectionReader.io.ReadSeeker���˜
�� runtime.typ2Itab���Ê
��.runtime.writebarrierptr���â��,type.*io.SectionReader���ø�� type.io.ReaderAt�����Jgo.itab.*io.SectionReader.io.ReaderAt���¤
�� runtime.typ2Itab���Ì
��0runtime.morestack_noctxt���0À��"".autotmp_0017��type.*uint8�"".autotmp_0016�_,type.*io.SectionReader�"".autotmp_0015��,type.*io.SectionReader�"".autotmp_0014�Otype.*uint8�"".autotmp_0013� type.io.ReaderAt�"".autotmp_0012��,type.*io.SectionReader�io.n·4�otype.int64�io.off·3�type.int64�io.r·2�? type.io.ReaderAt� "".~r0�$type.io.ReadSeeker�"".s�� type.*"".Section�ÀпÀˆ�ð�
¨ð�&� 6J6u-F�Tgclocals·18f6d3d39240673c818afd82a70cfe06�Tgclocals·d76d733252dff1db3e6244421edfb3e6���8/tmp/go/src/debug/pe/file.goþ."".(*FormatError).Error��€��üdH‹ %����HD$ÐH;A†œ��Hì°���1ÀH‰D$hH‰D$pH‹œ$°���H‰$è����1ÛH‰œ$À���H‰œ$È���H‹œ$¸���H‰$Hƒ$è����H‹„$¸���Hƒø�„7��H‹hH‰l$8H‹hH‰l$@H‰$Hƒ$è����H‹L$8H‹D$@H‹œ$¸���H‹kHƒý�„4��H‰Œ$ˆ���H‰„$���1ÀH‰D$hH‰D$pHD$hHƒø�„Å��HDŽ$ ������HDŽ$¨������H‰„$˜���H‰$è����H‹œ$¸���H‰$Hƒ$è����H‹œ$¸���Hƒû�„m��HkH‹œ$˜���H‰\$H‰l$H-����H‰,$è����H����H‰$HÇD$���H‹œ$˜���H‰\$H‹œ$ ���H‰\$H‹œ$¨���H‰\$ è����H‹L$(H‹D$0HÇ$����H‹œ$ˆ���H‰\$H‹œ$���H‰\$H‰L$xH‰L$H‰„$€���H‰D$ è����H‹L$(H‹D$0H‰L$8H‰Œ$ˆ���H‰D$@H‰„$���1ÛH‰\$XH‰\$`H\$XHƒû�„y��HDŽ$ ������HDŽ$¨������H‰œ$˜���H����H‰$H‹œ$¸���H‰\$Hƒ|$�„)��HÇD$����è����H‹\$H‰\$HH‹\$ H‰\$PH‹œ$˜���H‰$è����H‹œ$˜���H‹l$HH‰+H‹l$P€=�����…½���H‰kH����H‰$HÇD$���H‹œ$˜���H‰\$H‹œ$ ���H‰\$H‹œ$¨���H‰\$ è����H‹L$(H‹D$0HÇ$����H‹œ$ˆ���H‰\$H‹œ$���H‰\$H‰L$xH‰L$H‰„$€���H‰D$ è����H‹L$(H‹D$0H‰L$8H‰Œ$À���H‰D$@H‰„$È���è����HÄ°���ÃLCL‰$H‰l$è����é0ÿÿÿ‰%����éËþÿÿ‰é€þÿÿ‰éŒýÿÿ‰�é4ýÿÿ‰�éÂüÿÿè����éBüÿÿ*
������p
��*runtime.racefuncenter����� runtime.raceread���¤
�� runtime.raceread���Œ
��"runtime.racewrite���¸
�� runtime.raceread���–��"type.interface {}���¨
��(runtime.typedmemmove���¶��"go.string." '%v'"���¨
��fmt.Sprintf���¸
��*runtime.concatstring2���„ ��type.int64���Ú 
��runtime.convT2E���¤

��"runtime.racewrite���Ú
�6runtime.writeBarrierEnabled���þ
��Dgo.string." in record at byte %#x"���ð 
��fmt.Sprintf���€ 
��*runtime.concatstring2���Ò 
��(runtime.racefuncexit���†
��.runtime.writebarrierptr���ê
��0runtime.morestack_noctxt���0à��"".autotmp_0032�Ï"type.interface {}�"".autotmp_0031�¯(type.[1]interface {}�"".autotmp_0029��*type.*[1]interface {}�"".autotmp_0028��&type.[]interface {}�"".autotmp_0027�(type.[1]interface {}�"".autotmp_0024�/&type.[]interface {}�"".autotmp_0023��type.string�"".autotmp_0022��type.string�"".autotmp_0021�otype.string�"".autotmp_0020�Otype.string� "".msg�ïtype.string� "".~r0�type.string�"".e��(type.*"".FormatError�àÕßàK�À�8¸+  :.´ä'* �6�7ZtŽH‘%fH)>�Tgclocals·bf571f6e994f54f15b6c49dddccda3dd�Tgclocals·12abde4ce1c001576b1c5981f9189139���8/tmp/go/src/debug/pe/file.goþ"".Open��  �� dH‹ %����H;a†+��HƒìxH‹\$xH‰$è����1ÛH‰œ$˜���H‰œ$ ���H‹œ$€���H‰$H‹œ$ˆ���H‰\$è����H‹T$H‹D$H‹L$ H‰L$PH‰D$HHƒø�t&HDŽ$�������H‰„$˜���H‰Œ$ ���è����HƒÄxÃH‰T$0H‰T$@H‹����1íH9è„V��H‹L$@H‰D$hH‰$H‰L$pH‰L$è����H‹l$0H‹D$H‹T$H‹L$ H‰D$(H‰L$PH‰T$HHƒú�t9H‰,$è����HDŽ$�������H‹\$HH‰œ$˜���H‹\$PH‰œ$ ���è����HƒÄxÃH‰l$@H‹����H‰D$81íH9è„„���H‹\$(H‰$Hƒ$Xè����H‹L$@H‹D$8H‹\$(Hƒû�tXH‰D$XH‰CXH‰L$`€=�����u-H‰K`H‹\$(H‰œ$���1ÛH‰œ$˜���H‰œ$ ���è����HƒÄxÃLC`L‰$H‰L$è����ëÉë¤H����H‰$H����H‰\$H����H‰\$è����H‹\$H‰\$8éEÿÿÿH����H‰$H����H‰\$H����H‰\$è����H‹D$éxþÿÿè����é¸ýÿÿ,
������B
��*runtime.racefuncenter���¢
��os.Open���¢
��(runtime.racefuncexit���Î��8go.itab.*os.File.io.ReaderAt���ž
��"".NewFile���‚
�� os.(*File).Close���Ø
��(runtime.racefuncexit���ú��4go.itab.*os.File.io.Closer���À
��"runtime.racewrite���’�6runtime.writeBarrierEnabled���è
��(runtime.racefuncexit���–
��.runtime.writebarrierptr���°��type.*os.File���Æ��type.io.Closer���Þ��4go.itab.*os.File.io.Closer���ò
�� runtime.typ2Itab���ž��type.*os.File���´�� type.io.ReaderAt���Ì��8go.itab.*os.File.io.ReaderAt���à
�� runtime.typ2Itab���þ
��0runtime.morestack_noctxt���Pð��"".autotmp_0040��type.*uint8�"".autotmp_0039�type.*uint8�"".autotmp_0038��type.*os.File�"".autotmp_0037��type.error�"".autotmp_0035��type.*os.File�"".autotmp_0033�otype.*os.File�
"".ff�Ÿtype.*"".File� "".err�_type.error�"".f�type.*os.File� "".~r2�0type.error� "".~r1� type.*"".File�"".name��type.string�8ð‚ïðšïð‡ïð“�Ð�XÌ2 W  &_); 2 �.� p>2+4
T  .7!�Tgclocals·2513e318c737c9158a282a98e88ca498�Tgclocals·6235160484cd87ecd8cee2a67bf0f23f���8/tmp/go/src/debug/pe/file.goþ "".(*File).Close��€��ìdH‹ %����H;a†Ù���Hƒì8H‹\$8H‰$è����1ÛH‰\$HH‰\$P1ÛH‰\$H‰\$ H‹\$@H‰$Hƒ$Xè����H‹D$@H‹hXHƒý�tkH‰$Hƒ$Xè����H‹\$@Hƒû�tpH‹KXH‹k`H‰l$0H‰,$H‰L$(H‹Y ÿÓH‹L$H‹D$H‰L$H‰D$ H‹\$@H‰$Hƒ$Xè����H‹\$@1íH‰kXH‰k`H‹\$H‰\$HH‹\$ H‰\$Pè����HƒÄ8ÉëŒè����é
ÿÿÿ
������B
��*runtime.racefuncenter���˜
�� runtime.raceread���Ò
�� runtime.raceread���¤�������î
��"runtime.racewrite���¾
��(runtime.racefuncexit���Ú
��0runtime.morestack_noctxt���0p�� "".err�?type.error� "".~r0�type.error�"".f��type.*"".File�pÐop�€�,î   "I"�� +N("�Tgclocals·27f94a2fe0ff5b305b2385471201b6d7�Tgclocals·0c7ba4686807ed10ce3a3f60b9393cf2���8/tmp/go/src/debug/pe/file.goþ"".NewFile��À ��¢ dH‹ %����H„$ðüÿÿH;A†ì'��Hì��H‹œ$��H‰$è����1ÛH‰œ$°��H‰œ$¸��H����H‰$è����H‹\$H‰œ$À���H‹œ$˜��H‰œ$ˆ��H‹œ$ ��H‰œ$��HÇD$P����H»ÿÿÿÿÿÿÿH‰\$`H����H‰$è����H‹D$H‰„$è���H‰$è����H‹œ$è���H‹¬$ˆ��H‰+H‹¬$��€=�����…'��H‰kH‹œ$è���H‰$Hƒ$è����H‹„$è���H‹l$PH‰hH‰$Hƒ$è����H‹„$è���H‹l$PH‰hH‰$Hƒ$ è����H‹„$è���H‹l$PL‹D$`LÅH‰h H‰„$ ���H����H‰$è����H‹D$H‰„$@��H‰$HÇD$`���è����H‹„$@��Hƒø�„G&��HÇÂ`���HÇÁ`���H‰„$H��H‰D$H‰”$P��H‰T$H‰Œ$X��H‰L$HÇD$ ����H‹œ$ ��H‰$H‹œ$˜��H‹[ ÿÓH‹D$0H‹L$8H‰Œ$@��H‰„$8��Hƒø�t)HDŽ$¨������H‰„$°��H‰Œ$¸��è����HÄ��ÃH‹œ$@��H‰$è����H‹„$@��¶€ûM…z%��H‰ÃHÿÃH‰$è����H‹œ$@��¶[€ûZ…V%��H����H‰$HÇD$����è����H‹¬$@��Hƒý�„#%��HƒÅ<HÇÂ$���HÇÁ$���H‰Œ$à��H‰¬$Ð��Hƒú�H‰”$Ø��†è$��H‰,$è����H‹œ$Ð��Hƒ¼$Ø��†Á$��HÿÃH‰$è����H‹œ$Ð��Hƒ¼$Ø��†—$��HƒÃH‰$è����H‹œ$Ð��Hƒ¼$Ø��†l$��HƒÃH‰$è����H‹Œ$Ð��H‹„$Ø��Hƒø�†>$��¶H‰ÍHƒø†'$��HÿŶm�Áå ëH‰ÍHƒø†$��HƒÅ¶m�Áå ëH‰ÍHƒø†æ#��HƒÅ¶m�Áå ëH‰\$HH����H‰$è����H‹D$H‰„$ ��H‰$HÇD$���è����H‹„$ ��Hƒø�„Œ#��HÇÂ���HÇÁ���H‰„$H��H‰D$H‰”$P��H‰T$H‰Œ$X��H‰L$H‹\$HH‰\$ H‹œ$ ��H‰$H‹œ$˜��H‹[ ÿÓH‹œ$ ��H‰$è����H‹„$ ��¶€ûP…Þ!��H‰ÃHÿÃH‰$è����H‹„$ ��¶X€ûE…º!��H‰ÃHƒÃH‰$è����H‹„$ ��¶X€û�…•!��H‰ÃHƒÃH‰$è����H‹œ$ ��¶[€û�…p!��H‹D$HHƒÀH‹œ$ ���H‰$H‰„$€���H‰D$HÇD$����è����H‹œ$ ���H‰œ$è���H‹œ$À���Hƒû�„!��H‰œ$��H‹����H‰„$Ø���1íH9è„» ��H����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H\$(H|$H‹ H‰H‹KH‰OH‹Œ$è���H‹„$Ø���H‰„$x��H‰$H‰Œ$€��H‰L$H‹Œ$��H����H‰œ$h��H‰\$ H‰Œ$p��H‰L$(è����H‹D$0H‹L$8H‰Œ$���H‰„$ø��Hƒø�t)HDŽ$¨������H‰„$°��H‰Œ$¸��è����HÄ��ÃH‹œ$À���H‰$è����H‹„$À���H·fƒû�„p��H‰$è����H‹„$À���H·fûd†„P��H‰$è����H‹„$À���H·fûL„0��H����H‰œ$x��HDŽ$€�����1ÛH‰œ$X��H‰œ$`��H����H‰$è����H‹D$H‰„$à���H‰$è����H‹œ$à���H‹¬$€��H‰kH‹¬$x��€=�����…¡���H‰+H‹œ$à���H‰œ$à���H‹����1íH9ètQH‹”$à���H‰„$¨��H‰”$°��HDŽ$¨������H‰„$X��H‰„$°��H‰”$`��H‰”$¸��è����HÄ��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë€H‰$H‰l$è����éOÿÿÿ1ÛH‰œ$¸��H‰œ$À��H‰œ$È��H‰$Hƒ$ è����H‹„$À���‹X ƒû�†& ��H‰$Hƒ$è����H‹œ$À���H‰$Hƒ$ è����H‹„$À���H‹œ$ ���H‰$‹X‹h kíëH‰\$HÇD$����è����H����H‰$è����H‹D$H‰„$8��H‰$è����H‹œ$ ���H‰œ$è���H‹œ$8��H‰œ$��H‹����H‰„$Ø���1íH9è„��H����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H\$(H|$H‹ H‰H‹KH‰OH‹Œ$è���H‹„$Ø���H‰„$x��H‰$H‰Œ$€��H‰L$H‹Œ$��H����H‰œ$h��H‰\$ H‰Œ$p��H‰L$(è����H‹D$0H‹L$8H‰Œ$Ð��H‰„$È��Hƒø�t)HDŽ$¨������H‰„$°��H‰Œ$¸��è����HÄ��ÃH‹œ$8��H‰$è����H‹œ$8��H‰$è����H‹„$8��H����H‰$‹(H‰l$‹(H‰l$è����H‹D$H‹T$ H‹L$(H‰„$¸��H‰”$À��H‰Œ$È��H‹œ$À���H‰$Hƒ$è����H‹œ$À���H‰$Hƒ$ è����H‹„$À���H‹œ$¸��H‰\$H‹œ$À��H‰\$H‹œ$È��H‰\$‹X‹h kíëH‰\$ H‹œ$ ��H‰$H‹œ$˜��H‹[ ÿÓH‹D$0H‹L$8H‰Œ$à��H‰„$Ø��Hƒø�t)HDŽ$¨������H‰„$°��H‰Œ$¸��è����HÄ��ÃH‹œ$À���H‰$Hƒ$è����H‹œ$ ���H‰$H‹œ$À���‹kH‰l$HÇD$����è����ÆD$E�HÇD$p����H‹œ$À���H‰$Hƒ$ è����H‹œ$À���‹[ H‹l$pH9ëŽÁ��H����H‰$è����H‹D$H‹œ$ ���H‰œ$è���H‰„$È���H‰„$��H‹����H‰„$Ø���1íH9è„8��H����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H\$(H|$H‹ H‰H‹KH‰OH‹Œ$è���H‹„$Ø���H‰„$x��H‰$H‰Œ$€��H‰L$H‹Œ$��H����H‰œ$h��H‰\$ H‰Œ$p��H‰L$(è����¶T$EH‹L$0H‹D$8H‰„$ ��H‰Œ$��Hƒù�t)HDŽ$¨������H‰Œ$°��H‰„$¸��è����HÄ��Àú�vH‰ÓHÿˈ\$EH‹\$pHÿÃH‰\$pégþÿÿ1ÛH‰œ$¨��H‰œ$°��H‹œ$È���H‰$è����H‹„$È���¶€û�…„��H‰ÅHÿÅH‰,$è����H‹„$È���¶X€û�…`��H‰ÅHƒÅH‰,$è����H‹„$È���¶X€û�…;��H‰ÅHƒÅH‰,$è����H‹„$È���¶X€û�…��H����H‰$HÇD$����è����H‹¬$È���Hƒý�„ã��HƒÅHÇÂ���HÇÁ���H‰Œ$ø��H‰¬$è��Hƒú�H‰”$ð��†¨��H‰,$è����H‹œ$è��Hƒ¼$ð��†��HÿÃH‰$è����H‹œ$è��Hƒ¼$ð��†W��HƒÃH‰$è����H‹œ$è��Hƒ¼$ð��†,��HƒÃH‰$è����H‹Œ$è��H‹„$ð��Hƒø�†þ��¶H‰ÍHƒø†ç��HÿŶm�Áå ëH‰ÍHƒø†Ç��HƒÅ¶m�Áå ëH‰ÍHƒø†¦��HƒÅ¶m�Áå ëH‰ØH‹œ$¸��H‰$H‹œ$À��H‰\$H‹œ$È��H‰\$H‰D$è����H‹L$ H‹D$(H‰Œ$¨��H‰„$°��H‹œ$È���H‰$Hƒ$è����H‹œ$È���¶k@ˆl$EH����H‰$è����H‹D$H‰„$Ð���H‰$è����H‹œ$Ð���H‹¬$°��H‰kH‹¬$¨��€=�����…Ã��H‰+H‹œ$Ð���H‰$Hƒ$è����H‹œ$È���H‰$Hƒ$è����H‹„$Ð���Hƒø�„{��L‹„$È���A‹h‰hH‰$Hƒ$è����H‹œ$È���H‰$Hƒ$ è����H‹„$Ð���Hƒø�„/��L‹„$È���I·h f‰hH‰$Hƒ$è����H‹œ$È���H‰$Hƒ$è����H‹„$Ð���Hƒø�„á��L‹„$È���I·hf‰hH‰$Hƒ$è����H‹œ$È���H‰$Hƒ$è����H‹„$Ð���Hƒø�„“��L‹„$È���A¶h@ˆhH‰„$°���H‹œ$À���H‰$Hƒ$@è����H‹œ$À���Hƒû�„K��H‹S@H‹CHH‹[PH‰ÙH)ÃHƒû}QH����H‰$H‰”$��H‰T$H‰D$H‰Œ$(��H‰L$H‰ÃH‰„$ ��HÿÃH‰\$ è����H‹T$(H‹D$0H‹L$8H‰ÃHÿÃH‰Œ$(��H9ˇÄ���H‰œ$ ��H‰”$��H‰„$���HÂH‰$è����H‹œ$��H‹¬$���HëH‹¬$°���€=�����ujH‰+H‹œ$À���H‰$Hƒ$@è����H‹œ$À���H‹¬$ ��H‰kHH‹¬$(��H‰kPH‹¬$��€=�����u H‰k@é×úÿÿLC@L‰$H‰l$è����éÀúÿÿH‰$H‰l$è����ë‰è���� ‰é®þÿÿ‰�éfþÿÿ‰�éþÿÿ‰�éÊýÿÿ‰�é~ýÿÿH‰$H‰l$è����é-ýÿÿè���� è���� è���� è���� è���� è���� è���� è���� ‰E�éûÿÿHƒø�tXHÇÂ���HÇÁ���H‰„$H��H‰$H‰”$P��H‰T$H‰Œ$X��H‰L$è����H‹L$H‹D$ H‰Œ$¨��H‰„$°��éüÿÿ‰�ë¤H����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$Ø���éŽøÿÿH‹œ$ ���H‰$H‹œ$€���H‰\$HÇD$����è����H‹œ$ ���H‰œ$è���H‹œ$À���Hƒû�„C��H‰œ$��H‹����H‰„$Ø���1íH9è„ç��H����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H\$(H|$H‹ H‰H‹KH‰OH‹Œ$è���H‹„$Ø���H‰„$x��H‰$H‰Œ$€��H‰L$H‹Œ$��H����H‰œ$h��H‰\$ H‰Œ$p��H‰L$(è����H‹D$0H‹L$8H‰Œ$��H‰„$��Hƒø�t)HDŽ$¨������H‰„$°��H‰Œ$¸��è����HÄ��ÃH����H‰$è����H‹D$H‰„$0��H‰$HÇD$à���è����H����H‰$è����H‹D$H‰„$(��H‰$HÇD$ð���è����H‹œ$À���H‰$Hƒ$è����H‹œ$À���H·kf‰l$FH����H‰$è����H·\$FH·-����f9ë…´ ��H‹œ$ ���H‰œ$è���H‹œ$0��H‰œ$���H‹����H‰„$Ø���1íH9è„@ ��H����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H\$(H|$H‹ H‰H‹KH‰OH‹Œ$è���H‹„$Ø���H‰„$x��H‰$H‰Œ$€��H‰L$H‹Œ$���H����H‰œ$h��H‰\$ H‰Œ$p��H‰L$(è����H‹D$0H‹L$8H‰Œ$ð��H‰„$è��Hƒø�t)HDŽ$¨������H‰„$°��H‰Œ$¸��è����HÄ��ÃH‹œ$0��H‰$è����H‹Œ$0��H·fû „Z��1ÛH‰œ$ˆ��H‰œ$��Hœ$ˆ��Hƒû�„/��HDŽ$�����HDŽ$�����H‰œ$���H����H‰$H‰L$HÇD$����è����H‹\$H‰œ$h��H‹\$ H‰œ$p��H‹œ$���H‰$è����H‹œ$���H‹¬$h��H‰+H‹¬$p��€=�����…‡���H‰kH����H‰$HÇD$1���H‹œ$���H‰\$H‹œ$��H‰\$H‹œ$��H‰\$ è����H‹L$(H‹D$0HDŽ$¨������H‰Œ$¨��H‰Œ$°��H‰„$°��H‰„$¸��è����HÄ��ÃLCL‰$H‰l$è����éfÿÿÿ‰éÊþÿÿH‰Œ$���H‹œ$À���H‰$Hƒ$è����H‹Œ$���H����H‰ØH‹œ$À���Hƒû�„€ ��H‰„$h��H‰CH‰Œ$p��€=�����…H ��H‰K H‹œ$À���H‰$Hƒ$è����H‹œ$À���H‰$Hƒ$è����H‹„$À���H����H‰$H·hH‰l$H·hH‰l$è����H‹\$H‰œ$0��H‹\$ H‰œ$8��H‹\$(H‰œ$@��H‹œ$À���H‰$Hƒ$(è����H‹œ$À���H‹¬$8��H‰k0H‹¬$@��H‰k8H‹¬$0��€=�����…c��H‰k(HÇD$x����H‹œ$À���H‰$Hƒ$è����H‹„$À���H·XH‹l$xH9ëŽþ��H����H‰$è����H‹D$H‹œ$ ���H‰œ$è���H‰„$¨���H‰„$ð���H‹����H‰„$Ø���1íH9è„u��H����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H\$(H|$H‹ H‰H‹KH‰OH‹Œ$è���H‹„$Ø���H‰„$x��H‰$H‰Œ$€��H‰L$H‹Œ$ð���H����H‰œ$h��H‰\$ H‰Œ$p��H‰L$(è����H‹L$0H‹D$8H‰„$P��H‰Œ$H��Hƒù�t)HDŽ$¨������H‰Œ$°��H‰„$¸��è����HÄ��Ã1ÛH‰œ$¸��H‰œ$À��H‹œ$¨���H‰$è����H‹„$¨���¶€û/…ñ��H‰ÃHÿÃHÇÂ���HÇÁ���H‰œ$H��H‰$H‰”$P��H‰T$H‰Œ$X��H‰L$è����H‹L$H‹D$ H‰Œ$˜��H‰ $H‰„$ ��H‰D$è����H‹D$H‹œ$¸��H‰$H‹œ$À��H‰\$H‹œ$È��H‰\$H‰D$è����H‹L$ H‹D$(H‰Œ$¸��H‰„$À��H����H‰$è����H‹\$H‰œ$¸���H5����H¼$`��è����H‹œ$¸��H‰œ$`��H‹œ$À��H‰œ$h��H‹œ$¨���H‰$Hƒ$è����H‹„$¨���‹X‰œ$p��H‰$Hƒ$ è����H‹„$¨���‹X ‰œ$t��H‰$Hƒ$è����H‹„$¨���‹X‰œ$x��H‰$Hƒ$è����H‹„$¨���‹X‰œ$|��H‰$Hƒ$è����H‹„$¨���‹X‰œ$€��H‰$Hƒ$è����H‹„$¨���‹X‰œ$„��H‰$Hƒ$ è����H‹„$¨���H·X f‰œ$ˆ��H‰$Hƒ$"è����H‹„$¨���H·X"f‰œ$Š��H‰$Hƒ$$è����H‹¬$¨���‹]$‰œ$Œ��H‹œ$¸���H‰$HÇD$0���è����H‹¬$¸���Hƒý�„ˆ��Hœ$`��H‰l$H‰\$H����H‰$è����H‹œ$¸���H‰$Hƒ$è����H‹„$¸���‹hH‰¬$ˆ���H‰$Hƒ$è����H‹œ$¸���‹kH‹œ$˜��H‰œ$˜��H‹œ$ ��H‰œ$ ��H‹œ$ˆ���H‰\$XH‰l$hH����H‰$è����H‹D$H‰„$è���H‰$è����H‹œ$è���H‹¬$˜��H‰+H‹¬$ ��€=�����…��H‰kH‹œ$è���H‰$Hƒ$è����H‹„$è���H‹l$XH‰hH‰$Hƒ$è����H‹„$è���H‹l$XH‰hH‰$Hƒ$ è����H‹„$è���H‹l$XL‹D$hLÅH‰h H‰„$˜���H‹œ$¸���H‰$Hƒ$@è����H‹œ$¸���Hƒû�„å��H‹¬$˜���€=�����…¹��H‰k@H‹����H‰„$Ø���1íH9è„a��H‹œ$¸���H‰$Hƒ$0è����H‹œ$¸���H‰$Hƒ$@è����H‹”$¸���H‹J@H‹„$Ø���H‰„$X��H‰B0H‰Œ$`��€=�����…é���H‰J8H‹œ$À���H‰$Hƒ$(è����H‹œ$À���H‹K(H‹C0H‹k8H‰¬$@��H‰Œ$0��H‹l$xH‰„$8��H9ŃŽ���HéH‰$è����H‹œ$À���Hƒû�toH‹K(H‹C0H‹k8H‰¬$@��H‰Œ$0��H‹l$xH‰„$8��H9Ås:HéH‹¬$¸���€=�����uH‰+H‹\$xHÿÃH‰\$xéùÿÿH‰$H‰l$è����ëÞè���� ‰ëè���� LB8L‰$H‰L$è����éÿÿÿH����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$Ø���éeþÿÿLC@L‰$H‰l$è����é4þÿÿ‰éþÿÿLCL‰$H‰l$è����é`ýÿÿ‰E�épüÿÿHÇÂ���HÇÁ���H‰„$H��H‰$H‰”$P��H‰T$H‰Œ$X��H‰L$è����H‹L$H‹D$ H‰Œ$¸��H‰„$À��émúÿÿH����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$Ø���éQøÿÿH‰„$¨��1ÛH‰œ$°��H‰œ$¸��è����HÄ��ÃLC(L‰$H‰l$è����éŠ÷ÿÿLC L‰$H‰L$è����é¥öÿÿ‰éyöÿÿH����H‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$Ø���é†óÿÿH����H‰$è����H·\$FH·-����f9ë…=öÿÿH‹œ$ ���H‰œ$è���H‹œ$(��H‰œ$ø���H‹����H‰„$Ø���1íH9è„ö��H����H‰$H����H‰\$H����H‰\$H����H‰\$HÇD$ ����è����H\$(H|$H‹ H‰H‹KH‰OH‹Œ$è���H‹„$Ø���H‰„$x��H‰$H‰Œ$€��H‰L$H‹Œ$ø���H����H‰œ$h��H‰\$ H‰Œ$p��H‰L$(è����H‹D$0H‹L$8H‰Œ$0��H‰„$(��Hƒø�t)HDŽ$¨������H‰„$°��H‰Œ$¸��è����HÄ��ÃH‹œ$(��H‰$è����H‹Œ$(��H·fû „Z��1ÛH‰œ$ˆ��H‰œ$��Hœ$ˆ��Hƒû�„/��HDŽ$�����HDŽ$�����H‰œ$���H����H‰$H‰L$HÇD$����è����H‹\$H‰œ$h��H‹\$ H‰œ$p��H‹œ$���H‰$è����H‹œ$���H‹¬$h��H‰+H‹¬$p��€=�����…‡���H‰kH����H‰$HÇD$2���H‹œ$���H‰\$H‹œ$��H‰\$H‹œ$��H‰\$ è����H‹L$(H‹D$0HDŽ$¨������H‰Œ$¨��H‰Œ$°��H‰„$°��H‰„$¸��è����HÄ��ÃLCL‰$H‰l$è����éfÿÿÿ‰éÊþÿÿH‰Œ$ø���H‹œ$À���H‰$Hƒ$è����H‹Œ$ø���H����H‰ØH‹œ$À���Hƒû�t=H‰„$h��H‰CH‰Œ$p��€=�����u H‰K é(óÿÿLC L‰$H‰L$è����éóÿÿ‰ë¿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‰$H����H‰\$H����H‰\$è����H‹\$H‰œ$Ø���é ßÿÿ‰éâÞÿÿH����H‰œ$h��HDŽ$p�����1ÛH‰œ$H��H‰œ$P��H����H‰$è����H‹D$H‰„$à���H‰$è����H‹œ$à���H‹¬$p��H‰kH‹¬$h��€=�����…¡���H‰+H‹œ$à���H‰œ$à���H‹����1íH9ètQH‹”$à���H‰„$¨��H‰”$°��HDŽ$¨������H‰„$H��H‰„$°��H‰”$P��H‰”$¸��è����HÄ��ÃH����H‰$H����H‰\$H����H‰\$è����H‹D$ë€H‰$H‰l$è����éOÿÿÿ‰�émÜÿÿè���� è���� è���� è���� è���� è���� è���� è���� ‰E�éÕÚÿÿ1ÀéÝÿÿ‰�é²ÙÿÿLCL‰$H‰l$è����éåØÿÿè����éï×ÿÿŠ
������^
��*runtime.racefuncenter�����type."".File���¢
��"runtime.newobject���º��*type.io.SectionReader���Ì
��"runtime.newobject���ø
��"runtime.racewrite���º�6runtime.writeBarrierEnabled���ü
��"runtime.racewrite���º
��"runtime.racewrite���ø
��"runtime.racewrite���È��type.[96]uint8���Ú
��"runtime.newobject���˜
��,runtime.racewriterange���ð�������î
��(runtime.racefuncexit���  
�� runtime.raceread���æ 
�� runtime.raceread���ž
��8encoding/binary.LittleEndian���Â

��*runtime.racereadrange���à 
�� runtime.raceread���¦ 
�� runtime.raceread���î 
�� runtime.raceread���¶ 
�� runtime.raceread���¢��type.[4]uint8���´
��"runtime.newobject���ò
��,runtime.racewriterange���Ì�������ê
�� runtime.raceread���°
�� runtime.raceread���ú
�� runtime.raceread���Ä
�� runtime.raceread���Î
��0io.(*SectionReader).Seek���°��Fgo.itab.*io.SectionReader.io.Reader���ä��Btype.encoding/binary.littleEndian���ú��<type.encoding/binary.ByteOrder���’��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���ª��8encoding/binary.LittleEndian���Ð
��runtime.convT2I���ð��&type.*"".FileHeader���®
��(encoding/binary.Read���°
��(runtime.racefuncexit���â
�� runtime.raceread��� 
�� runtime.raceread���à
�� runtime.raceread���œ��Fgo.string."Invalid PE File Format."���ö��.type.errors.errorString���ˆ
��"runtime.newobject���´
��"runtime.racewrite���ø�6runtime.writeBarrierEnabled���º��Bgo.itab.*errors.errorString.error���Ú
��(runtime.racefuncexit���ø��0type.*errors.errorString���Ž��type.error���¦��Bgo.itab.*errors.errorString.error���º
�� runtime.typ2Itab���ä
��.runtime.writebarrierptr���¾ 
�� runtime.raceread���‚!
�� runtime.raceread���®!
�� runtime.raceread���’"
��0io.(*SectionReader).Seek��� "��type.uint32���²"
��"runtime.newobject���Þ"
��"runtime.racewrite���¬#��Fgo.itab.*io.SectionReader.io.Reader���à#��Btype.encoding/binary.littleEndian���ö#��<type.encoding/binary.ByteOrder���Ž$��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���¦$��8encoding/binary.LittleEndian���Ì$
��runtime.convT2I���ì%��type.*uint32���ª&
��(encoding/binary.Read���¬'
��(runtime.racefuncexit���Þ'
�� runtime.raceread���€(
�� runtime.raceread���ž(��type.[]uint8���Ì(
��"runtime.makeslice���Æ)
�� runtime.raceread���ò)
�� runtime.raceread���¨+�������¦,
��(runtime.racefuncexit���â,
�� runtime.raceread���¶-
��0io.(*SectionReader).Seek���þ-
�� runtime.raceread���¾.��$type."".COFFSymbol���Ð.
��"runtime.newobject���¨/��Fgo.itab.*io.SectionReader.io.Reader���Ü/��Btype.encoding/binary.littleEndian���ò/��<type.encoding/binary.ByteOrder���Š0��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���¢0��8encoding/binary.LittleEndian���È0
��runtime.convT2I���è1��&type.*"".COFFSymbol���¦2
��(encoding/binary.Read���²3
��(runtime.racefuncexit���Ê4
�� runtime.raceread���5
�� runtime.raceread���Ú5
�� runtime.raceread���¤6
�� runtime.raceread���Ü6��8encoding/binary.LittleEndian���€7
��*runtime.racereadrange���ž8
�� runtime.raceread���ä8
�� runtime.raceread���¬9
�� runtime.raceread���ô9
�� runtime.raceread���®<
��"".getString���Ž=
�� runtime.raceread���¾=��type."".Symbol���Ð=
��"runtime.newobject���ü=
��"runtime.racewrite���À>�6runtime.writeBarrierEnabled���€?
��"runtime.racewrite���¬?
�� runtime.raceread���Š@
��"runtime.racewrite���¶@
�� runtime.raceread���˜A
��"runtime.racewrite���ÄA
�� runtime.raceread���¦B
��"runtime.racewrite���ÒB
�� runtime.raceread���ÔC
�� runtime.raceread���¶D��"type.[]*"".Symbol���¬E
��"runtime.growslice���ÂF
��"runtime.racewrite���†G�6runtime.writeBarrierEnabled���¾G
��"runtime.racewrite���šH�6runtime.writeBarrierEnabled���ÖH
��.runtime.writebarrierptr���üH
��.runtime.writebarrierptr���ŠI
��$runtime.panicslice���ðI
��.runtime.writebarrierptr���„J
��$runtime.panicindex���’J
��$runtime.panicindex��� J
��$runtime.panicindex���®J
��$runtime.panicindex���¼J
��$runtime.panicindex���ÊJ
��$runtime.panicindex���ØJ
��$runtime.panicindex���æJ
��$runtime.panicindex���øK
��"".cstring���ÌL��,type.*io.SectionReader���âL��type.io.Reader���úL��Fgo.itab.*io.SectionReader.io.Reader���ŽM
�� runtime.typ2Itab���€N
��0io.(*SectionReader).Seek���âN��Fgo.itab.*io.SectionReader.io.Reader���–O��Btype.encoding/binary.littleEndian���¬O��<type.encoding/binary.ByteOrder���ÄO��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���ÜO��8encoding/binary.LittleEndian���‚P
��runtime.convT2I���¢Q��&type.*"".FileHeader���àQ
��(encoding/binary.Read���âR
��(runtime.racefuncexit���€S��0type."".OptionalHeader32���’S
��"runtime.newobject���ÐS
��,runtime.racewriterange���ÞS��0type."".OptionalHeader64���ðS
��"runtime.newobject���®T
��,runtime.racewriterange���ÚT
�� runtime.raceread���ŒU��2"".sizeofOptionalHeader32���žU
�� runtime.raceread���ºU��2"".sizeofOptionalHeader32���šV��Fgo.itab.*io.SectionReader.io.Reader���ÎV��Btype.encoding/binary.littleEndian���äV��<type.encoding/binary.ByteOrder���üV��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���”W��8encoding/binary.LittleEndian���ºW
��runtime.convT2I���ÚX��2type.*"".OptionalHeader32���˜Y
��(encoding/binary.Read���šZ
��(runtime.racefuncexit���ÌZ
�� runtime.raceread���\��type.uint16���¾\
��runtime.convT2E���”]
��"runtime.racewrite���Ö]�6runtime.writeBarrierEnabled���ú]��zgo.string."pe32 optional header has unexpected Magic of 0x%x"���ì^
��fmt.Errorf���â_
��(runtime.racefuncexit���–`
��.runtime.writebarrierptr���ê`
��"runtime.racewrite���ˆa��2type.*"".OptionalHeader32���æa�6runtime.writeBarrierEnabled���¨b
�� runtime.raceread���Ôb
�� runtime.raceread���òb��$type.[]*"".Section���¬c
��"runtime.makeslice���¦d
��"runtime.racewrite���‚e�6runtime.writeBarrierEnabled���Öe
�� runtime.raceread���šf��.type."".SectionHeader32���¬f
��"runtime.newobject���„g��Fgo.itab.*io.SectionReader.io.Reader���¸g��Btype.encoding/binary.littleEndian���Îg��<type.encoding/binary.ByteOrder���æg��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���þg��8encoding/binary.LittleEndian���¤h
��runtime.convT2I���Äi��0type.*"".SectionHeader32���‚j
��(encoding/binary.Read���„k
��(runtime.racefuncexit���Úk
�� runtime.raceread���€m
��"".cstring���Ðm
��strconv.Atoi���ºn
��"".getString���ün��type."".Section���Žo
��"runtime.newobject���¶o��""".statictmp_0130���Ðo
Ø� runtime.duffcopy���¼p
�� runtime.raceread���üp
�� runtime.raceread���¼q
�� runtime.raceread���üq
�� runtime.raceread���¼r
�� runtime.raceread���ür
�� runtime.raceread���¼s
�� runtime.raceread���‚t
�� runtime.raceread���Èt
�� runtime.raceread��� u
��,runtime.racewriterange���öu��*type."".SectionHeader���ˆv
��(runtime.typedmemmove���´v
�� runtime.raceread���öv
�� runtime.raceread���þw��*type.io.SectionReader���x
��"runtime.newobject���¼x
��"runtime.racewrite���þx�6runtime.writeBarrierEnabled���Ày
��"runtime.racewrite���þy
��"runtime.racewrite���¼z
��"runtime.racewrite���ª{
��"runtime.racewrite���ê{�6runtime.writeBarrierEnabled���Ž|��Jgo.itab.*io.SectionReader.io.ReaderAt���à|
��"runtime.racewrite���Œ}
�� runtime.raceread���è}�6runtime.writeBarrierEnabled���ª~
�� runtime.raceread���¸
��"runtime.racewrite���Ԁ�6runtime.writeBarrierEnabled��� 
��.runtime.writebarrierptr���®
��$runtime.panicindex���ā
��$runtime.panicindex���ì
��.runtime.writebarrierptr���„‚��,type.*io.SectionReader���š‚�� type.io.ReaderAt���²‚��Jgo.itab.*io.SectionReader.io.ReaderAt���Ƃ
�� runtime.typ2Itab���Žƒ
��.runtime.writebarrierptr���ʃ
��.runtime.writebarrierptr���ք
��"".cstring���¢…��,type.*io.SectionReader���¸…��type.io.Reader���Ѕ��Fgo.itab.*io.SectionReader.io.Reader���ä…
�� runtime.typ2Itab���Ɔ
��(runtime.racefuncexit���ú†
��.runtime.writebarrierptr���¨‡
��.runtime.writebarrierptr���·��,type.*io.SectionReader���ä‡��type.io.Reader���ü‡��Fgo.itab.*io.SectionReader.io.Reader���ˆ
�� runtime.typ2Itab���ˆ��2"".sizeofOptionalHeader64���Ԉ
�� runtime.raceread���ðˆ��2"".sizeofOptionalHeader64���Љ��Fgo.itab.*io.SectionReader.io.Reader���„Š��Btype.encoding/binary.littleEndian���šŠ��<type.encoding/binary.ByteOrder���²Š��|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder���ʊ��8encoding/binary.LittleEndian���ðŠ
��runtime.convT2I���Œ��2type.*"".OptionalHeader64���Ό
��(encoding/binary.Read���Ѝ
��(runtime.racefuncexit���‚Ž
�� runtime.raceread���Ə��type.uint16���ô
��runtime.convT2E���ʐ
��"runtime.racewrite���Œ‘�6runtime.writeBarrierEnabled���°‘��|go.string."pe32+ optional header has unexpected Magic of 0x%x"���¢’
��fmt.Errorf���˜“
��(runtime.racefuncexit���̓
��.runtime.writebarrierptr��� ”
��"runtime.racewrite���¾”��2type.*"".OptionalHeader64���”•�6runtime.writeBarrierEnabled���Е
��.runtime.writebarrierptr���ð•��,type.*io.SectionReader���†–��type.io.Reader���ž–��Fgo.itab.*io.SectionReader.io.Reader���²–
�� runtime.typ2Itab���ä–��,type.*io.SectionReader���ú–��type.io.Reader���’—��Fgo.itab.*io.SectionReader.io.Reader���¦—
�� runtime.typ2Itab���æ—��,type.*io.SectionReader���ü—��type.io.Reader���”˜��Fgo.itab.*io.SectionReader.io.Reader���¨˜
�� runtime.typ2Itab���ژ��,type.*io.SectionReader���ð˜��type.io.Reader���ˆ™��Fgo.itab.*io.SectionReader.io.Reader���œ™
�� runtime.typ2Itab���ܙ��Fgo.string."Invalid PE File Format."���¶š��.type.errors.errorString���Ț
��"runtime.newobject���ôš
��"runtime.racewrite���¸›�6runtime.writeBarrierEnabled���ú›��Bgo.itab.*errors.errorString.error���š
��(runtime.racefuncexit���¸��0type.*errors.errorString���Ν��type.error���æ��Bgo.itab.*errors.errorString.error���ú
�� runtime.typ2Itab���¤ž
��.runtime.writebarrierptr���ƞ
��$runtime.panicindex���Ԟ
��$runtime.panicindex���âž
��$runtime.panicindex���ðž
��$runtime.panicindex���þž
��$runtime.panicindex���ŒŸ
��$runtime.panicindex���šŸ
��$runtime.panicindex���¨Ÿ
��$runtime.panicindex���üŸ
��.runtime.writebarrierptr��� 
��0runtime.morestack_noctxt���P ��ø"".autotmp_0135��type.*uint8�"".autotmp_0134��,type.*io.SectionReader�"".autotmp_0133��,type.*io.SectionReader�"".autotmp_0131� type.int64�"".autotmp_0129��type.*uint8�"".autotmp_0128��"type.interface {}�"".autotmp_0127��(type.[1]interface {}�"".autotmp_0125��*type.*[1]interface {}�"".autotmp_0124��&type.[]interface {}�"".autotmp_0123��type.*uint8�"".autotmp_0122��"type.interface {}�"".autotmp_0121�(type.[1]interface {}�"".autotmp_0118�Ÿ&type.[]interface {}�"".autotmp_0117��type.*uint8�"".autotmp_0116�“ type.uint16�"".autotmp_0115��type.*uint8�"".autotmp_0114��type.int�"".autotmp_0113�ï"type.[]*"".Symbol�"".autotmp_0112�ÿ
type.*"".Symbol�"".autotmp_0111��type.uint32�"".autotmp_0110��type.*uint8�"".autotmp_0109��type.*uint8�"".autotmp_0108��type.*uint8�"".autotmp_0107��type.error�"".autotmp_0106��0type.*errors.errorString�"".autotmp_0105��type.*uint8�"".autotmp_0104�ï
type.*uint8�"".autotmp_0103��type.error�"".autotmp_0102�ß
0type.*errors.errorString�"".autotmp_0100�Ï
,type.*io.SectionReader�"".autotmp_0099��,type.*io.SectionReader�"".autotmp_0098��type.int�"".autotmp_0097�_*type."".SectionHeader�"".autotmp_0095��type.string�"".autotmp_0094��type.[]uint8�"".autotmp_0093��type.string�"".autotmp_0092��type.int�"".autotmp_0091��type.string�"".autotmp_0090��type.[]uint8�"".autotmp_0089��type.error�"".autotmp_0088��0type.*"".SectionHeader32�"".autotmp_0087��,type.*io.SectionReader�"".autotmp_0086�¿
0type.*"".SectionHeader32�"".autotmp_0085�¿$type.[]*"".Section�"".autotmp_0084��2type.*"".OptionalHeader64�"".autotmp_0083��type.error�"".autotmp_0082��type.error�"".autotmp_0081�¯
2type.*"".OptionalHeader64�"".autotmp_0080��,type.*io.SectionReader�"".autotmp_0079��2type.*"".OptionalHeader32�"".autotmp_0078��type.error�"".autotmp_0077��type.error�"".autotmp_0076�Ÿ
2type.*"".OptionalHeader32�"".autotmp_0075��,type.*io.SectionReader�"".autotmp_0074��type.error�"".autotmp_0073��&type.*"".FileHeader�"".autotmp_0072��,type.*io.SectionReader�"".autotmp_0071�ÿ type.int�"".autotmp_0070��type.string�"".autotmp_0069��type.[]uint8�"".autotmp_0068�ïtype.string�"".autotmp_0067��type.[]uint8�"".autotmp_0065��type.error�"".autotmp_0064��&type.*"".COFFSymbol�"".autotmp_0063��,type.*io.SectionReader�"".autotmp_0062�
&type.*"".COFFSymbol�"".autotmp_0061��type.error�"".autotmp_0060��type.[]uint8�"".autotmp_0059��type.error�"".autotmp_0058�ÿ type.*uint32�"".autotmp_0057��,type.*io.SectionReader�"".autotmp_0056��0type.*errors.errorString�"".autotmp_0055��type.error�"".autotmp_0054�ï &type.*"".FileHeader�"".autotmp_0053��,type.*io.SectionReader�"".autotmp_0052��0type.*errors.errorString�"".autotmp_0051��type.[]uint8�"".autotmp_0050��type.[]uint8�"".autotmp_0049�Ïtype.error�"".autotmp_0048�type.[]uint8�"".&oh64�Ï 2type.*"".OptionalHeader64�"".&oh32�¿ 2type.*"".OptionalHeader32�
"".&l�¯ type.*uint32�"".&sign�ß type.*[4]uint8�"".&dosheader�Ÿ type.*[96]uint8� "".~r0�ï ,type.*io.SectionReader�io.n·4�Ï type.int64�io.off·3�ï type.int64�io.r·2�ï type.io.ReaderAt�(encoding/binary.b·2�Ïtype.[]uint8� "".~r0�ïtype.error�errors.text·2�¯type.string� "".~r0� type.error�errors.text·2�Ïtype.string�(encoding/binary.b·2�ÿtype.[]uint8�io.n·4�ß type.int64�io.off·3�ÿ type.int64�io.r·2� type.io.ReaderAt�"".s�¯  type.*"".Section�"".name�¯type.string� "".err�type.error�
"".sh�Ï 0type.*"".SectionHeader32�"".i�¯ type.int� "".err�Ïtype.error� "".err�Ïtype.error� "".err�type.error�"".s�¿ type.*"".Symbol�"".name�Ïtype.string� "".err�ïtype.error�
"".cs� &type.*"".COFFSymbol�"".i�¿ type.int� "".aux�• type.uint8� "".err�ïtype.error� "".err�type.error�
"".ss�¯type.[]uint8� "".err�¯type.error�"".signoff� type.int64�"".base�Ÿ type.int64� "".err�¯type.error�
"".sr�ß ,type.*io.SectionReader�"".f�Ÿ type.*"".File� "".~r2�0type.error� "".~r1� type.*"".File�"".r�� type.io.ReaderAt�Ò"  Ÿ  Ÿ ÔŸ ¨Ÿ ¼Ÿ ÅŸ ×Ÿ ÛŸ ãŸ ÐŸ à Ÿ ÄŸ ãŸ €Ÿ Ç� P�¬Œ"‚ÿ/ŠöõIEÈžÇ_/k“ 'ÖÕgáÐÏJ"V&†¾½o¥¶µ@8‹¤£
“Eîží]J' h799G À/0/0îíY:6'lk//('†^](¯XW&gÎ:†43%lJ4(     ## 4ü±5656:S:6'; :'†NM(¯HG&_ :AQ:A áæåJÈÇ�þ�.wBo« ê®oA““0
B
"nwoA7=°ó
oFL êˆ07Bª·>L934
3z,K9oA /ÆoA34y+l;*_/:X9§>oAS+TÚW²4„Bu[e »GhoF G1OK$"ŽoAEFy +l;*X714:A: V“0
&[#�Tgclocals·ef7c4dc6dd1388370f1798e3ff8d023e�Tgclocals·dac0cfff4cd0862b1bab38b9b68a2c9c���8/tmp/go/src/debug/pe/file.goþ"".cstring��€��îdH‹ %����H;a†Ú���HƒìPH‹\$PH‰$è����H‹t$XH‹T$`1ÛH‰\$pH‰\$x1ÀH9Ð}CH‰D$0H9Ѓ–���HH‰$è����H‹t$XH‹T$`H‹D$0H9ÐsnH¶€û�tHÿÀH9Ð|½H‹l$hH9èwIHÇ$����H‰t$8H‰t$H‰D$@H‰D$H‰l$HH‰l$è����H‹\$ H‰\$pH‹\$(H‰\$xè����HƒÄPÃè���� è���� è���� è����é ÿÿÿ
������B
��*runtime.racefuncenter���²
�� runtime.raceread���ì
��2runtime.slicebytetostring���ž
��(runtime.racefuncexit���²
��$runtime.panicslice�����$runtime.panicindex���Î
��$runtime.panicindex���Ü
��0runtime.morestack_noctxt���P ��
"".autotmp_0176�/type.[]uint8�"".autotmp_0174��type.int�"".i�?type.int� "".~r1�0type.string�"".b��type.[]uint8� ÀŸ (�€� ”;JI �� ®
(�Tgclocals·cfd97ba95bb5326c9855399a9aeae1e4�Tgclocals·f56b2291fa344104975cb6587be42b9b���8/tmp/go/src/debug/pe/file.goþ"".getString�� �� dH‹ %����H;a†s��HƒìPH‹\$PH‰$è����H‹L$pH‹t$XH‹T$`1ÛH‰\$xH‰œ$€���Hƒù�Œ��H9э��H‰ÈH9ЍÔ���H‰D$0H9Ѓî���HH‰$è����H‹t$XH‹D$0H‹T$`H9ЃÂ���H¶€û�……���H‹\$pL‹D$hH‰ÅL9ÀwlH9ÃwgH)ÝI)ØI‰ñIƒø�tM HÇ$����L‰L$8L‰L$H‰l$@H‰l$L‰D$HL‰D$è����H‹\$ H‰\$xH‹\$(H‰œ$€���Ƅ$ˆ���è����HƒÄPÃè���� HÿÀH9ÐŒ,ÿÿÿ1ÛH‰\$xH‰œ$€���Ƅ$ˆ����è����HƒÄPÃè���� è���� 1ÛH‰\$xH‰œ$€���Ƅ$ˆ����è����HƒÄPÃè����épþÿÿ
������B
��*runtime.racefuncenter���ò
�� runtime.raceread���ì
��2runtime.slicebytetostring���´
��(runtime.racefuncexit���È
��$runtime.panicslice���œ
��(runtime.racefuncexit���°
��$runtime.panicindex���¾
��$runtime.panicindex���ú
��(runtime.racefuncexit���Ž
��0runtime.morestack_noctxt���p ��"".autotmp_0180��type.int�"".autotmp_0179�/type.[]uint8�"".autotmp_0178��type.int� "".end�?type.int� "".~r3�`type.bool� "".~r2�@type.string�"".start�0type.int�"".section��type.[]uint8�2 ‹Ÿ 3Ÿ .Ÿ 
��D¤ Ct 
!
� � ù
*
%�Tgclocals·e164b25facb10da87beb89b155f2475e�Tgclocals·f56b2291fa344104975cb6587be42b9b���8/tmp/go/src/debug/pe/file.goþ$"".(*File).Section��à��ÆdH‹ %����H;a†F��HƒìpH‹\$pH‰$è����H‹\$xH‰$Hƒ$(è����H‹\$xHƒû�„ ��H‹S(H‹C0H‹k8H‰l$h1ÉH‰D$`H‰D$(H‰T$XH‰ÐH‰L$0H‹l$(H9鍶���H‰D$@H‰$è����H‹\$@H‹+H‰l$8H‰,$è����H‹Œ$ˆ���H‹\$8Hƒû�„‘���H‹H‰T$HH‹CH‰D$PH9ÈuAH‰$H‰D$H‹¬$€���H‰l$H‰L$è����¶\$ €û�tH‹\$8H‰œ$���è����HƒÄpÃH‹D$@H‹L$0HƒÀHÿÁH‰L$0H‹l$(H9éŒJÿÿÿHDŽ$�������è����HƒÄpÉéhÿÿÿ‰éîþÿÿè����éþÿÿ
������B
��*runtime.racefuncenter���h
�� runtime.raceread���’
�� runtime.raceread���¾
�� runtime.raceread���Ø
�� runtime.eqstring���
��(runtime.racefuncexit���„
��(runtime.racefuncexit���´
��0runtime.morestack_noctxt���@à��"".autotmp_0186�Otype.string�"".autotmp_0184�_"type.**"".Section�"".autotmp_0183�type.int�"".autotmp_0182�type.int�"".autotmp_0181�/$type.[]*"".Section�"".s�o type.*"".Section� "".~r1�0 type.*"".Section�"".name�type.string�"".f��type.*"".File�&àùßà9ßà%�ð�4  pe $
�� hii�Tgclocals·6c663c8c96689a2fcfc7e468bda6a1bb�Tgclocals·41aa2c1041551573da6b5bc2bc8eb895���8/tmp/go/src/debug/pe/file.goþ "".(*File).DWARF��À��¸dH‹ %����H„$˜ýÿÿH;A†·��Hìè��H‹œ$è��H‰$è����1ÛH‰œ$���H‰œ$��1ÛL����IÇÂ���L ����IÇÀ���H5����HÇÅ���H����HÇÁ���H¼$ˆ��1Àè����L‰œ$��L‰œ$H��L‰”$��L‰”$P��L‰Œ$��L‰Œ$X��L‰„$ ��L‰„$`��H‰´$(��H‰´$h��H‰¬$0��H‰¬$p��H‰”$8��H‰”$x��H‰Œ$@��H‰Œ$€��1ÉHDŽ$à������Hœ$H��H‰ØH‰Œ$è���H‹¬$à���H9éû���H‰„$���H‰$è����H‹œ$���Hƒû�„h��H‹ H‹kH‹œ$è���H‰œ$Ø���H‰Œ$(��H‰¬$0��HÇ$����H����H‰\$HÇD$���H‰Œ$��H‰L$H‰¬$��H‰l$ è����H‹L$(H‹D$0H‹œ$ð��H‰$H‰Œ$��H‰L$H‰„$��H‰D$è����H‹D$1íH9è…!��H‹„$���H‹Œ$è���HƒÀHÿÁH‰Œ$è���H‹¬$à���H9éŒÿÿÿL‹”$ ��L‹Œ$¨��L‹„$°��H‹¼$¸��H‹´$À��H‹¬$È��H‹”$Ð��H‹Œ$Ø��H‹„$à��L‹¬$ˆ��L‹¤$��L‹œ$˜��L‰”$Ø��L‰Œ$à��L‰„$è��H‰¼$À��H‰´$È��H‰¬$Ð��H‰”$¨��H‰Œ$°��H‰„$¸��L‰¬$ð��L‰,$L‰¤$ø��L‰d$L‰œ$���L‰\$1ÛH‰\$H‰\$ H‰\$(1ÛH‰\$0H‰\$8H‰\$@L‰”$x��L‰T$HL‰Œ$€��L‰L$PL‰„$ˆ��L‰D$XH‰¼$`��H‰|$`H‰´$h��H‰t$hH‰¬$p��H‰l$p1ÛH‰\$xH‰œ$€���H‰œ$ˆ���1ÛH‰œ$���H‰œ$˜���H‰œ$ ���H‰”$H��H‰”$¨���H‰Œ$P��H‰Œ$°���H‰„$X��H‰„$¸���è����H‹„$À���H‹”$È���H‹Œ$Ð���H‰„$ø��H‰”$8��H‰”$���H‰Œ$@��H‰Œ$��è����HÄè��ÃH‰„$ø���H‰$è����H‹¼$ø���H‹t$H‹l$H‹T$H‹L$ H‹D$(H‰´$��H‰¬$˜��H‰”$ ��H‰„$ ��H‰Œ$��Hƒù�thH‰¬$ð���H‰<$Hƒ$è����H‹¼$ø���H‹œ$ð���‰Û‹o9ës9HDŽ$ø������H‹œ$��H‰œ$���H‹œ$ ��H‰œ$��è����HÄè��ÃH‰<$Hƒ$è����H‹„$ø���‹Xƒû�vfH‰$Hƒ$è����H‹œ$ø���H‰$Hƒ$è����H‹„$ø���‹X‹h9ës0H‰$Hƒ$è����H‹œ$ø���‹k‹ÝH‹¬$ ��H9ëwTH‰œ$˜��Hœ$ˆ��H‹¬$Ø���Hƒýs/HkíHëH‹¬$��H‰+H‹¬$˜��H‰kH‹¬$ ��H‰kéNüÿÿè���� è���� ‰é‘ûÿÿè����é$úÿÿ.
������^
��*runtime.racefuncenter���”��$go.string."abbrev"���°�� go.string."info"���Ì�� go.string."line"���è��go.string."str"���”
Î� runtime.duffzero���š
�� runtime.raceread���ª��&go.string.".debug_"���„
��*runtime.concatstring2���î
��$"".(*File).Section���¶
��debug/dwarf.New�����(runtime.racefuncexit���ò
��$"".(*Section).Data���¼
�� runtime.raceread���Ð
��(runtime.racefuncexit���ü
�� runtime.raceread���¸
�� runtime.raceread���ä
�� runtime.raceread���¤
�� runtime.raceread���ü
��$runtime.panicindex���Š
��$runtime.panicslice���¦
��0runtime.morestack_noctxt���@Ð ��4"".autotmp_0203�ÿtype.[]uint8�"".autotmp_0202�Ïtype.[]uint8�"".autotmp_0201��type.[]uint8�"".autotmp_0200�ÿtype.string�"".autotmp_0199�Ïtype.*string�"".autotmp_0198�type.int�"".autotmp_0197�ÿtype.int�"".autotmp_0196��type.error�"".autotmp_0194�ßtype.error�"".autotmp_0191�ïtype.int�"".autotmp_0189�Ÿtype.[]uint8�"".autotmp_0187�¿type.[4]string� "".str�¿type.[]uint8�"".line�type.[]uint8�"".info�ßtype.[]uint8�"".abbrev�ïtype.[]uint8� "".err�Ÿtype.error�"".b�¯type.[]uint8�"".s�ß type.*"".Section�"".name�¿type.string�"".i�Ÿtype.int� "".dat�¿type.[4][]uint8�"".names�¿type.[4]string� "".~r1� type.error� "".~r0�,type.*debug/dwarf.Data�"".f��type.*"".File�*"Ð ‰Ï Ð ÇÏ Ð ì�à �nÔ".-:üF0 0 ¨ÉR=,T0@ �0�.žŽE eJÀ#�Tgclocals·d360b7e350619ca924b7530d280a9798�Tgclocals·0e3994209607ed7a7ae400007ece91ad���8/tmp/go/src/debug/pe/file.goþ4"".(*File).ImportedSymbols��€R��ìQdH‹ %����H„$@þÿÿH;A†Q��Hì@��H‹œ$@��H‰$è����1ÛH‰œ$P��H‰œ$X��H‰œ$`��1ÛH‰œ$h��H‰œ$p��H‹œ$H��H‰$è����H‹„$H��H·fûd†”D$KH‰$H����H‰\$HÇD$���è����H‹D$1íH9èu91ÛH‰œ$P��H‰œ$X��H‰œ$`��1ÛH‰œ$h��H‰œ$p��è����HÄ@��ÃH‰D$pH‰$è����H‹t$H‹l$H‹T$H‹D$ H‹L$(H‰´$ð���H‰¬$ø���H‰”$���H‰Œ$¨���H‰„$ ���Hƒø�t71ÛH‰œ$P��H‰œ$X��H‰œ$`��H‰„$h��H‰Œ$p��è����HÄ@��Ã1ÛH‰œ$Ø���H‰œ$à���H‰œ$è���H‹œ$ø���Hƒû�Žp��1ۉœ$È��‰œ$Ì��‰œ$Ð��‰œ$Ô��‰œ$Ø��H‰œ$à��H‰œ$è��H����H‰$HÇD$����è����H‹œ$���Hƒû‚d��H‹¬$ð���HÇÁ���H‰œ$H��H‰¬$8��Hƒù�H‰Œ$@��†,��H‰,$è����H‹œ$8��Hƒ¼$@��†��HÿÃH‰$è����H‹œ$8��Hƒ¼$@��†Û��HƒÃH‰$è����H‹œ$8��Hƒ¼$@��†°��HƒÃH‰$è����H‹Œ$8��H‹„$@��Hƒø�†‚��¶H‰ÍHƒø†k��HÿŶm�Áå ëH‰ÍHƒø†K��HƒÅ¶m�Áå ëH‰ÍHƒø†*��HƒÅ¶m�Áå 뉜$È��H����H‰$HÇD$����è����H‹œ$���Hƒû‚ä��H‹¬$ð���Hƒë Hƒû�tHƒÅ HÇÁ���H‰œ$x��H‰¬$h��Hƒù�H‰Œ$p��†ž��H‰,$è����H‹œ$h��Hƒ¼$p��†w��HÿÃH‰$è����H‹œ$h��Hƒ¼$p��†M��HƒÃH‰$è����H‹œ$h��Hƒ¼$p��†"��HƒÃH‰$è����H‹Œ$h��H‹„$p��Hƒø�†ô��¶H‰ÍHƒø†Ý��HÿŶm�Áå ëH‰ÍHƒø†½��HƒÅ¶m�Áå ëH‰ÍHƒø†œ��HƒÅ¶m�Áå 뉜$Ô��H����H‰$HÇD$����è����H‹œ$���Hƒû‚V��H‹¬$ð���HƒëHƒû�tHƒÅHÇÁ���H‰œ$��H‰¬$��Hƒù�H‰Œ$��†��H‰,$è����H‹œ$��Hƒ¼$��†é��HÿÃH‰$è����H‹œ$��Hƒ¼$��†¿��HƒÃH‰$è����H‹œ$��Hƒ¼$��†”��HƒÃH‰$è����H‹Œ$��H‹„$��Hƒø�†f��¶H‰ÍHƒø†O��HÿŶm�Áå ëH‰ÍHƒø†/��HƒÅ¶m�Áå ëH‰ÍHƒø†��HƒÅ¶m�Áå 뉜$Ø��H‹œ$ø���H‹¬$���Hƒû‚Ù ��L‹„$ð���HƒëHƒíHƒý�tIƒÀH‰œ$ø���H‰¬$���L‰„$ð���‹œ$È��ƒû�…! ��H‹\$pH‰$è����H‹T$H‹L$H‹D$H‰”$À���H‰Œ$È���H‰„$Ð���1ÛH‰œ$°��H‰œ$¸��H‰œ$À��H‹”$Ø���H‹„$à���H‹œ$è���H‰œ$¨��1ÉH‰„$ ��H‰D$hH‰”$˜��H‰ÐH‰L$`H‹l$hH9鍐��H‰D$xH‰$HÇD$(���è����H‹\$xHƒû�„X ��D‹ D‹C‹{‹s ‹SH‹KH‹k D‰Œ$��D‰Œ$ð��D‰„$��D‰„$ô��‰¼$ ��‰¼$ø��‰´$$��‰´$ü��‰”$(��‰”$���H‰Œ$0��H‰Œ$��H‰¬$8��H‰¬$��H‹\$pH‰$Hƒ$è����H‹œ$À���H‰$H‹œ$È���H‰\$H‹œ$Ð���H‰\$‹œ$ü��L‹D$pA‹h)ëH‰\$è����H‹L$ H‹D$(H‰Œ$��H‰„$��H‹\$pH‰$è����H‹T$H‹L$H‹D$H‰”$ð���H‰Œ$ø���H‰„$���H‹\$pH‰$Hƒ$è����‹œ$ð��L‹D$pA‹h)ëH‹¬$ø���L‹„$���H9ë‡í ��L‹Œ$ð���H)ÝI)ØIƒø�tM H‰¬$ø���L‰„$���L‰Œ$ð���H‹œ$ø���Hƒû�Ž ��€|$K�„¬��H����H‰$HÇD$����è����H‹œ$���Hƒû‚z��H‹¬$ð���HÇÁ���H‰œ$`��H‰¬$P��Hƒù�H‰Œ$X��†B��H‰,$è����H‹œ$P��Hƒ¼$X��†��HÿÃH‰$è����H‹œ$P��Hƒ¼$X��†ñ��HƒÃH‰$è����H‹œ$P��Hƒ¼$X��†Æ��HƒÃH‰$è����H‹œ$P��Hƒ¼$X��†›��HƒÃH‰$è����H‹œ$P��Hƒ¼$X��†p��HƒÃH‰$è����H‹œ$P��Hƒ¼$X��†E��HƒÃH‰$è����H‹œ$P��Hƒ¼$X��†��HƒÃH‰$è����H‹Œ$P��H‹„$X��Hƒø�†ì��¶H‰ÍHƒø†Õ��HÿŶm�HÁåH ëH‰ÍHƒø†³��HƒÅ¶m�HÁåH ëH‰ÍHƒø†��HƒÅ¶m�HÁåH ëH‰ÍHƒø†m��HƒÅ¶m�HÁå H ëH‰ÍHƒø†J��HƒÅ¶m�HÁå(H ëH‰ÍHƒø†'��HƒÅ¶m�HÁå0H ëH‰ÍHƒø†��HƒÅ¶m�HÁå8H ëH‰ØH‹œ$ø���H‹¬$���Hƒû‚Ñ��L‹„$ð���HƒëHƒíHƒý�tIƒÀH‰œ$ø���H‰¬$���L‰„$ð���Hƒø�usH‹D$xH‹L$`HƒÀ(HÿÁH‰L$`H‹l$hH9éŒpûÿÿH‹œ$°��H‰œ$P��H‹œ$¸��H‰œ$X��H‹œ$À��H‰œ$`��1ÛH‰œ$h��H‰œ$p��è����HÄ@��ÃH»�������€H‰D$PH!ÃHƒû�‡¿üÿÿH‹\$pH‰$Hƒ$è����H‹œ$À���H‰$H‹œ$È���H‰\$H‹œ$Ð���H‰\$H‹\$PL‹D$p‰ÛA‹h)ëƒÃH‰\$è����H‹L$ H‹D$(HÇ$����H‰Œ$���H‰L$H‰„$˜���H‰D$H����H‰\$HÇD$ ���Hœ$��H|$(H‹ H‰H‹KH‰Oè����H‹\$8H‰œ$°���H‹\$@H‰œ$¸���H‹”$°��H‹„$¸��H‹œ$À��H‰ÙH)ÃHƒû}QH����H‰$H‰”$€��H‰T$H‰D$H‰Œ$��H‰L$H‰ÃH‰„$ˆ��HÿÃH‰\$ è����H‹T$(H‹D$0H‹L$8H‰ÃHÿÃH‰Œ$��H9ˇ¤���H‰œ$ˆ��H‰ÓH‰”$€��H‰ÅH‰D$XHÁåHëH‰$è����H‹œ$€��H‹l$XHÁåHëH‹¬$¸���H‰kH‹¬$°���€=�����u8H‰+H‹œ$€��H‰œ$°��H‹œ$ˆ��H‰œ$¸��H‹œ$��H‰œ$À��éÌúÿÿH‰$H‰l$è����ë»è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� H����H‰$HÇD$����è����H‹œ$���Hƒû‚Â��H‹¬$ð���HÇÁ���H‰œ$0��H‰¬$ ��Hƒù�H‰Œ$(��†Š��H‰,$è����H‹œ$ ��Hƒ¼$(��†c��HÿÃH‰$è����H‹œ$ ��Hƒ¼$(��†9��HƒÃH‰$è����H‹œ$ ��Hƒ¼$(��†��HƒÃH‰$è����H‹Œ$ ��H‹„$(��Hƒø�†à��¶H‰ÍHƒø†É��HÿŶm�Áå ëH‰ÍHƒø†©��HƒÅ¶m�Áå ëH‰ÍHƒø†ˆ��HƒÅ¶m�Áå ë‰ØH‹œ$ø���H‹¬$���Hƒû‚X��L‹„$ð���HƒëHƒíHƒý�tIƒÀH‰œ$ø���H‰¬$���L‰„$ð���ƒø�„Xûÿÿ‰Ã‰D$Lã���€ƒû�‡‘øÿÿH‹\$pH‰$Hƒ$è����H‹œ$À���H‰$H‹œ$È���H‰\$H‹œ$Ð���H‰\$H‹l$p‹]‹l$L)݉ëƒÃH‰\$è����H‹L$ H‹D$(HÇ$����H‰Œ$€���H‰L$H‰„$ˆ���H‰D$H����H‰\$HÇD$ ���Hœ$��H|$(H‹ H‰H‹KH‰Oè����H‹\$8H‰œ$°���H‹\$@H‰œ$¸���H‹”$°��H‹„$¸��H‹œ$À��H‰ÙH)ÃHƒû}QH����H‰$H‰”$€��H‰T$H‰D$H‰Œ$��H‰L$H‰ÃH‰„$ˆ��HÿÃH‰\$ è����H‹T$(H‹D$0H‹L$8H‰ÃHÿÃH‰Œ$��H9ˇ¤���H‰œ$ˆ��H‰ÓH‰”$€��H‰ÅH‰D$XHÁåHëH‰$è����H‹œ$€��H‹l$XHÁåHëH‹¬$¸���H‰kH‹¬$°���€=�����u8H‰+H‹œ$€��H‰œ$°��H‹œ$ˆ��H‰œ$¸��H‹œ$��H‰œ$À��é öÿÿH‰$H‰l$è����ë»è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� ‰é¡ôÿÿH‹”$Ø���H‹„$à���H‹œ$è���H‰ÙH)ÃHƒû}QH����H‰$H‰”$˜��H‰T$H‰D$H‰Œ$¨��H‰L$H‰ÃH‰„$ ��HÿÃH‰\$ è����H‹T$(H‹D$0H‹L$8H‰ÃHÿÃH‰Œ$¨��H9ˇã���H‰œ$ ��H‰ÓH‰”$˜��H‰ÅH‰D$`Hkí(HëH‰$HÇD$(���è����H‹œ$˜��H‹l$`Hkí(H달$È��‰+‹¬$Ì��‰k‹¬$Ð��‰k‹¬$Ô��‰k ‹¬$Ø��‰kH‹¬$è��H‰k H‹¬$à��€=�����u9H‰kH‹œ$˜��H‰œ$Ø���H‹œ$ ��H‰œ$à���H‹œ$¨��H‰œ$è���éîÿÿLCL‰$H‰l$è����ë·è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è���� è����éŠëÿÿŠ
������^
��*runtime.racefuncenter���Ø
�� runtime.raceread���š��$go.string.".idata"���À
��$"".(*File).Section���º
��(runtime.racefuncexit���æ
��$"".(*Section).Data���Ò
��(runtime.racefuncexit���²��8encoding/binary.LittleEndian���Ö
��*runtime.racereadrange���î
�� runtime.raceread���´ 
�� runtime.raceread���ü 
�� runtime.raceread���Ä

�� runtime.raceread���´ ��8encoding/binary.LittleEndian���Ø 
��*runtime.racereadrange���Œ
�� runtime.raceread���Ò
�� runtime.raceread���š
�� runtime.raceread���â
�� runtime.raceread���Ò��8encoding/binary.LittleEndian���ö
��*runtime.racereadrange���ª
�� runtime.raceread���ð
�� runtime.raceread���¸
�� runtime.raceread���€
�� runtime.raceread���¶
��$"".(*Section).Data���€
��*runtime.racereadrange���È
�� runtime.raceread���Ì
��"".getString���œ
��$"".(*Section).Data��� 
�� runtime.raceread���Ž"��8encoding/binary.LittleEndian���²"
��*runtime.racereadrange���Ê#
�� runtime.raceread���$
�� runtime.raceread���Ø$
�� runtime.raceread��� %
�� runtime.raceread���è%
�� runtime.raceread���°&
�� runtime.raceread���ø&
�� runtime.raceread���À'
�� runtime.raceread���€.
��(runtime.racefuncexit���î.
�� runtime.raceread���ø/
��"".getString���Þ0��go.string.":"���º1
��*runtime.concatstring3���Ä2��type.[]string���º3
��"runtime.growslice���Ü4
��"runtime.racewrite���¸5�6runtime.writeBarrierEnabled���Ê6
��.runtime.writebarrierptr���Ø6
��$runtime.panicslice���æ6
��$runtime.panicslice���ô6
��$runtime.panicindex���‚7
��$runtime.panicindex���7
��$runtime.panicindex���ž7
��$runtime.panicindex���¬7
��$runtime.panicindex���º7
��$runtime.panicindex���È7
��$runtime.panicindex���Ö7
��$runtime.panicindex���ä7
��$runtime.panicindex���ò7
��$runtime.panicindex���€8
��$runtime.panicindex���Ž8
��$runtime.panicindex���œ8
��$runtime.panicindex���ª8
��$runtime.panicindex���¸8
��$runtime.panicindex���Æ8
��$runtime.panicindex���Ô8
��$runtime.panicslice���æ8��8encoding/binary.LittleEndian���Š9
��*runtime.racereadrange���¢:
�� runtime.raceread���è:
�� runtime.raceread���°;
�� runtime.raceread���ø;
�� runtime.raceread���Ê?
�� runtime.raceread���Ð@
��"".getString���¶A��go.string.":"���’B
��*runtime.concatstring3���œC��type.[]string���’D
��"runtime.growslice���´E
��"runtime.racewrite���F�6runtime.writeBarrierEnabled���¢G
��.runtime.writebarrierptr���°G
��$runtime.panicslice���¾G
��$runtime.panicslice���ÌG
��$runtime.panicindex���ÚG
��$runtime.panicindex���èG
��$runtime.panicindex���öG
��$runtime.panicindex���„H
��$runtime.panicindex���’H
��$runtime.panicindex��� H
��$runtime.panicindex���®H
��$runtime.panicindex���¼H
��$runtime.panicslice���ÊH
��$runtime.panicslice���²I��2type.[]"".ImportDirectory���¨J
��"runtime.growslice���ÜK
��,runtime.racewriterange���šM�6runtime.writeBarrierEnabled���¶N
��.runtime.writebarrierptr���ÄN
��$runtime.panicslice���ÒN
��$runtime.panicslice���àN
��$runtime.panicindex���îN
��$runtime.panicindex���üN
��$runtime.panicindex���ŠO
��$runtime.panicindex���˜O
��$runtime.panicindex���¦O
��$runtime.panicindex���´O
��$runtime.panicindex���ÂO
��$runtime.panicindex���ÐO
��$runtime.panicslice���ÞO
��$runtime.panicindex���ìO
��$runtime.panicindex���úO
��$runtime.panicindex���ˆP
��$runtime.panicindex���–P
��$runtime.panicindex���¤P
��$runtime.panicindex���²P
��$runtime.panicindex���ÀP
��$runtime.panicindex���ÎP
��$runtime.panicslice���ÜP
��$runtime.panicindex���êP
��$runtime.panicindex���øP
��$runtime.panicindex���†Q
��$runtime.panicindex���”Q
��$runtime.panicindex���¢Q
��$runtime.panicindex���°Q
��$runtime.panicindex���¾Q
��$runtime.panicindex���ÌQ
��$runtime.panicslice���ÚQ
��0runtime.morestack_noctxt���`€ ��b"".autotmp_0237��type.int�"".autotmp_0236��type.[]string�"".autotmp_0235��type.string�"".autotmp_0234��type.uint32�"".autotmp_0233�Ïtype.int�"".autotmp_0232�ÿtype.[]string�"".autotmp_0231��type.string�"".autotmp_0229�O.type."".ImportDirectory�"".autotmp_0228�0type.*"".ImportDirectory�"".autotmp_0227��type.int�"".autotmp_0226��type.int�"".autotmp_0225�¿type.int�"".autotmp_0224�Ï2type.[]"".ImportDirectory�"".autotmp_0223��type.uint32�"".autotmp_0222��type.uint32�"".autotmp_0220��type.string�"".autotmp_0219��type.[]uint8�"".autotmp_0218��type.string�"".autotmp_0217��type.[]uint8�"".autotmp_0215��type.uint32�"".autotmp_0214��type.[]uint8�"".autotmp_0213�Ÿtype.string�"".autotmp_0212��2type.[]"".ImportDirectory�"".autotmp_0211��type.[]uint8�"".autotmp_0210��type.[]uint8�"".autotmp_0209��type.[]uint8�"".autotmp_0208��type.[]uint8�"".autotmp_0207�¯type.int�(encoding/binary.b·2�ßtype.[]uint8�(encoding/binary.b·2�¿type.[]uint8�(encoding/binary.b·2�ïtype.[]uint8�(encoding/binary.b·2�¯type.[]uint8�(encoding/binary.b·2�type.[]uint8�
"".fn�ÿtype.string�
"".va�çtype.uint32�
"".fn�ßtype.string�
"".va�ßtype.uint64�
"".dt�Ÿ.type."".ImportDirectory� "".all�Ÿtype.[]string�"".names�ÿtype.[]uint8�
"".dt�ï.type."".ImportDirectory� "".ida�Ï2type.[]"".ImportDirectory� "".err�¿type.error�"".d�Ÿtype.[]uint8�
"".ds�Ÿ type.*"".Section�"".pe64�étype.bool� "".~r1�@type.error� "".~r0�type.[]string�"".f��type.*"".File�8"€ Æÿ€ ‹ÿ€ –ÿ€ ô�€)�¾"xw,'#,nmG*fe5B<ž;aP:ž9aP8ž7aL
5õo5n ÃL$FO-bŒw¼L `Œ/0?Ö87:9<;�¨�.®v‚LõZõZÆ¥¤¤Ý›7¦Qw!™L
Ô ¤Qw!¼Z­ß�Tgclocals·58880d1014ff7703d0d5c04ae9912065�Tgclocals·9b8e7d05a45b0fb36575ce8967bea642���8/tmp/go/src/debug/pe/file.goþ8"".(*File).ImportedLibraries��À��¦dH‹ %����H;av=HƒìH‹\$H‰$è����1Û1Û1ÛH‰\$H‰\$ H‰\$(1ÛH‰\$0H‰\$8è����HƒÄÃè����ë­
������:
��*runtime.racefuncenter���†
��(runtime.racefuncexit���š
��0runtime.morestack_noctxt���`�� "".~r1�@type.error� "".~r0�type.[]string�"".f��type.*"".File�8�`�”'��&�Tgclocals·18e6f963be655e2098768c933b06e181�Tgclocals·69c1753bd5f81501d95132d08af04464���8/tmp/go/src/debug/pe/file.goþ"".init�� ��”dH‹ %����H„$€þÿÿH;A†¥��Hì���H‹œ$���H‰$è����H����H‰$è����¶����€û�t0H����H‰$è����¶����€ûu è����HÄ���Ãè���� H����H‰$è����Æ����è����è����è����è����è����è����H|$01Àè����H����H‰$H\$0H‰\$HÇD$����è����H\$H‹ H‰ $H‹KH‰L$è����H‹\$H‰\$(H����H‰$è����H‹\$(f‰����H¼$��1ÀHƒÇðè����H����H‰$Hœ$��H‰\$HÇD$����è����H\$H‹ H‰ $H‹KH‰L$è����H‹\$H‰\$(H����H‰$è����H‹\$(f‰����H����H‰$è����Æ����è����HÄ���Ãè����é6þÿÿL
������^
��*runtime.racefuncenter���l��"".initdone·���~
�� runtime.raceread���Œ��"".initdone·���¤��"".initdone·���¶
�� runtime.raceread���Ä��"".initdone·���Ø
��(runtime.racefuncexit���ò
��"runtime.throwinit���„��"".initdone·���–
��"runtime.racewrite���¢�"".initdone·���®
�� debug/dwarf.init���¸
��(encoding/binary.init���Â
��fmt.init���Ì
��io.init���Ö
��os.init���à
��strconv.init���ø
¶� runtime.duffzero���†��0type."".OptionalHeader32���¾
��runtime.convT2E���ò
��(encoding/binary.Size���”��2"".sizeofOptionalHeader32���¦
��"runtime.racewrite���¾��2"".sizeofOptionalHeader32���ä
ž� runtime.duffzero���ò��0type."".OptionalHeader64���°
��runtime.convT2E���ä
��(encoding/binary.Size���†��2"".sizeofOptionalHeader64���˜
��"runtime.racewrite���°��2"".sizeofOptionalHeader64���¾��"".initdone·���Ð
��"runtime.racewrite���Ü�"".initdone·���è
��(runtime.racefuncexit���‚
��0runtime.morestack_noctxt����€��"".autotmp_0241��type.int�"".autotmp_0240�ß0type."".OptionalHeader64�"".autotmp_0239�¯type.int�"".autotmp_0238�Ÿ0type."".OptionalHeader32�&"€Uÿ€Çÿ€�´è4�Ž´ oy
4� �.¢�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���4/tmp/go/src/debug/pe/pe.go8/tmp/go/src/debug/pe/file.goþ6type..hash."".SectionHeader�à��ÖdH‹ %����H;a†Ž���Hƒì H‹\$ H‰$è����H‹\$(H‰$Hƒ<$�tcH‹\$0H‰\$è����H‹D$H‹\$(H‰$Hƒ<$�t6Hƒ$H‰D$0H‰D$HÇD$ ���è����H‹D$H‰D$0H‰D$8è����HƒÄ É%����ëÁ‰%����ë”è����éUÿÿÿ
������B
��*runtime.racefuncenter���€
��runtime.strhash���ä
��runtime.memhash���Œ
��(runtime.racefuncexit���Ä
��0runtime.morestack_noctxt���0@��"".autotmp_0243��type.uintptr� "".~r2� type.uintptr�"".h�type.uintptr�"".p��,type.*"".SectionHeader�@w?@!�°�°� � �Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���8/tmp/go/src/debug/pe/file.goþ2type..eq."".SectionHeader�À��¤dH‹ %����H;a†5��HƒìHH‹\$HH‰$è����H‹\$PH‰$è����H‹\$PHƒû�„ÿ���H‹+H‰l$8H‹kH‰l$@H‹\$XH‰$è����H‹T$@H‹\$XHƒû�„Å���H‹ H‰L$(H‹CH‰D$0H9Â…œ���H‹l$8H‰,$H‰T$H‰L$H‰D$è����¶\$ €û�tuH‹\$PH‰$Hƒ<$�t\Hƒ$H‹\$XH‰\$Hƒ|$�t<HƒD$HÇD$ ���è����¶\$€û�uÆD$`�è����HƒÄHÃÆD$`è����HƒÄHÉ%����뻉%����ë›ÆD$`�è����HƒÄHÉé4ÿÿÿ‰éúþÿÿè����é®þÿÿ
������B
��*runtime.racefuncenter���^
�� runtime.raceread���º
�� runtime.raceread���Ð
�� runtime.eqstring���Ú
�� runtime.memequal���‚
��(runtime.racefuncexit��� 
��(runtime.racefuncexit���â
��(runtime.racefuncexit���’
��0runtime.morestack_noctxt���0��
"".autotmp_0246�?type.string�"".autotmp_0245�type.string� "".~r2� type.bool�"".q�,type.*"".SectionHeader�"".p��,type.*"".SectionHeader�2ò &�à�à�� <K¹�Tgclocals·51af24152615272c3d9efc8538f95767�Tgclocals·44750c784da4dd430afdd97fea5c405a���8/tmp/go/src/debug/pe/file.goþ*type..hash."".Section�à��ÈdH‹ %����H;a†Ç���Hƒì H‹\$ H‰$è����H‹\$(H‰$Hƒ<$�„•���H‹\$0H‰\$è����H‹D$H‹\$(H‰$Hƒ<$�thHƒ$0H‰D$0H‰D$è����H‹D$H‹\$(H‰$Hƒ<$�t6Hƒ$@H‰D$0H‰D$HÇD$���è����H‹D$H‰D$0H‰D$8è����HƒÄ É%����ëÁ‰%����돉%����é_ÿÿÿè����éÿÿÿ
������B
��*runtime.racefuncenter���ˆ
��6type..hash."".SectionHeader���Ú
��"runtime.interhash���¾
��runtime.memhash���æ
��(runtime.racefuncexit���¶
��0runtime.morestack_noctxt���0@��
"".autotmp_0249��type.uintptr�"".autotmp_0248��type.uintptr� "".~r2� type.uintptr�"".h�type.uintptr�"".p�� type.*"".Section�@¤?@4�ð�ð� � Ð�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���8/tmp/go/src/debug/pe/file.goþ&type..eq."".Section�À��®dH‹ %����H;a†z��HƒìHH‹\$HH‰$è����H‹L$PHƒù�„R��H‹\$XHƒû�„<��H‰ $H‰\$è����¶\$€û�uÆD$`�è����HƒÄHÃH‹\$XH‰$Hƒ$0è����H‹\$XHƒû�„ì���H‹k0H‰l$8H‹k8H‰l$@H‹\$PH‰$Hƒ$0è����H‹T$8H‹\$PHƒû�„¬���H‹C0H‹K8H‰L$0H‰D$(H9Ð…‚���H‰$H‰L$H‰T$H‹l$@H‰l$è����¶\$ €û�t[H‹\$PH‰$Hƒ$@è����H‹\$XH‰$Hƒ$@è����H‹l$PH‹]@L‹D$XI‹h@H9ëtÆD$`�è����HƒÄHÃÆD$`è����HƒÄHÃÆD$`�è����HƒÄHÉéMÿÿÿ‰é ÿÿÿ‰é½þÿÿ‰é§þÿÿè����éiþÿÿ
������B
��*runtime.racefuncenter���š
��2type..eq."".SectionHeader���Â
��(runtime.racefuncexit���ò
�� runtime.raceread���Ú
�� runtime.raceread���ò
��runtime.ifaceeq���¬
�� runtime.raceread���Ò
�� runtime.raceread���”
��(runtime.racefuncexit���²
��(runtime.racefuncexit���Ð
��(runtime.racefuncexit���œ
��0runtime.morestack_noctxt���0��
"".autotmp_0253�? type.io.ReaderAt�"".autotmp_0252� type.io.ReaderAt� "".~r2� type.bool�"".q� type.*"".Section�"".p�� type.*"".Section�>Rè/� � �� ŒL¨�Tgclocals·51af24152615272c3d9efc8538f95767�Tgclocals·2c78d3ad9d760b5f66e2e47be684c787���8/tmp/go/src/debug/pe/file.goþ("".(*Section).ReadAt� ��ŽdH‹ %����H;a†ê���Hƒì`H‹Y H…Ût H|$hH9;uH‰#H‹\$`H‰$è����1Û1ÛH‰œ$˜���H‰œ$ ���H‹\$hH‰$Hƒ$0è����H‹\$hHƒû�„…���H‹K0H‹k8H‹\$pH‰\$H‹\$xH‰\$H‹œ$€���H‰\$H‹œ$ˆ���H‰\$ H‰l$HH‰,$H‰L$@H‹Y ÿÓH‹D$(H‹T$0H‹L$8H‰„$���H‰T$PH‰”$˜���H‰L$XH‰Œ$ ���è����HƒÄ`Éétÿÿÿè����éùþÿÿ
������n
��*runtime.racefuncenter���¼
�� runtime.raceread���ò�������Ú
��(runtime.racefuncexit���ü
��0runtime.morestack_noctxt���€À�� "".autotmp_0255�type.error� io.err�`type.error�io.n�Ptype.int� io.off�@type.int64�io.p�type.[]uint8�""..this�� type.*"".Section�ÀÞ¿À����6¶$�Tgclocals·105f3855eb890a8acc612838e7807774�Tgclocals·64ca935d1a2110a30e2d604686188539���<autogenerated>þ""".Section.ReadAt�à��ØdH‹ %����H;a†Ï���Hƒì`H‹Y H…Ût H|$hH9;uH‰#H‹\$`H‰$è����1Û1ÛH‰œ$Ø���H‰œ$à���H‹Œ$˜���H‹„$ ���H‹œ$°���H‰\$H‹œ$¸���H‰\$H‹œ$À���H‰\$H‹œ$È���H‰\$ H‰D$HH‰$H‰L$@H‹Y ÿÓH‹D$(H‹T$0H‹L$8H‰„$Ð���H‰T$PH‰”$Ø���H‰L$XH‰Œ$à���è����HƒÄ`Ãè����éÿÿÿ
������n
��*runtime.racefuncenter���Ê�������²
��(runtime.racefuncexit���Æ
��0runtime.morestack_noctxt���€À�� "".autotmp_0260�type.error� io.err�àtype.error�io.n�Ðtype.int� io.off�Àtype.int64�io.p�type.[]uint8�""..this��type."".Section�ÀÊ¿À�ð�ð��6¢�Tgclocals·231c104d478bca39ed03121924bee5dc�Tgclocals·64ca935d1a2110a30e2d604686188539���<autogenerated>þ2type..hash."".FormatError�à��ÈdH‹ %����H;a†Ç���Hƒì H‹\$ H‰$è����H‹\$(H‰$Hƒ<$�„•���H‹\$0H‰\$HÇD$���è����H‹D$H‹\$(H‰$Hƒ<$�t_Hƒ$H‰D$0H‰D$è����H‹D$H‹\$(H‰$Hƒ<$�t-Hƒ$H‰D$0H‰D$è����H‹D$H‰D$0H‰D$8è����HƒÄ É%����ëʉ%����똉%����é_ÿÿÿè����éÿÿÿ
������B
��*runtime.racefuncenter���š
��runtime.memhash���ì
��runtime.strhash���¾
��(runtime.nilinterhash���æ
��(runtime.racefuncexit���¶
��0runtime.morestack_noctxt���0@��
"".autotmp_0266��type.uintptr�"".autotmp_0265��type.uintptr� "".~r2� type.uintptr�"".h�type.uintptr�"".p��(type.*"".FormatError�@¤?@4�ð�ð� � Ð�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���8/tmp/go/src/debug/pe/file.goþ.type..eq."".FormatError�€��ädH‹ %����H;a†Õ��HƒìhH‹\$hH‰$è����H‹\$pH‰$è����H‹\$xH‰$è����H‹D$pH‹L‹D$xI‹(H9ëtƄ$€����è����HƒÄhÃH‰$Hƒ$è����H‹\$pHƒû�„\��H‹kH‰l$XH‹kH‰l$`H‹\$xH‰$Hƒ$è����H‹T$`H‹\$xHƒû�„��H‹KH‰L$HH‹CH‰D$PH9Â…ï���H‹l$XH‰,$H‰T$H‰L$H‰D$è����¶\$ €û�„Ä���H‹\$xH‰$Hƒ$è����H‹\$xHƒû�„›���H‹kH‰l$8H‹k H‰l$@H‹\$pH‰$Hƒ$è����H‹T$8H‹\$pHƒû�tbH‹CH‹K H‰L$0H‰D$(H9Ðu9H‰$H‰L$H‰T$H‹l$@H‰l$è����¶\$ €û�tƄ$€���è����HƒÄhÃƄ$€����è����HƒÄhÉ뚉é^ÿÿÿƄ$€����è����HƒÄhÉéÝþÿÿ‰éþÿÿè����éþÿÿ
������B
��*runtime.racefuncenter���^
�� runtime.raceread���z
�� runtime.raceread���¾
��(runtime.racefuncexit���ä
�� runtime.raceread���Ì
�� runtime.raceread���ä
�� runtime.eqstring���¦
�� runtime.raceread���Ž
�� runtime.raceread���–
��runtime.efaceeq���Ä
��(runtime.racefuncexit���è
��(runtime.racefuncexit���¢
��(runtime.racefuncexit���Ò
��0runtime.morestack_noctxt���0Ð��"".autotmp_0270�"type.interface {}�"".autotmp_0269�_"type.interface {}�"".autotmp_0268�?type.string�"".autotmp_0267�type.string� "".~r2� type.bool�"".q�(type.*"".FormatError�"".p��(type.*"".FormatError�>ÐPÏÐÂÏÐÏÐÏÐ&�€�€�� …LUDv�Tgclocals·9c91d8a91ac42440a3d1507bc8d2e808�Tgclocals·709ced5e74cbe4c0afb97d3c39ba72fd���8/tmp/go/src/debug/pe/file.goþ4type..hash.[1]interface {}�€��údH‹ %����H;a† ���Hƒì(H‹\$(H‰$è����H‹T$81ÀHÇD$���H‹l$H9è}\H‰D$ H‰ÅH‰ÐHÁÀH»¿c»kïR�H¯ØH‰ØH‹\$0Hƒû�tEHÁåHëH‰$H‰D$8H‰D$è����H‹T$H‹D$ HÿÀH‹l$H9è|¤H‰T$8H‰T$@è����HƒÄ(Éë·è����éCÿÿÿ
������B
��*runtime.racefuncenter���€
��(runtime.nilinterhash���Ì
��(runtime.racefuncexit���è
��0runtime.morestack_noctxt���0P��
"".autotmp_0273�type.int�"".autotmp_0272�type.int� "".~r2� type.uintptr�"".h�type.uintptr�"".p��*type.*[1]interface {}�P—OP�À�À� �  �Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���8/tmp/go/src/debug/pe/file.goþ0type..eq.[1]interface {}� ��˜dH‹ %����H;a†/��Hƒì`H‹\$`H‰$è����1ÀHÇD$0���H‹l$0H9èØ���H‰D$8H‹\$pH‰ÅH‰D$(HÁåHëH‰$è����H‹D$(H‹\$pHƒû�„Ç���H‰ÅHÁåHëH‹+H‰l$PH‹kH‰l$XH‹\$hH‰ÅHÁåHëH‰$è����H‹T$PH‹\$hHƒû�t}H‹l$(HÁåHëH‹H‹KH‰L$HH‰D$@H9ÐuLH‰$H‰L$H‰T$H‹l$XH‰l$è����¶\$ €û�t%H‹D$8HÿÀH‹l$0H9èŒ(ÿÿÿÆD$xè����HƒÄ`ÃÆD$x�è����HƒÄ`Éé|ÿÿÿ‰é2ÿÿÿè����é´þÿÿ
������B
��*runtime.racefuncenter���¸
�� runtime.raceread���Æ
�� runtime.raceread���ä
��runtime.efaceeq���¸
��(runtime.racefuncexit���Ö
��(runtime.racefuncexit���†
��0runtime.morestack_noctxt���0À��"".autotmp_0277�?"type.interface {}�"".autotmp_0276�"type.interface {}�"".autotmp_0275�_type.int�"".autotmp_0274�Otype.int�"".i�otype.int� "".~r2� type.bool�"".q�*type.*[1]interface {}�"".p��*type.*[1]interface {}�&À¿À¿À�Ð�Ð�� ‚O_�Tgclocals·51af24152615272c3d9efc8538f95767�Tgclocals·2c78d3ad9d760b5f66e2e47be684c787���8/tmp/go/src/debug/pe/file.goþ(type..hash."".Symbol�à��ÖdH‹ %����H;a†Ž���Hƒì H‹\$ H‰$è����H‹\$(H‰$Hƒ<$�tcH‹\$0H‰\$è����H‹D$H‹\$(H‰$Hƒ<$�t6Hƒ$H‰D$0H‰D$HÇD$ ���è����H‹D$H‰D$0H‰D$8è����HƒÄ É%����ëÁ‰%����ë”è����éUÿÿÿ
������B
��*runtime.racefuncenter���€
��runtime.strhash���ä
��runtime.memhash���Œ
��(runtime.racefuncexit���Ä
��0runtime.morestack_noctxt���0@��"".autotmp_0279��type.uintptr� "".~r2� type.uintptr�"".h�type.uintptr�"".p��type.*"".Symbol�@w?@!�°�°� � �Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���8/tmp/go/src/debug/pe/file.goþ$type..eq."".Symbol�À��¤dH‹ %����H;a†5��HƒìHH‹\$HH‰$è����H‹\$PH‰$è����H‹\$PHƒû�„ÿ���H‹+H‰l$8H‹kH‰l$@H‹\$XH‰$è����H‹T$@H‹\$XHƒû�„Å���H‹ H‰L$(H‹CH‰D$0H9Â…œ���H‹l$8H‰,$H‰T$H‰L$H‰D$è����¶\$ €û�tuH‹\$PH‰$Hƒ<$�t\Hƒ$H‹\$XH‰\$Hƒ|$�t<HƒD$HÇD$ ���è����¶\$€û�uÆD$`�è����HƒÄHÃÆD$`è����HƒÄHÉ%����뻉%����ë›ÆD$`�è����HƒÄHÉé4ÿÿÿ‰éúþÿÿè����é®þÿÿ
������B
��*runtime.racefuncenter���^
�� runtime.raceread���º
�� runtime.raceread���Ð
�� runtime.eqstring���Ú
�� runtime.memequal���‚
��(runtime.racefuncexit��� 
��(runtime.racefuncexit���â
��(runtime.racefuncexit���’
��0runtime.morestack_noctxt���0��
"".autotmp_0282�?type.string�"".autotmp_0281�type.string� "".~r2� type.bool�"".q�type.*"".Symbol�"".p��type.*"".Symbol�2ò &�à�à�� <K¹�Tgclocals·51af24152615272c3d9efc8538f95767�Tgclocals·44750c784da4dd430afdd97fea5c405a���8/tmp/go/src/debug/pe/file.goþ0type..hash."".COFFSymbol�€��ädH‹ %����H;av\Hƒì H‹\$ H‰$è����H‹\$(H‰$Hƒ<$�t1H‹\$0H‰\$HÇD$���è����H‹D$H‰D$0H‰D$8è����HƒÄ É%����ëÆè����ëŽ
������:
��*runtime.racefuncenter���Š
��runtime.memhash���²
��(runtime.racefuncexit���Ø
��0runtime.morestack_noctxt���0@�� "".~r2� type.uintptr�"".h�type.uintptr�"".p��&type.*"".COFFSymbol�@N?@�€�€�
�d�Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���8/tmp/go/src/debug/pe/file.goþ,type..eq."".COFFSymbol�À��ªdH‹ %����H;av|Hƒì H‹\$ H‰$è����H‹\$(H‰$Hƒ<$�tQH‹\$0H‰\$Hƒ|$�t6HÇD$���è����¶\$€û�uÆD$8�è����HƒÄ ÃÆD$8è����HƒÄ É%����ëÁ‰%����ë¦è����ékÿÿÿ
������:
��*runtime.racefuncenter���š
�� runtime.memequal���Â
��(runtime.racefuncexit���à
��(runtime.racefuncexit���˜
��0runtime.morestack_noctxt���0@�� "".~r2� type.bool�"".q�&type.*"".COFFSymbol�"".p��&type.*"".COFFSymbol�@V?@?@'� � � �„�Tgclocals·3bb21ca8fe1d99a3e492463bd711418a�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���8/tmp/go/src/debug/pe/file.goþ(type..hash.[4]string�€��údH‹ %����H;a† ���Hƒì(H‹\$(H‰$è����H‹T$81ÀHÇD$���H‹l$H9è}\H‰D$ H‰ÅH‰ÐHÁÀH»¿c»kïR�H¯ØH‰ØH‹\$0Hƒû�tEHÁåHëH‰$H‰D$8H‰D$è����H‹T$H‹D$ HÿÀH‹l$H9è|¤H‰T$8H‰T$@è����HƒÄ(Éë·è����éCÿÿÿ
������B
��*runtime.racefuncenter���€
��runtime.strhash���Ì
��(runtime.racefuncexit���è
��0runtime.morestack_noctxt���0P��
"".autotmp_0287�type.int�"".autotmp_0286�type.int� "".~r2� type.uintptr�"".h�type.uintptr�"".p��type.*[4]string�P—OP�À�À� �  �Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���8/tmp/go/src/debug/pe/file.goþ$type..eq.[4]string� ��˜dH‹ %����H;a†/��Hƒì`H‹\$`H‰$è����1ÀHÇD$0���H‹l$0H9èØ���H‰D$8H‹\$hH‰ÅH‰D$(HÁåHëH‰$è����H‹D$(H‹\$hHƒû�„Ç���H‰ÅHÁåHëH‹+H‰l$PH‹kH‰l$XH‹\$pH‰ÅHÁåHëH‰$è����H‹T$XH‹\$pHƒû�t}H‹l$(HÁåHëH‹ H‰L$@H‹CH‰D$HH9ÂuLH‹l$PH‰,$H‰T$H‰L$H‰D$è����¶\$ €û�t%H‹D$8HÿÀH‹l$0H9èŒ(ÿÿÿÆD$xè����HƒÄ`ÃÆD$x�è����HƒÄ`Éé|ÿÿÿ‰é2ÿÿÿè����é´þÿÿ
������B
��*runtime.racefuncenter���¸
�� runtime.raceread���Æ
�� runtime.raceread���ä
�� runtime.eqstring���¸
��(runtime.racefuncexit���Ö
��(runtime.racefuncexit���†
��0runtime.morestack_noctxt���0À��"".autotmp_0291�?type.string�"".autotmp_0290�type.string�"".autotmp_0289�_type.int�"".autotmp_0288�Otype.int�"".i�otype.int� "".~r2� type.bool�"".q�type.*[4]string�"".p��type.*[4]string�&À¿À¿À�Ð�Ð�� ‚O_�Tgclocals·51af24152615272c3d9efc8538f95767�Tgclocals·44750c784da4dd430afdd97fea5c405a���8/tmp/go/src/debug/pe/file.goþ:type..hash."".ImportDirectory�à��ÖdH‹ %����H;a†Ž���Hƒì H‹\$ H‰$è����H‹\$(H‰$Hƒ<$�tcH‹\$0H‰\$HÇD$���è����H‹D$H‹\$(H‰$Hƒ<$�t-Hƒ$H‰D$0H‰D$è����H‹D$H‰D$0H‰D$8è����HƒÄ É%����ëʉ%����ë”è����éUÿÿÿ
������B
��*runtime.racefuncenter���’
��runtime.memhash���ä
��runtime.strhash���Œ
��(runtime.racefuncexit���Ä
��0runtime.morestack_noctxt���0@��"".autotmp_0293��type.uintptr� "".~r2� type.uintptr�"".h�type.uintptr�"".p��0type.*"".ImportDirectory�@w?@!�°�°� � �Tgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�Tgclocals·33cdeccccebe80329f1fdbee7f5874cb���8/tmp/go/src/debug/pe/file.goþ6type..eq."".ImportDirectory�À��¬dH‹ %����H;a†9��HƒìHH‹\$HH‰$è����H‹\$PH‰$Hƒ<$�„��H‹\$XH‰\$Hƒ|$�„å���HÇD$���è����¶\$€û�uÆD$`�è����HƒÄHÃH‹\$PH‰$Hƒ$è����H‹\$PHƒû�„•���H‹kH‰l$8H‹k H‰l$@H‹\$XH‰$Hƒ$è����H‹T$@H‹\$XHƒû�t\H‹KH‰L$(H‹C H‰D$0H9Âu6H‹l$8H‰,$H‰T$H‰L$H‰D$è����¶\$ €û�tÆD$`è����HƒÄHÃÆD$`�è����HƒÄHÉ렉édÿÿÿ‰%����éÿÿÿ‰%����éíþÿÿè����éªþÿÿ
������B
��*runtime.racefuncenter���²
�� runtime.memequal���Ú
��(runtime.racefuncexit���Š
�� runtime.raceread���ò
�� runtime.raceread���ú
�� runtime.eqstring���¢
��(runtime.racefuncexit�����(runtime.racefuncexit���š
��0runtime.morestack_noctxt���0��
"".autotmp_0296�?type.string�"".autotmp_0295�type.string� "".~r2� type.bool�"".q�0type.*"".ImportDirectory�"".p��0type.*"".ImportDirectory�2^£7�à�à�� ˜Dd�Tgclocals·51af24152615272c3d9efc8538f95767�Tgclocals·44750c784da4dd430afdd97fea5c405a���8/tmp/go/src/debug/pe/file.goþTgclocals·7f7e6ec54e0fe5c2b861c6ab03f71f2b�0��0��� ������������������þTgclocals·3d62476710a386a8bdda2662c18ab6e5�0��0���������������3����þ0Jgo.itab.*io.SectionReader.io.ReaderAt�����þ0Ngo.itab.*io.SectionReader.io.ReadSeeker�����þTgclocals·d76d733252dff1db3e6244421edfb3e6�@��@������������� ��� �����������þTgclocals·18f6d3d39240673c818afd82a70cfe06�@��@�������������������������þ*go.string.hdr." '%v'"� �� ������������������"go.string." '%v'"���þ"go.string." '%v'"��� '%v'��þLgo.string.hdr." in record at byte %#x"� �� ������������������Dgo.string." in record at byte %#x"���þDgo.string." in record at byte %#x"�0��. in record at byte %#x��þTgclocals·12abde4ce1c001576b1c5981f9189139�`��`
����������À���Á���À��À��ð��ü��ð��ð���ð����þTgclocals·bf571f6e994f54f15b6c49dddccda3dd�`��`
�������������������������������������þ08go.itab.*os.File.io.ReaderAt�����þ04go.itab.*os.File.io.Closer�����þTgclocals·6235160484cd87ecd8cee2a67bf0f23f�P��P���
�����������
������0��� ��� �������þTgclocals·2513e318c737c9158a282a98e88ca498�P��P�������������������������������þTgclocals·0c7ba4686807ed10ce3a3f60b9393cf2�(��(������������������þTgclocals·27f94a2fe0ff5b305b2385471201b6d7�(��(����������������þ0Bgo.itab.*errors.errorString.error�����þ0Fgo.itab.*io.SectionReader.io.Reader�����þ0|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder�����þNgo.string.hdr."Invalid PE File Format."� �� ������������������Fgo.string."Invalid PE File Format."���þFgo.string."Invalid PE File Format."�0��0Invalid PE File Format.��þ‚go.string.hdr."pe32 optional header has unexpected Magic of 0x%x"� �� ��������1����������zgo.string."pe32 optional header has unexpected Magic of 0x%x"���þzgo.string."pe32 optional header has unexpected Magic of 0x%x"�p��dpe32 optional header has unexpected Magic of 0x%x��þ„go.string.hdr."pe32+ optional header has unexpected Magic of 0x%x"� �� ��������2����������|go.string."pe32+ optional header has unexpected Magic of 0x%x"���þ|go.string."pe32+ optional header has unexpected Magic of 0x%x"�p��fpe32+ optional header has unexpected Magic of 0x%x��þTgclocals·dac0cfff4cd0862b1bab38b9b68a2c9c�€ ��€ :���_��������������� ��À�������� �À�������� ����������"�����������"� ���������������������"�������€���"������������������������������������������"���������"������������������������������"����������"����������"„���������"…���������bD���������bE���������b����������b���������b���������â���������â����������*����������*���������"���������"��������"��������"���������"� ��������"$��������"%���������������À� ���������Ì� ���������À�����������À����" ���������"���������"��������"��������"���������"���������& ���������& ���������&����������&���������6���������2���������2����������2���������2��������2���������3����������2����������þTgclocals·ef7c4dc6dd1388370f1798e3ff8d023e�à��à:�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������þTgclocals·f56b2291fa344104975cb6587be42b9b� �� ���������������þTgclocals·cfd97ba95bb5326c9855399a9aeae1e4� �� ��������� ����þTgclocals·f56b2291fa344104975cb6587be42b9b� �� ���������������þTgclocals·e164b25facb10da87beb89b155f2475e� �� �������������þTgclocals·41aa2c1041551573da6b5bc2bc8eb895�0��0���������������������þTgclocals·6c663c8c96689a2fcfc7e468bda6a1bb�0��0��������������� ����þ,go.string.hdr."abbrev"� �� ������������������$go.string."abbrev"���þ$go.string."abbrev"���abbrev��þ(go.string.hdr."info"� �� ������������������ go.string."info"���þ go.string."info"���
info��þ(go.string.hdr."line"� �� ������������������ go.string."line"���þ go.string."line"���
line��þ&go.string.hdr."str"� �� ������������������go.string."str"���þgo.string."str"���str��þ.go.string.hdr.".debug_"� �� ������������������&go.string.".debug_"���þ&go.string.".debug_"���.debug_��þTgclocals·0e3994209607ed7a7ae400007ece91ad������>���������������T% ����T% 3���T% �����T����T% �����T����������þTgclocals·d360b7e350619ca924b7530d280a9798�P��P�������������������������������þ,go.string.hdr.".idata"� �� ������������������$go.string.".idata"���þ$go.string.".idata"���.idata��þ"go.string.hdr.":"� �� ������������������go.string.":"���þgo.string.":"���:��þTgclocals·9b8e7d05a45b0fb36575ce8967bea642�À��À���:�������������������������� ��@�� �@�� €�@�� ��@�����@���� @���� ��� ������������������������������A����þTgclocals·58880d1014ff7703d0d5c04ae9912065�¨��¨���������3�������������������������������������������������������þTgclocals·69c1753bd5f81501d95132d08af04464�����������þTgclocals·18e6f963be655e2098768c933b06e181� �� ���������3����þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þ02"".sizeofOptionalHeader32��type.uint16���þ02"".sizeofOptionalHeader64��type.uint16���þ""".statictmp_0130��`*type."".SectionHeader���þ0"".initdone·��type.uint8���þ*"".(*Section).Data·f��������������$"".(*Section).Data���þ*"".(*Section).Open·f��������������$"".(*Section).Open���þ4"".(*FormatError).Error·f��������������."".(*FormatError).Error���þ"".Open·f��������������"".Open���þ&"".(*File).Close·f�������������� "".(*File).Close���þ"".NewFile·f��������������"".NewFile���þ"".cstring·f��������������"".cstring���þ"".getString·f��������������"".getString���þ*"".(*File).Section·f��������������$"".(*File).Section���þ&"".(*File).DWARF·f�������������� "".(*File).DWARF���þ:"".(*File).ImportedSymbols·f��������������4"".(*File).ImportedSymbols���þ>"".(*File).ImportedLibraries·f��������������8"".(*File).ImportedLibraries���þ"".init·f��������������"".init���þ"runtime.gcbits.01����þ.go.string.hdr."[]uint8"� �� ������������������&go.string."[]uint8"���þ&go.string."[]uint8"���[]uint8��þtype.[]uint8� �� ��������������ß~.8��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��.go.string.hdr."[]uint8"���p��*go.weak.type.*[]uint8���€��"runtime.zerovalue�����type.uint8���þ6go.typelink.[]uint8 []uint8��������������type.[]uint8���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·44750c784da4dd430afdd97fea5c405a� �� ��������������þTgclocals·51af24152615272c3d9efc8538f95767� �� �������������þ>type..hashfunc."".SectionHeader��������������6type..hash."".SectionHeader���þ:type..eqfunc."".SectionHeader��������������2type..eq."".SectionHeader���þ4type..alg."".SectionHeader� �� �������������������>type..hashfunc."".SectionHeader�����:type..eqfunc."".SectionHeader���þBgo.string.hdr."*pe.SectionHeader"� �� ������������������:go.string."*pe.SectionHeader"���þ:go.string."*pe.SectionHeader"�0��$*pe.SectionHeader��þ,type.*"".SectionHeader�� �� ��������������æü8j�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��Bgo.string.hdr."*pe.SectionHeader"���p��>go.weak.type.**"".SectionHeader���€��"runtime.zerovalue�����*type."".SectionHeader���þ@go.string.hdr."pe.SectionHeader"� �� ������������������8go.string."pe.SectionHeader"���þ8go.string."pe.SectionHeader"�0��"pe.SectionHeader��þ(go.string.hdr."Name"� �� ������������������ go.string."Name"���þ go.string."Name"���
Name��þ6go.string.hdr."VirtualSize"� �� �������� ����������.go.string."VirtualSize"���þ.go.string."VirtualSize"� ��VirtualSize��þ<go.string.hdr."VirtualAddress"� �� ������������������4go.string."VirtualAddress"���þ4go.string."VirtualAddress"� ��VirtualAddress��þ(go.string.hdr."Size"� �� ������������������ go.string."Size"���þ go.string."Size"���
Size��þ,go.string.hdr."Offset"� �� ������������������$go.string."Offset"���þ$go.string."Offset"���Offset��þHgo.string.hdr."PointerToRelocations"� �� ������������������@go.string."PointerToRelocations"���þ@go.string."PointerToRelocations"�0��*PointerToRelocations��þHgo.string.hdr."PointerToLineNumbers"� �� ������������������@go.string."PointerToLineNumbers"���þ@go.string."PointerToLineNumbers"�0��*PointerToLineNumbers��þFgo.string.hdr."NumberOfRelocations"� �� ������������������>go.string."NumberOfRelocations"���þ>go.string."NumberOfRelocations"�0��(NumberOfRelocations��þFgo.string.hdr."NumberOfLineNumbers"� �� ������������������>go.string."NumberOfLineNumbers"���þ>go.string."NumberOfLineNumbers"�0��(NumberOfLineNumbers��þ>go.string.hdr."Characteristics"� �� ������������������6go.string."Characteristics"���þ6go.string."Characteristics"� �� Characteristics��þ:go.string.hdr."SectionHeader"� �� �������� ����������2go.string."SectionHeader"���þ2go.string."SectionHeader"� ��SectionHeader��þ0go.string.hdr."debug/pe"� �� ������������������(go.string."debug/pe"���þ(go.string."debug/pe"� ��debug/pe��þ"go.importpath."".� �� ������������������(go.string."debug/pe"���þ*type."".SectionHeader��°��°0��������������­iÌü���������������������������������������������������������
�������
������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������$���������������������������������������(���������������������������������������*���������������������������������������,�����������������������������������������������<0��4type..alg."".SectionHeader���@��"runtime.gcbits.01���P��@go.string.hdr."pe.SectionHeader"���p��,type.*"".SectionHeader���€��"runtime.zerovalue���À�*type."".SectionHeader���À��(go.string.hdr."Name"���à��type.string�����6go.string.hdr."VirtualSize"���°��type.uint32���à��<go.string.hdr."VirtualAddress"���€��type.uint32���°��(go.string.hdr."Size"���Ð��type.uint32���€��,go.string.hdr."Offset"��� ��type.uint32���Ð��Hgo.string.hdr."PointerToRelocations"���ð��type.uint32��� ��Hgo.string.hdr."PointerToLineNumbers"���À��type.uint32���ð��Fgo.string.hdr."NumberOfRelocations"�����type.uint16���À��Fgo.string.hdr."NumberOfLineNumbers"���à��type.uint16�����>go.string.hdr."Characteristics"���°��type.uint32���`à�*type."".SectionHeader���à��:go.string.hdr."SectionHeader"���ð��"go.importpath."".���€°�*type."".SectionHeader���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·2c78d3ad9d760b5f66e2e47be684c787� �� ���������� ����þTgclocals·51af24152615272c3d9efc8538f95767� �� �������������þ2type..hashfunc."".Section��������������*type..hash."".Section���þ.type..eqfunc."".Section��������������&type..eq."".Section���þ(type..alg."".Section� �� �������������������2type..hashfunc."".Section�����.type..eqfunc."".Section���þ&runtime.gcbits.c101���Á�þ4go.string.hdr."pe.Section"� �� ��������
����������,go.string."pe.Section"���þ,go.string."pe.Section"� ��pe.Section��þ$go.string.hdr."sr"� �� ������������������go.string."sr"���þgo.string."sr"���sr��þTgclocals·64ca935d1a2110a30e2d604686188539� �� ���������������þTgclocals·105f3855eb890a8acc612838e7807774� �� ���������Ã����þTgclocals·64ca935d1a2110a30e2d604686188539� �� ���������������þTgclocals·231c104d478bca39ed03121924bee5dc� �� ������Á��ÁÃ���þzgo.string.hdr."func(pe.Section, []uint8, int64) (int, error)"� �� ��������-����������rgo.string."func(pe.Section, []uint8, int64) (int, error)"���þrgo.string."func(pe.Section, []uint8, int64) (int, error)"�`��\func(pe.Section, []uint8, int64) (int, error)��þdtype.func("".Section, []uint8, int64) (int, error)�Ð��Ð��������������÷ýpÊ�3��������������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��zgo.string.hdr."func(pe.Section, []uint8, int64) (int, error)"���p��vgo.weak.type.*func("".Section, []uint8, int64) (int, error)���€��"runtime.zerovalue��� €�dtype.func("".Section, []uint8, int64) (int, error)���а�dtype.func("".Section, []uint8, int64) (int, error)���€��type."".Section�����type.[]uint8��� ��type.int64���°��type.int���À��type.error���þÎgo.typelink.func(pe.Section, []uint8, int64) (int, error) func("".Section, []uint8, int64) (int, error)��������������dtype.func("".Section, []uint8, int64) (int, error)���þ.go.string.hdr."Section"� �� ������������������&go.string."Section"���þ&go.string."Section"���Section��þ,go.string.hdr."ReadAt"� �� ������������������$go.string."ReadAt"���þ$go.string."ReadAt"���ReadAt��þbgo.string.hdr."func([]uint8, int64) (int, error)"� �� ��������!����������Zgo.string."func([]uint8, int64) (int, error)"���þZgo.string."func([]uint8, int64) (int, error)"�P��Dfunc([]uint8, int64) (int, error)��þLtype.func([]uint8, int64) (int, error)�À��À��������������ŠC¶,�3������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��bgo.string.hdr."func([]uint8, int64) (int, error)"���p��^go.weak.type.*func([]uint8, int64) (int, error)���€��"runtime.zerovalue��� €�Ltype.func([]uint8, int64) (int, error)���Р�Ltype.func([]uint8, int64) (int, error)���€��type.[]uint8�����type.int64��� ��type.int���°��type.error���þžgo.typelink.func([]uint8, int64) (int, error) func([]uint8, int64) (int, error)��������������Ltype.func([]uint8, int64) (int, error)���þtype."".Section��à��àH�������H�������—B2d�����������������������������������������������������������������������������������������������������������������������������������������������0���������������������������������������@���������������������������������������������������������������������������������������������(0��(type..alg."".Section���@��&runtime.gcbits.c101���P��4go.string.hdr."pe.Section"���p�� type.*"".Section���€��"runtime.zerovalue���À�type."".Section���à��*type."".SectionHeader���°�� type.io.ReaderAt���à��$go.string.hdr."sr"���ð��"go.importpath."".���€��,type.*io.SectionReader���`°�type."".Section���°��.go.string.hdr."Section"���À��"go.importpath."".���Ѐ�type."".Section���€��,go.string.hdr."ReadAt"��� ��Ltype.func([]uint8, int64) (int, error)���°��dtype.func("".Section, []uint8, int64) (int, error)���À��("".(*Section).ReadAt���Ð��""".Section.ReadAt���þ6go.string.hdr."*pe.Section"� �� �������� ����������.go.string."*pe.Section"���þ.go.string."*pe.Section"� ��*pe.Section��þdgo.string.hdr."func(*pe.Section) ([]uint8, error)"� �� ��������"����������\go.string."func(*pe.Section) ([]uint8, error)"���þ\go.string."func(*pe.Section) ([]uint8, error)"�P��Ffunc(*pe.Section) ([]uint8, error)��þNtype.func(*"".Section) ([]uint8, error)�°��°��������������;•Ü=�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(*pe.Section) ([]uint8, error)"���p��`go.weak.type.*func(*"".Section) ([]uint8, error)���€��"runtime.zerovalue��� €�Ntype.func(*"".Section) ([]uint8, error)���А�Ntype.func(*"".Section) ([]uint8, error)���€�� type.*"".Section�����type.[]uint8��� ��type.error���þ¢go.typelink.func(*pe.Section) ([]uint8, error) func(*"".Section) ([]uint8, error)��������������Ntype.func(*"".Section) ([]uint8, error)���þ^go.string.hdr."func(*pe.Section) io.ReadSeeker"� �� ������������������Vgo.string."func(*pe.Section) io.ReadSeeker"���þVgo.string."func(*pe.Section) io.ReadSeeker"�@��@func(*pe.Section) io.ReadSeeker��þHtype.func(*"".Section) io.ReadSeeker� �� ��������������‰­NÆ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��^go.string.hdr."func(*pe.Section) io.ReadSeeker"���p��Zgo.weak.type.*func(*"".Section) io.ReadSeeker���€��"runtime.zerovalue��� €�Htype.func(*"".Section) io.ReadSeeker���А�Htype.func(*"".Section) io.ReadSeeker���€�� type.*"".Section�����$type.io.ReadSeeker���þ–go.typelink.func(*pe.Section) io.ReadSeeker func(*"".Section) io.ReadSeeker��������������Htype.func(*"".Section) io.ReadSeeker���þ|go.string.hdr."func(*pe.Section, []uint8, int64) (int, error)"� �� ��������.����������tgo.string."func(*pe.Section, []uint8, int64) (int, error)"���þtgo.string."func(*pe.Section, []uint8, int64) (int, error)"�`��^func(*pe.Section, []uint8, int64) (int, error)��þftype.func(*"".Section, []uint8, int64) (int, error)�Ð��Ð��������������ƒðVe�3��������������������������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��|go.string.hdr."func(*pe.Section, []uint8, int64) (int, error)"���p��xgo.weak.type.*func(*"".Section, []uint8, int64) (int, error)���€��"runtime.zerovalue��� €�ftype.func(*"".Section, []uint8, int64) (int, error)���а�ftype.func(*"".Section, []uint8, int64) (int, error)���€�� type.*"".Section�����type.[]uint8��� ��type.int64���°��type.int���À��type.error���þÒgo.typelink.func(*pe.Section, []uint8, int64) (int, error) func(*"".Section, []uint8, int64) (int, error)��������������ftype.func(*"".Section, []uint8, int64) (int, error)���þ(go.string.hdr."Data"� �� ������������������ go.string."Data"���þ go.string."Data"���
Data��þNgo.string.hdr."func() ([]uint8, error)"� �� ������������������Fgo.string."func() ([]uint8, error)"���þFgo.string."func() ([]uint8, error)"�0��0func() ([]uint8, error)��þ8type.func() ([]uint8, error)� �� ��������������Ÿìx]�3����������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Ngo.string.hdr."func() ([]uint8, error)"���p��Jgo.weak.type.*func() ([]uint8, error)���€��"runtime.zerovalue��� €�8type.func() ([]uint8, error)���Ѐ�8type.func() ([]uint8, error)���€��type.[]uint8�����type.error���þvgo.typelink.func() ([]uint8, error) func() ([]uint8, error)��������������8type.func() ([]uint8, error)���þ(go.string.hdr."Open"� �� ������������������ go.string."Open"���þ go.string."Open"���
Open��þHgo.string.hdr."func() io.ReadSeeker"� �� ������������������@go.string."func() io.ReadSeeker"���þ@go.string."func() io.ReadSeeker"�0��*func() io.ReadSeeker��þ2type.func() io.ReadSeeker�����������������Ã&–�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Hgo.string.hdr."func() io.ReadSeeker"���p��Dgo.weak.type.*func() io.ReadSeeker���€��"runtime.zerovalue��� €�2type.func() io.ReadSeeker���Ѐ�2type.func() io.ReadSeeker���€��$type.io.ReadSeeker���þjgo.typelink.func() io.ReadSeeker func() io.ReadSeeker��������������2type.func() io.ReadSeeker���þ type.*"".Section������������������T°é`�6����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������.0 � runtime.algarray���@��"runtime.gcbits.01���P��6go.string.hdr."*pe.Section"���p��2go.weak.type.**"".Section���€��"runtime.zerovalue�����type."".Section���` � type.*"".Section���Àð� type.*"".Section���ð��(go.string.hdr."Data"�����8type.func() ([]uint8, error)��� ��Ntype.func(*"".Section) ([]uint8, error)���°��$"".(*Section).Data���À��$"".(*Section).Data���Ð��(go.string.hdr."Open"���ð��2type.func() io.ReadSeeker���€��Htype.func(*"".Section) io.ReadSeeker�����$"".(*Section).Open��� ��$"".(*Section).Open���°��,go.string.hdr."ReadAt"���Ð��Ltype.func([]uint8, int64) (int, error)���à��ftype.func(*"".Section, []uint8, int64) (int, error)���ð��("".(*Section).ReadAt���€��("".(*Section).ReadAt���þ"runtime.gcbits.03����þ8go.string.hdr."interface {}"� �� �������� ����������0go.string."interface {}"���þ0go.string."interface {}"� ��interface {}��þ"type.interface {}�À��À��������������çW ������������������������������������������������������������������������� 0€� runtime.algarray���@��"runtime.gcbits.03���P��8go.string.hdr."interface {}"���p��4go.weak.type.*interface {}���€��"runtime.zerovalue���À�"type.interface {}���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·709ced5e74cbe4c0afb97d3c39ba72fd�(��(����������@��� ����þTgclocals·9c91d8a91ac42440a3d1507bc8d2e808�(��(����������������þ:type..hashfunc."".FormatError��������������2type..hash."".FormatError���þ6type..eqfunc."".FormatError��������������.type..eq."".FormatError���þ0type..alg."".FormatError� �� �������������������:type..hashfunc."".FormatError�����6type..eqfunc."".FormatError���þ"runtime.gcbits.1a����þ<go.string.hdr."pe.FormatError"� �� ������������������4go.string."pe.FormatError"���þ4go.string."pe.FormatError"� ��pe.FormatError��þ&go.string.hdr."off"� �� ������������������go.string."off"���þgo.string."off"���off��þ&go.string.hdr."msg"� �� ������������������go.string."msg"���þgo.string."msg"���msg��þ&go.string.hdr."val"� �� ������������������go.string."val"���þgo.string."val"���val��þ6go.string.hdr."FormatError"� �� �������� ����������.go.string."FormatError"���þ.go.string."FormatError"� ��FormatError��þ&type."".FormatError��€��€(�������(������� Œ^H�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������&0��0type..alg."".FormatError���@��"runtime.gcbits.1a���P��<go.string.hdr."pe.FormatError"���p��(type.*"".FormatError���€��"runtime.zerovalue���À�&type."".FormatError���À��&go.string.hdr."off"���Ð��"go.importpath."".���à��type.int64�����&go.string.hdr."msg"��� ��"go.importpath."".���°��type.string���à��&go.string.hdr."val"���ð��"go.importpath."".���€��"type.interface {}���`°�&type."".FormatError���°��6go.string.hdr."FormatError"���À��"go.importpath."".���Ѐ�&type."".FormatError���þ>go.string.hdr."*pe.FormatError"� �� ������������������6go.string."*pe.FormatError"���þ6go.string."*pe.FormatError"� �� *pe.FormatError��þXgo.string.hdr."func(*pe.FormatError) string"� �� ������������������Pgo.string."func(*pe.FormatError) string"���þPgo.string."func(*pe.FormatError) string"�@��:func(*pe.FormatError) string��þBtype.func(*"".FormatError) string� �� �������������� ßZÜ�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Xgo.string.hdr."func(*pe.FormatError) string"���p��Tgo.weak.type.*func(*"".FormatError) string���€��"runtime.zerovalue��� €�Btype.func(*"".FormatError) string���А�Btype.func(*"".FormatError) string���€��(type.*"".FormatError�����type.string���þŠgo.typelink.func(*pe.FormatError) string func(*"".FormatError) string��������������Btype.func(*"".FormatError) string���þ*go.string.hdr."Error"� �� ������������������"go.string."Error"���þ"go.string."Error"��� Error��þ:go.string.hdr."func() string"� �� �������� ����������2go.string."func() string"���þ2go.string."func() string"� ��func() string��þ$type.func() string�����������������¢mË�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."func() string"���p��6go.weak.type.*func() string���€��"runtime.zerovalue��� €�$type.func() string���Ѐ�$type.func() string���€��type.string���þNgo.typelink.func() string func() string��������������$type.func() string���þ(type.*"".FormatError��Ð��Ð�������������� ú„†�6����������������������������������������������������������������������������������������������������������������������������������������������0 � runtime.algarray���@��"runtime.gcbits.01���P��>go.string.hdr."*pe.FormatError"���p��:go.weak.type.**"".FormatError���€��"runtime.zerovalue�����&type."".FormatError���` �(type.*"".FormatError���Àð�(type.*"".FormatError���ð��*go.string.hdr."Error"�����$type.func() string��� ��Btype.func(*"".FormatError) string���°��."".(*FormatError).Error���À��."".(*FormatError).Error���þ<go.string.hdr."[]interface {}"� �� ������������������4go.string."[]interface {}"���þ4go.string."[]interface {}"� ��[]interface {}��þ&type.[]interface {}� �� ��������������p“ê/��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��<go.string.hdr."[]interface {}"���p��8go.weak.type.*[]interface {}���€��"runtime.zerovalue�����"type.interface {}���þRgo.typelink.[]interface {} []interface {}��������������&type.[]interface {}���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·2c78d3ad9d760b5f66e2e47be684c787� �� ���������� ����þTgclocals·51af24152615272c3d9efc8538f95767� �� �������������þ<type..hashfunc.[1]interface {}��������������4type..hash.[1]interface {}���þ8type..eqfunc.[1]interface {}��������������0type..eq.[1]interface {}���þ2type..alg.[1]interface {}� �� �������������������<type..hashfunc.[1]interface {}�����8type..eqfunc.[1]interface {}���þ>go.string.hdr."[1]interface {}"� �� ������������������6go.string."[1]interface {}"���þ6go.string."[1]interface {}"� �� [1]interface {}��þ(type.[1]interface {}�À��À��������������P‘[ú������������������������������������������������������������������������0��2type..alg.[1]interface {}���@��"runtime.gcbits.03���P��>go.string.hdr."[1]interface {}"���p��:go.weak.type.*[1]interface {}���€��"runtime.zerovalue�����"type.interface {}��� ��&type.[]interface {}���þVgo.typelink.[1]interface {} [1]interface {}��������������(type.[1]interface {}���þ@go.string.hdr."*[1]interface {}"� �� ������������������8go.string."*[1]interface {}"���þ8go.string."*[1]interface {}"�0��"*[1]interface {}��þ*type.*[1]interface {}� �� ��������������¿¨5�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��@go.string.hdr."*[1]interface {}"���p��<go.weak.type.**[1]interface {}���€��"runtime.zerovalue�����(type.[1]interface {}���þ type..hashfunc20� �� ������������������,runtime.memhash_varlen���þtype..eqfunc20� �� ������������������.runtime.memequal_varlen���þtype..alg20� �� ������������������� type..hashfunc20�����type..eqfunc20���þ<go.string.hdr."*pe.FileHeader"� �� ������������������4go.string."*pe.FileHeader"���þ4go.string."*pe.FileHeader"� ��*pe.FileHeader��þ&type.*"".FileHeader�� �� ��������������56 °�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��<go.string.hdr."*pe.FileHeader"���p��8go.weak.type.**"".FileHeader���€��"runtime.zerovalue�����$type."".FileHeader���þruntime.gcbits.������þ:go.string.hdr."pe.FileHeader"� �� �������� ����������2go.string."pe.FileHeader"���þ2go.string."pe.FileHeader"� ��pe.FileHeader��þ.go.string.hdr."Machine"� �� ������������������&go.string."Machine"���þ&go.string."Machine"���Machine��þ@go.string.hdr."NumberOfSections"� �� ������������������8go.string."NumberOfSections"���þ8go.string."NumberOfSections"�0��"NumberOfSections��þ:go.string.hdr."TimeDateStamp"� �� �������� ����������2go.string."TimeDateStamp"���þ2go.string."TimeDateStamp"� ��TimeDateStamp��þHgo.string.hdr."PointerToSymbolTable"� �� ������������������@go.string."PointerToSymbolTable"���þ@go.string."PointerToSymbolTable"�0��*PointerToSymbolTable��þ>go.string.hdr."NumberOfSymbols"� �� ������������������6go.string."NumberOfSymbols"���þ6go.string."NumberOfSymbols"� �� NumberOfSymbols��þHgo.string.hdr."SizeOfOptionalHeader"� �� ������������������@go.string."SizeOfOptionalHeader"���þ@go.string."SizeOfOptionalHeader"�0��*SizeOfOptionalHeader��þ4go.string.hdr."FileHeader"� �� ��������
����������,go.string."FileHeader"���þ,go.string."FileHeader"� ��FileHeader��þ$type."".FileHeader��À��À���������������5|~†�™������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �����������������������������������������������������������������������������������������������������������������������������00��type..alg20���@��runtime.gcbits.���P��:go.string.hdr."pe.FileHeader"���p��&type.*"".FileHeader���€��"runtime.zerovalue���À�$type."".FileHeader���À��.go.string.hdr."Machine"���à��type.uint16�����@go.string.hdr."NumberOfSections"���°��type.uint16���à��:go.string.hdr."TimeDateStamp"���€��type.uint32���°��Hgo.string.hdr."PointerToSymbolTable"���Ð��type.uint32���€��>go.string.hdr."NumberOfSymbols"��� ��type.uint32���Ð��Hgo.string.hdr."SizeOfOptionalHeader"���ð��type.uint16��� ��>go.string.hdr."Characteristics"���À��type.uint16���`ð�$type."".FileHeader���ð��4go.string.hdr."FileHeader"���€��"go.importpath."".���À�$type."".FileHeader���þ:go.string.hdr."[]*pe.Section"� �� �������� ����������2go.string."[]*pe.Section"���þ2go.string."[]*pe.Section"� ��[]*pe.Section��þ$type.[]*"".Section� �� ��������������#��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��:go.string.hdr."[]*pe.Section"���p��6go.weak.type.*[]*"".Section���€��"runtime.zerovalue����� type.*"".Section���þNgo.typelink.[]*pe.Section []*"".Section��������������$type.[]*"".Section���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·44750c784da4dd430afdd97fea5c405a� �� ��������������þTgclocals·51af24152615272c3d9efc8538f95767� �� �������������þ0type..hashfunc."".Symbol��������������(type..hash."".Symbol���þ,type..eqfunc."".Symbol��������������$type..eq."".Symbol���þ&type..alg."".Symbol� �� �������������������0type..hashfunc."".Symbol�����,type..eqfunc."".Symbol���þ2go.string.hdr."pe.Symbol"� �� �������� ����������*go.string."pe.Symbol"���þ*go.string."pe.Symbol"� ��pe.Symbol��þ*go.string.hdr."Value"� �� ������������������"go.string."Value"���þ"go.string."Value"��� Value��þ:go.string.hdr."SectionNumber"� �� �������� ����������2go.string."SectionNumber"���þ2go.string."SectionNumber"� ��SectionNumber��þ(go.string.hdr."Type"� �� ������������������ go.string."Type"���þ go.string."Type"���
Type��þ8go.string.hdr."StorageClass"� �� �������� ����������0go.string."StorageClass"���þ0go.string."StorageClass"� ��StorageClass��þ,go.string.hdr."Symbol"� �� ������������������$go.string."Symbol"���þ$go.string."Symbol"���Symbol��þtype."".Symbol�� ��  ��������������æÃE@�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������(0��&type..alg."".Symbol���@��"runtime.gcbits.01���P��2go.string.hdr."pe.Symbol"���p��type.*"".Symbol���€��"runtime.zerovalue���À�type."".Symbol���À��(go.string.hdr."Name"���à��type.string�����*go.string.hdr."Value"���°��type.uint32���à��:go.string.hdr."SectionNumber"���€��type.int16���°��(go.string.hdr."Type"���Ð��type.uint16���€��8go.string.hdr."StorageClass"��� ��type.uint8���`Ð�type."".Symbol���Ð��,go.string.hdr."Symbol"���à��"go.importpath."".���ð �type."".Symbol���þ4go.string.hdr."*pe.Symbol"� �� ��������
����������,go.string."*pe.Symbol"���þ,go.string."*pe.Symbol"� ��*pe.Symbol��þtype.*"".Symbol�� �� ��������������Bl1;�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��4go.string.hdr."*pe.Symbol"���p��0go.weak.type.**"".Symbol���€��"runtime.zerovalue�����type."".Symbol���þ8go.string.hdr."[]*pe.Symbol"� �� �������� ����������0go.string."[]*pe.Symbol"���þ0go.string."[]*pe.Symbol"� ��[]*pe.Symbol��þ"type.[]*"".Symbol� �� ��������������HLž¼��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."[]*pe.Symbol"���p��4go.weak.type.*[]*"".Symbol���€��"runtime.zerovalue�����type.*"".Symbol���þJgo.typelink.[]*pe.Symbol []*"".Symbol��������������"type.[]*"".Symbol���þ&runtime.gcbits.3819���8�þ.go.string.hdr."pe.File"� �� ������������������&go.string."pe.File"���þ&go.string."pe.File"���pe.File��þ<go.string.hdr."OptionalHeader"� �� ������������������4go.string."OptionalHeader"���þ4go.string."OptionalHeader"� ��OptionalHeader��þ0go.string.hdr."Sections"� �� ������������������(go.string."Sections"���þ(go.string."Sections"� ��Sections��þ.go.string.hdr."Symbols"� �� ������������������&go.string."Symbols"���þ&go.string."Symbols"���Symbols��þ,go.string.hdr."closer"� �� ������������������$go.string."closer"���þ$go.string."closer"���closer��þ(go.string.hdr."File"� �� ������������������ go.string."File"���þ go.string."File"���
File��þtype."".File�� �� h�������h�������{Òq©��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������(���������������������������������������@���������������������������������������X�����������������������������������������������(0à� runtime.algarray���@��&runtime.gcbits.3819���P��.go.string.hdr."pe.File"���p��type.*"".File���€��"runtime.zerovalue���À�type."".File���à��$type."".FileHeader�����<go.string.hdr."OptionalHeader"���°��"type.interface {}���à��0go.string.hdr."Sections"���€��$type.[]*"".Section���°��.go.string.hdr."Symbols"���Ð��"type.[]*"".Symbol���€��,go.string.hdr."closer"�����"go.importpath."".��� ��type.io.Closer���`Ð�type."".File���Ð��(go.string.hdr."File"���à��"go.importpath."".���ð �type."".File���þ0go.string.hdr."*pe.File"� �� ������������������(go.string."*pe.File"���þ(go.string."*pe.File"� ��*pe.File��þHgo.string.hdr."func(*pe.File) error"� �� ������������������@go.string."func(*pe.File) error"���þ@go.string."func(*pe.File) error"�0��*func(*pe.File) error��þ2type.func(*"".File) error� �� ��������������#]‚�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Hgo.string.hdr."func(*pe.File) error"���p��Dgo.weak.type.*func(*"".File) error���€��"runtime.zerovalue��� €�2type.func(*"".File) error���А�2type.func(*"".File) error���€��type.*"".File�����type.error���þjgo.typelink.func(*pe.File) error func(*"".File) error��������������2type.func(*"".File) error���þfgo.string.hdr."func(*pe.File) (*dwarf.Data, error)"� �� ��������#����������^go.string."func(*pe.File) (*dwarf.Data, error)"���þ^go.string."func(*pe.File) (*dwarf.Data, error)"�P��Hfunc(*pe.File) (*dwarf.Data, error)��þ\type.func(*"".File) (*debug/dwarf.Data, error)�°��°��������������¯39A�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��fgo.string.hdr."func(*pe.File) (*dwarf.Data, error)"���p��ngo.weak.type.*func(*"".File) (*debug/dwarf.Data, error)���€��"runtime.zerovalue��� €�\type.func(*"".File) (*debug/dwarf.Data, error)���А�\type.func(*"".File) (*debug/dwarf.Data, error)���€��type.*"".File�����,type.*debug/dwarf.Data��� ��type.error���þ²go.typelink.func(*pe.File) (*dwarf.Data, error) func(*"".File) (*debug/dwarf.Data, error)��������������\type.func(*"".File) (*debug/dwarf.Data, error)���þ0go.string.hdr."[]string"� �� ������������������(go.string."[]string"���þ(go.string."[]string"� ��[]string��þtype.[]string� �� ��������������Ó¨ó
��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��0go.string.hdr."[]string"���p��,go.weak.type.*[]string���€��"runtime.zerovalue�����type.string���þ:go.typelink.[]string []string��������������type.[]string���þ`go.string.hdr."func(*pe.File) ([]string, error)"� �� �������� ����������Xgo.string."func(*pe.File) ([]string, error)"���þXgo.string."func(*pe.File) ([]string, error)"�P��Bfunc(*pe.File) ([]string, error)��þJtype.func(*"".File) ([]string, error)�°��°��������������uë¸b�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��`go.string.hdr."func(*pe.File) ([]string, error)"���p��\go.weak.type.*func(*"".File) ([]string, error)���€��"runtime.zerovalue��� €�Jtype.func(*"".File) ([]string, error)���А�Jtype.func(*"".File) ([]string, error)���€��type.*"".File�����type.[]string��� ��type.error���þšgo.typelink.func(*pe.File) ([]string, error) func(*"".File) ([]string, error)��������������Jtype.func(*"".File) ([]string, error)���þdgo.string.hdr."func(*pe.File, string) *pe.Section"� �� ��������"����������\go.string."func(*pe.File, string) *pe.Section"���þ\go.string."func(*pe.File, string) *pe.Section"�P��Ffunc(*pe.File, string) *pe.Section��þNtype.func(*"".File, string) *"".Section�°��°��������������“Ð�3����������������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��dgo.string.hdr."func(*pe.File, string) *pe.Section"���p��`go.weak.type.*func(*"".File, string) *"".Section���€��"runtime.zerovalue��� €�Ntype.func(*"".File, string) *"".Section���Р�Ntype.func(*"".File, string) *"".Section���€��type.*"".File�����type.string��� �� type.*"".Section���þ¢go.typelink.func(*pe.File, string) *pe.Section func(*"".File, string) *"".Section��������������Ntype.func(*"".File, string) *"".Section���þ*go.string.hdr."Close"� �� ������������������"go.string."Close"���þ"go.string."Close"��� Close��þ8go.string.hdr."func() error"� �� �������� ����������0go.string."func() error"���þ0go.string."func() error"� ��func() error��þ"type.func() error�����������������œ‚Öµ�3��������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."func() error"���p��4go.weak.type.*func() error���€��"runtime.zerovalue��� €�"type.func() error���Ѐ�"type.func() error���€��type.error���þJgo.typelink.func() error func() error��������������"type.func() error���þ*go.string.hdr."DWARF"� �� ������������������"go.string."DWARF"���þ"go.string."DWARF"��� DWARF��þVgo.string.hdr."func() (*dwarf.Data, error)"� �� ������������������Ngo.string."func() (*dwarf.Data, error)"���þNgo.string."func() (*dwarf.Data, error)"�@��8func() (*dwarf.Data, error)��þLtype.func() (*debug/dwarf.Data, error)� �� ��������������$¹9�3����������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Vgo.string.hdr."func() (*dwarf.Data, error)"���p��^go.weak.type.*func() (*debug/dwarf.Data, error)���€��"runtime.zerovalue��� €�Ltype.func() (*debug/dwarf.Data, error)���Ѐ�Ltype.func() (*debug/dwarf.Data, error)���€��,type.*debug/dwarf.Data�����type.error���þ’go.typelink.func() (*dwarf.Data, error) func() (*debug/dwarf.Data, error)��������������Ltype.func() (*debug/dwarf.Data, error)���þBgo.string.hdr."ImportedLibraries"� �� ������������������:go.string."ImportedLibraries"���þ:go.string."ImportedLibraries"�0��$ImportedLibraries��þPgo.string.hdr."func() ([]string, error)"� �� ������������������Hgo.string."func() ([]string, error)"���þHgo.string."func() ([]string, error)"�@��2func() ([]string, error)��þ:type.func() ([]string, error)� �� ��������������B‹í¡�3����������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Pgo.string.hdr."func() ([]string, error)"���p��Lgo.weak.type.*func() ([]string, error)���€��"runtime.zerovalue��� €�:type.func() ([]string, error)���Ѐ�:type.func() ([]string, error)���€��type.[]string�����type.error���þzgo.typelink.func() ([]string, error) func() ([]string, error)��������������:type.func() ([]string, error)���þ>go.string.hdr."ImportedSymbols"� �� ������������������6go.string."ImportedSymbols"���þ6go.string."ImportedSymbols"� �� ImportedSymbols��þPgo.string.hdr."func(string) *pe.Section"� �� ������������������Hgo.string."func(string) *pe.Section"���þHgo.string."func(string) *pe.Section"�@��2func(string) *pe.Section��þ:type.func(string) *"".Section� �� ��������������h-â±�3��������������������������������������������������������������������������������������������������������������������0€� runtime.algarray���@��"runtime.gcbits.01���P��Pgo.string.hdr."func(string) *pe.Section"���p��Lgo.weak.type.*func(string) *"".Section���€��"runtime.zerovalue��� €�:type.func(string) *"".Section���А�:type.func(string) *"".Section���€��type.string����� type.*"".Section���þzgo.typelink.func(string) *pe.Section func(string) *"".Section��������������:type.func(string) *"".Section���þtype.*"".File��Ð��Ð��������������uîõ2�6����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������B0 � runtime.algarray���@��"runtime.gcbits.01���P��0go.string.hdr."*pe.File"���p��,go.weak.type.**"".File���€��"runtime.zerovalue�����type."".File���` �type.*"".File���Àð�type.*"".File���ð��*go.string.hdr."Close"�����"type.func() error��� ��2type.func(*"".File) error���°�� "".(*File).Close���À�� "".(*File).Close���Ð��*go.string.hdr."DWARF"���ð��Ltype.func() (*debug/dwarf.Data, error)���€��\type.func(*"".File) (*debug/dwarf.Data, error)����� "".(*File).DWARF��� �� "".(*File).DWARF���°��Bgo.string.hdr."ImportedLibraries"���Ð��:type.func() ([]string, error)���à��Jtype.func(*"".File) ([]string, error)���ð��8"".(*File).ImportedLibraries���€��8"".(*File).ImportedLibraries�����>go.string.hdr."ImportedSymbols"���°��:type.func() ([]string, error)���À��Jtype.func(*"".File) ([]string, error)���Ð��4"".(*File).ImportedSymbols���à��4"".(*File).ImportedSymbols���ð��.go.string.hdr."Section"�����:type.func(string) *"".Section��� ��Ntype.func(*"".File, string) *"".Section���°��$"".(*File).Section���À��$"".(*File).Section���þ0go.string.hdr."[8]uint8"� �� ������������������(go.string."[8]uint8"���þ(go.string."[8]uint8"� ��[8]uint8��þtype.[8]uint8�À��À���������������>ù0´�‘�����������������������������������������������������������������������0 � runtime.algarray���@��runtime.gcbits.���P��0go.string.hdr."[8]uint8"���p��,go.weak.type.*[8]uint8���€��"runtime.zerovalue�����type.uint8��� ��type.[]uint8���þ:go.typelink.[8]uint8 [8]uint8��������������type.[8]uint8���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·3bb21ca8fe1d99a3e492463bd711418a�������������þ8type..hashfunc."".COFFSymbol��������������0type..hash."".COFFSymbol���þ4type..eqfunc."".COFFSymbol��������������,type..eq."".COFFSymbol���þ.type..alg."".COFFSymbol� �� �������������������8type..hashfunc."".COFFSymbol�����4type..eqfunc."".COFFSymbol���þ<go.string.hdr."*pe.COFFSymbol"� �� ������������������4go.string."*pe.COFFSymbol"���þ4go.string."*pe.COFFSymbol"� ��*pe.COFFSymbol��þ&type.*"".COFFSymbol�� �� ��������������çZ |�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��<go.string.hdr."*pe.COFFSymbol"���p��8go.weak.type.**"".COFFSymbol���€��"runtime.zerovalue�����$type."".COFFSymbol���þ:go.string.hdr."pe.COFFSymbol"� �� �������� ����������2go.string."pe.COFFSymbol"���þ2go.string."pe.COFFSymbol"� ��pe.COFFSymbol��þDgo.string.hdr."NumberOfAuxSymbols"� �� ������������������<go.string."NumberOfAuxSymbols"���þ<go.string."NumberOfAuxSymbols"�0��&NumberOfAuxSymbols��þ4go.string.hdr."COFFSymbol"� �� ��������
����������,go.string."COFFSymbol"���þ,go.string."COFFSymbol"� ��COFFSymbol��þ$type."".COFFSymbol��ð��ð���������������ë+q�™������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ��������������������������������������������������������������������������������������������������������������������������������������������������������������������,0��.type..alg."".COFFSymbol���@��runtime.gcbits.���P��:go.string.hdr."pe.COFFSymbol"���p��&type.*"".COFFSymbol���€��"runtime.zerovalue���À�$type."".COFFSymbol���À��(go.string.hdr."Name"���à��type.[8]uint8�����*go.string.hdr."Value"���°��type.uint32���à��:go.string.hdr."SectionNumber"���€��type.int16���°��(go.string.hdr."Type"���Ð��type.uint16���€��8go.string.hdr."StorageClass"��� ��type.uint8���Ð��Dgo.string.hdr."NumberOfAuxSymbols"���ð��type.uint8���` �$type."".COFFSymbol��� ��4go.string.hdr."COFFSymbol"���°��"go.importpath."".���Àð�$type."".COFFSymbol���þBgo.string.hdr."*pe.DataDirectory"� �� ������������������:go.string."*pe.DataDirectory"���þ:go.string."*pe.DataDirectory"�0��$*pe.DataDirectory��þ,type.*"".DataDirectory�� �� ��������������½¶”±�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��Bgo.string.hdr."*pe.DataDirectory"���p��>go.weak.type.**"".DataDirectory���€��"runtime.zerovalue�����*type."".DataDirectory���þ@go.string.hdr."pe.DataDirectory"� �� ������������������8go.string."pe.DataDirectory"���þ8go.string."pe.DataDirectory"�0��"pe.DataDirectory��þ:go.string.hdr."DataDirectory"� �� �������� ����������2go.string."DataDirectory"���þ2go.string."DataDirectory"� ��DataDirectory��þ*type."".DataDirectory��°��°��������������� kªï�™���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������0 � runtime.algarray���@��runtime.gcbits.���P��@go.string.hdr."pe.DataDirectory"���p��,type.*"".DataDirectory���€��"runtime.zerovalue���À�*type."".DataDirectory���À��<go.string.hdr."VirtualAddress"���à��type.uint32�����(go.string.hdr."Size"���°��type.uint32���`à�*type."".DataDirectory���à��:go.string.hdr."DataDirectory"���ð��"go.importpath."".���€°�*type."".DataDirectory���þDgo.string.hdr."[]pe.DataDirectory"� �� ������������������<go.string."[]pe.DataDirectory"���þ<go.string."[]pe.DataDirectory"�0��&[]pe.DataDirectory��þ.type.[]"".DataDirectory� �� ��������������q¡»��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��Dgo.string.hdr."[]pe.DataDirectory"���p��@go.weak.type.*[]"".DataDirectory���€��"runtime.zerovalue�����*type."".DataDirectory���þbgo.typelink.[]pe.DataDirectory []"".DataDirectory��������������.type.[]"".DataDirectory���þ"type..hashfunc128� �� ��������€����������,runtime.memhash_varlen���þtype..eqfunc128� �� ��������€����������.runtime.memequal_varlen���þtype..alg128� �� �������������������"type..hashfunc128�����type..eqfunc128���þHgo.string.hdr."[16]pe.DataDirectory"� �� ������������������@go.string."[16]pe.DataDirectory"���þ@go.string."[16]pe.DataDirectory"�0��*[16]pe.DataDirectory��þ2type.[16]"".DataDirectory�À��À€���������������ñ$0ß�‘�����������������������������������������������������������������������0��type..alg128���@��runtime.gcbits.���P��Hgo.string.hdr."[16]pe.DataDirectory"���p��Dgo.weak.type.*[16]"".DataDirectory���€��"runtime.zerovalue�����*type."".DataDirectory��� ��.type.[]"".DataDirectory���þjgo.typelink.[16]pe.DataDirectory [16]"".DataDirectory��������������2type.[16]"".DataDirectory���þ"type..hashfunc224� �� ��������à����������,runtime.memhash_varlen���þtype..eqfunc224� �� ��������à����������.runtime.memequal_varlen���þtype..alg224� �� �������������������"type..hashfunc224�����type..eqfunc224���þFgo.string.hdr."pe.OptionalHeader32"� �� ������������������>go.string."pe.OptionalHeader32"���þ>go.string."pe.OptionalHeader32"�0��(pe.OptionalHeader32��þ*go.string.hdr."Magic"� �� ������������������"go.string."Magic"���þ"go.string."Magic"��� Magic��þDgo.string.hdr."MajorLinkerVersion"� �� ������������������<go.string."MajorLinkerVersion"���þ<go.string."MajorLinkerVersion"�0��&MajorLinkerVersion��þDgo.string.hdr."MinorLinkerVersion"� �� ������������������<go.string."MinorLinkerVersion"���þ<go.string."MinorLinkerVersion"�0��&MinorLinkerVersion��þ4go.string.hdr."SizeOfCode"� �� ��������
����������,go.string."SizeOfCode"���þ,go.string."SizeOfCode"� ��SizeOfCode��þJgo.string.hdr."SizeOfInitializedData"� �� ������������������Bgo.string."SizeOfInitializedData"���þBgo.string."SizeOfInitializedData"�0��,SizeOfInitializedData��þNgo.string.hdr."SizeOfUninitializedData"� �� ������������������Fgo.string."SizeOfUninitializedData"���þFgo.string."SizeOfUninitializedData"�0��0SizeOfUninitializedData��þFgo.string.hdr."AddressOfEntryPoint"� �� ������������������>go.string."AddressOfEntryPoint"���þ>go.string."AddressOfEntryPoint"�0��(AddressOfEntryPoint��þ4go.string.hdr."BaseOfCode"� �� ��������
����������,go.string."BaseOfCode"���þ,go.string."BaseOfCode"� ��BaseOfCode��þ4go.string.hdr."BaseOfData"� �� ��������
����������,go.string."BaseOfData"���þ,go.string."BaseOfData"� ��BaseOfData��þ2go.string.hdr."ImageBase"� �� �������� ����������*go.string."ImageBase"���þ*go.string."ImageBase"� ��ImageBase��þ@go.string.hdr."SectionAlignment"� �� ������������������8go.string."SectionAlignment"���þ8go.string."SectionAlignment"�0��"SectionAlignment��þ:go.string.hdr."FileAlignment"� �� �������� ����������2go.string."FileAlignment"���þ2go.string."FileAlignment"� ��FileAlignment��þVgo.string.hdr."MajorOperatingSystemVersion"� �� ������������������Ngo.string."MajorOperatingSystemVersion"���þNgo.string."MajorOperatingSystemVersion"�@��8MajorOperatingSystemVersion��þVgo.string.hdr."MinorOperatingSystemVersion"� �� ������������������Ngo.string."MinorOperatingSystemVersion"���þNgo.string."MinorOperatingSystemVersion"�@��8MinorOperatingSystemVersion��þBgo.string.hdr."MajorImageVersion"� �� ������������������:go.string."MajorImageVersion"���þ:go.string."MajorImageVersion"�0��$MajorImageVersion��þBgo.string.hdr."MinorImageVersion"� �� ������������������:go.string."MinorImageVersion"���þ:go.string."MinorImageVersion"�0��$MinorImageVersion��þJgo.string.hdr."MajorSubsystemVersion"� �� ������������������Bgo.string."MajorSubsystemVersion"���þBgo.string."MajorSubsystemVersion"�0��,MajorSubsystemVersion��þJgo.string.hdr."MinorSubsystemVersion"� �� ������������������Bgo.string."MinorSubsystemVersion"���þBgo.string."MinorSubsystemVersion"�0��,MinorSubsystemVersion��þBgo.string.hdr."Win32VersionValue"� �� ������������������:go.string."Win32VersionValue"���þ:go.string."Win32VersionValue"�0��$Win32VersionValue��þ6go.string.hdr."SizeOfImage"� �� �������� ����������.go.string."SizeOfImage"���þ.go.string."SizeOfImage"� ��SizeOfImage��þ:go.string.hdr."SizeOfHeaders"� �� �������� ����������2go.string."SizeOfHeaders"���þ2go.string."SizeOfHeaders"� ��SizeOfHeaders��þ0go.string.hdr."CheckSum"� �� ������������������(go.string."CheckSum"���þ(go.string."CheckSum"� ��CheckSum��þ2go.string.hdr."Subsystem"� �� �������� ����������*go.string."Subsystem"���þ*go.string."Subsystem"� ��Subsystem��þDgo.string.hdr."DllCharacteristics"� �� ������������������<go.string."DllCharacteristics"���þ<go.string."DllCharacteristics"�0��&DllCharacteristics��þDgo.string.hdr."SizeOfStackReserve"� �� ������������������<go.string."SizeOfStackReserve"���þ<go.string."SizeOfStackReserve"�0��&SizeOfStackReserve��þBgo.string.hdr."SizeOfStackCommit"� �� ������������������:go.string."SizeOfStackCommit"���þ:go.string."SizeOfStackCommit"�0��$SizeOfStackCommit��þBgo.string.hdr."SizeOfHeapReserve"� �� ������������������:go.string."SizeOfHeapReserve"���þ:go.string."SizeOfHeapReserve"�0��$SizeOfHeapReserve��þ@go.string.hdr."SizeOfHeapCommit"� �� ������������������8go.string."SizeOfHeapCommit"���þ8go.string."SizeOfHeapCommit"�0��"SizeOfHeapCommit��þ6go.string.hdr."LoaderFlags"� �� �������� ����������.go.string."LoaderFlags"���þ.go.string."LoaderFlags"� ��LoaderFlags��þFgo.string.hdr."NumberOfRvaAndSizes"� �� ������������������>go.string."NumberOfRvaAndSizes"���þ>go.string."NumberOfRvaAndSizes"�0��(NumberOfRvaAndSizes��þ@go.string.hdr."OptionalHeader32"� �� ������������������8go.string."OptionalHeader32"���þ8go.string."OptionalHeader32"�0��"OptionalHeader32��þ0type."".OptionalHeader32��À��Àà���������������,ÚKú�™���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������$���������������������������������������(���������������������������������������*���������������������������������������,���������������������������������������.���������������������������������������0���������������������������������������2���������������������������������������4���������������������������������������8���������������������������������������<���������������������������������������@���������������������������������������D���������������������������������������F���������������������������������������H���������������������������������������L���������������������������������������P���������������������������������������T���������������������������������������X���������������������������������������\���������������������������������������`�����������������������������������������������0��type..alg224���@��runtime.gcbits.���P��Fgo.string.hdr."pe.OptionalHeader32"���p��2type.*"".OptionalHeader32���€��"runtime.zerovalue���À�0type."".OptionalHeader32���À��*go.string.hdr."Magic"���à��type.uint16�����Dgo.string.hdr."MajorLinkerVersion"���°��type.uint8���à��Dgo.string.hdr."MinorLinkerVersion"���€��type.uint8���°��4go.string.hdr."SizeOfCode"���Ð��type.uint32���€��Jgo.string.hdr."SizeOfInitializedData"��� ��type.uint32���Ð��Ngo.string.hdr."SizeOfUninitializedData"���ð��type.uint32��� ��Fgo.string.hdr."AddressOfEntryPoint"���À��type.uint32���ð��4go.string.hdr."BaseOfCode"�����type.uint32���À��4go.string.hdr."BaseOfData"���à��type.uint32�����2go.string.hdr."ImageBase"���°��type.uint32���à��@go.string.hdr."SectionAlignment"���€��type.uint32���°��:go.string.hdr."FileAlignment"���Ð��type.uint32���€ ��Vgo.string.hdr."MajorOperatingSystemVersion"���  ��type.uint16���Ð ��Vgo.string.hdr."MinorOperatingSystemVersion"���ð ��type.uint16��� 
��Bgo.string.hdr."MajorImageVersion"�����type.uint16���ð
��Bgo.string.hdr."MinorImageVersion"��� ��type.uint16���À ��Jgo.string.hdr."MajorSubsystemVersion"���à ��type.uint16��� ��Jgo.string.hdr."MinorSubsystemVersion"���° ��type.uint16���à ��Bgo.string.hdr."Win32VersionValue"���€ ��type.uint32���° ��6go.string.hdr."SizeOfImage"���Ð ��type.uint32���€��:go.string.hdr."SizeOfHeaders"��� ��type.uint32���Ð��0go.string.hdr."CheckSum"���ð��type.uint32��� ��2go.string.hdr."Subsystem"���À��type.uint16���ð��Dgo.string.hdr."DllCharacteristics"�����type.uint16���À��Dgo.string.hdr."SizeOfStackReserve"���à��type.uint32�����Bgo.string.hdr."SizeOfStackCommit"���°��type.uint32���à��Bgo.string.hdr."SizeOfHeapReserve"���€��type.uint32���°��@go.string.hdr."SizeOfHeapCommit"���Ð��type.uint32���€��6go.string.hdr."LoaderFlags"��� ��type.uint32���Ð��Fgo.string.hdr."NumberOfRvaAndSizes"���ð��type.uint32��� ��:go.string.hdr."DataDirectory"���À��2type.[16]"".DataDirectory���`ð�0type."".OptionalHeader32���ð��@go.string.hdr."OptionalHeader32"���€��"go.importpath."".���À�0type."".OptionalHeader32���þHgo.string.hdr."*pe.OptionalHeader32"� �� ������������������@go.string."*pe.OptionalHeader32"���þ@go.string."*pe.OptionalHeader32"�0��**pe.OptionalHeader32��þ2type.*"".OptionalHeader32�� �� ��������������Å"Ë�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��Hgo.string.hdr."*pe.OptionalHeader32"���p��Dgo.weak.type.**"".OptionalHeader32���€��"runtime.zerovalue�����0type."".OptionalHeader32���þ"type..hashfunc240� �� ��������ð����������,runtime.memhash_varlen���þtype..eqfunc240� �� ��������ð����������.runtime.memequal_varlen���þtype..alg240� �� �������������������"type..hashfunc240�����type..eqfunc240���þFgo.string.hdr."pe.OptionalHeader64"� �� ������������������>go.string."pe.OptionalHeader64"���þ>go.string."pe.OptionalHeader64"�0��(pe.OptionalHeader64��þ@go.string.hdr."OptionalHeader64"� �� ������������������8go.string."OptionalHeader64"���þ8go.string."OptionalHeader64"�0��"OptionalHeader64��þ0type."".OptionalHeader64��ð��ðð���������������¤×cI�™���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ������������������������������������������������������������������������������������������������������������������������������������������������������������ ���������������������������������������$���������������������������������������(���������������������������������������*���������������������������������������,���������������������������������������.���������������������������������������0���������������������������������������2���������������������������������������4���������������������������������������8���������������������������������������<���������������������������������������@���������������������������������������D���������������������������������������F���������������������������������������H���������������������������������������P���������������������������������������X���������������������������������������`���������������������������������������h���������������������������������������l���������������������������������������p�����������������������������������������������Œ0��type..alg240���@��runtime.gcbits.���P��Fgo.string.hdr."pe.OptionalHeader64"���p��2type.*"".OptionalHeader64���€��"runtime.zerovalue���À�0type."".OptionalHeader64���À��*go.string.hdr."Magic"���à��type.uint16�����Dgo.string.hdr."MajorLinkerVersion"���°��type.uint8���à��Dgo.string.hdr."MinorLinkerVersion"���€��type.uint8���°��4go.string.hdr."SizeOfCode"���Ð��type.uint32���€��Jgo.string.hdr."SizeOfInitializedData"��� ��type.uint32���Ð��Ngo.string.hdr."SizeOfUninitializedData"���ð��type.uint32��� ��Fgo.string.hdr."AddressOfEntryPoint"���À��type.uint32���ð��4go.string.hdr."BaseOfCode"�����type.uint32���À��2go.string.hdr."ImageBase"���à��type.uint64�����@go.string.hdr."SectionAlignment"���°��type.uint32���à��:go.string.hdr."FileAlignment"���€��type.uint32���°��Vgo.string.hdr."MajorOperatingSystemVersion"���Ð��type.uint16���€ ��Vgo.string.hdr."MinorOperatingSystemVersion"���  ��type.uint16���Ð ��Bgo.string.hdr."MajorImageVersion"���ð ��type.uint16��� 
��Bgo.string.hdr."MinorImageVersion"�����type.uint16���ð
��Jgo.string.hdr."MajorSubsystemVersion"��� ��type.uint16���À ��Jgo.string.hdr."MinorSubsystemVersion"���à ��type.uint16��� ��Bgo.string.hdr."Win32VersionValue"���° ��type.uint32���à ��6go.string.hdr."SizeOfImage"���€ ��type.uint32���° ��:go.string.hdr."SizeOfHeaders"���Ð ��type.uint32���€��0go.string.hdr."CheckSum"��� ��type.uint32���Ð��2go.string.hdr."Subsystem"���ð��type.uint16��� ��Dgo.string.hdr."DllCharacteristics"���À��type.uint16���ð��Dgo.string.hdr."SizeOfStackReserve"�����type.uint64���À��Bgo.string.hdr."SizeOfStackCommit"���à��type.uint64�����Bgo.string.hdr."SizeOfHeapReserve"���°��type.uint64���à��@go.string.hdr."SizeOfHeapCommit"���€��type.uint64���°��6go.string.hdr."LoaderFlags"���Ð��type.uint32���€��Fgo.string.hdr."NumberOfRvaAndSizes"��� ��type.uint32���Ð��:go.string.hdr."DataDirectory"���ð��2type.[16]"".DataDirectory���` �0type."".OptionalHeader64��� ��@go.string.hdr."OptionalHeader64"���°��"go.importpath."".���Àð�0type."".OptionalHeader64���þHgo.string.hdr."*pe.OptionalHeader64"� �� ������������������@go.string."*pe.OptionalHeader64"���þ@go.string."*pe.OptionalHeader64"�0��**pe.OptionalHeader64��þ2type.*"".OptionalHeader64�� �� ��������������=
k�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��Hgo.string.hdr."*pe.OptionalHeader64"���p��Dgo.weak.type.**"".OptionalHeader64���€��"runtime.zerovalue�����0type."".OptionalHeader64���þ type..hashfunc40� �� ��������(����������,runtime.memhash_varlen���þtype..eqfunc40� �� ��������(����������.runtime.memequal_varlen���þtype..alg40� �� ������������������� type..hashfunc40�����type..eqfunc40���þFgo.string.hdr."*pe.SectionHeader32"� �� ������������������>go.string."*pe.SectionHeader32"���þ>go.string."*pe.SectionHeader32"�0��(*pe.SectionHeader32��þ0type.*"".SectionHeader32�� �� ��������������òÚL�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��Fgo.string.hdr."*pe.SectionHeader32"���p��Bgo.weak.type.**"".SectionHeader32���€��"runtime.zerovalue�����.type."".SectionHeader32���þDgo.string.hdr."pe.SectionHeader32"� �� ������������������<go.string."pe.SectionHeader32"���þ<go.string."pe.SectionHeader32"�0��&pe.SectionHeader32��þ:go.string.hdr."SizeOfRawData"� �� �������� ����������2go.string."SizeOfRawData"���þ2go.string."SizeOfRawData"� ��SizeOfRawData��þ@go.string.hdr."PointerToRawData"� �� ������������������8go.string."PointerToRawData"���þ8go.string."PointerToRawData"�0��"PointerToRawData��þ>go.string.hdr."SectionHeader32"� �� ������������������6go.string."SectionHeader32"���þ6go.string."SectionHeader32"� �� SectionHeader32��þ.type."".SectionHeader32��°��°(���������������Œ- Ä�™��������������������������������������������������������
�������
���������������������������������������������������������������������������������������������������������������������� ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� ���������������������������������������"���������������������������������������$�����������������������������������������������<0��type..alg40���@��runtime.gcbits.���P��Dgo.string.hdr."pe.SectionHeader32"���p��0type.*"".SectionHeader32���€��"runtime.zerovalue���À�.type."".SectionHeader32���À��(go.string.hdr."Name"���à��type.[8]uint8�����6go.string.hdr."VirtualSize"���°��type.uint32���à��<go.string.hdr."VirtualAddress"���€��type.uint32���°��:go.string.hdr."SizeOfRawData"���Ð��type.uint32���€��@go.string.hdr."PointerToRawData"��� ��type.uint32���Ð��Hgo.string.hdr."PointerToRelocations"���ð��type.uint32��� ��Hgo.string.hdr."PointerToLineNumbers"���À��type.uint32���ð��Fgo.string.hdr."NumberOfRelocations"�����type.uint16���À��Fgo.string.hdr."NumberOfLineNumbers"���à��type.uint16�����>go.string.hdr."Characteristics"���°��type.uint32���`à�.type."".SectionHeader32���à��>go.string.hdr."SectionHeader32"���ð��"go.importpath."".���€°�.type."".SectionHeader32���þ type..hashfunc96� �� ��������`����������,runtime.memhash_varlen���þtype..eqfunc96� �� ��������`����������.runtime.memequal_varlen���þtype..alg96� �� ������������������� type..hashfunc96�����type..eqfunc96���þ2go.string.hdr."[96]uint8"� �� �������� ����������*go.string."[96]uint8"���þ*go.string."[96]uint8"� ��[96]uint8��þtype.[96]uint8�À��À`���������������ÄA ©�‘����������������������������������������������������������������`�������0��type..alg96���@��runtime.gcbits.���P��2go.string.hdr."[96]uint8"���p��.go.weak.type.*[96]uint8���€��"runtime.zerovalue�����type.uint8��� ��type.[]uint8���þ>go.typelink.[96]uint8 [96]uint8��������������type.[96]uint8���þ4go.string.hdr."*[96]uint8"� �� ��������
����������,go.string."*[96]uint8"���þ,go.string."*[96]uint8"� ��*[96]uint8��þtype.*[96]uint8� �� ��������������O|Á�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��4go.string.hdr."*[96]uint8"���p��0go.weak.type.**[96]uint8���€��"runtime.zerovalue�����type.[96]uint8���þ0go.string.hdr."[4]uint8"� �� ������������������(go.string."[4]uint8"���þ(go.string."[4]uint8"� ��[4]uint8��þtype.[4]uint8�À��À���������������„B�‘�����������������������������������������������������������������������0€� runtime.algarray���@��runtime.gcbits.���P��0go.string.hdr."[4]uint8"���p��,go.weak.type.*[4]uint8���€��"runtime.zerovalue�����type.uint8��� ��type.[]uint8���þ:go.typelink.[4]uint8 [4]uint8��������������type.[4]uint8���þ2go.string.hdr."*[4]uint8"� �� �������� ����������*go.string."*[4]uint8"���þ*go.string."*[4]uint8"� ��*[4]uint8��þtype.*[4]uint8� �� ��������������G³ã¡�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��2go.string.hdr."*[4]uint8"���p��.go.weak.type.**[4]uint8���€��"runtime.zerovalue�����type.[4]uint8���þ8go.string.hdr."**pe.Section"� �� �������� ����������0go.string."**pe.Section"���þ0go.string."**pe.Section"� ��**pe.Section��þ"type.**"".Section� �� ��������������LXÈ_�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��8go.string.hdr."**pe.Section"���p��4go.weak.type.***"".Section���€��"runtime.zerovalue����� type.*"".Section���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·44750c784da4dd430afdd97fea5c405a� �� ��������������þTgclocals·51af24152615272c3d9efc8538f95767� �� �������������þ0type..hashfunc.[4]string��������������(type..hash.[4]string���þ,type..eqfunc.[4]string��������������$type..eq.[4]string���þ&type..alg.[4]string� �� �������������������0type..hashfunc.[4]string�����,type..eqfunc.[4]string���þ"runtime.gcbits.55���U�þ2go.string.hdr."[4]string"� �� �������� ����������*go.string."[4]string"���þ*go.string."[4]string"� ��[4]string��þtype.[4]string�À��À@�������8�������УJ������������������������������������������������������������������������0��&type..alg.[4]string���@��"runtime.gcbits.55���P��2go.string.hdr."[4]string"���p��.go.weak.type.*[4]string���€��"runtime.zerovalue�����type.string��� ��type.[]string���þ>go.typelink.[4]string [4]string��������������type.[4]string���þ2go.string.hdr."[][]uint8"� �� �������� ����������*go.string."[][]uint8"���þ*go.string."[][]uint8"� ��[][]uint8��þtype.[][]uint8� �� ��������������õ}ï��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��2go.string.hdr."[][]uint8"���p��.go.weak.type.*[][]uint8���€��"runtime.zerovalue�����type.[]uint8���þ>go.typelink.[][]uint8 [][]uint8��������������type.[][]uint8���þ&runtime.gcbits.4902���I�þ4go.string.hdr."[4][]uint8"� �� ��������
����������,go.string."[4][]uint8"���þ,go.string."[4][]uint8"� ��[4][]uint8��þtype.[4][]uint8�À��À`�������P�������g—������������������������������������������������������������������������0à� runtime.algarray���@��&runtime.gcbits.4902���P��4go.string.hdr."[4][]uint8"���p��0go.weak.type.*[4][]uint8���€��"runtime.zerovalue�����type.[]uint8��� ��type.[][]uint8���þBgo.typelink.[4][]uint8 [4][]uint8��������������type.[4][]uint8���þTgclocals·33cdeccccebe80329f1fdbee7f5874cb�����������þTgclocals·0b86ef39f3fed835f14ba5f4d7c62fa2�������������þTgclocals·44750c784da4dd430afdd97fea5c405a� �� ��������������þTgclocals·51af24152615272c3d9efc8538f95767� �� �������������þBtype..hashfunc."".ImportDirectory��������������:type..hash."".ImportDirectory���þ>type..eqfunc."".ImportDirectory��������������6type..eq."".ImportDirectory���þ8type..alg."".ImportDirectory� �� �������������������Btype..hashfunc."".ImportDirectory�����>type..eqfunc."".ImportDirectory���þFgo.string.hdr."*pe.ImportDirectory"� �� ������������������>go.string."*pe.ImportDirectory"���þ>go.string."*pe.ImportDirectory"�0��(*pe.ImportDirectory��þ0type.*"".ImportDirectory�� �� ��������������ÌöÔâ�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��Fgo.string.hdr."*pe.ImportDirectory"���p��Bgo.weak.type.**"".ImportDirectory���€��"runtime.zerovalue�����.type."".ImportDirectory���þ"runtime.gcbits.08����þDgo.string.hdr."pe.ImportDirectory"� �� ������������������<go.string."pe.ImportDirectory"���þ<go.string."pe.ImportDirectory"�0��&pe.ImportDirectory��þDgo.string.hdr."OriginalFirstThunk"� �� ������������������<go.string."OriginalFirstThunk"���þ<go.string."OriginalFirstThunk"�0��&OriginalFirstThunk��þ<go.string.hdr."ForwarderChain"� �� ������������������4go.string."ForwarderChain"���þ4go.string."ForwarderChain"� ��ForwarderChain��þ4go.string.hdr."FirstThunk"� �� ��������
����������,go.string."FirstThunk"���þ,go.string."FirstThunk"� ��FirstThunk��þ&go.string.hdr."dll"� �� ������������������go.string."dll"���þgo.string."dll"���dll��þ>go.string.hdr."ImportDirectory"� �� ������������������6go.string."ImportDirectory"���þ6go.string."ImportDirectory"� �� ImportDirectory��þ.type."".ImportDirectory��ð��ð(������� �������×5w-����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������� �����������������������������������������������������������������������������������������������������������������������������.0��8type..alg."".ImportDirectory���@��"runtime.gcbits.08���P��Dgo.string.hdr."pe.ImportDirectory"���p��0type.*"".ImportDirectory���€��"runtime.zerovalue���À�.type."".ImportDirectory���À��Dgo.string.hdr."OriginalFirstThunk"���à��type.uint32�����:go.string.hdr."TimeDateStamp"���°��type.uint32���à��<go.string.hdr."ForwarderChain"���€��type.uint32���°��(go.string.hdr."Name"���Ð��type.uint32���€��4go.string.hdr."FirstThunk"��� ��type.uint32���Ð��&go.string.hdr."dll"���à��"go.importpath."".���ð��type.string���` �.type."".ImportDirectory��� ��>go.string.hdr."ImportDirectory"���°��"go.importpath."".���Àð�.type."".ImportDirectory���þHgo.string.hdr."[]pe.ImportDirectory"� �� ������������������@go.string."[]pe.ImportDirectory"���þ@go.string."[]pe.ImportDirectory"�0��*[]pe.ImportDirectory��þ2type.[]"".ImportDirectory� �� ��������������nëí2��������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��Hgo.string.hdr."[]pe.ImportDirectory"���p��Dgo.weak.type.*[]"".ImportDirectory���€��"runtime.zerovalue�����.type."".ImportDirectory���þjgo.typelink.[]pe.ImportDirectory []"".ImportDirectory��������������2type.[]"".ImportDirectory���þ4go.string.hdr."*[4]string"� �� ��������
����������,go.string."*[4]string"���þ,go.string."*[4]string"� ��*[4]string��þtype.*[4]string� �� ��������������àik�6�������������������������������������������������������� 0 � runtime.algarray���@��"runtime.gcbits.01���P��4go.string.hdr."*[4]string"���p��0go.weak.type.**[4]string���€��"runtime.zerovalue�����type.[4]string���þ.go.string.hdr."runtime"� �� ������������������&go.string."runtime"���þ&go.string."runtime"���runtime��þ,go.importpath.runtime.� �� ������������������&go.string."runtime"���þ6go.string.hdr."debug/dwarf"� �� �������� ����������.go.string."debug/dwarf"���þ.go.string."debug/dwarf"� ��debug/dwarf��þ4go.importpath.debug/dwarf.� �� �������� ����������.go.string."debug/dwarf"���þ>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."errors"� �� ������������������$go.string."errors"���þ$go.string."errors"���errors��þ*go.importpath.errors.� �� ������������������$go.string."errors"���þ$go.string.hdr."io"� �� ������������������go.string."io"���þgo.string."io"���io��þ"go.importpath.io.� �� ������������������go.string."io"���þ.go.string.hdr."strconv"� �� ������������������&go.string."strconv"���þ&go.string."strconv"���strconv��þ,go.importpath.strconv.� �� ������������������&go.string."strconv"���þ&go.string.hdr."fmt"� �� ������������������go.string."fmt"���þgo.string."fmt"���fmt��þ$go.importpath.fmt.� �� ������������������go.string."fmt"���þ$go.string.hdr."os"� �� ������������������go.string."os"���þgo.string."os"���os��þ"go.importpath.os.� �� ������������������go.string."os"���þ<type..hash."".SectionHeader·f��������������6type..hash."".SectionHeader���þ8type..eq."".SectionHeader·f��������������2type..eq."".SectionHeader���þ0type..hash."".Section·f��������������*type..hash."".Section���þ,type..eq."".Section·f��������������&type..eq."".Section���þ."".(*Section).ReadAt·f��������������("".(*Section).ReadAt���þ("".Section.ReadAt·f��������������""".Section.ReadAt���þ8type..hash."".FormatError·f��������������2type..hash."".FormatError���þ4type..eq."".FormatError·f��������������.type..eq."".FormatError���þ:type..hash.[1]interface {}·f��������������4type..hash.[1]interface {}���þ6type..eq.[1]interface {}·f��������������0type..eq.[1]interface {}���þ.type..hash."".Symbol·f��������������(type..hash."".Symbol���þ*type..eq."".Symbol·f��������������$type..eq."".Symbol���þ6type..hash."".COFFSymbol·f��������������0type..hash."".COFFSymbol���þ2type..eq."".COFFSymbol·f��������������,type..eq."".COFFSymbol���þ.type..hash.[4]string·f��������������(type..hash.[4]string���þ*type..eq.[4]string·f��������������$type..eq.[4]string���þ@type..hash."".ImportDirectory·f��������������:type..hash."".ImportDirectory���þ<type..eq."".ImportDirectory·f��������������6type..eq."".ImportDirectory���þ"runtime.zerovalue������ÿÿgo13ld�