Home | History | Annotate | Download | only in debug
      1 !<arch>
      2 __.PKGDEF       0           0     0     644     21160     `
      3 go object linux amd64 go1.5.1 X:none
      4 build id "a9d1a85048fa90abed16d75a352dbda4bb0f220c"
      5 
      6 $$
      7 package pe
      8 	import runtime "runtime"
      9 	import dwarf "debug/dwarf"
     10 	import binary "encoding/binary"
     11 	import errors "errors"
     12 	import io "io"
     13 	import strconv "strconv"
     14 	import fmt "fmt"
     15 	import os "os"
     16 	type @"".FileHeader struct { Machine uint16; NumberOfSections uint16; TimeDateStamp uint32; PointerToSymbolTable uint32; NumberOfSymbols uint32; SizeOfOptionalHeader uint16; Characteristics uint16 }
     17 	type @"".SectionHeader struct { Name string; VirtualSize uint32; VirtualAddress uint32; Size uint32; Offset uint32; PointerToRelocations uint32; PointerToLineNumbers uint32; NumberOfRelocations uint16; NumberOfLineNumbers uint16; Characteristics uint32 }
     18 	type @"io".ReaderAt interface { ReadAt(@"io".p []byte, @"io".off int64) (@"io".n int, @"io".err error) }
     19 	type @"io".SectionReader struct { @"io".r @"io".ReaderAt; @"io".base int64; @"io".off int64; @"io".limit int64 }
     20 	func (@"io".s3 *@"io".SectionReader "esc:0x9") Read (@"io".p4 []byte) (@"io".n1 int, @"io".err2 error)
     21 	func (@"io".s3 *@"io".SectionReader "esc:0x9") ReadAt (@"io".p4 []byte, @"io".off5 int64) (@"io".n1 int, @"io".err2 error)
     22 	func (@"io".s3 *@"io".SectionReader "esc:0x1") Seek (@"io".offset4 int64, @"io".whence5 int) (? int64, ? error)
     23 	func (@"io".s2 *@"io".SectionReader "esc:0x1") Size () (? int64) { return @"io".s2.@"io".limit - @"io".s2.@"io".base }
     24 	type @"io".ReadSeeker interface { Read(@"io".p []byte) (@"io".n int, @"io".err error); Seek(@"io".offset int64, @"io".whence int) (? int64, ? error) }
     25 	type @"".Section struct { ? @"".SectionHeader; ? @"io".ReaderAt; @"".sr *@"io".SectionReader }
     26 	func (@"".s3 *@"".Section "esc:0x9") Data () (? []byte, ? error)
     27 	func (@"".s2 *@"".Section "esc:0xa") Open () (? @"io".ReadSeeker) { return @"io".NewSectionReader(@"".s2.@"".sr, 0x0, 0x7fffffffffffffff) }
     28 	type @"".Symbol struct { Name string; Value uint32; SectionNumber int16; Type uint16; StorageClass uint8 }
     29 	type @"io".Closer interface { Close() (? error) }
     30 	type @"debug/dwarf".Tag uint32
     31 	func (@"debug/dwarf".t2 @"debug/dwarf".Tag) GoString () (? string)
     32 	func (@"debug/dwarf".t2 @"debug/dwarf".Tag) String () (? string)
     33 	type @"debug/dwarf".Attr uint32
     34 	func (@"debug/dwarf".a2 @"debug/dwarf".Attr) GoString () (? string)
     35 	func (@"debug/dwarf".a2 @"debug/dwarf".Attr) String () (? string)
     36 	type @"debug/dwarf".format uint32
     37 	type @"debug/dwarf".Class int
     38 	func (@"debug/dwarf".i2 @"debug/dwarf".Class) GoString () (? string)
     39 	func (@"debug/dwarf".i2 @"debug/dwarf".Class) String () (? string)
     40 	type @"debug/dwarf".afield struct { @"debug/dwarf".attr @"debug/dwarf".Attr; @"debug/dwarf".fmt @"debug/dwarf".format; @"debug/dwarf".class @"debug/dwarf".Class }
     41 	type @"debug/dwarf".abbrev struct { @"debug/dwarf".tag @"debug/dwarf".Tag; @"debug/dwarf".children bool; @"debug/dwarf".field []@"debug/dwarf".afield }
     42 	type @"debug/dwarf".abbrevTable map[uint32]@"debug/dwarf".abbrev
     43 	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) }
     44 	type @"debug/dwarf".CommonType struct { ByteSize int64; Name string }
     45 	func (@"debug/dwarf".c2 *@"debug/dwarf".CommonType "esc:0x12") Common () (? *@"debug/dwarf".CommonType) { return @"debug/dwarf".c2 }
     46 	func (@"debug/dwarf".c2 *@"debug/dwarf".CommonType "esc:0x1") Size () (? int64) { return @"debug/dwarf".c2.ByteSize }
     47 	type @"debug/dwarf".Type interface { Common() (? *@"debug/dwarf".CommonType); Size() (? int64); String() (? string) }
     48 	type @"debug/dwarf".Offset uint32
     49 	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 }
     50 	func (@"debug/dwarf".u2 *@"debug/dwarf".unit "esc:0x1") @"debug/dwarf".addrsize () (? int) { return @"debug/dwarf".u2.@"debug/dwarf".asize }
     51 	func (@"debug/dwarf".u3 *@"debug/dwarf".unit "esc:0x1") @"debug/dwarf".dwarf64 () (? bool, ? bool) { return @"debug/dwarf".u3.@"debug/dwarf".is64, true }
     52 	func (@"debug/dwarf".u2 *@"debug/dwarf".unit "esc:0x1") @"debug/dwarf".version () (? int) { return @"debug/dwarf".u2.@"debug/dwarf".vers }
     53 	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 }
     54 	type @"debug/dwarf".dataFormat interface { @"debug/dwarf".addrsize() (? int); @"debug/dwarf".dwarf64() (@"debug/dwarf".dwarf64 bool, @"debug/dwarf".isKnown bool); @"debug/dwarf".version() (? int) }
     55 	type @"debug/dwarf".Field struct { Attr @"debug/dwarf".Attr; Val interface {}; Class @"debug/dwarf".Class }
     56 	type @"debug/dwarf".Entry struct { Offset @"debug/dwarf".Offset; Tag @"debug/dwarf".Tag; Children bool; Field []@"debug/dwarf".Field }
     57 	func (@"debug/dwarf".e2 *@"debug/dwarf".Entry "esc:0x22") AttrField (@"debug/dwarf".a3 @"debug/dwarf".Attr) (? *@"debug/dwarf".Field)
     58 	func (@"debug/dwarf".e2 *@"debug/dwarf".Entry "esc:0x32") Val (@"debug/dwarf".a3 @"debug/dwarf".Attr) (? interface {})
     59 	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 }
     60 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".addr () (? uint64)
     61 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x2a") @"debug/dwarf".bytes (@"debug/dwarf".n3 int) (? []byte) { if len(@"debug/dwarf".b2.@"debug/dwarf".data) < @"debug/dwarf".n3 { @"debug/dwarf".b2.@"debug/dwarf".error("underflow"); return nil }; var @"debug/dwarf".data4 []byte; ; @"debug/dwarf".data4 = @"debug/dwarf".b2.@"debug/dwarf".data[0x0:@"debug/dwarf".n3]; @"debug/dwarf".b2.@"debug/dwarf".data = @"debug/dwarf".b2.@"debug/dwarf".data[@"debug/dwarf".n3:]; @"debug/dwarf".b2.@"debug/dwarf".off += @"debug/dwarf".Offset(@"debug/dwarf".n3); return @"debug/dwarf".data4 }
     62 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".entry (@"debug/dwarf".atab3 @"debug/dwarf".abbrevTable "esc:0x1", @"debug/dwarf".ubase4 @"debug/dwarf".Offset) (? *@"debug/dwarf".Entry)
     63 	func (@"debug/dwarf".b1 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".error (@"debug/dwarf".s2 string) { if @"debug/dwarf".b1.@"debug/dwarf".err == nil { @"debug/dwarf".b1.@"debug/dwarf".data = nil; @"debug/dwarf".b1.@"debug/dwarf".err = (@"debug/dwarf".DecodeError{ Name:@"debug/dwarf".b1.@"debug/dwarf".name, Offset:@"debug/dwarf".b1.@"debug/dwarf".off, Err:@"debug/dwarf".s2 }) } }
     64 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x1") @"debug/dwarf".int () (? int64)
     65 	func (@"debug/dwarf".b1 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".skip (@"debug/dwarf".n2 int) { @"debug/dwarf".b1.@"debug/dwarf".bytes(@"debug/dwarf".n2) }
     66 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".string () (? string)
     67 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x1") @"debug/dwarf".uint () (? uint64)
     68 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".uint16 () (? uint16)
     69 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".uint32 () (? uint32)
     70 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".uint64 () (? uint64)
     71 	func (@"debug/dwarf".b2 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".uint8 () (? uint8) { if len(@"debug/dwarf".b2.@"debug/dwarf".data) < 0x1 { @"debug/dwarf".b2.@"debug/dwarf".error("underflow"); return 0x0 }; var @"debug/dwarf".val3 byte; ; @"debug/dwarf".val3 = @"debug/dwarf".b2.@"debug/dwarf".data[0x0]; @"debug/dwarf".b2.@"debug/dwarf".data = @"debug/dwarf".b2.@"debug/dwarf".data[0x1:]; @"debug/dwarf".b2.@"debug/dwarf".off++; return @"debug/dwarf".val3 }
     72 	func (@"debug/dwarf".b3 *@"debug/dwarf".buf "esc:0x9") @"debug/dwarf".unitLength () (@"debug/dwarf".length1 @"debug/dwarf".Offset, @"debug/dwarf".dwarf642 bool)
     73 	func (@"debug/dwarf".b3 *@"debug/dwarf".buf "esc:0x1") @"debug/dwarf".varint () (@"debug/dwarf".c1 uint64, @"debug/dwarf".bits2 uint)
     74 	type @"debug/dwarf".LineFile struct { Name string; Mtime uint64; Length int }
     75 	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 }
     76 	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 }
     77 	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 }
     78 	func (@"debug/dwarf".r2 *@"debug/dwarf".LineReader "esc:0x2a") Next (@"debug/dwarf".entry3 *@"debug/dwarf".LineEntry "esc:0x1") (? error)
     79 	func (@"debug/dwarf".r1 *@"debug/dwarf".LineReader "esc:0x9") Reset ()
     80 	func (@"debug/dwarf".r1 *@"debug/dwarf".LineReader "esc:0x9") Seek (@"debug/dwarf".pos2 @"debug/dwarf".LineReaderPos) { @"debug/dwarf".r1.@"debug/dwarf".buf.@"debug/dwarf".off = @"debug/dwarf".pos2.@"debug/dwarf".off; @"debug/dwarf".r1.@"debug/dwarf".buf.@"debug/dwarf".data = @"debug/dwarf".r1.@"debug/dwarf".section[@"debug/dwarf".r1.@"debug/dwarf".buf.@"debug/dwarf".off:@"debug/dwarf".r1.@"debug/dwarf".endOffset]; @"debug/dwarf".r1.@"debug/dwarf".fileEntries = @"debug/dwarf".r1.@"debug/dwarf".fileEntries[:@"debug/dwarf".pos2.@"debug/dwarf".numFileEntries]; @"debug/dwarf".r1.@"debug/dwarf".state = @"debug/dwarf".pos2.@"debug/dwarf".state; @"debug/dwarf".r1.@"debug/dwarf".fileIndex = @"debug/dwarf".pos2.@"debug/dwarf".fileIndex }
     81 	func (@"debug/dwarf".r2 *@"debug/dwarf".LineReader "esc:0x2a") SeekPC (@"debug/dwarf".pc3 uint64, @"debug/dwarf".entry4 *@"debug/dwarf".LineEntry "esc:0x1") (? error)
     82 	func (@"debug/dwarf".r2 *@"debug/dwarf".LineReader "esc:0x22") Tell () (? @"debug/dwarf".LineReaderPos) { return (@"debug/dwarf".LineReaderPos{ @"debug/dwarf".off:@"debug/dwarf".r2.@"debug/dwarf".buf.@"debug/dwarf".off, @"debug/dwarf".numFileEntries:len(@"debug/dwarf".r2.@"debug/dwarf".fileEntries), @"debug/dwarf".state:@"debug/dwarf".r2.@"debug/dwarf".state, @"debug/dwarf".fileIndex:@"debug/dwarf".r2.@"debug/dwarf".fileIndex }) }
     83 	func (@"debug/dwarf".r1 *@"debug/dwarf".LineReader "esc:0x1") @"debug/dwarf".advancePC (@"debug/dwarf".opAdvance2 int) { var @"debug/dwarf".opIndex3 int; ; @"debug/dwarf".opIndex3 = @"debug/dwarf".r1.@"debug/dwarf".state.OpIndex + @"debug/dwarf".opAdvance2; @"debug/dwarf".r1.@"debug/dwarf".state.Address += uint64(@"debug/dwarf".r1.@"debug/dwarf".minInstructionLength * (@"debug/dwarf".opIndex3 / @"debug/dwarf".r1.@"debug/dwarf".maxOpsPerInstruction)); @"debug/dwarf".r1.@"debug/dwarf".state.OpIndex = @"debug/dwarf".opIndex3 % @"debug/dwarf".r1.@"debug/dwarf".maxOpsPerInstruction }
     84 	func (@"debug/dwarf".r3 *@"debug/dwarf".LineReader "esc:0x10a") @"debug/dwarf".readFileEntry () (? bool, ? error)
     85 	func (@"debug/dwarf".r2 *@"debug/dwarf".LineReader "esc:0x2a") @"debug/dwarf".readHeader () (? error)
     86 	func (@"debug/dwarf".r1 *@"debug/dwarf".LineReader "esc:0x9") @"debug/dwarf".resetState () { @"debug/dwarf".r1.@"debug/dwarf".state = (@"debug/dwarf".LineEntry{ Address:0x0, OpIndex:0x0, File:nil, Line:0x1, Column:0x0, IsStmt:@"debug/dwarf".r1.@"debug/dwarf".defaultIsStmt, BasicBlock:false, PrologueEnd:false, EpilogueBegin:false, ISA:0x0, Discriminator:0x0 }); @"debug/dwarf".r1.@"debug/dwarf".fileIndex = 0x1; @"debug/dwarf".r1.@"debug/dwarf".updateFile() }
     87 	func (@"debug/dwarf".r2 *@"debug/dwarf".LineReader "esc:0x9") @"debug/dwarf".step (@"debug/dwarf".entry3 *@"debug/dwarf".LineEntry "esc:0x1") (? bool)
     88 	func (@"debug/dwarf".r1 *@"debug/dwarf".LineReader "esc:0x9") @"debug/dwarf".updateFile () { if @"debug/dwarf".r1.@"debug/dwarf".fileIndex < len(@"debug/dwarf".r1.@"debug/dwarf".fileEntries) { @"debug/dwarf".r1.@"debug/dwarf".state.File = @"debug/dwarf".r1.@"debug/dwarf".fileEntries[@"debug/dwarf".r1.@"debug/dwarf".fileIndex] } else { @"debug/dwarf".r1.@"debug/dwarf".state.File = nil } }
     89 	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) }
     90 	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 }
     91 	func (@"debug/dwarf".r2 *@"debug/dwarf".Reader "esc:0x1") AddressSize () (? int) { return @"debug/dwarf".r2.@"debug/dwarf".d.@"debug/dwarf".unit[@"debug/dwarf".r2.@"debug/dwarf".unit].@"debug/dwarf".asize }
     92 	func (@"debug/dwarf".r3 *@"debug/dwarf".Reader "esc:0x10a") Next () (? *@"debug/dwarf".Entry, ? error)
     93 	func (@"debug/dwarf".r1 *@"debug/dwarf".Reader "esc:0x9") Seek (@"debug/dwarf".off2 @"debug/dwarf".Offset)
     94 	func (@"debug/dwarf".r1 *@"debug/dwarf".Reader "esc:0x9") SkipChildren ()
     95 	func (@"debug/dwarf".r2 *@"debug/dwarf".Reader "esc:0x9") @"debug/dwarf".clone () (? @"debug/dwarf".typeReader)
     96 	func (@"debug/dwarf".r1 *@"debug/dwarf".Reader "esc:0x9") @"debug/dwarf".maybeNextUnit ()
     97 	func (@"debug/dwarf".r2 *@"debug/dwarf".Reader "esc:0x1") @"debug/dwarf".offset () (? @"debug/dwarf".Offset) { return @"debug/dwarf".r2.@"debug/dwarf".b.@"debug/dwarf".off }
     98 	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 }
     99 	func (@"debug/dwarf".d2 *@"debug/dwarf".Data) AddTypes (@"debug/dwarf".name3 string, @"debug/dwarf".types4 []byte) (? error)
    100 	func (@"debug/dwarf".d3 *@"debug/dwarf".Data) LineReader (@"debug/dwarf".cu4 *@"debug/dwarf".Entry) (? *@"debug/dwarf".LineReader, ? error)
    101 	func (@"debug/dwarf".d2 *@"debug/dwarf".Data) Reader () (? *@"debug/dwarf".Reader)
    102 	func (@"debug/dwarf".d3 *@"debug/dwarf".Data) Type (@"debug/dwarf".off4 @"debug/dwarf".Offset) (? @"debug/dwarf".Type, ? error)
    103 	func (@"debug/dwarf".d2 *@"debug/dwarf".Data "esc:0x1") @"debug/dwarf".offsetToUnit (@"debug/dwarf".off3 @"debug/dwarf".Offset) (? int)
    104 	func (@"debug/dwarf".d3 *@"debug/dwarf".Data) @"debug/dwarf".parseAbbrev (@"debug/dwarf".off4 uint32, @"debug/dwarf".vers5 int) (? @"debug/dwarf".abbrevTable, ? error)
    105 	func (@"debug/dwarf".d2 *@"debug/dwarf".Data) @"debug/dwarf".parseTypes (@"debug/dwarf".name3 string, @"debug/dwarf".types4 []byte) (? error)
    106 	func (@"debug/dwarf".d3 *@"debug/dwarf".Data) @"debug/dwarf".parseUnits () (? []@"debug/dwarf".unit, ? error)
    107 	func (@"debug/dwarf".d3 *@"debug/dwarf".Data) @"debug/dwarf".readType (@"debug/dwarf".name4 string, @"debug/dwarf".r5 @"debug/dwarf".typeReader, @"debug/dwarf".off6 @"debug/dwarf".Offset, @"debug/dwarf".typeCache7 map[@"debug/dwarf".Offset]@"debug/dwarf".Type "esc:0x1") (? @"debug/dwarf".Type, ? error)
    108 	func (@"debug/dwarf".d3 *@"debug/dwarf".Data) @"debug/dwarf".sigToType (@"debug/dwarf".sig4 uint64) (? @"debug/dwarf".Type, ? error)
    109 	type @"".File struct { ? @"".FileHeader; OptionalHeader interface {}; Sections []*@"".Section; Symbols []*@"".Symbol; @"".closer @"io".Closer }
    110 	func (@"".f2 *@"".File "esc:0x9") Close () (? error)
    111 	func (@"".f3 *@"".File "esc:0x9") DWARF () (? *@"debug/dwarf".Data, ? error)
    112 	func (@"".f3 *@"".File "esc:0x1") ImportedLibraries () (? []string, ? error) { return nil, nil }
    113 	func (@"".f3 *@"".File "esc:0x9") ImportedSymbols () (? []string, ? error)
    114 	func (@"".f2 *@"".File "esc:0x32") Section (@"".name3 string "esc:0x1") (? *@"".Section)
    115 	type @"".ImportDirectory struct { OriginalFirstThunk uint32; TimeDateStamp uint32; ForwarderChain uint32; Name uint32; FirstThunk uint32; @"".dll string }
    116 	type @"".FormatError struct { @"".off int64; @"".msg string; @"".val interface {} }
    117 	func (@"".e2 *@"".FormatError "esc:0x2a") Error () (? string)
    118 	func @"".Open (@"".name3 string) (? *@"".File, ? error)
    119 	func @"".NewFile (@"".r3 @"io".ReaderAt) (? *@"".File, ? error)
    120 	type @"".DataDirectory struct { VirtualAddress uint32; Size uint32 }
    121 	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 }
    122 	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 }
    123 	type @"".SectionHeader32 struct { Name [8]uint8; VirtualSize uint32; VirtualAddress uint32; SizeOfRawData uint32; PointerToRawData uint32; PointerToRelocations uint32; PointerToLineNumbers uint32; NumberOfRelocations uint16; NumberOfLineNumbers uint16; Characteristics uint32 }
    124 	const @"".COFFSymbolSize = 0x12
    125 	type @"".COFFSymbol struct { Name [8]uint8; Value uint32; SectionNumber int16; Type uint16; StorageClass uint8; NumberOfAuxSymbols uint8 }
    126 	const @"".IMAGE_FILE_MACHINE_UNKNOWN = 0x0
    127 	const @"".IMAGE_FILE_MACHINE_AM33 = 0x1d3
    128 	const @"".IMAGE_FILE_MACHINE_AMD64 = 0x8664
    129 	const @"".IMAGE_FILE_MACHINE_ARM = 0x1c0
    130 	const @"".IMAGE_FILE_MACHINE_EBC = 0xebc
    131 	const @"".IMAGE_FILE_MACHINE_I386 = 0x14c
    132 	const @"".IMAGE_FILE_MACHINE_IA64 = 0x200
    133 	const @"".IMAGE_FILE_MACHINE_M32R = 0x9041
    134 	const @"".IMAGE_FILE_MACHINE_MIPS16 = 0x266
    135 	const @"".IMAGE_FILE_MACHINE_MIPSFPU = 0x366
    136 	const @"".IMAGE_FILE_MACHINE_MIPSFPU16 = 0x466
    137 	const @"".IMAGE_FILE_MACHINE_POWERPC = 0x1f0
    138 	const @"".IMAGE_FILE_MACHINE_POWERPCFP = 0x1f1
    139 	const @"".IMAGE_FILE_MACHINE_R4000 = 0x166
    140 	const @"".IMAGE_FILE_MACHINE_SH3 = 0x1a2
    141 	const @"".IMAGE_FILE_MACHINE_SH3DSP = 0x1a3
    142 	const @"".IMAGE_FILE_MACHINE_SH4 = 0x1a6
    143 	const @"".IMAGE_FILE_MACHINE_SH5 = 0x1a8
    144 	const @"".IMAGE_FILE_MACHINE_THUMB = 0x1c2
    145 	const @"".IMAGE_FILE_MACHINE_WCEMIPSV2 = 0x169
    146 	func @"".init ()
    147 	func @"io".NewSectionReader (@"io".r2 @"io".ReaderAt, @"io".off3 int64, @"io".n4 int64) (? *@"io".SectionReader) { return (&@"io".SectionReader{ @"io".r:@"io".r2, @"io".base:@"io".off3, @"io".off:@"io".off3, @"io".limit:@"io".off3 + @"io".n4 }) }
    148 	type @"debug/dwarf".DecodeError struct { Name string; Offset @"debug/dwarf".Offset; Err string }
    149 	func (@"debug/dwarf".e2 @"debug/dwarf".DecodeError "esc:0x1") Error () (? string)
    150 
    151 $$
    152 _go_.o          0           0     0     644     147077    `
    153 go object linux amd64 go1.5.1 X:none
    154 
    155 !
    156 go13lddebug/dwarf.a"encoding/binary.aerrors.a
    157 fmt.aio.aos.astrconv.a$"".(*Section).DatadH%HD$H;AHH$H$1H$H$H$1H$H$H$H$H$@H$Hk@Hl$@H,$H$ H\$@H$H$HD$@HX HhH)HHH$HD$HD$HT$HL$ HD$(HT$XHL$`HD$hH$H$H$@H$Hk@H,$H\$XH\$H\$`H\$H\$hH\$HD$ HD$(HT$0HL$8Ht$`H9ul1HHl$hH9wVLD$XLD$pL$HD$xH$H$H$HT$HH$HL$PH$H.
    160 X
    161 *runtime.racefuncenter
    162  runtime.raceread
    163  runtime.raceread
    164  runtime.racereadtype.[]uint8
    165 "runtime.makeslice
    166  runtime.raceread
    167 4io.(*SectionReader).ReadAt
    168 (runtime.racefuncexit
    169 $runtime.panicslice
    170 0runtime.morestack_noctxt`"".autotmp_0011type.int64"".autotmp_0009type.[]uint8"".autotmp_0008type.int"".autotmp_0005/type.[]uint8io.s2,type.*io.SectionReader"".errtype.error"".dat_type.[]uint8"".~r1@type.error"".~r0type.[]uint8"".s type.*"".Section!*\a
    175 S +a@4
!Tgclocals3d62476710a386a8bdda2662c18ab6e5Tgclocals7f7e6ec54e0fe5c2b861c6ab03f71f2bVprebuilts/go/linux-x86/src/debug/pe/file.go$"".(*Section).OpendH%H;aH`H\$`H$1H\$pH\$xHHD$81H9fH\$hH$H$@H\$hHk@HD$8HD$PHD$@Hl$XHl$HHD$ HH\$(HH$HD$HD$0H$H\$0Hl$@H+Hl$H=HkH\$0H$H$HD$0Hl$ HhH$H$HD$0Hl$ HhH$H$ HD$0Hl$ LD$(LHh HD$0H1H9tH\$0H\$xHD$pH`HH$HH\$HH\$HD$LCL$Hl$-HH$HH\$HH\$H\$H\$8c.
    181 B
    182 *runtime.racefuncenterhJgo.itab.*io.SectionReader.io.ReaderAt
    183  runtime.raceread*type.io.SectionReader
    184 "runtime.newobject
    185 "runtime.racewrite6runtime.writeBarrierEnabled
    186 "runtime.racewrite
    187 "runtime.racewrite
    188 "runtime.racewriteNgo.itab.*io.SectionReader.io.ReadSeeker
    189 (runtime.racefuncexit,type.*io.SectionReader$type.io.ReadSeekerNgo.itab.*io.SectionReader.io.ReadSeeker
    190  runtime.typ2Itab
    191 .runtime.writebarrierptr,type.*io.SectionReader type.io.ReaderAtJgo.itab.*io.SectionReader.io.ReaderAt
    192  runtime.typ2Itab
    193 0runtime.morestack_noctxt0"".autotmp_0017type.*uint8"".autotmp_0016_,type.*io.SectionReader"".autotmp_0015,type.*io.SectionReader"".autotmp_0014Otype.*uint8"".autotmp_0013 type.io.ReaderAt"".autotmp_0012,type.*io.SectionReaderio.n4otype.int64io.off3type.int64io.r2? type.io.ReaderAt"".~r0$type.io.ReadSeeker"".s type.*"".Section
    195 & 6J6u-FTgclocals18f6d3d39240673c818afd82a70cfe06Tgclocalsd76d733252dff1db3e6244421edfb3e6Vprebuilts/go/linux-x86/src/debug/pe/file.go."".(*FormatError).ErrordH%HD$H;AH1HD$hHD$pH$H$1H$H$H$H$H$H$H7HhHl$8HhHl$@H$H$HL$8HD$@H$HkH4H$H$1HD$hHD$pHD$hHH$H$H$H$H$H$H$H$HmHkH$H\$Hl$H-H,$HH$HD$H$H\$H$H\$H$H\$ HL$(HD$0H$H$H\$H$H\$HL$xHL$H$HD$ HL$(HD$0HL$8H$HD$@H$1H\$XH\$`H\$XHyH$H$H$HH$H$H\$H|$)HD$H\$H\$HH\$ H\$PH$H$H$Hl$HH+Hl$P=HkHH$HD$H$H\$H$H\$H$H\$ HL$(HD$0H$H$H\$H$H\$HL$xHL$H$HD$ HL$(HD$0HL$8H$HD$@H$HLCL$Hl$0%4B*
    197 p
    198 *runtime.racefuncenter
    199  runtime.raceread
    200  runtime.raceread
    201 "runtime.racewrite
    202  runtime.raceread"type.interface {}
    203 (runtime.typedmemmove"go.string." '%v'"
    204 fmt.Sprintf
    205 *runtime.concatstring2	type.int64	
    206 runtime.convT2E
    207 
    208 "runtime.racewrite
    209 6runtime.writeBarrierEnabled
    210 Dgo.string." in record at byte %#x"
    212 fmt.Sprintf
    214 *runtime.concatstring2
    216 (runtime.racefuncexit
    217 .runtime.writebarrierptr
    218 0runtime.morestack_noctxt0"".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_0023type.string"".autotmp_0022type.string"".autotmp_0021otype.string"".autotmp_0020Otype.string"".msgtype.string"".~r0type.string"".e(type.*"".FormatErrorK8+:.'*67ZtH%fH)>Tgclocalsbf571f6e994f54f15b6c49dddccda3ddTgclocals12abde4ce1c001576b1c5981f9189139Vprebuilts/go/linux-x86/src/debug/pe/file.go"".Open		dH%H;a+HxH\$xH$1H$H$H$H$H$H\$HT$HD$HL$ HL$PHD$HHt&H$H$H$HxHT$0HT$@H1H9VHL$@HD$hH$HL$pHL$Hl$0HD$HT$HL$ HD$(HL$PHT$HHt9H,$H$H\$HH$H\$PH$HxHl$@HHD$81H9H\$(H$H$XHL$@HD$8H\$(HtXHD$XHCXHL$`=u-HK`H\$(H$1H$H$HxLC`L$HL$HH$HH\$HH\$H\$H\$8EHH$HH\$HH\$HD$x,
    225 B
    226 *runtime.racefuncenter
    227 os.Open
    228 (runtime.racefuncexit8go.itab.*os.File.io.ReaderAt
    229 "".NewFile
    230  os.(*File).Close
    231 (runtime.racefuncexit4go.itab.*os.File.io.Closer
    232 "runtime.racewrite6runtime.writeBarrierEnabled
    233 (runtime.racefuncexit
    234 .runtime.writebarrierptrtype.*os.Filetype.io.Closer4go.itab.*os.File.io.Closer
    235  runtime.typ2Itabtype.*os.File type.io.ReaderAt8go.itab.*os.File.io.ReaderAt
    236  runtime.typ2Itab
    237 0runtime.morestack_noctxtP"".autotmp_0040type.*uint8"".autotmp_0039type.*uint8"".autotmp_0038type.*os.File"".autotmp_0037type.error"".autotmp_0035type.*os.File"".autotmp_0033otype.*os.File
    238 "".fftype.*"".File"".err_type.error"".ftype.*os.File"".~r20type.error"".~r1 type.*"".File"".nametype.string8X2W	&_);	2	. p>2+4
    244 T	.7!Tgclocals2513e318c737c9158a282a98e88ca498Tgclocals6235160484cd87ecd8cee2a67bf0f23fVprebuilts/go/linux-x86/src/debug/pe/file.go "".(*File).ClosedH%H;aH8H\$8H$1H\$HH\$P1H\$H\$ H\$@H$H$XHD$@HhXHtkH$H$XH\$@HtpHKXHk`Hl$0H,$HL$(HY HL$HD$HL$HD$ H\$@H$H$XH\$@1HkXHk`H\$H\$HH\$ H\$PH8
    247 
    248 B
    249 *runtime.racefuncenter
    250  runtime.raceread
    251  runtime.raceread
    252 "runtime.racewrite
    253 (runtime.racefuncexit
    254 0runtime.morestack_noctxt0p"".err?type.error"".~r0type.error"".ftype.*"".Filepop,"I" +N("Tgclocals27f94a2fe0ff5b305b2385471201b6d7Tgclocals0c7ba4686807ed10ce3a3f60b9393cf2Vprebuilts/go/linux-x86/src/debug/pe/file.go"".NewFiledH%H$H;A'HH$H$1H$H$HH$H\$H$H$H$H$H$HD$PHH\$`HH$HD$H$H$H$H$H+H$='HkH$H$H$H$Hl$PHhH$H$H$Hl$PHhH$H$ H$Hl$PLD$`LHh H$HH$HD$H$@H$HD$`H$@HG&H`H`H$HHD$H$PHT$H$XHL$HD$ H$H$H$H[ HD$0HL$8H$@H$8Ht)H$H$H$HH$@H$H$@Mz%HHH$H$@[ZV%HH$HD$H$@H#%H<H$H$H$H$HH$$H,$H$H$$HH$H$H$$HH$H$H$l$HH$H$H$H>$HH'$Hm	HH$Hm	HH#Hm	H\$HHH$HD$H$ H$HD$H$ H#HHH$HHD$H$PHT$H$XHL$H\$HH\$ H$H$H$H[ H$ H$H$ P!HHH$H$ XE!HHH$H$ X!HHH$H$ [p!HD$HHH$H$H$HD$HD$H$H$H$H!H$HH$1H9 HH$HH\$HH\$HH\$HD$ H\$(H|$HHHKHOH$H$H$xH$H$HL$H$HH$hH\$ H$pHL$(HD$0HL$8H$H$Ht)H$H$H$HH$H$H$HfpH$H$HfdPH$H$HfL0HH$xH$1H$XH$`HH$HD$H$H$H$H$HkH$x=H+H$H$H1H9tQH$H$H$H$H$XH$H$`H$HHH$HH\$HH\$HD$H$Hl$O1H$H$H$H$H$H$X&H$H$H$H$H$H$H$H$XhkH\$HD$HH$HD$H$8H$H$H$H$8H$HH$1H9HH$HH\$HH\$HH\$HD$ H\$(H|$HHHKHOH$H$H$xH$H$HL$H$HH$hH\$ H$pHL$(HD$0HL$8H$H$Ht)H$H$H$HH$8H$H$8H$H$8HH$(Hl$(Hl$HD$HT$ HL$(H$H$H$H$H$H$H$H$H$H$H$H\$H$H\$H$H\$XhkH\$ H$H$H$H[ HD$0HL$8H$H$Ht)H$H$H$HH$H$H$H$H$H$kHl$HD$D$EHD$pH$H$H$H$[Hl$pH9HH$HD$H$H$H$H$HH$1H98HH$HH\$HH\$HH\$HD$ H\$(H|$HHHKHOH$H$H$xH$H$HL$H$HH$hH\$ H$pHL$(T$EHL$0HD$8H$ H$Ht)H$H$H$HvHH\$EH\$pHH\$pg1H$H$H$H$H$HHH,$H$X`HHH,$H$X;HHH,$H$XHH$HD$H$HHHHH$H$HH$H,$H$H$HH$H$H$WHH$H$H$,HH$H$H$HHHHm	HHHm	HHHm	HH$H$H$H\$H$H\$HD$HL$ HD$(H$H$H$H$H$H$k@l$EHH$HD$H$H$H$H$HkH$=H+H$H$H$H$H$H$H$H{L$AhhH$H$H$H$H$H$H/L$IhfhH$H$H$H$H$H$HL$IhfhH$H$H$H$H$H$HL$Ah@hH$H$H$H$@H$HKHS@HCHH[PHH)H}QHH$H$HT$HD$H$(HL$HH$ HH\$ HT$(HD$0HL$8HHH$(H9H$ H$H$HH$H$H$HH$=ujH+H$H$H$@H$H$ HkHH$(HkPH$=u	Hk@LC@L$Hl$H$Hl$f~H$Hl$-EHtXHHH$HH$H$PHT$H$XHL$HL$HD$ H$H$HH$HH\$HH\$H\$H$H$H$H$H\$HD$H$H$H$HCH$HH$1H9HH$HH\$HH\$HH\$HD$ H\$(H|$HHHKHOH$H$H$xH$H$HL$H$HH$hH\$ H$pHL$(HD$0HL$8H$H$Ht)H$H$H$HHH$HD$H$0H$HD$HH$HD$H$(H$HD$H$H$H$H$Hkfl$FHH$H\$FH-f9H$H$H$0H$HH$1H9@HH$HH\$HH\$HH\$HD$ H\$(H|$HHHKHOH$H$H$xH$H$HL$H$HH$hH\$ H$pHL$(HD$0HL$8H$H$Ht)H$H$H$HH$0H$H$0HfZ1H$H$H$H/H$H$H$HH$HL$HD$H\$H$hH\$ H$pH$H$H$H$hH+H$p=HkHH$HD$1H$H\$H$H\$H$H\$ HL$(HD$0H$H$H$H$H$HLCL$Hl$fH$H$H$H$H$HHH$H	H$hHCH$p=H	HK H$H$H$H$H$H$H$HH$HhHl$HhHl$H\$H$0H\$ H$8H\$(H$@H$H$H$(H$H$8Hk0H$@Hk8H$0=cHk(HD$xH$H$H$H$HXHl$xH9HH$HD$H$H$H$H$HH$1H9uHH$HH\$HH\$HH\$HD$ H\$(H|$HHHKHOH$H$H$xH$H$HL$H$HH$hH\$ H$pHL$(HL$0HD$8H$PH$HHt)H$H$H$H1H$H$H$H$H$/HHHHH$HH$H$PHT$H$XHL$HL$HD$ H$H$H$HD$HD$H$H$H$H\$H$H\$HD$HL$ HD$(H$H$HH$H\$H$H5H$`H$H$`H$H$hH$H$H$H$X$pH$H$H$X$tH$H$H$X$xH$H$H$X$|H$H$H$X$H$H$H$X$H$H$ H$HX f$H$H$"H$HX"f$H$H$$H$]$$H$H$HD$0H$HH$`Hl$H\$HH$H$H$H$H$hH$H$H$H$kH$H$H$H$H$H\$XHl$hHH$HD$H$H$H$H$H+H$=HkH$H$H$H$Hl$XHhH$H$H$Hl$XHhH$H$ H$Hl$XLD$hLHh H$H$H$H$@H$HH$=Hk@HH$1H9aH$H$H$0H$H$H$@H$HJ@H$H$XHB0H$`=HJ8H$H$H$(H$HK(HC0Hk8H$@H$0Hl$xH$8H9HH$H$HtoHK(HC0Hk8H$@H$0Hl$xH$8H9s:HH$=uH+H\$xHH\$xH$Hl$LB8L$HL$HH$HH\$HH\$H\$H$eLC@L$Hl$4LCL$Hl$`EpHHH$HH$H$PHT$H$XHL$HL$HD$ H$H$mHH$HH\$HH\$H\$H$QH$1H$H$HLC(L$Hl$LC L$HL$yHH$HH\$HH\$H\$H$HH$H\$FH-f9=H$H$H$(H$HH$1H9HH$HH\$HH\$HH\$HD$ H\$(H|$HHHKHOH$H$H$xH$H$HL$H$HH$hH\$ H$pHL$(HD$0HL$8H$0H$(Ht)H$H$H$HH$(H$H$(HfZ1H$H$H$H/H$H$H$HH$HL$HD$H\$H$hH\$ H$pH$H$H$H$hH+H$p=HkHH$HD$2H$H\$H$H\$H$H\$ HL$(HD$0H$H$H$H$H$HLCL$Hl$fH$H$H$H$H$HHH$Ht=H$hHCH$p=u	HK (LC L$HL$HH$HH\$HH\$H\$H$HH$HH\$HH\$H\$H$HH$HH\$HH\$H\$H$HH$HH\$HH\$H\$H$HH$hH$p1H$HH$PHH$HD$H$H$H$H$pHkH$h=H+H$H$H1H9tQH$H$H$H$H$HH$H$PH$HHH$HH\$HH\$HD$H$Hl$OmE1LCL$Hl$
    307 ^
    308 *runtime.racefuncentertype."".File
    309 "runtime.newobject*type.io.SectionReader
    310 "runtime.newobject
    311 "runtime.racewrite6runtime.writeBarrierEnabled
    312 "runtime.racewrite
    313 "runtime.racewrite
    314 "runtime.racewritetype.[96]uint8
    315 "runtime.newobject
    316 ,runtime.racewriterange
    317 (runtime.racefuncexit	
    318  runtime.raceread	
    319  runtime.raceread
    320 8encoding/binary.LittleEndian
    321 
    322 *runtime.racereadrange
    324  runtime.raceread
    326  runtime.raceread
    328  runtime.raceread
    330  runtime.racereadtype.[4]uint8
    331 "runtime.newobject
    332 ,runtime.racewriterange
    333  runtime.raceread
    334  runtime.raceread
    335  runtime.raceread
    336  runtime.raceread
    337 0io.(*SectionReader).SeekFgo.itab.*io.SectionReader.io.ReaderBtype.encoding/binary.littleEndian<type.encoding/binary.ByteOrder|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder8encoding/binary.LittleEndian
    338 runtime.convT2I&type.*"".FileHeader
    339 (encoding/binary.Read
    340 (runtime.racefuncexit
    341  runtime.raceread
    342  runtime.raceread
    343  runtime.racereadFgo.string."Invalid PE File Format.".type.errors.errorString
    344 "runtime.newobject
    345 "runtime.racewrite6runtime.writeBarrierEnabledBgo.itab.*errors.errorString.error
    346 (runtime.racefuncexit0type.*errors.errorStringtype.errorBgo.itab.*errors.errorString.error
    347  runtime.typ2Itab
    348 .runtime.writebarrierptr 
    349  runtime.raceread!
    350  runtime.raceread!
    351  runtime.raceread"
    352 0io.(*SectionReader).Seek"type.uint32"
    353 "runtime.newobject"
    354 "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$
    355 runtime.convT2I%type.*uint32&
    356 (encoding/binary.Read'
    357 (runtime.racefuncexit'
    358  runtime.raceread(
    359  runtime.raceread(type.[]uint8(
    360 "runtime.makeslice)
    361  runtime.raceread)
    362  runtime.raceread+,
    363 (runtime.racefuncexit,
    364  runtime.raceread-
    365 0io.(*SectionReader).Seek-
    366  runtime.raceread.$type."".COFFSymbol.
    367 "runtime.newobject/Fgo.itab.*io.SectionReader.io.Reader/Btype.encoding/binary.littleEndian/<type.encoding/binary.ByteOrder0|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder08encoding/binary.LittleEndian0
    368 runtime.convT2I1&type.*"".COFFSymbol2
    369 (encoding/binary.Read3
    370 (runtime.racefuncexit4
    371  runtime.raceread5
    372  runtime.raceread5
    373  runtime.raceread6
    374  runtime.raceread68encoding/binary.LittleEndian7
    375 *runtime.racereadrange8
    376  runtime.raceread8
    377  runtime.raceread9
    378  runtime.raceread9
    379  runtime.raceread<
    380 "".getString=
    381  runtime.raceread=type."".Symbol=
    382 "runtime.newobject=
    383 "runtime.racewrite>6runtime.writeBarrierEnabled?
    384 "runtime.racewrite?
    385  runtime.raceread@
    386 "runtime.racewrite@
    387  runtime.racereadA
    388 "runtime.racewriteA
    389  runtime.racereadB
    390 "runtime.racewriteB
    391  runtime.racereadC
    392  runtime.racereadD"type.[]*"".SymbolE
    393 "runtime.growsliceF
    394 "runtime.racewriteG6runtime.writeBarrierEnabledG
    395 "runtime.racewriteH6runtime.writeBarrierEnabledH
    396 .runtime.writebarrierptrH
    397 .runtime.writebarrierptrI
    398 $runtime.panicsliceI
    399 .runtime.writebarrierptrJ
    400 $runtime.panicindexJ
    401 $runtime.panicindexJ
    402 $runtime.panicindexJ
    403 $runtime.panicindexJ
    404 $runtime.panicindexJ
    405 $runtime.panicindexJ
    406 $runtime.panicindexJ
    407 $runtime.panicindexK
    408 "".cstringL,type.*io.SectionReaderLtype.io.ReaderLFgo.itab.*io.SectionReader.io.ReaderM
    409  runtime.typ2ItabN
    410 0io.(*SectionReader).SeekNFgo.itab.*io.SectionReader.io.ReaderOBtype.encoding/binary.littleEndianO<type.encoding/binary.ByteOrderO|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrderO8encoding/binary.LittleEndianP
    411 runtime.convT2IQ&type.*"".FileHeaderQ
    412 (encoding/binary.ReadR
    413 (runtime.racefuncexitS0type."".OptionalHeader32S
    414 "runtime.newobjectS
    415 ,runtime.racewriterangeS0type."".OptionalHeader64S
    416 "runtime.newobjectT
    417 ,runtime.racewriterangeT
    418  runtime.racereadU2"".sizeofOptionalHeader32U
    419  runtime.racereadU2"".sizeofOptionalHeader32VFgo.itab.*io.SectionReader.io.ReaderVBtype.encoding/binary.littleEndianV<type.encoding/binary.ByteOrderV|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrderW8encoding/binary.LittleEndianW
    420 runtime.convT2IX2type.*"".OptionalHeader32Y
    421 (encoding/binary.ReadZ
    422 (runtime.racefuncexitZ
    423  runtime.raceread\type.uint16\
    424 runtime.convT2E]
    425 "runtime.racewrite]6runtime.writeBarrierEnabled]zgo.string."pe32 optional header has unexpected Magic of 0x%x"^
    426 fmt.Errorf_
    427 (runtime.racefuncexit`
    428 .runtime.writebarrierptr`
    429 "runtime.racewritea2type.*"".OptionalHeader32a6runtime.writeBarrierEnabledb
    430  runtime.racereadb
    431  runtime.racereadb$type.[]*"".Sectionc
    432 "runtime.makesliced
    433 "runtime.racewritee6runtime.writeBarrierEnablede
    434  runtime.racereadf.type."".SectionHeader32f
    435 "runtime.newobjectgFgo.itab.*io.SectionReader.io.ReadergBtype.encoding/binary.littleEndiang<type.encoding/binary.ByteOrderg|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrderg8encoding/binary.LittleEndianh
    436 runtime.convT2Ii0type.*"".SectionHeader32j
    437 (encoding/binary.Readk
    438 (runtime.racefuncexitk
    439  runtime.racereadm
    440 "".cstringm
    441 strconv.Atoin
    442 "".getStringntype."".Sectiono
    443 "runtime.newobjecto""".statictmp_0130o
    444  runtime.duffcopyp
    445  runtime.racereadp
    446  runtime.racereadq
    447  runtime.racereadq
    448  runtime.racereadr
    449  runtime.racereadr
    450  runtime.racereads
    451  runtime.racereadt
    452  runtime.racereadt
    453  runtime.racereadu
    454 ,runtime.racewriterangeu*type."".SectionHeaderv
    455 (runtime.typedmemmovev
    456  runtime.racereadv
    457  runtime.racereadw*type.io.SectionReaderx
    458 "runtime.newobjectx
    459 "runtime.racewritex6runtime.writeBarrierEnabledy
    460 "runtime.racewritey
    461 "runtime.racewritez
    462 "runtime.racewrite{
    463 "runtime.racewrite{6runtime.writeBarrierEnabled|Jgo.itab.*io.SectionReader.io.ReaderAt|
    464 "runtime.racewrite}
    465  runtime.raceread}6runtime.writeBarrierEnabled~
    466  runtime.raceread
    467 "runtime.racewrite6runtime.writeBarrierEnabled
    468 .runtime.writebarrierptr
    469 $runtime.panicindex
    470 $runtime.panicindex
    471 .runtime.writebarrierptr,type.*io.SectionReader type.io.ReaderAtJgo.itab.*io.SectionReader.io.ReaderAt
    472  runtime.typ2Itab
    473 .runtime.writebarrierptr
    474 .runtime.writebarrierptr
    475 "".cstring,type.*io.SectionReadertype.io.ReaderFgo.itab.*io.SectionReader.io.Reader
    476  runtime.typ2Itab
    477 (runtime.racefuncexit
    478 .runtime.writebarrierptr
    479 .runtime.writebarrierptr,type.*io.SectionReadertype.io.ReaderFgo.itab.*io.SectionReader.io.Reader
    480  runtime.typ2Itab2"".sizeofOptionalHeader64
    481  runtime.raceread2"".sizeofOptionalHeader64Fgo.itab.*io.SectionReader.io.ReaderBtype.encoding/binary.littleEndian<type.encoding/binary.ByteOrder|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrder8encoding/binary.LittleEndian
    482 runtime.convT2I2type.*"".OptionalHeader64
    483 (encoding/binary.Read
    484 (runtime.racefuncexit
    485  runtime.racereadtype.uint16
    486 runtime.convT2E
    487 "runtime.racewrite6runtime.writeBarrierEnabled|go.string."pe32+ optional header has unexpected Magic of 0x%x"
    488 fmt.Errorf
    489 (runtime.racefuncexit
    490 .runtime.writebarrierptr
    491 "runtime.racewrite2type.*"".OptionalHeader646runtime.writeBarrierEnabled
    492 .runtime.writebarrierptr,type.*io.SectionReadertype.io.ReaderFgo.itab.*io.SectionReader.io.Reader
    493  runtime.typ2Itab,type.*io.SectionReadertype.io.ReaderFgo.itab.*io.SectionReader.io.Reader
    494  runtime.typ2Itab,type.*io.SectionReadertype.io.ReaderFgo.itab.*io.SectionReader.io.Reader
    495  runtime.typ2Itab,type.*io.SectionReadertype.io.ReaderFgo.itab.*io.SectionReader.io.Reader
    496  runtime.typ2ItabFgo.string."Invalid PE File Format.".type.errors.errorString
    497 "runtime.newobject
    498 "runtime.racewrite6runtime.writeBarrierEnabledBgo.itab.*errors.errorString.error
    499 (runtime.racefuncexit0type.*errors.errorStringtype.errorBgo.itab.*errors.errorString.error
    500  runtime.typ2Itab
    501 .runtime.writebarrierptr
    502 $runtime.panicindex
    503 $runtime.panicindex
    504 $runtime.panicindex
    505 $runtime.panicindex
    506 $runtime.panicindex
    507 $runtime.panicindex
    508 $runtime.panicindex
    509 $runtime.panicindex
    510 .runtime.writebarrierptr
    511 0runtime.morestack_noctxtP"".autotmp_0135type.*uint8"".autotmp_0134,type.*io.SectionReader"".autotmp_0133,type.*io.SectionReader"".autotmp_0131type.int64"".autotmp_0129type.*uint8"".autotmp_0128"type.interface {}"".autotmp_0127(type.[1]interface {}"".autotmp_0125*type.*[1]interface {}"".autotmp_0124&type.[]interface {}"".autotmp_0123type.*uint8"".autotmp_0122"type.interface {}"".autotmp_0121(type.[1]interface {}"".autotmp_0118&type.[]interface {}"".autotmp_0117type.*uint8"".autotmp_0116
type.uint16"".autotmp_0115type.*uint8"".autotmp_0114type.int"".autotmp_0113"type.[]*"".Symbol"".autotmp_0112
    514 type.*"".Symbol"".autotmp_0111type.uint32"".autotmp_0110type.*uint8"".autotmp_0109type.*uint8"".autotmp_0108type.*uint8"".autotmp_0107type.error"".autotmp_01060type.*errors.errorString"".autotmp_0105type.*uint8"".autotmp_0104
    515 type.*uint8"".autotmp_0103type.error"".autotmp_0102
    516 0type.*errors.errorString"".autotmp_0100
    517 ,type.*io.SectionReader"".autotmp_0099,type.*io.SectionReader"".autotmp_0098type.int"".autotmp_0097_*type."".SectionHeader"".autotmp_0095type.string"".autotmp_0094type.[]uint8"".autotmp_0093type.string"".autotmp_0092type.int"".autotmp_0091type.string"".autotmp_0090type.[]uint8"".autotmp_0089type.error"".autotmp_00880type.*"".SectionHeader32"".autotmp_0087,type.*io.SectionReader"".autotmp_0086
    518 0type.*"".SectionHeader32"".autotmp_0085$type.[]*"".Section"".autotmp_00842type.*"".OptionalHeader64"".autotmp_0083type.error"".autotmp_0082type.error"".autotmp_0081
    519 2type.*"".OptionalHeader64"".autotmp_0080,type.*io.SectionReader"".autotmp_00792type.*"".OptionalHeader32"".autotmp_0078type.error"".autotmp_0077type.error"".autotmp_0076
    520 2type.*"".OptionalHeader32"".autotmp_0075,type.*io.SectionReader"".autotmp_0074type.error"".autotmp_0073&type.*"".FileHeader"".autotmp_0072,type.*io.SectionReader"".autotmp_0071type.int"".autotmp_0070type.string"".autotmp_0069type.[]uint8"".autotmp_0068type.string"".autotmp_0067type.[]uint8"".autotmp_0065type.error"".autotmp_0064&type.*"".COFFSymbol"".autotmp_0063,type.*io.SectionReader"".autotmp_0062
    522 &type.*"".COFFSymbol"".autotmp_0061type.error"".autotmp_0060type.[]uint8"".autotmp_0059type.error"".autotmp_0058	type.*uint32"".autotmp_0057,type.*io.SectionReader"".autotmp_00560type.*errors.errorString"".autotmp_0055type.error"".autotmp_0054	&type.*"".FileHeader"".autotmp_0053,type.*io.SectionReader"".autotmp_00520type.*errors.errorString"".autotmp_0051type.[]uint8"".autotmp_0050type.[]uint8"".autotmp_0049type.error"".autotmp_0048type.[]uint8"".&oh64	2type.*"".OptionalHeader64"".&oh32	2type.*"".OptionalHeader32
    523 "".&l	type.*uint32"".&sign	type.*[4]uint8"".&dosheader	type.*[96]uint8"".~r0,type.*io.SectionReaderio.n4type.int64io.off3type.int64io.r2 type.io.ReaderAt(encoding/binary.b2type.[]uint8"".~r0type.errorerrors.text2type.string"".~r0	type.errorerrors.text2type.string(encoding/binary.b2type.[]uint8io.n4type.int64io.off3type.int64io.r2 type.io.ReaderAt"".s type.*"".Section"".nametype.string"".errtype.error
    534 "".sh0type.*"".SectionHeader32"".itype.int"".errtype.error"".errtype.error"".errtype.error"".stype.*"".Symbol"".nametype.string"".errtype.error
    542 "".cs&type.*"".COFFSymbol"".itype.int"".aux
type.uint8"".errtype.error"".errtype.error
    549 "".sstype.[]uint8"".errtype.error"".signoff
type.int64"".basetype.int64"".errtype.error
    554 "".sr,type.*io.SectionReader"".ftype.*"".File"".~r20type.error"".~r1 type.*"".File"".r type.io.ReaderAt"
P"/IE_/k	'gJ"V&o@8
    560 E]J'h799G	/0/0Y:6'lk//('^](XW&g:43%lJ4(     ## 45656:S:6';:'NM(HG&_:AQ:A
J.wBooA0
    566 B
    567 "nwoA7=
    568 oFL 07B>L934
    569 3z,K9oA /oA34y+l;*_/:X9>oAS+TW4Bu[e	GhoF
G1OK$"oAEFy	+l;*X714:A:V0
    572 &[#Tgclocalsef7c4dc6dd1388370f1798e3ff8d023eTgclocalsdac0cfff4cd0862b1bab38b9b68a2c9cVprebuilts/go/linux-x86/src/debug/pe/file.go"".cstringdH%H;aHPH\$PH$Ht$XHT$`1H\$pH\$x1H9}CHD$0H9HH$Ht$XHT$`HD$0H9snHtHH9|Hl$hH9wIH$Ht$8Ht$HD$@HD$Hl$HHl$H\$ H\$pH\$(H\$xHP	
    577 B
    578 *runtime.racefuncenter
    579  runtime.raceread
    580 2runtime.slicebytetostring
    581 (runtime.racefuncexit
    582 $runtime.panicslice
    583 $runtime.panicindex
    584 $runtime.panicindex
    585 0runtime.morestack_noctxtP
    586 "".autotmp_0176/type.[]uint8"".autotmp_0174type.int"".i?type.int"".~r10type.string"".btype.[]uint8( ;JI 
    589 (Tgclocalscfd97ba95bb5326c9855399a9aeae1e4Tgclocalsf56b2291fa344104975cb6587be42b9bVprebuilts/go/linux-x86/src/debug/pe/file.go"".getStringdH%H;asHPH\$PH$HL$pHt$XHT$`1H\$xH$HH9HH9HD$0H9HH$Ht$XHD$0HT$`H9HH\$pLD$hHL9wlH9wgH)I)IItMH$LL$8LL$Hl$@Hl$LD$HLD$H\$ H\$xH\$(H$$HPHH9,1H\$xH$$HP1H\$xH$$HPp
    595 B
    596 *runtime.racefuncenter
    597  runtime.raceread
    598 2runtime.slicebytetostring
    599 (runtime.racefuncexit
    600 $runtime.panicslice
    601 (runtime.racefuncexit
    602 $runtime.panicindex
    603 $runtime.panicindex
    604 (runtime.racefuncexit
    605 0runtime.morestack_noctxtp"".autotmp_0180type.int"".autotmp_0179/type.[]uint8"".autotmp_0178type.int"".end?type.int"".~r3`type.bool"".~r2@type.string"".start0type.int"".sectiontype.[]uint823.
    609 DCt
    613 !
    614   
    615 *
    616 %Tgclocalse164b25facb10da87beb89b155f2475eTgclocalsf56b2291fa344104975cb6587be42b9bVprebuilts/go/linux-x86/src/debug/pe/file.go$"".(*File).SectiondH%H;aFHpH\$pH$H\$xH$H$(H\$xHHS(HC0Hk8Hl$h1HD$`HD$(HT$XHHL$0Hl$(H9HD$@H$H\$@H+Hl$8H,$H$H\$8HHHT$HHCHD$PH9uAH$HD$H$Hl$HL$\$ tH\$8H$HpHD$@HL$0HHHL$0Hl$(H9JH$Hph
    619 B
    620 *runtime.racefuncenterh
    621  runtime.raceread
    622  runtime.raceread
    623  runtime.raceread
    624  runtime.eqstring
    625 (runtime.racefuncexit
    626 (runtime.racefuncexit
    627 0runtime.morestack_noctxt@"".autotmp_0186Otype.string"".autotmp_0184_"type.**"".Section"".autotmp_0183type.int"".autotmp_0182type.int"".autotmp_0181/$type.[]*"".Section"".so type.*"".Section"".~r10 type.*"".Section"".nametype.string"".ftype.*"".File&9%4	pe
$
    631  hiiTgclocals6c663c8c96689a2fcfc7e468bda6a1bbTgclocals41aa2c1041551573da6b5bc2bc8eb895Vprebuilts/go/linux-x86/src/debug/pe/file.go "".(*File).DWARFdH%H$H;AHH$H$1H$H$1LIL
IH5HHHH$1L$L$HL$L$PL$L$XL$ L$`H$(H$hH$0H$pH$8H$xH$@H$1H$H$HHH$H$H9H$H$H$HhHHkH$H$H$(H$0H$HH\$HD$H$HL$H$Hl$ HL$(HD$0H$H$H$HL$H$HD$HD$1H9!H$H$HHH$H$H9L$L$L$H$H$H$H$H$H$L$L$L$L$L$L$H$H$H$H$H$H$L$L,$L$Ld$L$L\$1H\$H\$ H\$(1H\$0H\$8H\$@L$xLT$HL$LL$PL$LD$XH$`H|$`H$hHt$hH$pHl$p1H\$xH$H$1H$H$H$H$HH$H$PH$H$XH$H$H$H$H$H$8H$H$@H$HH$H$H$Ht$Hl$HT$HL$ HD$(H$H$H$H$ H$HthH$H<$H$H$H$o9s9H$H$H$H$ H$HH<$H$H$XvfH$H$H$H$H$H$Xh9s0H$H$H$kH$H9wTH$H$H$Hs/HkHH$H+H$HkH$HkN$.
    637 ^
    638 *runtime.racefuncenter$go.string."abbrev" go.string."info" go.string."line"go.string."str"
    639  runtime.duffzero
    640  runtime.raceread&go.string.".debug_"
    641 *runtime.concatstring2
    642 $"".(*File).Section
    643 debug/dwarf.New
    644 (runtime.racefuncexit
    645 $"".(*Section).Data
    646  runtime.raceread
    647 (runtime.racefuncexit
    648  runtime.raceread
    649  runtime.raceread
    650  runtime.raceread
    651  runtime.raceread
    652 $runtime.panicindex
    653 $runtime.panicslice
    654 0runtime.morestack_noctxt@4"".autotmp_0203type.[]uint8"".autotmp_0202type.[]uint8"".autotmp_0201type.[]uint8"".autotmp_0200type.string"".autotmp_0199type.*string"".autotmp_0198type.int"".autotmp_0197type.int"".autotmp_0196type.error"".autotmp_0194type.error"".autotmp_0191type.int"".autotmp_0189type.[]uint8"".autotmp_0187type.[4]string"".strtype.[]uint8"".linetype.[]uint8"".infotype.[]uint8"".abbrevtype.[]uint8"".errtype.error"".btype.[]uint8"".s type.*"".Section"".nametype.string"".itype.int"".dattype.[4][]uint8"".namestype.[4]string"".~r1 type.error"".~r0,type.*debug/dwarf.Data"".ftype.*"".File*"n".-:F00 R=,T0@0.E	eJ#Tgclocalsd360b7e350619ca924b7530d280a9798Tgclocals0e3994209607ed7a7ae400007ece91adVprebuilts/go/linux-x86/src/debug/pe/file.go4"".(*File).ImportedSymbolsRQdH%H$@H;AQH@H$@H$1H$PH$XH$`1H$hH$pH$HH$H$HHfdD$KH$HH\$HD$HD$1H9u91H$PH$XH$`1H$hH$pH@HD$pH$Ht$Hl$HT$HD$ HL$(H$H$H$H$H$Ht71H$PH$XH$`H$hH$pH@1H$H$H$H$Hp1$$$$$H$H$HH$HD$H$HdH$HH$HH$8HH$@,H,$H$8H$@HH$H$8H$@HH$H$8H$@HH$H$8H$@HHHkHm	HHKHm	HH*Hm	$HH$HD$H$HH$HHtHHH$xH$hHH$pH,$H$hH$pwHH$H$hH$pMHH$H$hH$p"HH$H$hH$pHHHHm	HHHm	HHHm	$HH$HD$H$HVH$HHtHHH$H$HH$H,$H$H$HH$H$H$HH$H$H$HH$H$H$HfHHOHm	HH/Hm	HHHm	$H$H$H
L$HHHtIH$H$L$$!H\$pH$HT$HL$HD$H$H$H$1H$H$H$H$H$H$H$1H$HD$hH$HHL$`Hl$hH9HD$xH$HD$(H\$xHXDDC{sSHKHk D$D$D$D$$ $$$$$($H$0H$H$8H$H\$pH$H$H$H$H$H\$H$H\$$LD$pAh)H\$HL$ HD$(H$H$H\$pH$HT$HL$HD$H$H$H$H\$pH$H$$LD$pAh)H$L$H9	L$H)I)ItMH$L$L$H$H|$KHH$HD$H$HzH$HH$`H$PHH$XBH,$H$PH$XHH$H$PH$XHH$H$PH$XHH$H$PH$XHH$H$PH$XpHH$H$PH$XEHH$H$PH$XHH$H$PH$XHHHHmHH	HHHmHH	HHHmHH	HHmHmH H	HHJHmH(H	HH'HmH0H	HHHmH8H	HH$H$HL$HHHtIH$H$L$HusHD$xHL$`H(HHL$`Hl$hH9pH$H$PH$H$XH$H$`1H$hH$pH@HHD$PH!HH\$pH$H$H$H$H$H\$H$H\$H\$PLD$pAh)H\$HL$ HD$(H$H$HL$H$HD$HH\$HD$ H$H|$(HHHKHOH\$8H$H\$@H$H$H$H$HH)H}QHH$H$HT$HD$H$HL$HH$HH\$ HT$(HD$0HL$8HHH$H9H$HH$HHD$XHHH$H$Hl$XHHH$HkH$=u8H+H$H$H$H$H$H$H$Hl$HH$HD$H$HH$HH$0H$ HH$(H,$H$ H$(cHH$H$ H$(9HH$H$ H$(HH$H$ H$(HHHHm	HHHm	HHHm	H$H$HXL$HHHtIH$H$L$XD$LH\$pH$H$H$H$H$H\$H$H\$Hl$p]l$L)H\$HL$ HD$(H$H$HL$H$HD$HH\$HD$ H$H|$(HHHKHOH\$8H$H\$@H$H$H$H$HH)H}QHH$H$HT$HD$H$HL$HH$HH\$ HT$(HD$0HL$8HHH$H9H$HH$HHD$XHHH$H$Hl$XHHH$HkH$=u8H+H$H$H$H$H$H$H$Hl$H$H$H$HH)H}QHH$H$HT$HD$H$HL$HH$HH\$ HT$(HD$0HL$8HHH$H9H$HH$HHD$`Hk(HH$HD$(H$Hl$`Hk(H$+$k$k$k$kH$Hk H$=u9HkH$H$H$H$H$H$LCL$Hl$
    741 ^
    742 *runtime.racefuncenter
    743  runtime.raceread$go.string.".idata"
    744 $"".(*File).Section
    745 (runtime.racefuncexit
    746 $"".(*Section).Data
    747 (runtime.racefuncexit8encoding/binary.LittleEndian
    748 *runtime.racereadrange
    749  runtime.raceread	
    750  runtime.raceread	
    751  runtime.raceread
    752 
    753  runtime.raceread8encoding/binary.LittleEndian
    756 *runtime.racereadrange
    757  runtime.raceread
    758  runtime.raceread
    759  runtime.raceread
    760  runtime.raceread8encoding/binary.LittleEndian
    761 *runtime.racereadrange
    762  runtime.raceread
    763  runtime.raceread
    764  runtime.raceread
    765  runtime.raceread
    766 $"".(*Section).Data
    767 *runtime.racereadrange
    768  runtime.raceread
    769 "".getString
    770 $"".(*Section).Data 
    771  runtime.raceread"8encoding/binary.LittleEndian"
    772 *runtime.racereadrange#
    773  runtime.raceread$
    774  runtime.raceread$
    775  runtime.raceread%
    776  runtime.raceread%
    777  runtime.raceread&
    778  runtime.raceread&
    779  runtime.raceread'
    780  runtime.raceread.
    781 (runtime.racefuncexit.
    782  runtime.raceread/
    783 "".getString0go.string.":"1
    784 *runtime.concatstring32type.[]string3
    785 "runtime.growslice4
    786 "runtime.racewrite56runtime.writeBarrierEnabled6
    787 .runtime.writebarrierptr6
    788 $runtime.panicslice6
    789 $runtime.panicslice6
    790 $runtime.panicindex7
    791 $runtime.panicindex7
    792 $runtime.panicindex7
    793 $runtime.panicindex7
    794 $runtime.panicindex7
    795 $runtime.panicindex7
    796 $runtime.panicindex7
    797 $runtime.panicindex7
    798 $runtime.panicindex7
    799 $runtime.panicindex8
    800 $runtime.panicindex8
    801 $runtime.panicindex8
    802 $runtime.panicindex8
    803 $runtime.panicindex8
    804 $runtime.panicindex8
    805 $runtime.panicindex8
    806 $runtime.panicslice88encoding/binary.LittleEndian9
    807 *runtime.racereadrange:
    808  runtime.raceread:
    809  runtime.raceread;
    810  runtime.raceread;
    811  runtime.raceread?
    812  runtime.raceread@
    813 "".getStringAgo.string.":"B
    814 *runtime.concatstring3Ctype.[]stringD
    815 "runtime.growsliceE
    816 "runtime.racewriteF6runtime.writeBarrierEnabledG
    817 .runtime.writebarrierptrG
    818 $runtime.panicsliceG
    819 $runtime.panicsliceG
    820 $runtime.panicindexG
    821 $runtime.panicindexG
    822 $runtime.panicindexG
    823 $runtime.panicindexH
    824 $runtime.panicindexH
    825 $runtime.panicindexH
    826 $runtime.panicindexH
    827 $runtime.panicindexH
    828 $runtime.panicsliceH
    829 $runtime.panicsliceI2type.[]"".ImportDirectoryJ
    830 "runtime.growsliceK
    831 ,runtime.racewriterangeM6runtime.writeBarrierEnabledN
    832 .runtime.writebarrierptrN
    833 $runtime.panicsliceN
    834 $runtime.panicsliceN
    835 $runtime.panicindexN
    836 $runtime.panicindexN
    837 $runtime.panicindexO
    838 $runtime.panicindexO
    839 $runtime.panicindexO
    840 $runtime.panicindexO
    841 $runtime.panicindexO
    842 $runtime.panicindexO
    843 $runtime.panicsliceO
    844 $runtime.panicindexO
    845 $runtime.panicindexO
    846 $runtime.panicindexP
    847 $runtime.panicindexP
    848 $runtime.panicindexP
    849 $runtime.panicindexP
    850 $runtime.panicindexP
    851 $runtime.panicindexP
    852 $runtime.panicsliceP
    853 $runtime.panicindexP
    854 $runtime.panicindexP
    855 $runtime.panicindexQ
    856 $runtime.panicindexQ
    857 $runtime.panicindexQ
    858 $runtime.panicindexQ
    859 $runtime.panicindexQ
    860 $runtime.panicindexQ
    861 $runtime.panicsliceQ
    862 0runtime.morestack_noctxt`	b"".autotmp_0237type.int"".autotmp_0236type.[]string"".autotmp_0235type.string"".autotmp_0234type.uint32"".autotmp_0233type.int"".autotmp_0232type.[]string"".autotmp_0231type.string"".autotmp_0229O.type."".ImportDirectory"".autotmp_02280type.*"".ImportDirectory"".autotmp_0227type.int"".autotmp_0226type.int"".autotmp_0225type.int"".autotmp_02242type.[]"".ImportDirectory"".autotmp_0223type.uint32"".autotmp_0222type.uint32"".autotmp_0220type.string"".autotmp_0219type.[]uint8"".autotmp_0218type.string"".autotmp_0217type.[]uint8"".autotmp_0215type.uint32"".autotmp_0214type.[]uint8"".autotmp_0213type.string"".autotmp_02122type.[]"".ImportDirectory"".autotmp_0211type.[]uint8"".autotmp_0210type.[]uint8"".autotmp_0209type.[]uint8"".autotmp_0208type.[]uint8"".autotmp_0207type.int(encoding/binary.b2type.[]uint8(encoding/binary.b2type.[]uint8(encoding/binary.b2type.[]uint8(encoding/binary.b2type.[]uint8(encoding/binary.b2type.[]uint8
    863 "".fntype.string
    864 "".vatype.uint32
    865 "".fntype.string
    866 "".vatype.uint64
    867 "".dt.type."".ImportDirectory"".alltype.[]string"".namestype.[]uint8
    869 "".dt.type."".ImportDirectory"".ida2type.[]"".ImportDirectory"".errtype.error"".dtype.[]uint8
    872 "".ds type.*"".Section"".pe64type.bool"".~r1@type.error"".~r0type.[]string"".ftype.*"".File8"				)"xw,'#,nmG*fe5B<;aP:9aP87aL
    875 5o5nL$FO-bwL	`/0?87:9<;.vLZZ7Qw!L
    877 	Qw!ZTgclocals58880d1014ff7703d0d5c04ae9912065Tgclocals9b8e7d05a45b0fb36575ce8967bea642Vprebuilts/go/linux-x86/src/debug/pe/file.go8"".(*File).ImportedLibrariesdH%H;av=HH\$H$111H\$H\$ H\$(1H\$0H\$8H
    879 :
    880 *runtime.racefuncenter
    881 (runtime.racefuncexit
    882 0runtime.morestack_noctxt`"".~r1@type.error"".~r0type.[]string"".ftype.*"".File8`'&Tgclocals18e6f963be655e2098768c933b06e181Tgclocals69c1753bd5f81501d95132d08af04464Vprebuilts/go/linux-x86/src/debug/pe/file.go"".initdH%H$H;AHH$H$HH$t0HH$u
HHH$H|$01HH$H\$0H\$HD$H\$HH$HKHL$H\$H\$(HH$H\$(fH$1HHH$H$H\$HD$H\$HH$HKHL$H\$H\$(HH$H\$(fHH$H6L
    892 ^
    893 *runtime.racefuncenterl"".initdone~
    894  runtime.raceread"".initdone"".initdone
    895  runtime.raceread"".initdone
    896 (runtime.racefuncexit
    897 "runtime.throwinit"".initdone
    898 "runtime.racewrite"".initdone
    899  debug/dwarf.init
    900 (encoding/binary.init
    901 fmt.init
    902 io.init
    903 os.init
    904 strconv.init
    905  runtime.duffzero0type."".OptionalHeader32
    906 runtime.convT2E
    907 (encoding/binary.Size2"".sizeofOptionalHeader32
    908 "runtime.racewrite2"".sizeofOptionalHeader32
    909  runtime.duffzero0type."".OptionalHeader64
    910 runtime.convT2E
    911 (encoding/binary.Size2"".sizeofOptionalHeader64
    912 "runtime.racewrite2"".sizeofOptionalHeader64"".initdone
    913 "runtime.racewrite"".initdone
    914 (runtime.racefuncexit
    915 0runtime.morestack_noctxt"".autotmp_0241type.int"".autotmp_02400type."".OptionalHeader64"".autotmp_0239type.int"".autotmp_02380type."".OptionalHeader32&"U4oy
    917 4.Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cbRprebuilts/go/linux-x86/src/debug/pe/pe.goVprebuilts/go/linux-x86/src/debug/pe/file.go6type..hash."".SectionHeaderdH%H;aH H\$ H$H\$(H$H<$tcH\$0H\$HD$H\$(H$H<$t6H$HD$0HD$HD$ HD$HD$0HD$8H %%U
    921 B
    922 *runtime.racefuncenter
    923 runtime.strhash
    924 runtime.memhash
    925 (runtime.racefuncexit
    926 0runtime.morestack_noctxt0@"".autotmp_0243type.uintptr"".~r2 type.uintptr"".htype.uintptr"".p,type.*"".SectionHeader@w?@! Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbVprebuilts/go/linux-x86/src/debug/pe/file.go2type..eq."".SectionHeaderdH%H;a5HHH\$HH$H\$PH$H\$PHH+Hl$8HkHl$@H\$XH$HT$@H\$XHHHL$(HCHD$0H9Hl$8H,$HT$HL$HD$\$ tuH\$PH$H<$t\H$H\$XH\$H|$t<HD$HD$ \$uD$`HHD$`HH%%D$`HH4
    931 B
    932 *runtime.racefuncenter^
    933  runtime.raceread
    934  runtime.raceread
    935  runtime.eqstring
    936  runtime.memequal
    937 (runtime.racefuncexit
    938 (runtime.racefuncexit
    939 (runtime.racefuncexit
    940 0runtime.morestack_noctxt0
    941 "".autotmp_0246?type.string"".autotmp_0245type.string"".~r2 type.bool"".q,type.*"".SectionHeader"".p,type.*"".SectionHeader2 & <KTgclocals51af24152615272c3d9efc8538f95767Tgclocals44750c784da4dd430afdd97fea5c405aVprebuilts/go/linux-x86/src/debug/pe/file.go*type..hash."".SectiondH%H;aH H\$ H$H\$(H$H<$H\$0H\$HD$H\$(H$H<$thH$0HD$0HD$HD$H\$(H$H<$t6H$@HD$0HD$HD$HD$HD$0HD$8H %%%_
    944 B
    945 *runtime.racefuncenter
    946 6type..hash."".SectionHeader
    947 "runtime.interhash
    948 runtime.memhash
    949 (runtime.racefuncexit
    950 0runtime.morestack_noctxt0@
    951 "".autotmp_0249type.uintptr"".autotmp_0248type.uintptr"".~r2 type.uintptr"".htype.uintptr"".p type.*"".Section@?@4 Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbVprebuilts/go/linux-x86/src/debug/pe/file.go&type..eq."".SectiondH%H;azHHH\$HH$HL$PHRH\$XH<H$H\$\$uD$`HHH\$XH$H$0H\$XHHk0Hl$8Hk8Hl$@H\$PH$H$0HT$8H\$PHHC0HK8HL$0HD$(H9H$HL$HT$Hl$@Hl$\$ t[H\$PH$H$@H\$XH$H$@Hl$PH]@LD$XIh@H9tD$`HHD$`HHD$`HHM
i
    957 B
    958 *runtime.racefuncenter
    959 2type..eq."".SectionHeader
    960 (runtime.racefuncexit
    961  runtime.raceread
    962  runtime.raceread
    963 runtime.ifaceeq
    964  runtime.raceread
    965  runtime.raceread
    966 (runtime.racefuncexit
    967 (runtime.racefuncexit
    968 (runtime.racefuncexit
    969 0runtime.morestack_noctxt0
    970 "".autotmp_0253? type.io.ReaderAt"".autotmp_0252 type.io.ReaderAt"".~r2 type.bool"".q type.*"".Section"".p type.*"".Section>R/ LTgclocals51af24152615272c3d9efc8538f95767Tgclocals2c78d3ad9d760b5f66e2e47be684c787Vprebuilts/go/linux-x86/src/debug/pe/file.go("".(*Section).ReadAtdH%H;aH`HY Ht
H|$hH9;uH#H\$`H$11H$H$H\$hH$H$0H\$hHHK0Hk8H\$pH\$H\$xH\$H$H\$H$H\$ Hl$HH,$HL$@HY HD$(HT$0HL$8H$HT$PH$HL$XH$H`t
    975 n
    976 *runtime.racefuncenter
    977  runtime.raceread
    978 (runtime.racefuncexit
    979 0runtime.morestack_noctxt"".autotmp_0255type.errorio.err`type.errorio.nPtype.intio.off@type.int64io.ptype.[]uint8""..this type.*"".Section6$Tgclocals105f3855eb890a8acc612838e7807774Tgclocals64ca935d1a2110a30e2d604686188539<autogenerated>""".Section.ReadAtdH%H;aH`HY Ht
H|$hH9;uH#H\$`H$11H$H$H$H$H$H\$H$H\$H$H\$H$H\$ HD$HH$HL$@HY HD$(HT$0HL$8H$HT$PH$HL$XH$H`
    985 
    986 n
    987 *runtime.racefuncenter
    988 (runtime.racefuncexit
    989 0runtime.morestack_noctxt"".autotmp_0260type.errorio.errtype.errorio.ntype.intio.offtype.int64io.ptype.[]uint8""..thistype."".Section6Tgclocals231c104d478bca39ed03121924bee5dcTgclocals64ca935d1a2110a30e2d604686188539<autogenerated>2type..hash."".FormatErrordH%H;aH H\$ H$H\$(H$H<$H\$0H\$HD$HD$H\$(H$H<$t_H$HD$0HD$HD$H\$(H$H<$t-H$HD$0HD$HD$HD$0HD$8H %%%_
    994 B
    995 *runtime.racefuncenter
    996 runtime.memhash
    997 runtime.strhash
    998 (runtime.nilinterhash
    999 (runtime.racefuncexit
   1000 0runtime.morestack_noctxt0@
   1001 "".autotmp_0266type.uintptr"".autotmp_0265type.uintptr"".~r2 type.uintptr"".htype.uintptr"".p(type.*"".FormatError@?@4 Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbVprebuilts/go/linux-x86/src/debug/pe/file.go.type..eq."".FormatErrordH%H;aHhH\$hH$H\$pH$H\$xH$HD$pHLD$xI(H9t$HhH$H$H\$pH\HkHl$XHkHl$`H\$xH$H$HT$`H\$xHHKHL$HHCHD$PH9Hl$XH,$HT$HL$HD$\$ H\$xH$H$H\$xHHkHl$8Hk Hl$@H\$pH$H$HT$8H\$pHtbHCHK HL$0HD$(H9u9H$HL$HT$Hl$@Hl$\$ t$Hh$Hh^$Hh
   1005 B
   1006 *runtime.racefuncenter^
   1007  runtime.racereadz
   1008  runtime.raceread
   1009 (runtime.racefuncexit
   1010  runtime.raceread
   1011  runtime.raceread
   1012  runtime.eqstring
   1013  runtime.raceread
   1014  runtime.raceread
   1015 runtime.efaceeq
   1016 (runtime.racefuncexit
   1017 (runtime.racefuncexit
   1018 (runtime.racefuncexit
   1019 0runtime.morestack_noctxt0"".autotmp_0270"type.interface {}"".autotmp_0269_"type.interface {}"".autotmp_0268?type.string"".autotmp_0267type.string"".~r2 type.bool"".q(type.*"".FormatError"".p(type.*"".FormatError>P& LUDvTgclocals9c91d8a91ac42440a3d1507bc8d2e808Tgclocals709ced5e74cbe4c0afb97d3c39ba72fdVprebuilts/go/linux-x86/src/debug/pe/file.go4type..hash.[1]interface {}dH%H;aH(H\$(H$HT$81HD$Hl$H9}\HD$ HHHHckRHHH\$0HtEHHH$HD$8HD$HT$HD$ HHl$H9|HT$8HT$@H(C
   1022 
   1023 B
   1024 *runtime.racefuncenter
   1025 (runtime.nilinterhash
   1026 (runtime.racefuncexit
   1027 0runtime.morestack_noctxt0P
   1028 "".autotmp_0273type.int"".autotmp_0272type.int"".~r2 type.uintptr"".htype.uintptr"".p*type.*[1]interface {}POP Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbVprebuilts/go/linux-x86/src/debug/pe/file.go0type..eq.[1]interface {}dH%H;a/H`H\$`H$1HD$0Hl$0H9HD$8H\$pHHD$(HHH$HD$(H\$pHHHHH+Hl$PHkHl$XH\$hHHHH$HT$PH\$hHt}Hl$(HHHHKHL$HHD$@H9uLH$HL$HT$Hl$XHl$\$ t%HD$8HHl$0H9(D$xH`D$xH`|2
   1032 B
   1033 *runtime.racefuncenter
   1034  runtime.raceread
   1035  runtime.raceread
   1036 runtime.efaceeq
   1037 (runtime.racefuncexit
   1038 (runtime.racefuncexit
   1039 0runtime.morestack_noctxt0"".autotmp_0277?"type.interface {}"".autotmp_0276"type.interface {}"".autotmp_0275_type.int"".autotmp_0274Otype.int"".iotype.int"".~r2 type.bool"".q*type.*[1]interface {}"".p*type.*[1]interface {}& O_Tgclocals51af24152615272c3d9efc8538f95767Tgclocals2c78d3ad9d760b5f66e2e47be684c787Vprebuilts/go/linux-x86/src/debug/pe/file.go(type..hash."".SymboldH%H;aH H\$ H$H\$(H$H<$tcH\$0H\$HD$H\$(H$H<$t6H$HD$0HD$HD$	HD$HD$0HD$8H %%U
   1043 B
   1044 *runtime.racefuncenter
   1045 runtime.strhash
   1046 runtime.memhash
   1047 (runtime.racefuncexit
   1048 0runtime.morestack_noctxt0@"".autotmp_0279type.uintptr"".~r2 type.uintptr"".htype.uintptr"".ptype.*"".Symbol@w?@! Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbVprebuilts/go/linux-x86/src/debug/pe/file.go$type..eq."".SymboldH%H;a5HHH\$HH$H\$PH$H\$PHH+Hl$8HkHl$@H\$XH$HT$@H\$XHHHL$(HCHD$0H9Hl$8H,$HT$HL$HD$\$ tuH\$PH$H<$t\H$H\$XH\$H|$t<HD$HD$	\$uD$`HHD$`HH%%D$`HH4
   1053 B
   1054 *runtime.racefuncenter^
   1055  runtime.raceread
   1056  runtime.raceread
   1057  runtime.eqstring
   1058  runtime.memequal
   1059 (runtime.racefuncexit
   1060 (runtime.racefuncexit
   1061 (runtime.racefuncexit
   1062 0runtime.morestack_noctxt0
   1063 "".autotmp_0282?type.string"".autotmp_0281type.string"".~r2 type.bool"".qtype.*"".Symbol"".ptype.*"".Symbol2 & <KTgclocals51af24152615272c3d9efc8538f95767Tgclocals44750c784da4dd430afdd97fea5c405aVprebuilts/go/linux-x86/src/debug/pe/file.go0type..hash."".COFFSymboldH%H;av\H H\$ H$H\$(H$H<$t1H\$0H\$HD$HD$HD$0HD$8H %
   1066 
   1067 :
   1068 *runtime.racefuncenter
   1069 runtime.memhash
   1070 (runtime.racefuncexit
   1071 0runtime.morestack_noctxt0@"".~r2 type.uintptr"".htype.uintptr"".p&type.*"".COFFSymbol@N?@
   1073 dTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbVprebuilts/go/linux-x86/src/debug/pe/file.go,type..eq."".COFFSymboldH%H;av|H H\$ H$H\$(H$H<$tQH\$0H\$H|$t6HD$\$uD$8H D$8H %%k
   1076 :
   1077 *runtime.racefuncenter
   1078  runtime.memequal
   1079 (runtime.racefuncexit
   1080 (runtime.racefuncexit
   1081 0runtime.morestack_noctxt0@"".~r2 type.bool"".q&type.*"".COFFSymbol"".p&type.*"".COFFSymbol@V?@?@'Tgclocals3bb21ca8fe1d99a3e492463bd711418aTgclocals33cdeccccebe80329f1fdbee7f5874cbVprebuilts/go/linux-x86/src/debug/pe/file.go(type..hash.[4]stringdH%H;aH(H\$(H$HT$81HD$Hl$H9}\HD$ HHHHckRHHH\$0HtEHHH$HD$8HD$HT$HD$ HHl$H9|HT$8HT$@H(C
   1085 
   1086 B
   1087 *runtime.racefuncenter
   1088 runtime.strhash
   1089 (runtime.racefuncexit
   1090 0runtime.morestack_noctxt0P
   1091 "".autotmp_0287type.int"".autotmp_0286type.int"".~r2 type.uintptr"".htype.uintptr"".ptype.*[4]stringPOP Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbVprebuilts/go/linux-x86/src/debug/pe/file.go$type..eq.[4]stringdH%H;a/H`H\$`H$1HD$0Hl$0H9HD$8H\$hHHD$(HHH$HD$(H\$hHHHHH+Hl$PHkHl$XH\$pHHHH$HT$XH\$pHt}Hl$(HHHHL$@HCHD$HH9uLHl$PH,$HT$HL$HD$\$ t%HD$8HHl$0H9(D$xH`D$xH`|2
   1096 B
   1097 *runtime.racefuncenter
   1098  runtime.raceread
   1099  runtime.raceread
   1100  runtime.eqstring
   1101 (runtime.racefuncexit
   1102 (runtime.racefuncexit
   1103 0runtime.morestack_noctxt0"".autotmp_0291?type.string"".autotmp_0290type.string"".autotmp_0289_type.int"".autotmp_0288Otype.int"".iotype.int"".~r2 type.bool"".qtype.*[4]string"".ptype.*[4]string& O_Tgclocals51af24152615272c3d9efc8538f95767Tgclocals44750c784da4dd430afdd97fea5c405aVprebuilts/go/linux-x86/src/debug/pe/file.go:type..hash."".ImportDirectorydH%H;aH H\$ H$H\$(H$H<$tcH\$0H\$HD$HD$H\$(H$H<$t-H$HD$0HD$HD$HD$0HD$8H %%U
   1107 B
   1108 *runtime.racefuncenter
   1109 runtime.memhash
   1110 runtime.strhash
   1111 (runtime.racefuncexit
   1112 0runtime.morestack_noctxt0@"".autotmp_0293type.uintptr"".~r2 type.uintptr"".htype.uintptr"".p0type.*"".ImportDirectory@w?@! Tgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbVprebuilts/go/linux-x86/src/debug/pe/file.go6type..eq."".ImportDirectorydH%H;a9HHH\$HH$H\$PH$H<$H\$XH\$H|$HD$\$uD$`HHH\$PH$H$H\$PHHkHl$8Hk Hl$@H\$XH$H$HT$@H\$XHt\HKHL$(HC HD$0H9u6Hl$8H,$HT$HL$HD$\$ tD$`HHD$`HHd%%
   1116 B
   1117 *runtime.racefuncenter
   1118  runtime.memequal
   1119 (runtime.racefuncexit
   1120  runtime.raceread
   1121  runtime.raceread
   1122  runtime.eqstring
   1123 (runtime.racefuncexit
   1124 (runtime.racefuncexit
   1125 0runtime.morestack_noctxt0
   1126 "".autotmp_0296?type.string"".autotmp_0295type.string"".~r2 type.bool"".q0type.*"".ImportDirectory"".p0type.*"".ImportDirectory2^7 DdTgclocals51af24152615272c3d9efc8538f95767Tgclocals44750c784da4dd430afdd97fea5c405aVprebuilts/go/linux-x86/src/debug/pe/file.goTgclocals7f7e6ec54e0fe5c2b861c6ab03f71f2b00	Tgclocals3d62476710a386a8bdda2662c18ab6e50030Jgo.itab.*io.SectionReader.io.ReaderAt0Ngo.itab.*io.SectionReader.io.ReadSeekerTgclocalsd76d733252dff1db3e6244421edfb3e6@@
Tgclocals18f6d3d39240673c818afd82a70cfe06@@*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 %#xTgclocals12abde4ce1c001576b1c5981f9189139``
   1131 Tgclocalsbf571f6e994f54f15b6c49dddccda3dd``
   1132 08go.itab.*os.File.io.ReaderAt04go.itab.*os.File.io.CloserTgclocals6235160484cd87ecd8cee2a67bf0f23fPP
   1133 
   1134 0	
Tgclocals2513e318c737c9158a282a98e88ca498PPTgclocals0c7ba4686807ed10ce3a3f60b9393cf2((Tgclocals27f94a2fe0ff5b305b2385471201b6d7((0Bgo.itab.*errors.errorString.error0Fgo.itab.*io.SectionReader.io.Reader0|go.itab.encoding/binary.littleEndian.encoding/binary.ByteOrderNgo.string.hdr."Invalid PE File Format."  Fgo.string."Invalid PE File Format."Fgo.string."Invalid PE File Format."00Invalid PE File Format.go.string.hdr."pe32 optional header has unexpected Magic of 0x%x"  1zgo.string."pe32 optional header has unexpected Magic of 0x%x"zgo.string."pe32 optional header has unexpected Magic of 0x%x"pdpe32 optional header has unexpected Magic of 0x%xgo.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"pfpe32+ optional header has unexpected Magic of 0x%xTgclocalsdac0cfff4cd0862b1bab38b9b68a2c9c:_   "" """"""""bDbEbbb**""""""$"%  " """""&&
&&62222232Tgclocalsef7c4dc6dd1388370f1798e3ff8d023e:Tgclocalsf56b2291fa344104975cb6587be42b9b  Tgclocalscfd97ba95bb5326c9855399a9aeae1e4  	Tgclocalsf56b2291fa344104975cb6587be42b9b  Tgclocalse164b25facb10da87beb89b155f2475e  Tgclocals41aa2c1041551573da6b5bc2bc8eb89500Tgclocals6c663c8c96689a2fcfc7e468bda6a1bb00,go.string.hdr."abbrev"  $go.string."abbrev"$go.string."abbrev"abbrev(go.string.hdr."info"   go.string."info" go.string."info"
   1142 info(go.string.hdr."line"   go.string."line" go.string."line"
   1143 line&go.string.hdr."str"  go.string."str"go.string."str"str.go.string.hdr.".debug_"  &go.string.".debug_"&go.string.".debug_".debug_Tgclocals0e3994209607ed7a7ae400007ece91ad>T%	T%	3T%	TT%	TTgclocalsd360b7e350619ca924b7530d280a9798PP,go.string.hdr.".idata"  $go.string.".idata"$go.string.".idata".idata"go.string.hdr.":"  go.string.":"go.string.":":Tgclocals9b8e7d05a45b0fb36575ce8967bea642: @ @ @ 	@@ @  ATgclocals58880d1014ff7703d0d5c04ae99120653Tgclocals69c1753bd5f81501d95132d08af04464Tgclocals18e6f963be655e2098768c933b06e181  3Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals33cdeccccebe80329f1fdbee7f5874cb02"".sizeofOptionalHeader32type.uint1602"".sizeofOptionalHeader64type.uint16""".statictmp_0130`*type."".SectionHeader0"".initdonetype.uint8*"".(*Section).Dataf$"".(*Section).Data*"".(*Section).Openf$"".(*Section).Open4"".(*FormatError).Errorf."".(*FormatError).Error"".Openf"".Open&"".(*File).Closef "".(*File).Close"".NewFilef"".NewFile"".cstringf"".cstring"".getStringf"".getString*"".(*File).Sectionf$"".(*File).Section&"".(*File).DWARFf "".(*File).DWARF:"".(*File).ImportedSymbolsf4"".(*File).ImportedSymbols>"".(*File).ImportedLibrariesf8"".(*File).ImportedLibraries"".initf"".init"runtime.gcbits.01.go.string.hdr."[]uint8"  &go.string."[]uint8"&go.string."[]uint8"[]uint8type.[]uint8~.80 runtime.algarray@"runtime.gcbits.01P.go.string.hdr."[]uint8"p*go.weak.type.*[]uint8"runtime.zerovaluetype.uint86go.typelink.[]uint8	[]uint8type.[]uint8Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals44750c784da4dd430afdd97fea5c405a  Tgclocals51af24152615272c3d9efc8538f95767  >type..hashfunc."".SectionHeader6type..hash."".SectionHeader:type..eqfunc."".SectionHeader2type..eq."".SectionHeader4type..alg."".SectionHeader  >type..hashfunc."".SectionHeader:type..eqfunc."".SectionHeaderBgo.string.hdr."*pe.SectionHeader"  :go.string."*pe.SectionHeader":go.string."*pe.SectionHeader"0$*pe.SectionHeader,type.*"".SectionHeader8j60 runtime.algarray@"runtime.gcbits.01PBgo.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"
   1146 Name6go.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"
   1148 Size,go.string.hdr."Offset"  $go.string."Offset"$go.string."Offset"OffsetHgo.string.hdr."PointerToRelocations"  @go.string."PointerToRelocations"@go.string."PointerToRelocations"0*PointerToRelocationsHgo.string.hdr."PointerToLineNumbers"  @go.string."PointerToLineNumbers"@go.string."PointerToLineNumbers"0*PointerToLineNumbersFgo.string.hdr."NumberOfRelocations"  >go.string."NumberOfRelocations">go.string."NumberOfRelocations"0(NumberOfRelocationsFgo.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" SectionHeader0go.string.hdr."debug/pe"  (go.string."debug/pe"(go.string."debug/pe" debug/pe"go.importpath."".  (go.string."debug/pe"*type."".SectionHeader0i
   1150 
   1151  $(*,<04type..alg."".SectionHeader@"runtime.gcbits.01P@go.string.hdr."pe.SectionHeader"p,type.*"".SectionHeader"runtime.zerovalue*type."".SectionHeader(go.string.hdr."Name"type.string6go.string.hdr."VirtualSize"type.uint32<go.string.hdr."VirtualAddress"type.uint32(go.string.hdr."Size"type.uint32,go.string.hdr."Offset"type.uint32Hgo.string.hdr."PointerToRelocations"type.uint32Hgo.string.hdr."PointerToLineNumbers"type.uint32Fgo.string.hdr."NumberOfRelocations"type.uint16Fgo.string.hdr."NumberOfLineNumbers"type.uint16>go.string.hdr."Characteristics"type.uint32`*type."".SectionHeader:go.string.hdr."SectionHeader""go.importpath."".*type."".SectionHeaderTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals2c78d3ad9d760b5f66e2e47be684c787  Tgclocals51af24152615272c3d9efc8538f95767  2type..hashfunc."".Section*type..hash."".Section.type..eqfunc."".Section&type..eq."".Section(type..alg."".Section  2type..hashfunc."".Section.type..eqfunc."".Section&runtime.gcbits.c1014go.string.hdr."pe.Section"  
   1153 ,go.string."pe.Section",go.string."pe.Section" pe.Section$go.string.hdr."sr"  go.string."sr"go.string."sr"srTgclocals64ca935d1a2110a30e2d604686188539  Tgclocals105f3855eb890a8acc612838e7807774  Tgclocals64ca935d1a2110a30e2d604686188539  Tgclocals231c104d478bca39ed03121924bee5dc  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)p30 runtime.algarray@"runtime.gcbits.01Pzgo.string.hdr."func(pe.Section, []uint8, int64) (int, error)"pvgo.weak.type.*func("".Section, []uint8, int64) (int, error)"runtime.zerovaluedtype.func("".Section, []uint8, int64) (int, error)dtype.func("".Section, []uint8, int64) (int, error)type."".Sectiontype.[]uint8type.int64type.inttype.errorgo.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"ReadAtbgo.string.hdr."func([]uint8, int64) (int, error)"  !Zgo.string."func([]uint8, int64) (int, error)"Zgo.string."func([]uint8, int64) (int, error)"PDfunc([]uint8, int64) (int, error)Ltype.func([]uint8, int64) (int, error)C,30 runtime.algarray@"runtime.gcbits.01Pbgo.string.hdr."func([]uint8, int64) (int, error)"p^go.weak.type.*func([]uint8, int64) (int, error)"runtime.zerovalueLtype.func([]uint8, int64) (int, error)Ltype.func([]uint8, int64) (int, error)type.[]uint8type.int64type.inttype.errorgo.typelink.func([]uint8, int64) (int, error)	func([]uint8, int64) (int, error)Ltype.func([]uint8, int64) (int, error)type."".SectionHHB2d0@(0(type..alg."".Section@&runtime.gcbits.c101P4go.string.hdr."pe.Section"p type.*"".Section"runtime.zerovaluetype."".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.ReadAt6go.string.hdr."*pe.Section"  .go.string."*pe.Section".go.string."*pe.Section" *pe.Sectiondgo.string.hdr."func(*pe.Section) ([]uint8, error)"  "\go.string."func(*pe.Section) ([]uint8, error)"\go.string."func(*pe.Section) ([]uint8, error)"PFfunc(*pe.Section) ([]uint8, error)Ntype.func(*"".Section) ([]uint8, error);=30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*pe.Section) ([]uint8, error)"p`go.weak.type.*func(*"".Section) ([]uint8, error)"runtime.zerovalueNtype.func(*"".Section) ([]uint8, error)Ntype.func(*"".Section) ([]uint8, error) type.*"".Sectiontype.[]uint8type.errorgo.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.ReadSeekerHtype.func(*"".Section) io.ReadSeekerN30 runtime.algarray@"runtime.gcbits.01P^go.string.hdr."func(*pe.Section) io.ReadSeeker"pZgo.weak.type.*func(*"".Section) io.ReadSeeker"runtime.zerovalueHtype.func(*"".Section) io.ReadSeekerHtype.func(*"".Section) io.ReadSeeker type.*"".Section$type.io.ReadSeekergo.typelink.func(*pe.Section) io.ReadSeeker	func(*"".Section) io.ReadSeekerHtype.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)Ve30 runtime.algarray@"runtime.gcbits.01P|go.string.hdr."func(*pe.Section, []uint8, int64) (int, error)"pxgo.weak.type.*func(*"".Section, []uint8, int64) (int, error)"runtime.zerovalueftype.func(*"".Section, []uint8, int64) (int, error)ftype.func(*"".Section, []uint8, int64) (int, error) type.*"".Sectiontype.[]uint8type.int64type.inttype.errorgo.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"
   1155 DataNgo.string.hdr."func() ([]uint8, error)"  Fgo.string."func() ([]uint8, error)"Fgo.string."func() ([]uint8, error)"00func() ([]uint8, error)8type.func() ([]uint8, error)x]30 runtime.algarray@"runtime.gcbits.01PNgo.string.hdr."func() ([]uint8, error)"pJgo.weak.type.*func() ([]uint8, error)"runtime.zerovalue8type.func() ([]uint8, error)8type.func() ([]uint8, error)type.[]uint8type.errorvgo.typelink.func() ([]uint8, error)	func() ([]uint8, error)8type.func() ([]uint8, error)(go.string.hdr."Open"   go.string."Open" go.string."Open"
   1156 OpenHgo.string.hdr."func() io.ReadSeeker"  @go.string."func() io.ReadSeeker"@go.string."func() io.ReadSeeker"0*func() io.ReadSeeker2type.func() io.ReadSeeker&30 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."func() io.ReadSeeker"pDgo.weak.type.*func() io.ReadSeeker"runtime.zerovalue2type.func() io.ReadSeeker2type.func() io.ReadSeeker$type.io.ReadSeekerjgo.typelink.func() io.ReadSeeker	func() io.ReadSeeker2type.func() io.ReadSeeker type.*"".SectionT`6.0 runtime.algarray@"runtime.gcbits.01P6go.string.hdr."*pe.Section"p2go.weak.type.**"".Section"runtime.zerovaluetype."".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.ReadSeekerHtype.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.038go.string.hdr."interface {}"  0go.string."interface {}"0go.string."interface {}" interface {}"type.interface {}W0 runtime.algarray@"runtime.gcbits.03P8go.string.hdr."interface {}"p4go.weak.type.*interface {}"runtime.zerovalue"type.interface {}Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals709ced5e74cbe4c0afb97d3c39ba72fd((@Tgclocals9c91d8a91ac42440a3d1507bc8d2e808((:type..hashfunc."".FormatError2type..hash."".FormatError6type..eqfunc."".FormatError.type..eq."".FormatError0type..alg."".FormatError  :type..hashfunc."".FormatError6type..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"val6go.string.hdr."FormatError"  .go.string."FormatError".go.string."FormatError" FormatError&type."".FormatError((^H&00type..alg."".FormatError@"runtime.gcbits.1aP<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."".FormatError6go.string.hdr."FormatError""go.importpath."".&type."".FormatError>go.string.hdr."*pe.FormatError"  6go.string."*pe.FormatError"6go.string."*pe.FormatError"  *pe.FormatErrorXgo.string.hdr."func(*pe.FormatError) string"  Pgo.string."func(*pe.FormatError) string"Pgo.string."func(*pe.FormatError) string"@:func(*pe.FormatError) stringBtype.func(*"".FormatError) string Z30 runtime.algarray@"runtime.gcbits.01PXgo.string.hdr."func(*pe.FormatError) string"pTgo.weak.type.*func(*"".FormatError) string"runtime.zerovalueBtype.func(*"".FormatError) stringBtype.func(*"".FormatError) string(type.*"".FormatErrortype.stringgo.typelink.func(*pe.FormatError) string	func(*"".FormatError) stringBtype.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() stringm30 runtime.algarray@"runtime.gcbits.01P:go.string.hdr."func() string"p6go.weak.type.*func() string"runtime.zerovalue$type.func() string$type.func() stringtype.stringNgo.typelink.func() string	func() string$type.func() string(type.*"".FormatError
60 runtime.algarray@"runtime.gcbits.01P>go.string.hdr."*pe.FormatError"p:go.weak.type.**"".FormatError"runtime.zerovalue&type."".FormatError`(type.*"".FormatError(type.*"".FormatError*go.string.hdr."Error"$type.func() stringBtype.func(*"".FormatError) string."".(*FormatError).Error."".(*FormatError).Error<go.string.hdr."[]interface {}"  4go.string."[]interface {}"4go.string."[]interface {}" []interface {}&type.[]interface {}p/0 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."[]interface {}"p8go.weak.type.*[]interface {}"runtime.zerovalue"type.interface {}Rgo.typelink.[]interface {}	[]interface {}&type.[]interface {}Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals2c78d3ad9d760b5f66e2e47be684c787  Tgclocals51af24152615272c3d9efc8538f95767  <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[02type..alg.[1]interface {}@"runtime.gcbits.03P>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 {}560 runtime.algarray@"runtime.gcbits.01P@go.string.hdr."*[1]interface {}"p<go.weak.type.**[1]interface {}"runtime.zerovalue(type.[1]interface {} type..hashfunc20  ,runtime.memhash_varlentype..eqfunc20  .runtime.memequal_varlentype..alg20   type..hashfunc20type..eqfunc20<go.string.hdr."*pe.FileHeader"  4go.string."*pe.FileHeader"4go.string."*pe.FileHeader" *pe.FileHeader&type.*"".FileHeader5660 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*pe.FileHeader"p8go.weak.type.**"".FileHeader"runtime.zerovalue$type."".FileHeaderruntime.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" TimeDateStampHgo.string.hdr."PointerToSymbolTable"  @go.string."PointerToSymbolTable"@go.string."PointerToSymbolTable"0*PointerToSymbolTable>go.string.hdr."NumberOfSymbols"  6go.string."NumberOfSymbols"6go.string."NumberOfSymbols"  NumberOfSymbolsHgo.string.hdr."SizeOfOptionalHeader"  @go.string."SizeOfOptionalHeader"@go.string."SizeOfOptionalHeader"0*SizeOfOptionalHeader4go.string.hdr."FileHeader"  
   1171 ,go.string."FileHeader",go.string."FileHeader" FileHeader$type."".FileHeader5|~00type..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.uint32Hgo.string.hdr."PointerToSymbolTable"type.uint32>go.string.hdr."NumberOfSymbols"type.uint32Hgo.string.hdr."SizeOfOptionalHeader"type.uint16>go.string.hdr."Characteristics"type.uint16`$type."".FileHeader4go.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.01P:go.string.hdr."[]*pe.Section"p6go.weak.type.*[]*"".Section"runtime.zerovalue type.*"".SectionNgo.typelink.[]*pe.Section	[]*"".Section$type.[]*"".SectionTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals44750c784da4dd430afdd97fea5c405a  Tgclocals51af24152615272c3d9efc8538f95767  0type..hashfunc."".Symbol(type..hash."".Symbol,type..eqfunc."".Symbol$type..eq."".Symbol&type..alg."".Symbol  0type..hashfunc."".Symbol,type..eqfunc."".Symbol2go.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"
   1177 Type8go.string.hdr."StorageClass"  0go.string."StorageClass"0go.string."StorageClass" StorageClass,go.string.hdr."Symbol"  $go.string."Symbol"$go.string."Symbol"Symboltype."".Symbol E@(0&type..alg."".Symbol@"runtime.gcbits.01P2go.string.hdr."pe.Symbol"ptype.*"".Symbol"runtime.zerovaluetype."".Symbol(go.string.hdr."Name"type.string*go.string.hdr."Value"type.uint32:go.string.hdr."SectionNumber"type.int16(go.string.hdr."Type"type.uint168go.string.hdr."StorageClass"type.uint8`type."".Symbol,go.string.hdr."Symbol""go.importpath."".type."".Symbol4go.string.hdr."*pe.Symbol"  
   1179 ,go.string."*pe.Symbol",go.string."*pe.Symbol" *pe.Symboltype.*"".SymbolBl1;60 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."*pe.Symbol"p0go.weak.type.**"".Symbol"runtime.zerovaluetype."".Symbol8go.string.hdr."[]*pe.Symbol"  0go.string."[]*pe.Symbol"0go.string."[]*pe.Symbol" []*pe.Symbol"type.[]*"".SymbolHL0 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."[]*pe.Symbol"p4go.weak.type.*[]*"".Symbol"runtime.zerovaluetype.*"".SymbolJgo.typelink.[]*pe.Symbol	[]*"".Symbol"type.[]*"".Symbol&runtime.gcbits.38198.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" OptionalHeader0go.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"
   1183 Filetype."".Filehh{q(@X(0 runtime.algarray@&runtime.gcbits.3819P.go.string.hdr."pe.File"ptype.*"".File"runtime.zerovaluetype."".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."".File0go.string.hdr."*pe.File"  (go.string."*pe.File"(go.string."*pe.File" *pe.FileHgo.string.hdr."func(*pe.File) error"  @go.string."func(*pe.File) error"@go.string."func(*pe.File) error"0*func(*pe.File) error2type.func(*"".File) error#]30 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."func(*pe.File) error"pDgo.weak.type.*func(*"".File) error"runtime.zerovalue2type.func(*"".File) error2type.func(*"".File) errortype.*"".Filetype.errorjgo.typelink.func(*pe.File) error	func(*"".File) error2type.func(*"".File) errorfgo.string.hdr."func(*pe.File) (*dwarf.Data, error)"  #^go.string."func(*pe.File) (*dwarf.Data, error)"^go.string."func(*pe.File) (*dwarf.Data, error)"PHfunc(*pe.File) (*dwarf.Data, error)\type.func(*"".File) (*debug/dwarf.Data, error)39A30 runtime.algarray@"runtime.gcbits.01Pfgo.string.hdr."func(*pe.File) (*dwarf.Data, error)"pngo.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.Datatype.errorgo.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" []stringtype.[]string
   1184 0 runtime.algarray@"runtime.gcbits.01P0go.string.hdr."[]string"p,go.weak.type.*[]string"runtime.zerovaluetype.string:go.typelink.[]string	[]stringtype.[]string`go.string.hdr."func(*pe.File) ([]string, error)"   Xgo.string."func(*pe.File) ([]string, error)"Xgo.string."func(*pe.File) ([]string, error)"PBfunc(*pe.File) ([]string, error)Jtype.func(*"".File) ([]string, error)ub30 runtime.algarray@"runtime.gcbits.01P`go.string.hdr."func(*pe.File) ([]string, error)"p\go.weak.type.*func(*"".File) ([]string, error)"runtime.zerovalueJtype.func(*"".File) ([]string, error)Jtype.func(*"".File) ([]string, error)type.*"".Filetype.[]stringtype.errorgo.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"PFfunc(*pe.File, string) *pe.SectionNtype.func(*"".File, string) *"".Section30 runtime.algarray@"runtime.gcbits.01Pdgo.string.hdr."func(*pe.File, string) *pe.Section"p`go.weak.type.*func(*"".File, string) *"".Section"runtime.zerovalueNtype.func(*"".File, string) *"".SectionNtype.func(*"".File, string) *"".Sectiontype.*"".Filetype.string type.*"".Sectiongo.typelink.func(*pe.File, string) *pe.Section	func(*"".File, string) *"".SectionNtype.func(*"".File, string) *"".Section*go.string.hdr."Close"  "go.string."Close""go.string."Close"Close8go.string.hdr."func() error"  0go.string."func() error"0go.string."func() error" func() error"type.func() error30 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."func() error"p4go.weak.type.*func() error"runtime.zerovalue"type.func() error"type.func() errortype.errorJgo.typelink.func() error	func() error"type.func() error*go.string.hdr."DWARF"  "go.string."DWARF""go.string."DWARF"DWARFVgo.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)$930 runtime.algarray@"runtime.gcbits.01PVgo.string.hdr."func() (*dwarf.Data, error)"p^go.weak.type.*func() (*debug/dwarf.Data, error)"runtime.zerovalueLtype.func() (*debug/dwarf.Data, error)Ltype.func() (*debug/dwarf.Data, error),type.*debug/dwarf.Datatype.errorgo.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$ImportedLibrariesPgo.string.hdr."func() ([]string, error)"  Hgo.string."func() ([]string, error)"Hgo.string."func() ([]string, error)"@2func() ([]string, error):type.func() ([]string, error)B30 runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func() ([]string, error)"pLgo.weak.type.*func() ([]string, error)"runtime.zerovalue:type.func() ([]string, error):type.func() ([]string, error)type.[]stringtype.errorzgo.typelink.func() ([]string, error)	func() ([]string, error):type.func() ([]string, error)>go.string.hdr."ImportedSymbols"  6go.string."ImportedSymbols"6go.string."ImportedSymbols"  ImportedSymbolsPgo.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) *"".Sectionh-30 runtime.algarray@"runtime.gcbits.01PPgo.string.hdr."func(string) *pe.Section"pLgo.weak.type.*func(string) *"".Section"runtime.zerovalue:type.func(string) *"".Section:type.func(string) *"".Sectiontype.string type.*"".Sectionzgo.typelink.func(string) *pe.Section	func(string) *"".Section:type.func(string) *"".Sectiontype.*"".Fileu26B0 runtime.algarray@"runtime.gcbits.01P0go.string.hdr."*pe.File"p,go.weak.type.**"".File"runtime.zerovaluetype."".File`type.*"".Filetype.*"".File*go.string.hdr."Close""type.func() error2type.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).DWARFBgo.string.hdr."ImportedLibraries":type.func() ([]string, error)Jtype.func(*"".File) ([]string, error)8"".(*File).ImportedLibraries8"".(*File).ImportedLibraries>go.string.hdr."ImportedSymbols":type.func() ([]string, error)Jtype.func(*"".File) ([]string, error)4"".(*File).ImportedSymbols4"".(*File).ImportedSymbols.go.string.hdr."Section":type.func(string) *"".SectionNtype.func(*"".File, string) *"".Section$"".(*File).Section$"".(*File).Section0go.string.hdr."[8]uint8"  (go.string."[8]uint8"(go.string."[8]uint8" [8]uint8type.[8]uint8>00 runtime.algarray@runtime.gcbits.P0go.string.hdr."[8]uint8"p,go.weak.type.*[8]uint8"runtime.zerovaluetype.uint8type.[]uint8:go.typelink.[8]uint8	[8]uint8type.[8]uint8Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals3bb21ca8fe1d99a3e492463bd711418a8type..hashfunc."".COFFSymbol0type..hash."".COFFSymbol4type..eqfunc."".COFFSymbol,type..eq."".COFFSymbol.type..alg."".COFFSymbol  8type..hashfunc."".COFFSymbol4type..eqfunc."".COFFSymbol<go.string.hdr."*pe.COFFSymbol"  4go.string."*pe.COFFSymbol"4go.string."*pe.COFFSymbol" *pe.COFFSymbol&type.*"".COFFSymbolZ |60 runtime.algarray@"runtime.gcbits.01P<go.string.hdr."*pe.COFFSymbol"p8go.weak.type.**"".COFFSymbol"runtime.zerovalue$type."".COFFSymbol:go.string.hdr."pe.COFFSymbol"  
2go.string."pe.COFFSymbol"2go.string."pe.COFFSymbol" pe.COFFSymbolDgo.string.hdr."NumberOfAuxSymbols"  <go.string."NumberOfAuxSymbols"<go.string."NumberOfAuxSymbols"0&NumberOfAuxSymbols4go.string.hdr."COFFSymbol"  
   1191 ,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.uint168go.string.hdr."StorageClass"type.uint8Dgo.string.hdr."NumberOfAuxSymbols"type.uint8`$type."".COFFSymbol4go.string.hdr."COFFSymbol""go.importpath."".$type."".COFFSymbolBgo.string.hdr."*pe.DataDirectory"  :go.string."*pe.DataDirectory":go.string."*pe.DataDirectory"0$*pe.DataDirectory,type.*"".DataDirectory60 runtime.algarray@"runtime.gcbits.01PBgo.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k0 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."".DataDirectoryDgo.string.hdr."[]pe.DataDirectory"  <go.string."[]pe.DataDirectory"<go.string."[]pe.DataDirectory"0&[]pe.DataDirectory.type.[]"".DataDirectoryq0 runtime.algarray@"runtime.gcbits.01PDgo.string.hdr."[]pe.DataDirectory"p@go.weak.type.*[]"".DataDirectory"runtime.zerovalue*type."".DataDirectorybgo.typelink.[]pe.DataDirectory	[]"".DataDirectory.type.[]"".DataDirectory"type..hashfunc128  ,runtime.memhash_varlentype..eqfunc128  .runtime.memequal_varlentype..alg128  "type..hashfunc128type..eqfunc128Hgo.string.hdr."[16]pe.DataDirectory"  @go.string."[16]pe.DataDirectory"@go.string."[16]pe.DataDirectory"0*[16]pe.DataDirectory2type.[16]"".DataDirectory$00type..alg128@runtime.gcbits.PHgo.string.hdr."[16]pe.DataDirectory"pDgo.weak.type.*[16]"".DataDirectory"runtime.zerovalue*type."".DataDirectory.type.[]"".DataDirectoryjgo.typelink.[16]pe.DataDirectory	[16]"".DataDirectory2type.[16]"".DataDirectory"type..hashfunc224  ,runtime.memhash_varlentype..eqfunc224  .runtime.memequal_varlentype..alg224  "type..hashfunc224type..eqfunc224Fgo.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"MagicDgo.string.hdr."MajorLinkerVersion"  <go.string."MajorLinkerVersion"<go.string."MajorLinkerVersion"0&MajorLinkerVersionDgo.string.hdr."MinorLinkerVersion"  <go.string."MinorLinkerVersion"<go.string."MinorLinkerVersion"0&MinorLinkerVersion4go.string.hdr."SizeOfCode"  
   1198 ,go.string."SizeOfCode",go.string."SizeOfCode" SizeOfCodeJgo.string.hdr."SizeOfInitializedData"  Bgo.string."SizeOfInitializedData"Bgo.string."SizeOfInitializedData"0,SizeOfInitializedDataNgo.string.hdr."SizeOfUninitializedData"  Fgo.string."SizeOfUninitializedData"Fgo.string."SizeOfUninitializedData"00SizeOfUninitializedDataFgo.string.hdr."AddressOfEntryPoint"  >go.string."AddressOfEntryPoint">go.string."AddressOfEntryPoint"0(AddressOfEntryPoint4go.string.hdr."BaseOfCode"  
   1199 ,go.string."BaseOfCode",go.string."BaseOfCode" BaseOfCode4go.string.hdr."BaseOfData"  
   1200 ,go.string."BaseOfData",go.string."BaseOfData" BaseOfData2go.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" FileAlignmentVgo.string.hdr."MajorOperatingSystemVersion"  Ngo.string."MajorOperatingSystemVersion"Ngo.string."MajorOperatingSystemVersion"@8MajorOperatingSystemVersionVgo.string.hdr."MinorOperatingSystemVersion"  Ngo.string."MinorOperatingSystemVersion"Ngo.string."MinorOperatingSystemVersion"@8MinorOperatingSystemVersionBgo.string.hdr."MajorImageVersion"  :go.string."MajorImageVersion":go.string."MajorImageVersion"0$MajorImageVersionBgo.string.hdr."MinorImageVersion"  :go.string."MinorImageVersion":go.string."MinorImageVersion"0$MinorImageVersionJgo.string.hdr."MajorSubsystemVersion"  Bgo.string."MajorSubsystemVersion"Bgo.string."MajorSubsystemVersion"0,MajorSubsystemVersionJgo.string.hdr."MinorSubsystemVersion"  Bgo.string."MinorSubsystemVersion"Bgo.string."MinorSubsystemVersion"0,MinorSubsystemVersionBgo.string.hdr."Win32VersionValue"  :go.string."Win32VersionValue":go.string."Win32VersionValue"0$Win32VersionValue6go.string.hdr."SizeOfImage"  .go.string."SizeOfImage".go.string."SizeOfImage" SizeOfImage:go.string.hdr."SizeOfHeaders"  
2go.string."SizeOfHeaders"2go.string."SizeOfHeaders" SizeOfHeaders0go.string.hdr."CheckSum"  (go.string."CheckSum"(go.string."CheckSum" CheckSum2go.string.hdr."Subsystem"  	*go.string."Subsystem"*go.string."Subsystem" SubsystemDgo.string.hdr."DllCharacteristics"  <go.string."DllCharacteristics"<go.string."DllCharacteristics"0&DllCharacteristicsDgo.string.hdr."SizeOfStackReserve"  <go.string."SizeOfStackReserve"<go.string."SizeOfStackReserve"0&SizeOfStackReserveBgo.string.hdr."SizeOfStackCommit"  :go.string."SizeOfStackCommit":go.string."SizeOfStackCommit"0$SizeOfStackCommitBgo.string.hdr."SizeOfHeapReserve"  :go.string."SizeOfHeapReserve":go.string."SizeOfHeapReserve"0$SizeOfHeapReserve@go.string.hdr."SizeOfHeapCommit"  8go.string."SizeOfHeapCommit"8go.string."SizeOfHeapCommit"0"SizeOfHeapCommit6go.string.hdr."LoaderFlags"  .go.string."LoaderFlags".go.string."LoaderFlags" LoaderFlagsFgo.string.hdr."NumberOfRvaAndSizes"  >go.string."NumberOfRvaAndSizes">go.string."NumberOfRvaAndSizes"0(NumberOfRvaAndSizes@go.string.hdr."OptionalHeader32"  8go.string."OptionalHeader32"8go.string."OptionalHeader32"0"OptionalHeader320type."".OptionalHeader32,K $(*,.0248<@DFHLPTX\`0type..alg224@runtime.gcbits.PFgo.string.hdr."pe.OptionalHeader32"p2type.*"".OptionalHeader32"runtime.zerovalue0type."".OptionalHeader32*go.string.hdr."Magic"type.uint16Dgo.string.hdr."MajorLinkerVersion"type.uint8Dgo.string.hdr."MinorLinkerVersion"type.uint84go.string.hdr."SizeOfCode"type.uint32Jgo.string.hdr."SizeOfInitializedData"type.uint32Ngo.string.hdr."SizeOfUninitializedData"type.uint32Fgo.string.hdr."AddressOfEntryPoint"type.uint324go.string.hdr."BaseOfCode"type.uint324go.string.hdr."BaseOfData"type.uint322go.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
   1206 Bgo.string.hdr."MajorImageVersion"
   1207 type.uint16
   1208 Bgo.string.hdr."MinorImageVersion"type.uint16Jgo.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.uint320go.string.hdr."CheckSum"type.uint322go.string.hdr."Subsystem"type.uint16Dgo.string.hdr."DllCharacteristics"type.uint16Dgo.string.hdr."SizeOfStackReserve"type.uint32Bgo.string.hdr."SizeOfStackCommit"type.uint32Bgo.string.hdr."SizeOfHeapReserve"type.uint32@go.string.hdr."SizeOfHeapCommit"type.uint326go.string.hdr."LoaderFlags"type.uint32Fgo.string.hdr."NumberOfRvaAndSizes"type.uint32:go.string.hdr."DataDirectory"2type.[16]"".DataDirectory`0type."".OptionalHeader32@go.string.hdr."OptionalHeader32""go.importpath."".0type."".OptionalHeader32Hgo.string.hdr."*pe.OptionalHeader32"  @go.string."*pe.OptionalHeader32"@go.string."*pe.OptionalHeader32"0**pe.OptionalHeader322type.*"".OptionalHeader32"60 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."*pe.OptionalHeader32"pDgo.weak.type.**"".OptionalHeader32"runtime.zerovalue0type."".OptionalHeader32"type..hashfunc240  ,runtime.memhash_varlentype..eqfunc240  .runtime.memequal_varlentype..alg240  "type..hashfunc240type..eqfunc240Fgo.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"OptionalHeader640type."".OptionalHeader64cI $(*,.0248<@DFHPX`hlp0type..alg240@runtime.gcbits.PFgo.string.hdr."pe.OptionalHeader64"p2type.*"".OptionalHeader64"runtime.zerovalue0type."".OptionalHeader64*go.string.hdr."Magic"type.uint16Dgo.string.hdr."MajorLinkerVersion"type.uint8Dgo.string.hdr."MinorLinkerVersion"type.uint84go.string.hdr."SizeOfCode"type.uint32Jgo.string.hdr."SizeOfInitializedData"type.uint32Ngo.string.hdr."SizeOfUninitializedData"type.uint32Fgo.string.hdr."AddressOfEntryPoint"type.uint324go.string.hdr."BaseOfCode"type.uint322go.string.hdr."ImageBase"type.uint64@go.string.hdr."SectionAlignment"type.uint32:go.string.hdr."FileAlignment"type.uint32Vgo.string.hdr."MajorOperatingSystemVersion"type.uint16	Vgo.string.hdr."MinorOperatingSystemVersion"	type.uint16	Bgo.string.hdr."MajorImageVersion"	type.uint16
   1220 Bgo.string.hdr."MinorImageVersion"
   1221 type.uint16
   1222 Jgo.string.hdr."MajorSubsystemVersion"type.uint16Jgo.string.hdr."MinorSubsystemVersion"type.uint16Bgo.string.hdr."Win32VersionValue"type.uint326go.string.hdr."SizeOfImage"
type.uint32
:go.string.hdr."SizeOfHeaders"
type.uint320go.string.hdr."CheckSum"type.uint322go.string.hdr."Subsystem"type.uint16Dgo.string.hdr."DllCharacteristics"type.uint16Dgo.string.hdr."SizeOfStackReserve"type.uint64Bgo.string.hdr."SizeOfStackCommit"type.uint64Bgo.string.hdr."SizeOfHeapReserve"type.uint64@go.string.hdr."SizeOfHeapCommit"type.uint646go.string.hdr."LoaderFlags"type.uint32Fgo.string.hdr."NumberOfRvaAndSizes"type.uint32:go.string.hdr."DataDirectory"2type.[16]"".DataDirectory`0type."".OptionalHeader64@go.string.hdr."OptionalHeader64""go.importpath."".0type."".OptionalHeader64Hgo.string.hdr."*pe.OptionalHeader64"  @go.string."*pe.OptionalHeader64"@go.string."*pe.OptionalHeader64"0**pe.OptionalHeader642type.*"".OptionalHeader64=
   1232 k60 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."*pe.OptionalHeader64"pDgo.weak.type.**"".OptionalHeader64"runtime.zerovalue0type."".OptionalHeader64 type..hashfunc40  (,runtime.memhash_varlentype..eqfunc40  (.runtime.memequal_varlentype..alg40   type..hashfunc40type..eqfunc40Fgo.string.hdr."*pe.SectionHeader32"  >go.string."*pe.SectionHeader32">go.string."*pe.SectionHeader32"0(*pe.SectionHeader320type.*"".SectionHeader32L60 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."*pe.SectionHeader32"pBgo.weak.type.**"".SectionHeader32"runtime.zerovalue.type."".SectionHeader32Dgo.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(-	
   1236 
   1237  "$<0type..alg40@runtime.gcbits.PDgo.string.hdr."pe.SectionHeader32"p0type.*"".SectionHeader32"runtime.zerovalue.type."".SectionHeader32(go.string.hdr."Name"type.[8]uint86go.string.hdr."VirtualSize"type.uint32<go.string.hdr."VirtualAddress"type.uint32:go.string.hdr."SizeOfRawData"type.uint32@go.string.hdr."PointerToRawData"type.uint32Hgo.string.hdr."PointerToRelocations"type.uint32Hgo.string.hdr."PointerToLineNumbers"type.uint32Fgo.string.hdr."NumberOfRelocations"type.uint16Fgo.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_varlentype..eqfunc96  `.runtime.memequal_varlentype..alg96   type..hashfunc96type..eqfunc962go.string.hdr."[96]uint8"  	*go.string."[96]uint8"*go.string."[96]uint8" [96]uint8type.[96]uint8`A	`0type..alg96@runtime.gcbits.P2go.string.hdr."[96]uint8"p.go.weak.type.*[96]uint8"runtime.zerovaluetype.uint8type.[]uint8>go.typelink.[96]uint8	[96]uint8type.[96]uint84go.string.hdr."*[96]uint8"  
   1239 ,go.string."*[96]uint8",go.string."*[96]uint8" *[96]uint8type.*[96]uint8O|60 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."*[96]uint8"p0go.weak.type.**[96]uint8"runtime.zerovaluetype.[96]uint80go.string.hdr."[4]uint8"  (go.string."[4]uint8"(go.string."[4]uint8" [4]uint8type.[4]uint8B0 runtime.algarray@runtime.gcbits.P0go.string.hdr."[4]uint8"p,go.weak.type.*[4]uint8"runtime.zerovaluetype.uint8type.[]uint8:go.typelink.[4]uint8	[4]uint8type.[4]uint82go.string.hdr."*[4]uint8"  	*go.string."*[4]uint8"*go.string."*[4]uint8" *[4]uint8type.*[4]uint8G60 runtime.algarray@"runtime.gcbits.01P2go.string.hdr."*[4]uint8"p.go.weak.type.**[4]uint8"runtime.zerovaluetype.[4]uint88go.string.hdr."**pe.Section"  0go.string."**pe.Section"0go.string."**pe.Section" **pe.Section"type.**"".SectionLX_60 runtime.algarray@"runtime.gcbits.01P8go.string.hdr."**pe.Section"p4go.weak.type.***"".Section"runtime.zerovalue type.*"".SectionTgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals44750c784da4dd430afdd97fea5c405a  Tgclocals51af24152615272c3d9efc8538f95767  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.55U2go.string.hdr."[4]string"  	*go.string."[4]string"*go.string."[4]string" [4]stringtype.[4]string@8J0&type..alg.[4]string@"runtime.gcbits.55P2go.string.hdr."[4]string"p.go.weak.type.*[4]string"runtime.zerovaluetype.stringtype.[]string>go.typelink.[4]string	[4]stringtype.[4]string2go.string.hdr."[][]uint8"  	*go.string."[][]uint8"*go.string."[][]uint8" [][]uint8type.[][]uint8}0 runtime.algarray@"runtime.gcbits.01P2go.string.hdr."[][]uint8"p.go.weak.type.*[][]uint8"runtime.zerovaluetype.[]uint8>go.typelink.[][]uint8	[][]uint8type.[][]uint8&runtime.gcbits.4902I4go.string.hdr."[4][]uint8"  
   1245 ,go.string."[4][]uint8",go.string."[4][]uint8" [4][]uint8type.[4][]uint8`Pg0 runtime.algarray@&runtime.gcbits.4902P4go.string.hdr."[4][]uint8"p0go.weak.type.*[4][]uint8"runtime.zerovaluetype.[]uint8type.[][]uint8Bgo.typelink.[4][]uint8	[4][]uint8type.[4][]uint8Tgclocals33cdeccccebe80329f1fdbee7f5874cbTgclocals0b86ef39f3fed835f14ba5f4d7c62fa2Tgclocals44750c784da4dd430afdd97fea5c405a  Tgclocals51af24152615272c3d9efc8538f95767  Btype..hashfunc."".ImportDirectory:type..hash."".ImportDirectory>type..eqfunc."".ImportDirectory6type..eq."".ImportDirectory8type..alg."".ImportDirectory  Btype..hashfunc."".ImportDirectory>type..eqfunc."".ImportDirectoryFgo.string.hdr."*pe.ImportDirectory"  >go.string."*pe.ImportDirectory">go.string."*pe.ImportDirectory"0(*pe.ImportDirectory0type.*"".ImportDirectory60 runtime.algarray@"runtime.gcbits.01PFgo.string.hdr."*pe.ImportDirectory"pBgo.weak.type.**"".ImportDirectory"runtime.zerovalue.type."".ImportDirectory"runtime.gcbits.08Dgo.string.hdr."pe.ImportDirectory"  <go.string."pe.ImportDirectory"<go.string."pe.ImportDirectory"0&pe.ImportDirectoryDgo.string.hdr."OriginalFirstThunk"  <go.string."OriginalFirstThunk"<go.string."OriginalFirstThunk"0&OriginalFirstThunk<go.string.hdr."ForwarderChain"  4go.string."ForwarderChain"4go.string."ForwarderChain" ForwarderChain4go.string.hdr."FirstThunk"  
   1247 ,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-.08type..alg."".ImportDirectory@"runtime.gcbits.08PDgo.string.hdr."pe.ImportDirectory"p0type.*"".ImportDirectory"runtime.zerovalue.type."".ImportDirectoryDgo.string.hdr."OriginalFirstThunk"type.uint32:go.string.hdr."TimeDateStamp"type.uint32<go.string.hdr."ForwarderChain"type.uint32(go.string.hdr."Name"type.uint324go.string.hdr."FirstThunk"type.uint32&go.string.hdr."dll""go.importpath."".type.string`.type."".ImportDirectory>go.string.hdr."ImportDirectory""go.importpath.""..type."".ImportDirectoryHgo.string.hdr."[]pe.ImportDirectory"  @go.string."[]pe.ImportDirectory"@go.string."[]pe.ImportDirectory"0*[]pe.ImportDirectory2type.[]"".ImportDirectoryn20 runtime.algarray@"runtime.gcbits.01PHgo.string.hdr."[]pe.ImportDirectory"pDgo.weak.type.*[]"".ImportDirectory"runtime.zerovalue.type."".ImportDirectoryjgo.typelink.[]pe.ImportDirectory	[]"".ImportDirectory2type.[]"".ImportDirectory4go.string.hdr."*[4]string"  
   1250 ,go.string."*[4]string",go.string."*[4]string" *[4]stringtype.*[4]stringik60 runtime.algarray@"runtime.gcbits.01P4go.string.hdr."*[4]string"p0go.weak.type.**[4]string"runtime.zerovaluetype.[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/dwarf4go.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."".SectionHeaderf6type..hash."".SectionHeader8type..eq."".SectionHeaderf2type..eq."".SectionHeader0type..hash."".Sectionf*type..hash."".Section,type..eq."".Sectionf&type..eq."".Section."".(*Section).ReadAtf("".(*Section).ReadAt("".Section.ReadAtf""".Section.ReadAt8type..hash."".FormatErrorf2type..hash."".FormatError4type..eq."".FormatErrorf.type..eq."".FormatError:type..hash.[1]interface {}f4type..hash.[1]interface {}6type..eq.[1]interface {}f0type..eq.[1]interface {}.type..hash."".Symbolf(type..hash."".Symbol*type..eq."".Symbolf$type..eq."".Symbol6type..hash."".COFFSymbolf0type..hash."".COFFSymbol2type..eq."".COFFSymbolf,type..eq."".COFFSymbol.type..hash.[4]stringf(type..hash.[4]string*type..eq.[4]stringf$type..eq.[4]string@type..hash."".ImportDirectoryf:type..hash."".ImportDirectory<type..eq."".ImportDirectoryf6type..eq."".ImportDirectory"runtime.zerovaluego13ld