Remove a couple of object files committed by accident.

From-SVN: r183542
This commit is contained in:
Ian Lance Taylor 2012-01-25 23:13:36 +00:00
parent 5cfa7039f3
commit e5a9c99718
2 changed files with 0 additions and 1146 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,261 +0,0 @@
go object linux amd64 weekly.2012-01-15 11312+ X:none
exports automatically generated from
_testmain.go in package "main"
$$ // exports
package main
import runtime "runtime"
import go1 "go1"
import testing "testing"
import regexp "regexp"
import time "time" // indirect
type @"time".zone struct { @"time".name string; @"time".offset int; @"time".isDST bool }
type @"time".zoneTrans struct { @"time".when int64; @"time".index uint8; @"time".isstd bool; @"time".isutc bool }
type @"time".Location struct { @"time".name string; @"time".zone []@"time".zone; @"time".tx []@"time".zoneTrans; @"time".cacheStart int64; @"time".cacheEnd int64; @"time".cacheZone *@"time".zone }
func (@"time".l *@"time".Location) String() (? string)
func (@"time".l *@"time".Location) @"time".get() (? *@"time".Location)
func (@"time".l *@"time".Location) @"time".lookup(@"time".sec int64) (@"time".name string, @"time".offset int, @"time".isDST bool, @"time".start int64, @"time".end int64)
func (@"time".l *@"time".Location) @"time".lookupName(@"time".name string "noescape") (@"time".offset int, @"time".isDST bool, @"time".ok bool)
func (@"time".l *@"time".Location) @"time".lookupOffset(@"time".offset int) (@"time".name string, @"time".isDST bool, @"time".ok bool)
type @"time".Duration int64
func (@"time".d @"time".Duration) Hours() (? float64)
func (@"time".d @"time".Duration) Minutes() (? float64)
func (@"time".d @"time".Duration) Nanoseconds() (? int64) { return int64(@"time".d) }
func (@"time".d @"time".Duration) Seconds() (? float64)
func (@"time".d @"time".Duration) String() (? string)
type @"time".Month int
func (@"time".m @"time".Month) String() (? string) { return @"time".months[@"time".m - @"time".Month(1)] }
type @"time".Weekday int
func (@"time".d @"time".Weekday) String() (? string) { return @"time".days[@"time".d] }
type @"time".Time struct { @"time".sec int64; @"time".nsec int32; @"time".loc *@"time".Location }
func (@"time".t @"time".Time) Add(@"time".d @"time".Duration) (? @"time".Time)
func (@"time".t @"time".Time) AddDate(@"time".years int, @"time".months int, @"time".days int) (? @"time".Time)
func (@"time".t @"time".Time "noescape") After(@"time".u @"time".Time "noescape") (? bool) { return @"time".t.@"time".sec > @"time".u.@"time".sec || @"time".t.@"time".sec == @"time".u.@"time".sec && @"time".t.@"time".nsec > @"time".u.@"time".nsec }
func (@"time".t @"time".Time "noescape") Before(@"time".u @"time".Time "noescape") (? bool) { return @"time".t.@"time".sec < @"time".u.@"time".sec || @"time".t.@"time".sec == @"time".u.@"time".sec && @"time".t.@"time".nsec < @"time".u.@"time".nsec }
func (@"time".t @"time".Time) Clock() (@"time".hour int, @"time".min int, @"time".sec int)
func (@"time".t @"time".Time) Date() (@"time".year int, @"time".month @"time".Month, @"time".day int)
func (@"time".t @"time".Time) Day() (? int)
func (@"time".t @"time".Time "noescape") Equal(@"time".u @"time".Time "noescape") (? bool) { return @"time".t.@"time".sec == @"time".u.@"time".sec && @"time".t.@"time".nsec == @"time".u.@"time".nsec }
func (@"time".t @"time".Time) Format(@"time".layout string) (? string)
func (@"time".t *@"time".Time "noescape") GobDecode(@"time".buf []byte "noescape") (? error)
func (@"time".t @"time".Time) GobEncode() (? []byte, ? error)
func (@"time".t @"time".Time) Hour() (? int)
func (@"time".t @"time".Time) ISOWeek() (@"time".year int, @"time".week int)
func (@"time".t @"time".Time) In(@"time".loc *@"time".Location) (? @"time".Time)
func (@"time".t @"time".Time "noescape") IsZero() (? bool) { return @"time".t.@"time".sec == 0 && @"time".t.@"time".nsec == 0 }
func (@"time".t @"time".Time) Local() (? @"time".Time)
func (@"time".t @"time".Time) Location() (? *@"time".Location)
func (@"time".t @"time".Time) MarshalJSON() (? []byte, ? error)
func (@"time".t @"time".Time) Minute() (? int)
func (@"time".t @"time".Time) Month() (? @"time".Month)
func (@"time".t @"time".Time "noescape") Nanosecond() (? int) { return int(@"time".t.@"time".nsec) }
func (@"time".t @"time".Time) Second() (? int)
func (@"time".t @"time".Time) String() (? string)
func (@"time".t @"time".Time "noescape") Sub(@"time".u @"time".Time "noescape") (? @"time".Duration) { return @"time".Duration(@"time".t.@"time".sec - @"time".u.@"time".sec) * @"time".Duration(1000000000) + @"time".Duration(@"time".t.@"time".nsec - @"time".u.@"time".nsec) }
func (@"time".t @"time".Time) UTC() (? @"time".Time)
func (@"time".t @"time".Time "noescape") Unix() (? int64) { return @"time".t.@"time".sec + -62135596800 }
func (@"time".t @"time".Time "noescape") UnixNano() (? int64) { return (@"time".t.@"time".sec + -62135596800) * 1000000000 + int64(@"time".t.@"time".nsec) }
func (@"time".t *@"time".Time "noescape") UnmarshalJSON(@"time".data []byte "noescape") (@"time".err error)
func (@"time".t @"time".Time) Weekday() (? @"time".Weekday)
func (@"time".t @"time".Time) Year() (? int)
func (@"time".t @"time".Time) Zone() (@"time".name string, @"time".offset int)
func (@"time".t @"time".Time) @"time".abs() (? uint64)
func (@"time".t @"time".Time) @"time".date(@"time".full bool) (@"time".year int, @"time".month @"time".Month, @"time".day int, @"time".yday int)
type @"testing".common struct { @"testing".output []byte; @"testing".failed bool; @"testing".start @"time".Time; @"testing".duration @"time".Duration; @"testing".self interface {}; @"testing".signal chan interface {} }
func (@"testing".c *@"testing".common "noescape") Error(@"testing".args ...interface {} "noescape")
func (@"testing".c *@"testing".common "noescape") Errorf(@"testing".format string "noescape", @"testing".args ...interface {} "noescape")
func (@"testing".c *@"testing".common "noescape") Fail() { @"testing".c.@"testing".failed = true }
func (@"testing".c *@"testing".common "noescape") FailNow()
func (@"testing".c *@"testing".common "noescape") Failed() (? bool) { return @"testing".c.@"testing".failed }
func (@"testing".c *@"testing".common "noescape") Fatal(@"testing".args ...interface {} "noescape")
func (@"testing".c *@"testing".common "noescape") Fatalf(@"testing".format string "noescape", @"testing".args ...interface {} "noescape")
func (@"testing".c *@"testing".common "noescape") Log(@"testing".args ...interface {} "noescape")
func (@"testing".c *@"testing".common "noescape") Logf(@"testing".format string "noescape", @"testing".args ...interface {} "noescape")
func (@"testing".c *@"testing".common "noescape") @"testing".log(@"testing".s string)
type @"testing".T struct { ? @"testing".common; @"testing".name string; @"testing".startParallel chan bool }
func (@"testing".t *@"testing".T "noescape") Parallel()
func (@"testing".t *@"testing".T "noescape") @"testing".report()
type @"testing".InternalTest struct { Name string; F func(? *@"testing".T) }
var @"".tests []@"testing".InternalTest
type @"testing".BenchmarkResult struct { N int; T @"time".Duration; Bytes int64 }
func (@"testing".r @"testing".BenchmarkResult) NsPerOp() (? int64)
func (@"testing".r @"testing".BenchmarkResult) String() (? string)
func (@"testing".r @"testing".BenchmarkResult) @"testing".mbPerSec() (? float64)
type @"testing".B struct { ? @"testing".common; N int; @"testing".benchmark @"testing".InternalBenchmark; @"testing".bytes int64; @"testing".timerOn bool; @"testing".result @"testing".BenchmarkResult }
func (@"testing".b *@"testing".B "noescape") ResetTimer()
func (@"testing".b *@"testing".B "noescape") SetBytes(@"testing".n int64) { @"testing".b.@"testing".bytes = @"testing".n }
func (@"testing".b *@"testing".B "noescape") StartTimer()
func (@"testing".b *@"testing".B "noescape") StopTimer()
func (@"testing".b *@"testing".B) @"testing".launch()
func (@"testing".b *@"testing".B "noescape") @"testing".nsPerOp() (? int64)
func (@"testing".b *@"testing".B) @"testing".run() (? @"testing".BenchmarkResult)
func (@"testing".b *@"testing".B) @"testing".runN(@"testing".n int)
func (@"testing".b *@"testing".B "noescape") @"testing".trimOutput()
type @"testing".InternalBenchmark struct { Name string; F func(@"testing".b *@"testing".B) }
var @"".benchmarks []@"testing".InternalBenchmark
type @"testing".InternalExample struct { Name string; F func(); Output string }
var @"".examples []@"testing".InternalExample
var @"".matchPat string
import syntax "regexp/syntax" // indirect
type @"regexp/syntax".InstOp uint8
type @"regexp/syntax".Inst struct { Op @"regexp/syntax".InstOp; Out uint32; Arg uint32; Rune []rune }
func (@"regexp/syntax".i *@"regexp/syntax".Inst "noescape") MatchEmptyWidth(@"regexp/syntax".before rune, @"regexp/syntax".after rune) (? bool)
func (@"regexp/syntax".i *@"regexp/syntax".Inst "noescape") MatchRune(@"regexp/syntax".r rune) (? bool)
func (@"regexp/syntax".i *@"regexp/syntax".Inst "noescape") String() (? string)
func (@"regexp/syntax".i *@"regexp/syntax".Inst "noescape") @"regexp/syntax".op() (? @"regexp/syntax".InstOp)
type @"regexp/syntax".EmptyOp uint8
type @"regexp/syntax".Prog struct { Inst []@"regexp/syntax".Inst; Start int; NumCap int }
func (@"regexp/syntax".p *@"regexp/syntax".Prog "noescape") Prefix() (@"regexp/syntax".prefix string, @"regexp/syntax".complete bool)
func (@"regexp/syntax".p *@"regexp/syntax".Prog "noescape") StartCond() (? @"regexp/syntax".EmptyOp)
func (@"regexp/syntax".p *@"regexp/syntax".Prog "noescape") String() (? string)
func (@"regexp/syntax".p *@"regexp/syntax".Prog "noescape") @"regexp/syntax".skipNop(@"regexp/syntax".pc uint32) (? *@"regexp/syntax".Inst)
import sync "sync" // indirect
type @"sync".Mutex struct { @"sync".state int32; @"sync".sema uint32 }
func (@"sync".m *@"sync".Mutex) Lock()
func (@"sync".m *@"sync".Mutex) Unlock()
type @"regexp".thread struct { @"regexp".inst *@"regexp/syntax".Inst; @"regexp".cap []int }
type @"regexp".entry struct { @"regexp".pc uint32; @"regexp".t *@"regexp".thread }
type @"regexp".queue struct { @"regexp".sparse []uint32; @"regexp".dense []@"regexp".entry }
type @"regexp".inputBytes struct { @"regexp".str []byte }
func (@"regexp".i *@"regexp".inputBytes "noescape") @"regexp".canCheckPrefix() (? bool) { return true }
func (@"regexp".i *@"regexp".inputBytes "noescape") @"regexp".context(@"regexp".pos int) (? @"regexp/syntax".EmptyOp)
func (@"regexp".i *@"regexp".inputBytes "noescape") @"regexp".hasPrefix(@"regexp".re *@"regexp".Regexp "noescape") (? bool)
func (@"regexp".i *@"regexp".inputBytes "noescape") @"regexp".index(@"regexp".re *@"regexp".Regexp "noescape", @"regexp".pos int) (? int)
func (@"regexp".i *@"regexp".inputBytes "noescape") @"regexp".step(@"regexp".pos int) (? rune, ? int)
type @"regexp".inputString struct { @"regexp".str string }
func (@"regexp".i *@"regexp".inputString "noescape") @"regexp".canCheckPrefix() (? bool) { return true }
func (@"regexp".i *@"regexp".inputString "noescape") @"regexp".context(@"regexp".pos int) (? @"regexp/syntax".EmptyOp)
func (@"regexp".i *@"regexp".inputString "noescape") @"regexp".hasPrefix(@"regexp".re *@"regexp".Regexp "noescape") (? bool)
func (@"regexp".i *@"regexp".inputString "noescape") @"regexp".index(@"regexp".re *@"regexp".Regexp "noescape", @"regexp".pos int) (? int)
func (@"regexp".i *@"regexp".inputString "noescape") @"regexp".step(@"regexp".pos int) (? rune, ? int)
import io "io" // indirect
type @"io".RuneReader interface { ReadRune() (@"io".r rune, @"io".size int, @"io".err error) }
type @"regexp".inputReader struct { @"regexp".r @"io".RuneReader; @"regexp".atEOT bool; @"regexp".pos int }
func (@"regexp".i *@"regexp".inputReader "noescape") @"regexp".canCheckPrefix() (? bool) { return false }
func (@"regexp".i *@"regexp".inputReader "noescape") @"regexp".context(@"regexp".pos int) (? @"regexp/syntax".EmptyOp) { return @"regexp/syntax".EmptyOp(0) }
func (@"regexp".i *@"regexp".inputReader "noescape") @"regexp".hasPrefix(@"regexp".re *@"regexp".Regexp "noescape") (? bool) { return false }
func (@"regexp".i *@"regexp".inputReader "noescape") @"regexp".index(@"regexp".re *@"regexp".Regexp "noescape", @"regexp".pos int) (? int) { return -1 }
func (@"regexp".i *@"regexp".inputReader "noescape") @"regexp".step(@"regexp".pos int) (? rune, ? int)
type @"regexp".input interface { @"regexp".step(@"regexp".pos int) (@"regexp".r rune, @"regexp".width int); @"regexp".canCheckPrefix() (? bool); @"regexp".hasPrefix(@"regexp".re *@"regexp".Regexp) (? bool); @"regexp".index(@"regexp".re *@"regexp".Regexp, @"regexp".pos int) (? int); @"regexp".context(@"regexp".pos int) (? @"regexp/syntax".EmptyOp) }
type @"regexp".machine struct { @"regexp".re *@"regexp".Regexp; @"regexp".p *@"regexp/syntax".Prog; @"regexp".q0 @"regexp".queue; @"regexp".q1 @"regexp".queue; @"regexp".pool []*@"regexp".thread; @"regexp".matched bool; @"regexp".matchcap []int; @"regexp".inputBytes @"regexp".inputBytes; @"regexp".inputString @"regexp".inputString; @"regexp".inputReader @"regexp".inputReader }
func (@"regexp".m *@"regexp".machine "noescape") @"regexp".add(@"regexp".q *@"regexp".queue "noescape", @"regexp".pc uint32, @"regexp".pos int, @"regexp".cap []int "noescape", @"regexp".cond @"regexp/syntax".EmptyOp, @"regexp".t *@"regexp".thread) (? *@"regexp".thread)
func (@"regexp".m *@"regexp".machine "noescape") @"regexp".alloc(@"regexp".i *@"regexp/syntax".Inst) (? *@"regexp".thread)
func (@"regexp".m *@"regexp".machine "noescape") @"regexp".clear(@"regexp".q *@"regexp".queue "noescape")
func (@"regexp".m *@"regexp".machine "noescape") @"regexp".free(@"regexp".t *@"regexp".thread)
func (@"regexp".m *@"regexp".machine "noescape") @"regexp".init(@"regexp".ncap int)
func (@"regexp".m *@"regexp".machine "noescape") @"regexp".match(@"regexp".i @"regexp".input, @"regexp".pos int) (? bool)
func (@"regexp".m *@"regexp".machine) @"regexp".newInputBytes(@"regexp".b []byte) (? @"regexp".input)
func (@"regexp".m *@"regexp".machine) @"regexp".newInputReader(@"regexp".r @"io".RuneReader) (? @"regexp".input)
func (@"regexp".m *@"regexp".machine) @"regexp".newInputString(@"regexp".s string) (? @"regexp".input)
func (@"regexp".m *@"regexp".machine "noescape") @"regexp".step(@"regexp".runq *@"regexp".queue "noescape", @"regexp".nextq *@"regexp".queue "noescape", @"regexp".pos int, @"regexp".nextPos int, @"regexp".c rune, @"regexp".nextCond @"regexp/syntax".EmptyOp)
type @"regexp".Regexp struct { @"regexp".expr string; @"regexp".prog *@"regexp/syntax".Prog; @"regexp".prefix string; @"regexp".prefixBytes []byte; @"regexp".prefixComplete bool; @"regexp".prefixRune rune; @"regexp".cond @"regexp/syntax".EmptyOp; @"regexp".numSubexp int; @"regexp".longest bool; @"regexp".mu @"sync".Mutex; @"regexp".machine []*@"regexp".machine }
func (@"regexp".re *@"regexp".Regexp) Find(@"regexp".b []byte) (? []byte)
func (@"regexp".re *@"regexp".Regexp) FindAll(@"regexp".b []byte, @"regexp".n int) (? [][]byte)
func (@"regexp".re *@"regexp".Regexp) FindAllIndex(@"regexp".b []byte, @"regexp".n int) (? [][]int)
func (@"regexp".re *@"regexp".Regexp) FindAllString(@"regexp".s string, @"regexp".n int) (? []string)
func (@"regexp".re *@"regexp".Regexp) FindAllStringIndex(@"regexp".s string, @"regexp".n int) (? [][]int)
func (@"regexp".re *@"regexp".Regexp) FindAllStringSubmatch(@"regexp".s string, @"regexp".n int) (? [][]string)
func (@"regexp".re *@"regexp".Regexp) FindAllStringSubmatchIndex(@"regexp".s string, @"regexp".n int) (? [][]int)
func (@"regexp".re *@"regexp".Regexp) FindAllSubmatch(@"regexp".b []byte, @"regexp".n int) (? [][][]byte)
func (@"regexp".re *@"regexp".Regexp) FindAllSubmatchIndex(@"regexp".b []byte, @"regexp".n int) (? [][]int)
func (@"regexp".re *@"regexp".Regexp) FindIndex(@"regexp".b []byte) (@"regexp".loc []int)
func (@"regexp".re *@"regexp".Regexp) FindReaderIndex(@"regexp".r @"io".RuneReader) (? []int)
func (@"regexp".re *@"regexp".Regexp) FindReaderSubmatchIndex(@"regexp".r @"io".RuneReader) (? []int)
func (@"regexp".re *@"regexp".Regexp) FindString(@"regexp".s string) (? string)
func (@"regexp".re *@"regexp".Regexp) FindStringIndex(@"regexp".s string) (? []int)
func (@"regexp".re *@"regexp".Regexp) FindStringSubmatch(@"regexp".s string) (? []string)
func (@"regexp".re *@"regexp".Regexp) FindStringSubmatchIndex(@"regexp".s string) (? []int)
func (@"regexp".re *@"regexp".Regexp) FindSubmatch(@"regexp".b []byte) (? [][]byte)
func (@"regexp".re *@"regexp".Regexp) FindSubmatchIndex(@"regexp".b []byte) (? []int)
func (@"regexp".re *@"regexp".Regexp "noescape") LiteralPrefix() (@"regexp".prefix string, @"regexp".complete bool) { return @"regexp".re.@"regexp".prefix, @"regexp".re.@"regexp".prefixComplete }
func (@"regexp".re *@"regexp".Regexp) Match(@"regexp".b []byte) (? bool)
func (@"regexp".re *@"regexp".Regexp) MatchReader(@"regexp".r @"io".RuneReader) (? bool)
func (@"regexp".re *@"regexp".Regexp) MatchString(@"regexp".s string) (? bool)
func (@"regexp".re *@"regexp".Regexp "noescape") NumSubexp() (? int) { return @"regexp".re.@"regexp".numSubexp }
func (@"regexp".re *@"regexp".Regexp) ReplaceAll(@"regexp".src []byte, @"regexp".repl []byte "noescape") (? []byte)
func (@"regexp".re *@"regexp".Regexp) ReplaceAllFunc(@"regexp".src []byte, @"regexp".repl func(? []byte) (? []byte) "noescape") (? []byte)
func (@"regexp".re *@"regexp".Regexp) ReplaceAllString(@"regexp".src string, @"regexp".repl string "noescape") (? string)
func (@"regexp".re *@"regexp".Regexp) ReplaceAllStringFunc(@"regexp".src string, @"regexp".repl func(? string) (? string) "noescape") (? string)
func (@"regexp".re *@"regexp".Regexp "noescape") String() (? string) { return @"regexp".re.@"regexp".expr }
func (@"regexp".re *@"regexp".Regexp) @"regexp".allMatches(@"regexp".s string, @"regexp".b []byte, @"regexp".n int, @"regexp".deliver func(? []int) "noescape")
func (@"regexp".re *@"regexp".Regexp) @"regexp".doExecute(@"regexp".r @"io".RuneReader, @"regexp".b []byte, @"regexp".s string, @"regexp".pos int, @"regexp".ncap int) (? []int)
func (@"regexp".re *@"regexp".Regexp) @"regexp".get() (? *@"regexp".machine)
func (@"regexp".re *@"regexp".Regexp "noescape") @"regexp".pad(@"regexp".a []int) (? []int)
func (@"regexp".re *@"regexp".Regexp) @"regexp".put(@"regexp".z *@"regexp".machine)
var @"".matchRe *@"regexp".Regexp
func @"".matchString(@"".pat string, @"".str string) (@"".result bool, @"".err error)
func @"".main()
var @"".statictmp_0001 [0]@"testing".InternalTest
var @"".statictmp_0002 [10]@"testing".InternalBenchmark
var @"".statictmp_0003 [0]@"testing".InternalExample
var @"".initdone· uint8
func @"".init()
var @"time".months [12]string
var @"time".days [7]string
$$ // local types
$$
!
y</y<homey<ianty<goy<testy<benchy<go1y<_testmain.go8y<go1.a8ÿÿÿÿu„y<testing.a8ÿÿÿÿu„y<regexp.a8ÿÿÿÿu8*q"".matchStringqtype.func(string, string) (bool, error)ãqE(8u„q"".matchPatqtype.stringrqt"".patrtt"".errqtype.error®u•(t®u•0tqtype.boolqu<>t "".resultq t„q
"".matchReq type.*regexp.Regexp®
q ®u¢Qp&Z<01>®q®<01>r<00>«<00>®t®<01>r<00>q runtime.cmpstringq type.func(string, string) int q rtr <00>&uZpY-t<00>regexp.expr«<0E>®q®ŽrqrŽ„qregexp.Compileqtype.func(string) (*regexp.Regexp, error)q®<00>®
q «<00>®Ž®•(t®Ž®•0t«•(t¢ŽuQ- ®#
q <00>regexp.re®#<11><00>regexp.s«#<12>t"".str®#t®#Žr#tr#Ž„qregexp.(*Regexp).MatchString#qq#<00>q#q#q# t®#u•(t®#u•0tª#q"".mainqtype.func()ã&q8'“qx<00>testing.matchString®'<17><00>testing.tests«'<18>q"".testsqtype.[]testing.InternalTest®'q®'Žr'qr'Žr' qr' Ž„<00>testing.benchmarks«'<1B>q"".benchmarksqtype.[]testing.InternalBenchmark®'q®'Žr'qr'Žr' qr' Ž„<00>testing.examples«'(<1E>q"".examplesq type.[]testing.InternalExample®'q ®'Žr'q r'Žr' q r' Ž„q!testing.Mainq"type.func(func(string, string) (bool, error), []testing.InternalTest, []testing.InternalBenchmark, []testing.InternalExample)'!q"ª(q#"".initã(#qu„q$"".initdone·q%type.uint8q($q%q(<00>%%(uQ(`pq(<00>%%(uZ(_(q&runtime.throwinit(&qq(u$q%„q'regexp.init('qq(testing.init((qq)go1.init()qq*go1.BenchmarkBinaryTree17q+type.func(*testing.B)®“q*x+q,"".statictmp_0002®,q„q-go1.BenchmarkFannkuch11®“q-x+®(,q„q.go1.BenchmarkGobDecode®“q.x+®@,q„q/go1.BenchmarkGobEncode®“q/x+®X,q„q0go1.BenchmarkGzip®“q0x+®p,q„q1go1.BenchmarkGunzip®“q1x+®ˆ,q„qgo1.BenchmarkJSONEncode®“qx+® ,q„qgo1.BenchmarkJSONDecode®“qx+®¸,q„qgo1.BenchmarkRevcomp25M®“qx+®Ð,q„qgo1.BenchmarkTemplate®“qx+®è,qq(u$q%ª(q"".statictmp_0001-“oqqx-—oqu-—o qu-“oqq,x-—oq
u-—o q
u„qgo.string."go1.BenchmarkBinaryTree17"-o,qq x-oqq x-oqu-o q go1.Benc-oq hmarkBin-oq aryTree1-o$q 7-o%qu6o
q(u-o,qu„qgo.string."go1.BenchmarkFannkuch11"-o,qq x-oqq x-oqu-o q go1.Benc-oq hmarkFan-oq nkuch11-o#qu6o
q(u-o ,qu„qgo.string."go1.BenchmarkGobDecode"-o0,qq x-oqq x-oqu-o q go1.Benc-oq hmarkGob-oq Decode-o"qu6o
q(u-o8,qu„q go.string."go1.BenchmarkGobEncode"-oH,qq x-o qq x-o qu-o q go1.Benc-o q hmarkGob-o q Encode-o" qu6o
q(u-oP,qu„q
go.string."go1.BenchmarkGzip"-o`,qq
x-o
qq
x-o
qu-o
q go1.Benc-o
q hmarkGzi-o
q p-o
qu6o
q u-oh,qu„q go.string."go1.BenchmarkGunzip"-ox,qq x-o qq x-o qu-o q go1.Benc-o q hmarkGun-o q zip-o qu6o
q u-o,qu„q go.string."go1.BenchmarkJSONEncode"-o<08>,qq x-o qq x-o qu-o q go1.Benc-o q hmarkJSO-o q NEncode-o# qu6o
q(u-o˜,qu„q go.string."go1.BenchmarkJSONDecode"-o¨,qq x-o qq x-o qu-o q go1.Benc-o q hmarkJSO-o q NDecode-o# qu6o
q(u-o°,qu„qgo.string."go1.BenchmarkRevcomp25M"-oÀ,qq x-oqq x-oqu-o q go1.Benc-oq hmarkRev-oq comp25M-o#qu6o
q(u-oÈ,qu„qgo.string."go1.BenchmarkTemplate"-oØ,qq x-oqq x-oqu-o q go1.Benc-oq hmarkTem-oq plate-o!qu6o
q(u-oà,qu„q"".statictmp_0003-“oq qx-—oq u-—o q u6qu6qu6q u„q"".matchPatqtype.string6qu„q"".matchReqtype.*regexp.Regexp6qu6qu6,qðu6qu6($q%u„qtype.func(string, string) (bool, error)qtype.*runtime.FuncType-(oqqx-(oqqx-(oqu-(oqB€7#u-(oqu-(oqu-(oqu-(oqu„qruntime.algarray-(o qq@x„qgo.string."func(string, string) (bool, error)"-(o(qqx-(oqq x-(oq"u-(o q func(str-(oq ing, str-(oq ing) (bo-(o$q ol, erro-(o,q r)-(o.qu6(o
q0u„qweak.type.*func(string, string) (bool, error)-(o8qqx-(o@qu-(oHqqhx-(oPqu-(oTqu-(oXqqxx-(o`qu-(odqu-(ohqqx-(opqqx„qtype.bool-(oxqqx„qtype.error-(oqqx6(o
qˆu„qtype.func(string, string) int-(oqqx-(oqqx-(oqu-(oqE6Ìu-(oqu-(oqu-(oqu-(oqu-(o qq@x„qgo.string."func(string, string) int"-(o(qqx-(oqq x-(oqu-(o q func(str-(oq ing, str-(oq ing) int-(o$qu6(o
q(u„qweak.type.*func(string, string) int-(o8qqx-(o@qu-(oHqqhx-(oPqu-(oTqu-(oXqqxx-(o`qu-(odqu-(ohqqx-(opqqx„qtype.int-(oxqqx6(o
qu„q type.func(string) (*regexp.Regexp, error)-(o qqx-(o qq x-(o qu-(o qEN4Béu-(o qu-(o qu-(o qu-(o qu-(o qq@x„q!go.string."func(string) (*regexp.Regexp, error)"-(o( qq!x-(o!qq !x-(o!q$u-(o !q func(str-(o!q ing) (*r-(o!q egexp.Re-(o$!q gexp, er-(o,!q ror)-(o0!qu6(o
!q8u„q"weak.type.*func(string) (*regexp.Regexp, error)-(o8 qq"x-(o@ qu-(oH qqh x-(oP qu-(oT qu-(oX qqp x-(o` qu-(od qu-(oh qqx-(op qqx-(ox qqx6(o
qu„q#type.func()-(o#qqx-(o#qq#x-(o#qu-(o#qEö¼öu-(o#qu-(o#qu-(o#qu-(o#qu-(o #qq@x„q$go.string."func()"-(o(#qq$x-(o$qq $x-(o$qu-(o $q func()-(o$qu6(o
$qu„q%weak.type.*func()-(o8#qq%x-(o@#qu-(oH#qqh#x-(oP#qu-(oT#qu-(oX#qqh#x-(o`#qu-(od#qu6(o
#qhu„q&type.[]testing.InternalTestq'type.*runtime.SliceType-(o&qq'x-(o&qq&x-(o&qu-(o&q…ÑXu-(o&qu-(o&qu-(o&qu-(o&qu-(o &qqàx„q(go.string."[]testing.InternalTest"-(o(&qq(x-(o(qq (x-(o(qu-(o (q []testin-(o(q g.Intern-(o(q alTest-(o"(qu6(o
(q(u„q)weak.type.*[]testing.InternalTest-(o8&qq)x„q*type.testing.InternalTest-(o@&qq*x6(o
&qHu„q+type.[]testing.InternalBenchmark-(o+qq'x-(o+qq+x-(o+qu-(o+q'À(Vu-(o+qu-(o+qu-(o+qu-(o+qu-(o +qqàx„q,go.string."[]testing.InternalBenchmark"-(o(+qq,x-(o,qq ,x-(o,qu-(o ,q []testin-(o,q g.Intern-(o,q alBenchm-(o$,q ark-(o',qu6(o
,q(u„q-weak.type.*[]testing.InternalBenchmark-(o8+qq-x„q.type.testing.InternalBenchmark-(o@+qq.x6(o
+qHu„q/type.[]testing.InternalExample-(o/qq'x-(o/qq/x-(o/qu-(o/qoÁ£Ju-(o/qu-(o/qu-(o/qu-(o/qu-(o /qqàx„q0go.string."[]testing.InternalExample"-(o(/qq0x-(o0qq 0x-(o0qu-(o 0q []testin-(o0q g.Intern-(o0q alExampl-(o$0q e-(o%0qu6(o
0q(u„q1weak.type.*[]testing.InternalExample-(o8/qq1x„qtype.testing.InternalExample-(o@/qqx6(o
/qHu„qtype.func(func(string, string) (bool, error), []testing.InternalTest, []testing.InternalBenchmark, []testing.InternalExample)-(oqqx-(oqqx-(oqu-(oqEÍŒu-(oqu-(oqu-(oqu-(oqu-(o qq@x„q""..gostring.1-(o(qqx-(oqq x-(oqxu-(o q func(fun-(oq c(string-(oq , string-(o$q ) (bool,-(o,q error),-(o4q []testi-(o<q ng.Inter-(oDq nalTest,-(oLq []testi-(oTq ng.Inter-(o\q nalBench-(odq mark, []-(olq testing.-(otq Internal-(o|q Example)-(oqu6(o
qˆu„qweak.type.*func(func(string, string) (bool, error), []testing.InternalTest, []testing.InternalBenchmark, []testing.InternalExample)-(o8qqx-(o@qu-(oHqqhx-(oPqu-(oTqu-(oXqqˆx-(o`qu-(odqu-(ohqqx-(opqq&x-(oxqq+x-(oqq/x6(o
qˆu„qtype.func(*testing.B)-(oqqx-(oqqx-(oqu-(oqEúrÀu-(oqu-(oqu-(oqu-(oqu-(o qqÀx„qgo.string."func(*testing.B)"-(o(qqx-(oqq x-(oqu-(o q func(*te-(oq sting.B)-(oqu6(o
q u„qweak.type.*func(*testing.B)-(o8qqx-(o@qu-(oHqqhx-(oPqu-(oTqu-(oXqqpx-(o`qu-(odqu„qtype.*testing.B-(ohqqx6(o
qpu„q go.importpath.runtime.q
go.string."runtime"-(o qq
x-(o
qq
x-(o
qu-(o
q runtime-(o
qu6(o
qu-(o qu6(o
qu„q go.importpath.go1.q go.string."go1"-(o qq x-(o qq x-(o qu-(o q go1-(o qu6(o
qu-(o qu6(o
qu„q go.importpath.testing.qgo.string."testing"-(o qq x-(oqq x-(oqu-(o q testing-(oqu6(o
qu-(o qu6(o
qu„qgo.importpath.regexp.qgo.string."regexp"-(oqq x-(oqq x-(oqu-(o q regexp-(oqu6(o
qu-(oqu6(o
quP