├── vendor ├── golang.org │ └── x │ │ ├── sys │ │ ├── unix │ │ │ ├── .gitignore │ │ │ ├── asm.s │ │ │ ├── export_test.go │ │ │ ├── constants.go │ │ │ ├── syscall_no_getwd.go │ │ │ ├── zsysnum_solaris_amd64.go │ │ │ ├── env_unset.go │ │ │ ├── flock_linux_32bit.go │ │ │ ├── asm_solaris_amd64.s │ │ │ ├── gccgo_linux_amd64.go │ │ │ ├── race0.go │ │ │ ├── mmap_unix_test.go │ │ │ ├── syscall_freebsd_test.go │ │ │ ├── env_unix.go │ │ │ ├── asm_linux_arm64.s │ │ │ ├── str.go │ │ │ ├── race.go │ │ │ ├── asm_linux_s390x.s │ │ │ ├── asm_linux_ppc64x.s │ │ │ ├── asm_linux_arm.s │ │ │ ├── asm_linux_mips64x.s │ │ │ ├── asm_freebsd_arm.s │ │ │ ├── asm_netbsd_arm.s │ │ │ ├── asm_darwin_386.s │ │ │ ├── asm_freebsd_386.s │ │ │ ├── asm_netbsd_386.s │ │ │ ├── asm_openbsd_386.s │ │ │ ├── asm_darwin_amd64.s │ │ │ ├── asm_freebsd_amd64.s │ │ │ ├── asm_linux_amd64.s │ │ │ ├── asm_netbsd_amd64.s │ │ │ ├── asm_openbsd_amd64.s │ │ │ ├── asm_dragonfly_amd64.s │ │ │ ├── asm_darwin_arm.s │ │ │ ├── bluetooth_linux.go │ │ │ ├── asm_darwin_arm64.s │ │ │ ├── flock.go │ │ │ ├── mksysnum_darwin.pl │ │ │ ├── asm_linux_386.s │ │ │ └── syscall_solaris_amd64.go │ │ ├── codereview.cfg │ │ ├── .gitignore │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── README │ │ ├── plan9 │ │ │ ├── asm.s │ │ │ ├── env_unset.go │ │ │ ├── pwd_go15_plan9.go │ │ │ ├── pwd_plan9.go │ │ │ ├── race0.go │ │ │ ├── mksysnum_plan9.sh │ │ │ ├── str.go │ │ │ ├── env_plan9.go │ │ │ ├── race.go │ │ │ ├── asm_plan9_386.s │ │ │ ├── asm_plan9_amd64.s │ │ │ └── syscall_test.go │ │ ├── windows │ │ │ ├── svc │ │ │ │ ├── go12.go │ │ │ │ ├── example │ │ │ │ │ └── beep.go │ │ │ │ ├── go12.c │ │ │ │ └── go13.go │ │ │ ├── registry │ │ │ │ ├── mksyscall.go │ │ │ │ └── export_test.go │ │ │ ├── mksyscall.go │ │ │ ├── env_unset.go │ │ │ ├── asm_windows_386.s │ │ │ ├── asm_windows_amd64.s │ │ │ ├── race0.go │ │ │ ├── ztypes_windows_386.go │ │ │ ├── ztypes_windows_amd64.go │ │ │ ├── str.go │ │ │ ├── env_windows.go │ │ │ ├── race.go │ │ │ ├── eventlog.go │ │ │ └── syscall_test.go │ │ └── .gitattributes │ │ ├── net │ │ ├── codereview.cfg │ │ ├── http2 │ │ │ ├── .gitignore │ │ │ ├── h2demo │ │ │ │ ├── rootCA.srl │ │ │ │ ├── .gitignore │ │ │ │ ├── Makefile │ │ │ │ └── README │ │ │ ├── Makefile │ │ │ ├── errors_test.go │ │ │ ├── README │ │ │ └── gotrack_test.go │ │ ├── .gitignore │ │ ├── html │ │ │ ├── charset │ │ │ │ └── testdata │ │ │ │ │ ├── UTF-16BE-BOM.html │ │ │ │ │ ├── UTF-16LE-BOM.html │ │ │ │ │ └── README │ │ │ ├── testdata │ │ │ │ └── webkit │ │ │ │ │ ├── pending-spec-changes-plain-text-unsafe.dat │ │ │ │ │ ├── scripted │ │ │ │ │ ├── adoption01.dat │ │ │ │ │ └── webkit01.dat │ │ │ │ │ ├── adoption02.dat │ │ │ │ │ ├── inbody01.dat │ │ │ │ │ └── isindex.dat │ │ │ └── example_test.go │ │ ├── README │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── route │ │ │ ├── syscall.s │ │ │ ├── message_darwin_test.go │ │ │ ├── interface_announce.go │ │ │ ├── route_classic.go │ │ │ ├── interface_multicast.go │ │ │ ├── route_openbsd.go │ │ │ ├── sys.go │ │ │ └── syscall.go │ │ ├── ipv4 │ │ │ ├── thunk_linux_386.s │ │ │ ├── sys_stub.go │ │ │ ├── sockopt_stub.go │ │ │ ├── payload.go │ │ │ ├── bpfopt_stub.go │ │ │ ├── mocktransponder_test.go │ │ │ ├── sockopt_asmreqn_stub.go │ │ │ ├── sockopt_ssmreq_stub.go │ │ │ ├── icmp_stub.go │ │ │ ├── helper_stub.go │ │ │ ├── control_stub.go │ │ │ ├── sockopt_asmreq_stub.go │ │ │ ├── icmp_linux.go │ │ │ ├── zsys_netbsd.go │ │ │ ├── zsys_openbsd.go │ │ │ ├── control_windows.go │ │ │ ├── bpfopt_linux.go │ │ │ ├── zsys_dragonfly.go │ │ │ ├── genericopt_stub.go │ │ │ ├── syscall_unix.go │ │ │ └── syscall_linux_386.go │ │ ├── ipv6 │ │ │ ├── thunk_linux_386.s │ │ │ ├── sys_stub.go │ │ │ ├── sockopt_stub.go │ │ │ ├── payload.go │ │ │ ├── bpfopt_stub.go │ │ │ ├── helper_stub.go │ │ │ ├── sockopt_ssmreq_stub.go │ │ │ ├── icmp_stub.go │ │ │ ├── control_stub.go │ │ │ ├── icmp_solaris.go │ │ │ ├── sockopt_asmreq_windows.go │ │ │ ├── sockopt_asmreq_unix.go │ │ │ ├── icmp_windows.go │ │ │ ├── icmp_linux.go │ │ │ ├── mocktransponder_test.go │ │ │ ├── control_windows.go │ │ │ ├── icmp_bsd.go │ │ │ ├── bpfopt_linux.go │ │ │ ├── syscall_unix.go │ │ │ ├── genericopt_stub.go │ │ │ └── syscall_linux_386.go │ │ ├── internal │ │ │ └── nettest │ │ │ │ ├── rlimit_windows.go │ │ │ │ ├── rlimit_stub.go │ │ │ │ ├── error_stub.go │ │ │ │ ├── rlimit.go │ │ │ │ ├── stack_stub.go │ │ │ │ ├── rlimit_unix.go │ │ │ │ ├── stack_unix.go │ │ │ │ └── error_posix.go │ │ ├── icmp │ │ │ ├── sys_freebsd.go │ │ │ ├── helper.go │ │ │ └── ipv6.go │ │ ├── .gitattributes │ │ ├── proxy │ │ │ └── direct.go │ │ ├── webdav │ │ │ └── internal │ │ │ │ └── xml │ │ │ │ └── README │ │ ├── bpf │ │ │ └── testdata │ │ │ │ └── all_instructions.bpf │ │ ├── websocket │ │ │ ├── examplehandler_test.go │ │ │ └── exampledial_test.go │ │ └── context │ │ │ ├── ctxhttp │ │ │ └── ctxhttp_17_test.go │ │ │ └── withtimeout_test.go │ │ ├── crypto │ │ ├── codereview.cfg │ │ ├── .gitignore │ │ ├── ed25519 │ │ │ └── testdata │ │ │ │ └── sign.input.gz │ │ ├── sha3 │ │ │ ├── testdata │ │ │ │ └── keccakKats.json.deflate │ │ │ ├── keccakf_amd64.go │ │ │ ├── xor.go │ │ │ ├── register.go │ │ │ └── xor_generic.go │ │ ├── README │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── ssh │ │ │ ├── test │ │ │ │ ├── doc.go │ │ │ │ └── tcpip_test.go │ │ │ ├── terminal │ │ │ │ ├── util_bsd.go │ │ │ │ └── util_linux.go │ │ │ ├── testdata │ │ │ │ └── doc.go │ │ │ ├── tcpip_test.go │ │ │ └── doc.go │ │ ├── blake2b │ │ │ ├── blake2b_ref.go │ │ │ └── blake2b_amd64.go │ │ ├── .gitattributes │ │ ├── blake2s │ │ │ ├── blake2s_ref.go │ │ │ └── blake2s_386.go │ │ ├── chacha20poly1305 │ │ │ ├── chacha20poly1305_noasm.go │ │ │ └── internal │ │ │ │ └── chacha20 │ │ │ │ └── chacha_test.go │ │ ├── curve25519 │ │ │ ├── const_amd64.s │ │ │ └── curve25519_test.go │ │ ├── pkcs12 │ │ │ ├── internal │ │ │ │ └── rc2 │ │ │ │ │ └── bench_test.go │ │ │ └── errors.go │ │ ├── poly1305 │ │ │ ├── sum_amd64.go │ │ │ └── sum_arm.go │ │ ├── salsa20 │ │ │ └── salsa │ │ │ │ └── salsa20_amd64.go │ │ └── bcrypt │ │ │ └── base64.go │ │ └── oauth2 │ │ ├── google │ │ ├── testdata │ │ │ └── gcloud │ │ │ │ └── properties │ │ ├── appengine_hook.go │ │ └── appenginevm_hook.go │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ ├── .travis.yml │ │ ├── vk │ │ └── vk.go │ │ ├── slack │ │ └── slack.go │ │ ├── uber │ │ └── uber.go │ │ ├── bitbucket │ │ └── bitbucket.go │ │ ├── heroku │ │ └── heroku.go │ │ ├── github │ │ └── github.go │ │ ├── fitbit │ │ └── fitbit.go │ │ ├── facebook │ │ └── facebook.go │ │ ├── foursquare │ │ └── foursquare.go │ │ ├── linkedin │ │ └── linkedin.go │ │ ├── microsoft │ │ └── microsoft.go │ │ ├── odnoklassniki │ │ └── odnoklassniki.go │ │ ├── client_appengine.go │ │ ├── mediamath │ │ └── mediamath.go │ │ ├── paypal │ │ └── paypal.go │ │ └── internal │ │ └── transport_test.go ├── github.com │ ├── digitalocean │ │ └── godo │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── doc.go │ │ │ ├── errors_test.go │ │ │ ├── CONTRIBUTING.md │ │ │ ├── errors.go │ │ │ ├── util │ │ │ └── droplet_test.go │ │ │ └── timestamp.go │ ├── tent │ │ └── http-link-go │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ └── README.md │ ├── google │ │ └── go-querystring │ │ │ └── .gitignore │ ├── robertkrimen │ │ └── otto │ │ │ ├── parser │ │ │ ├── Makefile │ │ │ ├── dbg.go │ │ │ └── scope.go │ │ │ ├── token │ │ │ └── Makefile │ │ │ ├── .gitignore │ │ │ ├── otto │ │ │ ├── Makefile │ │ │ └── main.go │ │ │ ├── DESIGN.markdown │ │ │ ├── type_number.go │ │ │ ├── dbg.go │ │ │ ├── clone_test.go │ │ │ ├── underscore │ │ │ └── Makefile │ │ │ ├── type_boolean.go │ │ │ ├── type_go_slice_test.go │ │ │ ├── cmpl.go │ │ │ ├── test │ │ │ └── Makefile │ │ │ ├── result.go │ │ │ ├── scope.go │ │ │ ├── value_primitive.go │ │ │ ├── type_error.go │ │ │ ├── builtin_boolean.go │ │ │ ├── value_boolean.go │ │ │ ├── registry │ │ │ ├── README.markdown │ │ │ └── registry.go │ │ │ └── parser_test.go │ └── golang │ │ └── protobuf │ │ ├── AUTHORS │ │ ├── CONTRIBUTORS │ │ └── .gitignore ├── gopkg.in │ ├── readline.v1 │ │ ├── .gitignore │ │ ├── utils_test.go │ │ ├── example │ │ │ ├── readline-im │ │ │ │ └── README.md │ │ │ ├── readline-remote │ │ │ │ ├── readline-remote-client │ │ │ │ │ └── client.go │ │ │ │ └── readline-remote-server │ │ │ │ │ └── server.go │ │ │ └── readline-multiline │ │ │ │ └── readline-multiline.go │ │ ├── std_windows.go │ │ ├── .travis.yml │ │ ├── term_bsd.go │ │ ├── term_linux.go │ │ ├── doc.go │ │ ├── debug.go │ │ ├── password.go │ │ ├── utils_windows.go │ │ └── char.go │ └── sourcemap.v1 │ │ ├── Makefile │ │ ├── .travis.yml │ │ ├── example_test.go │ │ └── README.md └── google.golang.org │ └── appengine │ ├── demos │ ├── guestbook │ │ ├── favicon.ico │ │ ├── index.yaml │ │ ├── app.yaml │ │ └── templates │ │ │ └── guestbook.html │ └── helloworld │ │ ├── favicon.ico │ │ └── app.yaml │ ├── internal │ ├── api_race_test.go │ ├── main.go │ ├── identity.go │ ├── base │ │ └── api_base.proto │ ├── capability │ │ └── capability_service.proto │ ├── channel │ │ └── channel_service.proto │ └── app_id.go │ ├── cloudsql │ ├── cloudsql_classic.go │ └── cloudsql_vm.go │ ├── socket │ └── doc.go │ ├── timeout.go │ ├── channel │ └── channel_test.go │ ├── .travis.yml │ ├── appengine_vm.go │ ├── aetest │ └── instance_classic.go │ ├── remote_api │ └── client_test.go │ ├── namespace.go │ ├── user │ └── user_classic.go │ ├── appengine_test.go │ └── file │ └── file.go ├── cmd └── dorepl │ └── README.md ├── NOTICE ├── .travis.yml ├── internal ├── ottoutil │ └── jsvendor │ │ └── corejs │ │ ├── corejs.go │ │ └── corejs_test.go └── godoutil │ └── iterate.go ├── glide.yaml ├── example └── script.js ├── appveyor.yml └── pkg └── extra └── do └── cloud ├── floatingips └── action.go ├── volumes └── action.go └── accounts └── client.go /vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /vendor/github.com/tent/http-link-go/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /vendor/gopkg.in/readline.v1/.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.tmp 3 | -------------------------------------------------------------------------------- /vendor/github.com/google/go-querystring/.gitignore: -------------------------------------------------------------------------------- 1 | *.test 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/gopkg.in/readline.v1/utils_test.go: -------------------------------------------------------------------------------- 1 | package readline 2 | -------------------------------------------------------------------------------- /cmd/dorepl/README.md: -------------------------------------------------------------------------------- 1 | # dorepl 2 | 3 | A repl for DigitalOcean. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/codereview.cfg: -------------------------------------------------------------------------------- 1 | issuerepo: golang/go 2 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/rootCA.srl: -------------------------------------------------------------------------------- 1 | E2CE26BF3285059C 2 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/parser/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: test 2 | 3 | test: 4 | go test 5 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/google/testdata/gcloud/properties: -------------------------------------------------------------------------------- 1 | [core] 2 | account = bar@example.com -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.7 5 | - tip 6 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/token/Makefile: -------------------------------------------------------------------------------- 1 | token_const.go: tokenfmt 2 | ./$^ | gofmt > $@ 3 | -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/doc.go: -------------------------------------------------------------------------------- 1 | // Package godo is the DigtalOcean API v2 client for Go 2 | package godo 3 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/.gitignore: -------------------------------------------------------------------------------- 1 | /.test 2 | /otto/otto 3 | /otto/otto-* 4 | /test/test-*.js 5 | /test/tester 6 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/otto/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: build 2 | 3 | build: 4 | go build -a 5 | -gxc build-darwin-386 -a 6 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/.gitignore: -------------------------------------------------------------------------------- 1 | # Add no patterns to .hgignore except for files generated by the build. 2 | last-change 3 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/.gitignore: -------------------------------------------------------------------------------- 1 | h2demo 2 | h2demo.linux 3 | client-id.dat 4 | client-secret.dat 5 | token.dat 6 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/DESIGN.markdown: -------------------------------------------------------------------------------- 1 | * Designate the filename of "anonymous" source code by the hash (md5/sha1, etc.) 2 | -------------------------------------------------------------------------------- /vendor/gopkg.in/sourcemap.v1/Makefile: -------------------------------------------------------------------------------- 1 | all: 2 | go test ./... -test.v -test.cpu=1,2,4 3 | go test ./... -test.v -test.short -test.race 4 | -------------------------------------------------------------------------------- /vendor/github.com/tent/http-link-go/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.1 4 | - tip 5 | before_install: 6 | - go get launchpad.net/gocheck 7 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- 1 | godotto 2 | Copyright 2016 Antoine Grondin 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ed25519/testdata/sign.input.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iheanyi/godotto/master/vendor/golang.org/x/crypto/ed25519/testdata/sign.input.gz -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/demos/guestbook/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iheanyi/godotto/master/vendor/google.golang.org/appengine/demos/guestbook/favicon.ico -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/testdata/keccakKats.json.deflate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iheanyi/godotto/master/vendor/golang.org/x/crypto/sha3/testdata/keccakKats.json.deflate -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iheanyi/godotto/master/vendor/golang.org/x/net/html/charset/testdata/UTF-16BE-BOM.html -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iheanyi/godotto/master/vendor/golang.org/x/net/html/charset/testdata/UTF-16LE-BOM.html -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/demos/guestbook/index.yaml: -------------------------------------------------------------------------------- 1 | indexes: 2 | 3 | - kind: Greeting 4 | ancestor: yes 5 | properties: 6 | - name: Date 7 | direction: desc 8 | -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/demos/helloworld/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iheanyi/godotto/master/vendor/google.golang.org/appengine/demos/helloworld/favicon.ico -------------------------------------------------------------------------------- /vendor/golang.org/x/net/README: -------------------------------------------------------------------------------- 1 | This repository holds supplementary Go networking libraries. 2 | 3 | To submit changes to this repository, see http://golang.org/doc/contribute.html. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/README: -------------------------------------------------------------------------------- 1 | This repository holds supplementary Go cryptography libraries. 2 | 3 | To submit changes to this repository, see http://golang.org/doc/contribute.html. 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.7 4 | sudo: false 5 | install: 6 | - go get github.com/Masterminds/glide 7 | script: $GOPATH/bin/glide -version && go test $($GOPATH/bin/glide nv) 8 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/type_number.go: -------------------------------------------------------------------------------- 1 | package otto 2 | 3 | func (runtime *_runtime) newNumberObject(value Value) *_object { 4 | return runtime.newPrimitiveObject("Number", value.numberValue()) 5 | } 6 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/readline.v1/example/readline-im/README.md: -------------------------------------------------------------------------------- 1 | # readline-im 2 | 3 | ![readline-im](https://dl.dropboxusercontent.com/s/52hc7bo92g3pgi5/03F93B8D-9B4B-4D35-BBAA-22FBDAC7F299-26173-000164AA33980001.gif?dl=0) 4 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- 1 | # This source code refers to The Go Authors for copyright purposes. 2 | # The master list of authors is in the main Go distribution, 3 | # visible at http://tip.golang.org/AUTHORS. 4 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- 1 | # This source code was written by the Go contributors. 2 | # The master list of contributors is in the main Go distribution, 3 | # visible at http://tip.golang.org/CONTRIBUTORS. 4 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/README: -------------------------------------------------------------------------------- 1 | This repository holds supplemental Go packages for low-level interactions with the operating system. 2 | 3 | To submit changes to this repository, see http://golang.org/doc/contribute.html. 4 | -------------------------------------------------------------------------------- /vendor/gopkg.in/readline.v1/std_windows.go: -------------------------------------------------------------------------------- 1 | // +build windows 2 | 3 | package readline 4 | 5 | func init() { 6 | Stdin = NewRawReader() 7 | Stdout = NewANSIWriter(Stdout) 8 | Stderr = NewANSIWriter(Stderr) 9 | } 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/testdata/webkit/pending-spec-changes-plain-text-unsafe.dat: -------------------------------------------------------------------------------- 1 | #data 2 | fillertext 3 | #errors 4 | #document 5 | | 6 | | 7 | | 8 | | "fillertext" 9 | |
10 | -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/demos/helloworld/app.yaml: -------------------------------------------------------------------------------- 1 | runtime: go 2 | api_version: go1 3 | vm: true 4 | 5 | handlers: 6 | - url: /favicon.ico 7 | static_files: favicon.ico 8 | upload: favicon.ico 9 | - url: /.* 10 | script: _go_app 11 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/dbg.go: -------------------------------------------------------------------------------- 1 | // This file was AUTOMATICALLY GENERATED by dbg-import (smuggol) for github.com/robertkrimen/dbg 2 | 3 | package otto 4 | 5 | import ( 6 | Dbg "github.com/robertkrimen/otto/dbg" 7 | ) 8 | 9 | var dbg, dbgf = Dbg.New() 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/asm.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | #include "textflag.h" 6 | 7 | TEXT ·use(SB),NOSPLIT,$0 8 | RET 9 | -------------------------------------------------------------------------------- /vendor/github.com/golang/protobuf/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.[568ao] 3 | *.ao 4 | *.so 5 | *.pyc 6 | ._* 7 | .nfs.* 8 | [568a].out 9 | *~ 10 | *.orig 11 | core 12 | _obj 13 | _test 14 | _testmain.go 15 | protoc-gen-go/testdata/multi/*.pb.go 16 | _conformance/_conformance 17 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/parser/dbg.go: -------------------------------------------------------------------------------- 1 | // This file was AUTOMATICALLY GENERATED by dbg-import (smuggol) for github.com/robertkrimen/dbg 2 | 3 | package parser 4 | 5 | import ( 6 | Dbg "github.com/robertkrimen/otto/dbg" 7 | ) 8 | 9 | var dbg, dbgf = Dbg.New() 10 | -------------------------------------------------------------------------------- /vendor/gopkg.in/readline.v1/example/readline-remote/readline-remote-client/client.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | import "github.com/chzyer/readline" 4 | 5 | func main() { 6 | if err := readline.DialRemote("tcp", ":12344"); err != nil { 7 | println(err.Error()) 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/route/syscall.s: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | #include "textflag.h" 6 | 7 | TEXT ·keepAlive(SB),NOSPLIT,$0 8 | RET 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/thunk_linux_386.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.2 6 | 7 | TEXT ·socketcall(SB),4,$0-36 8 | JMP syscall·socketcall(SB) 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/thunk_linux_386.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.2 6 | 7 | TEXT ·socketcall(SB),4,$0-36 8 | JMP syscall·socketcall(SB) 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/asm.s: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !gccgo 6 | 7 | #include "textflag.h" 8 | 9 | TEXT ·use(SB),NOSPLIT,$0 10 | RET 11 | -------------------------------------------------------------------------------- /internal/ottoutil/jsvendor/corejs/corejs.go: -------------------------------------------------------------------------------- 1 | // Package corejs adds core-js functionalities to an otto VM. 2 | package corejs 3 | 4 | import "github.com/robertkrimen/otto" 5 | 6 | // Load the core-js library in the vm. 7 | func Load(vm *otto.Otto) error { 8 | _, err := vm.Run(source) 9 | return err 10 | } 11 | -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/api_race_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 Google Inc. All rights reserved. 2 | // Use of this source code is governed by the Apache 2.0 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build race 6 | 7 | package internal 8 | 9 | func init() { raceDetector = true } 10 | -------------------------------------------------------------------------------- /vendor/gopkg.in/sourcemap.v1/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - 1.2 5 | - 1.3 6 | - 1.4 7 | - 1.5 8 | 9 | install: 10 | - mkdir -p $HOME/gopath/src/gopkg.in 11 | - mv $HOME/gopath/src/github.com/go-sourcemap/sourcemap $HOME/gopath/src/gopkg.in/sourcemap.v1 12 | - cd $HOME/gopath/src/gopkg.in/sourcemap.v1 13 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/export_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build darwin dragonfly freebsd linux netbsd openbsd solaris 6 | 7 | package unix 8 | 9 | var Itoa = itoa 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/http2/h2demo/Makefile: -------------------------------------------------------------------------------- 1 | h2demo.linux: h2demo.go 2 | GOOS=linux go build --tags=h2demo -o h2demo.linux . 3 | 4 | FORCE: 5 | 6 | upload: FORCE 7 | go install golang.org/x/build/cmd/upload 8 | upload --verbose --osarch=linux-amd64 --tags=h2demo --file=go:golang.org/x/net/http2/h2demo --public http2-demo-server-tls/h2demo 9 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/nettest/rlimit_windows.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package nettest 6 | 7 | func maxOpenFiles() int { return 4 * defaultMaxOpenFiles /* actually it's 16581375 */ } 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/nettest/rlimit_stub.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build nacl plan9 6 | 7 | package nettest 8 | 9 | func maxOpenFiles() int { return defaultMaxOpenFiles } 10 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/svc/go12.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build windows 6 | // +build !go1.3 7 | 8 | package svc 9 | 10 | // from go12.c 11 | func getServiceMain(r *uintptr) 12 | -------------------------------------------------------------------------------- /vendor/github.com/digitalocean/godo/errors_test.go: -------------------------------------------------------------------------------- 1 | package godo 2 | 3 | import "testing" 4 | 5 | func TestArgError(t *testing.T) { 6 | expected := "foo is invalid because bar" 7 | err := NewArgError("foo", "bar") 8 | if got := err.Error(); got != expected { 9 | t.Errorf("ArgError().Error() = %q; expected %q", got, expected) 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/clone_test.go: -------------------------------------------------------------------------------- 1 | package otto 2 | 3 | import ( 4 | "testing" 5 | ) 6 | 7 | func TestCloneGetterSetter(t *testing.T) { 8 | vm := New() 9 | 10 | vm.Run(`var x = Object.create(null, { 11 | x: { 12 | get: function() {}, 13 | set: function() {}, 14 | }, 15 | })`) 16 | 17 | vm.Copy() 18 | } 19 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/underscore/Makefile: -------------------------------------------------------------------------------- 1 | .PHONY: source 2 | 3 | source: source.go 4 | 5 | underscore.js: 6 | curl -kL http://underscorejs.org/underscore.js > $@ 7 | 8 | source.go: underscore.js 9 | go-bindata -f underscore -p underscore -u true < $< 2>/dev/null | grep -v '^//' | gofmt > $@ 10 | head -4 $< >> $@ 11 | mv $< .. 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/mksyscall.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package registry 6 | 7 | //go:generate go run $GOROOT/src/syscall/mksyscall_windows.go -output zsyscall_windows.go syscall.go 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/icmp/sys_freebsd.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package icmp 6 | 7 | import "syscall" 8 | 9 | func init() { 10 | freebsdVersion, _ = syscall.SysctlUint32("kern.osreldate") 11 | } 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/oauth2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | 3 | go: 4 | - tip 5 | 6 | install: 7 | - export GOPATH="$HOME/gopath" 8 | - mkdir -p "$GOPATH/src/golang.org/x" 9 | - mv "$TRAVIS_BUILD_DIR" "$GOPATH/src/golang.org/x/oauth2" 10 | - go get -v -t -d golang.org/x/oauth2/... 11 | 12 | script: 13 | - go test -v golang.org/x/oauth2/... 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/ssh/test/doc.go: -------------------------------------------------------------------------------- 1 | // Copyright 2012 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // This package contains integration tests for the 6 | // golang.org/x/crypto/ssh package. 7 | package test // import "golang.org/x/crypto/ssh/test" 8 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/internal/nettest/error_stub.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build nacl plan9 6 | 7 | package nettest 8 | 9 | func protocolNotSupported(err error) bool { 10 | return false 11 | } 12 | -------------------------------------------------------------------------------- /vendor/github.com/robertkrimen/otto/type_boolean.go: -------------------------------------------------------------------------------- 1 | package otto 2 | 3 | import ( 4 | "strconv" 5 | ) 6 | 7 | func (runtime *_runtime) newBooleanObject(value Value) *_object { 8 | return runtime.newPrimitiveObject("Boolean", toValue_bool(value.bool())) 9 | } 10 | 11 | func booleanToString(value bool) string { 12 | return strconv.FormatBool(value) 13 | } 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sys_stub.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build nacl plan9 solaris 6 | 7 | package ipv4 8 | 9 | var ( 10 | ctlOpts = [ctlMax]ctlOpt{} 11 | 12 | sockOpts = [ssoMax]sockOpt{} 13 | ) 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv6/sys_stub.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build nacl plan9 solaris 6 | 7 | package ipv6 8 | 9 | var ( 10 | ctlOpts = [ctlMax]ctlOpt{} 11 | 12 | sockOpts = [ssoMax]sockOpt{} 13 | ) 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/ipv4/sockopt_stub.go: -------------------------------------------------------------------------------- 1 | // Copyright 2012 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build nacl plan9 solaris 6 | 7 | package ipv4 8 | 9 | func setInt(fd int, opt *sockOpt, v int) error { 10 | return errOpNoSupport 11 | } 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build darwin dragonfly freebsd linux netbsd openbsd solaris 6 | 7 | package unix 8 | 9 | const ( 10 | R_OK = 0x4 11 | W_OK = 0x2 12 | X_OK = 0x1 13 | ) 14 | -------------------------------------------------------------------------------- /vendor/gopkg.in/readline.v1/.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - 1.5 4 | before_install: 5 | - go get golang.org/x/crypto/ssh/terminal 6 | script: 7 | - GOOS=windows go install github.com/chzyer/readline/example/... 8 | - GOOS=linux go install github.com/chzyer/readline/example/... 9 | - GOOS=darwin go install github.com/chzyer/readline/example/... 10 | - go test -v 11 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/mksyscall.go: -------------------------------------------------------------------------------- 1 | // Copyright 2009 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | package windows 6 | 7 | //go:generate go run $GOROOT/src/syscall/mksyscall_windows.go -output zsyscall_windows.go eventlog.go service.go syscall_windows.go security_windows.go 8 | -------------------------------------------------------------------------------- /vendor/google.golang.org/appengine/internal/main.go: -------------------------------------------------------------------------------- 1 | // Copyright 2011 Google Inc. All rights reserved. 2 | // Use of this source code is governed by the Apache 2.0 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build appengine 6 | 7 | package internal 8 | 9 | import ( 10 | "appengine_internal" 11 | ) 12 | 13 | func Main() { 14 | appengine_internal.Main() 15 | } 16 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/syscall_no_getwd.go: -------------------------------------------------------------------------------- 1 | // Copyright 2013 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build dragonfly freebsd netbsd openbsd 6 | 7 | package unix 8 | 9 | const ImplementsGetwd = false 10 | 11 | func Getwd() (string, error) { return "", ENOTSUP } 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/zsysnum_solaris_amd64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build amd64,solaris 6 | 7 | package unix 8 | 9 | // TODO(aram): remove these before Go 1.3. 10 | const ( 11 | SYS_EXECVE = 59 12 | SYS_FCNTL = 62 13 | ) 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/unix/env_unset.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.4 6 | 7 | package unix 8 | 9 | import "syscall" 10 | 11 | func Unsetenv(key string) error { 12 | // This was added in Go 1.4. 13 | return syscall.Unsetenv(key) 14 | } 15 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/sha3/keccakf_amd64.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build amd64,!appengine,!gccgo 6 | 7 | package sha3 8 | 9 | // This function is implemented in keccakf_amd64.s. 10 | 11 | //go:noescape 12 | 13 | func keccakF1600(a *[25]uint64) 14 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/plan9/env_unset.go: -------------------------------------------------------------------------------- 1 | // Copyright 2014 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build go1.4 6 | 7 | package plan9 8 | 9 | import "syscall" 10 | 11 | func Unsetenv(key string) error { 12 | // This was added in Go 1.4. 13 | return syscall.Unsetenv(key) 14 | } 15 | -------------------------------------------------------------------------------- /vendor/golang.org/x/sys/windows/registry/export_test.go: -------------------------------------------------------------------------------- 1 | // Copyright 2015 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build windows 6 | 7 | package registry 8 | 9 | func (k Key) SetValue(name string, valtype uint32, data []byte) error { 10 | return k.setValue(name, valtype, data) 11 | } 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/crypto/blake2b/blake2b_ref.go: -------------------------------------------------------------------------------- 1 | // Copyright 2016 The Go Authors. All rights reserved. 2 | // Use of this source code is governed by a BSD-style 3 | // license that can be found in the LICENSE file. 4 | 5 | // +build !amd64 appengine gccgo 6 | 7 | package blake2b 8 | 9 | func hashBlocks(h *[8]uint64, c *[2]uint64, flag uint64, blocks []byte) { 10 | hashBlocksGeneric(h, c, flag, blocks) 11 | } 12 | -------------------------------------------------------------------------------- /vendor/golang.org/x/net/html/testdata/webkit/scripted/adoption01.dat: -------------------------------------------------------------------------------- 1 | #data 2 |

TEXT 3 | #errors 4 | #document 5 | | 6 | | 7 | | 8 | |

9 | | 10 | | id="B" 11 | | 3 3 | #errors 4 | #document 5 | | 6 | | 7 | | 8 | | "1" 9 | | 4 15 | #errors 16 | #document 17 | | 18 | | 19 | | 20 | | "1" 21 | |